2016-08-05 00:00:25 +02:00
|
|
|
const messages = [
|
|
|
|
{
|
|
|
|
id: "app.webplayer.by",
|
|
|
|
defaultMessage: "by",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Artist affiliation of a song",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.previous",
|
|
|
|
defaultMessage: "Previous",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Previous button description",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.next",
|
|
|
|
defaultMessage: "Next",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Next button description",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.volume",
|
|
|
|
defaultMessage: "Volume",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Volume button description",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.repeat",
|
|
|
|
defaultMessage: "Repeat",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Repeat button description",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.random",
|
|
|
|
defaultMessage: "Random",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Random button description",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.webplayer.playlist",
|
|
|
|
defaultMessage: "Playlist",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Playlist button description",
|
|
|
|
},
|
2016-08-12 16:30:17 +02:00
|
|
|
{
|
|
|
|
"id": "app.webplayer.unsupported",
|
|
|
|
"description": "Unsupported media type",
|
|
|
|
"defaultMessage": "Unsupported media type",
|
|
|
|
},
|
2016-09-18 21:23:28 +02:00
|
|
|
{
|
|
|
|
"id": "app.webplayer.onLoadError",
|
|
|
|
"description": "Error message in case a song could not be loaded",
|
|
|
|
"defaultMessage": "Unable to load song",
|
|
|
|
},
|
2016-08-05 00:00:25 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|