add thanks

This commit is contained in:
Junyuan Feng
2022-05-25 13:18:51 +08:00
parent 1bd673a164
commit 8cbe76d9ff
7 changed files with 78 additions and 80 deletions

View File

@@ -150,13 +150,13 @@ class S {
);
}
/// `\nThanks {rainSunMeGithub} for participating in the test.\n\nAll rights reserved.`
String aboutThanks(Object rainSunMeGithub) {
/// `\nAll rights reserved.\n\nThanks to the following people who participated in the test.`
String get aboutThanks {
return Intl.message(
'\nThanks $rainSunMeGithub for participating in the test.\n\nAll rights reserved.',
'\nAll rights reserved.\n\nThanks to the following people who participated in the test.',
name: 'aboutThanks',
desc: '',
args: [rainSunMeGithub],
args: [],
);
}