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:
parent
3559c61e89
commit
175a8fb4d1
@ -11,10 +11,10 @@ export default {
|
|||||||
page404: '404',
|
page404: '404',
|
||||||
profile: 'Profile',
|
profile: 'Profile',
|
||||||
ProcessActivity: 'Process Logs',
|
ProcessActivity: 'Process Logs',
|
||||||
Role: 'Role',
|
role: 'Role',
|
||||||
Client: 'Client',
|
organization: 'Organization',
|
||||||
Warehouse: 'Warehouse',
|
warehouse: 'Warehouse',
|
||||||
ReportViewer: 'Report Viewer'
|
reportViewer: 'Report Viewer'
|
||||||
},
|
},
|
||||||
notifications: {
|
notifications: {
|
||||||
// simplex
|
// simplex
|
||||||
|
@ -11,10 +11,10 @@ export default {
|
|||||||
page404: '404',
|
page404: '404',
|
||||||
profile: 'Perfil',
|
profile: 'Perfil',
|
||||||
ProcessActivity: 'Histórico Procesos',
|
ProcessActivity: 'Histórico Procesos',
|
||||||
Role: 'Rol',
|
role: 'Rol',
|
||||||
Client: 'Compañía',
|
organization: 'Organización',
|
||||||
Warehouse: 'Almacén',
|
warehouse: 'Almacén',
|
||||||
ReportViewer: 'Visor de Reportes'
|
reportViewer: 'Visor de Reportes'
|
||||||
},
|
},
|
||||||
notifications: {
|
notifications: {
|
||||||
// simplex
|
// simplex
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form>
|
<el-form>
|
||||||
{{ $t('route.Role') }}
|
{{ $t('route.role') }}
|
||||||
<el-select
|
<el-select
|
||||||
v-model="roleUuid"
|
v-model="roleUuid"
|
||||||
:filterable="!isMobile"
|
:filterable="!isMobile"
|
||||||
@ -15,7 +15,7 @@
|
|||||||
:disabled="isEmptyValue(role.uuid)"
|
:disabled="isEmptyValue(role.uuid)"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
{{ $t('route.Client') }}
|
{{ $t('route.organization') }}
|
||||||
<el-select
|
<el-select
|
||||||
v-model="organizationUuid"
|
v-model="organizationUuid"
|
||||||
:filterable="!isMobile"
|
:filterable="!isMobile"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
:disabled="isEmptyValue(organization.uuid)"
|
:disabled="isEmptyValue(organization.uuid)"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
{{ $t('route.Warehouse') }}
|
{{ $t('route.warehouse') }}
|
||||||
<el-select
|
<el-select
|
||||||
v-model="warehouseUuid"
|
v-model="warehouseUuid"
|
||||||
:filterable="!isMobile"
|
:filterable="!isMobile"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user