mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 23:20:03 +03:00
Smaller fix, introduce dynamic string
This commit is contained in:
parent
c4b070de71
commit
6b03ba6628
@ -59,7 +59,12 @@
|
|||||||
"oath_account_must_have_name": "Your account must have a name",
|
"oath_account_must_have_name": "Your account must have a name",
|
||||||
"oath_name_exists": "This name already exists for the Issuer",
|
"oath_name_exists": "This name already exists for the Issuer",
|
||||||
"oath_account_renamed": "Account renamed",
|
"oath_account_renamed": "Account renamed",
|
||||||
"oath_rename": "Rename",
|
"oath_rename": "Rename {label}?",
|
||||||
|
"@oath_rename" : {
|
||||||
|
"placeholders": {
|
||||||
|
"label": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
"oath_factory_reset": "Factory reset",
|
"oath_factory_reset": "Factory reset",
|
||||||
"oath_oath_application_reset": "OATH application reset",
|
"oath_oath_application_reset": "OATH application reset",
|
||||||
"oath_reset": "Reset",
|
"oath_reset": "Reset",
|
||||||
|
@ -122,7 +122,7 @@ class _RenameAccountDialogState extends ConsumerState<RenameAccountDialog> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text('${AppLocalizations.of(context)!.oath_rename} $label?'),
|
Text(AppLocalizations.of(context)!.oath_rename(label)),
|
||||||
Text(AppLocalizations.of(context)!
|
Text(AppLocalizations.of(context)!
|
||||||
.oath_warning_will_change_account_displayed),
|
.oath_warning_will_change_account_displayed),
|
||||||
TextFormField(
|
TextFormField(
|
||||||
|
Loading…
Reference in New Issue
Block a user