Fix QFile label translation in entry buys
This commit is contained in:
parent
cae42486c8
commit
5d0290f585
|
@ -334,6 +334,7 @@ export default {
|
||||||
grouping: 'Grouping',
|
grouping: 'Grouping',
|
||||||
buyingValue: 'Buying value',
|
buyingValue: 'Buying value',
|
||||||
packagingFk: 'Box',
|
packagingFk: 'Box',
|
||||||
|
file: 'File',
|
||||||
},
|
},
|
||||||
notes: {
|
notes: {
|
||||||
observationType: 'Observation type',
|
observationType: 'Observation type',
|
||||||
|
@ -886,7 +887,7 @@ export default {
|
||||||
RouteList: 'List',
|
RouteList: 'List',
|
||||||
create: 'Create',
|
create: 'Create',
|
||||||
basicData: 'Basic Data',
|
basicData: 'Basic Data',
|
||||||
summary: 'Summary'
|
summary: 'Summary',
|
||||||
},
|
},
|
||||||
cmr: {
|
cmr: {
|
||||||
list: {
|
list: {
|
||||||
|
|
|
@ -333,6 +333,7 @@ export default {
|
||||||
grouping: 'Grouping',
|
grouping: 'Grouping',
|
||||||
buyingValue: 'Coste',
|
buyingValue: 'Coste',
|
||||||
packagingFk: 'Embalaje',
|
packagingFk: 'Embalaje',
|
||||||
|
file: 'Fichero',
|
||||||
},
|
},
|
||||||
notes: {
|
notes: {
|
||||||
observationType: 'Tipo de observación',
|
observationType: 'Tipo de observación',
|
||||||
|
|
|
@ -197,10 +197,11 @@ const redirectToBuysView = () => {
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<QFile
|
<QFile
|
||||||
label="Standard"
|
:label="t('entry.buys.file')"
|
||||||
:multiple="false"
|
:multiple="false"
|
||||||
v-model="importData.file"
|
v-model="importData.file"
|
||||||
@update:model-value="onFileChange($event)"
|
@update:model-value="onFileChange($event)"
|
||||||
|
class="required"
|
||||||
>
|
>
|
||||||
<template #append>
|
<template #append>
|
||||||
<QIcon name="vn:attach" class="cursor-pointer">
|
<QIcon name="vn:attach" class="cursor-pointer">
|
||||||
|
|
Loading…
Reference in New Issue