29 lines
677 B
PHP
29 lines
677 B
PHP
<?php
|
|
/** Korean (Democratic People's Republic of Korea) (조선말)
|
|
*
|
|
* @file
|
|
* @ingroup Languages
|
|
*/
|
|
|
|
$fallback = 'ko';
|
|
|
|
$datePreferences = [
|
|
'default',
|
|
'juche',
|
|
'juche bracket',
|
|
'ISO 8601',
|
|
];
|
|
$defaultDateFormat = 'ko';
|
|
$dateFormats = [
|
|
'ko time' => 'H:i',
|
|
'ko date' => 'Y년 M월 j일 (D)',
|
|
'ko both' => 'Y년 M월 j일 (D) H:i',
|
|
|
|
'juche time' => 'H:i',
|
|
'juche date' => 'xoY년 M월 j일 (D)',
|
|
'juche both' => 'xoY년 M월 j일 (D) H:i',
|
|
|
|
'juche bracket time' => 'H:i',
|
|
'juche bracket date' => '주체xoY년 (Y년) M월 j일 (D)',
|
|
'juche bracket both' => '주체xoY년 (Y년) M월 j일 (D) H:i',
|
|
];
|