Skip to content

Commit

Permalink
Add Dutch
Browse files Browse the repository at this point in the history
  • Loading branch information
leits committed May 27, 2024
1 parent 390a4d7 commit 1cd65c8
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions MeetingBar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
467351B629057BC900EE3987 /* StringExtensionsTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StringExtensionsTests.swift; sourceTree = "<group>"; };
46B0E9682A78340B00C936DB /* FullscreenNotification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FullscreenNotification.swift; sourceTree = "<group>"; };
46B7C51E2C04DF0D009E3B9B /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
46B7C51F2C04DFB8009E3B9B /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
46E4794B2801D53B00B48059 /* MeetingServices.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MeetingServices.swift; sourceTree = "<group>"; };
46E4794D2802141800B48059 /* Calendar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Calendar.swift; sourceTree = "<group>"; };
46E4794F2802155700B48059 /* Event.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Event.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -423,6 +424,7 @@
es,
"pt-BR",
sk,
nl,
);
mainGroup = 144C01702462D0C3000C9FFC;
packageReferences = (
Expand Down Expand Up @@ -595,6 +597,7 @@
783C50AD2B760A3100DF0C9A /* es */,
4642D3DA2BAB7733002A6729 /* pt-BR */,
46B7C51E2C04DF0D009E3B9B /* sk */,
46B7C51F2C04DFB8009E3B9B /* nl */,
);
name = Localizable.strings;
sourceTree = "<group>";
Expand Down
1 change: 1 addition & 0 deletions MeetingBar/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ enum AppLanguage: String, Defaults.Serializable, Codable {
case portuguese = "pt-BR"
case spanish = "es"
case slovak = "sk"
case dutch = "nl"
}

struct Browser: Defaults.Serializable, Codable, Hashable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Localizable.strings
MeetingBar

Created by Sergey Ryazanov on 19.03.2021.
Copyright © 2021 Andrii Leitsius. All rights reserved.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Localizable.strings
MeetingBar

Created by Sergey Ryazanov on 19.03.2021.
Copyright © 2021 Andrii Leitsius. All rights reserved.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Localizable.strings
MeetingBar

Created by Sergey Ryazanov on 19.03.2021.
Copyright © 2021 Andrii Leitsius. All rights reserved.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Localizable.strings
MeetingBar

Created by Sergey Ryazanov on 19.03.2021.
Copyright © 2021 Andrii Leitsius. All rights reserved.
*/

Expand Down
1 change: 1 addition & 0 deletions MeetingBar/Views/Shared.swift
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ struct LaunchAtLoginANDPreferredLanguagePicker: View {
Text("Español").tag(AppLanguage.spanish)
Text("Português").tag(AppLanguage.portuguese)
Text("Slovenčina").tag(AppLanguage.slovak)
Text("Nederland").tag(AppLanguage.dutch)
}
}
}.frame(width: 250)
Expand Down

0 comments on commit 1cd65c8

Please sign in to comment.