1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 20:39:48 +08:00

Add support to some translation (#492)

* Add support to some translation

* Fix role
This commit is contained in:
Yamel Senih 2020-05-11 01:25:10 -04:00 committed by GitHub
parent 3559c61e89
commit 175a8fb4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 11 deletions

View File

@ -11,10 +11,10 @@ export default {
page404: '404',
profile: 'Profile',
ProcessActivity: 'Process Logs',
Role: 'Role',
Client: 'Client',
Warehouse: 'Warehouse',
ReportViewer: 'Report Viewer'
role: 'Role',
organization: 'Organization',
warehouse: 'Warehouse',
reportViewer: 'Report Viewer'
},
notifications: {
// simplex

View File

@ -11,10 +11,10 @@ export default {
page404: '404',
profile: 'Perfil',
ProcessActivity: 'Histórico Procesos',
Role: 'Rol',
Client: 'Compañía',
Warehouse: 'Almacén',
ReportViewer: 'Visor de Reportes'
role: 'Rol',
organization: 'Organización',
warehouse: 'Almacén',
reportViewer: 'Visor de Reportes'
},
notifications: {
// simplex

View File

@ -1,6 +1,6 @@
<template>
<el-form>
{{ $t('route.Role') }}
{{ $t('route.role') }}
<el-select
v-model="roleUuid"
:filterable="!isMobile"
@ -15,7 +15,7 @@
:disabled="isEmptyValue(role.uuid)"
/>
</el-select>
{{ $t('route.Client') }}
{{ $t('route.organization') }}
<el-select
v-model="organizationUuid"
:filterable="!isMobile"
@ -30,7 +30,7 @@
:disabled="isEmptyValue(organization.uuid)"
/>
</el-select>
{{ $t('route.Warehouse') }}
{{ $t('route.warehouse') }}
<el-select
v-model="warehouseUuid"
:filterable="!isMobile"