fix & opt

- fix sftp downloaded page bottom path bg color error
- apt/yum add chinese
- urltext add textalign
This commit is contained in:
Junyuan Feng
2022-05-08 09:55:07 +08:00
parent 6f30976ef7
commit 50762d585c
10 changed files with 154 additions and 71 deletions

View File

@@ -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> {