|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: Internationalisation |
| 4 | +--- |
| 5 | + |
| 6 | +A node can include a message catalog in order to provide translated content in |
| 7 | +the editor and runtime. |
| 8 | + |
| 9 | +For each node identified in a module's `package.json`, a corresponding set of |
| 10 | +message catalogs and help files can be included alongside the node's `.js` file. |
| 11 | + |
| 12 | +Given a node identified as: |
| 13 | + "name": "my-node-module", |
| 14 | + "node-red": { |
| 15 | + "myNode": "myNode/my-node.js" |
| 16 | + } |
| 17 | + |
| 18 | +The following message catalogs may exist: |
| 19 | + |
| 20 | + myNode/locales/__language__/my-node.json |
| 21 | + myNode/locales/__language__/my-node.html |
| 22 | + |
| 23 | +The `locales` directory must be in the same directory as the node's `.js` file. |
| 24 | + |
| 25 | +The `__language__` part of the path identifies the language the corresponding files |
| 26 | +provide. By default, Node-RED uses `en-US`. |
| 27 | + |
| 28 | +#### Message Catalog |
| 29 | + |
| 30 | +The message catalog is a JSON file containing any pieces of text that the node |
| 31 | +may display in the editor or log in the runtime. |
| 32 | + |
| 33 | +For example: |
| 34 | + |
| 35 | + { |
| 36 | + "myNode" : { |
| 37 | + "message1": "This is my first message", |
| 38 | + "message2": "This is my second message" |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | +The catalog is loaded under a namespace specific to the node. For the node defined |
| 43 | +above, this catalog would be available under the `my-node-module/myNode` namespace. |
| 44 | + |
| 45 | +The core nodes use the `node-red` namespace. |
| 46 | + |
| 47 | +#### Help Text |
| 48 | + |
| 49 | +The help file provides translated versions of the node's help text that gets |
| 50 | +displayed within the Info sidebar tab of the editor. |
| 51 | + |
| 52 | +### Using i18n messages |
| 53 | + |
| 54 | +In both the runtime and editor, functions are provided for nodes to look-up messages |
| 55 | +from the catalogs. These are pre-scoped to the nodes own namespace so it isn't |
| 56 | +necessary to include the namespace in the message identifier. |
| 57 | + |
| 58 | +#### Runtime |
| 59 | + |
| 60 | +The runtime part of a node can access messages using the `RED._()` function. For |
| 61 | +example: |
| 62 | + |
| 63 | +{% highlight javascript %} |
| 64 | +console.log(RED._("myNode.message1")); |
| 65 | +{% endhighlight %} |
| 66 | + |
| 67 | +#### Status messages |
| 68 | + |
| 69 | +If a node sends [status messages](status.html) to the editor, it should set the |
| 70 | +`text` of the status as the message identifier. |
| 71 | + |
| 72 | +{% highlight javascript %} |
| 73 | +this.status({fill:"green",shape:"dot",text:"myNode.status.ready"}); |
| 74 | +{% endhighlight %} |
| 75 | + |
| 76 | +There are a number of commonly used status messages in the core node-red catalog. |
| 77 | +These can be used by including the namespace in the message identified: |
| 78 | + |
| 79 | +{% highlight javascript %} |
| 80 | +this.status({fill:"green",shape:"dot",text:"node-red:common.status.connected"}); |
| 81 | +{% endhighlight %} |
| 82 | + |
| 83 | +#### Editor |
| 84 | + |
| 85 | +Any HTML element provided in the node template can specify a `data-i18n` attribute |
| 86 | +to provide the message identify to use. For example: |
| 87 | + |
| 88 | +{% highlight html %} |
| 89 | +<span data-i18n="myNode.label.foo"></span> |
| 90 | +{% endhighlight %} |
| 91 | + |
| 92 | +By default, the text content of an element is replace by the message identified. |
| 93 | +It is also possible to set attributes of the element, such as the `placeholder` |
| 94 | +of an `<input>`: |
| 95 | + |
| 96 | +{% highlight javascript %} |
| 97 | +<input type="text" data-i18n="[placeholder]myNode.placeholder.foo"> |
| 98 | +{% endhighlight %} |
| 99 | + |
| 100 | +It is possible to combine these to specifiy multiple substitutions For example, |
| 101 | +to set both the title attribute and the displayed text: |
| 102 | + |
| 103 | +{% highlight javascript %} |
| 104 | +<a href="#" data-i18n="[title]myNode.label.linkTitle;myNode.label.linkText"></a> |
| 105 | +{% endhighlight %} |
| 106 | + |
| 107 | +As well as the `data-i18n` attribute for html elements, all node definition |
| 108 | +functions (for example, `oneditprepare`) can use `this._()` to retrieve messages. |
0 commit comments