2013-10-06 15:55:58 +00:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QString>
|
|
|
|
#include <gettextfromc.h>
|
|
|
|
|
2013-10-10 07:15:21 +00:00
|
|
|
const char *gettextFromC::trGettext(const char *text)
|
2013-10-06 15:55:58 +00:00
|
|
|
{
|
2013-10-09 05:44:38 +00:00
|
|
|
QByteArray &result = translationCache[text];
|
|
|
|
if (result.isEmpty())
|
|
|
|
result = tr(text).toUtf8();
|
|
|
|
return result.constData();
|
|
|
|
}
|
|
|
|
|
|
|
|
void gettextFromC::reset(void)
|
|
|
|
{
|
|
|
|
translationCache.clear();
|
2013-10-06 15:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gettextFromC* gettextFromC::instance()
|
|
|
|
{
|
|
|
|
static gettextFromC *self = new gettextFromC();
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2013-10-10 07:15:21 +00:00
|
|
|
extern "C" const char *trGettext(const char *text)
|
2013-10-06 15:55:58 +00:00
|
|
|
{
|
2013-10-10 07:15:21 +00:00
|
|
|
return gettextFromC::instance()->trGettext(text);
|
2013-10-06 15:55:58 +00:00
|
|
|
}
|