You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
269 B
13 lines
269 B
11 years ago
|
|
||
|
#include "klocalizedstring.h"
|
||
|
|
||
9 years ago
|
QString tr2xi18n(const char* text, const char*)
|
||
11 years ago
|
{
|
||
|
return QLatin1String("TranslatedX") + QString::fromLatin1(text);
|
||
|
}
|
||
|
|
||
9 years ago
|
QString tr2i18n(const char* text, const char*)
|
||
11 years ago
|
{
|
||
|
return QLatin1String("Translated") + QString::fromLatin1(text);
|
||
|
}
|