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(),
|
||||
"da": DanishStrings(),
|
||||
"de": GermanStrings(),
|
||||
"de_CH": SwissGermanStrings(),
|
||||
"el": GreekStrings(),
|
||||
"en": EnglishStrings(),
|
||||
"es": SpanishStrings(),
|
||||
|
@ -132,6 +133,15 @@ class GermanStrings extends Strings {
|
|||
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
|
||||
class GreekStrings extends Strings {
|
||||
@override
|
||||
|
|
Loading…
Reference in New Issue