Commit a5a02279 authored by Jonathan Naylor's avatar Jonathan Naylor Committed by Alexandre Julliard

Added Swiss German keyboard layout.

parent 0ae30d30
......@@ -99,6 +99,16 @@ static const char main_key_DE[MAIN_LEN][4] =
"<>"
};
/*** Swiss German keyboard layout (contributed by Jonathan Naylor) */
static const char main_key_SG[MAIN_LEN][4] =
{
"","1+|","2\"@","3*#","4","5%","6&","7/","8(","9)","0=","'?","^`~",
"qQ","wW","eE","rR","tT","zZ","uU","iI","oO","pP","[","!]",
"aA","sS","dD","fF","gG","hH","jJ","kK","lL","","{","$}",
"yY","xX","cC","vV","bB","nN","mM",",;",".:","-_",
"<>\\"
};
/*** Norwegian keyboard layout (contributed by Ove Kven) */
static const char main_key_NO[MAIN_LEN][4] =
{
......@@ -158,6 +168,7 @@ static struct {
{MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_UK), 1252, 850, &main_key_UK},
{MAKELANGID(LANG_FRENCH,SUBLANG_DEFAULT), 1252, 850, &main_key_FR},
{MAKELANGID(LANG_GERMAN,SUBLANG_DEFAULT), 1252, 850, &main_key_DE},
{MAKELANGID(LANG_GERMAN,SUBLANG_GERMAN_SWISS),1252, 850, &main_key_SG},
{MAKELANGID(LANG_NORWEGIAN,SUBLANG_DEFAULT), 1252, 865, &main_key_NO},
{MAKELANGID(LANG_DANISH,SUBLANG_DEFAULT), 1252, 865, &main_key_DA},
{MAKELANGID(LANG_FRENCH,SUBLANG_FRENCH_CANADIAN),1252,863,&main_key_CF},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment