The internationalization and localization of an application are the processes of adapting the application to different languages, regional differences and technical requirements of a target market. Internationalization means designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization means adapting internationalized software for a specific region or language by adding locale-specific components (such as date, time, and number formats) and translating text.
These classes support internationalizing of Qt applications.
Compares strings according to a localized collation algorithm |
|
Can be used to speed up string collation |
|
Converts between numbers and their string representations in various languages |
|
Base class for encoding and decoding text |
|
State-based decoder for text |
|
State-based encoder for text |
|
Conversions between text encodings |
|
State-based decoder |
|
State-based encoder |
|
Internationalization support for text output |
In some cases internationalization is simple, for example, making a US application accessible to Australian or British users may require little more than a few spelling corrections. But to make a US application usable by Japanese users, or a Korean application usable by German users, will require that the software operate not only in different languages, but use different input techniques, character encodings and presentation conventions.
Qt tries to make internationalization as painless as possible for developers. All input controls and text drawing methods in Qt offer built-in support for all supported languages. The built-in font engine is capable of correctly and attractively rendering text that contains characters from a variety of different writing systems at the same time.
Qt supports most languages in use today, in particular:
The list above is supported and will work on all platforms as long as the system has fonts to render these writing systems installed.
On Windows, Linux and Unix with FontConfig (client side font support) the following languages are also supported:
On macOS, the following languages are also supported:
Many of these writing systems exhibit special features:
Qt tries to take care of all the special features listed above. You usually don't have to worry about these features so long as you use Qt's input controls (e.g. QLineEdit, QTextEdit, and derived classes or the Quick TextInput item) and Qt's display controls (e.g. QLabel and Qt Quick's Text item).
Support for these writing systems is transparent to the programmer and completely encapsulated in Qt's text engine. This means that you don't usually need to have any knowledge of the writing system used in a particular language, unless you want to write your own text input controls. In some languages, such as Arabic or languages from the Indian subcontinent, the width and shape of a glyph changes depending on the surrounding characters. To take this into account, use QTextLayout. Writing input controls also requires some knowledge of the scripts they are going to be used in. Usually, the easiest way is to subclass QLineEdit or QTextEdit.
For more information about how to internationalize source code, see Writing Source Code for Translation and Internationalization and Localization with Qt Quick.
Qt provides excellent support for translating Qt C++ and Qt Quick applications into local languages. Release managers, translators, and developers can use the Qt translation tools to accomplish their tasks.
The Qt translation tools, Qt Linguist, lupdate
, and lrelease
are installed in the bin
subdirectory of the base directory Qt is installed into. For more information about using them, see the Qt Linguist Manual.
Qt itself contains several thousands of strings that will also need to be translated into the languages that you are targeting. You will find a number of translation files in the qttranslations repository. Before you start translating Qt, read the wiki page Translating Qt Into Other Languages.
Typically, your application's main()
function will look like this:
int main(int argc, char *argv[]) { QApplication app(argc, argv); QTranslator myappTranslator; if (myappTranslator.load(QLocale::system(), u"myapp"_qs, u"_"_qs, u":/i18n"_qs)) app.installTranslator(&myappTranslator); return app.exec(); }
For a translation-aware application, a QTranslator object is created, then a translation is loaded according to the user's preferred UI display locale at runtime, and finally, the translator object is installed into the application.
You can also use QLibraryInfo::path() to locate the translations for the Qt modules used. You can request the path to the translations at run-time by passing QLibraryInfo::TranslationsPath to this function.
The Qt translation catalogs are located in the qttranslations
repository.
Warning: Qt translations are contributed by the Qt community, and provided without any guarantees. Translations migh be missing, outdated, or entirely incorrect, up to the point of being malicious. It is recommended that you audit any translations you ship.
The qt_
meta catalog contains the still-existing Qt translations that were included in the qt_
catalog in Qt 4. It was created to make porting applications from Qt 4 to Qt 5 easier. The meta catalog depends on translations that might be absent, because they belong to unnecessary or deprecated modules, which might cause the loading of the translations to fail. If you use modules that are new in Qt 5 or later in your application, you must specify the names of the catalogs for those modules even if you use the meta catalog.
The following table lists the translation catalogs available for the Qt modules and tools in Qt.
Qt Module or Tool | Catalog |
---|---|
Qt Concurrent | qtbase |
Qt Core | qtbase |
Qt D-Bus | qtbase |
Qt Designer | designer |
Qt GUI | qtbase |
Qt Help | qt_help |
Qt Linguist | linguist |
Qt Network | qtbase |
Qt Print Support | qtbase |
Qt QML | qtdeclarative |
Qt Quick | qtdeclarative |
Qt Quick Controls | qtdeclarative |
Qt Quick Widgets | qtdeclarative |
Qt SQL | qtbase |
Qt Widgets | qtbase |
For example, to locate translations for basic Qt modules, such as Qt Core, Qt GUI, Qt Network, and Qt Widgets, add the following code to the main()
function:
QTranslator qtTranslator; if (qtTranslator.load(QLocale::system(), u"qtbase"_qs, u"_"_qs, QLibraryInfo::path(QLibraryInfo::TranslationsPath))) { app.installTranslator(&qtTranslator); }
As of Qt 6, it is assumed that 8-bit UTF-8 is the predominant encoding.
QString::toUtf8() returns the text in UTF-8 encoding; this perfectly preserves Unicode information while looking like plain ASCII if the text is wholly ASCII.
For converting Unicode to local 8-bit encodings, a shortcut is available: the QString::toLocal8Bit() function returns such 8-bit data. On Unix systems this is equivalent to toUtf8(), on Windows the systems current code page is being used.
For converting the other way, there are the QString::fromUtf8() and QString::fromLocal8Bit() convenience functions.
For QTextStream, QTextStream::setEncoding() can be used to set common encodings.
Should other legacy encodings be required, the QTextCodec class from the Qt5Compat module can be used.
When an application starts, the locale of the machine will determine the 8-bit encoding used when dealing with external 8-bit data. QTextCodec::codecForLocale() returns a codec that can be used to convert between this locale encoding and Unicode.
The application may occasionally require encodings other than the default local 8-bit encoding. For example, an application in a Cyrillic KOI8-R locale (the de-facto standard locale in Russia) might need to output Cyrillic in the ISO 8859-5 encoding. Code for this would be:
QString string = ...; // some Unicode text QTextCodec *codec = QTextCodec::codecForName("ISO 8859-5"); QByteArray encodedString = codec->fromUnicode(string);
For converting the other way, the below code demonstrates the conversion from ISO 8859-5 Cyrillic to Unicode:
QByteArray encodedString = ...; // some ISO 8859-5 encoded text QTextCodec *codec = QTextCodec::codecForName("ISO 8859-5"); QString string = codec->toUnicode(encodedString);
For a complete list of supported encodings see the QTextCodec documentation.
Localization is the process of adapting to local conventions, for example presenting dates and times using the locally preferred formats. For localized numbers, dates, times and currency strings, use the QLocale class.
Localizing images is not recommended. Choose clear icons that are appropriate for all localities, rather than relying on local puns or stretched metaphors. The exception is for images of left and right pointing arrows which may need to be reversed for Arabic and Hebrew locales.
Some applications, such as Qt Linguist, must be able to support changes to the user's language settings while they are still running. To make widgets aware of changes to the installed QTranslator objects, reimplement the widget's changeEvent() function to check whether the event is a LanguageChange event, and update the text displayed by widgets using the tr() function in the usual way. For example:
void MyWidget::changeEvent(QEvent *event) { if (event->type() == QEvent::LanguageChange) { titleLabel->setText(tr("Document Title")); ... okPushButton->setText(tr("&OK")); } else QWidget::changeEvent(event); }
All other change events should be passed on by calling the default implementation of the function.
The list of installed translators might change in reaction to a LocaleChange event, or the application might provide a user interface that allows the user to change the current application language.
The default event handler for QWidget subclasses responds to the QEvent::LanguageChange event, and will call this function when necessary.
LanguageChange events are posted when a new translation is installed using the QCoreApplication::installTranslator() function. Additionally, other application components can also force widgets to update themselves by posting LanguageChange events to them.
Some of the operating systems and windowing systems that Qt runs on only have limited support for Unicode. The level of support available in the underlying system has some influence on the support that Qt can provide on those platforms, although in general Qt applications need not be too concerned with platform-specific limitations.
/usr/share/locale/ja_JP.EUC
directory, this does not necessarily mean you can display Japanese text; you also need to have Japanese fonts installed, and the /usr/share/locale/ja_JP.EUC
directory needs to be complete. For best results, use complete locales from your system vendor.For details on macOS-specific translation, refer to the Qt for macOS issues document here.
Using Qt Linguist to internationalize your Qt application |
|
Text ID based internationalization provides support for large scale projects with many target locales and many texts to translate |
|
A summary of the translation rules for plurals produced by Qt's i18n tools. |
|
How to write source code in a way that makes it possible for user-visible text to be translated. |
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/internationalization.html