Added french language support
This commit is contained in:
@@ -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
@@ -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]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user