mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
fix & opt
- fix sftp downloaded page bottom path bg color error - apt/yum add chinese - urltext add textalign
This commit is contained in:
@@ -981,10 +981,10 @@ class S {
|
||||
}
|
||||
|
||||
/// `Please wait for the connection to be established.`
|
||||
String get dockerWaitConnection {
|
||||
String get waitConnection {
|
||||
return Intl.message(
|
||||
'Please wait for the connection to be established.',
|
||||
name: 'dockerWaitConnection',
|
||||
name: 'waitConnection',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
@@ -1130,6 +1130,56 @@ class S {
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Experimental feature`
|
||||
String get experimentalFeature {
|
||||
return Intl.message(
|
||||
'Experimental feature',
|
||||
name: 'experimentalFeature',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Please report bugs on https://github.com/LollipopKit/flutter_server_box/issues`
|
||||
String get reportBugsOnGithubIssue {
|
||||
return Intl.message(
|
||||
'Please report bugs on https://github.com/LollipopKit/flutter_server_box/issues',
|
||||
name: 'reportBugsOnGithubIssue',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `No update available`
|
||||
String get noUpdateAvailable {
|
||||
return Intl.message(
|
||||
'No update available',
|
||||
name: 'noUpdateAvailable',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Found {count} update`
|
||||
String foundNUpdate(Object count) {
|
||||
return Intl.message(
|
||||
'Found $count update',
|
||||
name: 'foundNUpdate',
|
||||
desc: '',
|
||||
args: [count],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Update all`
|
||||
String get updateAll {
|
||||
return Intl.message(
|
||||
'Update all',
|
||||
name: 'updateAll',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||||
|
||||
Reference in New Issue
Block a user