it.js 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Keyboard Language
  2. // please update this section to match this language and email me with corrections!
  3. // "all" is used here for example purposes, by convention it should be the ISO 639-1 code for the specified language
  4. // ***********************
  5. jQuery.keyboard.language.it = {
  6. language: 'Italiano (Italian)', // e.g. 'Русский (Russian)'
  7. display : {
  8. 'a' : '\u2714:Accetta (Shift+Enter)', // check mark - same action as accept
  9. 'accept' : 'Accetta:Accetta (Shift+Enter)',
  10. 'alt' : 'AltGr:Grafemi Alternativi',
  11. 'b' : '\u2190:Cancella', // Left arrow (same as ←)
  12. 'bksp' : 'Canc:Cancella',
  13. 'c' : '\u2716:Annulla (Esc)', // big X, close - same action as cancel
  14. 'cancel' : 'Annulla:Annulla (Esc)',
  15. 'clear' : 'C:Pulisci', // clear num pad
  16. 'combo' : '\u00f6:Tasti Combinati',
  17. 'dec' : ',:Decimale', // decimal point for num pad (optional), change '.' to ',' for European format
  18. 'e' : '\u21b5:Invio', // down, then left arrow - enter symbol
  19. 'enter' : 'Invio:Invio',
  20. 'lock' : '\u21ea Bloc:Bloc Maiusc', // caps lock
  21. 's' : '\u21e7:Maiusc', // thick hollow up arrow
  22. 'shift' : 'Maiusc:Maiusc',
  23. 'sign' : '\u00b1:Cambia Segno', // +/- sign for num pad
  24. 'space' : ' :Spazio',
  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 : 'Usa la rotella del mouse per vedere altri tasti'
  30. // uncomment, then include changes to the comboRegex here
  31. /*
  32. , comboRegex : /([`\'~\^\"ao])([a-z])/mig,
  33. */
  34. // uncomment, then include any changes to the combos option here
  35. /*
  36. , combos : {
  37. // grave
  38. '`' : { a:"\u00e0", A:"\u00c0", e:"\u00e8", E:"\u00c8", i:"\u00ec", I:"\u00cc", o:"\u00f2", O:"\u00d2",
  39. u:"\u00f9", U:"\u00d9", y:"\u1ef3", Y:"\u1ef2" },
  40. // acute & cedilla
  41. "'" : { a:"\u00e1", A:"\u00c1", e:"\u00e9", E:"\u00c9", i:"\u00ed", I:"\u00cd", o:"\u00f3", O:"\u00d3",
  42. u:"\u00fa", U:"\u00da", y:"\u00fd", Y:"\u00dd" },
  43. // umlaut/trema
  44. '"' : { a:"\u00e4", A:"\u00c4", e:"\u00eb", E:"\u00cb", i:"\u00ef", I:"\u00cf", o:"\u00f6", O:"\u00d6",
  45. u:"\u00fc", U:"\u00dc", y:"\u00ff", Y:"\u0178" },
  46. // circumflex
  47. '^' : { a:"\u00e2", A:"\u00c2", e:"\u00ea", E:"\u00ca", i:"\u00ee", I:"\u00ce", o:"\u00f4", O:"\u00d4",
  48. u:"\u00fb", U:"\u00db", y:"\u0177", Y:"\u0176" },
  49. // tilde
  50. '~' : { a:"\u00e3", A:"\u00c3", e:"\u1ebd", E:"\u1ebc", i:"\u0129", I:"\u0128", o:"\u00f5", O:"\u00d5",
  51. u:"\u0169", U:"\u0168", y:"\u1ef9", Y:"\u1ef8", n:"\u00f1", N:"\u00d1" }
  52. },
  53. // language direction
  54. rtl : false
  55. */
  56. };