ssh: more tip

This commit is contained in:
lollipopkit
2023-01-29 22:23:18 +08:00
parent 19e0b283ae
commit 5ebb4e6b3e
8 changed files with 20 additions and 14 deletions

View File

@@ -21,11 +21,16 @@ Especially thanks to <a href="https://github.com/TerminalStudio/dartssh2">dartss
## 🔖 Feature
- [x] 📊 Status chart view
- [x] ⌨️ `SSH` terminal
- [x] ⚙️ `Docker & Pkg` Manager, `SFTP`, `Snippet` ~~market~~, `Ping` and etc.
- [x] 📚 i18n (English, Chinese), **welcome contribution** :)
- [x] 🖥️ Desktop support
- [x] Functions
- [x] `SSH` Terminal
- [x] `Docker & Pkg` Manager
- [x] `SFTP`
- [x] `Snippet`
- [x] `Ping`
- [x] Status charts
- [x] etc.
- [x] i18n (English, Chinese), **welcome contribution** :)
- [x] Desktop support
## 📱 ScreenShots
<table>

View File

@@ -2,9 +2,9 @@
class BuildData {
static const String name = "ServerBox";
static const int build = 199;
static const int build = 200;
static const String engine =
"Flutter 3.7.0 • channel stable • https://github.com/flutter/flutter.git\nFramework • revision b06b8b2710 (6 days ago) • 2023-01-23 16:55:55 -0800\nEngine • revision b24591ed32\nTools • Dart 2.19.0 • DevTools 2.20.1\n";
static const String buildAt = "2023-01-29 20:45:19.543947";
static const int modifications = 3;
static const String buildAt = "2023-01-29 22:04:40.624479";
static const int modifications = 0;
}

View File

@@ -47,7 +47,7 @@ class MessageLookup extends MessageLookupByLibrary {
static String m11(time) => "Spent time: ${time}";
static String m12(url) =>
"This function is now in the experimental stage. \nPlease report bugs on ${url} or join our development.";
"This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on ${url} or join our development.";
static String m13(name) => "Are you sure to delete [${name}]?";

View File

@@ -46,7 +46,8 @@ class MessageLookup extends MessageLookupByLibrary {
static String m11(time) => "耗时: ${time}";
static String m12(url) => "该功能目前处于测试阶段,请在 ${url} 反馈问题,或者加入我们开发。";
static String m12(url) =>
"该功能目前处于测试阶段。\n\n例如iOS上输入法无法退格。请使用输入法上方的虚拟键。\n\n请在 ${url} 反馈问题,或者加入我们开发。";
static String m13(name) => "确定删除[${name}]";

View File

@@ -1321,10 +1321,10 @@ class S {
);
}
/// `This function is now in the experimental stage. \nPlease report bugs on {url} or join our development.`
/// `This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on {url} or join our development.`
String sshTip(Object url) {
return Intl.message(
'This function is now in the experimental stage. \nPlease report bugs on $url or join our development.',
'This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on $url or join our development.',
name: 'sshTip',
desc: '',
args: [url],

View File

@@ -126,7 +126,7 @@
"showDistLogo": "Show distribution logo",
"snippet": "Snippet",
"spentTime": "Spent time: {time}",
"sshTip": "This function is now in the experimental stage. \nPlease report bugs on {url} or join our development.",
"sshTip": "This function is now in the experimental stage.\n\nSuch as Backspace on IME not working on iOS. Please use virtual keys above IME.\n\nPlease report bugs on {url} or join our development.",
"start": "Start",
"stop": "Stop",
"sureDelete": "Are you sure to delete [{name}]?",

View File

@@ -126,7 +126,7 @@
"showDistLogo": "显示发行版 Logo",
"snippet": "代码片段",
"spentTime": "耗时: {time}",
"sshTip": "该功能目前处于测试阶段请在 {url} 反馈问题,或者加入我们开发。",
"sshTip": "该功能目前处于测试阶段。\n\n例如iOS上输入法无法退格。请使用输入法上方的虚拟键。\n\n请在 {url} 反馈问题,或者加入我们开发。",
"start": "开始",
"stop": "停止",
"sureDelete": "确定删除[{name}]",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

After

Width:  |  Height:  |  Size: 168 KiB