Add localization for 'none_group' option in English and German
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m3s
Pull Request Pipeline / lint (pull_request) Successful in 2m9s

This commit is contained in:
2026-01-01 18:44:43 +01:00
parent 25fe10eb9a
commit f22595e678
6 changed files with 20 additions and 3 deletions

View File

@@ -446,6 +446,12 @@ abstract class AppLocalizations {
/// **'None'**
String get none;
/// None group option label
///
/// In en, this message translates to:
/// **'None'**
String get none_group;
/// Button text to create a match
///
/// In en, this message translates to:

View File

@@ -195,7 +195,10 @@ class AppLocalizationsDe extends AppLocalizations {
String get group => 'Gruppe';
@override
String get none => 'Keine';
String get none => 'Kein';
@override
String get none_group => 'Keine';
@override
String get create_match => 'Match erstellen';

View File

@@ -196,6 +196,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get none => 'None';
@override
String get none_group => 'None';
@override
String get create_match => 'Create match';