┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Knight <[email protected]>2007-06-01 18:43:04 +0000
committerRobert Knight <[email protected]>2007-06-01 18:43:04 +0000
commitd20078be2e65533fccb79ead44090cb717f7289e (patch)
tree3998e8e4bdf2d17bc9dac6e52e181e8b7a95e6c7 /src
parentf8944288f4699ae7f61a2081d58b211152b693dd (diff)
Slightly clearer checkbox names.
svn path=/trunk/KDE/kdebase/apps/; revision=670495
Diffstat (limited to 'src')
-rw-r--r--src/generalsettingspage.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/generalsettingspage.cpp b/src/generalsettingspage.cpp
index ee4832e57..e862cf5f3 100644
--- a/src/generalsettingspage.cpp
+++ b/src/generalsettingspage.cpp
@@ -82,12 +82,12 @@ GeneralSettingsPage::GeneralSettingsPage(DolphinMainWindow* mainWin, QWidget* pa
homeBoxLayout->addWidget(homeUrlBox);
homeBoxLayout->addWidget(buttonBox);
- QGroupBox* startBox = new QGroupBox(i18n("Start"), vBox);
+ QGroupBox* startBox = new QGroupBox(i18n("Startup Settings"), vBox);
// create 'Split view', 'Editable location' and 'Filter bar' checkboxes
- m_splitView = new QCheckBox(i18n("Split view"), startBox);
- m_editableUrl = new QCheckBox(i18n("Editable location"), startBox);
- m_filterBar = new QCheckBox(i18n("Filter bar"),startBox);
+ m_splitView = new QCheckBox(i18n("Split view mode"), startBox);
+ m_editableUrl = new QCheckBox(i18n("Editable location bar"), startBox);
+ m_filterBar = new QCheckBox(i18n("Show filter bar"),startBox);
QVBoxLayout* startBoxLayout = new QVBoxLayout(startBox);
startBoxLayout->addWidget(m_splitView);
@@ -98,12 +98,12 @@ GeneralSettingsPage::GeneralSettingsPage(DolphinMainWindow* mainWin, QWidget* pa
KSharedConfig::Ptr konqConfig = KSharedConfig::openConfig("konquerorrc", KConfig::IncludeGlobals);
const KConfigGroup trashConfig(konqConfig, "Trash");
- QGroupBox* confirmBox = new QGroupBox(i18n("Ask Confirmation For"), vBox);
+ QGroupBox* confirmBox = new QGroupBox(i18n("Ask For Confirmation When"), vBox);
- m_confirmMoveToTrash = new QCheckBox(i18n("Move to trash"), confirmBox);
+ m_confirmMoveToTrash = new QCheckBox(i18n("Moving files or folders to trash"), confirmBox);
m_confirmMoveToTrash->setChecked(trashConfig.readEntry("ConfirmTrash", false));
- m_confirmDelete = new QCheckBox(i18n("Delete"), confirmBox);
+ m_confirmDelete = new QCheckBox(i18n("Deleting files or folders"), confirmBox);
m_confirmDelete->setChecked(trashConfig.readEntry("ConfirmDelete", true));
QVBoxLayout* confirmBoxLayout = new QVBoxLayout(confirmBox);
@@ -111,7 +111,7 @@ GeneralSettingsPage::GeneralSettingsPage(DolphinMainWindow* mainWin, QWidget* pa
confirmBoxLayout->addWidget(m_confirmDelete);
// create 'Show the command 'Delete' in context menu' checkbox
- m_showDeleteCommand = new QCheckBox(i18n("Show the command 'Delete' in context menu"), vBox);
+ m_showDeleteCommand = new QCheckBox(i18n("Show 'Delete' command in context menu"), vBox);
const KSharedConfig::Ptr globalConfig = KSharedConfig::openConfig("kdeglobals", KConfig::NoGlobals);
const KConfigGroup kdeConfig(globalConfig, "KDE");
m_showDeleteCommand->setChecked(kdeConfig.readEntry("ShowDeleteCommand", false));