mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-03 20:43:31 +08:00
fix: update locale
This commit is contained in:
parent
60989a2572
commit
463aaf7698
@ -1,5 +1,8 @@
|
||||
export default {
|
||||
play: "PLAY",
|
||||
common: {
|
||||
play: "PLAY",
|
||||
songs: "Songs",
|
||||
},
|
||||
nav: {
|
||||
home: "Home",
|
||||
explore: "Explore",
|
||||
@ -97,9 +100,6 @@ export default {
|
||||
noResult: "No Results",
|
||||
searchFor: "Search for",
|
||||
},
|
||||
common: {
|
||||
songs: "Songs",
|
||||
},
|
||||
settings: {
|
||||
settings: "Settings",
|
||||
logout: "LOGOUT",
|
||||
@ -118,4 +118,14 @@ export default {
|
||||
dark: "Dark",
|
||||
},
|
||||
},
|
||||
contextMenu: {
|
||||
play: "Play",
|
||||
playNext: "Play Next",
|
||||
saveToMyLikedSongs: "Save to my Liked Songs",
|
||||
removeFromMyLikedSongs: "Remove from my Liked Songs",
|
||||
},
|
||||
toast: {
|
||||
savedToMyLikedSongs: "Saved to my Liked Songs",
|
||||
removedFromMyLikedSongs: "Removed from my Liked Songs",
|
||||
},
|
||||
};
|
||||
|
@ -1,5 +1,8 @@
|
||||
export default {
|
||||
play: "播放",
|
||||
common: {
|
||||
play: "播放",
|
||||
songs: "首歌",
|
||||
},
|
||||
nav: {
|
||||
home: "首页",
|
||||
explore: "发现",
|
||||
@ -15,8 +18,8 @@ export default {
|
||||
},
|
||||
library: {
|
||||
sLibrary: "的音乐库",
|
||||
likedSongs: "我喜欢的歌",
|
||||
sLikedSongs: "喜欢的歌",
|
||||
likedSongs: "我喜欢的音乐",
|
||||
sLikedSongs: "喜欢的音乐",
|
||||
},
|
||||
explore: {
|
||||
explore: "发现",
|
||||
@ -99,9 +102,6 @@ export default {
|
||||
noResult: "暂无结果",
|
||||
searchFor: "搜索",
|
||||
},
|
||||
common: {
|
||||
songs: "首歌",
|
||||
},
|
||||
settings: {
|
||||
settings: "设置",
|
||||
logout: "登出",
|
||||
@ -120,4 +120,14 @@ export default {
|
||||
dark: "深色",
|
||||
},
|
||||
},
|
||||
contextMenu: {
|
||||
play: "播放",
|
||||
playNext: "下一首播放",
|
||||
saveToMyLikedSongs: "添加到我喜欢的音乐",
|
||||
removeFromMyLikedSongs: "从喜欢的音乐中移除",
|
||||
},
|
||||
toast: {
|
||||
savedToMyLikedSongs: "已添加到我喜欢的音乐",
|
||||
removedFromMyLikedSongs: "已从喜欢的音乐中移除",
|
||||
},
|
||||
};
|
||||
|
@ -41,7 +41,7 @@
|
||||
@click.native="playAlbumByID(album.id)"
|
||||
:iconClass="`play`"
|
||||
>
|
||||
{{ $t("play") }}
|
||||
{{ $t("common.play") }}
|
||||
</ButtonTwoTone>
|
||||
<ButtonTwoTone
|
||||
v-if="accountLogin"
|
||||
|
@ -22,7 +22,7 @@
|
||||
</div>
|
||||
<div class="buttons">
|
||||
<ButtonTwoTone @click.native="playPopularSongs()" :iconClass="`play`">
|
||||
{{ $t("play") }}
|
||||
{{ $t("common.play") }}
|
||||
</ButtonTwoTone>
|
||||
<ButtonTwoTone @click.native="followArtist" color="grey">
|
||||
<span v-if="artist.followed">{{ $t("artist.following") }}</span>
|
||||
|
@ -49,7 +49,7 @@
|
||||
</div>
|
||||
<div class="buttons">
|
||||
<ButtonTwoTone @click.native="playPlaylistByID()" :iconClass="`play`">
|
||||
{{ $t("play") }}
|
||||
{{ $t("common.play") }}
|
||||
</ButtonTwoTone>
|
||||
<ButtonTwoTone
|
||||
v-if="accountLogin && playlist.creator.userId !== data.user.userId"
|
||||
@ -84,7 +84,7 @@
|
||||
iconClass="play"
|
||||
color="grey"
|
||||
>
|
||||
{{ $t("play") }}
|
||||
{{ $t("common.play") }}
|
||||
</ButtonTwoTone>
|
||||
<ButtonTwoTone
|
||||
v-if="accountLogin && playlist.creator.userId !== data.user.userId"
|
||||
|
Loading…
x
Reference in New Issue
Block a user