mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-06 11:15:12 +02:00
Add more translation strings
This commit is contained in:
parent
8c6c43657c
commit
6462a50713
33 changed files with 254 additions and 20 deletions
|
@ -40,7 +40,7 @@
|
|||
</template>
|
||||
|
||||
<template v-if="!isVideo">
|
||||
<p v-if="isPodcast" class="mb-2 mt-0.5 text-gray-200 text-lg md:text-xl">by {{ podcastAuthor || 'Unknown' }}</p>
|
||||
<p v-if="isPodcast" class="mb-2 mt-0.5 text-gray-200 text-lg md:text-xl">{{ $getString('LabelByAuthor', [podcastAuthor]) }}</p>
|
||||
<p v-else-if="musicArtists.length" class="mb-2 mt-0.5 text-gray-200 text-lg md:text-xl max-w-[calc(100vw-2rem)] overflow-hidden overflow-ellipsis">
|
||||
<nuxt-link v-for="(artist, index) in musicArtists" :key="index" :to="`/artist/${$encode(artist)}`" class="hover:underline">{{ artist }}<span v-if="index < musicArtists.length - 1">, </span></nuxt-link>
|
||||
</p>
|
||||
|
@ -285,7 +285,7 @@ export default {
|
|||
return this.mediaMetadata.subtitle
|
||||
},
|
||||
podcastAuthor() {
|
||||
return this.mediaMetadata.author || ''
|
||||
return this.mediaMetadata.author || 'Unknown'
|
||||
},
|
||||
authors() {
|
||||
return this.mediaMetadata.authors || []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue