Open >5 terminals dialog: use action terms instead of Yes/No buttons

Yes/No buttons in dialogs are discouraged (not only) by KDE HIG in favour
of actions terms.
This commit is contained in:
Friedrich W. H. Kossebau 2022-07-03 18:59:27 +02:00
parent a6f6b14e79
commit c6f82aa378

View file

@ -1119,7 +1119,10 @@ void DolphinMainWindow::openTerminalHere()
if (urls.count() > 5) { if (urls.count() > 5) {
QString question = i18np("Are you sure you want to open 1 terminal window?", QString question = i18np("Are you sure you want to open 1 terminal window?",
"Are you sure you want to open %1 terminal windows?", urls.count()); "Are you sure you want to open %1 terminal windows?", urls.count());
const int answer = KMessageBox::warningYesNo(this, question); const int answer = KMessageBox::warningYesNo(this, question, {},
KGuiItem(i18ncp("@action:button", "Open %1 Terminal", "Open %1 Terminals", urls.count()),
QStringLiteral("utilities-terminal")),
KStandardGuiItem::cancel());
if (answer != KMessageBox::Yes) { if (answer != KMessageBox::Yes) {
return; return;
} }