fix: downloader display

This commit is contained in:
xkeyC
2025-12-05 18:03:56 +08:00
parent 53ffab783f
commit 3f5aaaecd9
13 changed files with 1047 additions and 966 deletions

View File

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