aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon/AddonManagementDialog.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2016-02-11 04:33:11 +0000
committerGravatar un1versal2016-02-27 10:47:52 +0000
commitf41c1f2868ee7d318b29e4c076db45a8b0346b3d (patch)
tree62f05c4fb396a2361c457b9d0ee68385b1eed2b0 /src/modules/addon/AddonManagementDialog.cpp
parentstatusbarapplet: update tootip add space between double-click and main text (diff)
downloadKVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.tar.gz
KVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.tar.bz2
KVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.zip
QMessageBox/setWindowTitle: fix headers titles: capitalization, syntax + try to improve entries
+ add window title to find and replace dialog
Diffstat (limited to 'src/modules/addon/AddonManagementDialog.cpp')
-rw-r--r--src/modules/addon/AddonManagementDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/addon/AddonManagementDialog.cpp b/src/modules/addon/AddonManagementDialog.cpp
index 16f1068de..955fa01a5 100644
--- a/src/modules/addon/AddonManagementDialog.cpp
+++ b/src/modules/addon/AddonManagementDialog.cpp
@@ -98,7 +98,7 @@ AddonListViewItem::~AddonListViewItem()
AddonManagementDialog::AddonManagementDialog(QWidget * p)
: QWidget(p)
{
- setWindowTitle(__tr2qs_ctx("Manage Script-Based Addons","addon"));
+ setWindowTitle(__tr2qs_ctx("Manage Addons - KVIrc","addon"));
setObjectName("Addon manager");
setWindowIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Addons)));
@@ -275,7 +275,7 @@ void AddonManagementDialog::uninstallScript()
if(QMessageBox::question(
this,
- __tr2qs_ctx("Confirm addon uninstallation","addon"),
+ __tr2qs_ctx("Confirm Addon Uninstallation - KVIrc","addon"),
txt, __tr2qs_ctx("Yes","addon"), __tr2qs_ctx("No","addon"),0,1
) != 0) return;
@@ -303,7 +303,7 @@ void AddonManagementDialog::installScript()
if(!KviFileDialog::askForOpenFileName(
szFileName,
- __tr2qs_ctx("Please Select the Addon Installation File","addon"),
+ __tr2qs_ctx("Select a Installation File - KVIrc","addon"),
QString(),KVI_FILTER_ADDON,false,true,this
)) return;