fixed end-year average

This commit is contained in:
kima
2023-06-23 11:20:18 +02:00
parent acdd47a49a
commit 3317472773
2 changed files with 26 additions and 8 deletions

View File

@@ -3,9 +3,15 @@ import 'package:i18n_extension/i18n_extension.dart';
extension SettingsLocalization on String {
static final _t = Translations.byLocale("hu_hu") +
{
"en_en": {},
"hu_hu": {},
"de_de": {},
"en_en": {
"no_grades": "No grades found",
},
"hu_hu": {
"no_grades": "Nincsenek jegyek",
},
"de_de": {
"no_grades": "No grades found",
},
};
String get i18n => localize(this, _t);