diff --git a/src/i18n/locales/en.ts b/src/i18n/locales/en.ts index 7adc7fe..bea78ff 100644 --- a/src/i18n/locales/en.ts +++ b/src/i18n/locales/en.ts @@ -69,6 +69,8 @@ const messages: LocaleMessages = { hosting: 'Hosting', pastEvents: 'Past events', past: 'Past', + filters: 'Filters', + clearAll: 'Clear all', }, categories: { concert: 'Concert', diff --git a/src/i18n/locales/es.ts b/src/i18n/locales/es.ts index 555ecc3..edc5d82 100644 --- a/src/i18n/locales/es.ts +++ b/src/i18n/locales/es.ts @@ -69,6 +69,8 @@ const messages: LocaleMessages = { hosting: 'Organizo', pastEvents: 'Eventos pasados', past: 'Pasado', + filters: 'Filtros', + clearAll: 'Limpiar todo', }, categories: { concert: 'Concierto', diff --git a/src/i18n/locales/fr.ts b/src/i18n/locales/fr.ts index fad6af0..543f715 100644 --- a/src/i18n/locales/fr.ts +++ b/src/i18n/locales/fr.ts @@ -69,6 +69,8 @@ const messages: LocaleMessages = { hosting: 'J\'organise', pastEvents: 'Événements passés', past: 'Passé', + filters: 'Filtres', + clearAll: 'Tout effacer', }, categories: { concert: 'Concert', diff --git a/src/i18n/types.ts b/src/i18n/types.ts index 895f971..3aebdf0 100644 --- a/src/i18n/types.ts +++ b/src/i18n/types.ts @@ -70,6 +70,8 @@ export interface LocaleMessages { hosting: string pastEvents: string past: string + filters: string + clearAll: string } categories: Record detail: { diff --git a/src/modules/events/views/EventsPage.vue b/src/modules/events/views/EventsPage.vue index edd50bb..b343ed5 100644 --- a/src/modules/events/views/EventsPage.vue +++ b/src/modules/events/views/EventsPage.vue @@ -1,5 +1,5 @@