l10n: Extract strings

This commit is contained in:
Neeraj Gupta 2023-05-05 15:35:47 +05:30
parent 453ad92891
commit 2ded67c441
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
4 changed files with 14 additions and 2 deletions

View file

@ -1198,6 +1198,7 @@ class MessageLookup extends MessageLookupByLibrary {
"verify": MessageLookupByLibrary.simpleMessage("Verify"),
"verifyEmail": MessageLookupByLibrary.simpleMessage("Verify email"),
"verifyEmailID": m38,
"verifyIDLabel": MessageLookupByLibrary.simpleMessage("Verify"),
"verifyPassword":
MessageLookupByLibrary.simpleMessage("Verify password"),
"verifying": MessageLookupByLibrary.simpleMessage("Verifying..."),

View file

@ -6904,6 +6904,16 @@ class S {
args: [versionValue],
);
}
/// `Verify`
String get verifyIDLabel {
return Intl.message(
'Verify',
name: 'verifyIDLabel',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {

View file

@ -967,5 +967,6 @@
"description": "Example: 1.2 GB of 2 GB used or 100 GB or 2TB used"
},
"freeStorageSpace" : "{freeAmount} {storageUnit} free",
"appVersion": "Version: {versionValue}"
"appVersion": "Version: {versionValue}",
"verifyIDLabel" : "Verify"
}

View file

@ -228,7 +228,7 @@ class _AddParticipantPage extends State<AddParticipantPage> {
);
},
child: Text(
"Verify",
S.of(context).verifyIDLabel,
textAlign: TextAlign.center,
style: enteTextTheme.smallMuted.copyWith(
decoration: TextDecoration.underline,