mirror of https://github.com/jetkvm/kvm.git
Merge pull request #1 from IDisposable/paste-text-keyboard-layouts
Change the locale names to their native language
This commit is contained in:
commit
22566e0450
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Czech";
|
export const name = "Čeština";
|
||||||
|
|
||||||
const keyTrema = { key: "Backslash" } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "Backslash" } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Swiss German";
|
export const name = "Schwiizerdütsch";
|
||||||
|
|
||||||
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyAcute = { key: "Minus", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Minus", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "German";
|
export const name = "Deutsch";
|
||||||
|
|
||||||
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
const keyHat = { key: "Backquote" } // accent circonflexe (accent hat), mark ^ placed above the letter
|
const keyHat = { key: "Backquote" } // accent circonflexe (accent hat), mark ^ placed above the letter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Spanish";
|
export const name = "Español";
|
||||||
|
|
||||||
const keyTrema = { key: "Quote", shift: true } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "Quote", shift: true } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyAcute = { key: "Quote" } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Quote" } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
import { chars as chars_de_CH } from "./de_CH"
|
import { chars as chars_de_CH } from "./de_CH"
|
||||||
|
|
||||||
export const name = "Swiss French";
|
export const name = "Français de Suisse";
|
||||||
|
|
||||||
export const chars = {
|
export const chars = {
|
||||||
...chars_de_CH,
|
...chars_de_CH,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "French";
|
export const name = "Français";
|
||||||
|
|
||||||
const keyTrema = { key: "BracketLeft", shift: true } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "BracketLeft", shift: true } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyHat = { key: "BracketLeft" } // accent circonflexe (accent hat), mark ^ placed above the letter
|
const keyHat = { key: "BracketLeft" } // accent circonflexe (accent hat), mark ^ placed above the letter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Italian";
|
export const name = "Italiano";
|
||||||
|
|
||||||
export const chars = {
|
export const chars = {
|
||||||
A: { key: "KeyA", shift: true },
|
A: { key: "KeyA", shift: true },
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Norwegian";
|
export const name = "Norsk bokmål";
|
||||||
|
|
||||||
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyAcute = { key: "Equal", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Equal", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { KeyCombo } from "../keyboardLayouts"
|
import { KeyCombo } from "../keyboardLayouts"
|
||||||
|
|
||||||
export const name = "Swedish";
|
export const name = "Svenska";
|
||||||
|
|
||||||
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
|
||||||
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
|
||||||
|
|
Loading…
Reference in New Issue