Skip to content

Commit

Permalink
add extra ja translation for template node
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Conway-Jones committed Apr 1, 2020
1 parent 50a8a68 commit 443f68f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/dashboard.appcache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
# Time: Mon Mar 30 2020 22:59:42 GMT+0100 (British Summer Time)
# Time: Wed Apr 01 2020 16:03:01 GMT+0100 (British Summer Time)

CACHE:
i18n.js
Expand Down
3 changes: 2 additions & 1 deletion nodes/locales/ja/ui_template.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"pass-through" : "入力メッセージをそのまま渡す",
"store-state" : "出力メッセージを状態として保存",
"template" : "HTMLコード",
"expand": "展開する"
"expand": "展開する",
"resend": "更新時に最後の値を再度読み込む"
}
}
}
2 changes: 1 addition & 1 deletion nodes/ui_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
oneditresize: function(size) {
var rows = $("#dialog-form>div:not(.node-text-editor-row)");
var height = $("#dialog-form").height();
for (var i=0; i<rows.size()-1; i++) {
for (var i=0; i<rows.size(); i++) {
height = height - $(rows[i]).outerHeight(true);
}
if ($('#node-input-templateScope').val() === "global") { height += 232; }
Expand Down

0 comments on commit 443f68f

Please sign in to comment.