aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/classeditor/ClassEditorWindow.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-10-08 13:31:51 +0100
committerGravatar un1versal2015-10-08 17:39:58 +0100
commit4916057361fc8ce13f63e36b993f20a1e4aa7e1c (patch)
treefde05d885169fb82b4fc4a0d43de4ef4d7f3e6ca /src/modules/classeditor/ClassEditorWindow.cpp
parent[ci skip] no strings - cpp files - typo corrections (diff)
downloadKVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.tar.gz
KVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.tar.bz2
KVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.zip
[ci skip] cpp file typos and capitalization corrections
Diffstat (limited to 'src/modules/classeditor/ClassEditorWindow.cpp')
-rw-r--r--src/modules/classeditor/ClassEditorWindow.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/modules/classeditor/ClassEditorWindow.cpp b/src/modules/classeditor/ClassEditorWindow.cpp
index fba557ce2..d7e9860d8 100644
--- a/src/modules/classeditor/ClassEditorWindow.cpp
+++ b/src/modules/classeditor/ClassEditorWindow.cpp
@@ -540,7 +540,7 @@ void ClassEditorWidget::renameFunction()
QMessageBox::information(this,
__tr2qs_ctx("Function already exists","editor"),
__tr2qs_ctx("This name is already in use. Please choose another one.","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
return;
}
@@ -602,7 +602,7 @@ void ClassEditorWidget::renameClass(ClassEditorTreeWidgetItem * pClassItem)
QMessageBox::information(this,
__tr2qs_ctx("Class already exists","editor"),
__tr2qs_ctx("This name is already in use. Please choose another one.","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
return;
}
@@ -612,7 +612,7 @@ void ClassEditorWidget::renameClass(ClassEditorTreeWidgetItem * pClassItem)
QMessageBox::information(this,
__tr2qs_ctx("Bad Namespace Name","editor"),
__tr2qs_ctx("Found an empty namespace in namespace name","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
szNewName = "";
continue;
@@ -686,12 +686,12 @@ void ClassEditorWidget::renameNamespace(ClassEditorTreeWidgetItem * pOldNamespac
QMessageBox::information(this,
__tr2qs_ctx("Name already exists as Class name","editor"),
__tr2qs_ctx("This name is already in use as Class name. Please choose another one.","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
} else {
QMessageBox::information(this,
__tr2qs_ctx("Namespace already exists","editor"),
__tr2qs_ctx("This name is already in use. Please choose another one.","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
}
g_pClassEditorModule->unlock();
return;
@@ -1521,7 +1521,7 @@ bool ClassEditorWidget::askForNamespaceName(const QString & szAction, const QStr
QMessageBox::warning(this,
__tr2qs_ctx("Missing Namespace Name","editor"),
__tr2qs_ctx("You must specify a valid name for the namespace","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
continue;
}
@@ -1534,7 +1534,7 @@ bool ClassEditorWidget::askForNamespaceName(const QString & szAction, const QStr
QMessageBox::information(this,
__tr2qs_ctx("Bad Namespace Name","editor"),
__tr2qs_ctx("Namespace names can contain only letters, digits, underscores and '::' namespace separators","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
szNewName = "";
continue;
@@ -1547,8 +1547,8 @@ bool ClassEditorWidget::askForNamespaceName(const QString & szAction, const QStr
g_pClassEditorModule->lock();
QMessageBox::information(this,
__tr2qs_ctx("Bad Namespace Name","editor"),
- __tr2qs_ctx("Stray ':' character in namespace name: did you mean ...<namespace>::<name> ?","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("Stray ':' character in namespace name: did you mean ...<namespace>::<name>?","editor"),
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
szNewName = "";
continue;
@@ -1559,7 +1559,7 @@ bool ClassEditorWidget::askForNamespaceName(const QString & szAction, const QStr
QMessageBox::information(this,
__tr2qs_ctx("Bad Namespace Name","editor"),
__tr2qs_ctx("Found an empty namespace in namespace name","editor"),
- __tr2qs_ctx("Ok, Let me try again...","editor"));
+ __tr2qs_ctx("OK, Let me try again...","editor"));
g_pClassEditorModule->unlock();
szNewName = "";
continue;