88. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2022-11-18 03:12:08 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

88.1 Files compared

#LocationFileLast Modified
1Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/emailorder_update.html2016-06-21 09:41:00 +0000
2Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/emailorder_update.html2022-11-02 03:46:42 +0000

88.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged1080
Changed725
Inserted11
Removed11

88.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

88.4 Active regular expressions

No regular expressions were active.

88.5 Comparison detail

1 <!-- 1 <!--
2 /** 2 /**
3  * Copyright © 2016 Magento
. All rights reserved.
 3  * Copyright © 
Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6 --> 6 -->
7 <!--@subject {{trans "Update to your %store_name order" store_name=$store.getFrontendName()}} @--> 7 <!--@subject {{trans "Update to your %store_name order" store_name=$store.frontend_name}} @-->
8 <!--@vars { 8 <!--@vars {
9 "var this.getUrl($store, 'customer/account/'
)":"Customer Account URL",
 9 "var this.getUrl($store,
'customer/account/',[_nosid:1])":"Customer Account URL",
10 "var order.getCustomerName()":"Customer Name", 10 "var order_data.customer_name":"Customer Name",
11 "var comment
":"Order Comment",
 11 "var comment|escape|nl2br":"Order Comment",
12 "var order.increment_id":"Order Id", 12 "var order.increment_id":"Order Id",
13 "var order.getStatusLabel()":"Order Status" 13 "var order_data.frontend_status_label":"Order Status",
    14 "var store.frontend_name":"Store Frontend Name",
    15 "var store_email":"Store Email",
    16 "var store_phone":"Store Phone",
    17 "var store_hours":"Store Hours"
14 } @--> 18 } @-->
15 {{template config_path="design/email/header_template"}} 19 {{template config_path="design/email/header_template"}}
16  20 
17 <table> 21 <table>
18     <tr class="email-intro"> 22     <tr class="email-intro">
19         <td> 23         <td>
20             <p class="greeting">{{trans "%name," name=$order.getCustomerName()}}</p> 24             <p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p>
21             <p> 25             <p>
22                 {{trans 26                 {{trans
23                     "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>." 27                     "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>."
24  28 
25                     increment_id=$order.increment_id 29                     increment_id=$order.increment_id
26                     order_status=$order.getStatusLabel() 30                     order_status=$order_data.frontend_status_label
27                 |raw}} 31                 |raw}}
28                 {{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}    
29             </p> 32             </p>
    33             <p>{{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}</p>
30             <p> 34             <p>
31                 {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>.' store_email=$store_email |raw}}
 35                 {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>
' store_email=$store_email |raw}}{{depend store_phone}} {{trans 'or call us at <a href="tel:%store_phone">%store_phone</a>' store_phone=$store_phone |raw}}{{/depend}}.
    36                 {{depend store_hours}}
    37                     {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}}
    38                 {{/depend}}
32             </p> 39             </p>
33         </td> 40         </td>
34     </tr> 41     </tr>
35     <tr class="email-information"> 42     <tr class="email-information">
36         <td> 43         <td>
37             {{depend comment}} 44             {{depend comment}}
38             <table class="message-info"> 45             <table class="message-info">
39                 <tr> 46                 <tr>
40                     <td> 47                     <td>
41                         {{var comment|escape|nl2br}} 48                         {{var comment|escape|nl2br}}
42                     </td> 49                     </td>
43                 </tr> 50                 </tr>
44             </table> 51             </table>
45             {{/depend}} 52             {{/depend}}
46         </td> 53         </td>
47     </tr> 54     </tr>
48 </table> 55 </table>
49  56 
50 {{template config_path="design/email/footer_template"}} 57 {{template config_path="design/email/footer_template"}}