diff --git a/src/dolphin_directoryviewpropertysettings.kcfg b/src/dolphin_directoryviewpropertysettings.kcfg index 2bc870a864..ead1325de5 100644 --- a/src/dolphin_directoryviewpropertysettings.kcfg +++ b/src/dolphin_directoryviewpropertysettings.kcfg @@ -25,26 +25,26 @@ - When this option is enabled, a preview of the file content is shown as icon. + When this option is enabled, a preview of the file content is shown as an icon. false - When this option is enabled, the sorted items get summarized by their category. + When this option is enabled, the sorted items are summarized by their category. false - This option defines which attribute (name, size, date, etc) sorting is performed on. + This option defines which attribute (name, size, date, etc.) sorting is performed on. DolphinView::SortByName 0 DolphinView::MaxSortEnum - + Qt::AscendingOrder Qt::AscendingOrder Qt::DescendingOrder diff --git a/src/dolphin_generalsettings.kcfg b/src/dolphin_generalsettings.kcfg index b34407c666..7778db7029 100644 --- a/src/dolphin_generalsettings.kcfg +++ b/src/dolphin_generalsettings.kcfg @@ -25,7 +25,7 @@ false - + false diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index dd88fb74bc..6ee2c1672d 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -116,7 +116,7 @@ void DolphinContextMenu::openTrashContextMenu() QAction *action = popup->exec(QCursor::pos()); if (action == emptyTrashAction) { - const QString text(i18nc("@info", "Do you really want to empty the Trash? All items will get deleted.")); + const QString text(i18nc("@info", "Do you really want to empty the Trash? All items will be deleted.")); const bool del = KMessageBox::warningContinueCancel(m_mainWindow, text, QString(), diff --git a/src/startupsettingspage.cpp b/src/startupsettingspage.cpp index a7ef589051..ed30f2a7f7 100644 --- a/src/startupsettingspage.cpp +++ b/src/startupsettingspage.cpp @@ -116,7 +116,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 get applied.")); + KMessageBox::error(this, i18nc("@info", "The location for the home folder is invalid and will not be applied.")); } settings->setSplitView(m_splitView->isChecked());