From 8e4931516a25008a2703c62a5685a19798d95f5b Mon Sep 17 00:00:00 2001 From: jgallego Date: Tue, 12 Nov 2024 07:42:55 +0100 Subject: [PATCH] feat: refs #7346 traducciones en cammelCase --- src/pages/InvoiceOut/InvoiceOutList.vue | 61 ++++++++++++++----------- 1 file changed, 35 insertions(+), 26 deletions(-) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index 728ba9442..9c4b9753c 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -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); @@ -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); - + + 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