This commit is contained in:
lollipopkit
2023-03-18 00:09:24 +08:00
parent 350d248776
commit 3f3240040a
14 changed files with 27 additions and 14 deletions

View File

@@ -102,7 +102,7 @@ abstract class S {
/// No description provided for @aboutThanks.
///
/// In en, this message translates to:
/// **'\n\nThanks to the following people who participated in the test.'**
/// **'\nThanks to the following people who participated in the test.'**
String get aboutThanks;
/// No description provided for @addAServer.

View File

@@ -8,7 +8,7 @@ class SEn extends S {
String get about => 'About';
@override
String get aboutThanks => '\n\nThanks to the following people who participated in the test.';
String get aboutThanks => '\nThanks to the following people who participated in the test.';
@override
String get addAServer => 'add a server';

View File

@@ -8,7 +8,7 @@ class SZh extends S {
String get about => '关于';
@override
String get aboutThanks => '\n\n感谢以下参与软件测试的各位。';
String get aboutThanks => '\n感谢以下参与软件测试的各位。';
@override
String get addAServer => '添加服务器';