diff options
-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." + |