[system/karton] src/qml: Change VM removal message
Derek Lin <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 17520007f3fb0b230931cbe8ea9fd086b00f87f4 by Derek Lin, on behalf of Martin Sh.
Committed on 29/07/2026 at 17:41.
Pushed by kenoi into branch 'master'.
Change VM removal message
This is quite straightforward.
---
Fixes #35
M +2 -2 src/qml/VMPage.qml
https://invent.kde.org/system/karton/-/commit/17520007f3fb0b230931cbe8ea9fd086b00f87f4
diff --git a/src/qml/VMPage.qml b/src/qml/VMPage.qml
index 4405f67..106d747 100644
--- a/src/qml/VMPage.qml
+++ b/src/qml/VMPage.qml
@@ -212,7 +212,7 @@ This action cannot be undone.`,
onTriggered: {
if (deleteConfirmationDialog.domain) {
Karton.deleteDomain(deleteConfirmationDialog.domain, false);
- showPassiveNotification(i18nc("%1 is the virtual machine name", "Undefining %1!", deleteConfirmationDialog.domain.config.name));
+ showPassiveNotification(i18nc("%1 is the virtual machine name", "Deleted VM: %1", deleteConfirmationDialog.domain.config.name));
deleteConfirmationDialog.domain = null;
deleteConfirmationDialog.close();
}
@@ -225,7 +225,7 @@ This action cannot be undone.`,
onTriggered: {
if (deleteConfirmationDialog.domain) {
Karton.deleteDomain(deleteConfirmationDialog.domain, true);
- showPassiveNotification(i18nc("%1 is the virtual machine name", "Undefining %1!", deleteConfirmationDialog.domain.config.name));
+ showPassiveNotification(i18nc("%1 is the virtual machine name", "Deleted VM: %1", deleteConfirmationDialog.domain.config.name));
deleteConfirmationDialog.domain = null;
deleteConfirmationDialog.close();
}