From ed1bd1d75b916eb28b1d506a9dc62b297818c147 Mon Sep 17 00:00:00 2001 From: Dunedan Date: Wed, 19 Nov 2025 06:54:49 +0100 Subject: [PATCH] Re-add Catalan as supported language While Catalan got removed for Alpha 27 because of low coverage, its coverage is now good enough again to get re-added 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 70aa1c5bb5..1b8b9b0d14 100644 --- a/source/tools/dist/0ad.nsi +++ b/source/tools/dist/0ad.nsi @@ -90,6 +90,7 @@ !insertmacro MUI_LANGUAGE "English" ; The first language is the default language !insertmacro MUI_LANGUAGE "Asturian" !insertmacro MUI_LANGUAGE "Basque" + !insertmacro MUI_LANGUAGE "Catalan" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Finnish" diff --git a/source/tools/dist/build-archives.sh b/source/tools/dist/build-archives.sh index 859f0fe51b..f1f59580a5 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 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 zh zh_TW" # shellcheck disable=SC2086 REGEX=$(printf "\|%s" ${LANGS} | cut -c 2-)