locs, comments, removed print
Some checks failed
Pull Request Pipeline / lint (pull_request) Successful in 52s
Pull Request Pipeline / test (pull_request) Failing after 10m44s

This commit is contained in:
2026-05-21 00:14:15 +02:00
parent 0c40357847
commit 8b1a447bd9
9 changed files with 27 additions and 8 deletions

View File

@@ -137,6 +137,7 @@
"stats": "Statistiken",
"successfully_added_player": "Spieler:in {playerName} erfolgreich hinzugefügt",
"team": "Team",
"team_match": "Teamspiel",
"teams": "Teams",
"there_are_no_games_matching_your_search": "Es gibt keine Spielvorlagen, die deiner Suche entspricht",
"there_is_no_group_matching_your_search": "Es gibt keine Gruppe, die deiner Suche entspricht",

View File

@@ -146,6 +146,7 @@
}
},
"team": "Team",
"team_match": "Team Match",
"teams": "Teams",
"there_are_no_games_matching_your_search": "There are no games matching your search",
"there_is_no_group_matching_your_search": "There is no group matching your search",

View File

@@ -872,6 +872,12 @@ abstract class AppLocalizations {
/// **'Team'**
String get team;
/// No description provided for @team_match.
///
/// In en, this message translates to:
/// **'Team Match'**
String get team_match;
/// No description provided for @teams.
///
/// In en, this message translates to:

View File

@@ -419,6 +419,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get team => 'Team';
@override
String get team_match => 'Teamspiel';
@override
String get teams => 'Teams';

View File

@@ -419,6 +419,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get team => 'Team';
@override
String get team_match => 'Team Match';
@override
String get teams => 'Teams';