mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Add CJK languages to release/installer
After 734386ce9f, CJK fonts are included in mods/mod folder, removing the
need for CJK mods. This commit enables those languages in the release
and the installer.
This commit is contained in:
parent
a7330cf469
commit
1aea9f2d32
3 changed files with 6 additions and 4 deletions
|
|
@ -74,13 +74,12 @@ Before moving on with Full Freeze, make sure that:
|
|||
|
||||
- [ ] [Freeze Jenkins](wiki/ReleaseProcess#freeze-jenkins)
|
||||
- [ ] [Confirm full freeze](wiki/ReleaseProcess#confirm-full-freeze)
|
||||
- [ ] [Package East Asian mods](wiki/ReleaseProcess#package-east-asian-mods)
|
||||
- [ ] [Announce Release Candidates](wiki/ReleaseProcess#announce-release-candidates)
|
||||
- [ ] Release Testing: [link to RC]( )
|
||||
|
||||
---
|
||||
|
||||
When RCs are released, a planned release date is decided with the team and published here. This improves internal coordination and allows us to release announcements on all platforms at the same time.
|
||||
When RCs are released, a planned release date is decided with the team and published here. This improves internal coordination and allows us to release announcements on all platforms at the same time.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
4
source/tools/dist/0ad.nsi
vendored
4
source/tools/dist/0ad.nsi
vendored
|
|
@ -103,13 +103,17 @@
|
|||
!insertmacro MUI_LANGUAGE "Hungarian"
|
||||
!insertmacro MUI_LANGUAGE "Indonesian"
|
||||
!insertmacro MUI_LANGUAGE "Italian"
|
||||
!insertmacro MUI_LANGUAGE "Japanese"
|
||||
!insertmacro MUI_LANGUAGE "Korean"
|
||||
!insertmacro MUI_LANGUAGE "Polish"
|
||||
!insertmacro MUI_LANGUAGE "Portuguese"
|
||||
!insertmacro MUI_LANGUAGE "PortugueseBR"
|
||||
!insertmacro MUI_LANGUAGE "Russian"
|
||||
!insertmacro MUI_LANGUAGE "SimpChinese"
|
||||
!insertmacro MUI_LANGUAGE "Slovak"
|
||||
!insertmacro MUI_LANGUAGE "Spanish"
|
||||
!insertmacro MUI_LANGUAGE "Swedish"
|
||||
!insertmacro MUI_LANGUAGE "TradChinese"
|
||||
!insertmacro MUI_LANGUAGE "Turkish"
|
||||
!insertmacro MUI_LANGUAGE "Ukrainian"
|
||||
|
||||
|
|
|
|||
3
source/tools/dist/build-archives.sh
vendored
3
source/tools/dist/build-archives.sh
vendored
|
|
@ -14,10 +14,9 @@ echo "Building archives"
|
|||
|
||||
echo "Filtering languages"
|
||||
# Included languages
|
||||
# CJK languages are excluded, as they are in mods.
|
||||
# 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 nl pl pt_BR pt_PT ru sk sv tr uk"
|
||||
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"
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
REGEX=$(printf "\|%s" ${LANGS} | cut -c 2-)
|
||||
|
|
|
|||
Loading…
Reference in a new issue