diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js index b2e0700..c1d53e3 100644 --- a/frontend/src/lang/en.js +++ b/frontend/src/lang/en.js @@ -6,14 +6,14 @@ export default { Summary: 'Summary', Status: 'Status', Date: 'Date', - withdraw: 'withdraw', - edit: 'edit', + withdraw: 'Cancel', + edit: 'Edit', Quote: 'Quote', Payment: 'Payment', Duration: 'Duration', days: 'days', Update: 'Update', - From: 'From', + "Quote From": 'From', reject: 'reject', accept: 'accept', Note: 'Note', diff --git a/frontend/src/lang/zh.js b/frontend/src/lang/zh.js index 18191c2..c5e6fd9 100644 --- a/frontend/src/lang/zh.js +++ b/frontend/src/lang/zh.js @@ -13,7 +13,7 @@ export default { Duration: '工期', days: '天', Update: '更新', - From: '需求方', + "Quote From": '需求方', reject: '拒绝', accept: '接受', Note: '标注', @@ -170,7 +170,7 @@ export default { 'Review your request and the associated proposals': '核对你的请求和相关提议', Title: '标题', Action: '待办操作', - Proposals: '提议数', + Proposals: '报价数量', 'Proposed by': '提议来自', Price: '价格', Reject: '拒绝', @@ -190,7 +190,7 @@ export default { 'day(s)': '天', 'Some update in your work': 'Some update in your work', 'Some update in your request': 'Some update in your request', - 'min(s)': '响应时间', + 'min(s)': '分钟', 'line(s)': '每周产出代码', 'Issues management': '问题管理', 'Payment progress': '付款进度', diff --git a/frontend/src/pages/public/About.vue b/frontend/src/pages/public/About.vue index b0430a8..d18dfe1 100644 --- a/frontend/src/pages/public/About.vue +++ b/frontend/src/pages/public/About.vue @@ -1,17 +1,15 @@ @@ -35,7 +33,10 @@ export default { }) }, view_link(directory) { - this.mnx_navToLinkContentViewer(btoa(directory.content_link)) + if (directory.content_id) + this.mnx_navToPdfContentViewer(directory.content_id) + else if (directory.content_link) + this.mnx_navToLinkContentViewer(btoa(directory.content_link)) } }, data() { diff --git a/frontend/src/pages/public/Blogs.vue b/frontend/src/pages/public/Blogs.vue index a73b0ec..7ca82ce 100644 --- a/frontend/src/pages/public/Blogs.vue +++ b/frontend/src/pages/public/Blogs.vue @@ -32,7 +32,10 @@ export default { }) }, view_blog(blog) { - this.mnx_navToPdfContentViewer(blog.content_id) + if (blog.content_id) + this.mnx_navToPdfContentViewer(blog.content_id) + else if (blog.content_link) + this.mnx_navToLinkContentViewer(btoa(blog.content_link)) }, retrieve_summary(blog) { return blog.summary_text diff --git a/frontend/src/pages/public/Career.vue b/frontend/src/pages/public/Career.vue index ed2330d..fb415bc 100644 --- a/frontend/src/pages/public/Career.vue +++ b/frontend/src/pages/public/Career.vue @@ -1,11 +1,6 @@