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-07-29 00:50:08 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {Artist} other {Artists}}"
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.album",
|
|
|
|
description: "Album",
|
2016-07-29 00:50:08 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {Album} other {Albums}}"
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "app.common.song",
|
|
|
|
description: "Song",
|
2016-07-29 00:50:08 +02:00
|
|
|
defaultMessage: "{itemCount, plural, one {Song} other {Songs}}"
|
2016-07-28 23:14:52 +02:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default messages;
|