Version Description
- fix translation of date
Download this release
Release Info
Developer | zorem |
Plugin | Advanced Shipment Tracking for WooCommerce |
Version | 1.9.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.9.1.0 to 1.9.1.1
lang/woo-advanced-shipment-tracking.pot
CHANGED
@@ -269,11 +269,6 @@ msgstr ""
|
|
269 |
msgid "Tracking Number"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: templates/email/tracking-info.php:25 templates/myaccount/view-order.php:25
|
273 |
-
#: templates/myaccount/view-order.php:38
|
274 |
-
msgid "Date"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
#: templates/email/tracking-info.php:39
|
278 |
msgid "Status"
|
279 |
msgstr ""
|
269 |
msgid "Tracking Number"
|
270 |
msgstr ""
|
271 |
|
|
|
|
|
|
|
|
|
|
|
272 |
#: templates/email/tracking-info.php:39
|
273 |
msgid "Status"
|
274 |
msgstr ""
|
readme.txt
CHANGED
@@ -71,6 +71,9 @@ For all REST API functions, [please see our documentation](https://www.zorem.com
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 1.9.1.0 =
|
75 |
* Bug fix - Fix multisite issue
|
76 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 1.9.1.1 =
|
75 |
+
* fix translation of date
|
76 |
+
|
77 |
= 1.9.1.0 =
|
78 |
* Bug fix - Fix multisite issue
|
79 |
|
templates/emails/tracking-info.php
CHANGED
@@ -22,7 +22,7 @@ if ( $tracking_items ) : ?>
|
|
22 |
<tr>
|
23 |
<th class="tracking-provider" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Provider', 'woo-advanced-shipment-tracking' ); ?></th>
|
24 |
<th class="tracking-number" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?></th>
|
25 |
-
<th class="date-shipped" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Date', '
|
26 |
<th class="order-actions" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"> </th>
|
27 |
</tr>
|
28 |
</thead>
|
22 |
<tr>
|
23 |
<th class="tracking-provider" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Provider', 'woo-advanced-shipment-tracking' ); ?></th>
|
24 |
<th class="tracking-number" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?></th>
|
25 |
+
<th class="date-shipped" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"><?php _e( 'Date', 'woocommerce' ); ?></th>
|
26 |
<th class="order-actions" scope="col" class="td" style="text-align: center; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; color: #737373; border: 1px solid #e4e4e4; padding: 12px;"> </th>
|
27 |
</tr>
|
28 |
</thead>
|
templates/myaccount/view-order.php
CHANGED
@@ -22,7 +22,7 @@ if ( $tracking_items ) : ?>
|
|
22 |
<tr>
|
23 |
<th class="tracking-provider"><span class="nobr"><?php _e( 'Provider', 'woo-advanced-shipment-tracking' ); ?></span></th>
|
24 |
<th class="tracking-number"><span class="nobr"><?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?></span></th>
|
25 |
-
<th class="date-shipped"><span class="nobr"><?php _e( 'Date', '
|
26 |
<th class="order-actions"> </th>
|
27 |
</tr>
|
28 |
</thead>
|
@@ -35,7 +35,7 @@ if ( $tracking_items ) : ?>
|
|
35 |
<td class="tracking-number" data-title="<?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?>">
|
36 |
<?php echo esc_html( $tracking_item['tracking_number'] ); ?>
|
37 |
</td>
|
38 |
-
<td class="date-shipped" data-title="<?php _e( 'Date', '
|
39 |
<time datetime="<?php echo date( 'Y-m-d', $tracking_item['date_shipped'] ); ?>" title="<?php echo date( 'Y-m-d', $tracking_item['date_shipped'] ); ?>"><?php echo date_i18n( get_option( 'date_format' ), $tracking_item['date_shipped'] ); ?></time>
|
40 |
</td>
|
41 |
<td class="order-actions" style="text-align: center;">
|
22 |
<tr>
|
23 |
<th class="tracking-provider"><span class="nobr"><?php _e( 'Provider', 'woo-advanced-shipment-tracking' ); ?></span></th>
|
24 |
<th class="tracking-number"><span class="nobr"><?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?></span></th>
|
25 |
+
<th class="date-shipped"><span class="nobr"><?php _e( 'Date', 'woocommerce' ); ?></span></th>
|
26 |
<th class="order-actions"> </th>
|
27 |
</tr>
|
28 |
</thead>
|
35 |
<td class="tracking-number" data-title="<?php _e( 'Tracking Number', 'woo-advanced-shipment-tracking' ); ?>">
|
36 |
<?php echo esc_html( $tracking_item['tracking_number'] ); ?>
|
37 |
</td>
|
38 |
+
<td class="date-shipped" data-title="<?php _e( 'Date', 'woocommerce' ); ?>" style="text-align:left; white-space:nowrap;">
|
39 |
<time datetime="<?php echo date( 'Y-m-d', $tracking_item['date_shipped'] ); ?>" title="<?php echo date( 'Y-m-d', $tracking_item['date_shipped'] ); ?>"><?php echo date_i18n( get_option( 'date_format' ), $tracking_item['date_shipped'] ); ?></time>
|
40 |
</td>
|
41 |
<td class="order-actions" style="text-align: center;">
|
woocommerce-advanced-shipment-tracking.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: WooCommerce Advanced Shipment Tracking
|
5 |
* Plugin URI: http://www.zorem.com/shop
|
6 |
* Description: Add shipment tracking information to your WooCommerce orders and provide customers with an easy way to track their orders. Shipment tracking Info will appear in customers accounts (in the order panel) and in WooCommerce order complete email.
|
7 |
-
* Version: 1.9.1.
|
8 |
* Author: zorem
|
9 |
* Author URI: http://www.zorem.com/
|
10 |
* License: GPL-2.0+
|
@@ -20,7 +20,7 @@ class zorem_woocommerce_advanced_shipment_tracking {
|
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
-
public $version = '1.9.1.
|
24 |
|
25 |
/**
|
26 |
* Initialize the main plugin function
|
4 |
* Plugin Name: WooCommerce Advanced Shipment Tracking
|
5 |
* Plugin URI: http://www.zorem.com/shop
|
6 |
* Description: Add shipment tracking information to your WooCommerce orders and provide customers with an easy way to track their orders. Shipment tracking Info will appear in customers accounts (in the order panel) and in WooCommerce order complete email.
|
7 |
+
* Version: 1.9.1.1
|
8 |
* Author: zorem
|
9 |
* Author URI: http://www.zorem.com/
|
10 |
* License: GPL-2.0+
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
+
public $version = '1.9.1.1';
|
24 |
|
25 |
/**
|
26 |
* Initialize the main plugin function
|