aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/codetester/codetester.cpp
diff options
context:
space:
mode:
authorGravatar Elvio Basello2009-01-27 17:45:18 +0000
committerGravatar Elvio Basello2009-01-27 17:45:18 +0000
commit4814a1dc4bbce2c15e7a83f13f78aad814cf0f7f (patch)
tree1e8c41d6841cc666d1324965d7627bf630c6a857 /src/modules/codetester/codetester.cpp
parentupdated italian translation; fixed typo (diff)
downloadKVIrc-4814a1dc4bbce2c15e7a83f13f78aad814cf0f7f.tar.gz
KVIrc-4814a1dc4bbce2c15e7a83f13f78aad814cf0f7f.tar.bz2
KVIrc-4814a1dc4bbce2c15e7a83f13f78aad814cf0f7f.zip
first part of modules .pot fix
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3045 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/codetester/codetester.cpp')
-rw-r--r--src/modules/codetester/codetester.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/codetester/codetester.cpp b/src/modules/codetester/codetester.cpp
index ddc677a38..7d5e6832a 100644
--- a/src/modules/codetester/codetester.cpp
+++ b/src/modules/codetester/codetester.cpp
@@ -54,11 +54,11 @@ KviCodeTester::KviCodeTester(QWidget * par)
m_pEditor = KviScriptEditor::createInstance(this);
g->addWidget(m_pEditor,0,0,1,4);
//g->addMultiCellWidget(m_pEditor,0,0,0,3);
- m_pExecuteButton = new QPushButton(__tr2qs("&Execute"),this);
+ m_pExecuteButton = new QPushButton(__tr2qs_ctx("&Execute","editor"),this);
g->addWidget(m_pExecuteButton,1,3);
connect(m_pExecuteButton,SIGNAL(clicked()),this,SLOT(execute()));
- m_pModeLabel = new QLabel(__tr("Params:"),this);
+ m_pModeLabel = new QLabel(__tr2qs_ctx("Params:","editor"),this);
g->addWidget(m_pModeLabel,1,1);
m_pParams = new QLineEdit(this);
g->addWidget(m_pParams,1,2);
@@ -106,7 +106,7 @@ void KviCodeTesterWindow::resizeEvent(QResizeEvent *)
void KviCodeTesterWindow::fillCaptionBuffers()
{
- m_szPlainTextCaption = __tr2qs("Script Tester");
+ m_szPlainTextCaption = __tr2qs_ctx("Script Tester","editor");
static QString p1("<nobr><font color=\"");
static QString p2("\"><b>");