mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
split ftl and po syncing scripts
This commit is contained in:
parent
71e7568904
commit
f28b32cf75
2 changed files with 8 additions and 4 deletions
4
qt/i18n/sync-git → qt/i18n/sync-ftl-git
Executable file → Normal file
4
qt/i18n/sync-git → qt/i18n/sync-ftl-git
Executable file → Normal file
|
@ -3,10 +3,6 @@
|
||||||
# pull any pending changes from git repos
|
# pull any pending changes from git repos
|
||||||
./pull-git
|
./pull-git
|
||||||
|
|
||||||
# upload changes to .pot
|
|
||||||
./update-po-template
|
|
||||||
(cd po && git add desktop; git commit -m update; git push)
|
|
||||||
|
|
||||||
# upload changes to ftl templates
|
# upload changes to ftl templates
|
||||||
./update-ftl-templates
|
./update-ftl-templates
|
||||||
(cd ftl && git add core; git commit -m update; git push)
|
(cd ftl && git add core; git commit -m update; git push)
|
8
qt/i18n/sync-po-git
Executable file
8
qt/i18n/sync-po-git
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# pull any pending changes from git repos
|
||||||
|
./pull-git
|
||||||
|
|
||||||
|
# upload changes to .pot
|
||||||
|
./update-po-template
|
||||||
|
(cd po && git add desktop; git commit -m update; git push)
|
Loading…
Reference in a new issue