forked from verdnatura/salix-front
refs #5673 feat(claim_development): add translation
This commit is contained in:
parent
352e65c529
commit
b7bbb4ba41
|
@ -244,6 +244,7 @@ export default {
|
||||||
lines: 'Lines',
|
lines: 'Lines',
|
||||||
rma: 'RMA',
|
rma: 'RMA',
|
||||||
photos: 'Photos',
|
photos: 'Photos',
|
||||||
|
development: 'Development',
|
||||||
log: 'Audit logs',
|
log: 'Audit logs',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
|
@ -295,7 +296,7 @@ export default {
|
||||||
result: 'Result',
|
result: 'Result',
|
||||||
responsible: 'Responsible',
|
responsible: 'Responsible',
|
||||||
worker: 'Worker',
|
worker: 'Worker',
|
||||||
redelivery: 'Redelivery'
|
redelivery: 'Redelivery',
|
||||||
},
|
},
|
||||||
basicData: {
|
basicData: {
|
||||||
customer: 'Customer',
|
customer: 'Customer',
|
||||||
|
@ -411,7 +412,7 @@ export default {
|
||||||
wagonEdit: 'Edit wagon',
|
wagonEdit: 'Edit wagon',
|
||||||
typesList: 'Types List',
|
typesList: 'Types List',
|
||||||
typeCreate: 'Create type',
|
typeCreate: 'Create type',
|
||||||
typeEdit: 'Edit type'
|
typeEdit: 'Edit type',
|
||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
|
@ -431,7 +432,7 @@ export default {
|
||||||
plate: 'Plate',
|
plate: 'Plate',
|
||||||
volume: 'Volume',
|
volume: 'Volume',
|
||||||
type: 'Type',
|
type: 'Type',
|
||||||
label: 'Label'
|
label: 'Label',
|
||||||
},
|
},
|
||||||
warnings: {
|
warnings: {
|
||||||
noData: 'No data available',
|
noData: 'No data available',
|
||||||
|
@ -444,7 +445,7 @@ export default {
|
||||||
minHeightBetweenTrays: 'The minimum height between trays is ',
|
minHeightBetweenTrays: 'The minimum height between trays is ',
|
||||||
maxWagonHeight: 'The maximum height of the wagon is ',
|
maxWagonHeight: 'The maximum height of the wagon is ',
|
||||||
uncompleteTrays: 'There are incomplete trays',
|
uncompleteTrays: 'There are incomplete trays',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
topbar: {},
|
topbar: {},
|
||||||
|
|
|
@ -242,8 +242,8 @@ export default {
|
||||||
basicData: 'Datos básicos',
|
basicData: 'Datos básicos',
|
||||||
lines: 'Líneas',
|
lines: 'Líneas',
|
||||||
rma: 'RMA',
|
rma: 'RMA',
|
||||||
photos: 'Fotos',
|
|
||||||
development: 'Trazabilidad',
|
development: 'Trazabilidad',
|
||||||
|
photos: 'Fotos',
|
||||||
log: 'Registros de auditoría',
|
log: 'Registros de auditoría',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
|
|
|
@ -76,6 +76,5 @@ es:
|
||||||
You can search by claim id or customer name: Puedes buscar por id de la reclamación o nombre del cliente
|
You can search by claim id or customer name: Puedes buscar por id de la reclamación o nombre del cliente
|
||||||
Details: Detalles
|
Details: Detalles
|
||||||
Notes: Notas
|
Notes: Notas
|
||||||
Development: Trazabilidad
|
|
||||||
Action: Acción
|
Action: Acción
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -106,11 +106,10 @@ const columns = computed(() => [
|
||||||
selection="multiple"
|
selection="multiple"
|
||||||
hide-pagination
|
hide-pagination
|
||||||
>
|
>
|
||||||
<template #body-cell-reason="{ row, column }">
|
<template #body-cell-reason="{ row, col }">
|
||||||
{{ column }}
|
|
||||||
<QTd auto-width>
|
<QTd auto-width>
|
||||||
<QSelect
|
<QSelect
|
||||||
:label="t('Responsible')"
|
:label="col.label"
|
||||||
v-model="row.claimReasonFk"
|
v-model="row.claimReasonFk"
|
||||||
:options="claimReasons"
|
:options="claimReasons"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
@ -122,7 +121,6 @@ const columns = computed(() => [
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-result="{ row }">
|
<template #body-cell-result="{ row }">
|
||||||
{{ props }}
|
|
||||||
<QTd auto-width>
|
<QTd auto-width>
|
||||||
<QSelect
|
<QSelect
|
||||||
label=""
|
label=""
|
||||||
|
|
Loading…
Reference in New Issue