Where to translate Confirmation payment status

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!
User avatar
whatdaro
Posts: 42
Joined: 19 May 2021, 17:48

Where to translate Confirmation payment status

Post by whatdaro » 09 Dec 2021, 10:08

OS: linux
Aimeos ver: 2021.10.4
Database: MariaDB

Could you please advice where/how I can translate the payment status from "authorized" to "authorised".
I can see where it gets the value which is 5.
But from there I don't see where it translates that to "authorized".
I've tried adding a translation to shop.app for mshop/code.
But it does not work, thanks.

Kind Regards,

Jay

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

Re: Where to translate Confirmation payment status

Post by aimeos » 10 Dec 2021, 13:13

Insert this configuration into the "i18n" section of your config/shop.php:

Code: Select all

'i18n' => [
    'en' => [
        'mshop/code' => [
            'pay:5' => ['authorised']
        ],
    ],
],
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply