Backspace translation

This commit is contained in:
Adrien MALINGREY 2023-06-14 18:14:45 +02:00
parent b358611c28
commit ba313cbbd7

6
app.js
View File

@ -50,14 +50,16 @@ const KEY_NAMES = {
["ArrowUp"]: "↑", ["ArrowUp"]: "↑",
["ArrowDown"]: "↓", ["ArrowDown"]: "↓",
[" "]: "Espace", [" "]: "Espace",
["Escape"]: "Échap", ["Escape"]: "Échap.",
["Backspace"]: "Ret. arrière",
["Enter"]: "Entrée", ["Enter"]: "Entrée",
["←"]: "ArrowLeft", ["←"]: "ArrowLeft",
["→"]: "ArrowRight", ["→"]: "ArrowRight",
["↑"]: "ArrowUp", ["↑"]: "ArrowUp",
["↓"]: "ArrowDown", ["↓"]: "ArrowDown",
["Espace"]: " ", ["Espace"]: " ",
["Échap"]: "Escape", ["Échap."]: "Escape",
["Ret. arrière"]: "Backspace",
["Entrée"]: "Enter", ["Entrée"]: "Enter",
} }