PHP Classes

File: vendor/nesbot/carbon/src/Carbon/Lang/ko.php

Recommend this page to a friend!
  Packages of OmDiaries   Laravel AI Email Assistant   vendor/nesbot/carbon/src/Carbon/Lang/ko.php   Download  
File: vendor/nesbot/carbon/src/Carbon/Lang/ko.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Laravel AI Email Assistant
Generate an email message with the OpenAI GPT API
Author: By
Last change:
Date: 4 months ago
Size: 2,784 bytes
 

Contents

Class file image Download
<?php

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/*
 * Authors:
 * - Kunal Marwaha
 * - FourwingsY
 * - François B
 * - Jason Katz-Brown
 * - Seokjun Kim
 * - Junho Kim
 * - JD Isaacks
 * - Juwon Kim
 */
return [
   
'year' => ':count?',
   
'a_year' => '{1}??|]1,Inf[:count?',
   
'y' => ':count?',
   
'month' => ':count??',
   
'a_month' => '{1}??|]1,Inf[:count??',
   
'm' => ':count??',
   
'week' => ':count?',
   
'a_week' => '{1}???|]1,Inf[:count ?',
   
'w' => ':count??',
   
'day' => ':count?',
   
'a_day' => '{1}??|]1,Inf[:count?',
   
'd' => ':count?',
   
'hour' => ':count??',
   
'a_hour' => '{1}???|]1,Inf[:count??',
   
'h' => ':count??',
   
'minute' => ':count?',
   
'a_minute' => '{1}??|]1,Inf[:count?',
   
'min' => ':count?',
   
'second' => ':count?',
   
'a_second' => '{1}??|]1,Inf[:count?',
   
's' => ':count?',
   
'ago' => ':time ?',
   
'from_now' => ':time ?',
   
'after' => ':time ?',
   
'before' => ':time ?',
   
'diff_now' => '??',
   
'diff_today' => '??',
   
'diff_yesterday' => '??',
   
'diff_tomorrow' => '??',
   
'formats' => [
       
'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',
    ],
   
'calendar' => [
       
'sameDay' => '?? LT',
       
'nextDay' => '?? LT',
       
'nextWeek' => 'dddd LT',
       
'lastDay' => '?? LT',
       
'lastWeek' => '??? dddd LT',
       
'sameElse' => 'L',
    ],
   
'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;
        }
    },
   
'meridiem' => ['??', '??'],
   
'months' => ['1?', '2?', '3?', '4?', '5?', '6?', '7?', '8?', '9?', '10?', '11?', '12?'],
   
'months_short' => ['1?', '2?', '3?', '4?', '5?', '6?', '7?', '8?', '9?', '10?', '11?', '12?'],
   
'weekdays' => ['???', '???', '???', '???', '???', '???', '???'],
   
'weekdays_short' => ['?', '?', '?', '?', '?', '?', '?'],
   
'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'],
   
'list' => ' ',
];