1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #4049 from kazuhitoyokoi/dev-addjpn

Support i18n of lock/unlock buttons in flow property UI
This commit is contained in:
Nick O'Leary 2023-02-20 16:51:55 +00:00 committed by GitHub
commit 43e4d09f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 5 deletions

View File

@ -25,7 +25,9 @@
"disable": "Disable", "disable": "Disable",
"upload": "Upload", "upload": "Upload",
"lock": "Lock", "lock": "Lock",
"unlock": "Unlock" "unlock": "Unlock",
"locked": "Locked",
"unlocked": "Unlocked"
}, },
"type": { "type": {
"string": "string", "string": "string",

View File

@ -25,7 +25,9 @@
"disable": "無効", "disable": "無効",
"upload": "アップロード", "upload": "アップロード",
"lock": "固定", "lock": "固定",
"unlock": "固定を解除" "unlock": "固定を解除",
"locked": "固定済み",
"unlocked": "固定なし"
}, },
"type": { "type": {
"string": "文字列", "string": "文字列",
@ -1376,6 +1378,9 @@
"copy-item-url": "要素のURLをコピー", "copy-item-url": "要素のURLをコピー",
"copy-item-edit-url": "要素の編集URLをコピー", "copy-item-edit-url": "要素の編集URLをコピー",
"move-flow-to-start": "フローを先頭に移動", "move-flow-to-start": "フローを先頭に移動",
"move-flow-to-end": "フローを末尾に移動" "move-flow-to-end": "フローを末尾に移動",
"lock-flow": "フローを固定",
"unlock-flow": "フローの固定を解除",
"show-node-help": "ノードのヘルプを表示"
} }
} }

View File

@ -1922,9 +1922,9 @@ RED.editor = (function() {
workspace.locked = false; workspace.locked = false;
} }
$('<input id="node-input-locked" type="checkbox">').prop("checked",workspace.locked).appendTo(trayFooterRight).toggleButton({ $('<input id="node-input-locked" type="checkbox">').prop("checked",workspace.locked).appendTo(trayFooterRight).toggleButton({
enabledLabel: 'Unlocked', enabledLabel: RED._("common.label.unlocked"),
enabledIcon: "fa-unlock-alt", enabledIcon: "fa-unlock-alt",
disabledLabel: 'Locked', disabledLabel: RED._("common.label.locked"),
disabledIcon: "fa-lock", disabledIcon: "fa-lock",
invertState: true invertState: true
}) })