Skip to content
Snippets Groups Projects
Commit 365c54e7 authored by Rikhardur Egilsson's avatar Rikhardur Egilsson Committed by Alexandre Julliard
Browse files

Icelandic keyboard support.

parent 34d6c9f7
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,16 @@ static const char main_key_FR[MAIN_LEN][4] =
"<>"
};
/*** Icelandic keyboard layout (contributed by Rkharur Egilsson) */
static const char main_key_IS[MAIN_LEN][4] =
{
"","1!","2\"","3#","4$","5%","6&","7/{","8([","9)]","0=}","\\","-_",
"qQ@","wW","eE","rR","tT","yY","uU","iI","oO","pP","","'?~",
"aA","sS","dD","fF","gG","hH","jJ","kK","lL","","^","+*`",
"zZ","xX","cC","vV","bB","nN","mM",",;",".:","",
"<>|"
};
/*** German keyboard layout (contributed by Ulrich Weigand) */
static const char main_key_DE[MAIN_LEN][4] =
{
......@@ -235,6 +245,7 @@ static struct {
{MAKELANGID(LANG_SPANISH,SUBLANG_DEFAULT), 1252, 850, &main_key_ES},
{MAKELANGID(LANG_DUTCH,SUBLANG_DUTCH_BELGIAN), 1252, 850, &main_key_BE},
{MAKELANGID(LANG_ITALIAN,SUBLANG_DEFAULT), 1252, 850, &main_key_IT},
{MAKELANGID(LANG_ICELANDIC,SUBLANG_DEFAULT), 1252, 850, &main_key_IS},
{0} /* sentinel */
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment