Add Vietnamese as supported language

As 0 A.D. supports full unicode now and Vietnamese language coverage is
at a good level, let's include Vietnamese as supported language.
This commit is contained in:
Dunedan 2025-11-29 15:59:07 +01:00
parent ed1bd1d75b
commit 0086f005d4
No known key found for this signature in database
GPG key ID: 885B16854284E0B2
2 changed files with 2 additions and 1 deletions

View file

@ -114,6 +114,7 @@
!insertmacro MUI_LANGUAGE "TradChinese"
!insertmacro MUI_LANGUAGE "Turkish"
!insertmacro MUI_LANGUAGE "Ukrainian"
!insertmacro MUI_LANGUAGE "Vietnamese"
;--------------------------------
;Installer Sections

View file

@ -16,7 +16,7 @@ echo "Filtering languages"
# Included languages
# Note: Needs to be edited manually at each release.
# Keep in sync with the installer languages in 0ad.nsi.
LANGS="ast ca cs de el en_GB es eu fi fr gl hu id it ja ko nl pl pt_BR pt_PT ru sk sv tr uk zh zh_TW"
LANGS="ast ca cs de el en_GB es eu fi fr gl hu id it ja ko nl pl pt_BR pt_PT ru sk sv tr uk vi zh zh_TW"
# shellcheck disable=SC2086
REGEX=$(printf "\|%s" ${LANGS} | cut -c 2-)