aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/setup/SetupWizard.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/setup/SetupWizard.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/setup/SetupWizard.cpp')
-rw-r--r--src/modules/setup/SetupWizard.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/setup/SetupWizard.cpp b/src/modules/setup/SetupWizard.cpp
index 2a2b5f523..167c2c2a8 100644
--- a/src/modules/setup/SetupWizard.cpp
+++ b/src/modules/setup/SetupWizard.cpp
@@ -134,7 +134,7 @@ SetupPage::~SetupPage()
SetupWizard::SetupWizard()
: KviTalWizard(0)
{
- setWindowTitle(__tr2qs("KVIrc Setup"));
+ setWindowTitle(__tr2qs("Setup Wizard - KVIrc"));
setWindowModality(Qt::NonModal); // non modal, otherwise the dialogs we show will not be usable
@@ -711,7 +711,7 @@ void SetupWizard::chooseOldDataPath()
// FIXME: We'd like to show hidden directories here ($HOME/.kvirc is hidden)...
QString szBuffer = KviTalFileDialog::getExistingDirectoryPath(
m_pDataPathEdit->text(),
- __tr2qs("Choose an Old Configuration Folder - KVIrc Setup"),
+ __tr2qs("Choose an Existing Configuration Folder - KVIrc Setup"),
this
);
@@ -726,7 +726,7 @@ void SetupWizard::chooseOldDataPath()
if(
QMessageBox::question(
this,
- __tr2qs("Do Not Overwrite Folder? - KVIrc"),
+ __tr2qs("Confirm Setting Configuration Folder - KVIrc Setup"),
__tr2qs("The folder %1 doesn't seem to be a valid KVIrc settings folder. Do you want to use it anyway?")
.arg(szBuffer),
__tr2qs("&Yes"),
@@ -932,7 +932,7 @@ void SetupWizard::setUrlHandlers()
void SetupWizard::reject()
{
- if(QMessageBox::warning(this,__tr2qs("Abort Setup - KVIrc Setup"),
+ if(QMessageBox::warning(this,__tr2qs("Confirm Setup Abort - KVIrc Setup"),
__tr2qs("You have chosen to abort the setup.<br>KVIrc can't run until you complete this procedure.<br><br>Do you really wish to abort?"),
QMessageBox::Yes,QMessageBox::No|QMessageBox::Default|QMessageBox::Escape) != QMessageBox::Yes)return;
@@ -996,8 +996,8 @@ void SetupWizard::accept()
if(!KviFileUtils::makeDir(szDir))
{
KviMessageBox::warning(__tr("Can't create directory %s.\n" \
- "You may not have write permission " \
- "for that path. Please go back and choose another directory."));
+ "You may not have write permission for that path.\n" \
+ "Please go back and choose another directory."));
setCurrentPage(m_pDirectory);
return;
}