2016-07-28 23:14:52 +02:00
|
|
|
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.artist",
|
|
|
|
description: "Artist",
|
2016-08-01 00:26:52 +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-01 00:26:52 +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",
|
|
|
|
defaultMessage: "{itemCount, plural, one {track} other {tracks}}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.loading",
|
|
|
|
description: "Loading indicator",
|
|
|
|
defaultMessage: "Loading…"
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
2016-08-02 13:07:12 +02:00
|
|
|
{
|
|
|
|
id: "app.common.play",
|
|
|
|
description: "PLay icon description",
|
|
|
|
defaultMessage: "Play"
|
|
|
|
},
|
2016-07-28 23:14:52 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|