aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/toolbareditor
diff options
context:
space:
mode:
authorGravatar un1versal2015-10-08 13:39:40 +0100
committerGravatar un1versal2015-10-08 17:39:58 +0100
commit382a6b70bf65bc9776b084a600e4025a249c1665 (patch)
tree77d1de4a06bd793fcefe541ff517fdacf03c0763 /src/modules/toolbareditor
parent[ci skip] cpp file typos and capitalization corrections (diff)
downloadKVIrc-382a6b70bf65bc9776b084a600e4025a249c1665.tar.gz
KVIrc-382a6b70bf65bc9776b084a600e4025a249c1665.tar.bz2
KVIrc-382a6b70bf65bc9776b084a600e4025a249c1665.zip
[ci skip] cpp files, capitalization, typos, syntax normalization and punctuation
Diffstat (limited to 'src/modules/toolbareditor')
-rw-r--r--src/modules/toolbareditor/CustomizeToolBarsDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp b/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
index bd6712887..65da7f42f 100644
--- a/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
+++ b/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
@@ -263,7 +263,7 @@ void CustomToolBarPropertiesDialog::okClicked()
if(QMessageBox::information(this,__tr2qs_ctx("Duplicate ToolBar Id","editor"),
__tr2qs_ctx("The specified ToolBar Id already exists.<br>" \
"Would you like KVIrc to assign it automatically (so it doesn't "
- "collide with any other toolbar) or you prefer to do it manually ?","editor"),
+ "collide with any other toolbar) or you prefer to do it manually?","editor"),
__tr2qs_ctx("Manually","editor"),__tr2qs_ctx("Automatically","editor")) == 0)return;
m_szId = KviCustomToolBarManager::instance()->idForNewToolBar(m_szLabel);
}
@@ -379,7 +379,7 @@ void CustomizeToolBarsDialog::deleteToolBar()
if(!t)return;
if(QMessageBox::question(this,
__tr2qs_ctx("Confirm ToolBar Deletion","editor"),
- __tr2qs_ctx("Do you really want to delete toolbar \"%1\" ?","editor").arg(t->windowTitle()),
+ __tr2qs_ctx("Do you really want to delete toolbar \"%1\"?","editor").arg(t->windowTitle()),
QMessageBox::Yes | QMessageBox::No,
QMessageBox::No) != QMessageBox::Yes)return;
KviCustomToolBarManager::instance()->destroyDescriptor(t->descriptor()->id());
@@ -403,7 +403,7 @@ void CustomizeToolBarsDialog::exportToolBar()
int ret = QMessageBox::question(this,
__tr2qs_ctx("ToolBar Export","editor"),
- __tr2qs_ctx("Do you want the associated actions to be exported with the toolbar ?","editor"),
+ __tr2qs_ctx("Do you want the associated actions to be exported with the toolbar?","editor"),
__tr2qs_ctx("Yes","editor"),
__tr2qs_ctx("No","editor"),
__tr2qs_ctx("Cancel","editor"));