Add Japanese translations for exif node (#840)

This commit is contained in:
Wataru Sato
2021-10-11 06:09:03 +09:00
committed by GitHub
parent c6f37d19a8
commit a4c5697820
4 changed files with 28 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
<script type="text/html" data-template-name="exif">
<div class="form-row">
<label for="node-input-mode"><i class="fa fa-dot-circle-o"></i> Mode</label>
<label for="node-input-mode"><i class="fa fa-dot-circle-o"></i><span data-i18n="exif.label.mode"></span></label>
<select style="width:70%" id="node-input-mode">
<option value="normal">Standard node</option>
<option value="worldmap">Use with Worldmap-in node</option>
@@ -12,8 +12,8 @@
<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> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
<label for="node-input-name"><i class="fa fa-tag"></i><span data-i18n="node-red:common.label.name"></label>
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
</div>
</script>

View File

@@ -0,0 +1,7 @@
{
"exif": {
"label": {
"mode": "Mode"
}
}
}

View File

@@ -0,0 +1,11 @@
<script type="text/html" data-help-name="exif">
<p>JPEG画像内の<a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format">Exif</a></p>
<p>このノードは指定したプロパティでJPEG画像データを受け取りますExifデータが存在する場合
このノードは受け取ったデータを<code>msg.exif</code></p>
<p>このノードはExifデータに位置情報が含まれていれば<code>msg.location</code>
またworldmapードで使用するのに適したアイコン方角視野角を表す情報も含みます
選択したプロパティに入力された元のイメージバッファは変更されることなく保持されます</p>
<p>worldmap inードを使うよう設定した場合ペイロードに含まれる画像は位置情報に置き換えられるため
地図に直接フィードバックすることができます</p>
</script>

View File

@@ -0,0 +1,7 @@
{
"exif": {
"label": {
"mode": "モード"
}
}
}