mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
739b3e595c
* [ja] Translate 70-base64 node. * Fix PR review #591 "Buffer" -> "バッファ". We have used Japanese katakana words of "buffer" in http-request and file-out nodes. * Fix PR review #591 "Base64" -> "base64" * Fix PR review #591 "Base64から文字列へデコード" -> "Base64から文字列へ変換"
47 lines
1.8 KiB
HTML
47 lines
1.8 KiB
HTML
|
|
<script type="text/x-red" data-template-name="base64">
|
|
<div class="form-row">
|
|
<label for="node-input-action"><i class="fa fa-dot-circle-o"></i> <span data-i18n="base64.label.action"></span></label>
|
|
<select style="width:70%" id="node-input-action">
|
|
<option value="" data-i18n="base64.convert.buffer"></option>
|
|
<option value="str" data-i18n="base64.convert.encode"></option>
|
|
<option value="b64" data-i18n="base64.convert.decode"></option>
|
|
</select>
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
|
|
<input type="text" id="node-input-property" style="width:70%;"/>
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
RED.nodes.registerType('base64',{
|
|
category: 'function',
|
|
color:"#DEBD5C",
|
|
defaults: {
|
|
name: {value:""},
|
|
action: {value:""},
|
|
property: {value:"payload",required:true}
|
|
},
|
|
inputs:1,
|
|
outputs:1,
|
|
icon: "parser-base64.png",
|
|
label: function() {
|
|
return this.name||"base64";
|
|
},
|
|
labelStyle: function() {
|
|
return this.name?"node_label_italic":"";
|
|
},
|
|
oneditprepare: function() {
|
|
if (this.property === undefined) {
|
|
$("#node-input-property").val("payload");
|
|
}
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
|
}
|
|
});
|
|
</script>
|