diff --git a/app/scenes/KeyboardShortcuts.tsx b/app/scenes/KeyboardShortcuts.tsx
index 3e158e793..645e35193 100644
--- a/app/scenes/KeyboardShortcuts.tsx
+++ b/app/scenes/KeyboardShortcuts.tsx
@@ -82,7 +82,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- {metaDisplay} + Enter
+ {metaDisplay} + {t("Enter")}
>
),
label: t("Go to link"),
@@ -244,13 +244,13 @@ function KeyboardShortcuts() {
label: t("Ordered list"),
},
{
- shortcut: Tab,
+ shortcut: {t("Tab")},
label: t("Indent list item"),
},
{
shortcut: (
<>
- ⇧ + Tab
+ ⇧ + {t("Tab")}
>
),
label: t("Outdent list item"),
@@ -274,12 +274,37 @@ function KeyboardShortcuts() {
],
},
{
- title: "Markdown",
+ title: t("Tables"),
items: [
{
shortcut: (
<>
- # Space
+ {metaDisplay} + {t("Enter")}
+ >
+ ),
+ label: t("Insert row"),
+ },
+ {
+ shortcut: {t("Tab")},
+ label: t("Next cell"),
+ },
+ {
+ shortcut: (
+ <>
+ ⇧ + {t("Tab")}
+ >
+ ),
+ label: t("Previous cell"),
+ },
+ ],
+ },
+ {
+ title: t("Markdown"),
+ items: [
+ {
+ shortcut: (
+ <>
+ # {t("Space")}
>
),
label: t("Large header"),
@@ -287,7 +312,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- ## Space
+ ## {t("Space")}
>
),
label: t("Medium header"),
@@ -295,7 +320,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- ### Space
+ ### {t("Space")}
>
),
label: t("Small header"),
@@ -303,7 +328,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- 1. Space
+ 1. {t("Space")}
>
),
label: t("Numbered list"),
@@ -311,7 +336,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- - Space
+ - {t("Space")}
>
),
label: t("Bulleted list"),
@@ -319,7 +344,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- [ ] Space
+ [ ] {t("Space")}
>
),
label: t("Todo list"),
@@ -327,7 +352,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- > Space
+ > {t("Space")}
>
),
label: t("Blockquote"),
@@ -343,7 +368,7 @@ function KeyboardShortcuts() {
{
shortcut: (
<>
- $$$ Space
+ $$$ {t("Space")}
>
),
label: t("LaTeX block"),
diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json
index 7bcf46e08..a45d1743b 100644
--- a/shared/i18n/locales/en_US/translation.json
+++ b/shared/i18n/locales/en_US/translation.json
@@ -689,6 +689,7 @@
"Toggle navigation": "Toggle navigation",
"Focus search input": "Focus search input",
"Open this guide": "Open this guide",
+ "Enter": "Enter",
"Publish document and exit": "Publish document and exit",
"Save document": "Save document",
"Cancel editing": "Cancel editing",
@@ -701,10 +702,16 @@
"Undo": "Undo",
"Redo": "Redo",
"Lists": "Lists",
+ "Tab": "Tab",
"Indent list item": "Indent list item",
"Outdent list item": "Outdent list item",
"Move list item up": "Move list item up",
"Move list item down": "Move list item down",
+ "Tables": "Tables",
+ "Insert row": "Insert row",
+ "Next cell": "Next cell",
+ "Previous cell": "Previous cell",
+ "Space": "Space",
"Numbered list": "Numbered list",
"Blockquote": "Blockquote",
"Horizontal divider": "Horizontal divider",