Ref T190324 for more information. 조선말 is more common name than the current "한국어 (조선)". Bug: T190324 Change-Id: Ie94e60887afe05a92d240ad91faaa9aa7b9b6ea5 Signed-off-by: Yongmin Hong <revi@pobox.com>
32 lines
749 B
PHP
32 lines
749 B
PHP
<?php
|
|
/** Korean (Democratic People's Republic of Korea) (조선말)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
$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',
|
|
];
|