┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDarío Andrés Rodríguez <[email protected]>2010-01-20 14:04:08 +0000
committerDarío Andrés Rodríguez <[email protected]>2010-01-20 14:04:08 +0000
commit82bf5d99c11b6f236c5bb0aac262a7d75fb8fe77 (patch)
tree876a0b238c4780369267221e24b0f86166266d24 /src
parent2798e5d22546487ed6f93ecb9c5a4299ce96940a (diff)
- Fix minor typos
"sub folders" -> "sub-folders" BUG: 198084 svn path=/trunk/KDE/kdebase/apps/; revision=1077615
Diffstat (limited to 'src')
-rw-r--r--src/settings/viewpropertiesdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp
index 7c5aa7e99..2490b5696 100644
--- a/src/settings/viewpropertiesdialog.cpp
+++ b/src/settings/viewpropertiesdialog.cpp
@@ -182,7 +182,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) :
"Current folder"), applyBox);
m_applyToCurrentFolder->setChecked(true);
m_applyToSubFolders = new QRadioButton(i18nc("@option:radio Apply View Properties To",
- "Current folder including all sub folders"), applyBox);
+ "Current folder including all sub-folders"), applyBox);
m_applyToAllFolders = new QRadioButton(i18nc("@option:radio Apply View Properties To",
"All folders"), applyBox);
@@ -334,7 +334,7 @@ void ViewPropertiesDialog::applyViewProperties()
const bool applyToSubFolders = (m_applyToSubFolders != 0) &&
m_applyToSubFolders->isChecked();
if (applyToSubFolders) {
- const QString text(i18nc("@info", "The view properties of all sub folders will be changed. Do you want to continue?"));
+ const QString text(i18nc("@info", "The view properties of all sub-folders will be changed. Do you want to continue?"));
if (KMessageBox::questionYesNo(this, text) == KMessageBox::No) {
return;
}