This repository has been archived by the owner on Oct 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a script for merging launchpad translations
- Loading branch information
1 parent
1ea88bc
commit 6fbf788
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |