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

#include "klocalizedstring.h"
QString tr2xi18n(const char* text, const char*)
{
return QLatin1String("TranslatedX") + QString::fromLatin1(text);
}
QString tr2i18n(const char* text, const char*)
{
return QLatin1String("Translated") + QString::fromLatin1(text);
}