diff --git a/IceCubesApp/Resources/Localization/Localizable.xcstrings b/IceCubesApp/Resources/Localization/Localizable.xcstrings index dbe15db1..5e8489d1 100644 --- a/IceCubesApp/Resources/Localization/Localizable.xcstrings +++ b/IceCubesApp/Resources/Localization/Localizable.xcstrings @@ -26160,6 +26160,28 @@ } } }, + "enum.translation-type.apple" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple Translate" + } + } + } + }, + "enum.translation-type.deepl" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "DeepL" + } + } + } + }, "enum.translation-type.use-server-if-possible" : { "extractionState" : "manual", "localizations" : { diff --git a/Packages/Env/Sources/Env/TranslationType.swift b/Packages/Env/Sources/Env/TranslationType.swift index 1939dc08..eae8a646 100644 --- a/Packages/Env/Sources/Env/TranslationType.swift +++ b/Packages/Env/Sources/Env/TranslationType.swift @@ -10,9 +10,9 @@ public enum TranslationType: String, CaseIterable { case .useServerIfPossible: "enum.translation-type.use-server-if-possible" case .useDeepl: - "DeepL" + "enum.translation-type.deepl" case .useApple: - "Apple Translate" + "enum.translation-type.apple" } } }