new: support msg push

This commit is contained in:
lollipopkit
2023-03-12 16:06:51 +08:00
parent 35b5d1ccb5
commit 4c4153ef98
12 changed files with 113 additions and 25 deletions

View File

@@ -447,6 +447,12 @@ abstract class S {
/// **'Found {count} update'**
String foundNUpdate(Object count);
/// No description provided for @getPushTokenFailed.
///
/// In en, this message translates to:
/// **'Can\'t fetch push token'**
String get getPushTokenFailed;
/// No description provided for @go.
///
/// In en, this message translates to:
@@ -765,6 +771,12 @@ abstract class S {
/// **'Private Key'**
String get privateKey;
/// No description provided for @pushToken.
///
/// In en, this message translates to:
/// **'Push token'**
String get pushToken;
/// No description provided for @pwd.
///
/// In en, this message translates to:

View File

@@ -197,6 +197,9 @@ class SEn extends S {
return 'Found $count update';
}
@override
String get getPushTokenFailed => 'Can\'t fetch push token';
@override
String get go => 'Go';
@@ -362,6 +365,9 @@ class SEn extends S {
@override
String get privateKey => 'Private Key';
@override
String get pushToken => 'Push token';
@override
String get pwd => 'Password';

View File

@@ -197,6 +197,9 @@ class SZh extends S {
return '找到 $count 个更新';
}
@override
String get getPushTokenFailed => '未能获取到推送token';
@override
String get go => '开始';
@@ -362,6 +365,9 @@ class SZh extends S {
@override
String get privateKey => '私钥';
@override
String get pushToken => '消息推送 Token';
@override
String get pwd => '密码';