Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
const messages = [
|
|
{
|
|
id: "app.common.close",
|
|
defaultMessage: "Close",
|
|
description: "Close",
|
|
},
|
|
{
|
|
id: "app.common.cancel",
|
|
description: "Cancel",
|
|
defaultMessage: "Cancel",
|
|
},
|
|
{
|
|
id: "app.common.go",
|
|
description: "Go",
|
|
defaultMessage: "Go",
|
|
},
|
|
{
|
|
id: "app.common.art",
|
|
description: "Art",
|
|
defaultMessage: "Art",
|
|
},
|
|
{
|
|
id: "app.common.artist",
|
|
description: "Artist",
|
|
defaultMessage: "{itemCount, plural, one {artist} other {artists}}",
|
|
},
|
|
{
|
|
id: "app.common.album",
|
|
description: "Album",
|
|
defaultMessage: "{itemCount, plural, one {album} other {albums}}",
|
|
},
|
|
{
|
|
id: "app.common.track",
|
|
description: "Track",
|
|
defaultMessage: "{itemCount, plural, one {track} other {tracks}}",
|
|
},
|
|
{
|
|
id: "app.common.loading",
|
|
description: "Loading indicator",
|
|
defaultMessage: "Loading…",
|
|
},
|
|
{
|
|
id: "app.common.play",
|
|
description: "Play icon description",
|
|
defaultMessage: "Play",
|
|
},
|
|
{
|
|
id: "app.common.pause",
|
|
description: "Pause icon description",
|
|
defaultMessage: "Pause",
|
|
},
|
|
];
|
|
|
|
export default messages;
|