- {{ s.name }}
+ {{ t(`sections.${s.facet}`) }}
- -
-
-
-
-
-
-
-
-
-
- {{ e.subtext }}
- ,
-
-
-
-
-
+
+
+
+
{{ t("approx_results", s.estimatedTotalHits) }}
@@ -78,14 +45,14 @@ const sections = computed(() => {
de:
sections:
- buildings: Gebäude / Standorte
+ sites_buildings: Gebäude / Standorte
rooms: Räume
view_more: mehr anzeigen
approx_results: ca. {count} Ergebnisse, bitte grenze die Suche weiter ein
results: 1 Ergebnis | {count} Ergebnisse
en:
sections:
- buildings: Buildings / Sites
+ sites_buildings: Buildings / Sites
rooms: Rooms
view_more: view more
approx_results: approx. {count} results, please narrow the search further
diff --git a/webclient/pages/search.vue b/webclient/pages/search.vue
index 7cb41a2db..f7dd17c3c 100644
--- a/webclient/pages/search.vue
+++ b/webclient/pages/search.vue
@@ -24,6 +24,8 @@ const apiUrl = computed(() => {
params.append("limit_rooms", query_limit_rooms.value.toString());
params.append("limit_all", query_limit_all.value.toString());
params.append("lang", locale.value);
+ params.append("pre_highlight", "");
+ params.append("post_highlight", "");
return `${runtimeConfig.public.apiURL}/api/search?${params.toString()}`;
});