How to change langues of english keywords

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
bill
Posts: 51
Joined: 24 Apr 2017, 17:51

How to change langues of english keywords

Post by bill » 30 May 2017, 16:12

Hi

I am trying to change couple of words in english , I am following this >> https://aimeos.org/docs/Laravel/Overwrite_translations

I opened my shop.php in config , I see there are couple of i18n array?

'i18n' => array(
),

and inside of

'frontend' => array(
'admin' => array(),
'client' => array(),
'controller' => array(),
'i18n' => array(),
'madmin' => array(),
'mshop' => array(),
),

How do I change the word from 'Basket' to >> 'Shopping Cart' and 'VAT' to 'TAX'?

I tried to change in the config/shop.php and it didn't work

could you please help?

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

Re: How to change langues of english keywords

Post by aimeos » 30 May 2017, 20:37

Code: Select all

'i18n' => array(
    'en' => array(
        'client' => array(
            'Basket' => array('Shopping cart'),
        ),
    ),
),
The content is cached in the session until the basket content changes.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

bill
Posts: 51
Joined: 24 Apr 2017, 17:51

Re: How to change langues of english keywords

Post by bill » 31 May 2017, 19:01

works thanks

Post Reply