mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
10 lines
281 B
JavaScript
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")
|
|
};
|