Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="new-comment-notification-admin.html" server="51.254.220.106//web/" local="131351944800000000" remote="131378617800000000" />
<file name="new-comment-notification-admin.txt" server="51.254.220.106//web/" local="131351944800000000" remote="131378617800000000" />
<file name="request-customer-comment.html" server="51.254.220.106//web/" local="131351944800000000" remote="131378617800000000" />
<file name="request-customer-comment.txt" server="51.254.220.106//web/" local="131351944800000000" remote="131378617800000000" />
</dwsync>

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."}