1.FAQ: How do I make the "Show in calendar" unchecked by default?2. Is this extension compatible with IE?3. Is this extension ready for one-tree multi-lang web sites?4. How do I set up a multilanguage site?
You can set it by adding this line of Tsconfig to your users then the box will not be checked on news creation:
TCAdefaults.tt_news.tx_newscalendar_state = 0
First I recommend reading “Frontend Localization Guide” or watching the podcast :
http://typo3.org/documentation/document-library/core-documentation/doc_l10nguide/1.0.0/view/toc/0/
http://castor.t3o.punkt.de/files/podkast_julestue4-localization.m4v
After reading this document , on each language configured on your site please insert the correct config.locale_all option.
Note: The operating system on which your site is installed must have the desire language pack installed so PHP may do the translation, this extensions uses the PHP “setLocale” function for handling language change:http://pt.php.net/manual/en/function.setlocale.php Be aware that different server operating system handle differently PHP setLocale option.An example is windows and linux. The first accepts “portuguese” as a valid input, the second “pt_PT” To check if your system has a certain language installed please use the following command in Linux/Unix:
locale -a # Default configuration example.
config.locale_all = pt_PT # If it was a windows system this would be set to Portuguese.
# Language specific configuration.
[globalVar = GP:L=1]
config {
sys_language_uid = 1
language = dk
locale_all = da_DK
}
[globalVar = GP:L=2]
config {
sys_language_uid = 2
language = en
locale_all = en_GB
}
[global]
NOTE: In some cases you must setup your php.ini configuration settings for translation to work as expected.This was reported in Canada where October month was displayed as November.“Since you use gmmktime(), the "php.ini" must have the right date.timezone information.For us in Canada we needed to set UCT and now the right month is showing.” Patrick Gaumond
This no longer applys since version 0.1.14 gmmktime() function was changed in favor of function mktime();