diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-15 09:15:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-15 09:15:43 -0300 |
commit | 0bd51cab292595efa512a95862652cc910fb7158 (patch) | |
tree | 08a3bfb7022286fa1ef666b9cbb0a15b58ccc09b /Makefile | |
parent | f65cb4e49d9fe46ee6c24ce871763c9e42c32f3e (diff) | |
download | tools-0bd51cab292595efa512a95862652cc910fb7158.tar.gz tools-0bd51cab292595efa512a95862652cc910fb7158.tar.bz2 tools-0bd51cab292595efa512a95862652cc910fb7158.tar.xz tools-0bd51cab292595efa512a95862652cc910fb7158.zip |
make translation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
@@ -2,11 +2,12 @@ XSLTPROC = xsltproc all: @echo "Current makes:" - @echo "contrib - makes contributors list for wiki and client-data" - @echo "testxml - performs a minimal XML test" - @echo "wiki - makes wiki automated databases" - @echo "maps - makes server-data information" - @echo "update - makes update and propagate web information (untested)" + @echo "contrib - makes contributors list for wiki and client-data" + @echo "testxml - performs a minimal XML test" + @echo "wiki - makes wiki automated databases" + @echo "maps - makes server-data information" + @echo "update - makes update and propagate web information (untested)" + @echo "translation - fetches Transifex translations for server, and updates both." contrib: cd contrib_xsl ; make @@ -35,3 +36,10 @@ update: cd web ; ./deploy.sh @echo "Update deployed, please move upload/ and commit result on web." +translation: + @echo "Fetching translations, ensure lang/login.txt and lang/password.txt exists..." + cd lang/ ; ./fetch.py + @echo "Updating server translations and preparing for pull..." + cd lang/ ; ./updatelang.py + @echo "Translations updated, please commit result server-data and tools." + |