Compare commits

...

2 Commits

Author SHA1 Message Date
Javier Segarra ce743d4837 feat: add i18n en for new param to myEntries
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-08-22 08:24:16 +02:00
Javier Segarra 28a82a08ef feat: add new params to myEntries
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-08-21 15:25:33 +02:00
3 changed files with 10 additions and 2 deletions

View File

@ -47,6 +47,7 @@ globals:
summary:
basicData: Basic data
daysOnward: Days onward
daysBackward: Days backward
today: Today
yesterday: Yesterday
dateFormat: en-GB
@ -93,7 +94,6 @@ globals:
since: Since
from: From
to: To
notes: Notes
pageTitles:
logIn: Login
summary: Summary
@ -690,6 +690,7 @@ invoiceOut:
chooseValidClient: Choose a valid client
chooseValidCompany: Choose a valid company
chooseValidPrinter: Choose a valid printer
chooseValidSerialType: Choose a serial type
fillDates: Invoice date and the max date should be filled
invoiceDateLessThanMaxDate: Invoice date can not be less than max date
invoiceWithFutureDate: Exists an invoice with a future date

View File

@ -46,6 +46,7 @@ globals:
summary:
basicData: Datos básicos
daysOnward: Días adelante
daysBackward: Días atrás
today: Hoy
yesterday: Ayer
dateFormat: es-ES

View File

@ -78,7 +78,13 @@ const columns = computed(() => [
{
align: 'left',
label: t('globals.daysOnward'),
name: 'days',
name: 'daysAfter',
visible: false,
},
{
align: 'left',
label: t('globals.daysBackward'),
name: 'daysBefore',
visible: false,
},
{