ampache_react/app/locales/messagesDescriptors/common.js

40 lines
940 B
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…"
},
];
export default messages;