4430c67069
- 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
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Downloading latest translations..."
|
|
|
|
if [ ! -d repo ]; then
|
|
git clone https://github.com/ankitects/anki-core-i18n repo
|
|
fi
|
|
|
|
(cd repo && git pull)
|