aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/datepicker-hi.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2021-06-07 00:58:12 +0200
committerGitHub <noreply@github.com>2021-06-07 00:58:12 +0200
commit70dae67b73dfea9126f126f516fe8286f1e73417 (patch)
treee61eafab41ee74330fecf1da2ce125050cfac49b /ui/i18n/datepicker-hi.js
parenta12c98574d07f002fd59d166f9fc1fd391581b91 (diff)
downloadjquery-ui-70dae67b73dfea9126f126f516fe8286f1e73417.tar.gz
jquery-ui-70dae67b73dfea9126f126f516fe8286f1e73417.zip
Build: Migrate from JSHint & JSCS to ESLint
Fixes #15393 Closes gh-1958
Diffstat (limited to 'ui/i18n/datepicker-hi.js')
-rw-r--r--ui/i18n/datepicker-hi.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/ui/i18n/datepicker-hi.js b/ui/i18n/datepicker-hi.js
index 3b1209724..e3b72e52b 100644
--- a/ui/i18n/datepicker-hi.js
+++ b/ui/i18n/datepicker-hi.js
@@ -1,6 +1,8 @@
/* Hindi initialisation for the jQuery UI date picker plugin. */
/* Written by Michael Dawart. */
( function( factory ) {
+ "use strict";
+
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@@ -10,15 +12,16 @@
// Browser globals
factory( jQuery.datepicker );
}
-}( function( datepicker ) {
+} )( function( datepicker ) {
+"use strict";
datepicker.regional.hi = {
closeText: "बंद",
prevText: "पिछला",
nextText: "अगला",
currentText: "आज",
- monthNames: [ "जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून",
- "जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर" ],
+ monthNames: [ "जनवरी ", "फरवरी", "मार्च", "अप्रेल", "मई", "जून",
+ "जूलाई", "अगस्त ", "सितम्बर", "अक्टूबर", "नवम्बर", "दिसम्बर" ],
monthNamesShort: [ "जन", "फर", "मार्च", "अप्रेल", "मई", "जून",
"जूलाई", "अग", "सित", "अक्ट", "नव", "दि" ],
dayNames: [ "रविवार", "सोमवार", "मंगलवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार" ],
@@ -34,4 +37,4 @@ datepicker.setDefaults( datepicker.regional.hi );
return datepicker.regional.hi;
-} ) );
+} );