update_translations.sh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #!/bin/sh
  2. # GNU MediaGoblin -- federated, autonomous media hosting
  3. # Copyright (C) 2011, 2012 GNU MediaGoblin contributors. See AUTHORS.
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. # exit if anything fails
  18. set -e
  19. if [ -f "./bin/pybabel" ]; then
  20. PYBABEL="./bin/pybabel";
  21. else
  22. PYBABEL=pybabel;
  23. fi
  24. echo "==> checking out master"
  25. git checkout master
  26. echo "==> pulling git master"
  27. git pull
  28. echo "==> pulling present translations"
  29. rsync --exclude-from="devtools/pootle-exclude.txt" -vaz chapters.gnu.org::pootle/mediagoblin/ mediagoblin/i18n/
  30. echo "==> Extracting translations"
  31. $PYBABEL extract -F babel.ini -o mediagoblin/i18n/templates/mediagoblin.pot .
  32. echo "==> Compiling .mo files"
  33. ./devtools/compile_translations.sh
  34. echo "==> Committing to git"
  35. git add mediagoblin/i18n/
  36. git commit -m "Committing extracted and compiled translations" || true
  37. echo "... done. Now consider pushing up those commits!"