2016-07-28 23:14:52 +02:00
|
|
|
const messages = [
|
|
|
|
{
|
|
|
|
id: "app.common.close",
|
|
|
|
defaultMessage: "Close",
|
2016-08-10 23:50:23 +02:00
|
|
|
description: "Close",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.cancel",
|
|
|
|
description: "Cancel",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Cancel",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.go",
|
|
|
|
description: "Go",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Go",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
2016-08-06 15:30:03 +02:00
|
|
|
{
|
|
|
|
id: "app.common.art",
|
|
|
|
description: "Art",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Art",
|
2016-08-06 15:30:03 +02:00
|
|
|
},
|
2016-07-28 23:14:52 +02:00
|
|
|
{
|
|
|
|
id: "app.common.artist",
|
|
|
|
description: "Artist",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {artist} other {artists}}",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.album",
|
|
|
|
description: "Album",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {album} other {albums}}",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
2016-08-01 00:26:52 +02:00
|
|
|
id: "app.common.track",
|
|
|
|
description: "Track",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {track} other {tracks}}",
|
2016-08-01 00:26:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.loading",
|
|
|
|
description: "Loading indicator",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Loading…",
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
2016-08-02 13:07:12 +02:00
|
|
|
{
|
|
|
|
id: "app.common.play",
|
2016-08-05 00:00:25 +02:00
|
|
|
description: "Play icon description",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Play",
|
2016-08-02 13:07:12 +02:00
|
|
|
},
|
2016-08-05 00:00:25 +02:00
|
|
|
{
|
|
|
|
id: "app.common.pause",
|
|
|
|
description: "Pause icon description",
|
2016-08-10 23:50:23 +02:00
|
|
|
defaultMessage: "Pause",
|
2016-08-05 00:00:25 +02:00
|
|
|
},
|
2016-08-11 22:01:47 +02:00
|
|
|
{
|
|
|
|
id: "app.common.playNext",
|
|
|
|
defaultMessage: "Play next",
|
|
|
|
description: "Play next icon descripton",
|
|
|
|
},
|
2016-07-28 23:14:52 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|