new: server tag

This commit is contained in:
lollipopkit
2023-05-30 22:44:45 +08:00
parent 92ffed6541
commit 472a441c8e
23 changed files with 239 additions and 112 deletions

View File

@@ -108,24 +108,30 @@ abstract class S {
/// **'Thanks to the following people who participated in.'**
String get aboutThanks;
/// No description provided for @add.
///
/// In en, this message translates to:
/// **'Add'**
String get add;
/// No description provided for @addAServer.
///
/// In en, this message translates to:
/// **'add a server'**
String get addAServer;
/// No description provided for @addOne.
///
/// In en, this message translates to:
/// **'Add one'**
String get addOne;
/// No description provided for @addPrivateKey.
///
/// In en, this message translates to:
/// **'Add private key'**
String get addPrivateKey;
/// No description provided for @all.
///
/// In en, this message translates to:
/// **'All'**
String get all;
/// No description provided for @alreadyLastDir.
///
/// In en, this message translates to:

View File

@@ -10,14 +10,17 @@ class SDe extends S {
@override
String get aboutThanks => 'Vielen Dank an die folgenden Personen, die daran teilgenommen haben.\n';
@override
String get add => 'Neu';
@override
String get addAServer => 'Server hinzufügen';
@override
String get addOne => 'Hinzufügen';
String get addPrivateKey => 'Private key hinzufügen';
@override
String get addPrivateKey => 'Private key hinzufügen';
String get all => 'Alle';
@override
String get alreadyLastDir => 'Bereits im letzten Verzeichnis.';

View File

@@ -10,14 +10,17 @@ class SEn extends S {
@override
String get aboutThanks => 'Thanks to the following people who participated in.';
@override
String get add => 'Add';
@override
String get addAServer => 'add a server';
@override
String get addOne => 'Add one';
String get addPrivateKey => 'Add private key';
@override
String get addPrivateKey => 'Add private key';
String get all => 'All';
@override
String get alreadyLastDir => 'Already in last directory.';

View File

@@ -10,14 +10,17 @@ class SZh extends S {
@override
String get aboutThanks => '感谢以下参与的各位。';
@override
String get add => '新增';
@override
String get addAServer => '添加服务器';
@override
String get addOne => '前去新增';
String get addPrivateKey => '添加一个私钥';
@override
String get addPrivateKey => '添加一个私钥';
String get all => '所有';
@override
String get alreadyLastDir => '已经是最上层目录了';
@@ -614,14 +617,17 @@ class SZhTw extends SZh {
@override
String get aboutThanks => '感謝以下參與的各位。';
@override
String get add => '新增';
@override
String get addAServer => '新增服務器';
@override
String get addOne => '前去新增';
String get addPrivateKey => '新增一個私鑰';
@override
String get addPrivateKey => '新增一個私鑰';
String get all => '所有';
@override
String get alreadyLastDir => '已經是最上層目錄了';