diff --git a/client/components/Search/AuthorList/AuthorList.vue b/client/components/Search/AuthorList/AuthorList.vue index 0ca25cc..4fbe4ba 100644 --- a/client/components/Search/AuthorList/AuthorList.vue +++ b/client/components/Search/AuthorList/AuthorList.vue @@ -152,7 +152,7 @@ class AuthorList extends BaseList { } get foundCountMessage() { - return `Найден${utils.wordEnding(this.list.totalFound, 2)} ${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)}`; + return `Всего найден${utils.wordEnding(this.list.totalFound, 2)} ${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)}`; } isFoundSeriesBook(seriesItem, seriesBook) { diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index e877e75..e0b6217 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -94,16 +94,6 @@ {{ `${(extendedParams ? 'Скрыть' : 'Показать')} дополнительные критерии поиска` }} - -
-
-
- {{ foundCountMessage }} -
-
- Ничего не найдено -
-
-
- +
+
+ +
+ +
+
+ {{ foundCountMessage }} +
+
- +
+

+ +

+
-
+
-
diff --git a/client/components/Search/SeriesList/SeriesList.vue b/client/components/Search/SeriesList/SeriesList.vue index 5427a03..c91c09d 100644 --- a/client/components/Search/SeriesList/SeriesList.vue +++ b/client/components/Search/SeriesList/SeriesList.vue @@ -117,7 +117,7 @@ import _ from 'lodash'; class SeriesList extends BaseList { get foundCountMessage() { - return `Найден${utils.wordEnding(this.list.totalFound, 4)} ${this.list.totalFound} сери${utils.wordEnding(this.list.totalFound, 1)}`; + return `Всего найден${utils.wordEnding(this.list.totalFound, 4)} ${this.list.totalFound} сери${utils.wordEnding(this.list.totalFound, 1)}`; } isFoundSeriesBook(seriesItem, seriesBook) { diff --git a/client/components/Search/TitleList/TitleList.vue b/client/components/Search/TitleList/TitleList.vue index 537354f..13d887d 100644 --- a/client/components/Search/TitleList/TitleList.vue +++ b/client/components/Search/TitleList/TitleList.vue @@ -8,14 +8,14 @@