Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

EVENT_CALENDAR


Go to End


13 Posts   3794 Views

Avatar
alina70

Community Member, 8 Posts

2 October 2009 at 9:33pm

Hi,
It's possibile to translate Event_Calendar in italian?
How can I do?
Thank you

Avatar
UncleCheese

Forum Moderator, 4102 Posts

3 October 2009 at 1:37am

Sure. Just create an it_IT.php lang file and add all your translations. We could really use more!

Avatar
alina70

Community Member, 8 Posts

3 October 2009 at 3:49am

Thank you UnlceCheese,
I immagine that I must create the file \lang\it_IT.php with the translation ... but how can I do to set this new file and not the file en_US.php ??
many thanks
ale

Avatar
UncleCheese

Forum Moderator, 4102 Posts

3 October 2009 at 4:04am

It should follow your locale settings. You may have to manually set your locale using i18n::set_locale("it_IT"); in your _config.php.

When you finish the translation, please post here so I can check into the code. Thanks.

Avatar
alina70

Community Member, 8 Posts

4 October 2009 at 8:17pm

Edited: 04/10/2009 8:18pm

Hi,
I have modified it_IT.php from en_EN.php and I have manually set my locale using i18n::set_locale("it_IT"); in \event_calendar\_config.php.... but I noticed that some words like the name of months are always in english ...
why? In javascript\locale there is date_it.js with the correct names but seems not to consider them ....
How can I do?
Many thanks

Avatar
UncleCheese

Forum Moderator, 4102 Posts

5 October 2009 at 12:26am

Yeah, I'm not sure why users are reporting that they need to manually set their locales. Do you have other modules that are translating correctly without that?

The month names are generated using the PHP strftime() function, which is supposed to be locale-aware. Does strftime() return Italian months for you?

Make sure sure you update the javascript locale file in your it_IT.php. I think it's the last line. If you tell it to look for a different js file, you should get the translations in your calendar widget.

Avatar
alina70

Community Member, 8 Posts

5 October 2009 at 4:55am

I think I have followed your instructions.
In it_IT.php file I checked : there's date_it.js .... I think it is correct, right?
I attach the file where you can see that the month names aren't correct ...

I know that I'll probably silly questions but I'm new of SS and I'd like to learn because I think it's a is a great software but the web sites must also be in Italian ... so I hope you can help me.

Many thanks

Attached Files
Avatar
zueri

Community Member, 8 Posts

5 October 2009 at 5:46am

I had the same problem with the month names. I wanted the German month names, but it always showed the English names. The solution for me was to add the following line to the _config.php in mysite. The setting is for Swiss German.

setlocale (LC_TIME, "de_CH.UTF-8");

For Italian it should be:

setlocale (LC_TIME, "it_IT.UTF-8");

Maybe this helps.

Go to Top