mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
fix: sftp dl
This commit is contained in:
@@ -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.
|
||||
///
|
||||
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user