diff options
| author | Nicolas Fella <[email protected]> | 2023-07-05 22:44:40 +0200 |
|---|---|---|
| committer | Nicolas Fella <[email protected]> | 2023-07-05 22:44:40 +0200 |
| commit | f510339f033658eae27f8400bf042b78b36f82f2 (patch) | |
| tree | f5ada1ed265b86f6ae44b71218099ec383dd15de /src/dolphinmainwindow.cpp | |
| parent | cd2e64154fd5446a7e19aff4cb147efe2f2ba31e (diff) | |
| parent | ed2d352c42a6d517d4f29b3582c0e00aa34fe647 (diff) | |
Merge branch 'master' into kf6
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 480e91727..dbf0067d8 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1642,7 +1642,7 @@ void DolphinMainWindow::setupActions() connect(moveToOtherViewAction, &QAction::triggered, this, &DolphinMainWindow::moveToInactiveSplitView); QAction *showFilterBar = actionCollection()->addAction(QStringLiteral("show_filter_bar")); - showFilterBar->setText(i18nc("@action:inmenu Tools", "Filter...")); + showFilterBar->setText(i18nc("@action:inmenu Tools", "Filter…")); showFilterBar->setToolTip(i18nc("@info:tooltip", "Show Filter Bar")); showFilterBar->setWhatsThis(xi18nc("@info:whatsthis", "This opens the " @@ -1666,7 +1666,7 @@ void DolphinMainWindow::setupActions() connect(toggleFilter, &QAction::triggered, this, &DolphinMainWindow::toggleFilterBar); QAction *searchAction = KStandardAction::find(this, &DolphinMainWindow::find, actionCollection()); - searchAction->setText(i18n("Search...")); + searchAction->setText(i18n("Search…")); searchAction->setToolTip(i18nc("@info:tooltip", "Search for files and folders")); searchAction->setWhatsThis(xi18nc("@info:whatsthis find", "<para>This helps you " @@ -2689,3 +2689,5 @@ bool DolphinMainWindow::isItemVisibleInAnyView(const QString &urlOfItem) { return m_tabWidget->isItemVisibleInAnyView(QUrl::fromUserInput(urlOfItem)); } + +#include "moc_dolphinmainwindow.cpp" |
