Vulcan/packages/customization-demo/lib/i18n.js

11 lines
281 B
JavaScript
Raw Normal View History

/*
Let's add an international label to the field added in custom_fields.js
*/
2016-08-08 11:18:21 +09:00
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")
};