Skip to content

Commit fe7699e

Browse files
authoredDec 9, 2024··
fix: update document link (#25)
* feat: change olares * fix:update link * fix: update document link
1 parent 5a35195 commit fe7699e

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed
 

‎packages/web/src/i18n/en-US/index.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ export default {
1515
home_doc_1: 'DevBox tutorials',
1616
home_doc_2: 'Basic concepts of Olares applications',
1717
home_doc_3: 'Understand Olares Application Chart',
18-
home_doc_4: 'OlaresManifest configuration guide ',
19-
home_doc_5: 'Olares Market Protocol overview',
20-
home_doc_6: 'How to submit an application',
18+
home_doc_4: 'OlaresManifest configuration guide',
19+
home_doc_5: 'How to submit an application',
2120
home_visit_1: 'Visit',
2221
home_visit_2: 'for more information.',
2322
home_appname: 'App name',

‎packages/web/src/i18n/zh-CN/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ export default {
1616
home_doc_2: 'Olares 应用的基本概念',
1717
home_doc_3: '理解 Olares 应用 chart',
1818
home_doc_4: 'OlaresManifest 配置指南 ',
19-
home_doc_5: 'Olares 市场协议概览',
20-
home_doc_6: '如何提交应用',
19+
home_doc_5: '如何提交应用',
2120
home_visit_1: '访问',
2221
home_visit_2: '了解更多信息。',
2322
home_appname: '应用名称',

‎packages/web/src/stores/menu.ts

+5-9
Original file line numberDiff line numberDiff line change
@@ -69,32 +69,28 @@ export const useMenuStore = defineStore('menu', {
6969
},
7070
{
7171
id: 2,
72-
message: 'Introduction to Basic Concepts of Olares Application',
72+
message: 'Basic concepts of Olares applications',
7373
link: 'https://docs.olares.xyz/manual/concepts/application.html'
7474
},
7575
{
7676
id: 3,
77-
message: 'Learn about Olares Application Chart',
77+
message: 'Understand Olares Application Chart',
7878
link: 'https://docs.olares.xyz/developer/develop/package/chart.html'
7979
},
8080
{
8181
id: 4,
82-
message: 'Configuration Guideline for OlaresManifest',
82+
message: 'OlaresManifest configuration guide',
8383
link: 'https://docs.olares.xyz/developer/develop/package/manifest.html'
8484
},
8585
{
8686
id: 5,
87-
message: 'Olares Market protocol overview',
88-
link: 'https://docs.olares.xyz/manual/tasks/install-uninstall-update.html'
89-
},
90-
{
91-
id: 6,
92-
message: 'How to sbmit an application to the Olares Market',
87+
message: 'How to submit an application',
9388
link: 'https://docs.olares.xyz/developer/develop/submit/'
9489
}
9590
]
9691
} as DataState;
9792
},
93+
9894
getters: {
9995
menuList(state) {
10096
return [...state.homeMenu, ...state.applicationMenu];

0 commit comments

Comments
 (0)
Please sign in to comment.