multi fix + etc

This commit is contained in:
Finnley Somdahl 2023-12-05 23:43:34 -06:00
parent ad1734d640
commit fab978dba4
7 changed files with 62 additions and 43 deletions

View file

@ -27,6 +27,28 @@ class LanguageMapper {
else -> ""
}
}
enum class Language(val code: String) {
ALL("all"),
ARABIC("ar"),
GERMAN("de"),
ENGLISH("en"),
SPANISH("es"),
FRENCH("fr"),
INDONESIAN("id"),
ITALIAN("it"),
JAPANESE("ja"),
KOREAN("ko"),
POLISH("pl"),
PORTUGUESE_BRAZIL("pt-BR"),
RUSSIAN("ru"),
THAI("th"),
TURKISH("tr"),
UKRAINIAN("uk"),
VIETNAMESE("vi"),
CHINESE("zh"),
CHINESE_SIMPLIFIED("zh-Hans")
}
}
}