jQWidgets Forums

jQuery UI Widgets Forums Grid Italian localization

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 8 years, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Italian localization #92156

    Marcolodio
    Participant

    Hi,
    if anyone is interested for italian localization, this is my contribute

    
    var localize = {
        // separator of parts of a date (e.g. '/' in 11/05/1955)
        '/': "/",
        // separator of parts of a time (e.g. ':' in 05:44 PM)
        ':': ":",
        // the first day of the week (0 = Sunday, 1 = Monday, etc)
        firstDay: 1,
        days: {
            // full day names
            names: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"],
            // abbreviated day names
            namesAbbr: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"],
            // shortest day names
            namesShort: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa"]
        },
        months: {
            // full month names (13 months for lunar calendards -- 13th month should be "" if not lunar)
            names: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre", ""],
            // abbreviated month names
            namesAbbr: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic", ""]
        },
        // AM and PM designators in one of these forms:
        // The usual view, and the upper and lower case versions
        //      [standard,lowercase,uppercase]
        // The culture does not use AM or PM (likely all standard date formats use 24 hour time)
        //      null
        AM: ["AM", "am", "AM"],
        PM: ["PM", "pm", "PM"],
        eras: [
        // eras in reverse chronological order.
        // name: the name of the era in this culture (e.g. A.D., C.E.)
        // start: when the era starts in ticks (gregorian, gmt), null if it is the earliest supported era.
        // offset: offset in years from gregorian calendar
        {"name": "A.D.", "start": null, "offset": 0 }
    ],
        twoDigitYearMax: 2029,
        patterns: {
            // short date pattern
            d: "d/M/yyyy",
            // long date pattern
            D: "dddd, dd MMMM, yyyy",
            // short time pattern
            t: "h:mm tt",
            // long time pattern
            T: "h:mm:ss tt",
            // long date, short time pattern
            f: "dddd, dd MMMM, yyyy h:mm tt",
            // long date, long time pattern
            F: "dddd, dd MMMM, yyyy h:mm:ss tt",
            // month/day pattern
            M: "MMMM dd",
            // month/year pattern
            Y: "yyyy MMMM",
            // S is a sortable format that does not vary by culture
            S: "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss"
        },
        percentsymbol: "%",
        currencysymbol: "€",
        currencysymbolposition: "prima",
        decimalseparator: ',',
        thousandsseparator: '.',
        pagergotopagestring: "Vai a pag.:",
        pagershowrowsstring: "Mostra righe:",
        pagerrangestring: " di ",
        pagerpreviousbuttonstring: "Prec.",
        pagernextbuttonstring: "Pros.",
        groupsheaderstring: "Trascina una colonna e rilasciala qui per raggurppare per quella colonna",
        sortascendingstring: "Ordine crescente",
        sortdescendingstring: "Ordine decrescente",
        sortremovestring: "Rimuovi ordinamento",
        groupbystring: "Raggruppa per questa colonna",
        groupremovestring: "Rimuovi dai gruppi",
        filterclearstring: "Rimuovi filtro",
        filterstring: "Filtra",
        filtershowrowstring: "Mostra righe dove:",
        filtershowrowdatestring: "Mostra righe dove la data:",
        filterorconditionstring: "oppure",
        filterandconditionstring: " e ",
        filterselectallstring: "(Seleziona tutto)",
        filterchoosestring: "Scegli voce:",
        filterstringcomparisonoperators: ['vuoto', 'non vuoto', 'contiene', 'contiene(contr. maiusc.)',
            'non contiene', 'non contiene(contr. maiusc.)', 'inizia con', 'inizia con(contr. maiusc.)',
            'termina con', 'termina con(contr. maiusc.)', 'uguale a', 'uguale(contr. maiusc.)', 'vuoto', 'non vuoto'],
        filternumericcomparisonoperators: ['uguale a', 'diverso da', 'minore di', 'minore o uguale di', 'maggiore di', 'maggiore o uguale di', 'vuoto', 'non vuoto'],
        filterdatecomparisonoperators: ['uguale a', 'diverso da', 'minore di', 'minore o uguale di', 'maggiore di', 'maggiore o uguale di', 'vuoto', 'non vuoto'],
        filterbooleancomparisonoperators: ['uguale a', 'diverso da'],
        validationstring: "Valore inserito non valido",
        emptydatastring: "Nessun dato da visualizzare",
        filterselectstring: "Seleziona filtro",
        loadtext: "Elaborazione...",
        clearstring: "Svuota",
        todaystring: "Oggi"          
    };
    
    Italian localization #92161

    Peter Stoev
    Keymaster

    Thank you, Marcolodio!

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.