Hi,
I have a hard time making the help page internationalization from the package i'm currently working on to work.
I tried using the nodesDir directory to deploy my package, and also tried packaging my nodes using npm pack and installing it using the upload function of the palette, but whatever i do the translated help page doesn't show up, neither do the data-i18n tagged labels from the configuration page of my nodes
Here is my package.json :
{
"name": "@company/customnode",
"version": "0.0.1",
"description": "",
"scripts": {},
"author": "",
"license": "ISC",
"node-red": {
"nodes": {
"customnode": "nodes.js"
}
}
}
and the package structure :
│ nodes.html
│ nodes.js
│ package.json
│
├───icons
│ s-icon.png
│
└───locales
└───en-US
nodes.html
nodes.json
Any idea what is going wrong ?
Thanks
Edit : I'm using an embedded nodered, inside a kubernetes nodes js container, not sure if it's relevant to my issue tho