Page 1 of 1

Mini calender

Posted: 23. September 2010 03:02
by Nogates
Your Portal Version: 1.0.6
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://nogates.ca/forum/portal.php

PHP Version: 3.0.7-PL1

What have you done before the problem was there?
Nothing,install just fine.

What have you already tryed to solve the problem?
Remoove it,change start days of the week,change language to french.

Description and Message
The mini calender show the wrong day.
It show thursday for the 22 september 2010.
Everything else work ok,change of start of week and full name of the month.
All other block work just fine.
Not activate for now but if needed could be whit a email saying when to put it back,maybe.

Re: Mini calender

Posted: 23. September 2010 18:43
by archivar
Hi,
may correct the date is not on your board. ;)

Re: Mini calender

Posted: 23. September 2010 18:52
by Nogates
I just put it back on,and all other date from board,like robot visit is ok.
And please use clear english because not my first language.
Not of what you where trying to tell me but hope it's about the mini calender not been there.
Would love to have it on my board but......not like that.

Re: Mini calender

Posted: 23. September 2010 19:05
by archivar
This is a bug in the French language.
You have to change the order of the day of the week in the French language:
EDIT:
search in root / language / fr / mods / lang_portal.php

Code: Select all

    'mini_cal'    => array(
        'day'    => array(
            '1'    => 'Lu',
            '2'    => 'Ma',
            '3'    => 'Me',
            '4'    => 'Je',
            '5'    => 'Ve',
            '6'    => 'Sa',
            '7'    => 'Di',
        ),
replace with:

Code: Select all

    'mini_cal'    => array(
        'day'    => array(
            '1'    => 'Di',
            '2'    => 'Lu',
            '3'    => 'Ma',
            '4'    => 'Me',
            '5'    => 'Je',
            '6'    => 'Ve',
            '7'    => 'Sa',
        ),

Re: Mini calender

Posted: 23. September 2010 19:17
by Nogates
Thanks for the exelent support.
Work just fine.
Us the french whit our accens and all the rule,man not easy in programing,all the typo we have to set.
But now where thursday even in french.lolll
Thanks again.