aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor/ScriptEditorImplementation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/editor/ScriptEditorImplementation.cpp')
-rw-r--r--src/modules/editor/ScriptEditorImplementation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/editor/ScriptEditorImplementation.cpp b/src/modules/editor/ScriptEditorImplementation.cpp
index 0b8dead2a..0244b1db0 100644
--- a/src/modules/editor/ScriptEditorImplementation.cpp
+++ b/src/modules/editor/ScriptEditorImplementation.cpp
@@ -262,7 +262,7 @@ void ScriptEditorWidget::insertCompletion(const QString & szCompletion)
void ScriptEditorWidget::contextMenuEvent(QContextMenuEvent * e)
{
QMenu * pMenu = createStandardContextMenu();
- pMenu->addAction(__tr2qs_ctx("Context sensitive help","editor"),this,SLOT(slotHelp()),Qt::CTRL+Qt::Key_H);
+ pMenu->addAction(__tr2qs_ctx("Context Sensitive Help","editor"),this,SLOT(slotHelp()),Qt::CTRL+Qt::Key_H);
pMenu->addAction(__tr2qs_ctx("&Replace","editor"),this,SLOT(slotReplace()),Qt::CTRL+Qt::Key_R);
pMenu->exec(e->globalPos());
delete pMenu;
@@ -1085,7 +1085,7 @@ ScriptEditorReplaceDialog::ScriptEditorReplaceDialog(QWidget * pParent, const QS
QLabel * m_pFindLabel = new QLabel(this);
m_pFindLabel->setObjectName("findlabel");
- m_pFindLabel->setText(__tr2qs_ctx("Word to Find","editor"));
+ m_pFindLabel->setText(__tr2qs_ctx("Word to find","editor"));
pLayout->addWidget(m_pFindLabel,0,0);
m_pFindLineEdit = new QLineEdit(this);