pt.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Keyboard Language
  2. // please update this section to match this language and email me with corrections!
  3. // pt = ISO 639-1 code for Portuguese
  4. // ***********************
  5. jQuery.keyboard.language.pt = {
  6. language: 'Portugu\u00eas (Portuguese)',
  7. display : {
  8. 'a' : '\u2714:Aceitar (Shift+Enter)', // ALTERNATE accept button - unicode for check mark symbol
  9. 'accept' : 'Aceitar:Concluir (Shift+Enter)', // Accept button text
  10. 'alt' : 'AltGr:Carateres Adicionais/CTRL+ALT', // Alt button text (AltGr is for international key sets)
  11. 'b' : '\u2190:Retroceder', // ALTERNATE backspace button - unicode for left arrow. Same as ← ( ← ) - Left arrow
  12. 'bksp' : '\u2190 Bksp:Retroceder', // Backspace button text
  13. 'c' : '\u2716:Cancelar/Escape (Esc)', // ALTERNATE cancel button - unicode for big X
  14. 'cancel' : 'Cancel:Cancelar/Escape(Esc)', // Cancel button text
  15. 'clear' : 'C:Limpar', // Clear window content (used in num pad)
  16. 'combo' : '\u00f6:Acentuação Automática', // (Toggle combo (diacritic) key
  17. 'dec' : '.:Decimal', // Decimal point for num pad (optional), change '.' to ',' for European format
  18. 'e' : '\u21b5:Introduzir/Mudar de Linha', // ALTERNATE enter button - unicode for down, then left arrow (enter symbol)
  19. 'enter' : 'Enter\u21b5:Introduzir/Mudar de Linha', // Enter button text
  20. 'lock' : '\u21ea Lock:CapsLock/Maiúsculas', // Caps lock button - unicode for double lined up arrow
  21. 's' : '\u21e7:Shift/Maiúsculas', // ALTERNATE shift button - unicode for a thick up arrow
  22. 'shift' : '\u21ea Shift:Maiúsculas-Minúsculas', // Shift button text
  23. 'sign' : '\u00b1:Mudar Sinal', // Change sign (used in num pad) - unicode for a +- symbol
  24. 'space' : ' :Espaço', // Space button text
  25. 't' : '\u21e5:Tab/Tabela/Avançar', // ALTERNATE tab button - unicode for right arrow to bar (used since only one directional tabs available)
  26. 'tab' : '\u21e5 Tab:Tabela/Avançar' // Tab button text (Note: \u21b9 is the true tab symbol (left & right arrows) but not used here)
  27. },
  28. wheelMessage : 'Use a roda do rato/navegador para ver mais teclas',
  29. // Update regex for the combos above
  30. comboRegex : /([`\'~\^\"ao\u00b4])([a-z])/mig,
  31. // New combos using specific accents
  32. combos : {
  33. "\u00b4" : { a:"\u00e1", A:"\u00c1", e:"\u00e9", E:"\u00c9", i:"\u00ed", I:"\u00cd", o:"\u00f3", O:"\u00d3", u:"\u00fa", U:"\u00da", y:"\u00fd", Y:"\u00dd" }, // acute & cedilla
  34. // remove apostrophe combo
  35. "'" : {}
  36. }
  37. };