Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactor key
  • Loading branch information
nardog committed May 30, 2024
commit 5a065f50a06d606aa0a7e379a0c1ffa33c11ec08
2 changes: 1 addition & 1 deletion src/ext/keybinding_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function showKeyboardShortcuts(editor) {
}, '');

el.id = 'kbshortcutmenu';
el.innerHTML = '<h1>' + nls('kbshortcutmenu', 'Keyboard Shortcuts') + '</h1>'
el.innerHTML = '<h1>' + nls('keybinding-menu.head', 'Keyboard Shortcuts') + '</h1>'
+ commands + '</div>';
overlayPage(editor, el);
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/default_english_messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ var defaultEnglishMessages = {
"options.show-folded-annotations": "Annotations for folded lines",
"options.enable-keyboard-accessibility": "Keyboard Accessibility Mode",
"options.tooltip-follows-mouse": "Gutter tooltip follows mouse",
"kbshortcutmenu": "Keyboard Shortcuts"
"keybinding-menu.head": "Keyboard Shortcuts"
}

exports.defaultEnglishMessages = defaultEnglishMessages;