Magento Translation - Emails

How are you going to change the name of the email in the second view of the language store. Example "New order" in a new order confirmation email. The csv files are unresponsive in this case ...

+2


source to share


2 answers


Another solution. You can copy the default email templates to the language folder you want to use and manually translate them.

  1. Copy everything app/locale/en_US/template

    to app/locale/[YOUR LANGUAGE CODE]/template

    .

    Change [YOUR LANGUAGE CODE]

    to the language code of the language you want. You can find the list here . Make sure it's in en_US

    .

  2. Change email templates in your folder app/locale/[YOUR LANGUAGE CODE]/template

    .

  3. In Magento go to System > Configuration > General

    . In the upper left corner, change Current Configuration Scope:

    to the repository you want to translate.

  4. Change Locale

    into language, translated from. It must match the correct language code used in your folders namespace.



NOTE. When editing your email template files, you will notice some comments at the top containing variables, etc. You will see something like <!--@subject Welcome, {{var customer.name}}! @-->

<!--@subject Welcome, {{var customer.name}}! @-->

. Changing this setting will change the theme used by Magento.

+5


source


You can simply create custom Transactional Emails that include the translations needed to browse the store.



  • Create a new email template for your store transactions. tongue. Scroll to System > Transactional Emails

    and press Add New Template

    . Download the default template you are trying to translate and change the subject and body of the email.

  • Go to System > Configuration > Sales Emails

    In the upper left corner of your configuration, go to the desired store view to which you want to assign these emails.

  • Change New Order Confirmation Template

    to the email transaction template you created. Click Save Config

    .

  • Items ordered from this store should now send an email with the translated email you created.

+1


source







All Articles