lv.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Keyboard Language
  2. // please update this section to match this language and email me with corrections!
  3. // lv = ISO 639-1 code for Latvian
  4. // ***********************
  5. jQuery.keyboard.language.lv = {
  6. language: 'Latvie\u0161u (Latvian)',
  7. display : {
  8. 'a' : '\u2714:Pie\u0146emt (Shift+Enter)', // check mark - same action as accept
  9. 'accept' : 'Pie\u0146emt:Pie\u0146emt (Shift+Enter)',
  10. 'alt' : 'AltGr:Altern\u0113\u0161anas tausti\u0146\u0161',
  11. 'b' : '\u2190:Atpaka\u013Catk\u0101pe', // Left arrow (same as ←)
  12. 'bksp' : 'Bksp:Atpaka\u013Catk\u0101pe',
  13. 'c' : '\u2716:Atcelt (Esc)', // big X, close - same action as cancel
  14. 'cancel' : 'Atcelt:Atcelt (Esc)',
  15. 'clear' : 'C:Clear', // clear num pad
  16. 'combo' : '\u00f6:Toggle Combo Keys',
  17. 'dec' : '.:Decimal', // decimal point for num pad (optional), change '.' to ',' for European format
  18. 'e' : '\u21b5:Enter', // down, then left arrow - enter symbol
  19. 'enter' : 'Enter:Enter',
  20. 'lock' : '\u21ea Lock:Caps Lock', // caps lock
  21. 's' : '\u21e7:Shift', // thick hollow up arrow
  22. 'shift' : 'Shift:Shift',
  23. 'sign' : '\u00b1:Change Sign', // +/- sign for num pad
  24. 'space' : ' :Space',
  25. 't' : '\u21e5:Tab', // right arrow to bar (used since this virtual keyboard works with one directional tabs)
  26. 'tab' : '\u21e5 Tab:Tab' // \u21b9 is the true tab symbol (left & right arrows)
  27. },
  28. // Message added to the key title while hovering, if the mousewheel plugin exists
  29. wheelMessage : 'Izmanto peles riten\u012Bti, lai apskat\u012Btu citus tausti\u0146us',
  30. // New combos using specific accents
  31. combos : {
  32. // duplicated from regular combos, used specific accents here instead
  33. // acute & cedilla c C é É n N ó Ó s S z Z
  34. "'" : { c:"\u0107", C:"\u0106", e:"\u00e9", E:"\u00c9", n:"\u0144", N:"\u0143", o:"\u00f3", O:"\u00d3", s:"\u015b", S:"\u015a", z:"\u017a", Z:"\u0179" },
  35. // diaeresis: ä Ä ö Ö ü Ü
  36. '\u00a8' : { a:"\u00e4", A:"\u00c4", o:"\u00f6", O:"\u00d6", u:"\u00fc", U:"\u00dc" },
  37. // degree sign å Å e E g z Z
  38. '\u00b0' : { a:"\u00e5", A:"\u00c5", e:"\u0117", E:"\u0116", g:"\u0121", z:"\u017c", Z:"\u017b" },
  39. },
  40. comboRegex : /([`\'~\^\"ao\u00a8\u00b0])([a-z])/mig
  41. };