fix: remove non-translated strings

This commit is contained in:
Matyáš Caras 2023-11-01 18:40:50 +01:00
parent 574180c5f2
commit 4846a9134d
Signed by untrusted user who does not match committer: hernik
GPG key ID: 2A3175F98820C5C6

View file

@ -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();
},