changed everything from filcnaplo to refilc finally
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
import 'package:i18n_extension/i18n_extension.dart';
|
||||
|
||||
extension Localization on String {
|
||||
static final _t = Translations.byLocale("hu_hu") +
|
||||
{
|
||||
"en_en": {
|
||||
"Lesson": "Lesson",
|
||||
"Excuse": "Excuse",
|
||||
"Mode": "Mode",
|
||||
"Submit date": "Submit Date",
|
||||
"show in timetable": "Show in timetable",
|
||||
"minutes": "minutes".one("minute"),
|
||||
"delay": "Delay",
|
||||
},
|
||||
"hu_hu": {
|
||||
"Lesson": "Óra",
|
||||
"Excuse": "Igazolás",
|
||||
"Mode": "Típus",
|
||||
"Submit date": "Rögzítés dátuma",
|
||||
"show in timetable": "Megtekintés az órarendben",
|
||||
"minutes": "perc",
|
||||
"delay": "Késés",
|
||||
},
|
||||
"de_de": {
|
||||
"Lesson": "Stunde",
|
||||
"Excuse": "Anerkannt",
|
||||
"Mode": "Typ",
|
||||
"Submit date": "Datum einreichen",
|
||||
"show in timetable": "im Stundenplan anzeigen",
|
||||
"minutes": "Minuten".one("Minute"),
|
||||
"delay": "Verspätung",
|
||||
}
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user