summaryrefslogtreecommitdiff
path: root/src/linguist/shared/ts.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-03-08 18:48:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-19 08:39:28 +0100
commitf927eb52f0bcb8d326dbb35250878fcf1d798cf6 (patch)
treecfa0432a64fb1182eefa3df3a499c0e1426610ab /src/linguist/shared/ts.cpp
parent6597b915b8df43b905f937d0ad87ae9e560ab3b5 (diff)
downloadqttools-f927eb52f0bcb8d326dbb35250878fcf1d798cf6.tar.gz
fix translation contexts
the bootstrapped library now fakes the translation api sufficiently well to enable unifying the usage. Change-Id: I6a5d7cb1bb67830f1ea0a732566ebee354d62e7e Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/linguist/shared/ts.cpp')
-rw-r--r--src/linguist/shared/ts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linguist/shared/ts.cpp b/src/linguist/shared/ts.cpp
index 38e76f9b1..2c8840d08 100644
--- a/src/linguist/shared/ts.cpp
+++ b/src/linguist/shared/ts.cpp
@@ -691,7 +691,7 @@ int initTS()
format.extension = QLatin1String("ts");
format.fileType = Translator::FileFormat::TranslationSource;
format.priority = 0;
- format.description = QObject::tr("Qt translation sources");
+ format.description = FMT::tr("Qt translation sources");
format.loader = &loadTS;
format.saver = &saveTS;
Translator::registerFileFormat(format);