fix(YouTube - Translations): Excluding French and Korean from the translation patch, which includes the invalid escape character https://github.com/inotia00/ReVanced_Extended/issues/2760

This commit is contained in:
inotia00
2025-01-31 21:47:55 +09:00
parent 7a63353559
commit faaa0aa54d

View File

@ -11,8 +11,8 @@ import app.revanced.patches.youtube.utils.settings.settingsPatch
// Array of supported translations, each represented by its language code.
private val SUPPORTED_TRANSLATIONS = setOf(
"ar", "bg-rBG", "de-rDE", "el-rGR", "es-rES", "fr-rFR", "hu-rHU", "it-rIT", "ja-rJP", "ko-rKR",
"pl-rPL", "pt-rBR", "ru-rRU", "tr-rTR", "uk-rUA", "vi-rVN", "zh-rCN", "zh-rTW"
"ar", "bg-rBG", "de-rDE", "el-rGR", "es-rES", "hu-rHU", "it-rIT", "ja-rJP", "pl-rPL",
"pt-rBR", "ru-rRU", "tr-rTR", "uk-rUA", "vi-rVN", "zh-rCN", "zh-rTW"
)
@Suppress("unused")