mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 23:12:21 -04:00

- translation files are now stored in a separate repo, and use a layout compatible with Pontoon - normalize the language code in aqt, so that old config settings and command line arguments are correctly handled - store Qt and gettext translations in separate subfolders - remove Crowdin scripts
9 lines
162 B
Bash
Executable file
9 lines
162 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d po ]; then
|
|
git clone https://github.com/ankitects/anki-desktop-i18n po
|
|
fi
|
|
|
|
echo "Updating translations from git..."
|
|
(cd po && git pull)
|
|
|