#87 new: auto ask add system key (~/.ssh/id_rsa)

This commit is contained in:
lollipopkit
2023-08-04 21:46:44 +08:00
parent 60507ea4bc
commit 91967e6ce3
19 changed files with 129 additions and 76 deletions

View File

@@ -128,6 +128,12 @@ abstract class S {
/// **'Add private key'**
String get addPrivateKey;
/// No description provided for @addSystemPrivateKeyTip.
///
/// In en, this message translates to:
/// **'Currently don\'t have any private key, do you add the one that comes with the system (~/.ssh/id_rsa)?'**
String get addSystemPrivateKeyTip;
/// No description provided for @added2List.
///
/// In en, this message translates to:

View File

@@ -19,6 +19,9 @@ class SDe extends S {
@override
String get addPrivateKey => 'Private key hinzufügen';
@override
String get addSystemPrivateKeyTip => 'Derzeit haben Sie keinen privaten Schlüssel, fügen Sie den Schlüssel hinzu, der mit dem System geliefert wird (~/.ssh/id_rsa)?';
@override
String get added2List => 'Zur Aufgabenliste hinzugefügt';

View File

@@ -19,6 +19,9 @@ class SEn extends S {
@override
String get addPrivateKey => 'Add private key';
@override
String get addSystemPrivateKeyTip => 'Currently don\'t have any private key, do you add the one that comes with the system (~/.ssh/id_rsa)?';
@override
String get added2List => 'Added to task list';

View File

@@ -19,6 +19,9 @@ class SId extends S {
@override
String get addPrivateKey => 'Tambahkan kunci pribadi';
@override
String get addSystemPrivateKeyTip => 'Saat ini tidak memiliki kunci privat, apakah Anda menambahkan kunci yang disertakan dengan sistem (~/.ssh/id_rsa)?';
@override
String get added2List => 'Ditambahkan ke Daftar Tugas';

View File

@@ -19,6 +19,9 @@ class SZh extends S {
@override
String get addPrivateKey => '添加一个私钥';
@override
String get addSystemPrivateKeyTip => '当前没有任何私钥,是否添加系统自带的(~/.ssh/id_rsa';
@override
String get added2List => '已添加至任务列表';
@@ -701,6 +704,9 @@ class SZhTw extends SZh {
@override
String get addPrivateKey => '新增一個私鑰';
@override
String get addSystemPrivateKeyTip => '當前沒有任何私鑰,是否添加系統自帶的(~/.ssh/id_rsa';
@override
String get added2List => '已添加至任務列表';