mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

- all .ftl files for a language are concatenated into a single file at build time - all languages are included in the binary - external ftl files placed in the ftl folder can override the built-in definitions - constants are automatically generated for each string key - dropped the separate StringsGroup enum
11 lines
245 B
Bash
Executable file
11 lines
245 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
|
|
python check-po-files.py
|