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

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