﻿$.datepicker.regional['cs'] =
    {
        closeText: 'Zavřít', // Display text for close link
        prevText: 'Dříve', // Display text for previous month link
        nextText: 'Později', // Display text for next month link
        currentText: 'Nyní', // Display text for current month link
        monthNames: ['leden', 'únor', 'březen', 'duben', 'květen', 'červen',
			        'červenec', 'srpen', 'září', 'říjen', 'listoped', 'prosinec'], // Names of months for drop-down and formatting
        monthNamesShort: ['led', 'úno', 'bře', 'dub', 'kvě', 'čer', 'čvc', 'srp', 'zář', 'říj', 'lis', 'pro'], // For formatting
        dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], // For formatting
        dayNamesShort: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'], // For formatting
        dayNamesMin: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'], // Column headings for days starting at Sunday
        dateFormat: 'dd.mm.yy', // See format options on parseDate
        firstDay: 1, // The first day of the week, Sun = 0, Mon = 1, ...
        isRTL: false // True if right-to-left language, false if left-to-right
    };

$.datepicker.setDefaults($.datepicker.regional['cs']);
$.datepicker.setDefaults({
    changeMonth: true,
    changeYear: true,
    duration: "fast"
});


