~ubuntu-branches/ubuntu/saucy/kde-l10n-tr/saucy-proposed

1
2
3
4
5
6
7
8
9
echo "Find PO files, process each with msgfmt and rename the result to MO"

for file in `find . -name "*.po"` ; do msgfmt -o `echo $file | sed 's/\.po$/.mo/'` $file ; done

echo "Şimdi dönüştürülen tüm MO dosyalarını uygulama dizinine aktar"

sudo find . -iname '*.mo' -exec mv '{}' /usr/share/locale/tr/LC_MESSAGES/ \;