Vulcan/packages/my-custom-package/lib/intl.js
2016-08-08 11:18:21 +09:00

10 lines
281 B
JavaScript

/*
Let's add an international label to the field added in custom_fields.js
*/
import Telescope from 'meteor/nova:lib';
Telescope.strings.en = {
...Telescope.strings.en, // get all the string translated
"posts.color": "Color" // add a new one (collection.field: "Label")
};