my.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Burmese Keyboard Language
  3. * please update this section to match this language and email me with corrections!
  4. * my = ISO 639-1 code for Burmese
  5. * thanks to @laminko (https://github.com/laminko);
  6. * see https://github.com/Mottie/Keyboard/pull/507
  7. * license for this file: WTFPL
  8. */
  9. jQuery.keyboard.language.my = {
  10. language: '\u1017\u1019\u102c (Burmese)', // e.g. 'Русский (Russian)'
  11. display : {
  12. 'a' : '\u2714:Accept (Shift+Enter)', // check mark - same action as accept
  13. 'accept' : 'Accept:Accept (Shift+Enter)',
  14. 'alt' : 'AltGr:Alternate Graphemes',
  15. 'b' : '\u2190:Backspace', // Left arrow (same as ←)
  16. 'bksp' : 'Bksp:Backspace',
  17. 'c' : '\u2716:Cancel (Esc)', // big X, close - same action as cancel
  18. 'cancel' : 'Cancel:Cancel (Esc)',
  19. 'clear' : 'C:\u101b\u103e\u1004\u103a\u1038\u101c\u1004\u103a\u1038\u101b\u1014\u103a', // clear num pad
  20. 'combo' : '\u00f6:Toggle Combo Keys',
  21. 'dec' : '.:\u1012\u101e\u1019', // decimal point for num pad (optional), change '.' to ',' for European format
  22. 'e' : '\u21b5:Enter', // down, then left arrow - enter symbol
  23. 'enter' : 'Enter:Enter',
  24. 'lock' : '\u21ea Lock:Caps Lock', // caps lock
  25. 's' : '\u21e7:Shift', // thick hollow up arrow
  26. 'shift' : 'Shift:Shift',
  27. 'sign' : '\u00b1:Change Sign', // +/- sign for num pad
  28. 'space' : ' :Space',
  29. 't' : '\u21e5:Tab', // right arrow to bar (used since this virtual keyboard works with one directional tabs)
  30. 'tab' : '\u21e5 Tab:Tab' // \u21b9 is the true tab symbol (left & right arrows)
  31. },
  32. // Message added to the key title while hovering, if the mousewheel plugin exists
  33. wheelMessage : '\u1021\u1001\u103c\u102c\u1038\u1001\u101c\u102f\u1010\u103a\u1019\u103b\u102c\u1038\u1000\u102d\u102f \u1019\u103c\u1004\u103a\u101b\u1005\u1031\u101b\u1014\u103a \u1019\u1031\u102c\u1000\u103a\u1005\u103a\u101d\u103e\u102e\u1038\u101c\u103a\u1000\u102d\u102f \u1021\u101e\u102f\u1036\u1038\u1015\u103c\u102f\u1015\u102b'
  34. // uncomment, then include changes to the comboRegex here
  35. /*
  36. , comboRegex : /([`\'~\^\"ao])([a-z])/mig,
  37. */
  38. // uncomment, then include any changes to the combos option here
  39. /*
  40. , combos : {
  41. // grave
  42. '`' : { a:"\u00e0", A:"\u00c0", e:"\u00e8", E:"\u00c8", i:"\u00ec", I:"\u00cc", o:"\u00f2", O:"\u00d2",
  43. u:"\u00f9", U:"\u00d9", y:"\u1ef3", Y:"\u1ef2" },
  44. // acute & cedilla
  45. "'" : { a:"\u00e1", A:"\u00c1", e:"\u00e9", E:"\u00c9", i:"\u00ed", I:"\u00cd", o:"\u00f3", O:"\u00d3",
  46. u:"\u00fa", U:"\u00da", y:"\u00fd", Y:"\u00dd" },
  47. // umlaut/trema
  48. '"' : { a:"\u00e4", A:"\u00c4", e:"\u00eb", E:"\u00cb", i:"\u00ef", I:"\u00cf", o:"\u00f6", O:"\u00d6",
  49. u:"\u00fc", U:"\u00dc", y:"\u00ff", Y:"\u0178" },
  50. // circumflex
  51. '^' : { a:"\u00e2", A:"\u00c2", e:"\u00ea", E:"\u00ca", i:"\u00ee", I:"\u00ce", o:"\u00f4", O:"\u00d4",
  52. u:"\u00fb", U:"\u00db", y:"\u0177", Y:"\u0176" },
  53. // tilde
  54. '~' : { a:"\u00e3", A:"\u00c3", e:"\u1ebd", E:"\u1ebc", i:"\u0129", I:"\u0128", o:"\u00f5", O:"\u00d5",
  55. u:"\u0169", U:"\u0168", y:"\u1ef9", Y:"\u1ef8", n:"\u00f1", N:"\u00d1" }
  56. },
  57. // language direction
  58. rtl : false
  59. */
  60. };