Skip to content
This repository has been archived by the owner on Oct 16, 2022. It is now read-only.

Commit

Permalink
Added a script for merging launchpad translations
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed Feb 3, 2018
1 parent 1ea88bc commit 6fbf788
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions merge-launchpad-translations.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/bin/bash

backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd "$DIR"

. ./BUILD_CONFIG

languages="am ar az bg ca cs da de el en_GB es et eu fi fr he hi hr hu ia id is it ko lt nb ne nl pl pt pt_BR ro ru sk sr sv tr uk vi zh_CN"

echo ""
echo "=========================================================================="
echo " Update PO files in po/ with downloaded translations placed in po-lp/"
echo "=========================================================================="
echo ""

for lang in $languages; do
# remove headers in po-lp/*.po so that msgcat does not create malformed headers
sed -i '/^#/d' po-lp/${app_name}-$lang.po
msgcat -o po/${app_name}-$lang.po po-lp/${app_name}-$lang.po po/${app_name}-$lang.po
sed -i '/#-#-#-#-#/d' po/${app_name}-$lang.po
sed -i '/#, fuzzy/d' po/${app_name}-$lang.po
done

echo ""
echo "=========================================================================="
echo " Update PO files in po/ with latest POT file"
echo "=========================================================================="
echo ""

for lang in $languages; do
msgmerge --update -v po/${app_name}-$lang.po ${app_name}.pot
done

cd "$backup"

0 comments on commit 6fbf788

Please sign in to comment.