KI18n

klocalizedstring.h File Reference
#include <ki18n_export.h>
#include <QChar>
#include <QLatin1Char>
#include <QSet>
#include <QString>
#include <QStringList>
#include <memory>
#include <kuitsetup.h>
#include <klocalizedcontext.h>
Include dependency graph for klocalizedstring.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  KLocalizedString
 

Functions

QString i18n (const char *text, const TYPE &arg...)
 
QString i18nc (const char *context, const char *text, const TYPE &arg...)
 
QString i18ncp (const char *context, const char *singular, const char *plural, const TYPE &arg...)
 
QString i18nd (const char *domain, const char *text, const TYPE &arg...)
 
QString i18ndc (const char *domain, const char *context, const char *text, const TYPE &arg...)
 
QString i18ndcp (const char *domain, const char *context, const char *singular, const char *plural, const TYPE &arg...)
 
QString i18ndp (const char *domain, const char *singular, const char *plural, const TYPE &arg...)
 
QString i18np (const char *singular, const char *plural, const TYPE &arg...)
 
KLocalizedString KI18N_EXPORT ki18n (const char *text)
 
KLocalizedString KI18N_EXPORT ki18nc (const char *context, const char *text)
 
KLocalizedString KI18N_EXPORT ki18ncp (const char *context, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT ki18nd (const char *domain, const char *text)
 
KLocalizedString KI18N_EXPORT ki18ndc (const char *domain, const char *context, const char *text)
 
KLocalizedString KI18N_EXPORT ki18ndcp (const char *domain, const char *context, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT ki18ndp (const char *domain, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT ki18np (const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT kxi18n (const char *text)
 
KLocalizedString KI18N_EXPORT kxi18nc (const char *context, const char *text)
 
KLocalizedString KI18N_EXPORT kxi18ncp (const char *context, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT kxi18nd (const char *domain, const char *text)
 
KLocalizedString KI18N_EXPORT kxi18ndc (const char *domain, const char *context, const char *text)
 
KLocalizedString KI18N_EXPORT kxi18ndcp (const char *domain, const char *context, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT kxi18ndp (const char *domain, const char *singular, const char *plural)
 
KLocalizedString KI18N_EXPORT kxi18np (const char *singular, const char *plural)
 
QString tr2i18n (const char *text, const char *comment=nullptr)
 
QString tr2i18nd (const char *domain, const char *text, const char *comment=nullptr)
 
QString tr2xi18n (const char *text, const char *comment=nullptr)
 
QString tr2xi18nd (const char *domain, const char *text, const char *comment=nullptr)
 
QString xi18n (const char *text, const TYPE &arg...)
 
QString xi18nc (const char *context, const char *text, const TYPE &arg...)
 
QString xi18ncp (const char *context, const char *singular, const char *plural, const TYPE &arg...)
 
QString xi18nd (const char *domain, const char *text, const TYPE &arg...)
 
QString xi18ndc (const char *domain, const char *context, const char *text, const TYPE &arg...)
 
QString xi18ndcp (const char *domain, const char *context, const char *singular, const char *plural, const TYPE &arg...)
 
QString xi18ndp (const char *domain, const char *singular, const char *plural, const TYPE &arg...)
 
QString xi18np (const char *singular, const char *plural, const TYPE &arg...)
 

Function Documentation

◆ i18n()

QString i18n ( const char * text,
const TYPE & arg... )

Translate a string and substitute any arguments.

Parameters
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18nc()

QString i18nc ( const char * context,
const char * text,
const TYPE & arg... )

Translate a string with context and substitute any arguments.

Parameters
contextcontext of the string
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18ncp()

QString i18ncp ( const char * context,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a string with context and plural and substitute any arguments.

Parameters
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18nd()

QString i18nd ( const char * domain,
const char * text,
const TYPE & arg... )

Translate a string from domain and substitute any arguments.

Parameters
domaindomain in which to look for translations
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18ndc()

QString i18ndc ( const char * domain,
const char * context,
const char * text,
const TYPE & arg... )

Translate a string from domain with context and substitute any arguments.

Parameters
domaindomain in which to look for translations
contextcontext of the string
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18ndcp()

QString i18ndcp ( const char * domain,
const char * context,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a string from domain with context and plural and substitute any arguments.

Parameters
domaindomain in which to look for translations
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18ndp()

QString i18ndp ( const char * domain,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a string from domain with plural and substitute any arguments.

Parameters
domaindomain in which to look for translations
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ i18np()

QString i18np ( const char * singular,
const char * plural,
const TYPE & arg... )

Translate a string with plural and substitute any arguments.

Parameters
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ ki18n()

KLocalizedString KI18N_EXPORT ki18n ( const char * text)

Create non-finalized translated string.

Parameters
textstring to translate
Returns
non-finalized translated string

Definition at line 51 of file klocalizedstring.cpp.

◆ ki18nc()

KLocalizedString KI18N_EXPORT ki18nc ( const char * context,
const char * text )

Create non-finalized translated string with context.

Parameters
contextcontext of the string
textstring to translate
Returns
non-finalized translated string

Definition at line 52 of file klocalizedstring.cpp.

◆ ki18ncp()

KLocalizedString KI18N_EXPORT ki18ncp ( const char * context,
const char * singular,
const char * plural )

Create non-finalized translated string with context and plural.

Parameters
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 54 of file klocalizedstring.cpp.

◆ ki18nd()

KLocalizedString KI18N_EXPORT ki18nd ( const char * domain,
const char * text )

Create non-finalized translated string from domain.

Parameters
domaindomain in which to look for translations
textstring to translate
Returns
non-finalized translated string

Definition at line 55 of file klocalizedstring.cpp.

◆ ki18ndc()

KLocalizedString KI18N_EXPORT ki18ndc ( const char * domain,
const char * context,
const char * text )

Create non-finalized translated string from domain with context.

Parameters
domaindomain in which to look for translations
contextcontext of the string
textstring to translate
Returns
non-finalized translated string

Definition at line 56 of file klocalizedstring.cpp.

◆ ki18ndcp()

KLocalizedString KI18N_EXPORT ki18ndcp ( const char * domain,
const char * context,
const char * singular,
const char * plural )

Create non-finalized translated string from domain with context and plural.

Parameters
domaindomain in which to look for translations
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 58 of file klocalizedstring.cpp.

◆ ki18ndp()

KLocalizedString KI18N_EXPORT ki18ndp ( const char * domain,
const char * singular,
const char * plural )

Create non-finalized translated string from domain with plural.

Parameters
domaindomain in which to look for translations
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 57 of file klocalizedstring.cpp.

◆ ki18np()

KLocalizedString KI18N_EXPORT ki18np ( const char * singular,
const char * plural )

Create non-finalized translated string with plural.

Parameters
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 53 of file klocalizedstring.cpp.

◆ kxi18n()

KLocalizedString KI18N_EXPORT kxi18n ( const char * text)

Create non-finalized markup-aware translated string.

Parameters
textstring to translate
Returns
non-finalized translated string

Definition at line 60 of file klocalizedstring.cpp.

◆ kxi18nc()

KLocalizedString KI18N_EXPORT kxi18nc ( const char * context,
const char * text )

Create non-finalized markup-aware translated string with context.

Parameters
contextcontext of the string
textstring to translate
Returns
non-finalized translated string

Definition at line 61 of file klocalizedstring.cpp.

◆ kxi18ncp()

KLocalizedString KI18N_EXPORT kxi18ncp ( const char * context,
const char * singular,
const char * plural )

Create non-finalized markup-aware translated string.

with context and plural.

Parameters
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 63 of file klocalizedstring.cpp.

◆ kxi18nd()

KLocalizedString KI18N_EXPORT kxi18nd ( const char * domain,
const char * text )

Create non-finalized markup-aware translated string from domain.

Parameters
domaindomain in which to look for translations
textstring to translate
Returns
non-finalized translated string

Definition at line 64 of file klocalizedstring.cpp.

◆ kxi18ndc()

KLocalizedString KI18N_EXPORT kxi18ndc ( const char * domain,
const char * context,
const char * text )

Create non-finalized markup-aware translated string from domain with context.

Parameters
domaindomain in which to look for translations
contextcontext of the string
textstring to translate
Returns
non-finalized translated string

Definition at line 65 of file klocalizedstring.cpp.

◆ kxi18ndcp()

KLocalizedString KI18N_EXPORT kxi18ndcp ( const char * domain,
const char * context,
const char * singular,
const char * plural )

Create non-finalized markup-aware translated string from domain with context and plural.

Parameters
domaindomain in which to look for translations
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 67 of file klocalizedstring.cpp.

◆ kxi18ndp()

KLocalizedString KI18N_EXPORT kxi18ndp ( const char * domain,
const char * singular,
const char * plural )

Create non-finalized markup-aware translated string from domain with plural.

Parameters
domaindomain in which to look for translations
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 66 of file klocalizedstring.cpp.

◆ kxi18np()

KLocalizedString KI18N_EXPORT kxi18np ( const char * singular,
const char * plural )

Create non-finalized markup-aware translated string with plural.

Parameters
singularsingular form of the string to translate
pluralplural form of the string to translate
Returns
non-finalized translated string

Definition at line 62 of file klocalizedstring.cpp.

◆ tr2i18n()

QString tr2i18n ( const char * text,
const char * comment = nullptr )
inline

Redirect Qt's uic-generated translation calls to Ki18n.

Use -tr tr2i18n option to uic to have it redirect calls.

Parameters
textstring to translate
commentQt equivalent of disambiguation context
Returns
translated string

Definition at line 930 of file klocalizedstring.h.

◆ tr2i18nd()

QString tr2i18nd ( const char * domain,
const char * text,
const char * comment = nullptr )
inline

Like tr2i18n, but look for translation in a specific domain.

Use -tr tr2i18nd option to uic to have it redirect calls.

Parameters
domaindomain in which to look for translations
textstring to translate
commentQt equivalent of disambiguation context
Returns
translated string

Definition at line 951 of file klocalizedstring.h.

◆ tr2xi18n()

QString tr2xi18n ( const char * text,
const char * comment = nullptr )
inline

Like tr2i18n, but when UI strings are KUIT markup-aware.

Use -tr tr2xi18n option to uic to have it redirect calls.

Parameters
textmarkup-aware string to translate
commentQt equivalent of disambiguation context
Returns
translated string

Definition at line 971 of file klocalizedstring.h.

◆ tr2xi18nd()

QString tr2xi18nd ( const char * domain,
const char * text,
const char * comment = nullptr )
inline

Like tr2xi18n, but look for translation in a specific domain.

Use -tr tr2xi18nd option to uic to have it redirect calls.

Parameters
domaindomain in which to look for translations
textmarkup-aware string to translate
commentQt equivalent of disambiguation context
Returns
translated string

Definition at line 992 of file klocalizedstring.h.

◆ xi18n()

QString xi18n ( const char * text,
const TYPE & arg... )

Translate a markup-aware string and substitute any arguments.

Parameters
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18nc()

QString xi18nc ( const char * context,
const char * text,
const TYPE & arg... )

Translate a markup-aware string with context and substitute any arguments.

Parameters
contextcontext of the string
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18ncp()

QString xi18ncp ( const char * context,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a markup-aware string with context and plural and substitute any arguments.

Parameters
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18nd()

QString xi18nd ( const char * domain,
const char * text,
const TYPE & arg... )

Translate a markup-aware string from domain and substitute any arguments.

Parameters
domaindomain in which to look for translations
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18ndc()

QString xi18ndc ( const char * domain,
const char * context,
const char * text,
const TYPE & arg... )

Translate a markup-aware string from domain with context and substitute any arguments.

Parameters
domaindomain in which to look for translations
contextcontext of the string
textstring to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18ndcp()

QString xi18ndcp ( const char * domain,
const char * context,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a markup-aware string from domain with context and plural and substitute any arguments.

Parameters
domaindomain in which to look for translations
contextcontext of the string
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18ndp()

QString xi18ndp ( const char * domain,
const char * singular,
const char * plural,
const TYPE & arg... )

Translate a markup-aware string from domain with plural and substitute any arguments.

Parameters
domaindomain in which to look for translations
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string

◆ xi18np()

QString xi18np ( const char * singular,
const char * plural,
const TYPE & arg... )

Translate a markup-aware string with plural and substitute any arguments.

Parameters
singularsingular form of the string to translate
pluralplural form of the string to translate
argarguments to insert (0 to 9), admissible types according to KLocalizedString::subs methods
Returns
translated string
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sun Feb 25 2024 18:47:44 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.