diff --git a/client/components/Search/AuthorList/AuthorList.vue b/client/components/Search/AuthorList/AuthorList.vue index 44378b1..2680c80 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 `${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)} найден${utils.wordEnding(this.list.totalFound, 2)}`; + return `${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)}`; } isFoundSeriesBook(seriesItem, seriesBook) { diff --git a/client/components/Search/SeriesList/SeriesList.vue b/client/components/Search/SeriesList/SeriesList.vue index 24b4b00..3a15987 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 `${this.list.totalFound} сери${utils.wordEnding(this.list.totalFound, 1)} найден${utils.wordEnding(this.list.totalFound, 4)}`; + return `${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 05a019d..84693ec 100644 --- a/client/components/Search/TitleList/TitleList.vue +++ b/client/components/Search/TitleList/TitleList.vue @@ -43,7 +43,7 @@ import _ from 'lodash'; class TitleList extends BaseList { get foundCountMessage() { - return `${this.list.totalFound} уникальн${utils.wordEnding(this.list.totalFound, 6)} назван${utils.wordEnding(this.list.totalFound, 3)} найден${utils.wordEnding(this.list.totalFound, 7)}`; + return `${this.list.totalFound} уникальн${utils.wordEnding(this.list.totalFound, 6)} назван${utils.wordEnding(this.list.totalFound, 3)}`; } async updateTableData() {