mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-03 23:30:09 -05:00
[web] Simplify multiline texts in translations
This commit is contained in:
parent
461d5497cf
commit
aa14e0ea4d
@ -7,7 +7,7 @@
|
|||||||
:max="max"
|
:max="max"
|
||||||
type="range"
|
type="range"
|
||||||
:style="{
|
:style="{
|
||||||
'--ratio': ratio,
|
'--ratio': ratio
|
||||||
}"
|
}"
|
||||||
@input="$emit('update:value', $event.target.valueAsNumber)"
|
@input="$emit('update:value', $event.target.valueAsNumber)"
|
||||||
/>
|
/>
|
||||||
|
@ -56,11 +56,14 @@
|
|||||||
@delete="remove_podcast"
|
@delete="remove_podcast"
|
||||||
>
|
>
|
||||||
<template #modal-content>
|
<template #modal-content>
|
||||||
<p v-text="$t('list.albums.info-1')" />
|
<i18n-t keypath="list.albums.info" tag="p" scope="global">
|
||||||
<p class="is-size-7">
|
<template #separator>
|
||||||
(<span v-text="$t('list.albums.info-2')" />
|
<br />
|
||||||
<b v-text="rss_playlist_to_remove.name" />)
|
</template>
|
||||||
</p>
|
<template #name>
|
||||||
|
<b v-text="rss_playlist_to_remove.name" />
|
||||||
|
</template>
|
||||||
|
</i18n-t>
|
||||||
</template>
|
</template>
|
||||||
</modal-dialog-action>
|
</modal-dialog-action>
|
||||||
</teleport>
|
</teleport>
|
||||||
|
@ -9,11 +9,7 @@
|
|||||||
<mdicon class="icon" name="cancel" size="16" />
|
<mdicon class="icon" name="cancel" size="16" />
|
||||||
<span class="is-size-7" v-text="close_action" />
|
<span class="is-size-7" v-text="close_action" />
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a v-if="delete_action" class="card-footer-item" @click="$emit('delete')">
|
||||||
v-if="delete_action"
|
|
||||||
class="card-footer-item has-background-danger"
|
|
||||||
@click="$emit('delete')"
|
|
||||||
>
|
|
||||||
<mdicon class="icon" name="delete" size="16" />
|
<mdicon class="icon" name="delete" size="16" />
|
||||||
<span class="is-size-7" v-text="delete_action" />
|
<span class="is-size-7" v-text="delete_action" />
|
||||||
</a>
|
</a>
|
||||||
|
@ -195,8 +195,7 @@
|
|||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"albums": {
|
"albums": {
|
||||||
"info-1": "Diesen Podcast dauerhaft aus der Bibliothek löschen?",
|
"info": "Diesen Podcast dauerhaft aus der Bibliothek löschen?{separator}(Damit wird auch die RSS-Playliste {name} gelöscht)",
|
||||||
"info-2": "Dies wir auch RSS-Playlisten löschen ",
|
|
||||||
"remove": "Entfernen",
|
"remove": "Entfernen",
|
||||||
"remove-podcast": "Entferne podcast"
|
"remove-podcast": "Entferne podcast"
|
||||||
},
|
},
|
||||||
@ -389,8 +388,7 @@
|
|||||||
"cancel": "Abbrechen",
|
"cancel": "Abbrechen",
|
||||||
"play": "Spielen",
|
"play": "Spielen",
|
||||||
"remove": "Entfernen",
|
"remove": "Entfernen",
|
||||||
"remove-info-1": "Diesen Podcast wirklich dauerhaft aus der Bibliothek löschen?",
|
"remove-info": "Diesen Podcast dauerhaft aus der Bibliothek löschen?{separator}(Damit wird auch die RSS-Playliste {name} gelöscht)",
|
||||||
"remove-info-2": "Damit wird auch die RSS-Playliste gelöscht. ",
|
|
||||||
"remove-podcast": "Entferne podcast",
|
"remove-podcast": "Entferne podcast",
|
||||||
"track-count": "{count} Track|{count} Track|{count} Tracks"
|
"track-count": "{count} Track|{count} Track|{count} Tracks"
|
||||||
},
|
},
|
||||||
@ -477,9 +475,7 @@
|
|||||||
"recently-added-page-info": "Beschränkte die Zahl der Alben",
|
"recently-added-page-info": "Beschränkte die Zahl der Alben",
|
||||||
"recently-added-page": "Kürzlich hinzugefügt-Seite",
|
"recently-added-page": "Kürzlich hinzugefügt-Seite",
|
||||||
"search": "Suche",
|
"search": "Suche",
|
||||||
"show-composer-genres-info-1": "Komma getrennte Liste der Genres, für die der Komponist angezeigt werden soll.",
|
"show-composer-genres-help": "Komma getrennte Liste der Genres, für die der Komponist angezeigt werden soll.{0}Leer lassen, um den Komponisten immer anzuzeigen.{0}Der Genre-Tag des aktuellen Tracks wird abgeglichen als Teil-String des Genre-Tags. Z.B. \"classical, soundtrack\" wird den Komponisten beim Genre-Tag \"Contemporary Classical\" anzeigen",
|
||||||
"show-composer-genres-info-2": "Leer lassen, um den Komponisten immer anzuzeigen.",
|
|
||||||
"show-composer-genres-info-3": "Der Genre-Tag des aktuellen Tracks wird abgeglichen als Teil-String des Genre-Tags. Z.B. \"classical, soundtrack\" wird den Komponisten beim Genre-Tag \"Contemporary Classical\" anzeigen",
|
|
||||||
"show-composer-genres": "Zeige den Komponisten für die aufgelisteten Genres an",
|
"show-composer-genres": "Zeige den Komponisten für die aufgelisteten Genres an",
|
||||||
"show-composer-info": "Wenn aktiviert, wird der Komponist angezeigt.",
|
"show-composer-info": "Wenn aktiviert, wird der Komponist angezeigt.",
|
||||||
"show-composer": "Komponisten anzeigen",
|
"show-composer": "Komponisten anzeigen",
|
||||||
|
@ -195,8 +195,7 @@
|
|||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"albums": {
|
"albums": {
|
||||||
"info-1": "Permanently remove this podcast from your library?",
|
"info": "Permanently remove this podcast from your library?{separator}(This will also remove the RSS playlist {name})",
|
||||||
"info-2": "This will also remove the RSS playlist ",
|
|
||||||
"remove": "Remove",
|
"remove": "Remove",
|
||||||
"remove-podcast": "Remove podcast"
|
"remove-podcast": "Remove podcast"
|
||||||
},
|
},
|
||||||
@ -389,8 +388,7 @@
|
|||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"play": "Play",
|
"play": "Play",
|
||||||
"remove": "Remove",
|
"remove": "Remove",
|
||||||
"remove-info-1": "Permanently remove this podcast from your library?",
|
"remove-info": "Permanently remove this podcast from your library?{separator}(This will also remove the RSS playlist {name})",
|
||||||
"remove-info-2": "This will also remove the RSS playlist ",
|
|
||||||
"remove-podcast": "Remove podcast",
|
"remove-podcast": "Remove podcast",
|
||||||
"track-count": "{count} track|{count} track|{count} tracks"
|
"track-count": "{count} track|{count} track|{count} tracks"
|
||||||
},
|
},
|
||||||
@ -477,9 +475,7 @@
|
|||||||
"recently-added-page-info": "Limit the number of albums displayed",
|
"recently-added-page-info": "Limit the number of albums displayed",
|
||||||
"recently-added-page": "Recently added page",
|
"recently-added-page": "Recently added page",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"show-composer-genres-info-1": "Comma-separated list of genres, for which the composer must be displayed",
|
"show-composer-genres-help": "Comma-separated list of genres, for which the composer must be displayed.{0}Leave empty to always show the composer.{0}The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"classical, soundtrack\" will show the composer for tracks with a genre tag of \"Contemporary Classical\"",
|
||||||
"show-composer-genres-info-2": "Leave empty to always show the composer",
|
|
||||||
"show-composer-genres-info-3": "The genre tag of the current track is matched by checking, if one of the defined genres are included. For example setting to \"classical, soundtrack\" will show the composer for tracks with a genre tag of \"Contemporary Classical\"",
|
|
||||||
"show-composer-genres": "Show composer only for listed genres",
|
"show-composer-genres": "Show composer only for listed genres",
|
||||||
"show-composer-info": "If enabled, the composer of the current playing track is displayed",
|
"show-composer-info": "If enabled, the composer of the current playing track is displayed",
|
||||||
"show-composer": "Show composer",
|
"show-composer": "Show composer",
|
||||||
|
@ -195,8 +195,7 @@
|
|||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"albums": {
|
"albums": {
|
||||||
"info-1": "Supprimer définitivement ce podcast de votre bibliothèque ?",
|
"info": "Supprimer définitivement ce podcast de votre bibliothèque ?{separator}(Cela supprimera également la liste de lecture RSS {name})",
|
||||||
"info-2": "Cela supprimera également la liste de lecture RSS ",
|
|
||||||
"remove": "Supprimer",
|
"remove": "Supprimer",
|
||||||
"remove-podcast": "Supprimer le podcast"
|
"remove-podcast": "Supprimer le podcast"
|
||||||
},
|
},
|
||||||
@ -389,8 +388,7 @@
|
|||||||
"cancel": "Annuler",
|
"cancel": "Annuler",
|
||||||
"play": "Lire",
|
"play": "Lire",
|
||||||
"remove": "Supprimer",
|
"remove": "Supprimer",
|
||||||
"remove-info-1": "Supprimer ce podcast de manière permanente de la bibliothèque ?",
|
"remove-info": "Supprimer ce podcast de manière permanente de la bibliothèque ?{separator}(Cela supprimera également la liste de lecture RSS {name})",
|
||||||
"remove-info-2": "Cela supprimera également la liste de lecture RSS ",
|
|
||||||
"remove-podcast": "Supprimer le podcast",
|
"remove-podcast": "Supprimer le podcast",
|
||||||
"track-count": "{count} piste|{count} piste|{count} pistes"
|
"track-count": "{count} piste|{count} piste|{count} pistes"
|
||||||
},
|
},
|
||||||
@ -477,9 +475,7 @@
|
|||||||
"recently-added-page-info": "Limiter le nombre d’albums affichés",
|
"recently-added-page-info": "Limiter le nombre d’albums affichés",
|
||||||
"recently-added-page": "Page « Ajouts récents »",
|
"recently-added-page": "Page « Ajouts récents »",
|
||||||
"search": "Recherche",
|
"search": "Recherche",
|
||||||
"show-composer-genres-info-1": "Liste de genres séparés par des virgules pour lesquels le compositeur doit être affiché.",
|
"show-composer-genres-help": "Liste de genres séparés par des virgules pour lesquels le compositeur doit être affiché.{0}Laissez vide pour toujours afficher le compositeur.{0}L’étiquette de genre de la piste actuelle est comparée en vérifiant si l’un des genres définis est inclus. Par exemple, en choisissant \"classique, bande sonore\", le compositeur pour les pistes dont l’étiquette de genre est \"classique contemporain\" sera affiché.",
|
||||||
"show-composer-genres-info-2": "Laissez vide pour toujours afficher le compositeur.",
|
|
||||||
"show-composer-genres-info-3": "L’étiquette de genre de la piste actuelle est comparée en vérifiant si l’un des genres définis est inclus. Par exemple, en choisissant \"classique, bande sonore\", le compositeur pour les pistes dont l’étiquette de genre est \"classique contemporain\" sera affiché.",
|
|
||||||
"show-composer-genres": "Afficher le compositeur uniquement pour les genres listés",
|
"show-composer-genres": "Afficher le compositeur uniquement pour les genres listés",
|
||||||
"show-composer-info": "Si actif, le compositeur de la piste en cours de lecture est affiché",
|
"show-composer-info": "Si actif, le compositeur de la piste en cours de lecture est affiché",
|
||||||
"show-composer": "Afficher le compositeur",
|
"show-composer": "Afficher le compositeur",
|
||||||
|
@ -195,8 +195,7 @@
|
|||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"albums": {
|
"albums": {
|
||||||
"info-1": "从资料库中永久移除该播客吗?",
|
"info": "从资料库中永久移除该播客吗?{separator}(这也将移除RSS播放列表 {name})",
|
||||||
"info-2": "这也将移除RSS播放列表 ",
|
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"remove-podcast": "移除播客"
|
"remove-podcast": "移除播客"
|
||||||
},
|
},
|
||||||
@ -389,8 +388,7 @@
|
|||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"play": "播放",
|
"play": "播放",
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"remove-info-1": "从资料库中永久移除该播客?",
|
"remove-info": "从资料库中永久移除该播客?{separator}(这也将移除该播客RSS列表 {name})",
|
||||||
"remove-info-2": "这也将移除该播客RSS列表 ",
|
|
||||||
"remove-podcast": "移除播客",
|
"remove-podcast": "移除播客",
|
||||||
"track-count": "{count} 只曲目|{count} 只曲目"
|
"track-count": "{count} 只曲目|{count} 只曲目"
|
||||||
},
|
},
|
||||||
@ -477,9 +475,7 @@
|
|||||||
"recently-added-page-info": "限制显示的相册数量",
|
"recently-added-page-info": "限制显示的相册数量",
|
||||||
"recently-added-page": "“最近添加”页面",
|
"recently-added-page": "“最近添加”页面",
|
||||||
"search": "搜索",
|
"search": "搜索",
|
||||||
"show-composer-genres-info-1": "以逗号分隔的流派列表,必须显示作曲家所属的流派",
|
"show-composer-genres-help": "以逗号分隔的流派列表,必须显示作曲家所属的流派{0}留空以始终显示作曲家{0}通过检查是否包含定义的流派之一来匹配当前曲目的流派标签。例如,设置为“古典、原声带”将显示流派标签为“当代古典”的曲目的作曲家",
|
||||||
"show-composer-genres-info-2": "留空以始终显示作曲家",
|
|
||||||
"show-composer-genres-info-3": "通过检查是否包含定义的流派之一来匹配当前曲目的流派标签。例如,设置为“古典、原声带”将显示流派标签为“当代古典”的曲目的作曲家",
|
|
||||||
"show-composer-genres": "仅显示列出的流派的作曲家",
|
"show-composer-genres": "仅显示列出的流派的作曲家",
|
||||||
"show-composer-info": "如果启用,则会显示当前播放曲目的作曲家",
|
"show-composer-info": "如果启用,则会显示当前播放曲目的作曲家",
|
||||||
"show-composer": "显示作曲家",
|
"show-composer": "显示作曲家",
|
||||||
|
@ -195,8 +195,7 @@
|
|||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"albums": {
|
"albums": {
|
||||||
"info-1": "從資料庫中永久移除該Podcast嗎?",
|
"info": "從資料庫中永久移除該Podcast嗎?{separator}(這也將移除RSS播放列表 {name})",
|
||||||
"info-2": "這也將移除RSS播放列表 ",
|
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"remove-podcast": "移除Podcast"
|
"remove-podcast": "移除Podcast"
|
||||||
},
|
},
|
||||||
@ -389,8 +388,7 @@
|
|||||||
"cancel": "取消",
|
"cancel": "取消",
|
||||||
"play": "播放",
|
"play": "播放",
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"remove-info-1": "從資料庫中永久移除該Podcast?",
|
"remove-info": "從資料庫中永久移除該Podcast?{separator}(這也將移除該PodcastRSS列表 {name})",
|
||||||
"remove-info-2": "這也將移除該PodcastRSS列表 ",
|
|
||||||
"remove-podcast": "移除Podcast",
|
"remove-podcast": "移除Podcast",
|
||||||
"track-count": "{count} 首曲目|{count} 首曲目"
|
"track-count": "{count} 首曲目|{count} 首曲目"
|
||||||
},
|
},
|
||||||
@ -477,9 +475,7 @@
|
|||||||
"recently-added-page-info": "限制顯示的相簿數量",
|
"recently-added-page-info": "限制顯示的相簿數量",
|
||||||
"recently-added-page": "“最近新增”頁面",
|
"recently-added-page": "“最近新增”頁面",
|
||||||
"search": "搜尋",
|
"search": "搜尋",
|
||||||
"show-composer-genres-info-1": "以逗號分隔的音樂類型清單,將顯示作曲家的音樂類型",
|
"show-composer-genres-help": "以逗號分隔的音樂類型清單,將顯示作曲家的音樂類型{0}留空以始終顯示作曲家{0}通過檢查是否包含定義的音樂類型之一來匹配當前曲目的音樂類型標籤。例如,設定為“古典、原聲帶”將顯示音樂類型標籤為“當代古典”的曲目的作曲家",
|
||||||
"show-composer-genres-info-2": "留空以始終顯示作曲家",
|
|
||||||
"show-composer-genres-info-3": "通過檢查是否包含定義的音樂類型之一來匹配當前曲目的音樂類型標籤。例如,設定為“古典、原聲帶”將顯示音樂類型標籤為“當代古典”的曲目的作曲家",
|
|
||||||
"show-composer-genres": "僅顯示列出的音樂類型的作曲家",
|
"show-composer-genres": "僅顯示列出的音樂類型的作曲家",
|
||||||
"show-composer-info": "如果啟用,則會顯示目前播放曲目的作曲家",
|
"show-composer-info": "如果啟用,則會顯示目前播放曲目的作曲家",
|
||||||
"show-composer": "顯示作曲家",
|
"show-composer": "顯示作曲家",
|
||||||
|
@ -55,11 +55,14 @@
|
|||||||
@delete="remove_podcast"
|
@delete="remove_podcast"
|
||||||
>
|
>
|
||||||
<template #modal-content>
|
<template #modal-content>
|
||||||
<p v-text="$t('page.podcast.remove-info-1')" />
|
<i18n-t keypath="page.podcast.remove-info" tag="p" scope="global">
|
||||||
<p class="is-size-7">
|
<template #separator>
|
||||||
(<span v-text="$t('page.podcast.remove-info-2')" />
|
<br />
|
||||||
<b v-text="rss_playlist_to_remove.name" />)
|
</template>
|
||||||
</p>
|
<template #name>
|
||||||
|
<b v-text="rss_playlist_to_remove.name" />
|
||||||
|
</template>
|
||||||
|
</i18n-t>
|
||||||
</template>
|
</template>
|
||||||
</modal-dialog-action>
|
</modal-dialog-action>
|
||||||
</template>
|
</template>
|
||||||
|
@ -120,18 +120,14 @@
|
|||||||
<span v-text="$t('page.settings.general.show-composer-genres')" />
|
<span v-text="$t('page.settings.general.show-composer-genres')" />
|
||||||
</template>
|
</template>
|
||||||
<template #help>
|
<template #help>
|
||||||
<p
|
<i18n-t
|
||||||
|
keypath="page.settings.general.show-composer-genres-help"
|
||||||
|
tag="p"
|
||||||
class="help"
|
class="help"
|
||||||
v-text="$t('page.settings.general.show-composer-genres-info-1')"
|
scope="global"
|
||||||
/>
|
>
|
||||||
<p
|
<br />
|
||||||
class="help"
|
</i18n-t>
|
||||||
v-text="$t('page.settings.general.show-composer-genres-info-2')"
|
|
||||||
/>
|
|
||||||
<p
|
|
||||||
class="help"
|
|
||||||
v-text="$t('page.settings.general.show-composer-genres-info-3')"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
</control-setting-text-field>
|
</control-setting-text-field>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user