mirror of
https://bitbucket.org/smil3y/kde-l10n.git
synced 2025-02-23 10:32:52 +00:00
9 lines
No EOL
337 B
Bash
Executable file
9 lines
No EOL
337 B
Bash
Executable file
|
||
|
||
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/ \; |