diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 48ec5f54..4a887b51 100644 --- a/client/components/app/Appbar.vue +++ b/client/components/app/Appbar.vue @@ -45,17 +45,16 @@ -
-

{{ numLibraryItemsSelected }} Selected

+

{{ $getString('MessageItemsSelected', [numLibraryItemsSelected]) }}

- + - + - + - + - + close
diff --git a/client/components/app/BookShelfCategorized.vue b/client/components/app/BookShelfCategorized.vue index 99911c72..011b3b05 100644 --- a/client/components/app/BookShelfCategorized.vue +++ b/client/components/app/BookShelfCategorized.vue @@ -17,16 +17,16 @@
@@ -180,6 +180,7 @@ export default { shelves.push({ id: 'books', label: 'Books', + labelStringKey: 'LabelBooks', type: 'book', entities: this.results.books.map((res) => res.libraryItem) }) @@ -189,6 +190,7 @@ export default { shelves.push({ id: 'podcasts', label: 'Podcasts', + labelStringKey: 'LabelPodcasts', type: 'podcast', entities: this.results.podcasts.map((res) => res.libraryItem) }) @@ -198,6 +200,7 @@ export default { shelves.push({ id: 'series', label: 'Series', + labelStringKey: 'LabelSeries', type: 'series', entities: this.results.series.map((seriesObj) => { return { @@ -212,6 +215,7 @@ export default { shelves.push({ id: 'tags', label: 'Tags', + labelStringKey: 'LabelTags', type: 'tags', entities: this.results.tags.map((tagObj) => { return { @@ -226,6 +230,7 @@ export default { shelves.push({ id: 'authors', label: 'Authors', + labelStringKey: 'LabelAuthors', type: 'authors', entities: this.results.authors.map((a) => { return { diff --git a/client/components/app/BookShelfRow.vue b/client/components/app/BookShelfRow.vue index 29003f3d..f35d72a2 100644 --- a/client/components/app/BookShelfRow.vue +++ b/client/components/app/BookShelfRow.vue @@ -46,7 +46,7 @@
-

{{ shelf.label }}

+

{{ $strings[shelf.labelStringKey] }}

diff --git a/client/components/app/StreamContainer.vue b/client/components/app/StreamContainer.vue index 5885e0d9..c719bb27 100644 --- a/client/components/app/StreamContainer.vue +++ b/client/components/app/StreamContainer.vue @@ -15,7 +15,7 @@

{{ author.name }}

-

Unknown

+

{{ $strings.LabelUnknown }}

diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index 85ac20a5..90b31edf 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -1,164 +1,113 @@
  • - No items + {{ $strings.MessageNoItems }}
  • @@ -74,7 +74,7 @@ export default { if (this.searching) return this.currentSearch = this.textInput this.searching = true - var results = await this.$axios.$get(`/api/${this.endpoint}?q=${this.currentSearch}&limit=15`).catch((error) => { + var results = await this.$axios.$gest(`/api/${this.endpoint}?q=${this.currentSearch}&limit=15`).catch((error) => { console.error('Failed to get search results', error) return [] }) diff --git a/client/components/widgets/AudiobookData.vue b/client/components/widgets/AudiobookData.vue index b909c378..9a06faf3 100644 --- a/client/components/widgets/AudiobookData.vue +++ b/client/components/widgets/AudiobookData.vue @@ -2,21 +2,21 @@

    - Missing Parts ({{ missingParts.length }}) + {{ $strings.LabelMissingParts }} ({{ missingParts.length }})

    {{ missingPartChunks.join(', ') }}

    - Invalid Parts ({{ invalidParts.length }}) + {{ $strings.LabelInvalidParts }} ({{ invalidParts.length }})

    {{ part.filename }}: {{ part.error }}

    - +
    diff --git a/client/components/widgets/CronExpressionBuilder.vue b/client/components/widgets/CronExpressionBuilder.vue index 2f8e6a3d..2cefce24 100644 --- a/client/components/widgets/CronExpressionBuilder.vue +++ b/client/components/widgets/CronExpressionBuilder.vue @@ -12,7 +12,7 @@