Phyks (Lucas Verney)
40f6223bd0
* 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
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
const messages = [
|
|
{
|
|
id: "app.grid.goToArtistPage",
|
|
defaultMessage: "Go to artist page",
|
|
description: "Artist thumbnail link title"
|
|
},
|
|
{
|
|
id: "app.grid.goToAlbumPage",
|
|
defaultMessage: "Go to album page",
|
|
description: "Album thumbnail link title"
|
|
}
|
|
];
|
|
|
|
export default messages;
|