PHP Classes

File: modules/system/assets/ui/vendor/moment/locale/ko.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/ui/vendor/moment/locale/ko.js   Download  
File: modules/system/assets/ui/vendor/moment/locale/ko.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 6 months ago
Size: 2,695 bytes
 

Contents

Class file image Download
//! moment.js locale configuration v2.22.2 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; var ko = moment.defineLocale('ko', { months : '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'.split('_'), monthsShort : '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'.split('_'), weekdays : '???_???_???_???_???_???_???'.split('_'), weekdaysShort : '?_?_?_?_?_?_?'.split('_'), weekdaysMin : '?_?_?_?_?_?_?'.split('_'), longDateFormat : { LT : 'A h:mm', LTS : 'A h:mm:ss', L : 'YYYY.MM.DD.', LL : 'YYYY? MMMM D?', LLL : 'YYYY? MMMM D? A h:mm', LLLL : 'YYYY? MMMM D? dddd A h:mm', l : 'YYYY.MM.DD.', ll : 'YYYY? MMMM D?', lll : 'YYYY? MMMM D? A h:mm', llll : 'YYYY? MMMM D? dddd A h:mm' }, calendar : { sameDay : '?? LT', nextDay : '?? LT', nextWeek : 'dddd LT', lastDay : '?? LT', lastWeek : '??? dddd LT', sameElse : 'L' }, relativeTime : { future : '%s ?', past : '%s ?', s : '? ?', ss : '%d?', m : '1?', mm : '%d?', h : '? ??', hh : '%d??', d : '??', dd : '%d?', M : '? ?', MM : '%d?', y : '? ?', yy : '%d?' }, dayOfMonthOrdinalParse : /\d{1,2}(?|?|?)/, ordinal : function (number, period) { switch (period) { case 'd': case 'D': case 'DDD': return number + '?'; case 'M': return number + '?'; case 'w': case 'W': return number + '?'; default: return number; } }, meridiemParse : /??|??/, isPM : function (token) { return token === '??'; }, meridiem : function (hour, minute, isUpper) { return hour < 12 ? '??' : '??'; } }); return ko; })));