Development/Tutorials/Localization/Building KDE's l10n Module

From KDE TechBase
Revision as of 19:26, 7 November 2007 by Albert Astals Cid (talk | contribs) (you need autogen to get the cmake files)
Building KDE's l10n Module
Tutorial Series   Localization
Previous   Using Subversion with KDE
Building KDE From Subversion
Writing Applications With Localization in Mind
What's Next   n/a
Further Reading   n/a

Abstract

For those working on applications in KDE's main repository, building and installing language support from KDE's localization (l10n) module is a good idea. Doing so will allow you to test applications in other languages so as to spot problems related to localization that may exist in KDE. Learn how to do just that in this tutorial.

Step 1: kdesdk

First, checkout the kdesdk module from the repository, then build and install it. If you have trouble building the kdesdk module, you can skip the troublesome parts. The main thing you need from the kdesdk module is the poxml folder. KBabel is also nice to have but not essential.

Step 2: l10n

You must download, build and install each language in the l10n module separately. You can check out and build just the German, and XX languages using the following procedure:

svn co -N svn://anonsvn.kde.org/home/kde/trunk/l10n-kde4 l10n
cd l10n
svn up scripts
svn up templates
svn up xx
svn up de
./xx/internal/update_xx.sh
./scripts/autogen.sh de
./scripts/autogen.sh xx

Once this is done, switch to you build directory, start cmake in the l10n/xx, l10n/de, etc directories that you wish to build the language support for one at a time. You may then make and install from the build directory.

Tip
Do not combine make and make install in a single step. It won't install anything.


The ./xx/internal/update_xx.sh step uses the transxx program in kdesdk/poxml to automatically produce the XX language translation. If you were not able to build the kdesdk/poxml files, skip the ./xx/internal/update_xx.sh step. You'll have to rely on someone else running it and committing to the code repository.

Step 3: Test An Application

To run your application using, for instance, the German catalogs open a terminal (e.g. konsole) and type:

KDE_LANG=de myapp

where "myapp" is the name of the application you wish to test. Replace the "de" with the language code you wish to test, e.g. "xx".

The German language is a good choice for testing the layout of your application, as German translated strings tend to be quite long. French is also a good choice. The XX language is useful for identifying strings in your application that are not translated.