Dieses ist durch einen Computer übersetzt worden. Ich spreche wirklich Englisch. Ich möchte, daß das Kalender-MX das Format anzeigt: Monat, Tag, Jahr (amerikanisch). Wie tue ich den? Danke
Jilly :quest
Hi Jilly :)
You can modify this in the language files. As example you can use the file /modules/Kalender/language/lang-english.php. There the adjustments are accordingly set.
define("_CALLOCALE","en_EN");
define("_CALSHORTDATEFORMAT","%y/%m/%d");
define("_CALLONGDATEFORMAT","%A, %B %d, %Y");
define("_CALMONTHDATEFORMAT","%B %Y");
define("_CALINTERNATIONALDATES",0); //0 = mm/dd/yyyy, 1 = dd/mm/yyyy
define("_CALTIME24HOUR",0); // 1 = 24 hour time... 0 = AM/PM time
define("_CALTIMEFORMAT","%I:%M %p"); # ? AM/PM time
define("_CALWEEKBEGINN",0); # the First Day in the Week: 0 = Sunday, 1 = Monday
More details for the date/timeformat you can find here:
http://www.php.net/manual/en/function.date.php
Ich verstehe! Danke!
Jilly :D