Initial Commit

This commit is contained in:
2019-11-21 12:25:31 +01:00
commit f4aabcb9b1
13959 changed files with 787761 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{default_translation_domain domain="comment.email.default"}
{default_locale locale={$locale}}
{loop type="comment" name="comment" id=$comment_id load_ref="1" ref_locale=$locale backend_context="1"}
<p>
{intl l='We inform you that a new customer comment has been posted for the %ref_type_title "%ref_title"'
ref_type_title={$REF_TYPE_TITLE|lower}
ref_title=$REF_TITLE
}
</p>
<p><strong>{intl l="Rating: "}</strong>{$RATING}</p>
<p><strong>{intl l="Title: "}</strong>{$TITLE}</p>
<p><strong>{intl l="Content: "}</strong><br>{$CONTENT}</p>
<p>
<a href="{url path="/admin/module/comment/update/$ID"}">
{intl l="You can now activate this comment by going to the comment management interface."}
</a>
</p>
{/loop}

View File

@@ -0,0 +1,19 @@
{default_translation_domain domain="comment.email.default"}
{default_locale locale={$locale}}
{loop type="comment" name="comment" id=$comment_id load_ref="1" ref_locale=$locale backend_context="1"}
{intl l='We inform you that a new customer comment has been posted for the %ref_type_title "%ref_title"'
ref_type_title={$REF_TYPE_TITLE|lower}
ref_title=$REF_TITLE
}
{intl l="Rating: "}{$RATING}
{intl l="Title: "}{$TITLE}
{intl l="Content: "}{$CONTENT}
{intl l="You can now activate this comment by going to the comment management interface: %comment_management_link"
comment_management_link={url path="/admin/module/comment/update/$ID"}
}
{/loop}

View File

@@ -0,0 +1,17 @@
{default_translation_domain domain="comment.email.default"}
{loop type="customer" name="customer.order" current="false" id=$customer_id backend_context="1"}
<p>{intl l="Dear" } {$LASTNAME} {$FIRSTNAME},</p>
{/loop}
<p>{intl l="Thank you for your order on our online store %store_name" store_name={config key="store_name"}}</p>
<p>{intl l="It would be great to share your thoughts on products with other customers."}</p>
<p>{intl l="You can post comments on this products: "}</p>
<ul>
{loop name="products" type="product" id={','|implode:$product_ids} lang=$lang_id}
<li><a href="{$URL}">{$TITLE}</a></li>
{/loop}
</ul>
<p>{intl l="Feel free to contact us for any further information"}</p>
<p>{intl l="Best Regards."}</p>

View File

@@ -0,0 +1,16 @@
{default_translation_domain domain="comment.email.default"}
{loop type="customer" name="customer.order" current="false" id=$customer_id backend_context="1"}
{intl l="Dear" } {$LASTNAME} {$FIRSTNAME},
{/loop}
{intl l="Thank you for your order on our online store %store_name" store_name={config key="store_name"}}
{intl l="It would be great to share your thoughts on products with other customers."}
{intl l="You can post comments on this products: "}
{loop name="products" type="product" id={','|implode:$product_ids} lang={$lang}}
- {$TITLE} : {$URL}
{/loop}
{intl l="Feel free to contact us for any further information"}
{intl l="Best Regards."}