Skip to Content
Menu
This question has been flagged
2 Replies
2715 Views

Hello!

This is my first time at this forum, I am using Odoo version 11 community.

I have some problems to find all of e-mail templates. I know that I can find some of them at Options => Technical => e-mail => templates.

For example: When I create a new project, Odoo send an e-mail to my administrator and I can't find it to translate to my language..


Where are the rest of the e-mail templates?


Thanks for your time

Avatar
Discard
Best Answer

Hello,

This email is send via code so you can find in Mail Module in Addons file name mail_template.xml

Check below template

<template id="message_user_assigned">
<p>Dear <t t-esc="object.user_id.sudo().name"/>,</p>
<p>You have been assigned to therrr <t t-esc="object._description.lower()"/> <t t-esc="object.name_get()[0][1]"/>.</p>
<p>
<a t-att-href="'/mail/view?model=%s&amp;res_id=%s' % (object._name, object.id)"
style="background-color: #9E588B; margin-top: 10px; padding: 10px; text-decoration: none; color: #fff; border-radius: 5px; font-size: 16px;">
View <t t-esc="object._description.lower()"/>
</a>
</p>
<p style="color:#9E588B;">Powered by <a target="_blank" href="https://www.odoo.com">Odoo</a>.</p>
</template>

Thanks
Avatar
Discard
Author Best Answer

Thanks you a lot, Manish Kumar Bohra.

I tried to translate all but I still can't. There is a t-esc that call a name that is always in english and I don't know how I can translate it. I am talking about this <t t-esc="object._description.lower()"/>

Do yo know where is it ?

Avatar
Discard