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/PackAddonDialog.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/PackAddonDialog.cpp')
| -rw-r--r-- | src/modules/addon/PackAddonDialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/addon/PackAddonDialog.cpp b/src/modules/addon/PackAddonDialog.cpp index 24933b430..4f0ccd5f6 100644 --- a/src/modules/addon/PackAddonDialog.cpp +++ b/src/modules/addon/PackAddonDialog.cpp @@ -157,7 +157,7 @@ bool PackAddonDialog::packAddon() { if(QMessageBox::question( this, - __tr2qs_ctx("Export Addon - KVIrc","addon"), + __tr2qs_ctx("Exporting Addon Confirmation - KVIrc","addon"), __tr2qs_ctx("File %1 already exists. Do you want to overwrite it?","addon").arg(info.szSavePath), QMessageBox::Yes, QMessageBox::No @@ -179,13 +179,13 @@ bool PackAddonDialog::packAddon() if(!AddonFunctions::pack(info,szError)) { QMessageBox::critical(this, - __tr2qs_ctx("Addon Packaging Error","addon"), + __tr2qs_ctx("Addon Packaging - KVIrc","addon"), szError,QMessageBox::Ok,QMessageBox::NoButton,QMessageBox::NoButton ); return false; } - QMessageBox::information(this,__tr2qs_ctx("Export Addon - KVIrc","addon"),__tr2qs_ctx("Package saved successfully in %1","addon").arg(m_szSavePath),QMessageBox::Ok,QMessageBox::NoButton,QMessageBox::NoButton); + QMessageBox::information(this,__tr2qs_ctx("Exporting Addon Completed - KVIrc","addon"),__tr2qs_ctx("The Package was saved successfully in %1","addon").arg(m_szSavePath),QMessageBox::Ok,QMessageBox::NoButton,QMessageBox::NoButton); return true; } @@ -399,7 +399,7 @@ PackAddonSummaryFilesWidget::PackAddonSummaryFilesWidget(PackAddonDialog * pPare : QDialog(pParent) { setObjectName("addon_package_summary_file_dialog"); - setWindowTitle(__tr2qs_ctx("File Summary","addon")); + setWindowTitle(__tr2qs_ctx("File Summary Review - KVIrc","addon")); setWindowModality(Qt::WindowModal); setModal(true); |
