96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
export default {
|
|
lang: 'it',
|
|
label: {
|
|
clear: 'Pulisci',
|
|
ok: 'OK',
|
|
cancel: 'Annulla',
|
|
close: 'Chiudi',
|
|
set: 'Imposta',
|
|
select: 'Seleziona',
|
|
reset: 'Ripristina',
|
|
remove: 'Rimuovi',
|
|
update: 'Aggiorna',
|
|
create: 'Crea',
|
|
search: 'Cerca',
|
|
filter: 'Filtra',
|
|
refresh: 'Aggiorna'
|
|
},
|
|
date: {
|
|
days: 'Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato'.split('_'),
|
|
daysShort: 'Dom_Lun_Mar_Mer_Gio_Ven_Sab'.split('_'),
|
|
months: 'Gennaio_Febbraio_Marzo_Aprile_Maggio_Giugno_Luglio_Agosto_Settembre_Ottobre_Novembre_Dicembre'.split('_'),
|
|
monthsShort: 'Gen_Feb_Mar_Apr_Mag_Giu_Lug_Ago_Set_Ott_Nov_Dic'.split('_'),
|
|
firstDayOfWeek: 1, // 0-6, 0 - Sunday, 1 Monday, ...
|
|
format24h: true
|
|
},
|
|
pullToRefresh: {
|
|
pull: 'Trascina in basso per aggiornare',
|
|
release: 'Rilascia per aggiornare',
|
|
refresh: 'Aggiornamento...'
|
|
},
|
|
table: {
|
|
noData: 'Nessun dato disponibile',
|
|
noResults: 'Nessuna corrispondenza trovata',
|
|
loading: 'Caricamento...',
|
|
selectedRecords: function (rows) {
|
|
return rows > 0
|
|
? rows + ' ' + (rows === 1 ? 'riga selezionata' : 'righe selezionate') + '.'
|
|
: 'Nessuna riga selezionata.'
|
|
},
|
|
recordsPerPage: 'Righe per pagina:',
|
|
allRows: 'Tutte',
|
|
pagination: function (start, end, total) {
|
|
return start + '-' + end + ' di ' + total
|
|
},
|
|
columns: 'Colonne'
|
|
},
|
|
editor: {
|
|
url: 'URL',
|
|
bold: 'Grassetto',
|
|
italic: 'Corsivo',
|
|
strikethrough: 'Barrato',
|
|
underline: 'Sottolineato',
|
|
unorderedList: 'Lista non ordinata',
|
|
orderedList: 'Lista ordinata',
|
|
subscript: 'Pedice',
|
|
superscript: 'Apice',
|
|
hyperlink: 'Hyperlink',
|
|
toggleFullscreen: 'Fullscreen on/off',
|
|
quote: 'Citazione',
|
|
left: 'A sinistra',
|
|
center: 'Centra',
|
|
right: 'A destra',
|
|
justify: 'Giustificato',
|
|
print: 'Stampa',
|
|
outdent: 'Diminuisci identazione',
|
|
indent: 'Aumenta identazione',
|
|
removeFormat: 'Rimuovi formattazione',
|
|
formatting: 'Formattazione',
|
|
fontSize: 'Dimensione del font',
|
|
align: 'Allinea',
|
|
hr: 'Inserisci righello orizzontale',
|
|
undo: 'Indietro',
|
|
redo: 'Avanti',
|
|
header1: 'Intestazione 1',
|
|
header2: 'Intestazione 2',
|
|
header3: 'Intestazione 3',
|
|
header4: 'Intestazione 4',
|
|
header5: 'Intestazione 5',
|
|
header6: 'Intestazione 6',
|
|
paragraph: 'Paragrafo',
|
|
code: 'Codice',
|
|
size1: 'Molto piccolo',
|
|
size2: 'Piccolo',
|
|
size3: 'Normale',
|
|
size4: 'Medio-largo',
|
|
size5: 'Grande',
|
|
size6: 'Molto grande',
|
|
size7: 'Massimo',
|
|
defaultFont: 'Font predefinito'
|
|
},
|
|
tree: {
|
|
noData: 'Nessun nodo disponibile',
|
|
noResults: 'Nessuna corrispondenza trovata'
|
|
}
|
|
}
|