mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-30 00:22:49 +00:00
feat: add aria2 seeding (#129)
This commit is contained in:
parent
e428b86964
commit
8db0dabf93
|
|
@ -452,6 +452,7 @@
|
|||
"canceled": "Canceled",
|
||||
"finished": "Finished",
|
||||
"fileTransfer": "File transfer",
|
||||
"fileRecycle": "File recycle",
|
||||
"importFiles": "Import external files",
|
||||
"transferProgress": "{{num}} files done",
|
||||
"waiting": "Pending",
|
||||
|
|
|
|||
|
|
@ -755,6 +755,7 @@
|
|||
"ready": "Ready",
|
||||
"downloading": "Downloading",
|
||||
"paused": "Paused",
|
||||
"seeding": "Seeding",
|
||||
"error": "Error",
|
||||
"finished": "Finished",
|
||||
"canceled": "Canceled/Stopped",
|
||||
|
|
|
|||
|
|
@ -452,6 +452,7 @@
|
|||
"canceled": "取消",
|
||||
"finished": "已完成",
|
||||
"fileTransfer": "文件中转",
|
||||
"fileRecycle": "文件回收",
|
||||
"importFiles": "导入外部目录",
|
||||
"transferProgress": "已完成 {{num}} 个文件",
|
||||
"waiting": "等待中",
|
||||
|
|
|
|||
|
|
@ -755,6 +755,7 @@
|
|||
"ready": "就绪",
|
||||
"downloading": "下载中",
|
||||
"paused": "暂停中",
|
||||
"seeding": "做种中",
|
||||
"error": "出错",
|
||||
"finished": "完成",
|
||||
"canceled": "取消/停止",
|
||||
|
|
|
|||
|
|
@ -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 && (
|
||||
|
|
|
|||
|
|
@ -120,6 +120,7 @@ const taskType = [
|
|||
"fileManager.decompress",
|
||||
"setting.fileTransfer",
|
||||
"setting.importFiles",
|
||||
"setting.fileRecycle",
|
||||
];
|
||||
const taskProgress = [
|
||||
"setting.waiting",
|
||||
|
|
|
|||
Loading…
Reference in New Issue