getSupportedLanguages static method

List<String> getSupportedLanguages()

Gets all supported language codes

Implementation

static List<String> getSupportedLanguages() {
  return [
    'en',
    'de',
    'es',
    'fr',
    'it',
    'pt',
    'nl',
    'sv',
    'da',
    'no',
    'fi',
    'tr',
    'he',
    'ja',
    'ko',
    'zh',
    'th',
    'vi',
    'ru',
    'uk',
    'be',
    'sr',
    'hr',
    'bs',
    'mk',
    'bg',
    'pl',
    'cs',
    'sk',
    'ar',
    'ga',
    'cy',
    'mt'
  ];
}