diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js index 92a2ec206..68d581703 100644 --- a/src/i18n/en/index.js +++ b/src/i18n/en/index.js @@ -39,6 +39,10 @@ export default { }, noSelectedRows: `You don't have any line selected`, downloadCSVSuccess: 'CSV downloaded successfully', + download: 'Download', + selectRows: 'Select all { numberRows } row(s)', + allRows: 'All { numberRows } row(s)', + markAll: 'Mark all', }, errors: { statusUnauthorized: 'Access denied', @@ -439,7 +443,7 @@ export default { create: 'Create', summary: 'Summary', basicData: 'Basic Data', - log: 'Logs' + log: 'Logs', }, list: { parking: 'Parking', diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js index 7e296a353..c7c778da3 100644 --- a/src/i18n/es/index.js +++ b/src/i18n/es/index.js @@ -39,6 +39,10 @@ export default { }, noSelectedRows: `No tienes ninguna línea seleccionada`, downloadCSVSuccess: 'Descarga de CSV exitosa', + download: 'Descargar', + selectRows: 'Seleccionar las { numberRows } filas(s)', + allRows: 'Todo { numberRows } filas(s)', + markAll: 'Marcar todo', }, errors: { statusUnauthorized: 'Acceso denegado', @@ -441,7 +445,7 @@ export default { create: 'Crear', summary: 'Resumen', basicData: 'Datos básicos', - log: 'Registros de auditoría' + log: 'Registros de auditoría', }, list: { parking: 'Parking', diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index 95279b09d..5f02f175d 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -141,14 +141,14 @@ const downloadCsv = (rows) => { class="q-mr-xl" color="primary" :disable="!manageCheckboxes && arrayElements.length < 1" - :label="t('download')" + :label="t('globals.download')" v-if="!showSelect" /> @@ -156,8 +156,8 @@ const downloadCsv = (rows) => { {{ - t('allRows', { - numberRows: t(rows.length), + t('globals.allRows', { + numberRows: rows.length, }) }} @@ -168,8 +168,8 @@ const downloadCsv = (rows) => { {{ - t('selectRows', { - numberRows: t(rows.length), + t('globals.selectRows', { + numberRows: rows.length, }) }} @@ -180,7 +180,7 @@ const downloadCsv = (rows) => {