started creating end-year summary and stb

This commit is contained in:
Kima
2023-06-08 19:53:50 +02:00
parent e1f84caf19
commit 87f3f93177
6 changed files with 97 additions and 12 deletions

View File

@@ -0,0 +1,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": {},
};
String get i18n => localize(this, _t);
String fill(List<Object> params) => localizeFill(this, params);
String plural(int value) => localizePlural(value, this, _t);
String version(Object modifier) => localizeVersion(modifier, this, _t);
}