From kde-i18n-doc Mon Feb 04 20:44:56 2013 From: Volkan Gezer Date: Mon, 04 Feb 2013 20:44:56 +0000 To: kde-i18n-doc Subject: Re: Installing translated po files Message-Id: X-MARC-Message: https://marc.info/?l=kde-i18n-doc&m=136001079212336 Hello, On kde-i18n channel i posted my question and got the answer from Yuri Chornoivan. Then I found commands to process all files in translation directory and test it by copying all files into locale folder. echo "Find PO files, process each with msgfmt and rename the result into filename.MO" for file in `find . -name "*.po"` ; do msgfmt -o `echo $file | sed 's/\.po$/.mo/'` $file ; done echo "Move all MO files to locale folder" sudo find . -iname '*.mo' -exec mv '{}' /usr/share/locale//LC_MESSAGES/ \; Best regards, Volkan GEZER volkangezer@gmail.com 2013/2/1 Volkan Gezer : > Hello, > > I have followed the steps here to build and install language files: > http://techbase.kde.org/Development/Tutorials/Localization/Building_KDE's= _l10n_Module > . Installation finished successfully but I cannot see the newly > localized Apps. Even I use KDE_LANG variable. I restarted the pc but > it is still not working. How can I solve this? > > PS: Also installing applications started giving some warnings while > triggering man-db > > En =C4=B0yi Dileklerimle, > Volkan GEZER > volkangezer@gmail.com