Ref: Benennt die Knöpfe nur in "Löschen" um
This commit is contained in:
@@ -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},
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -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,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -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,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user