feat: add App title and welcome message in personal info page english translate
This commit is contained in:
@@ -50,6 +50,16 @@ class S {
|
||||
return Localizations.of<S>(context, S);
|
||||
}
|
||||
|
||||
/// `Comprehensive Care Guardian`
|
||||
String get app_name {
|
||||
return Intl.message(
|
||||
'Comprehensive Care Guardian',
|
||||
name: 'app_name',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Email/Username`
|
||||
String get email_label {
|
||||
return Intl.message(
|
||||
@@ -270,6 +280,16 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Welcome, {username}!`
|
||||
String welcome_message(Object username) {
|
||||
return Intl.message(
|
||||
'Welcome, $username!',
|
||||
name: 'welcome_message',
|
||||
desc: '',
|
||||
args: [username],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Basic Information`
|
||||
String get basic_information_setting {
|
||||
return Intl.message(
|
||||
|
||||
Reference in New Issue
Block a user