From 0086f005d4e18521d2f0bacbc2d16575ee5236da Mon Sep 17 00:00:00 2001 From: Dunedan Date: Sat, 29 Nov 2025 15:59:07 +0100 Subject: [PATCH] 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. --- source/tools/dist/0ad.nsi | 1 + source/tools/dist/build-archives.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source/tools/dist/0ad.nsi b/source/tools/dist/0ad.nsi index 1b8b9b0d14..6277b06335 100644 --- a/source/tools/dist/0ad.nsi +++ b/source/tools/dist/0ad.nsi @@ -114,6 +114,7 @@ !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" + !insertmacro MUI_LANGUAGE "Vietnamese" ;-------------------------------- ;Installer Sections diff --git a/source/tools/dist/build-archives.sh b/source/tools/dist/build-archives.sh index f1f59580a5..08f3d3a894 100755 --- a/source/tools/dist/build-archives.sh +++ b/source/tools/dist/build-archives.sh @@ -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-)