The app's translations
static Map<Locale, Map<String, String>> get translations => _translations;
static set translations(Map<Locale, Map<String, String>>? translateMap) { // Can only assign it once if (_translations.isEmpty && translateMap != null) { _translations.addAll(translateMap); } }