mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -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
10 lines
186 B
Bash
Executable file
10 lines
186 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# expects to be run from the ftl folder
|
|
#
|
|
|
|
test -d repo || exit 1
|
|
|
|
rsync -av --delete *.ftl repo/core/templates/
|
|
(cd repo && git add core; git commit -m update; git push)
|
|
|