mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
#368 영문 오타 및 1970년 이전의 월 영문 표기 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3665 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cacb75738d
commit
71b6b68aff
2 changed files with 3 additions and 3 deletions
|
|
@ -84,7 +84,7 @@
|
|||
$lang->email_address = 'Email';
|
||||
$lang->homepage = 'Homepage';
|
||||
$lang->blog = 'Blog';
|
||||
$lang->birthday = 'Birthdate';
|
||||
$lang->birthday = 'Birthday';
|
||||
$lang->browser_title = 'Browser Title';
|
||||
$lang->title = 'Subject';
|
||||
$lang->title_content = 'Subject+Content';
|
||||
|
|
|
|||
|
|
@ -256,8 +256,8 @@
|
|||
* @brief 월이름을 return
|
||||
**/
|
||||
function getMonthName($month, $short = true) {
|
||||
$short_month = array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
|
||||
$long_month = array("January","February","March","April","May","June","July","August","September","October","November","December");
|
||||
$short_month = array('','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
|
||||
$long_month = array('','January','February','March','April','May','June','July','August','September','October','November','December');
|
||||
return !$short?$long_month[$month]:$short_month[$month];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue