From: Shaun Reich Date: Tue, 3 Feb 2009 03:20:47 +0000 (+0000) Subject: String change - Added clarification in the displayed message box for when the setting... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/4f00fc19cde6c15e83e297ebde03d9b228f5c3eb 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 --- 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());