You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1748 8e941d3f-bd1b-0410-a28a-d453659cc2b4
14 lines
249 B
Bash
Executable File
14 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "" ]; then
|
|
echo Wrong parameters!!
|
|
echo "Please give language code(en, de, gr, sv, ...)"
|
|
echo
|
|
exit
|
|
fi
|
|
|
|
echo formatting "'$1'" translations...
|
|
msgfmt cactus.$1.po -o cactus.$1.mo
|
|
echo "done"
|
|
|