fix: remove non-translated strings
This commit is contained in:
parent
574180c5f2
commit
4846a9134d
1 changed files with 2 additions and 2 deletions
|
@ -242,7 +242,7 @@ class _HomeViewState extends State<HomeView> {
|
|||
AppLocalizations.of(context)!.deleteSure),
|
||||
actions: [
|
||||
PlatformButton(
|
||||
text: "Yes",
|
||||
text: AppLocalizations.of(context)!.yes,
|
||||
onPressed: () {
|
||||
selectedWallet?.entries.removeWhere(
|
||||
(e) => e.id == element.id);
|
||||
|
@ -253,7 +253,7 @@ class _HomeViewState extends State<HomeView> {
|
|||
},
|
||||
),
|
||||
PlatformButton(
|
||||
text: "No",
|
||||
text: AppLocalizations.of(context)!.no,
|
||||
onPressed: () {
|
||||
Navigator.of(cx).pop();
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue