diff options
| author | Gleb Kasachou <[email protected]> | 2025-07-28 11:47:10 +0300 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2025-07-30 07:57:20 +0000 |
| commit | 3186f0428888447a783d014afaaa0b44b68ebaba (patch) | |
| tree | 3323e6c6aaf406376b39975ce205e0351f3e0c7c /src/dolphinviewcontainer.cpp | |
| parent | 619300e36035794cd885c6248af2c9d906453eea (diff) | |
Apply 2 suggestion(s) to 1 file(s)
Co-authored-by: Méven Car <[email protected]>
Diffstat (limited to 'src/dolphinviewcontainer.cpp')
| -rw-r--r-- | src/dolphinviewcontainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp index 862654a6b..49615d185 100644 --- a/src/dolphinviewcontainer.cpp +++ b/src/dolphinviewcontainer.cpp @@ -978,9 +978,9 @@ void DolphinViewContainer::slotErrorMessageFromView(const QString &message, cons } else if (kioErrorCode == KIO::ERR_DOES_NOT_EXIST && m_view->url().isLocalFile()) { if (!m_createFolderAction) { m_createFolderAction = new QAction(this); - m_createFolderAction->setText(i18nc("@action", "Create")); + m_createFolderAction->setText(i18nc("@action", "Create missing folder")); m_createFolderAction->setIcon(QIcon::fromTheme(QStringLiteral("folder-new"))); - m_createFolderAction->setToolTip(i18nc("@info:tooltip", "Create this folder and open it")); + m_createFolderAction->setToolTip(i18nc("@info:tooltip", "Create the folder at this path and open it")); connect(m_createFolderAction, &QAction::triggered, this, [this](bool) { KIO::MkpathJob *job = KIO::mkpath(m_view->url()); KIO::FileUndoManager::self()->recordJob(KIO::FileUndoManager::Mkpath, {}, m_view->url(), job); |
