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)',