|
| 1 | +export default { |
| 2 | + route: { |
| 3 | + dashboard: 'Panel de control', |
| 4 | + introduction: 'Introducción', |
| 5 | + documentation: 'Documentación', |
| 6 | + guide: 'Guía', |
| 7 | + permission: 'Permisos', |
| 8 | + pagePermission: 'Permisos de la página', |
| 9 | + directivePermission: 'Permisos de la directiva', |
| 10 | + icons: 'Iconos', |
| 11 | + components: 'Componentes', |
| 12 | + componentIndex: 'Introducción', |
| 13 | + tinymce: 'Tinymce', |
| 14 | + markdown: 'Markdown', |
| 15 | + jsonEditor: 'Editor JSON', |
| 16 | + dndList: 'Lista Dnd', |
| 17 | + splitPane: 'Panel dividido', |
| 18 | + avatarUpload: 'Subir avatar', |
| 19 | + dropzone: 'Subir ficheros', |
| 20 | + sticky: 'Sticky', |
| 21 | + countTo: 'CountTo', |
| 22 | + componentMixin: 'Mixin', |
| 23 | + backToTop: 'Ir arriba', |
| 24 | + dragDialog: 'Drag Dialog', |
| 25 | + dragKanban: 'Drag Kanban', |
| 26 | + charts: 'Gráficos', |
| 27 | + keyboardChart: 'Keyboard Chart', |
| 28 | + lineChart: 'Gráfico de líneas', |
| 29 | + mixChart: 'Mix Chart', |
| 30 | + example: 'Ejemplo', |
| 31 | + nested: 'Rutas anidadass', |
| 32 | + menu1: 'Menu 1', |
| 33 | + 'menu1-1': 'Menu 1-1', |
| 34 | + 'menu1-2': 'Menu 1-2', |
| 35 | + 'menu1-2-1': 'Menu 1-2-1', |
| 36 | + 'menu1-2-2': 'Menu 1-2-2', |
| 37 | + 'menu1-3': 'Menu 1-3', |
| 38 | + menu2: 'Menu 2', |
| 39 | + Table: 'Tabla', |
| 40 | + dynamicTable: 'Tabla dinámica', |
| 41 | + dragTable: 'Arrastrar tabla', |
| 42 | + inlineEditTable: 'Editor', |
| 43 | + complexTable: 'Complex Table', |
| 44 | + treeTable: 'Tree Table', |
| 45 | + customTreeTable: 'Custom TreeTable', |
| 46 | + tab: 'Pestaña', |
| 47 | + form: 'Formulario', |
| 48 | + createArticle: 'Crear artículo', |
| 49 | + editArticle: 'Editar artículo', |
| 50 | + articleList: 'Listado de artículos', |
| 51 | + errorPages: 'Páginas de error', |
| 52 | + page401: '401', |
| 53 | + page404: '404', |
| 54 | + errorLog: 'Registro de errores', |
| 55 | + excel: 'Excel', |
| 56 | + exportExcel: 'Exportar a Excel', |
| 57 | + selectExcel: 'Export seleccionado', |
| 58 | + uploadExcel: 'Subir Excel', |
| 59 | + zip: 'Zip', |
| 60 | + exportZip: 'Exportar a Zip', |
| 61 | + theme: 'Tema', |
| 62 | + clipboardDemo: 'Clipboard', |
| 63 | + i18n: 'I18n', |
| 64 | + externalLink: 'Enlace externo' |
| 65 | + }, |
| 66 | + navbar: { |
| 67 | + logOut: 'Salir', |
| 68 | + dashboard: 'Panel de control', |
| 69 | + github: 'Github', |
| 70 | + screenfull: 'Pantalla completa', |
| 71 | + theme: 'Tema', |
| 72 | + size: 'Tamaño global' |
| 73 | + }, |
| 74 | + login: { |
| 75 | + title: 'Formulario de acceso', |
| 76 | + logIn: 'Acceso', |
| 77 | + username: 'Usuario', |
| 78 | + password: 'Contraseña', |
| 79 | + any: 'nada', |
| 80 | + thirdparty: 'Conectar con', |
| 81 | + thirdpartyTips: 'No se puede simular en local, así que combine su propia simulación de negocios. ! !' |
| 82 | + }, |
| 83 | + documentation: { |
| 84 | + documentation: 'Documentación', |
| 85 | + github: 'Repositorio Github' |
| 86 | + }, |
| 87 | + permission: { |
| 88 | + roles: 'Tus permisos', |
| 89 | + switchRoles: 'Cambiar permisos' |
| 90 | + }, |
| 91 | + guide: { |
| 92 | + description: 'The guide page is useful for some people who entered the project for the first time. You can briefly introduce the features of the project. Demo is based on ', |
| 93 | + button: 'Ver guía' |
| 94 | + }, |
| 95 | + components: { |
| 96 | + documentation: 'Documentación', |
| 97 | + 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.', |
| 98 | + 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.', |
| 99 | + stickyTips: 'when the page is scrolled to the preset position will be sticky on the top.', |
| 100 | + backToTopTips1: 'When the page is scrolled to the specified position, the Back to Top button appears in the lower right corner', |
| 101 | + backToTopTips2: 'You can customize the style of the button, show / hide, height of appearance, height of the return. If you need a text prompt, you can use element-ui el-tooltip elements externally', |
| 102 | + imageUploadTips: 'Since I was using only the vue@1 version, and it is not compatible with mockjs at the moment, I modified it myself, and if you are going to use it, it is better to use official version.' |
| 103 | + }, |
| 104 | + table: { |
| 105 | + dynamicTips1: 'Fixed header, sorted by header order', |
| 106 | + dynamicTips2: 'Not fixed header, sorted by click order', |
| 107 | + dragTips1: 'Orden por defecto', |
| 108 | + dragTips2: 'The after dragging order', |
| 109 | + title: 'Título', |
| 110 | + importance: 'Importancia', |
| 111 | + type: 'Tipo', |
| 112 | + remark: 'Remark', |
| 113 | + search: 'Buscar', |
| 114 | + add: 'Añadir', |
| 115 | + export: 'Exportar', |
| 116 | + reviewer: 'reviewer', |
| 117 | + id: 'ID', |
| 118 | + date: 'Fecha', |
| 119 | + author: 'Autor', |
| 120 | + readings: 'Lector', |
| 121 | + status: 'Estado', |
| 122 | + actions: 'Acciones', |
| 123 | + edit: 'Editar', |
| 124 | + publish: 'Publicar', |
| 125 | + draft: 'Draft', |
| 126 | + delete: 'Eliminar', |
| 127 | + cancel: 'Cancelar', |
| 128 | + confirm: 'Confirmar' |
| 129 | + }, |
| 130 | + errorLog: { |
| 131 | + tips: 'Please click the bug icon in the upper right corner', |
| 132 | + description: 'Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.', |
| 133 | + documentation: 'Documento de introducción' |
| 134 | + }, |
| 135 | + excel: { |
| 136 | + export: 'Exportar', |
| 137 | + selectedExport: 'Exportar seleccionados', |
| 138 | + placeholder: 'Por favor escribe un nombre de fichero' |
| 139 | + }, |
| 140 | + zip: { |
| 141 | + export: 'Exportar', |
| 142 | + placeholder: 'Por favor escribe un nombre de fichero' |
| 143 | + }, |
| 144 | + theme: { |
| 145 | + change: 'Cambiar tema', |
| 146 | + documentation: 'Documentación del tema', |
| 147 | + tips: 'Tips: It is different from the theme-pick on the navbar is two different skinning methods, each with different application scenarios. Refer to the documentation for details.' |
| 148 | + }, |
| 149 | + tagsView: { |
| 150 | + refresh: 'Actualizar', |
| 151 | + close: 'Cerrar', |
| 152 | + closeOthers: 'Cerrar otros', |
| 153 | + closeAll: 'Cerrar todos' |
| 154 | + } |
| 155 | +} |
0 commit comments