bulgarian.js 1.7 KB

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