Releases: slang-i18n/slang
Releases · slang-i18n/slang
fast_i18n v1.8.0
New advanced mode:
final t = Translations.of(context); // reacts to locale changes and forces a re-render of the widget
String translated = t.someKey.anotherKey;
fast_i18n v1.7.0
Prefer language code over region code.
Example:
[en
, de
] are supported, then de_EN
will match de
.
Perviously it matches the locale which comes first. en
in this case.
fast_i18n v1.6.1
More unit tests and polishing.
fast_i18n v1.6.0
Narrow the type from dynamic
to String
for lists or maps if they only contain plain strings.
fast_i18n v1.5.0
Define settings in the new config.i18n.json
fast_i18n v1.4.0
Support for country codes
fast_i18n v1.3.0
Support for Lists and Maps