boettner wrote:Yes I saw that in the docs and have this config present since it´s quite basic:
Your TS code is OK as long as it don't gets overwritten somewhere else. Is the rest of the translations OK (e.g. for "you are here" etc.)?
Do you have multiple languages configured ( either TYPO3 or Aimeos admin interface)?
boettner wrote:But the automatism seems to fail in my installation. The decimal separator remains a dot when german is selected. What makes me think I have some misconfiguration is the fact that the language selector also don´t works like documented. I have RealUrl configured as described but the lang param remains ai[loc_language]
We would suggest that you don't use the Aimeos language selector for TYPO3 as it's better to use the native TYPO3 mechanism. It's primarily for the other Aimeos integrations. Only the currency selector is useful in the TYPO3 context but if you only have one currency, I wouldn't use it at all.
You can see a working setup with multiple languages at
http://typo3.demo.aimeos.org/default/ (scroll down, there are ten links to all currently supported languages). We've uses the bootstrap_package and added this TS configuration:
Code: Select allconfig.language = en
config.sys_language_uid = 0
[globalVar = GP:L = 1]
config.language = de
config.sys_language_uid = 1
[global]
[globalVar = GP:L = 2]
config.language = pl
config.sys_language_uid = 2
[global]
[globalVar = GP:L = 3]
config.language = ru
config.sys_language_uid = 3
[global]
[globalVar = GP:L = 4]
config.language = tr_TR
config.sys_language_uid = 4
[global]
[globalVar = GP:L = 5]
config.language = fr
config.sys_language_uid = 5
[global]
[globalVar = GP:L = 6]
config.language = es
config.sys_language_uid = 6
[global]
[globalVar = GP:L = 7]
config.language = nl
config.sys_language_uid = 7
[global]
[globalVar = GP:L = 8]
config.language = zh_CN
config.sys_language_uid = 8
[global]
[globalVar = GP:L = 9]
config.language = sr_SR
config.sys_language_uid = 9
[global]
lib.language.20.special.value = 0,1,2,3,4,5,6,7,8,9
lib.language.20.1.NO.stdWrap.override = English || Deutsch || Polski || русский || Türk || Français || Español || Nederlands || 中国 || српски
lib.language.20.1.NO.stdWrap.typolink.additionalParams = &L=0 || &L=1 || &L=2 || &L=3 || &L=4 || &L=5 || &L=6 || &L=7 || &L=8 || &L=9
lib.language.20.1.NO.stdWrap.typolink.ATagParams = hreflang="en-GB" || hreflang="de-DE" || hreflang="pl-PL" || hreflang="ru-RU" || hreflang="tr-TR" || hreflang="fr-FR" || hreflang="es-ES" || hreflang="nl-NL" || hreflang="zh-CN" || hreflang="sr-SR"
lib.language.20.1.ACT.stdWrap.override = English || Deutsch || Polski || русский || Türk || Français || Español || Nederlands || 中国 || српски
lib.language.20.1.ACT.stdWrap.typolink.additionalParams = &L=0 || &L=1 || &L=2 || &L=3 || &L=4 || &L=5 || &L=6 || &L=7 || &L=8 || &L=9
lib.language.20.1.ACT.stdWrap.typolink.ATagParams = hreflang="en-GB" || hreflang="de-DE" || hreflang="pl-PL" || hreflang="ru-RU" || hreflang="tr-TR" || hreflang="fr-FR" || hreflang="es-ES" || hreflang="nl-NL" || hreflang="zh-CN" || hreflang="sr-SR"
The RealURL mapping was adapted like described here:
http://aimeos.org/tips/language-mapping-in-typo3-with-realurl-and-bootstrap-package/Which version of the Aimeos TYPO3 extension do you use? Version 2.2.2 or the latest from Github?