ampache_react/app/locales/messagesDescriptors/common.js

50 lines
1.2 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.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;