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
This commit is contained in:
Shaun Reich 2009-02-03 03:20:47 +00:00
parent 5d230c956f
commit 4f00fc19cd

View file

@ -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());