92five
92five copied to clipboard
Localize Date in Timesheet page
Hello , I am trying to localize timesheet page . How can I localize the week day pages ? I try to add this in line 34 of CalendarController but does not effect
setlocale('LC_ALL',array('tr_TR.UTF-8','tr_TR','tr-TR.UTF-8','tr-TR'));
$day = date("Y-m-d");
Thanks
You might want to set the language in app/config/app.php. But then you will require language file. I am currently making some changes in the language file. Please hold on till then. After these changes you will be set your default locale to your choice. :)
Still I handled it by using:
<?php setlocale(LC_ALL, "tr_TR.UTF8");?>
<span class="c_day">{{strftime(' %A', strtotime($day['dayofweek']) )}}</span>
Thanks waiting other changes. Perfect app btw.