-
Notifications
You must be signed in to change notification settings - Fork 14
/
update-locale
executable file
·166 lines (132 loc) · 4.3 KB
/
update-locale
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/bash
generate_po() {
ORIG=`pwd`
TEMPDIR="/tmp/gosa-locale"
TRUE=`which true`
echo
echo "Creating temporary directory..."
[ -d $TEMPDIR ] && rm -rf $TEMPDIR
mkdir $TEMPDIR
echo "Creating copy of GOsa..."
tar c . | tar x -C $TEMPDIR
echo "Converting .tpl files..."
pushd . &> /dev/null
cd $TEMPDIR
for template in $(find . -name '*.tpl'); do
echo "* converting .tpl files: $(basename $template)"
sed -re 's!\{t(|\ [a-z0-9] =.*)\}([^\{]*)\{/t\}!<?php $t=_("\2{/t}!g;s!\{/t\}!");?>!g' $template > $template.new
mv $template.new $template
done
for template in $(find . -name '*.xml'); do
echo "* converting .xml files: $(basename $template)"
sed -e 's/<label>/<?php $t= _("/g;s!</label>!");?>!g' $template > $template.new
mv $template.new $template
done
for class in $(find . -name 'class_*.inc'); do
echo "* converting class_*.inc files: $(basename $class)"
sed -e 's/\($pl[DH][^=]*\)= *"\([^"]*\)";$/\1= _("\2");/g' $class > $class.new
mv $class.new $class
done
echo "Extracting languages..."
[ -f locale/${l_path}messages.po ] && rm locale/${l_path}messages.po
find . -name '*.[ctpix][mophn][nlpc]' | xgettext -f - --keyword=must -d Domain -L PHP -n -o locale/${l_path}messages.po
echo "Merging po files with existing ones"
error=0
for f in locale/${l_path}*/LC_MESSAGES; do
[[ "$f" == "locale/${l_path}/LC_MESSAGES" ]] && break
echo -n "* merging $f/messages.po: "
[ ! -f $f/messages.po ] && touch $f/messages.po
# If we're in a plugin of a trunk checkout, we can use the gosa-all messages.po as a dictionary
DICT_FILE_ALL="$ORIG/../../gosa-all/gosa/${f/locale/locale/core}/messages.po"
DICT_FILE_CORE="$ORIG/../../gosa-core/${f/locale/locale/core}/messages.po"
DICT=""
[ -r $DICT_FILE_ALL ] && DICT="-C $DICT_FILE_ALL"
[ ${#DICT} -eq 0 ] && [ -r $DICT_FILE_CORE ] && DICT="-C $DICT_FILE_CORE"
msgmerge $DICT $f/messages.po locale/${l_path}messages.po --output-file=$f/messages.po.tmp &> /dev/null
# Filter out duplicates
msguniq $f/messages.po.tmp --output-file=$f/messages.po.new &> /dev/null
rm $f/messages.po.tmp
# Do an extra check for dummy dir 'locale/en/LC_MESSAGES'
if [ $? -ne 0 ]; then
[ "$f" == "locale/${l_path}en/LC_MESSAGES" ] && $TRUE
fi
if [ $? -eq 0 ]; then
echo "done";
else
echo "failed";
error=1
fi
done
echo "Copying new po files, making backups..."
find locale/${l_path} -name messages.po | while read f; do
if [ -f $ORIG/$f ]; then
mv $ORIG/$f $ORIG/$f.orig
fi
echo $f | grep -q "locale/${l_path}messages.po"
if [ $? -ne 0 ]; then
echo "* replaced $ORIG/$f"
cp $f.new $ORIG/$f
else
cp $f $ORIG/$f
fi
done
rm -rf $TEMPDIR
echo
if [ $error -eq 0 ]; then
if [ $ASSUME_Y -eq 1 ]; then
find $ORIG/ -type f -name 'messages.po.orig' -exec rm -f {} \;
else
read -p "Do you want to erase the message.po.orig files? (y/n)" -n1 ans
if [ "$ans" == "y" -o "$ans" == "Y" ]; then
find $ORIG/ -type f -name 'messages.po.orig' -exec rm -f {} \;
fi
fi
else
echo "There were errors during the transition. Please fix!"
exit 1
fi
cat <<-EOF
---------------------------------------------------------------------
Now edit all files that have been replaced above (i.e. using kbabel
or gtranslator) and mail the changes to [email protected] to be
included in the next release.
To see the changes you've made in GOsa, run "msgfmt messages.po" on
your freshly edited files and restart your apache after that. Set
the webbrowser to the language you've edited and go back to the
login screen.
---------------------------------------------------------------------
EOF
popd &> /dev/null
}
#
# MAIN
#
GENERATE=0
ASSUME_Y=0
while getopts ":gyh" opt
do
case $opt in
g) GENERATE=1;
;;
y) ASSUME_Y=1;
;;
h|--help)
echo "Usage: $(basename $0) [-g] [-y]"
echo " -g extract strings from GOsa and generate po files"
echo " -y assume yes"
exit 1
;;
esac
done
shift $(($OPTIND - 1))
# If there's a plugin.dsc in ., then assume "plugin"
if [ -f plugin.dsc ]; then
l_path=""
else
l_path="core/"
fi
# Default to generate
if [ $GENERATE -eq 0 ]; then
GENERATE=1
fi
[ $GENERATE -eq 1 ] && generate_po