feat: add aria2 seeding (#129)

This commit is contained in:
XYenon 2022-09-29 09:25:25 +08:00 committed by GitHub
parent e428b86964
commit 8db0dabf93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 0 deletions

View File

@ -452,6 +452,7 @@
"canceled": "Canceled",
"finished": "Finished",
"fileTransfer": "File transfer",
"fileRecycle": "File recycle",
"importFiles": "Import external files",
"transferProgress": "{{num}} files done",
"waiting": "Pending",

View File

@ -755,6 +755,7 @@
"ready": "Ready",
"downloading": "Downloading",
"paused": "Paused",
"seeding": "Seeding",
"error": "Error",
"finished": "Finished",
"canceled": "Canceled/Stopped",

View File

@ -452,6 +452,7 @@
"canceled": "取消",
"finished": "已完成",
"fileTransfer": "文件中转",
"fileRecycle": "文件回收",
"importFiles": "导入外部目录",
"transferProgress": "已完成 {{num}} 个文件",
"waiting": "等待中",

View File

@ -755,6 +755,7 @@
"ready": "就绪",
"downloading": "下载中",
"paused": "暂停中",
"seeding": "做种中",
"error": "出错",
"finished": "完成",
"canceled": "取消/停止",

View File

@ -363,6 +363,7 @@ export default function Download() {
{row.Status === 4 && t("finished")}
{row.Status === 5 && t("canceled")}
{row.Status === 6 && t("unknown")}
{row.Status === 7 && t("seeding")}
</TableCell>
<TableCell>
{row.NodeID <= 1 && (

View File

@ -120,6 +120,7 @@ const taskType = [
"fileManager.decompress",
"setting.fileTransfer",
"setting.importFiles",
"setting.fileRecycle",
];
const taskProgress = [
"setting.waiting",