[TYPO3-english] Translation of content placed directly with typoscript

Christian Hennecke christian.hennecke at wunderknaben.com
Mon Oct 15 10:17:41 CEST 2012


Am 12.10.2012 15:13, schrieb Harish A:
> Hey there,
>
> I am developing a TYPO3 website with multilanguage support. I  am using
> TemplaVoila for template mapping. Site works in both languages. But *content
> added with Typoscript in TemplaVoila mapping is rendered only in default
> language, in other languages content from Typoscript is missing.*
>
> here is my typoscript:
>
>      lib.autherInfo = CONTENT
>      lib.autherInfo {
>        table = tt_content
>    select {
>              selectFields = cruser_id
>           }

For the language overlay to work, you also need to specify 
"languageField" with the field that points to the system languages like 
this:

lib.autherInfo = CONTENT
lib.autherInfo {
   table = tt_content
   select {
     selectFields = cruser_id
     languageField = sys_language_uid
   }

Cheers,

Christian




More information about the TYPO3-english mailing list