Page 1 of 1

How to change langues of english keywords

Posted: 30 May 2017, 16:12
by bill
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?

Re: How to change langues of english keywords

Posted: 30 May 2017, 20:37
by aimeos

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.

Re: How to change langues of english keywords

Posted: 31 May 2017, 19:01
by bill
works thanks