ampache_react/app/locales/messagesDescriptors/common.js
Phyks (Lucas Verney) 40f6223bd0 Use Immutable, enhance i18n, pagination in the store
* Keep track of pagination in the store
* Use Immutable in reducers
* Finish i18n, every available strings are now translated in English and French
* Add a loading indicator
* Premises of API error handling
* Better locale negotiation
2016-08-01 00:30:44 +02:00

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;