123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define('element/locale/it', ['module', 'exports'], factory);
- } else if (typeof exports !== "undefined") {
- factory(module, exports);
- } else {
- var mod = {
- exports: {}
- };
- factory(mod, mod.exports);
- global.ELEMENT.lang = global.ELEMENT.lang || {};
- global.ELEMENT.lang.it = mod.exports;
- }
- })(this, function (module, exports) {
- 'use strict';
- exports.__esModule = true;
- exports.default = {
- el: {
- colorpicker: {
- confirm: 'OK',
- clear: 'Pulisci'
- },
- datepicker: {
- now: 'Ora',
- today: 'Oggi',
- cancel: 'Cancella',
- clear: 'Pulisci',
- confirm: 'OK',
- selectDate: 'Seleziona data',
- selectTime: 'Seleziona ora',
- startDate: 'Data inizio',
- startTime: 'Ora inizio',
- endDate: 'Data fine',
- endTime: 'Ora fine',
- prevYear: 'Anno precedente',
- nextYear: 'Anno successivo',
- prevMonth: 'Mese precedente',
- nextMonth: 'Mese successivo',
- year: 'anno',
- month1: 'Gennaio',
- month2: 'Febbraio',
- month3: 'Marzo',
- month4: 'Aprile',
- month5: 'Maggio',
- month6: 'Giugno',
- month7: 'Luglio',
- month8: 'Agosto',
- month9: 'Settembre',
- month10: 'Ottobre',
- month11: 'Novembre',
- month12: 'Dicembre',
- // week: 'settimana',
- weeks: {
- sun: 'Dom',
- mon: 'Lun',
- tue: 'Mar',
- wed: 'Mer',
- thu: 'Gio',
- fri: 'Ven',
- sat: 'Sab'
- },
- months: {
- jan: 'Gen',
- feb: 'Feb',
- mar: 'Mar',
- apr: 'Apr',
- may: 'Mag',
- jun: 'Giu',
- jul: 'Lug',
- aug: 'Ago',
- sep: 'Set',
- oct: 'Ott',
- nov: 'Nov',
- dec: 'Dic'
- }
- },
- select: {
- loading: 'Caricamento',
- noMatch: 'Nessuna corrispondenza',
- noData: 'Nessun dato',
- placeholder: 'Seleziona'
- },
- cascader: {
- noMatch: 'Nessuna corrispondenza',
- loading: 'Caricamento',
- placeholder: 'Seleziona',
- noData: 'Nessun dato'
- },
- pagination: {
- goto: 'Vai a',
- pagesize: '/pagina',
- total: 'Totale {total}',
- pageClassifier: ''
- },
- messagebox: {
- confirm: 'OK',
- cancel: 'Annulla',
- error: 'Input non valido'
- },
- upload: {
- deleteTip: 'Premi cancella per rimuovere',
- delete: 'Cancella',
- preview: 'Anteprima',
- continue: 'Continua'
- },
- table: {
- emptyText: 'Nessun dato',
- confirmFilter: 'Conferma',
- resetFilter: 'Reset',
- clearFilter: 'Tutti',
- sumText: 'Somma'
- },
- tree: {
- emptyText: 'Nessun dato'
- },
- transfer: {
- noMatch: 'Nessuna corrispondenza',
- noData: 'Nessun dato',
- titles: ['Lista 1', 'Lista 2'],
- filterPlaceholder: 'Inserisci filtro',
- noCheckedFormat: '{total} elementi',
- hasCheckedFormat: '{checked}/{total} selezionati'
- },
- image: {
- error: 'ERRORE'
- },
- pageHeader: {
- title: 'Indietro'
- },
- popconfirm: {
- confirmButtonText: 'Sì',
- cancelButtonText: 'No'
- },
- empty: {
- description: 'Nessun dato'
- }
- }
- };
- module.exports = exports['default'];
- });
|