feat: refs #7346 traducciones en cammelCase
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javi Gallego 2024-11-12 07:42:55 +01:00
parent 76e35cc758
commit 8e4931516a
1 changed files with 35 additions and 26 deletions

View File

@ -48,7 +48,7 @@ const columns = computed(() => [
{
align: 'center',
name: 'id',
label: t('invoice id'),
label: t('invoiceId'),
chip: { condition: () => true },
isId: true,
columnFilter: { name: 'search' },
@ -116,12 +116,12 @@ const columns = computed(() => [
name: 'tableActions',
actions: [
{
title: t('view summary'),
title: t('viewSummary'),
icon: 'preview',
action: (row) => viewSummary(row.id, InvoiceOutSummary),
},
{
title: t('download pdf'),
title: t('downloadPdf'),
icon: 'vn:ticket',
isPrimary: true,
action: (row) => openPdf(row.id),
@ -170,8 +170,8 @@ watchEffect(selectedRows);
<template>
<VnSearchbar
:info="t('you can search by invoice reference')"
:label="t('search invoice')"
:info="t('youCanSearchByInvoiceReference')"
:label="t('searchInvoice')"
data-key="invoiceOut"
/>
<RightMenu>
@ -187,7 +187,7 @@ watchEffect(selectedRows);
@click="downloadPdf()"
:disable="!hasSelectedCards"
>
<QTooltip>{{ t('download pdf') }}</QTooltip>
<QTooltip>{{ t('downloadPdf') }}</QTooltip>
</QBtn>
</template>
</VnSubToolbar>
@ -197,7 +197,7 @@ watchEffect(selectedRows);
:url="`${MODEL}/filter`"
:create="{
urlCreate: 'InvoiceOuts/createManualInvoice',
title: t('create manual invoice'),
title: t('createManualInvoice'),
onDataSaved: ({ id }) => tableRef.redirect(id),
formInitialData: { active: true },
}"
@ -367,7 +367,7 @@ watchEffect(selectedRows);
<VnSelect
url="InvoiceOutSerials"
v-model="data.serial"
:label="t('invoice serial')"
:label="t('invoiceSerial')"
:options="invoiceOutSerialsOptions"
option-label="description"
option-value="code"
@ -385,13 +385,13 @@ watchEffect(selectedRows);
</QItem>
</template>
</VnSelect>
<VnInputDate :label="t('due date')" v-model="data.maxShipped" />
<VnInputDate :label="t('dueDate')" v-model="data.maxShipped" />
</VnRow>
<VnRow class="row q-col-gutter-xs">
<VnSelect
url="TaxAreas"
v-model="data.taxArea"
:label="t('tax area')"
:label="t('taxArea')"
:options="taxAreasOptions"
option-label="code"
option-value="code"
@ -417,24 +417,33 @@ watchEffect(selectedRows);
flex: 0.75;
}
</style>
<i18n>
en:
invoice id: Invoice ID
view summary: View Summary
download pdf: Download PDF
you can search by invoice reference: You can search by invoice reference
search invoice: Search Invoice
create manual invoice: Create Manual Invoice
invoice serial: Invoice Serial
tax area: Tax Area
invoiceId: Invoice ID
viewSummary: View Summary
downloadPdf: Download PDF
youCanSearchByInvoiceReference: You can search by invoice reference
searchInvoice: Search Invoice
createManualInvoice: Create Manual Invoice
invoiceSerial: Invoice Serial
taxArea: Tax Area
dueDate: Due Date
reference: Reference
basicData:
inactive: Inactive
es:
invoice id: ID de factura
view summary: Ver resumen
download pdf: Descargar PDF
you can search by invoice reference: Puedes buscar por referencia de la factura
search invoice: Buscar factura
create manual invoice: Crear factura manual
invoice serial: Serie de factura
tax area: Área fiscal
invoiceId: ID de factura
viewSummary: Ver resumen
downloadPdf: Descargar PDF
youCanSearchByInvoiceReference: Puedes buscar por referencia de la factura
searchInvoice: Buscar factura
createManualInvoice: Crear factura manual
invoiceSerial: Serie de factura
taxArea: Área fiscal
dueDate: Fecha de vencimiento
reference: Referencia
basicData:
inactive: Inactivo
</i18n>