mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
16 lines
352 B
Bash
Executable file
16 lines
352 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d po ]; then
|
|
git clone https://github.com/ankitects/anki-desktop-i18n po
|
|
fi
|
|
|
|
if [ ! -d ftl ]; then
|
|
git clone https://github.com/ankitects/anki-core-i18n ftl
|
|
fi
|
|
|
|
echo "Updating translations from git..."
|
|
(cd po && git pull)
|
|
(cd ftl && git pull)
|
|
|
|
# make sure gettext translations haven't broken something
|
|
python check-po-files.py
|