feat: changing display count
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
"color_red": "Rot",
|
||||
"color_teal": "Türkis",
|
||||
"color_yellow": "Gelb",
|
||||
"displayed_entries": "Angezeigte Einträge",
|
||||
"confirm": "Bestätigen",
|
||||
"could_not_add_player": "Spieler:in {playerName} konnte nicht hinzugefügt werden",
|
||||
"@could_not_add_player": {
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
"color_purple": "Purple",
|
||||
"color_red": "Red",
|
||||
"color_teal": "Teal",
|
||||
"displayed_entries": "Displayed entries",
|
||||
"color_yellow": "Yellow",
|
||||
"confirm": "Confirm",
|
||||
"could_not_add_player": "Could not add player {playerName}",
|
||||
|
||||
@@ -206,6 +206,12 @@ abstract class AppLocalizations {
|
||||
/// **'Teal'**
|
||||
String get color_teal;
|
||||
|
||||
/// No description provided for @displayed_entries.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Displayed entries'**
|
||||
String get displayed_entries;
|
||||
|
||||
/// No description provided for @color_yellow.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -62,6 +62,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get color_teal => 'Türkis';
|
||||
|
||||
@override
|
||||
String get displayed_entries => 'Angezeigte Einträge';
|
||||
|
||||
@override
|
||||
String get color_yellow => 'Gelb';
|
||||
|
||||
|
||||
@@ -62,6 +62,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get color_teal => 'Teal';
|
||||
|
||||
@override
|
||||
String get displayed_entries => 'Displayed entries';
|
||||
|
||||
@override
|
||||
String get color_yellow => 'Yellow';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user