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',
|
||||
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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user