Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Slovenian translations #174

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/workflows/test-translations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Check translations

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install Trubar
run: |
pip install trubar

- name: Collect translations
run: |
cd i18n
trubar collect -s ../orangecontrib/geo new.jaml
trubar merge -u Obsolete.jaml si/msgs.jaml new.jaml
trubar missing -o Missing.jaml new.jaml
if [ ! -s Missing.jaml ]
then
rm Missing.jaml
fi

- name: Check Slovenian translations
run: |
cd i18n
for fn in Obsolete Missing
do
if [ -f $fn.jaml ]
then
echo "::group::$fn translations"
cat $fn.jaml
echo "::endgroup::"
fi
done
echo "-------------------------------"
trubar stat new.jaml
echo "-------------------------------"
if [ -f Missing.jaml ] || [ -f Obsolete.jaml ]
then
echo "### Missing or obsolete translations" >> $GITHUB_STEP_SUMMARY
echo "::error::Missing or obsolete translations"
echo "If you wish to fix this, see orange3/i18n/README.md"
exit 1
else
echo "### All translations are up to date" >> $GITHUB_STEP_SUMMARY
fi
Loading
Loading