danish.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Danish keyboard layouts
  2. * contains layout: 'danish-qwerty'
  3. *
  4. * To use:
  5. * Point to this js file into your page header: <script src="layouts/danish.js" type="text/javascript"></script>
  6. * Initialize the keyboard using: $('input').keyboard({ layout: 'danish-qwerty' });
  7. *
  8. * license for this file: WTFPL
  9. */
  10. /* qwerty by Torben Junker Kjær (jordbo.dk) - */
  11. jQuery.keyboard.layouts['danish-qwerty'] = {
  12. 'name' : 'danish-qwerty',
  13. 'lang' : ['da'],
  14. 'normal' : [
  15. "\u00a7 1 2 3 4 5 6 7 8 9 0 + \u0301 {b}",
  16. "{tab} q w e r t y u i o p \u00e5 \u00a8",
  17. "a s d f g h j k l \u00e6 \u00f8 ' {enter}",
  18. "{shift} < z x c v b n m , . - {shift}",
  19. "{accept} {alt} {space} {alt} {cancel}"
  20. ],
  21. 'shift' : [
  22. '\u00bd ! " # \u00a4 % & / ( ) = ? \u0300 {b}',
  23. "{tab} Q W E R T Y U I O P \u00c5 ^",
  24. "A S D F G H J K L \u00c6 \u00d8 * {enter}",
  25. "{shift} > Z X C V B N M ; : _ {shift}",
  26. "{accept} {alt} {space} {alt} {cancel}"
  27. ],
  28. 'alt' : [
  29. '\u00a7 1 @ \u00a3 $ 5 6 { [ ] } + | {b}',
  30. '{tab} q w € r t y u i o p \u00e5 ~',
  31. "a s d f g h j k l \u00e6 \u00f8 ' {enter}",
  32. '{shift} \\ z x c v b n \u00b5 , . - {shift}',
  33. '{accept} {alt} {space} {alt} {cancel}'
  34. ]
  35. };