diff --git a/resource/i18n/en.json b/resource/i18n/en.json index 93f375816..0caea96c2 100644 --- a/resource/i18n/en.json +++ b/resource/i18n/en.json @@ -320,14 +320,26 @@ }, "updateat": "Update at: ", "user": { - "uploads": "Uploads: ", - "uploaded": "Uploaded: ", - "downloaded": "Downloaded: ", - "seedingSize": "Seeding size: ", - "averageSeedtime": "Average Seedtime: {day} day(s)", - "ratio": "Ratio: ", - "bonus": "Bonus: ", - "bonusPerHour": "Bonus per hour: " + "colonSeparator": ": ", + "uploads": "Uploads", + "uploaded": "Uploaded", + "downloaded": "Downloaded", + "seedingSize": "Seeding size", + "averageSeedtime": "Average Seedtime(Day)", + "ratio": "Ratio", + "bonus": "Bonus", + "bonusPerHour": "Bonus per hour" + }, + "sortSites": { + "name": "Sort Sites", + "key": { + "label": "Sort By" + }, + "order": { + "label": "Sort Order", + "asc": "ascending", + "dsc": "descending" + } }, "inputDisplayName": "Please enter a name to display:", "inputShareMessage": "Please enter a message to display:" diff --git a/resource/i18n/zh-CN.json b/resource/i18n/zh-CN.json index c0ebf1909..4f920dbeb 100644 --- a/resource/i18n/zh-CN.json +++ b/resource/i18n/zh-CN.json @@ -314,14 +314,27 @@ }, "updateat": "数据更新于:", "user": { - "uploads": "发布数:", - "uploaded": "上传量:", - "downloaded": "下载量:", - "seedingSize": "做种量:", - "averageSeedtime": "均保时:{day} 天", - "ratio": "分享率:", - "bonus": "积分值:", - "bonusPerHour": "时 魔:" + "colonSeparator": ":", + "uploads": "发布数", + "uploaded": "上传量", + "downloaded": "下载量", + "seedingSize": "做种量", + "averageSeedtime": "均保时(天)", + "ratio": "分享率", + "bonus": "积分值", + "bonusPerHour": "时 魔", + "joinTime": "加入时间" + }, + "sortSites": { + "name": "站点排序", + "key": { + "label": "排序依据" + }, + "order": { + "label": "排序方式", + "asc": "正序", + "dsc": "倒序" + } }, "inputDisplayName": "请输入需要显示的名称:", "inputShareMessage": "请输入需要显示的信息:" diff --git a/src/interface/common.ts b/src/interface/common.ts index 24b783c96..5bef12f6a 100644 --- a/src/interface/common.ts +++ b/src/interface/common.ts @@ -319,7 +319,6 @@ export interface Site { apiCdn?: string[]; getInfoAjaxCache?: boolean; } - /** * desc & href 都不为空才被认为是有效链接 * href 必须是网址 diff --git a/src/options/views/UserDataTimeline.vue b/src/options/views/UserDataTimeline.vue index a6d07a5cd..7a6e81199 100644 --- a/src/options/views/UserDataTimeline.vue +++ b/src/options/views/UserDataTimeline.vue @@ -147,14 +147,14 @@