mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
fix & opt
- fix docker not found regexp - use en_US in docker cmd -
This commit is contained in:
@@ -1141,13 +1141,13 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Please report bugs on https://github.com/LollipopKit/flutter_server_box/issues`
|
||||
String get reportBugsOnGithubIssue {
|
||||
/// `Please report bugs on {url}`
|
||||
String reportBugsOnGithubIssue(Object url) {
|
||||
return Intl.message(
|
||||
'Please report bugs on https://github.com/LollipopKit/flutter_server_box/issues',
|
||||
'Please report bugs on $url',
|
||||
name: 'reportBugsOnGithubIssue',
|
||||
desc: '',
|
||||
args: [],
|
||||
args: [url],
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1200,6 +1200,26 @@ class S {
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Please make sure that docker is installed correctly, or that you are using a non-self-compiled version. If you don't have the above issues, please submit an issue on {url}.`
|
||||
String invalidVersionHelp(Object url) {
|
||||
return Intl.message(
|
||||
'Please make sure that docker is installed correctly, or that you are using a non-self-compiled version. If you don\'t have the above issues, please submit an issue on $url.',
|
||||
name: 'invalidVersionHelp',
|
||||
desc: '',
|
||||
args: [url],
|
||||
);
|
||||
}
|
||||
|
||||
/// `No interface`
|
||||
String get noInterface {
|
||||
return Intl.message(
|
||||
'No interface',
|
||||
name: 'noInterface',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
||||
Reference in New Issue
Block a user