-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Description
On globalizejs/globalize#481, @sompylasar has raised a different use case that requires a custom function to return Globalize messages. So, the goal of this issue make the messages option to either accept the string (as documented above) or a function that passes locale as its first argument. For example:
new globalizePlugin({
production: options.production, // true: production, false: development
developmentLocale: "en", // locale to be used for development.
supportedLocales: [ "en", "es", "zh" ], // locales that should be built support for.
messages: function( locale ) {
// Messages in the JSON format for requested locale.
return getMessagesFor( locale );
}
output: "globalize-compiled-[locale].[hash].js" // build output.
});Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels