Add localization for no statistics available message and removed dots from all messages
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m6s
Pull Request Pipeline / lint (pull_request) Successful in 2m11s

This commit is contained in:
2026-01-01 18:18:14 +01:00
parent 7103765054
commit 8afba5680b
5 changed files with 35 additions and 18 deletions

View File

@@ -63,12 +63,12 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String successfully_added_player(String playerName) {
return 'Successfully added player $playerName.';
return 'Successfully added player $playerName';
}
@override
String could_not_add_player(String playerName) {
return 'Could not add player $playerName.';
return 'Could not add player $playerName';
}
@override
@@ -80,7 +80,10 @@ class AppLocalizationsEn extends AppLocalizations {
String get players => 'Players';
@override
String get no_data_available => 'No data available.';
String get no_statistics_available => 'No statistics available';
@override
String get no_data_available => 'No data available';
@override
String get matches => 'Matches';