You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lang/en.js
+9-11
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
exportdefault{
2
2
route: {
3
3
dashboard: 'Dashboard',
4
-
introduction: 'Introduction',
5
4
documentation: 'Documentation',
6
5
guide: 'Guide',
7
6
permission: 'Permission',
@@ -10,7 +9,6 @@ export default {
10
9
directivePermission: 'Directive Permission',
11
10
icons: 'Icons',
12
11
components: 'Components',
13
-
componentIndex: 'Introduction',
14
12
tinymce: 'Tinymce',
15
13
markdown: 'Markdown',
16
14
jsonEditor: 'JSON Editor',
@@ -19,9 +17,9 @@ export default {
19
17
avatarUpload: 'Avatar Upload',
20
18
dropzone: 'Dropzone',
21
19
sticky: 'Sticky',
22
-
countTo: 'CountTo',
20
+
countTo: 'Count To',
23
21
componentMixin: 'Mixin',
24
-
backToTop: 'BackToTop',
22
+
backToTop: 'Back To Top',
25
23
dragDialog: 'Drag Dialog',
26
24
dragSelect: 'Drag Select',
27
25
dragKanban: 'Drag Kanban',
@@ -74,7 +72,7 @@ export default {
74
72
},
75
73
login: {
76
74
title: 'Login Form',
77
-
logIn: 'Log in',
75
+
logIn: 'Login',
78
76
username: 'Username',
79
77
password: 'Password',
80
78
any: 'any',
@@ -87,10 +85,10 @@ export default {
87
85
},
88
86
permission: {
89
87
addRole: 'New Role',
90
-
editPermission: 'Edit Permission',
88
+
editPermission: 'Edit',
91
89
roles: 'Your roles',
92
90
switchRoles: 'Switch roles',
93
-
tips: 'In some cases it is not suitable to use v-permission, such as element Tab component or el-table-column and other asynchronous rendering dom cases which can only be achieved by manually setting the v-if.',
91
+
tips: 'In some cases, using v-permission will have no effect. For example: Element-UI el-tab or el-table-column and other scenes that dynamically render dom. You can only do this with v-if.',
94
92
delete: 'Delete',
95
93
confirm: 'Confirm',
96
94
cancel: 'Cancel'
@@ -101,7 +99,7 @@ export default {
101
99
},
102
100
components: {
103
101
documentation: 'Documentation',
104
-
tinymceTips: 'Rich text editor is a core part of management system, but at the same time is a place with lots of problems. In the process of selecting rich texts, I also walked a lot of detours. The common rich text editors in the market are basically used, and the finally chose Tinymce. See documentation for more detailed rich text editor comparisons and introductions.',
102
+
tinymceTips: 'Rich text is a core feature of the management backend, but at the same time it is a place with lots of pits. In the process of selecting rich texts, I also took a lot of detours. The common rich texts on the market have been basically used, and I finally chose Tinymce. See the more detailed rich text comparison and introduction.',
105
103
dropzoneTips: 'Because my business has special needs, and has to upload images to qiniu, so instead of a third party, I chose encapsulate it by myself. It is very simple, you can see the detail code in @/components/Dropzone.',
106
104
stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.',
107
105
backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner',
@@ -142,14 +140,14 @@ export default {
142
140
excel: {
143
141
export: 'Export',
144
142
selectedExport: 'Export Selected Items',
145
-
placeholder: 'Please enter the file name(default excel-list)'
143
+
placeholder: 'Please enter the file name(default excel-list)'
146
144
},
147
145
zip: {
148
146
export: 'Export',
149
-
placeholder: 'Please enter the file name(default file)'
147
+
placeholder: 'Please enter the file name(default file)'
150
148
},
151
149
pdf: {
152
-
tips: 'Here we use window.print() to implement the feature of downloading pdf.'
150
+
tips: 'Here we use window.print() to implement the feature of downloading PDF.'
0 commit comments