92five icon indicating copy to clipboard operation
92five copied to clipboard

Localize Date in Timesheet page

Open teethgrinder opened this issue 10 years ago • 2 comments

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

teethgrinder avatar Oct 17 '14 13:10 teethgrinder

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. :)

chintanbanugaria avatar Oct 17 '14 16:10 chintanbanugaria

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.

teethgrinder avatar Oct 18 '14 16:10 teethgrinder