mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
11 lines
256 B
Bash
Executable file
11 lines
256 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)
|
|
|
|
# make sure gettext translations haven't broken something
|
|
(cd po && python check-po-files.py)
|