source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-hi.js @ 18630

Last change on this file since 18630 was 18630, checked in by rvelices, 12 years ago

feature 2771: upgrade jquery from 1.7.2 to 1.8.2 and jquery.ui from 1.8.16 to 1.9.0
Attention plugins: jquery ui effect script ids change when using combine_script because file names changed ...

File size: 1.3 KB
Line 
1/* Hindi initialisation for the jQuery UI date picker plugin. */
2/* Written by Michael Dawart. */
3jQuery(function($){
4        $.datepicker.regional['hi'] = {
5                closeText: 'बंद',
6                prevText: 'पिछला',
7                nextText: 'अगला',
8                currentText: 'आज',
9                monthNames: ['जनवरी ','फरवरी','मार्च','अप्रेल','मई','जून',
10                'जूलाई','अगस्त ','सितम्बर','अक्टूबर','नवम्बर','दिसम्बर'],
11                monthNamesShort: ['जन', 'फर', 'मार्च', 'अप्रेल', 'मई', 'जून',
12                'जूलाई', 'अग', 'सित', 'अक्ट', 'नव', 'दि'],
13                dayNames: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'],
14                dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
15                dayNamesMin: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
16                weekHeader: 'हफ्ता',
17                dateFormat: 'dd/mm/yy',
18                firstDay: 1,
19                isRTL: false,
20                showMonthAfterYear: false,
21                yearSuffix: ''};
22        $.datepicker.setDefaults($.datepicker.regional['hi']);
23});
Note: See TracBrowser for help on using the repository browser.