mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-25 22:55:56 -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": {
|
||||
"length": "{length} Tracks",
|
||||
"shuffle": "Zufallswiedergabe"
|
||||
"shuffle": "Zufallswiedergabe",
|
||||
"track-count": "{count} Tracks"
|
||||
},
|
||||
"playlists": {
|
||||
"count": "{count} Playlisten"
|
||||
|
@ -369,7 +369,8 @@
|
||||
},
|
||||
"playlist": {
|
||||
"length": "{length} tracks",
|
||||
"shuffle": "Shuffle"
|
||||
"shuffle": "Shuffle",
|
||||
"track-count": "{count} tracks"
|
||||
},
|
||||
"playlists": {
|
||||
"count": "{count} playlists"
|
||||
|
@ -369,7 +369,8 @@
|
||||
},
|
||||
"playlist": {
|
||||
"length": "{length} pistes",
|
||||
"shuffle": "Lecture aléatoire"
|
||||
"shuffle": "Lecture aléatoire",
|
||||
"track-count": "{count} pistes"
|
||||
},
|
||||
"playlists": {
|
||||
"count": "{count} listes de lecture"
|
||||
|
@ -20,7 +20,7 @@
|
||||
<template #content>
|
||||
<p
|
||||
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" />
|
||||
<modal-dialog-playlist
|
||||
|
Loading…
Reference in New Issue
Block a user