aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/datepicker-ms.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-ms.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-ms.js')
-rw-r--r--ui/i18n/datepicker-ms.js21
1 files changed, 12 insertions, 9 deletions
diff --git a/ui/i18n/datepicker-ms.js b/ui/i18n/datepicker-ms.js
index 58bc4f579..344b7683e 100644
--- a/ui/i18n/datepicker-ms.js
+++ b/ui/i18n/datepicker-ms.js
@@ -1,6 +1,8 @@
/* Malaysian initialisation for the jQuery UI date picker plugin. */
/* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
( function( factory ) {
+ "use strict";
+
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@@ -10,20 +12,21 @@
// Browser globals
factory( jQuery.datepicker );
}
-}( function( datepicker ) {
+} )( function( datepicker ) {
+"use strict";
datepicker.regional.ms = {
closeText: "Tutup",
prevText: "&#x3C;Sebelum",
nextText: "Selepas&#x3E;",
currentText: "hari ini",
- monthNames: [ "Januari","Februari","Mac","April","Mei","Jun",
- "Julai","Ogos","September","Oktober","November","Disember" ],
- monthNamesShort: [ "Jan","Feb","Mac","Apr","Mei","Jun",
- "Jul","Ogo","Sep","Okt","Nov","Dis" ],
- dayNames: [ "Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu" ],
- dayNamesShort: [ "Aha","Isn","Sel","Rab","kha","Jum","Sab" ],
- dayNamesMin: [ "Ah","Is","Se","Ra","Kh","Ju","Sa" ],
+ monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun",
+ "Julai", "Ogos", "September", "Oktober", "November", "Disember" ],
+ monthNamesShort: [ "Jan", "Feb", "Mac", "Apr", "Mei", "Jun",
+ "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis" ],
+ dayNames: [ "Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu" ],
+ dayNamesShort: [ "Aha", "Isn", "Sel", "Rab", "kha", "Jum", "Sab" ],
+ dayNamesMin: [ "Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa" ],
weekHeader: "Mg",
dateFormat: "dd/mm/yy",
firstDay: 0,
@@ -34,4 +37,4 @@ datepicker.setDefaults( datepicker.regional.ms );
return datepicker.regional.ms;
-} ) );
+} );