diff --git a/package.json b/package.json index c40fa32ff..071c8e392 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "react-i18next": "^15.1.3", "react-is": "18.3.1", "spatial-navigation-polyfill": "github:Stremio/spatial-navigation#64871b1422466f5f45d24ebc8bbd315b2ebab6a6", - "stremio-translations": "github:Stremio/stremio-translations#176c69f3bdede824f37979a046ee27cef355affc", + "stremio-translations": "github:Stremio/stremio-translations#d9cd2fb88268b365b14101452665de698f9c15e9", "url": "0.11.4", "use-long-press": "^3.2.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b9107a42..d4ef23583 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -90,8 +90,8 @@ importers: specifier: github:Stremio/spatial-navigation#64871b1422466f5f45d24ebc8bbd315b2ebab6a6 version: https://codeload.github.com/Stremio/spatial-navigation/tar.gz/64871b1422466f5f45d24ebc8bbd315b2ebab6a6 stremio-translations: - specifier: github:Stremio/stremio-translations#176c69f3bdede824f37979a046ee27cef355affc - version: https://codeload.github.com/Stremio/stremio-translations/tar.gz/176c69f3bdede824f37979a046ee27cef355affc + specifier: github:Stremio/stremio-translations#d9cd2fb88268b365b14101452665de698f9c15e9 + version: https://codeload.github.com/Stremio/stremio-translations/tar.gz/d9cd2fb88268b365b14101452665de698f9c15e9 url: specifier: 0.11.4 version: 0.11.4 @@ -4133,8 +4133,8 @@ packages: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} - stremio-translations@https://codeload.github.com/Stremio/stremio-translations/tar.gz/176c69f3bdede824f37979a046ee27cef355affc: - resolution: {tarball: https://codeload.github.com/Stremio/stremio-translations/tar.gz/176c69f3bdede824f37979a046ee27cef355affc} + stremio-translations@https://codeload.github.com/Stremio/stremio-translations/tar.gz/d9cd2fb88268b365b14101452665de698f9c15e9: + resolution: {tarball: https://codeload.github.com/Stremio/stremio-translations/tar.gz/d9cd2fb88268b365b14101452665de698f9c15e9} version: 1.52.0 string-length@4.0.2: @@ -9378,7 +9378,7 @@ snapshots: es-errors: 1.3.0 internal-slot: 1.1.0 - stremio-translations@https://codeload.github.com/Stremio/stremio-translations/tar.gz/176c69f3bdede824f37979a046ee27cef355affc: {} + stremio-translations@https://codeload.github.com/Stremio/stremio-translations/tar.gz/d9cd2fb88268b365b14101452665de698f9c15e9: {} string-length@4.0.2: dependencies: diff --git a/src/common/Shortcuts/shortcuts.json b/src/common/Shortcuts/shortcuts.json index 536b9f7f7..4ff42666d 100644 --- a/src/common/Shortcuts/shortcuts.json +++ b/src/common/Shortcuts/shortcuts.json @@ -21,7 +21,7 @@ { "name": "exit", "label": "SETTINGS_SHORTCUT_EXIT_BACK", - "combos": [["Escape"]] + "combos": [["Backspace"]] }, { "name": "shortcuts", diff --git a/src/components/ShortcutsGroup/Combos/Keys/Keys.tsx b/src/components/ShortcutsGroup/Combos/Keys/Keys.tsx index 71ec610da..7646d2c00 100644 --- a/src/components/ShortcutsGroup/Combos/Keys/Keys.tsx +++ b/src/components/ShortcutsGroup/Combos/Keys/Keys.tsx @@ -14,6 +14,7 @@ const Keys = ({ keys }: Props) => { 'Space': t('SETTINGS_SHORTCUT_SPACE'), 'Ctrl': t('SETTINGS_SHORTCUT_CTRL'), 'Escape': t('SETTINGS_SHORTCUT_ESC'), + 'Backspace': t('SETTINGS_SHORTCUT_BACKSPACE'), 'ArrowUp': '↑', 'ArrowDown': '↓', 'ArrowLeft': '←',