This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Localized dates...


avatar
myonlyeye 0
From: -
Localized dates...

Is it possible to localize the date format, i.e. "June 25, 2004" to become "Juni 25, 2004" (June 25, 2004 in norwegian Smiling Face?

"?" from Odin

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Localized dates...
avatar
Administrator
1340
From: Vienna, Austria
Localized dates...

On the main page? Add the following in the news_subheader template:

After:
<?php

global $insert;


Add:
$insert[story_day] = str_replace("January","Janner",$insert[story_day]);

$insert[story_day] = str_replace("Feburary","Februar",$insert[story_day]);
$insert[story_day] = str_replace("March","Mars",$insert[story_day]);
$insert[story_day] = str_replace("May","Mai",$insert[story_day]);
$insert[story_day] = str_replace("June","Juni",$insert[story_day]);
$insert[story_day] = str_replace("July","Juli",$insert[story_day]);
$insert[story_day] = str_replace("October","Oktober",$insert[story_day]);
$insert[story_day] = str_replace("December","Desember",$insert[story_day]);

and save the template

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.