From 1546e2c741ef6baeec6385d4f8b5a3512cc9573f Mon Sep 17 00:00:00 2001 From: marvzhang Date: Sat, 1 Feb 2020 12:46:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E4=BB=BB=E5=8A=A1=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E6=95=99=E7=A8=8B=EF=BC=8C=E6=9B=B4=E6=96=B0=E7=BF=BB?= =?UTF-8?q?=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/i18n/zh.js | 15 ++++++++++++++- frontend/src/views/spider/SpiderList.vue | 2 +- frontend/src/views/task/TaskList.vue | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/frontend/src/i18n/zh.js b/frontend/src/i18n/zh.js index 41585438..96932d44 100644 --- a/frontend/src/i18n/zh.js +++ b/frontend/src/i18n/zh.js @@ -411,7 +411,7 @@ docker run -d --restart always --name crawlab_worker \\ 'Previous': '上一步', 'Next': '下一步', 'Finish': '结束', - 'Click to add a new spider': '点击并添加爬虫', + 'Click to add a new spider.

You can also add a Customized Spider through CLI Tool.': '点击并添加爬虫

您也可以通过 CLI 工具 添加自定义爬虫', 'You can view your created spiders here.
Click a table row to view spider details.': '您可以查看创建的爬虫
点击行来查看爬虫详情', 'View a list of Configurable Spiders': '查看可配置爬虫列表', 'View a list of Customized Spiders': '查看自定义爬虫列表', @@ -447,6 +447,19 @@ docker run -d --restart always --name crawlab_worker \\ 'You can view the
visualization of the stage
workflow.': '您可以查看阶段工作流的
可视化界面', 'You can add the settings here, which will be loaded in the Scrapy\'s settings.py file.

JSON and Array data are supported.': '您可以在这里添加设置,它们会在 Scrapy 中的 settings.py 中被加载

JSON 和数组都支持', 'You can edit the Spiderfile here.

For more information, please refer to the Documentation (Chinese).': '您可以在这里编辑 Spiderfile

更多信息, 请参考 文档.', + 'You can filter tasks from this area.': '您可以在这个区域筛选任务', + 'This is a list of spider tasks executed sorted in a time descending order.': '这是执行过的爬虫任务的列表,按时间降序排列', + 'Click the row to or the view button to view the task detail.': '点击行或查看按钮来查看任务详情', + 'Tick and select the tasks you would like to delete in batches.': '勾选您想批量删除的任务', + 'Click this button to delete selected tasks.': '点击并删除勾选的任务', + 'This is the info of the task detail.': '这是任务详情信息', + 'This is the spider info of the task.': '这是任务的爬虫信息', + 'You can click to view the spider detail for the task.': '您可以点击查看该任务的爬虫详情', + 'This is the node info of the task.': '这是任务的节点信息', + 'You can click to view the node detail for the task.': '您可以点击查看该任务的节点详情', + 'Here you can view the log
details for the task. The
log is automatically updated.': '这里您可以查看该任务
的日志详情,日志是
自动更新的', + 'Here you can view the results scraped by the spider.

Note: If you find your results here are empty, please refer to the Documentation (Chinese) about how to integrate your spider into Crawlab.': '这里您可以查看爬虫抓取下来的结果

注意: 如果这里结果是空的,请参考 相关文档 来集成您的爬虫到 Crawlab', + 'You can download your results as a CSV file by clicking this button.': '您可以点击下载结果为 CSV 文件', // 其他 'Star crawlab-team/crawlab on GitHub': '在 GitHub 上为 Crawlab 加星吧' diff --git a/frontend/src/views/spider/SpiderList.vue b/frontend/src/views/spider/SpiderList.vue index 45372b7d..29c9e479 100644 --- a/frontend/src/views/spider/SpiderList.vue +++ b/frontend/src/views/spider/SpiderList.vue @@ -380,7 +380,7 @@ export default { }, { target: '.btn.add', - content: this.$t('Click to add a new spider') + content: this.$t('Click to add a new spider.

You can also add a Customized Spider through CLI Tool.') } ], tourCallbacks: { diff --git a/frontend/src/views/task/TaskList.vue b/frontend/src/views/task/TaskList.vue index 51b52547..0b600f8b 100644 --- a/frontend/src/views/task/TaskList.vue +++ b/frontend/src/views/task/TaskList.vue @@ -210,7 +210,7 @@ export default { }, { target: '.table', - content: this.$t('This is a list of spider tasks executed sorted in a descending order.') + content: this.$t('This is a list of spider tasks executed sorted in a time descending order.') }, { target: '.table .el-table__body-wrapper tr:nth-child(1)',