Added empty build for teams & player in match tile / detail view
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 46s
Pull Request Pipeline / test (pull_request) Successful in 47s
Pull Request Pipeline / localizations (pull_request) Successful in 27s

This commit is contained in:
2026-05-23 16:12:58 +02:00
parent 6d17539af2
commit 99c3c3c257
7 changed files with 77 additions and 24 deletions

View File

@@ -632,6 +632,12 @@ abstract class AppLocalizations {
/// **'No matches created yet'**
String get no_matches_created_yet;
/// No description provided for @no_players_available.
///
/// In en, this message translates to:
/// **'No players available'**
String get no_players_available;
/// No description provided for @no_players_created_yet.
///
/// In en, this message translates to:
@@ -674,6 +680,12 @@ abstract class AppLocalizations {
/// **'No statistics available'**
String get no_statistics_available;
/// No description provided for @no_teams_available.
///
/// In en, this message translates to:
/// **'No teams available'**
String get no_teams_available;
/// No description provided for @none.
///
/// In en, this message translates to:

View File

@@ -291,6 +291,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get no_matches_created_yet => 'Noch keine Spiele erstellt';
@override
String get no_players_available => 'Keine Spieler:innen verfügbar';
@override
String get no_players_created_yet => 'Noch keine Spieler:in erstellt';
@@ -313,6 +316,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get no_statistics_available => 'Keine Statistiken verfügbar';
@override
String get no_teams_available => 'Keine Teams verfügbar';
@override
String get none => 'Kein';

View File

@@ -291,6 +291,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get no_matches_created_yet => 'No matches created yet';
@override
String get no_players_available => 'No players available';
@override
String get no_players_created_yet => 'No players created yet';
@@ -313,6 +316,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get no_statistics_available => 'No statistics available';
@override
String get no_teams_available => 'No teams available';
@override
String get none => 'None';