feat: add App title and welcome message in personal info page english translate

This commit is contained in:
JingChiang
2024-11-30 13:45:18 +08:00
parent 00ff77a49a
commit 57968f7935
10 changed files with 40 additions and 7 deletions

View File

@@ -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(