repo.or.cz
/
rox-filer
/
ma.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r246: Added support for i18n. No translations yet, though!
[rox-filer/ma.git]
/
ROX-Filer
/
src
/
update-trans
blob
56497e3eae1a02adf698250db012dff72790adb2
1
#!/bin/sh
2
3
echo
Extracting messages from
source
files...
4
echo
5
6
make
ROX-Filer.po
7
8
echo
9
echo
Updating all .po files...
10
echo
11
12
for
FILE
in
..
/
po
/*/
LC_MESSAGES
/
ROX-Filer.po
;
do
13
echo -n
"Updating '
$FILE
' translation"
14
mv
$FILE $FILE
.old
15
msgmerge
$FILE
.old ROX-Filer.po
>
${FILE}
;
16
done