Skip to content

Commit 8fb40b0

Browse files
committed
1.0.4
1 parent e5a1bb4 commit 8fb40b0

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

Geranium.xcodeproj/project.pbxproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@
523523
ko,
524524
ru,
525525
fa,
526+
"en-GB",
526527
);
527528
mainGroup = FAA456C82B265FEA00FC7287;
528529
packageReferences = (
@@ -873,7 +874,7 @@
873874
"$(inherited)",
874875
"@executable_path/Frameworks",
875876
);
876-
MARKETING_VERSION = 1.0.3;
877+
MARKETING_VERSION = 1.0.4;
877878
PRODUCT_BUNDLE_IDENTIFIER = live.cclerc.geranium;
878879
PRODUCT_NAME = "$(TARGET_NAME)";
879880
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -911,7 +912,7 @@
911912
"$(inherited)",
912913
"@executable_path/Frameworks",
913914
);
914-
MARKETING_VERSION = 1.0.3;
915+
MARKETING_VERSION = 1.0.4;
915916
PRODUCT_BUNDLE_IDENTIFIER = live.cclerc.geranium;
916917
PRODUCT_NAME = "$(TARGET_NAME)";
917918
SWIFT_EMIT_LOC_STRINGS = YES;

Geranium/SettingsView.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ struct SettingsView: View {
2525
// i made catgpt work for me on this one
2626
"zh-Hans": "Chinese (Simplified)", //
2727
"zh-Hant": "Chinese (Traditional)", //
28-
"en-US": "English",
28+
"Base": "English", //
29+
"en-GB": "English (GB)",
2930
"es": "Spanish", //
3031
"es-419": "Spanish (Latin America)", //
3132
"fr": "French", //
@@ -35,8 +36,7 @@ struct SettingsView: View {
3536
"ru": "Russian", //
3637
"sk": "Slovak", //
3738
"sv": "Swedish", //
38-
"vi": "Vietnamese",
39-
"Default": "Default"//
39+
"vi": "Vietnamese", //
4040
]
4141
var sortedLocalisalist: [String] {
4242
languageMapping.keys.sorted()
@@ -73,7 +73,7 @@ struct SettingsView: View {
7373
}
7474
if DebugStuff {
7575
Button("Set language to English") {
76-
UserDefaults.standard.set(["en-US"], forKey: "AppleLanguages")
76+
UserDefaults.standard.set(["Base"], forKey: "AppleLanguages")
7777
exitGracefully()
7878
}
7979
Text("UUID : \(appSettings.usrUUID)")

Geranium/Translations/Localizable.xcstrings

+12
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@
119119
},
120120
"1. Open TrollStore" : {
121121
"localizations" : {
122+
"en-GB" : {
123+
"stringUnit" : {
124+
"state" : "translated",
125+
"value" : "1. Open TrollStore"
126+
}
127+
},
122128
"es" : {
123129
"stringUnit" : {
124130
"state" : "translated",
@@ -195,6 +201,12 @@
195201
},
196202
"2. Go to Settings" : {
197203
"localizations" : {
204+
"en-GB" : {
205+
"stringUnit" : {
206+
"state" : "translated",
207+
"value" : "2. Go to Settings"
208+
}
209+
},
198210
"es" : {
199211
"stringUnit" : {
200212
"state" : "translated",

0 commit comments

Comments
 (0)