aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n
diff options
context:
space:
mode:
authorRichard D. Worth <rdworth@gmail.com>2012-02-15 10:39:20 -0500
committerRichard D. Worth <rdworth@gmail.com>2012-02-15 10:39:20 -0500
commit90959389ee895f5123589e5be17081fdbe340283 (patch)
treee290e0c5a5b4b60eb15745056ba8ae8d2c977173 /ui/i18n
parentefdf6cdf9f0e6aaecad7b3ac53afca38938d9048 (diff)
downloadjquery-ui-90959389ee895f5123589e5be17081fdbe340283.tar.gz
jquery-ui-90959389ee895f5123589e5be17081fdbe340283.zip
Added Datepicker Hindi i18n file. Fixed #8118 - Datepicker i18n - Hindi localization
Diffstat (limited to 'ui/i18n')
-rw-r--r--ui/i18n/jquery.ui.datepicker-hi.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-hi.js b/ui/i18n/jquery.ui.datepicker-hi.js
new file mode 100644
index 000000000..d75e98ead
--- /dev/null
+++ b/ui/i18n/jquery.ui.datepicker-hi.js
@@ -0,0 +1,23 @@
+/* Hindi initialisation for the jQuery UI date picker plugin. */
+/* Written by Michael Dawart. */
+jQuery(function($){
+ $.datepicker.regional['hi'] = {
+ closeText: 'होकर',
+ prevText: 'अगला',
+ nextText: 'नेक्स्ट',
+ currentText: 'आज',
+ monthNames: ['जनवरी ','फरवरी','मार्च','अप्रेल','मै','जून',
+ 'जूलाई','अगस्त ','सितम्बर','आक्टोबर','नवम्बर','दिसम्बर'],
+ monthNamesShort: ['जन', 'फर', 'मार्च', 'अप्रेल', 'मै', 'जून',
+ 'जूलाई', 'अग', 'सित', 'आक्ट', 'नव', 'िद'],
+ dayNames: ['रविवासर', 'सोमवासर', 'मंगलवासर', 'बुधवासर', 'गुरुवासर', 'शुक्रवासर', 'शनिवासर'],
+ dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
+ dayNamesMin: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
+ weekHeader: 'हफ्ता',
+ dateFormat: 'mm/dd/yy',
+ firstDay: 1,
+ isRTL: false,
+ showMonthAfterYear: false,
+ yearSuffix: ''};
+ $.datepicker.setDefaults($.datepicker.regional['hi']);
+});