-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.sh
executable file
·54 lines (47 loc) · 1.36 KB
/
i18n.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# Author: Robert Niederreiter <rnix@squarewave.at>
# License: no license
# Date: 2014-07-20
#
# Requirements:
# - python lingua (sudo pip install lingua)
# - gettext
#
# Usage:
# Initial catalog creation (lang is the language identifier):
# ./i18n.sh lang
# Updating translation and compile catalog:
# ./i18n.sh
# configuration
DOMAIN="yafowil.widget.image"
SEACH_PATH=src/yafowil/widget/image
LOCALES_PATH=src/yafowil/widget/image/locales
# end configuration
# create locales folder if not exists
if [ ! -d "$LOCALES_PATH" ]; then
echo "Locales directory not exists, create"
mkdir -p $LOCALES_PATH
fi
# create pot if not exists
if [ ! -f $LOCALES_PATH/$DOMAIN.pot ]; then
echo "Create pot file"
touch $LOCALES_PATH/$DOMAIN.pot
fi
# no arguments, extract and update
if [ $# -eq 0 ]; then
echo "Extract messages"
pot-create $SEACH_PATH -o $LOCALES_PATH/$DOMAIN.pot
echo "Update translations"
for po in $LOCALES_PATH/*/LC_MESSAGES/$DOMAIN.po; do
msgmerge -o $po $po $LOCALES_PATH/$DOMAIN.pot
done
echo "Compile message catalogs"
for po in $LOCALES_PATH/*/LC_MESSAGES/*.po; do
msgfmt -o ${po%.*}.mo $po
done
# first argument represents language identifier, create catalog
else
cd $LOCALES_PATH
mkdir -p $1/LC_MESSAGES
msginit -i $DOMAIN.pot -o $1/LC_MESSAGES/$DOMAIN.po -l $1
fi