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" >

- {{ $t('search.no_results') }} + {{ visibleStatuses.length === 0 ? $t('search.no_results') : $t('search.no_more_results') }}

diff --git a/src/i18n/en.json b/src/i18n/en.json index 67987085..11a290ca 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -448,6 +448,7 @@ "search": { "hashtags": "Hashtags", "no_results": "No results", + "no_more_results": "No more results", "load_more": "Load more results", "people": "People", "people_talking": "{count} people talking",