init refilc-plus
This commit is contained in:
commit
6edc2029bd
37 changed files with 6988 additions and 0 deletions
36
lib/ui/mobile/settings/app_icon_screen.i18n.dart
Normal file
36
lib/ui/mobile/settings/app_icon_screen.i18n.dart
Normal file
|
@ -0,0 +1,36 @@
|
|||
import 'package:i18n_extension/i18n_extension.dart';
|
||||
|
||||
extension Localization on String {
|
||||
static final _t = Translations.byLocale("hu_hu") +
|
||||
{
|
||||
"en_en": {
|
||||
"custom_app_icon": "Custom App Icon",
|
||||
"app_icons": "App Icons",
|
||||
"basic": "Basic",
|
||||
"seasonal": "Seasonal",
|
||||
"special": "Special",
|
||||
"other": "Other",
|
||||
},
|
||||
"hu_hu": {
|
||||
"custom_app_icon": "Alkalmazásikon",
|
||||
"app_icons": "Alkalmazásikonok",
|
||||
"basic": "Egyszerű",
|
||||
"seasonal": "Szezonális",
|
||||
"special": "Különleges",
|
||||
"other": "Egyéb",
|
||||
},
|
||||
"de_de": {
|
||||
"custom_app_icon": "App-Symbol",
|
||||
"app_icons": "App-Symbole",
|
||||
"basic": "Basic",
|
||||
"seasonal": "Saisonal",
|
||||
"special": "Besonders",
|
||||
"other": "Andere",
|
||||
},
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue