first step form translation
parent
a485d7b105
commit
36fa0c5a2f
@ -0,0 +1,25 @@
|
|||||||
|
// GENERATED FILE, do not edit!
|
||||||
|
import 'package:i18n/i18n.dart' as i18n;
|
||||||
|
|
||||||
|
String get _languageCode => 'en';
|
||||||
|
String get _localeName => 'en';
|
||||||
|
|
||||||
|
String _plural(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.plural(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
String _ordinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.ordinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
String _cardinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.cardinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
|
||||||
|
class Ar {
|
||||||
|
const Ar();
|
||||||
|
ButtonAr get button => ButtonAr(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
class ButtonAr {
|
||||||
|
final Ar _parent;
|
||||||
|
const ButtonAr(this._parent);
|
||||||
|
String get save => "حفظ";
|
||||||
|
String get load => "تحميل";
|
||||||
|
}
|
||||||
|
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
button:
|
||||||
|
save: حفظ
|
||||||
|
load: تحميل
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
// GENERATED FILE, do not edit!
|
||||||
|
import 'package:i18n/i18n.dart' as i18n;
|
||||||
|
|
||||||
|
String get _languageCode => 'en';
|
||||||
|
String get _localeName => 'en';
|
||||||
|
|
||||||
|
String _plural(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.plural(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
String _ordinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.ordinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
String _cardinal(int count, {String zero, String one, String two, String few, String many, String other}) =>
|
||||||
|
i18n.cardinal(count, _languageCode, zero:zero, one:one, two:two, few:few, many:many, other:other);
|
||||||
|
|
||||||
|
class En {
|
||||||
|
const En();
|
||||||
|
ButtonEn get button => ButtonEn(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
class ButtonEn {
|
||||||
|
final En _parent;
|
||||||
|
const ButtonEn(this._parent);
|
||||||
|
String get save => "Save";
|
||||||
|
String get load => "Load";
|
||||||
|
}
|
||||||
|
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
button:
|
||||||
|
save: Save
|
||||||
|
load: Load
|
||||||
|
|
||||||
Loading…
Reference in New Issue