Browse Source
Add time lang file for getMonth helper, fixes #5
Add time lang file for getMonth helper, fixes #5
Month names now uses lang files Remove unused helper functionspull/7/head
3 changed files with 57 additions and 34 deletions
@ -0,0 +1,18 @@ |
|||||
|
<?php |
||||
|
|
||||
|
return [ |
||||
|
'month' => [ |
||||
|
'01' => 'January', |
||||
|
'02' => 'Februari', |
||||
|
'03' => 'March', |
||||
|
'04' => 'April', |
||||
|
'05' => 'May', |
||||
|
'06' => 'June', |
||||
|
'07' => 'July', |
||||
|
'08' => 'August', |
||||
|
'09' => 'September', |
||||
|
'10' => 'October', |
||||
|
'11' => 'November', |
||||
|
'12' => 'December', |
||||
|
], |
||||
|
]; |
||||
@ -0,0 +1,18 @@ |
|||||
|
<?php |
||||
|
|
||||
|
return [ |
||||
|
'month' => [ |
||||
|
'01' => 'Januari', |
||||
|
'02' => 'Pebruari', |
||||
|
'03' => 'Maret', |
||||
|
'04' => 'April', |
||||
|
'05' => 'Mei', |
||||
|
'06' => 'Juni', |
||||
|
'07' => 'Juli', |
||||
|
'08' => 'Agustus', |
||||
|
'09' => 'September', |
||||
|
'10' => 'Oktober', |
||||
|
'11' => 'Nopember', |
||||
|
'12' => 'Desember', |
||||
|
], |
||||
|
]; |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue