mongolian.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Mongolian keyboard layouts
  2. * contains layout: 'mongolian'
  3. *
  4. * To use:
  5. * Point to this js file into your page header: <script src="layouts/mongolian.js" type="text/javascript"></script>
  6. * Initialize the keyboard using: $('input').keyboard({ layout: 'mongolian' });
  7. *
  8. * license for this file: WTFPL, unless the source layout site has a problem with me using them as a reference
  9. */
  10. jQuery.keyboard.layouts['mongolian'] = {
  11. 'name' : 'mongolian',
  12. 'lang' : ['mn'],
  13. 'normal' : [
  14. '= \u2116 - " \u20AE : . _ , % ? \u0435 \u0449 {bksp}',
  15. '{tab} \u0444 \u0446 \u0443 \u0436 \u044d \u043D \u0433 \u0448 \u04af \u0437 \u043A \u044A \\',
  16. '\u0439 \u044B \u0431 \u04e9 \u0430 \u0445 \u0440 \u043e \u043B \u0434 \u043f {enter}',
  17. '{shift} \u044F \u0447 \u0451 \u0441 \u043c \u0438 \u0442 \u044c \u0432 \u044e {shift}',
  18. '{accept} {alt} {space} {alt} {cancel}'
  19. ],
  20. 'shift' : [
  21. '+ 1 2 3 4 5 6 7 8 9 0 \u0415 \u0429 {bksp}',
  22. '{tab} \u0424 \u0426 \u0423 \u0416 \u042d \u041D \u0413 \u0428 \u04AE \u0417 \u041a \u042A |',
  23. '\u0419 \u042B \u0411 \u04e8 \u0410 \u0425 \u0420 \u041e \u041b \u0414 \u041f {enter}',
  24. '{shift} \u042F \u0427 \u0401 \u0421 \u041c \u0418 \u0422 \u042c \u0412 \u042e {shift}',
  25. '{accept} {alt} {space} {alt} {cancel}'
  26. ],
  27. 'alt' : [
  28. "` 1 2 3 4 5 6 7 8 9 0 - = {bksp}",
  29. "{tab} q w e r t y u i o p [ ] \\",
  30. "a s d f g h j k l ; ' {enter}",
  31. "{shift} z x c v b n m , . / {shift}",
  32. "{accept} {alt} {space} {alt} {cancel}"
  33. ],
  34. 'alt-shift' : [
  35. "~ ! @ # $ % ^ & * ( ) _ + {bksp}",
  36. "{tab} Q W E R T Y U I O P { } |",
  37. 'A S D F G H J K L : " {enter}',
  38. "{shift} Z X C V B N M < > ? {shift}",
  39. "{accept} {alt} {space} {alt} {cancel}"
  40. ]
  41. };