mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-14 00:05:03 -05:00
Fix for #1606
This commit is contained in:
parent
4df644eb3a
commit
0d095b3037
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -369,7 +369,8 @@
|
|||||||
},
|
},
|
||||||
"playlist": {
|
"playlist": {
|
||||||
"length": "{length} Tracks",
|
"length": "{length} Tracks",
|
||||||
"shuffle": "Zufallswiedergabe"
|
"shuffle": "Zufallswiedergabe",
|
||||||
|
"track-count": "{count} Tracks"
|
||||||
},
|
},
|
||||||
"playlists": {
|
"playlists": {
|
||||||
"count": "{count} Playlisten"
|
"count": "{count} Playlisten"
|
||||||
|
@ -369,7 +369,8 @@
|
|||||||
},
|
},
|
||||||
"playlist": {
|
"playlist": {
|
||||||
"length": "{length} tracks",
|
"length": "{length} tracks",
|
||||||
"shuffle": "Shuffle"
|
"shuffle": "Shuffle",
|
||||||
|
"track-count": "{count} tracks"
|
||||||
},
|
},
|
||||||
"playlists": {
|
"playlists": {
|
||||||
"count": "{count} playlists"
|
"count": "{count} playlists"
|
||||||
|
@ -369,7 +369,8 @@
|
|||||||
},
|
},
|
||||||
"playlist": {
|
"playlist": {
|
||||||
"length": "{length} pistes",
|
"length": "{length} pistes",
|
||||||
"shuffle": "Lecture aléatoire"
|
"shuffle": "Lecture aléatoire",
|
||||||
|
"track-count": "{count} pistes"
|
||||||
},
|
},
|
||||||
"playlists": {
|
"playlists": {
|
||||||
"count": "{count} listes de lecture"
|
"count": "{count} listes de lecture"
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<template #content>
|
<template #content>
|
||||||
<p
|
<p
|
||||||
class="heading has-text-centered-mobile"
|
class="heading has-text-centered-mobile"
|
||||||
v-text="$t('page.playlist.count', { count: tracks.count })"
|
v-text="$t('page.playlist.track-count', { count: tracks.count })"
|
||||||
/>
|
/>
|
||||||
<list-tracks :tracks="tracks" :uris="uris" />
|
<list-tracks :tracks="tracks" :uris="uris" />
|
||||||
<modal-dialog-playlist
|
<modal-dialog-playlist
|
||||||
|
Loading…
Reference in New Issue
Block a user