mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
fix: repeat button title issue #77
This commit is contained in:
parent
771c3e35da
commit
a89fa61162
3 changed files with 8 additions and 2 deletions
|
|
@ -76,7 +76,11 @@
|
|||
><svg-icon icon-class="list"
|
||||
/></button-icon>
|
||||
<button-icon
|
||||
:title="$t('player.repeat')"
|
||||
:title="
|
||||
player.repeat === 'one'
|
||||
? $t('player.repeatTrack')
|
||||
: $t('player.repeat')
|
||||
"
|
||||
@click.native="repeat"
|
||||
:class="{ active: player.repeat !== 'off' }"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -78,6 +78,7 @@ export default {
|
|||
previous: "Previous Song",
|
||||
next: "Next Song",
|
||||
repeat: "Repeat",
|
||||
repeatTrack: "Repeat Track",
|
||||
shuffle: "Shuffle",
|
||||
play: "Play",
|
||||
pause: "Pause",
|
||||
|
|
|
|||
|
|
@ -79,7 +79,8 @@ export default {
|
|||
like: "喜欢",
|
||||
previous: "上一首",
|
||||
next: "下一首",
|
||||
repeat: "单曲循环",
|
||||
repeat: "循环播放",
|
||||
repeatTrack: "单曲循环",
|
||||
shuffle: "随机播放",
|
||||
play: "播放",
|
||||
pause: "暂停",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue