Translate email order
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!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
- AleksandarJovanovic
- Posts: 53
- Joined: 01 Jun 2022, 21:26
Translate email order
Php 8.2
Linux
Version 2024.10.
Hi,
How to translate email of order information.
Example i want to translate Dear ... Thank you for your order 29 from 2024-10-29.
Where to put i18n folder in created packages to translate.
Thank you
Linux
Version 2024.10.
Hi,
How to translate email of order information.
Example i want to translate Dear ... Thank you for your order 29 from 2024-10-29.
Where to put i18n folder in created packages to translate.
Thank you
Re: Translate email order
You can find the original strings in the template file(s), e.g.:
https://github.com/aimeos/ai-controller ... /html.mjml
To translate the string, you have to create a PO file (e.g. "en.po" and use the header from the en.po file from the aimeos/ai-controller-jobs extension) and add:
Then, you have to compile the file to a binary MO file. For more details, please have a look here:
https://aimeos.org/docs/latest/developer/translations/
Alternatively, you can add the translation also to the ./config/shop.php file:
https://aimeos.org/docs/latest/laravel/ ... anslations
https://github.com/aimeos/ai-controller ... /html.mjml
To translate the string, you have to create a PO file (e.g. "en.po" and use the header from the en.po file from the aimeos/ai-controller-jobs extension) and add:
Code: Select all
msgid "Thank you for your order %1$s from %2$s."
msgstr "On %2$s we've received your order %1$s."
https://aimeos.org/docs/latest/developer/translations/
Alternatively, you can add the translation also to the ./config/shop.php file:
https://aimeos.org/docs/latest/laravel/ ... anslations
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, give us a star
If you like Aimeos, give us a star