sq.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Keyboard Language
  2. // please update this section to match this language and email me with corrections!
  3. // sq = ISO 639-1 code for Albanian
  4. // ***********************
  5. jQuery.keyboard.language.sq = {
  6. language : 'Shqip (Albanian)',
  7. display : {
  8. 'a' : '\u2714:Prano (Shift+Enter)', // check mark - same action as accept
  9. 'accept' : 'Prano:Prano (Shift+Enter)',
  10. 'alt' : 'Alt:Alternativ',
  11. 'b' : '\u2190:Hap\u00ebsir\u00ebn Mbrapa', // Left arrow (same as ←)
  12. 'bksp' : 'Bksp:Hap\u00ebsir\u00ebn Mbrapa',
  13. 'c' : '\u2716:Anuloj (Arratisjes)', // big X, close - same action as cancel
  14. 'cancel' : 'Anuloj:Anuloj (Arratisjes)',
  15. 'clear' : 'C:Qart\u00eb', // clear num pad
  16. 'combo' : '\u00f6:Kombinimi',
  17. 'dec' : '.:Decimal', // decimal point for num pad (optional), change '.' to ',' for European format
  18. 'e' : '\u21b5:Shkruani', // down, then left arrow - enter symbol
  19. 'enter' : 'Shkruani:Shkruani',
  20. 'lock' : '\u21ea Bllokoj:Caps Lock', // caps lock
  21. 'next' : 'Next \u21e8',
  22. 'prev' : '\u21e6 Prev',
  23. 's' : '\u21e7:Ndryshim', // thick hollow up arrow
  24. 'shift' : 'Ndryshim:Ndryshim',
  25. 'sign' : '\u00b1:Ndryshimi Regjistrohu', // +/- sign for num pad
  26. 'space' : ' :Hap\u00ebsir\u00eb',
  27. 't' : '\u21e5:Tab', // right arrow to bar (used since this virtual keyboard works with one directional tabs)
  28. 'tab' : '\u21e5 Tab:Tab' // \u21b9 is the true tab symbol (left & right arrows)
  29. },
  30. // Message added to the key title while hovering, if the mousewheel plugin exists
  31. wheelMessage : 'P\u00ebrdorimi mousewheel p\u00ebr t\u00eb par\u00eb \u00e7el\u00ebsat e tjera',
  32. // New combos using specific accents
  33. // Not sure what to do with these accents: ˇ ˘ ˙ ° ˛ ˝
  34. comboRegex : /([`\'~\^\"ao\/])([a-z])/gim,
  35. combos : {
  36. // new combos below ( forward slash + d, forward slash + l )
  37. '/' : { d:"\u0111", D:"\u0110", l:"\u0142", L:"\u0141" } // stroke đ Đ ł Ł
  38. }
  39. };