fix: minor i18n label change

This commit is contained in:
Alberto Ponces 2022-08-24 14:55:19 +01:00
parent defde39e31
commit 49b3273df4
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@
}, },
"patchesSelectorView": { "patchesSelectorView": {
"searchBarHint": "Search patches", "searchBarHint": "Search patches",
"fabButton": "Done" "doneButton": "Done"
}, },
"installerView": { "installerView": {
"widgetTitle": "Installer", "widgetTitle": "Installer",

View File

@ -65,7 +65,7 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
model.selectPatches(); model.selectPatches();
Navigator.of(context).pop(); Navigator.of(context).pop();
}, },
child: I18nText('patchesSelectorView.fabButton'), child: I18nText('patchesSelectorView.doneButton'),
), ),
], ],
) )