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-ko.js
/* Korean initialisation for the jQuery calendar extension. */ /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie and Myeongjin Lee. */ ( 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.ko = { 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. m. d.", firstDay: 0, isRTL: false, showMonthAfterYear: true, yearSuffix: "λ " }; datepicker.setDefaults( datepicker.regional.ko ); return datepicker.regional.ko; } );
Save
Cancel