Add tooltip for event log view

This commit is contained in:
Kazuhito Yokoi
2025-08-03 09:43:56 +09:00
parent 9bf42037b5
commit a7491b0227
3 changed files with 3 additions and 0 deletions

View File

@@ -164,6 +164,7 @@
}
},
"actions": {
"open-event-log": "Open event log",
"toggle-navigator": "Toggle navigator",
"zoom-out": "Zoom out",
"zoom-reset": "Reset zoom",

View File

@@ -164,6 +164,7 @@
}
},
"actions": {
"open-event-log": "イベントログを開く",
"toggle-navigator": "ナビゲータの表示/非表示を切替",
"zoom-out": "縮小",
"zoom-reset": "拡大/縮小を初期化",

View File

@@ -51,6 +51,7 @@ RED.eventLog = (function() {
align: "right",
element: statusWidget
});
RED.popover.tooltip(statusWidget, RED._('actions.open-event-log'));
RED.statusBar.hide("red-ui-event-log-status");
},