mirror of
https://github.com/StarCitizenToolBox/app.git
synced 2026-02-12 02:00:22 +00:00
fix: downloader display
This commit is contained in:
@@ -444,16 +444,6 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Verifying... ({v2})`
|
||||
String downloader_info_verifying(Object v2) {
|
||||
return Intl.message(
|
||||
'Verifying... ($v2)',
|
||||
name: 'downloader_info_verifying',
|
||||
desc: '',
|
||||
args: [v2],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Downloading... ({v0}%)`
|
||||
String downloader_info_downloading(Object v0) {
|
||||
return Intl.message(
|
||||
@@ -494,6 +484,16 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Checked: {v0}`
|
||||
String downloader_info_checked(Object v0) {
|
||||
return Intl.message(
|
||||
'Checked: $v0',
|
||||
name: 'downloader_info_checked',
|
||||
desc: '',
|
||||
args: [v0],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Options`
|
||||
String get downloader_action_options {
|
||||
return Intl.message(
|
||||
@@ -564,6 +564,26 @@ class S {
|
||||
);
|
||||
}
|
||||
|
||||
/// `Checking`
|
||||
String get downloader_info_checking {
|
||||
return Intl.message(
|
||||
'Checking',
|
||||
name: 'downloader_info_checking',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Checking... ({v0}%)`
|
||||
String downloader_info_checking_progress(Object v0) {
|
||||
return Intl.message(
|
||||
'Checking... ($v0%)',
|
||||
name: 'downloader_info_checking_progress',
|
||||
desc: '',
|
||||
args: [v0],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Waiting`
|
||||
String get downloader_info_waiting {
|
||||
return Intl.message(
|
||||
|
||||
Reference in New Issue
Block a user