Added french language support

This commit is contained in:
Vicnet
2023-10-25 10:53:36 +02:00
parent 7ea4cf4b8f
commit 32307972f9
3 changed files with 578 additions and 6 deletions

View File

@@ -326,6 +326,7 @@
Base, Base,
de, de,
es, es,
fr,
); );
mainGroup = A70171752AA8E71900064C43; mainGroup = A70171752AA8E71900064C43;
productRefGroup = A701717F2AA8E71900064C43 /* Products */; productRefGroup = A701717F2AA8E71900064C43 /* Products */;

File diff suppressed because it is too large Load Diff

View File

@@ -12,7 +12,8 @@ enum SupportedLanguage: String, Codable {
case DEVICE = "device", case DEVICE = "device",
EN = "en", EN = "en",
DE = "de", DE = "de",
ES = "es" ES = "es",
FR = "fr"
func descriptor() -> String { func descriptor() -> String {
switch self { switch self {
@@ -24,8 +25,10 @@ enum SupportedLanguage: String, Codable {
return "Deutsch" return "Deutsch"
case .ES: case .ES:
return "Español" return "Español"
case .FR:
return "Français"
} }
} }
static let allValues = [DEVICE, EN, DE, ES] static let allValues = [DEVICE, EN, DE, ES, FR]
} }