To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 43 / 43ca2f7eab22cf20860813dd19a4f9772ff091c7.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (948 Bytes)
| 1 | 1296:038ba2d95de8 | Chris | /* Hungarian initialisation for the jQuery UI date picker plugin. */ |
|---|---|---|---|
| 2 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */ |
||
| 3 | jQuery(function($){
|
||
| 4 | $.datepicker.regional['hu'] = {
|
||
| 5 | closeText: 'bezár', |
||
| 6 | prevText: 'vissza', |
||
| 7 | nextText: 'előre', |
||
| 8 | currentText: 'ma', |
||
| 9 | monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', |
||
| 10 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], |
||
| 11 | monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', |
||
| 12 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], |
||
| 13 | dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], |
||
| 14 | dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], |
||
| 15 | dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], |
||
| 16 | weekHeader: 'Hét', |
||
| 17 | dateFormat: 'yy.mm.dd.', |
||
| 18 | firstDay: 1, |
||
| 19 | isRTL: false, |
||
| 20 | showMonthAfterYear: true, |
||
| 21 | yearSuffix: ''}; |
||
| 22 | $.datepicker.setDefaults($.datepicker.regional['hu']); |
||
| 23 | }); |