diff --git a/doc/index.docbook b/doc/index.docbook index 03c4c4848..170a092ff 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -312,7 +312,7 @@ The buttons in the toolbar which control the appearance of the view. All the settings discussed below and other options concerning, ⪚ the sorting of the files in the current folder, can also be modified in the View menu and in the -View Properties dialog. By +View Display Style dialog. By default, these settings are remembered for each folder separately. This behavior can be changed in the General section of the settings. @@ -951,11 +951,11 @@ using the Preferences Dialog. Settings which determine how the contents of a folder are displayed in &dolphin;. -These settings are called View Properties +These settings are called View Display Styles and can be controlled with toolbar buttons, via the View menu, -and with the View Properties Dialog. -In the default configuration, the view properties are remembered for each folder, -but &dolphin; can also be configured to use common view properties for all folders +and with the View Display Style dialog. +In the default configuration, all folders use the same display style, +but &dolphin; can also be configured to remember each folder's display style separately in the General section of the settings. @@ -1008,9 +1008,9 @@ tab bar at the top. -In the View section, you can configure whether the - view properties are stored for each -folder or if common view properties are to be used for all folders. +In the View section, you can configure whether the same + view display styleis shared among all folders +or folders remember their own individual view display styles. @@ -1412,7 +1412,7 @@ largest files can be deleted automatically. -Folder View Properties +Folder View Display Style The following settings control how the contents of a folder are displayed in the @@ -1454,31 +1454,31 @@ What additional information (besides the name) is shown in the Icons or Details -The view properties can be configured in the +The view display style can be configured in the View menu, some (such as the view mode) can also be changed using toolbar buttons. -The View Properties Dialog +The View Display Style dialog -Screenshot of the View Properties dialog +Screenshot of the View Display Style dialog -The View Properties dialog. +The View Display Style dialog. -The View Properties Dialog. +The View Display Style Dialog. -The View Properties dialog can be used to quickly modify -several view properties at once. This is done for the current folder, for the +The View Display Style dialog can be used to quickly modify +the view display styles for many folders at once. This is done for the current folder, for the current folder including all subfolders, or even for all folders, depending on the choice made in the Apply to section. @@ -1917,9 +1917,9 @@ if necessary, and selects the location such that it can be replaced quickly. View -Adjust View Properties... +Adjust View Display Style... -Opens the View Properties +Opens the View Display Style Dialog. diff --git a/src/settings/general/behaviorsettingspage.cpp b/src/settings/general/behaviorsettingspage.cpp index df7ea2113..30883c5da 100644 --- a/src/settings/general/behaviorsettingspage.cpp +++ b/src/settings/general/behaviorsettingspage.cpp @@ -48,8 +48,8 @@ BehaviorSettingsPage::BehaviorSettingsPage(const QUrl& url, QWidget* parent) : // View properties - m_globalViewProps = new QRadioButton(i18nc("@option:radio", "Use common properties for all folders")); - m_localViewProps = new QRadioButton(i18nc("@option:radio", "Remember properties for each folder")); + m_globalViewProps = new QRadioButton(i18nc("@option:radio", "Use common display style for all folders")); + m_localViewProps = new QRadioButton(i18nc("@option:radio", "Remember display style for each folder")); m_localViewProps->setToolTip(i18nc("@info", "Dolphin will create a hidden .directory file in each folder you change view properties for.")); QButtonGroup* viewGroup = new QButtonGroup(this); diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp index a1f9718fe..c3078d5df 100644 --- a/src/settings/viewpropertiesdialog.cpp +++ b/src/settings/viewpropertiesdialog.cpp @@ -68,7 +68,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : Q_ASSERT(dolphinView); const bool useGlobalViewProps = GeneralSettings::globalViewProps(); - setWindowTitle(i18nc("@title:window", "View Properties")); + setWindowTitle(i18nc("@title:window", "View Display Style")); const QUrl& url = dolphinView->url(); m_viewProps = new ViewProperties(url); diff --git a/src/views/dolphinviewactionhandler.cpp b/src/views/dolphinviewactionhandler.cpp index 0d9f9f81c..ef9f317ee 100644 --- a/src/views/dolphinviewactionhandler.cpp +++ b/src/views/dolphinviewactionhandler.cpp @@ -280,7 +280,7 @@ void DolphinViewActionHandler::createActions() connect(showHiddenFiles, &KToggleAction::triggered, this, &DolphinViewActionHandler::toggleShowHiddenFiles); QAction* adjustViewProps = m_actionCollection->addAction(QStringLiteral("view_properties")); - adjustViewProps->setText(i18nc("@action:inmenu View", "Adjust View Properties...")); + adjustViewProps->setText(i18nc("@action:inmenu View", "Adjust View Display Style...")); adjustViewProps->setIcon(QIcon::fromTheme(QStringLiteral("view-choose"))); adjustViewProps->setWhatsThis(i18nc("@info:whatsthis", "This opens a window " "in which all folder view properties can be adjusted."));