Skip to content

Commit 1f777ab

Browse files
authored
Merge pull request #1005 from ignotus666/add-lang-scripts
Update scripts to add languages
2 parents 169809c + e75e26e commit 1f777ab

File tree

2 files changed

+33
-29
lines changed

2 files changed

+33
-29
lines changed

.github/workflows/add-lang.yml

+16-14
Original file line numberDiff line numberDiff line change
@@ -17,34 +17,36 @@ jobs:
1717
ISSUE_TITLE: ${{ github.event.issue.title }}
1818
ISSUE_NUM: ${{ github.event.issue.number }}
1919
run: |
20-
NEW_LANG=$(sed 's/.*\[\([^]]*\)].*/\1/' <<< "$ISSUE_TITLE")
21-
if [[ $NEW_LANG =~ ^[a-z]{2}(_[A-Z]{2})?$ ]]; then
22-
echo "new_lang=$NEW_LANG" >> $GITHUB_ENV
20+
LANG_CODE=$(sed 's/.*\[\([^]]*\)].*/\1/' <<< "$ISSUE_TITLE")
21+
FULL_LANG=$(sed 's/.*<\([^>]*\)>.*/\1/' <<< "$ISSUE_TITLE")
22+
if [[ $LANG_CODE =~ ^[a-z]{2}(-[A-Z]{2})?$ && $ISSUE_TITLE =~ <[^>]+> ]]; then
23+
echo "lang_code=$LANG_CODE" >> $GITHUB_ENV
24+
echo "full_lang=$FULL_LANG" >> $GITHUB_ENV
2325
echo "issue_num=$ISSUE_NUM" >> $GITHUB_ENV
2426
else
25-
echo Error: language code in wrong format.
27+
echo Error: language name/code in wrong format.
2628
exit 1
2729
fi
2830
2931
# Check out repo:
30-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3133
with:
3234
ref: next-release
3335

3436
# Check if language has been added previously.
3537
- name: Check if language is already present
3638
run: |
37-
if [ -d "_translator-files/po/${{ env.new_lang }}" ] ; then
38-
echo Error: The language [${{ env.new_lang }}] seems to already exist.
39+
if [ -d "_translator-files/po/${{ env.lang_code }}" ] ; then
40+
echo Error: The language [${{ env.lang_code }}] seems to already exist.
3941
exit 1
4042
else
41-
echo Language: [${{ env.new_lang }}] not detected. Proceeding to add [${{ env.new_lang }}].
43+
echo Language: [${{ env.lang_code }}] seems to be new as no Language: [${{ env.lang_code }}] was found. Proceeding to add [${{ env.lang_code }}].
4244
fi
4345
4446
# Check po4a cache. If CACHE_HIT: true, retrieve the cache.
4547
# If not, install po4a and its dependencies and copy them all to a folder (~/po4a/) to be cached:
4648
- name: Check for po4a cache
47-
uses: actions/cache@v3
49+
uses: actions/cache@v4
4850
id: cache-po4a
4951
with:
5052
path: "~/po4a"
@@ -60,23 +62,23 @@ jobs:
6062

6163
# Push changes to 'next-release':
6264
- name: Push changes to repo
63-
uses: EndBug/add-and-commit@v7
65+
uses: EndBug/add-and-commit@v9
6466
with:
6567
branch: next-release
6668
default_author: github_actions
67-
message: 'AUTO: Add new language: (${{ env.new_lang }}) #${{ env.issue_num }}'
69+
message: 'AUTO: Add new language: ${{ env.lang_code }}: ${{ env.full_lang }} #${{ env.issue_num }}'
6870

6971
# Add comment to issue informing of the creation of the language files:
7072
- name: Add comment to issue
71-
uses: peter-evans/create-or-update-comment@v1
73+
uses: peter-evans/create-or-update-comment@v4
7274
with:
7375
issue-number: ${{ env.issue_num }}
7476
body: |
75-
- The .po files have been created for **${{ env.new_lang }}** and are now available on [Weblate](https://hosted.weblate.org/projects/jamulus/#languages). If you prefer not to use Weblate and intend to submit translations via a Pull Request, your language files can be found on the `next-release` branch in `_translator-files/po/${{ env.new_lang }}/`.
77+
- The .po files have been created for **${{ env.full_lang }}** and are now available on [Weblate](https://hosted.weblate.org/projects/jamulus/#languages). If you prefer not to use Weblate and intend to submit translations via a Pull Request, your language files can be found on the `next-release` branch in `_translator-files/po/${{ env.lang_code }}/`.
7678
- Please consult [this README file](https://github.com/jamulussoftware/jamuluswebsite/tree/next-release/_translator-files#readme) for more information on the translation process.
7779
7880
# Create target translated files. Never pushed to the repo.
79-
- name: Create translated docs and stats
81+
- name: Create translated docs
8082
run: ./_po4a-tools/po4a-create-all-targets.sh
8183

8284
# Build site

_po4a-tools/po4a-add-language.sh

+17-15
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,40 @@ SCRIPT_DIR=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
88
cd "$SCRIPT_DIR"
99

1010
# Create and populate .po file folder
11-
mkdir ../_translator-files/po/$new_lang
11+
mkdir ../_translator-files/po/$lang_code
1212
echo ''
13-
echo .po file folder created for "$new_lang"
14-
echo Creating .po files for "$new_lang"
13+
echo .po file folder created for "$lang_code"
14+
echo Creating .po files for "$full_lang"
1515
./po4a-update-templates.sh
1616

1717
# Go to root directory
1818
cd ../
1919

20-
# Create symlinks for 1-index.html file
21-
ln -s -r ./wiki/$new_lang/1-index.html ./1-$new_lang-index.html
20+
# Create symlinks for 1-index.md file
21+
ln -s -r ./wiki/$lang_code/1-index.md ./1-$lang_code-index.md
2222
if [ $(echo $?) == 0 ] ; then
2323
echo ''
24-
echo 1-"$new_lang"-index.html symlink created for "$new_lang" in /
24+
echo 1-"$lang_code"-index.md symlink created for "$full_lang" in /
2525
else
26-
echo Error creating 1-"$new_lang"-index.html symlink in /
26+
echo Error creating 1-"$lang_code"-index.md symlink in /
2727
exit 1
2828
fi
2929

30-
# Add new language to array in _config.yml
31-
sed -i "s/\(\[\"en\",\)/\1 \"$new_lang\",/" _config.yml
30+
# Add new language to _config.yml
31+
sed -i "s/\(\[\"en\",\)/\1 \"$lang_code\",/" _config.yml
32+
sed -i "/^language_names:/a\ $lang_code: $full_lang" _config.yml
33+
3234
if [ $(echo $?) == 0 ] ; then
33-
echo "$new_lang" added to language array in _config.yml
35+
echo "$lang_code" added to _config.yml
3436
else
35-
echo Error adding "$new_lang" to language array in _config.yml
37+
echo Error adding "$lang_code" to _config.yml
3638
exit 1
3739
fi
3840

3941
# Create images folder for new language
40-
if [ ! -d "./assets/img/$new_lang-screenshots" ] ; then
41-
cp -frp ./assets/img/en-screenshots -T ./assets/img/$new_lang-screenshots
42-
echo Screenshots created for "$new_lang" in ./assets/img/"$new_lang"-screenshots/
42+
if [ ! -d "./assets/img/$lang_code-screenshots" ] ; then
43+
cp -frp ./assets/img/en-screenshots -T ./assets/img/$lang_code-screenshots
44+
echo Screenshots created for "$full_lang" in ./assets/img/"$lang_code"-screenshots/
4345
else
44-
echo Error: screenshots folder for "$new_lang" seems to already exist
46+
echo Error: screenshots folder for "$full_lang" seems to already exist
4547
fi

0 commit comments

Comments
 (0)