1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-26 17:47:20 +00:00

Fix database issue with LATAM Spanish custom language

The language was being saved as Castillian Spanish
This commit is contained in:
Vitiko 2022-02-03 00:05:15 -04:00
parent c91f03433c
commit a53fc440cd

View file

@ -206,7 +206,7 @@ class ChineseTraditional(CustomLanguage):
class LatinAmericanSpanish(CustomLanguage): class LatinAmericanSpanish(CustomLanguage):
alpha2 = "ea" # Only one available I can think of alpha2 = "ea" # Only one available I can think of
alpha3 = "spl" alpha3 = "spl"
language = "es-LA" language = "es-MX"
official_alpha2 = "es" official_alpha2 = "es"
official_alpha3 = "spa" official_alpha3 = "spa"
name = "Latin American Spanish" name = "Latin American Spanish"