Ref: Benennt die Knöpfe nur in "Löschen" um

This commit is contained in:
2026-01-25 15:48:42 +01:00
parent 516db8edc1
commit 1ee4458f6f
3 changed files with 3 additions and 3 deletions

View File

@@ -151,7 +151,7 @@ class AccountController {
icon: Icons.delete_forever, icon: Icons.delete_forever,
actions: [ actions: [
DialogAction(label: 'Abbruch', isPrimary: true), DialogAction(label: 'Abbruch', isPrimary: true),
DialogAction(label: 'Account löschen', onPressed: _deleteAccount), DialogAction(label: 'Löschen', onPressed: _deleteAccount),
], ],
hiddenValues: {'account': account}, hiddenValues: {'account': account},
); );

View File

@@ -213,7 +213,7 @@ class RecurringTransactionController {
actions: [ actions: [
DialogAction(label: 'Abbruch', isPrimary: true), DialogAction(label: 'Abbruch', isPrimary: true),
DialogAction( DialogAction(
label: 'Wiederkehrende Transaktion löschen', label: 'Löschen',
onPressed: _deleteRecurringTransaction, onPressed: _deleteRecurringTransaction,
), ),
], ],

View File

@@ -233,7 +233,7 @@ class TransactionController {
actions: [ actions: [
DialogAction(label: 'Abbruch', isPrimary: true), DialogAction(label: 'Abbruch', isPrimary: true),
DialogAction( DialogAction(
label: 'Transaktion löschen', label: 'Löschen',
onPressed: _deleteTransaction, onPressed: _deleteTransaction,
), ),
], ],