MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
3 changed files with 25 additions and 1 deletions
Showing only changes of commit ad87dca674 - Show all commits

View File

@@ -134,7 +134,7 @@ abstract class AppLocalizations {
/// **'No recent matches available'** /// **'No recent matches available'**
String get no_recent_matches_available; String get no_recent_matches_available;
/// No description provided for @no_second_match_available. /// Message when no second match exists
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'No second match available'** /// **'No second match available'**
@@ -559,6 +559,18 @@ abstract class AppLocalizations {
/// In en, this message translates to: /// In en, this message translates to:
/// **'Least Points'** /// **'Least Points'**
String get least_points; String get least_points;
/// Hint text for player search input field
///
/// In en, this message translates to:
/// **'Search for players'**
String get search_for_players;
/// Hint text for group search input field
///
/// In en, this message translates to:
/// **'Search for groups'**
String get search_for_groups;
} }
class _AppLocalizationsDelegate class _AppLocalizationsDelegate

View File

@@ -267,4 +267,10 @@ class AppLocalizationsDe extends AppLocalizations {
@override @override
String get least_points => 'Niedrigste Punkte'; String get least_points => 'Niedrigste Punkte';
@override
String get search_for_players => 'Nach Spielern suchen';
@override
String get search_for_groups => 'Nach Gruppen suchen';
} }

View File

@@ -266,4 +266,10 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String get least_points => 'Least Points'; String get least_points => 'Least Points';
@override
String get search_for_players => 'Search for players';
@override
String get search_for_groups => 'Search for groups';
} }