This commit is contained in:
Shiny Nematoda 2022-10-17 17:13:37 +00:00
commit fcebca44fb
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
9 changed files with 269 additions and 70 deletions

View file

@ -216,7 +216,7 @@ onMounted(async () => {
<input
type="text"
placeholder="Playlist name..."
:placeholder="t('playlist.name') + '...'"
class="textbox"
v-model="text" />
</template>
@ -284,7 +284,7 @@ onMounted(async () => {
<template v-for="i in list">
<AlbumItem
:name="i.name"
:author="'Songs • ' + i.urls.length"
:author="t('title.songs') + ' • ' + i.urls.length"
:grad="useRand()"
@open-album="Play(i.name)" />
</template>

View file

@ -91,7 +91,7 @@ async function Like() {
<Modal
n="2"
:display="showme.pl"
title="Select Playlist to Add"
:title="t('playlist.select')"
@show="
e => {
showme.pl = e;