kde-l10n/tr/ceviri_uygula.sh

9 lines
No EOL
337 B
Bash
Executable file
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

echo "Find PO files, process each with msgfmt and rename the result to MO"
for file in `find messages -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/ \;