Add Swiss German translation (WIP)
This commit is contained in:
parent
7606499fd6
commit
be38b097c1
File diff suppressed because it is too large
Load Diff
|
@ -32,6 +32,7 @@ Map<String, Strings> languageCodeToStrings = {
|
||||||
"cs": CzechStrings(),
|
"cs": CzechStrings(),
|
||||||
"da": DanishStrings(),
|
"da": DanishStrings(),
|
||||||
"de": GermanStrings(),
|
"de": GermanStrings(),
|
||||||
|
"de_CH": SwissGermanStrings(),
|
||||||
"el": GreekStrings(),
|
"el": GreekStrings(),
|
||||||
"en": EnglishStrings(),
|
"en": EnglishStrings(),
|
||||||
"es": SpanishStrings(),
|
"es": SpanishStrings(),
|
||||||
|
@ -132,6 +133,15 @@ class GermanStrings extends Strings {
|
||||||
String get tapBackAgainToLeave => 'Nochmal drücken um zu Beenden.';
|
String get tapBackAgainToLeave => 'Nochmal drücken um zu Beenden.';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// de-ch
|
||||||
|
class SwissGermanStrings extends Strings {
|
||||||
|
@override
|
||||||
|
String get languageName => 'Schweizerdeutsch';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get tapBackAgainToLeave => 'Nochmal drücken um zu Beenden.';
|
||||||
|
}
|
||||||
|
|
||||||
/// el
|
/// el
|
||||||
class GreekStrings extends Strings {
|
class GreekStrings extends Strings {
|
||||||
@override
|
@override
|
||||||
|
|
Loading…
Reference in New Issue