]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Apply 2 suggestion(s) to 1 file(s)
authorGleb Kasachou <gkosachov99@gmail.com>
Mon, 28 Jul 2025 08:47:10 +0000 (11:47 +0300)
committerMéven Car <meven@kde.org>
Wed, 30 Jul 2025 07:57:20 +0000 (07:57 +0000)
Co-authored-by: Méven Car <meven@kde.org>
src/dolphinviewcontainer.cpp

index 862654a6b2df9b10486249a9430b948392aca02a..49615d185b568666cad3180476161b531867c444 100644 (file)
@@ -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);