fix: sftp dl

This commit is contained in:
lollipopkit
2023-07-28 19:08:34 +08:00
parent 6803e9fa40
commit 6045e7e7f0
22 changed files with 137 additions and 116 deletions

View File

@@ -570,7 +570,7 @@ abstract class S {
///
/// In en, this message translates to:
/// **'request failed, status code: {code}'**
String httpFailedWithCode(Object code, Object kode);
String httpFailedWithCode(Object code);
/// No description provided for @image.
///

View File

@@ -255,7 +255,7 @@ class SDe extends S {
String get host => 'Host';
@override
String httpFailedWithCode(Object code, Object kode) {
String httpFailedWithCode(Object code) {
return 'Anfrage fehlgeschlagen, Statuscode: $code';
}

View File

@@ -255,7 +255,7 @@ class SEn extends S {
String get host => 'Host';
@override
String httpFailedWithCode(Object code, Object kode) {
String httpFailedWithCode(Object code) {
return 'request failed, status code: $code';
}

View File

@@ -255,8 +255,8 @@ class SId extends S {
String get host => 'Host';
@override
String httpFailedWithCode(Object code, Object kode) {
return 'Permintaan gagal, kode status: $kode';
String httpFailedWithCode(Object code) {
return 'Permintaan gagal, kode status: $code';
}
@override

View File

@@ -255,7 +255,7 @@ class SZh extends S {
String get host => '主机';
@override
String httpFailedWithCode(Object code, Object kode) {
String httpFailedWithCode(Object code) {
return '请求失败, 状态码: $code';
}
@@ -931,7 +931,7 @@ class SZhTw extends SZh {
String get host => '主機';
@override
String httpFailedWithCode(Object code, Object kode) {
String httpFailedWithCode(Object code) {
return '請求失敗, 狀態碼: $code';
}