┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Reich <[email protected]>2009-02-03 03:20:47 +0000
committerShaun Reich <[email protected]>2009-02-03 03:20:47 +0000
commit4f00fc19cde6c15e83e297ebde03d9b228f5c3eb (patch)
tree3f323d55a7418a5be414e17c2da86acc6e758a08
parent5d230c956f7800bf5a1359a5ed9c175b9ad39c64 (diff)
String change - Added clarification in the displayed message box for when the settings are applied in the Startup page, and there is an error. This is under the home folder setting. It now says that "the home folder is invalid or does not exist" as opposed to just saying it is invalid. I believe that it was kind of misleading as to what was wrong, so I figured it should give them _some_ hint as to what the problem is.
svn path=/trunk/KDE/kdebase/apps/; revision=920501
-rw-r--r--src/settings/startupsettingspage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings/startupsettingspage.cpp b/src/settings/startupsettingspage.cpp
index 77985b140..62d3c401e 100644
--- a/src/settings/startupsettingspage.cpp
+++ b/src/settings/startupsettingspage.cpp
@@ -119,7 +119,7 @@ void StartupSettingsPage::applySettings()
if (url.isValid() && fileItem.isDir()) {
settings->setHomeUrl(url.prettyUrl());
} else {
- KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid and will not be applied."));
+ KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid or does not exist, it will not be applied."));
}
settings->setSplitView(m_splitView->isChecked());