mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
opt.: custom diskIgnorePath
This commit is contained in:
@@ -299,6 +299,12 @@ abstract class S {
|
||||
/// **'Disconnected'**
|
||||
String get disconnected;
|
||||
|
||||
/// No description provided for @diskIgnorePath.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Ignore path for disk'**
|
||||
String get diskIgnorePath;
|
||||
|
||||
/// No description provided for @dl2Local.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -106,6 +106,9 @@ class SDe extends S {
|
||||
@override
|
||||
String get disconnected => 'Disconnected';
|
||||
|
||||
@override
|
||||
String get diskIgnorePath => 'Pfad für Platte ignorieren';
|
||||
|
||||
@override
|
||||
String dl2Local(Object fileName) {
|
||||
return 'Datei \"$fileName\" herunterladen?';
|
||||
|
||||
@@ -106,6 +106,9 @@ class SEn extends S {
|
||||
@override
|
||||
String get disconnected => 'Disconnected';
|
||||
|
||||
@override
|
||||
String get diskIgnorePath => 'Ignore path for disk';
|
||||
|
||||
@override
|
||||
String dl2Local(Object fileName) {
|
||||
return 'Download $fileName to local?';
|
||||
|
||||
@@ -106,6 +106,9 @@ class SZh extends S {
|
||||
@override
|
||||
String get disconnected => '连接断开';
|
||||
|
||||
@override
|
||||
String get diskIgnorePath => '忽略的磁盘路径';
|
||||
|
||||
@override
|
||||
String dl2Local(Object fileName) {
|
||||
return '下载 $fileName 到本地?';
|
||||
|
||||
Reference in New Issue
Block a user