[units.wesnoth.org] As requested by Espreon,

...remove ang_GB@latin from the language selection.
This commit is contained in:
Elias Pschernig 2011-07-30 11:22:07 +00:00
parent 61536effc1
commit c5eec58b3f

View File

@ -809,6 +809,8 @@ def find_languages():
for locale in parser.get_all(tag = "locale"):
isocode = locale.get_text_val("locale")
name = locale.get_text_val("name")
if isocode == "ang_GB@latin":
continue
languages_found[isocode] = name
return languages_found