Add support for rendering search corrections.

This commit is contained in:
FireMaskterK 2021-10-10 02:20:00 +01:00
parent 24c338ca49
commit 8cf3b298de
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
2 changed files with 18 additions and 6 deletions

View file

@ -21,6 +21,15 @@
<hr />
<div v-if="results && results.corrected" style="height: 7vh">
{{ $t("search.did_you_mean") }}
<i>
<router-link :to="{ name: 'SearchResults', query: { search_query: results.suggestion } }">
{{ results.suggestion }}
</router-link>
</i>
</div>
<div v-if="results" class="uk-grid-xl" uk-grid="parallax: 0">
<div
v-for="result in results.items"

View file

@ -70,19 +70,22 @@
"pinned_by": "Pinned by"
},
"preferences": {
"instance_name":"Instance Name",
"instance_locations":"Instance Locations",
"has_cdn":"Has CDN?",
"ssl_score":"SSL Score"
"instance_name": "Instance Name",
"instance_locations": "Instance Locations",
"has_cdn": "Has CDN?",
"ssl_score": "SSL Score"
},
"login": {
"username":"Username",
"password":"Password"
"username": "Username",
"password": "Password"
},
"video": {
"videos": "Videos",
"views": "views",
"watched": "Watched",
"sponsor_segments": "Sponsors Segments"
},
"search": {
"did_you_mean": "Did you mean: "
}
}