Added french language support
This commit is contained in:
@@ -326,6 +326,7 @@
|
||||
Base,
|
||||
de,
|
||||
es,
|
||||
fr,
|
||||
);
|
||||
mainGroup = A70171752AA8E71900064C43;
|
||||
productRefGroup = A701717F2AA8E71900064C43 /* Products */;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user