ampache_react/app/models/i18n.js
Phyks (Lucas Verney) d8a7d4f66a Rework webplayer
Full rework of webplayer. Webplayer is back to its previous working
state, and ready for further improvements.
2016-08-10 23:50:23 +02:00

13 lines
353 B
JavaScript

/**
* This file defines i18n related models.
*/
// NPM import
import Immutable from "immutable";
/** i18n record for passing errors to be localized from actions to components */
export const i18nRecord = new Immutable.Record({
id: null, /** Translation message id */
values: new Immutable.Map(), /** Values to pass to formatMessage */
});