PHP Classes

File: infrastructure/libraries/Moment/Locales/ko_KR.php

Recommend this page to a friend!
  Classes of Maicon gonçalez   Potato Service   infrastructure/libraries/Moment/Locales/ko_KR.php   Download  
File: infrastructure/libraries/Moment/Locales/ko_KR.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Potato Service
Framework that extracts route details from classes
Author: By
Last change:
Date: 1 year ago
Size: 1,899 bytes
 

Contents

Class file image Download
<?php
// locale: Korean
// author: amouro https://github.com/amouro
return array(
   
"months" => explode('_', '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'),
   
"monthsShort" => explode('_', '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'),
   
"weekdays" => explode('_', '???_???_???_???_???_???_???'),
   
"weekdaysShort" => explode('_', '?_?_?_?_?_?_?'),
   
"weekdaysMin" => explode('_', '?_?_?_?_?_?_?'),
   
"calendar" => array(
       
"sameDay" => '[??] LT',
       
"nextDay" => '[??] LT',
       
"lastDay" => '[??] LT',
       
"lastWeek" => '[???] dddd LT',
       
"sameElse" => 'L',
       
"withTime" => 'H:i',
       
"default" => 'Y? m? d?',
    ),
   
"relativeTime" => array(
       
"future" => '%s ?',
       
"past" => '%s ?',
       
"s" => '? ?',
       
"ss" => '%d ?',
       
"m" => '1 ?',
       
"mm" => '%d ?',
       
"h" => '? ??',
       
"hh" => '%d ??',
       
"d" => '??',
       
"dd" => '%d ?',
       
"M" => '? ?',
       
"MM" => '%d ?',
       
"y" => '? ?',
       
"yy" => '%d ?',
    ),
   
"ordinal" => function ($number, $token)
    {
       
$symbol = null;

        switch (
$token)
        {
            case
'd':
            case
'D':
            case
'DDD':
               
$symbol = '?';
            case
'M':
               
$symbol = '?';
            case
'w':
            case
'W':
               
$symbol = '?';
            default:
        }

        return
$number . $symbol;
    },
   
"week" => array(
       
"dow" => 1, // Monday is the first day of the week.
       
"doy" => 4 // The week that contains Jan 4th is the first week of the year.
   
),
);