mirror of https://github.com/jetkvm/kvm.git
Fix fr_FR special characters
This commit is contained in:
parent
1a85f4d8ad
commit
c5b80761ce
|
@ -5,8 +5,8 @@ const keyHat = { key: "BracketLeft" } // accent circonflexe (accent hat), mark ^
|
||||||
|
|
||||||
export const chars = {
|
export const chars = {
|
||||||
A: { key: "KeyQ", shift: true },
|
A: { key: "KeyQ", shift: true },
|
||||||
"Ä": { key: "KeyA", shift: true, accentKey: keyTrema },
|
"Ä": { key: "KeyQ", shift: true, accentKey: keyTrema },
|
||||||
"Â": { key: "KeyA", shift: true, accentKey: keyHat },
|
"Â": { key: "KeyQ", shift: true, accentKey: keyHat },
|
||||||
B: { key: "KeyB", shift: true },
|
B: { key: "KeyB", shift: true },
|
||||||
C: { key: "KeyC", shift: true },
|
C: { key: "KeyC", shift: true },
|
||||||
D: { key: "KeyD", shift: true },
|
D: { key: "KeyD", shift: true },
|
||||||
|
@ -41,8 +41,8 @@ export const chars = {
|
||||||
Y: { key: "KeyY", shift: true },
|
Y: { key: "KeyY", shift: true },
|
||||||
Z: { key: "KeyW", shift: true },
|
Z: { key: "KeyW", shift: true },
|
||||||
a: { key: "KeyQ" },
|
a: { key: "KeyQ" },
|
||||||
"ä": { key: "KeyA", accentKey: keyTrema },
|
"ä": { key: "KeyQ", accentKey: keyTrema },
|
||||||
"â": { key: "KeyA", accentKey: keyHat },
|
"â": { key: "KeyQ", accentKey: keyHat },
|
||||||
b: { key: "KeyB" },
|
b: { key: "KeyB" },
|
||||||
c: { key: "KeyC" },
|
c: { key: "KeyC" },
|
||||||
d: { key: "KeyD" },
|
d: { key: "KeyD" },
|
||||||
|
|
Loading…
Reference in New Issue