diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/search/search.vue | 2 | ||||
| -rw-r--r-- | src/i18n/en.json | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/search/search.vue b/src/components/search/search.vue index 4373a94b..6fc6a0de 100644 --- a/src/components/search/search.vue +++ b/src/components/search/search.vue @@ -89,7 +89,7 @@ class="search-result-heading" > <h4> - {{ $t('search.no_results') }} + {{ visibleStatuses.length === 0 ? $t('search.no_results') : $t('search.no_more_results') }} </h4> </div> </div> diff --git a/src/i18n/en.json b/src/i18n/en.json index 6026b33e..167a3e0f 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -828,6 +828,7 @@ "person_talking": "{count} person talking", "people_talking": "{count} people talking", "no_results": "No results", + "no_more_results": "No more results", "load_more": "Load more results" }, "password_reset": { |
