diff --git a/src/kstandardaction.h b/src/kstandardaction.h --- a/src/kstandardaction.h +++ b/src/kstandardaction.h @@ -167,8 +167,8 @@ Clear, PasteText, SwitchApplicationLanguage, - DeleteFile, ///< @since 5.25 - RenameFile, ///< @since 5.25 + DeleteFile, ///< Permanently deletes files or folders. @since 5.25 + RenameFile, ///< Renames files or folders. @since 5.25 MoveToTrash, ///< @since 5.25 Donate ///< @since 5.26 }; diff --git a/src/kstandardaction_p.h b/src/kstandardaction_p.h --- a/src/kstandardaction_p.h +++ b/src/kstandardaction_p.h @@ -113,8 +113,8 @@ { SwitchApplicationLanguage, KStandardShortcut::SwitchApplicationLanguage, "switch_application_language", I18N_NOOP("Switch Application &Language..."), nullptr, "preferences-desktop-locale" }, { AboutApp, KStandardShortcut::AccelNone, "help_about_app", I18N_NOOP("&About %1"), nullptr, nullptr }, { AboutKDE, KStandardShortcut::AccelNone, "help_about_kde", I18N_NOOP("About &KDE"), nullptr, "kde" }, - { DeleteFile, KStandardShortcut::DeleteFile, "deletefile", I18N_NOOP("&Delete File"), nullptr, "edit-delete" }, - { RenameFile, KStandardShortcut::RenameFile, "renamefile", I18N_NOOP("&Rename File"), nullptr, "edit-rename" }, + { DeleteFile, KStandardShortcut::DeleteFile, "deletefile", I18N_NOOP("&Delete"), nullptr, "edit-delete" }, + { RenameFile, KStandardShortcut::RenameFile, "renamefile", I18N_NOOP("&Rename..."), nullptr, "edit-rename" }, { MoveToTrash, KStandardShortcut::MoveToTrash, "movetotrash", I18N_NOOP("&Move to Trash"), nullptr, "edit-delete" }, { Donate, KStandardShortcut::Donate, "help_donate", I18N_NOOP("&Donate"), nullptr, "help-donate"}, { ActionNone, KStandardShortcut::AccelNone, nullptr, nullptr, nullptr, nullptr }