summaryrefslogtreecommitdiffstats
path: root/tdecore/tests
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-09-28 22:14:00 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-09-28 22:14:00 -0500
commit080749068be90f242a86018e44fcccd1c4706f2d (patch)
treee792488f9c527d48c1a76cde784b655c736896a8 /tdecore/tests
parent41d5228071533bcfb16d9c4d26b6c2f3e81d2dff (diff)
downloadtdelibs-080749068be90f242a86018e44fcccd1c4706f2d.tar.gz
tdelibs-080749068be90f242a86018e44fcccd1c4706f2d.zip
Fix accidental i18n breakage
Diffstat (limited to 'tdecore/tests')
-rw-r--r--tdecore/tests/klocaletest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/tests/klocaletest.cpp b/tdecore/tests/klocaletest.cpp
index 36f301d6c..2b02c22a4 100644
--- a/tdecore/tests/klocaletest.cpp
+++ b/tdecore/tests/klocaletest.cpp
@@ -182,11 +182,11 @@ int main( int argc, char ** argv )
kdDebug() << "setLanguage C\n";
TDEGlobal::locale()->setLanguage(TQString::fromLatin1("C"));
- kdDebug() << "C: " << i18n("yes") << " " << i18n(TQACCEL_OBJECT_NAME_STRING, "Space") << endl;
+ kdDebug() << "C: " << i18n("yes") << " " << i18n("TQAccel", "Space") << endl;
kdDebug() << "setLanguage de\n";
TDEGlobal::locale()->setLanguage(TQString::fromLatin1("de"));
- kdDebug() << "de: " << i18n("yes") << " " << i18n(TQACCEL_OBJECT_NAME_STRING, "Space") << endl;
+ kdDebug() << "de: " << i18n("yes") << " " << i18n("TQAccel", "Space") << endl;
Test m;