Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
share
/
javascript
/
jquery-ui
/
ui
/
i18n
๐ค Upload
๐ New File
๐ New Folder
Close
Editing: datepicker-ja.js
/* Japanese initialisation for the jQuery UI date picker plugin. */ /* Written by Kentaro SATO (kentaro@ranvis.com). */ ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "../widgets/datepicker" ], factory ); } else { // Browser globals factory( jQuery.datepicker ); } } )( function( datepicker ) { "use strict"; datepicker.regional.ja = { closeText: "้ใใ", prevText: "<ๅ", nextText: "ๆฌก>", currentText: "ไปๆฅ", monthNames: [ "1ๆ", "2ๆ", "3ๆ", "4ๆ", "5ๆ", "6ๆ", "7ๆ", "8ๆ", "9ๆ", "10ๆ", "11ๆ", "12ๆ" ], monthNamesShort: [ "1ๆ", "2ๆ", "3ๆ", "4ๆ", "5ๆ", "6ๆ", "7ๆ", "8ๆ", "9ๆ", "10ๆ", "11ๆ", "12ๆ" ], dayNames: [ "ๆฅๆๆฅ", "ๆๆๆฅ", "็ซๆๆฅ", "ๆฐดๆๆฅ", "ๆจๆๆฅ", "้ๆๆฅ", "ๅๆๆฅ" ], dayNamesShort: [ "ๆฅ", "ๆ", "็ซ", "ๆฐด", "ๆจ", "้", "ๅ" ], dayNamesMin: [ "ๆฅ", "ๆ", "็ซ", "ๆฐด", "ๆจ", "้", "ๅ" ], weekHeader: "้ฑ", dateFormat: "yy/mm/dd", firstDay: 0, isRTL: false, showMonthAfterYear: true, yearSuffix: "ๅนด" }; datepicker.setDefaults( datepicker.regional.ja ); return datepicker.regional.ja; } );
Save
Cancel