mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
- Fix minor typos
"sub folders" -> "sub-folders" BUG: 198084 svn path=/trunk/KDE/kdebase/apps/; revision=1077615
This commit is contained in:
parent
2798e5d225
commit
82bf5d99c1
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue