diff options
| author | Felix Ernst <[email protected]> | 2022-04-25 12:52:05 +0200 |
|---|---|---|
| committer | Felix Ernst <[email protected]> | 2022-08-14 14:42:40 +0000 |
| commit | 78cffd2979a6ed87e044fcb024cf4fdfc5c7cb3d (patch) | |
| tree | 7e5b66a5b4fc8c3328949d80898be2d1d57da5b7 /src/dolphinmainwindow.cpp | |
| parent | 8e55f2c2409fd6ca9ebc66a6568f4d3bcbef7576 (diff) | |
Improve code quality
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index d8d304483..fcaa5d4a2 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -125,7 +125,7 @@ DolphinMainWindow::DolphinMainWindow() : setComponentName(QStringLiteral("dolphin"), QGuiApplication::applicationDisplayName()); setObjectName(QStringLiteral("Dolphin#")); - // setStateConfigGroup("State"); + setStateConfigGroup("State"); connect(&DolphinNewFileMenuObserver::instance(), &DolphinNewFileMenuObserver::errorMessage, this, &DolphinMainWindow::showErrorMessage); @@ -1675,8 +1675,7 @@ void DolphinMainWindow::setupActions() QAction *toggleSelectionModeAction = actionCollection()->addAction(QStringLiteral("toggle_selection_mode")); // i18n: This action toggles a selection mode. toggleSelectionModeAction->setText(i18nc("@action:inmenu", "Select Files and Folders")); - // i18n: Opens a selection mode for selecting files/folders and later selecting an action that acts on them. - // So in a way "Select" here is used to mean both "Select files" and also "Select what to do" but mostly the first. + // i18n: Opens a selection mode for selecting files/folders. // The text is kept so unspecific because it will be shown on the toolbar where space is at a premium. toggleSelectionModeAction->setIconText(i18nc("@action:intoolbar", "Select")); toggleSelectionModeAction->setWhatsThis(xi18nc("@info:whatsthis", "<para>This application only knows which files or folders should be acted on if they are" |
