
commit 0f4979d17282887000ba7a205bc2d8e3c3700364 Author: Sebastian Hahn <sebastian@torproject.org> Date: Sun Sep 4 06:07:07 2011 +0200 Disable all projects other than bridgedb, orbot Transifex has issues with all the other projects, have to wait for a solution -.- --- config | 4 +++- update_translations | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config b/config index 1366e69..5ddf287 100644 --- a/config +++ b/config @@ -7,6 +7,8 @@ TRANSLATION_REPO=/srv/translation.torproject.org/translations/ TX=/srv/translation.torproject.org/transifex-client/bin/tx -PROJECTS="bridgedb gettor orbot vidalia vidalia_help vidalia_installer" +#PROJECTS="bridgedb gettor orbot vidalia vidalia_help vidalia_installer" + +PROJECTS="bridgedb orbot" PIDFILE=/srv/translation.torproject.org/run/update_translations.pid diff --git a/update_translations b/update_translations index 67683f4..79a4913 100755 --- a/update_translations +++ b/update_translations @@ -27,7 +27,7 @@ for project in $PROJECTS; do cd $project; # Fetch new translations for this project ... - $TX pull -a > /dev/null; + $TX pull -a -s > /dev/null; # ... add them to git ... git add . > /dev/null;