Skip to content

Commit 978bef4

Browse files
committed
Change the locale names to their native language
German->Deutsch et. al.
1 parent 48240ee commit 978bef4

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

ui/src/keyboardLayouts/cs_CZ.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Czech";
3+
export const name = "Čeština";
44

55
const keyTrema = { key: "Backslash" } // tréma (umlaut), two dots placed above a vowel
66
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter

ui/src/keyboardLayouts/de_CH.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Swiss German";
3+
export const name = "Schwiizerdütsch";
44

55
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
66
const keyAcute = { key: "Minus", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter

ui/src/keyboardLayouts/de_DE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "German";
3+
export const name = "Deutsch";
44

55
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter
66
const keyHat = { key: "Backquote" } // accent circonflexe (accent hat), mark ^ placed above the letter

ui/src/keyboardLayouts/es_ES.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Spanish";
3+
export const name = "Español";
44

55
const keyTrema = { key: "Quote", shift: true } // tréma (umlaut), two dots placed above a vowel
66
const keyAcute = { key: "Quote" } // accent aigu (acute accent), mark ´ placed above the letter

ui/src/keyboardLayouts/fr_CH.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { KeyCombo } from "../keyboardLayouts"
22
import { chars as chars_de_CH } from "./de_CH"
33

4-
export const name = "Swiss French";
4+
export const name = "Français de Suisse";
55

66
export const chars = {
77
...chars_de_CH,

ui/src/keyboardLayouts/fr_FR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "French";
3+
export const name = "Français";
44

55
const keyTrema = { key: "BracketLeft", shift: true } // tréma (umlaut), two dots placed above a vowel
66
const keyHat = { key: "BracketLeft" } // accent circonflexe (accent hat), mark ^ placed above the letter

ui/src/keyboardLayouts/it_IT.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Italian";
3+
export const name = "Italiano";
44

55
export const chars = {
66
A: { key: "KeyA", shift: true },

ui/src/keyboardLayouts/nb_NO.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Norwegian";
3+
export const name = "Norsk bokmål";
44

55
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
66
const keyAcute = { key: "Equal", altRight: true } // accent aigu (acute accent), mark ´ placed above the letter

ui/src/keyboardLayouts/sv_SE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { KeyCombo } from "../keyboardLayouts"
22

3-
export const name = "Swedish";
3+
export const name = "Svenska";
44

55
const keyTrema = { key: "BracketRight" } // tréma (umlaut), two dots placed above a vowel
66
const keyAcute = { key: "Equal" } // accent aigu (acute accent), mark ´ placed above the letter

0 commit comments

Comments
 (0)