Revert "Run all the strings through localization"

This reverts commit 86c5099662.

# Conflicts:
#	Packages/Env/Sources/Env/TranslationType.swift
This commit is contained in:
Paul Schuetz 2024-05-13 09:35:12 +02:00
parent 2f2e00d3b7
commit 37b14bfb0d
No known key found for this signature in database
GPG key ID: 4FDE1FB89050039E
2 changed files with 2 additions and 24 deletions

View file

@ -26160,28 +26160,6 @@
}
}
},
"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" : {

View file

@ -10,9 +10,9 @@ public enum TranslationType: String, CaseIterable {
case .useServerIfPossible:
"enum.translation-type.use-server-if-possible"
case .useDeepl:
"enum.translation-type.deepl"
"DeepL"
case .useApple:
"enum.translation-type.apple"
"Apple Translate"
}
}
}