new: PlatformType

This commit is contained in:
lollipopkit
2023-03-13 12:02:48 +08:00
parent 4c4153ef98
commit c2e822f49d
18 changed files with 197 additions and 113 deletions

View File

@@ -939,6 +939,12 @@ abstract class S {
/// **'Stop'**
String get stop;
/// No description provided for @success.
///
/// In en, this message translates to:
/// **'Success'**
String get success;
/// No description provided for @sureDelete.
///
/// In en, this message translates to:

View File

@@ -457,6 +457,9 @@ class SEn extends S {
@override
String get stop => 'Stop';
@override
String get success => 'Success';
@override
String sureDelete(Object name) {
return 'Are you sure to delete [$name]?';

View File

@@ -457,6 +457,9 @@ class SZh extends S {
@override
String get stop => '停止';
@override
String get success => '成功';
@override
String sureDelete(Object name) {
return '确定删除[$name]';