Added tie localization
This commit is contained in:
@@ -105,6 +105,7 @@
|
||||
"successfully_added_player": "Spieler:in {playerName} erfolgreich hinzugefügt",
|
||||
"there_is_no_group_matching_your_search": "Es gibt keine Gruppe, die deiner Suche entspricht",
|
||||
"this_cannot_be_undone": "Dies kann nicht rückgängig gemacht werden.",
|
||||
"tie": "Unentschieden",
|
||||
"today_at": "Heute um",
|
||||
"undo": "Rückgängig",
|
||||
"unknown_exception": "Unbekannter Fehler (siehe Konsole)",
|
||||
|
||||
@@ -438,6 +438,7 @@
|
||||
"successfully_added_player": "Successfully added player {playerName}",
|
||||
"there_is_no_group_matching_your_search": "There is no group matching your search",
|
||||
"this_cannot_be_undone": "This can't be undone.",
|
||||
"tie": "Tie",
|
||||
"today_at": "Today at",
|
||||
"undo": "Undo",
|
||||
"unknown_exception": "Unknown Exception (see console)",
|
||||
|
||||
@@ -722,6 +722,12 @@ abstract class AppLocalizations {
|
||||
/// **'This can\'t be undone.'**
|
||||
String get this_cannot_be_undone;
|
||||
|
||||
/// No description provided for @tie.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Tie'**
|
||||
String get tie;
|
||||
|
||||
/// Date format for today
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
// ignore: unused_import
|
||||
import 'package:intl/intl.dart' as intl;
|
||||
|
||||
import 'app_localizations.dart';
|
||||
|
||||
// ignore_for_file: type=lint
|
||||
@@ -339,6 +338,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
String get this_cannot_be_undone =>
|
||||
'Dies kann nicht rückgängig gemacht werden.';
|
||||
|
||||
@override
|
||||
String get tie => 'Unentschieden';
|
||||
|
||||
@override
|
||||
String get today_at => 'Heute um';
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
// ignore: unused_import
|
||||
import 'package:intl/intl.dart' as intl;
|
||||
|
||||
import 'app_localizations.dart';
|
||||
|
||||
// ignore_for_file: type=lint
|
||||
@@ -338,6 +337,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get this_cannot_be_undone => 'This can\'t be undone.';
|
||||
|
||||
@override
|
||||
String get tie => 'Tie';
|
||||
|
||||
@override
|
||||
String get today_at => 'Today at';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user