parent
ecee495a18
commit
1657935ba1
@ -1,12 +1,17 @@
|
|||||||
import Vue from 'vue';
|
import Vue from "vue";
|
||||||
import VueI18n from 'vue-i18n'
|
import VueI18n from "vue-i18n";
|
||||||
import messages from './messages';
|
|
||||||
|
|
||||||
Vue.use(VueI18n)
|
import en from "./lang/en.js";
|
||||||
|
import zhCN from "./lang/zh-CN.js";
|
||||||
|
|
||||||
|
Vue.use(VueI18n);
|
||||||
|
|
||||||
const i18n = new VueI18n({
|
const i18n = new VueI18n({
|
||||||
locale: 'zh-CN',
|
locale: "en",
|
||||||
messages
|
messages: {
|
||||||
|
en,
|
||||||
|
"zh-CN": zhCN
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default i18n;
|
export default i18n;
|
@ -0,0 +1,83 @@
|
|||||||
|
export default {
|
||||||
|
play: "PLAY",
|
||||||
|
nav: {
|
||||||
|
home: "Home",
|
||||||
|
explore: "Explore",
|
||||||
|
library: "Library",
|
||||||
|
search: "Search"
|
||||||
|
},
|
||||||
|
footer: {
|
||||||
|
settings: "Settings"
|
||||||
|
},
|
||||||
|
home: {
|
||||||
|
recommendPlaylist: "Recommended Playlists",
|
||||||
|
recommendArtist: "Recommended Artists",
|
||||||
|
newAlbum: "Latest Albums",
|
||||||
|
seeMore: "SEE MORE",
|
||||||
|
charts: "Charts"
|
||||||
|
},
|
||||||
|
library: {
|
||||||
|
sLibrary: "'s Library",
|
||||||
|
likedSongs: "Liked Songs",
|
||||||
|
sLikedSongs: "'s LikedSongs"
|
||||||
|
},
|
||||||
|
explore: {
|
||||||
|
explore: "Explore",
|
||||||
|
loadMore: "Load More"
|
||||||
|
},
|
||||||
|
artist: {
|
||||||
|
latestRelease: "Latest Releases",
|
||||||
|
popularSongs: "Popular Songs",
|
||||||
|
showMore: "SHOW MORE",
|
||||||
|
showLess: "SHOW LESS",
|
||||||
|
EPSingle: "EPs & Singles",
|
||||||
|
albums: "Albums"
|
||||||
|
},
|
||||||
|
album: {
|
||||||
|
released: "Released"
|
||||||
|
},
|
||||||
|
playlist: {
|
||||||
|
playlist: "Playlists",
|
||||||
|
updatedAt: "Updated at"
|
||||||
|
},
|
||||||
|
login: {
|
||||||
|
accessToAll: "Access to all data",
|
||||||
|
loginText: "Login in Netease",
|
||||||
|
search: "Search account",
|
||||||
|
readonly: "Only access to public data",
|
||||||
|
usernameLogin: "Username Login",
|
||||||
|
searchHolder: "Your account username",
|
||||||
|
enterTip: "Press 'enter' to search",
|
||||||
|
choose: "Choose your account",
|
||||||
|
confirm: "Confirm",
|
||||||
|
countryCode: "Country code",
|
||||||
|
phone: "Phone",
|
||||||
|
email: "Email address",
|
||||||
|
password: "Password",
|
||||||
|
login: "Login",
|
||||||
|
loginWithEmail: "Login with Email",
|
||||||
|
loginWithPhone: "Login with Phone",
|
||||||
|
// TODO
|
||||||
|
agreement: `YesPlayMusic promises not to save any of your account information to the cloud.
|
||||||
|
Your password will be MD5 encrypted locally and then transmitted to NetEase Cloud API.
|
||||||
|
YesPlayMusic is not the official website of NetEase Cloud Music, please consider carefully before entering account information. You can also go to <a href="https://github.com/qier222/YesPlayMusic">YesPlayMusic's GitHub repository</a> to build and use the self-hosted NetEase Cloud Music API.`
|
||||||
|
},
|
||||||
|
mv: {
|
||||||
|
moreVideo: "More Videos"
|
||||||
|
},
|
||||||
|
next: {
|
||||||
|
nowPlaying: "Now Playing",
|
||||||
|
nextUp: "Next Up"
|
||||||
|
},
|
||||||
|
player: {
|
||||||
|
like: "Like",
|
||||||
|
previous: "Previous Song",
|
||||||
|
next: "Next Song",
|
||||||
|
repeat: "Repeat",
|
||||||
|
shuffle: "Shuffle",
|
||||||
|
play: "Play",
|
||||||
|
pause: "Pause",
|
||||||
|
mute: "Mute",
|
||||||
|
nextUp: "Next Up"
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in new issue