it.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. CKEDITOR.plugins.setLang( 'forms', 'it', {
  6. button: {
  7. title: 'Proprietà bottone',
  8. text: 'Testo (Valore)',
  9. type: 'Tipo',
  10. typeBtn: 'Bottone',
  11. typeSbm: 'Invio',
  12. typeRst: 'Annulla'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Proprietà checkbox',
  16. radioTitle: 'Proprietà radio button',
  17. value: 'Valore',
  18. selected: 'Selezionato',
  19. required: 'Richiesto'
  20. },
  21. form: {
  22. title: 'Proprietà modulo',
  23. menu: 'Proprietà modulo',
  24. action: 'Azione',
  25. method: 'Metodo',
  26. encoding: 'Codifica'
  27. },
  28. hidden: {
  29. title: 'Proprietà campo nascosto',
  30. name: 'Nome',
  31. value: 'Valore'
  32. },
  33. select: {
  34. title: 'Proprietà menu di selezione',
  35. selectInfo: 'Info',
  36. opAvail: 'Opzioni disponibili',
  37. value: 'Valore',
  38. size: 'Dimensione',
  39. lines: 'righe',
  40. chkMulti: 'Permetti selezione multipla',
  41. required: 'Richiesto',
  42. opText: 'Testo',
  43. opValue: 'Valore',
  44. btnAdd: 'Aggiungi',
  45. btnModify: 'Modifica',
  46. btnUp: 'Su',
  47. btnDown: 'Gi',
  48. btnSetValue: 'Imposta come predefinito',
  49. btnDelete: 'Rimuovi'
  50. },
  51. textarea: {
  52. title: 'Proprietà area di testo',
  53. cols: 'Colonne',
  54. rows: 'Righe'
  55. },
  56. textfield: {
  57. title: 'Proprietà campo di testo',
  58. name: 'Nome',
  59. value: 'Valore',
  60. charWidth: 'Larghezza',
  61. maxChars: 'Numero massimo di caratteri',
  62. required: 'Richiesto',
  63. type: 'Tipo',
  64. typeText: 'Testo',
  65. typePass: 'Password',
  66. typeEmail: 'Email',
  67. typeSearch: 'Cerca',
  68. typeTel: 'Numero di telefono',
  69. typeUrl: 'URL'
  70. }
  71. } );