mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 16:25:59 +00:00
69 lines
1.5 KiB
JavaScript
Executable File
69 lines
1.5 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
CKEDITOR.plugins.setLang( 'forms', 'it', {
|
|
button: {
|
|
title: 'Proprietà bottone',
|
|
text: 'Testo (Valore)',
|
|
type: 'Tipo',
|
|
typeBtn: 'Bottone',
|
|
typeSbm: 'Invio',
|
|
typeRst: 'Annulla'
|
|
},
|
|
checkboxAndRadio: {
|
|
checkboxTitle: 'Proprietà checkbox',
|
|
radioTitle: 'Proprietà radio button',
|
|
value: 'Valore',
|
|
selected: 'Selezionato'
|
|
},
|
|
form: {
|
|
title: 'Proprietà modulo',
|
|
menu: 'Proprietà modulo',
|
|
action: 'Azione',
|
|
method: 'Metodo',
|
|
encoding: 'Codifica'
|
|
},
|
|
hidden: {
|
|
title: 'Proprietà campo nascosto',
|
|
name: 'Nome',
|
|
value: 'Valore'
|
|
},
|
|
select: {
|
|
title: 'Proprietà menu di selezione',
|
|
selectInfo: 'Info',
|
|
opAvail: 'Opzioni disponibili',
|
|
value: 'Valore',
|
|
size: 'Dimensione',
|
|
lines: 'righe',
|
|
chkMulti: 'Permetti selezione multipla',
|
|
opText: 'Testo',
|
|
opValue: 'Valore',
|
|
btnAdd: 'Aggiungi',
|
|
btnModify: 'Modifica',
|
|
btnUp: 'Su',
|
|
btnDown: 'Gi',
|
|
btnSetValue: 'Imposta come predefinito',
|
|
btnDelete: 'Rimuovi'
|
|
},
|
|
textarea: {
|
|
title: 'Proprietà area di testo',
|
|
cols: 'Colonne',
|
|
rows: 'Righe'
|
|
},
|
|
textfield: {
|
|
title: 'Proprietà campo di testo',
|
|
name: 'Nome',
|
|
value: 'Valore',
|
|
charWidth: 'Larghezza',
|
|
maxChars: 'Numero massimo di caratteri',
|
|
type: 'Tipo',
|
|
typeText: 'Testo',
|
|
typePass: 'Password',
|
|
typeEmail: 'Email',
|
|
typeSearch: 'Cerca',
|
|
typeTel: 'Numero di telefono',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|