diff options
| author | 2015-11-06 10:52:52 +0000 | |
|---|---|---|
| committer | 2015-11-06 12:38:04 +0000 | |
| commit | 237c2b5377d1670633bcb59f0980f3bd7ceae7ed (patch) | |
| tree | b44bd84d405d1c20f54e66e891c4db51701547af /src | |
| parent | server: Add a warning dialog when clearing servers (diff) | |
| download | KVIrc-237c2b5377d1670633bcb59f0980f3bd7ceae7ed.tar.gz KVIrc-237c2b5377d1670633bcb59f0980f3bd7ceae7ed.tar.bz2 KVIrc-237c2b5377d1670633bcb59f0980f3bd7ceae7ed.zip | |
Capitalization & consistency fix on confirm dialog title
Its safe to use the following guide:
https://techbase.kde.org/Projects/Usability/HIG/Capitalization
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/options/OptionsWidget_servers.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/modules/options/OptionsWidget_servers.cpp b/src/modules/options/OptionsWidget_servers.cpp index 11106a11d..98efdd556 100644 --- a/src/modules/options/OptionsWidget_servers.cpp +++ b/src/modules/options/OptionsWidget_servers.cpp @@ -2137,14 +2137,13 @@ IrcServerOptionsTreeWidgetItem * OptionsWidget_servers::findNetItem(const QStrin void OptionsWidget_servers::clearList() { QString txt = "<p>"; - txt += __tr2qs_ctx("If you click <b>Yes</b>, all of your saved networks, servers, settings, and passwords will be lost. " + txt += __tr2qs_ctx("If you click <b>Yes</b>, all of your saved networks, servers, settings, and passwords will be lost.<br>" "Would you like to continue?","options"); txt += "</p>"; - if(QMessageBox::question( - this, - __tr2qs_ctx("Confirm clearing server list","options"), - txt, __tr2qs_ctx("Yes","options"), __tr2qs_ctx("No","options"),0,1 + if(QMessageBox::question(this, + __tr2qs_ctx("Confirm Clear Server List - KVIrc","options"),txt, + __tr2qs_ctx("Yes","options"), __tr2qs_ctx("No","options"),0,1 ) != 0) return; m_pTreeWidget->clear(); |
