Localisation - Typo3/Bootstrap/Aimeos

Questions around the TYPO3 integration and plugins
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
kranzfr3d
Posts: 12
Joined: 15 Nov 2018, 11:41

Localisation - Typo3/Bootstrap/Aimeos

Post by kranzfr3d » 21 Nov 2018, 17:54

Hi again,

have a working setup with typo3 now.
Before I'm beginning with the shop-setup, can you please tell me how to get everything in same language?
Could you please tell me how to change the language all to german? Aimeos is german in background, but (I think it's bootstrapper) is english, only. I've found no settings in my backend to configure it. It is bootstrapper, isn't it?
mixed languages.png
mixed languages.png (10.51 KiB) Viewed 2052 times
gr33tz

User avatar
aimeos
Administrator
Posts: 7835
Joined: 01 Jan 1970, 00:00

Re: Localisation - Typo3/Bootstrap/Aimeos

Post by aimeos » 22 Nov 2018, 17:58

You can disable it in the Template module, select root page in page tree, choose "Constant Editor" in the drop-down at the top of the page and search for "Language"
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

kranzfr3d
Posts: 12
Joined: 15 Nov 2018, 11:41

Re: Localisation - Typo3/Bootstrap/Aimeos

Post by kranzfr3d » 23 Nov 2018, 14:34

Hi,

in backend I had zero constant-lines in it.
I disabled displaying language by setting constant-lines in root-page-template by typing:

Code: Select all

page {
    theme {
        language {
            # cat=bootstrap package: language/168/language_enable; type=boolean; label=LanguageSection: Enable to display the LanguageSection at bottom
            enable = 0
            # cat=bootstrap package: language/168/language_languageValue; type=string; label=Language Navigation Values: Comma separated list of language uids or set to 'auto' to load all enabled system languages
            languageValue = auto
        }
    }
}
Got that codelet from that file:

Code: Select all

/var/www/html/typo3conf/ext/bootstrap_package/Configuration/TypoScript/constants.typoscript
That Cookiedump is in:

Code: Select all

/var/www/html/typo3conf/ext/bootstrap_package/Resources/Private/Language/locallang.xlf
Edited there directly the code :-/
Quick'n'dirty, but I didnt get the code for constants in typo3. Do you have an idea changing it in backend by providing a codelet?

Another very important thing for now:
Kindly help me please with the following issue:
User-Accounts created during the checkout cannot successful login after creation, because they are not member of the testuser-group (renamed it to "Benutzergruppe")! How to archive this? After adding the missing group manually the login is possible immediately.
A user created from aimeos is looking in backend like this:
erroruser.png
erroruser.png (33.35 KiB) Viewed 2041 times

gr33tz

tenkraD
Advanced
Posts: 110
Joined: 25 Jul 2017, 08:38

Re: Localisation - Typo3/Bootstrap/Aimeos

Post by tenkraD » 23 Nov 2018, 20:59

for the language question:

this is no aimeos related question, better you ask the developer from boootstrap package, but this should do the job for you. install the german language and select it.
...
config {
sys_language_uid = 0
language = de
locale_all = de_DE.UTF-8
htmlTag_setParams = lang="de" dir="ltr" class="no-js"
}
...
then do bootstrap ts: page .theme.language.languageValue = de

User avatar
aimeos
Administrator
Posts: 7835
Joined: 01 Jan 1970, 00:00

Re: Localisation - Typo3/Bootstrap/Aimeos

Post by aimeos » 26 Nov 2018, 10:42

For assigning a group to new users use https://aimeos.org/docs/Configuration/C ... r/groupids:

Code: Select all

plugin.tx_aimeos.settings.controller.frontend.customer.groupids {
    0 = 123
}
You also have to set the PID of the sysfolder:

Code: Select all

plugin.tx_aimeos.settings.mshop.customer.manager.typo3.pid-default = 456
For more details have a look at https://aimeos.org/docs/TYPO3/Install_A ... etup_login
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

kranzfr3d
Posts: 12
Joined: 15 Nov 2018, 11:41

Re: Localisation - Typo3/Bootstrap/Aimeos

Post by kranzfr3d » 26 Nov 2018, 13:00

Hi,

thank you very much, my new user was successfully created with the correct group assignment now :-)


gr33tz

Post Reply