Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
40 lines
980 B
JavaScript
40 lines
980 B
JavaScript
const messages = [
|
|
{
|
|
id: "app.webplayer.by",
|
|
defaultMessage: "by",
|
|
description: "Artist affiliation of a song",
|
|
},
|
|
{
|
|
id: "app.webplayer.previous",
|
|
defaultMessage: "Previous",
|
|
description: "Previous button description",
|
|
},
|
|
{
|
|
id: "app.webplayer.next",
|
|
defaultMessage: "Next",
|
|
description: "Next button description",
|
|
},
|
|
{
|
|
id: "app.webplayer.volume",
|
|
defaultMessage: "Volume",
|
|
description: "Volume button description",
|
|
},
|
|
{
|
|
id: "app.webplayer.repeat",
|
|
defaultMessage: "Repeat",
|
|
description: "Repeat button description",
|
|
},
|
|
{
|
|
id: "app.webplayer.random",
|
|
defaultMessage: "Random",
|
|
description: "Random button description",
|
|
},
|
|
{
|
|
id: "app.webplayer.playlist",
|
|
defaultMessage: "Playlist",
|
|
description: "Playlist button description",
|
|
},
|
|
];
|
|
|
|
export default messages;
|