From f3e7d8ceb19babfd3c15bdfb8f30f626f082770b Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 31 Jan 2024 08:54:49 +0100 Subject: [PATCH] refs #5834 feat: i18n --- src/components/common/VnLocation.vue | 6 ++++-- src/i18n/en/index.js | 1 + src/i18n/es/index.js | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/common/VnLocation.vue b/src/components/common/VnLocation.vue index 0b30faaa7..17dd3d37b 100644 --- a/src/components/common/VnLocation.vue +++ b/src/components/common/VnLocation.vue @@ -94,7 +94,7 @@ function handleFetch( data) { :options="postcodesOptions" :label="t('Location')" :option-label="showLabel" - :placeholder="t('Search by postalCode, town, province or country')" + :placeholder="t('search_by_postalcode')" @input-value="locationFilter" :default-filter="false" :input-debounce="300" @@ -129,7 +129,9 @@ function handleFetch( data) { +en: + search_by_postalcode: Search by postalcode, town, province or country es: Location: Ubicación - Search by postalcode, town, province or country: Buscar por código postal, ciudad o país + search_by_postalcode: Buscar por código postal, ciudad o país diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js index 2eb445680..7e3e7fe3b 100644 --- a/src/i18n/en/index.js +++ b/src/i18n/en/index.js @@ -1087,5 +1087,6 @@ export default { VnLv: { copyText: '{copyValue} has been copied to the clipboard', }, + iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789', }, }; diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js index 2a9bcd615..82a24893b 100644 --- a/src/i18n/es/index.js +++ b/src/i18n/es/index.js @@ -1086,5 +1086,6 @@ export default { VnLv: { copyText: '{copyValue} se ha copiado al portapepeles', }, + iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789', }, };