translations property
_StringsEn
get
translations
Gets the translation instance managed by this library. TranslationProvider is using this instance. The plural resolvers are set via LocaleSettings.
Implementation
_StringsEn get translations {
switch (this) {
case AppLocale.en: return _translationsEn;
case AppLocale.ja: return _translationsJa;
case AppLocale.ko: return _translationsKo;
case AppLocale.zhHans: return _translationsZhHans;
case AppLocale.zhHant: return _translationsZhHant;
}
}