Icelandic keyboard layout
#1
I made an icelandic.xml file based on Danish and English QWERTY and tested on LinuxMint 17.3, the file placed in /usr/share/kodi/system/keyboardlayouts, it works well with Kodi 17.3-Git-20170525.

Made a PR at https://github.com/xbmc/xbmc/pull/12683 (bear with me; this is my first commit through GitHub, excuse the weirdness Wink

Is there someone who can please merge the file into xbmc/system/keyboardlayouts/icelandic.xml ?

The code is as follows:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
Please use English language names instead.
Default font lacks support for all characters
-->
<keyboardlayouts>
  <layout language="Icelandic" layout="QWERTY">
    <keyboard>
      <row>1234567890ö-</row>
      <row>qwertyuiopð'</row>
      <row>asdfghjklæ+</row>
      <row>zxcvbnm,.þ</row>
    </keyboard>
    <keyboard modifiers="shift">
      <row>1234567890Ö_</row>
      <row>QWERTYUIOPÐ?</row>
      <row>ASDFGHJKLÆ*</row>
      <row>ZXCVBNM;:Þ</row>
    </keyboard>
    <keyboard modifiers="symbol,shift+symbol">
      <row>)!@#$%^&amp;*(</row>
      <row>[]{}-_=+;:</row>
      <row>áéíóú&lt;&gt;/?\|</row>
      <row>ÁÉÍÓÚ`~"</row>
    </keyboard>
  </layout>
</keyboardlayouts>
Reply

Logout Mark Read Team Forum Stats Members Help
Icelandic keyboard layout0