Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
c22dev committed Jan 15, 2024
1 parent e5a1bb4 commit 8fb40b0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Geranium.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,7 @@
ko,
ru,
fa,
"en-GB",
);
mainGroup = FAA456C82B265FEA00FC7287;
packageReferences = (
Expand Down Expand Up @@ -873,7 +874,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
PRODUCT_BUNDLE_IDENTIFIER = live.cclerc.geranium;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -911,7 +912,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.0.4;
PRODUCT_BUNDLE_IDENTIFIER = live.cclerc.geranium;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
8 changes: 4 additions & 4 deletions Geranium/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ struct SettingsView: View {
// i made catgpt work for me on this one
"zh-Hans": "Chinese (Simplified)", //
"zh-Hant": "Chinese (Traditional)", //
"en-US": "English",
"Base": "English", //
"en-GB": "English (GB)",
"es": "Spanish", //
"es-419": "Spanish (Latin America)", //
"fr": "French", //
Expand All @@ -35,8 +36,7 @@ struct SettingsView: View {
"ru": "Russian", //
"sk": "Slovak", //
"sv": "Swedish", //
"vi": "Vietnamese",
"Default": "Default"//
"vi": "Vietnamese", //
]
var sortedLocalisalist: [String] {
languageMapping.keys.sorted()
Expand Down Expand Up @@ -73,7 +73,7 @@ struct SettingsView: View {
}
if DebugStuff {
Button("Set language to English") {
UserDefaults.standard.set(["en-US"], forKey: "AppleLanguages")
UserDefaults.standard.set(["Base"], forKey: "AppleLanguages")
exitGracefully()
}
Text("UUID : \(appSettings.usrUUID)")
Expand Down
12 changes: 12 additions & 0 deletions Geranium/Translations/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@
},
"1. Open TrollStore" : {
"localizations" : {
"en-GB" : {
"stringUnit" : {
"state" : "translated",
"value" : "1. Open TrollStore"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
Expand Down Expand Up @@ -195,6 +201,12 @@
},
"2. Go to Settings" : {
"localizations" : {
"en-GB" : {
"stringUnit" : {
"state" : "translated",
"value" : "2. Go to Settings"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
Expand Down

0 comments on commit 8fb40b0

Please sign in to comment.