new: license dialog

This commit is contained in:
lollipopkit
2023-04-18 22:37:19 +08:00
parent f903a1da55
commit 216d64e3eb
9 changed files with 105 additions and 85 deletions

View File

@@ -612,7 +612,7 @@ abstract class S {
/// No description provided for @madeWithLove.
///
/// In en, this message translates to:
/// **'\nMade with ❤️ by {myGithub}'**
/// **'Made with ❤️ by {myGithub}'**
String madeWithLove(Object myGithub);
/// No description provided for @max.

View File

@@ -284,7 +284,7 @@ class SEn extends S {
@override
String madeWithLove(Object myGithub) {
return '\nMade with ❤️ by $myGithub';
return 'Made with ❤️ by $myGithub';
}
@override

View File

@@ -284,7 +284,7 @@ class SZh extends S {
@override
String madeWithLove(Object myGithub) {
return '\n用❤️制作 by $myGithub';
return '用❤️制作 by $myGithub';
}
@override