improved sftp

This commit is contained in:
lollipopkit
2022-12-20 15:11:22 +08:00
parent 6bda94bd7b
commit 599bd2cfd3
12 changed files with 170 additions and 89 deletions

View File

@@ -1480,6 +1480,26 @@ class S {
args: [count],
);
}
/// `Path`
String get path {
return Intl.message(
'Path',
name: 'path',
desc: '',
args: [],
);
}
/// `Go to`
String get goto {
return Intl.message(
'Go to',
name: 'goto',
desc: '',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {