new: pick from file to add key #9

This commit is contained in:
lollipopkit
2023-02-16 12:55:23 +08:00
parent 28a6067033
commit 1aac166c43
9 changed files with 143 additions and 79 deletions

View File

@@ -571,6 +571,16 @@ class S {
);
}
/// `{file} not exist`
String fileNotExist(Object file) {
return Intl.message(
'$file not exist',
name: 'fileNotExist',
desc: '',
args: [file],
);
}
/// `Files`
String get files {
return Intl.message(
@@ -991,6 +1001,16 @@ class S {
);
}
/// `Pick file`
String get pickFile {
return Intl.message(
'Pick file',
name: 'pickFile',
desc: '',
args: [],
);
}
/// `Ping`
String get ping {
return Intl.message(