diff options
| author | 2016-02-11 04:33:11 +0000 | |
|---|---|---|
| committer | 2016-02-27 10:47:52 +0000 | |
| commit | f41c1f2868ee7d318b29e4c076db45a8b0346b3d (patch) | |
| tree | 62f05c4fb396a2361c457b9d0ee68385b1eed2b0 /src/modules/addon/AddonManagementDialog.cpp | |
| parent | statusbarapplet: update tootip add space between double-click and main text (diff) | |
| download | KVIrc-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.cpp | 6 |
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; |
