diff --git a/components/WhereInputAdvanced.vue b/components/WhereInputAdvanced.vue index b5766490..e50a42b5 100644 --- a/components/WhereInputAdvanced.vue +++ b/components/WhereInputAdvanced.vue @@ -28,7 +28,7 @@ v-card v-combobox(ref='geocodedAddress' v-if="settings.allow_geolocation && place.name !== 'online' || (!settings.allow_event_only_online && place.name === 'online')" :prepend-icon='mdiMapSearch' @input.native='searchAddress' - :label="$t('common.address')" + :label="$t('common.search_address')" :value='place.geocodedAddress' item-text='address' persistent-hint hide-no-data clearable no-filter diff --git a/components/admin/Places.vue b/components/admin/Places.vue index 7edf1204..b201916a 100644 --- a/components/admin/Places.vue +++ b/components/admin/Places.vue @@ -30,7 +30,7 @@ v-container :disabled="!(settings.allow_geolocation && place.name !== 'online')" :prepend-icon='mdiMapSearch' @input.native='searchAddress' - :label="$t('admin.search_address')" + :label="$t('common.search_address')" :value='place.latitude && place.longitude && place.geocodedAddress' persistent-hint hide-no-data clearable no-filter :loading='loading' diff --git a/locales/en.json b/locales/en.json index 77a82f6b..4892d357 100644 --- a/locales/en.json +++ b/locales/en.json @@ -100,7 +100,8 @@ "admin_actions": "Admin actions", "recurring_event_actions": "Recurring event actions", "latitude": "Latitude", - "longitude": "Longitude" + "longitude": "Longitude", + "search_address": "Search address" }, "login": { "description": "By logging in you can publish new events.", @@ -313,8 +314,7 @@ "tilelayer_test_error": "The tilelayer service is not reachable at {service_name}", "geolocation": "Geolocation", "allow_event_only_online": "Allow event only online", - "allow_event_also_online": "Allow event also online", - "search_address": "Search address" + "allow_event_also_online": "Allow event also online" }, "auth": { "not_confirmed": "Not confirmed yet…",