Summary

Some translatable files do not use gettext at runtime, but rather contain all translations in a single file, like .desktop and .directory files. We want to find a robust and generic way to update these translations through Rosetta and language packs.

Rationale

Currently the language packs contain only translations for desktop applications that use gettext. However, there are many more translatable items in Kubuntu. Our goal is to extract all translatable contents from application packages, import them into Rosetta, and ship them into language packs so that they can be updated after a release and benefit from Rosetta updates.

Use cases

Scope

This specification deals with the KDE part. The Gnome counterpart is specified in LangpacksDesktopfiles.

Design

The KDE library that evaluates desktop/server/directory files should use gettext() to translate entries since the application's *.mo files already ship the translations.

In the past we proposed the extension of the FreeDesktop standard to support an additional field TranslationDomain, so that Gnome, KDE, and other implementations can find the matching .mo file at runtime to get additional translations from it. However, since this has been rejected upstream, we will use our own Ubuntu-specific field for this.

Most packages that are of interest to us use cdbs and kde.mk or a copy of kde.mk local to the package, thus modifying kde.mk will already cover a very large percentage of packages.

Implementation

description files

The tasks are to extract the strings from the .desktop files into .po files and add the translation domain (as value of the new field X-Ubuntu-Gettext-Domain) to the .desktop/.directory files. This will be done using a copy of the scripts at http://websvn.kde.org/trunk/l10n/scripts/ modified to add the translation domain. The scripts are createdesktop.pl and findfiles.

We will modify kde.mk to create the foo_desktop.po files using createdesktop.pl and these will be in the source build to be picked up by rosetta the same as other .po files.

KDE library changes

KConfig will need an i18n call to find the translation and fall back to the .desktop file if the .po does not contain a translation. i18n is done by KLocale and we will need to be careful not to create recursion between KConfig and KLocale.

Outstanding issues

LangpacksDesktopfilesKDE (last edited 2008-08-06 16:16:29 by localhost)