mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +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_name_exists": "This name already exists for the Issuer",
|
||||
"oath_account_renamed": "Account renamed",
|
||||
"oath_rename": "Rename",
|
||||
"oath_rename": "Rename {label}?",
|
||||
"@oath_rename" : {
|
||||
"placeholders": {
|
||||
"label": {}
|
||||
}
|
||||
},
|
||||
"oath_factory_reset": "Factory reset",
|
||||
"oath_oath_application_reset": "OATH application reset",
|
||||
"oath_reset": "Reset",
|
||||
|
@ -122,7 +122,7 @@ class _RenameAccountDialogState extends ConsumerState<RenameAccountDialog> {
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text('${AppLocalizations.of(context)!.oath_rename} $label?'),
|
||||
Text(AppLocalizations.of(context)!.oath_rename(label)),
|
||||
Text(AppLocalizations.of(context)!
|
||||
.oath_warning_will_change_account_displayed),
|
||||
TextFormField(
|
||||
|
Loading…
Reference in New Issue
Block a user