Version Description
Updated labels in plugin settings
Download this release
Release Info
Developer | printful |
Plugin | Printful Integration for WooCommerce |
Version | 2.1.7 |
Comparing to | |
See all releases |
Code changes from version 2.1.6 to 2.1.7
- i18n/languages/printful.pot +9 -1
- includes/class-printful-admin-settings.php +2 -2
- printful-shipping.php +2 -2
- readme.txt +7 -1
i18n/languages/printful.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
-
"POT-Creation-Date: 2019-
|
6 |
"PO-Revision-Date: 2018-04-26 13:50+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -41,6 +41,14 @@ msgstr ""
|
|
41 |
msgid "Calculate sales tax"
|
42 |
msgstr ""
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#: includes/class-printful-admin-settings.php:46
|
45 |
msgid "Disable SSL"
|
46 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
+
"POT-Creation-Date: 2019-09-24 16:42+0300\n"
|
6 |
"PO-Revision-Date: 2018-04-26 13:50+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
41 |
msgid "Calculate sales tax"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/class-printful-admin-settings.php:40
|
45 |
+
#, php-format
|
46 |
+
msgid ""
|
47 |
+
"Calculated for all products listed on your store (including non-Printful "
|
48 |
+
"products) that ship to %s. Before enabling, make sure you are registered for "
|
49 |
+
"a seller permit in all these states."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
#: includes/class-printful-admin-settings.php:46
|
53 |
msgid "Disable SSL"
|
54 |
msgstr ""
|
includes/class-printful-admin-settings.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
|
4 |
class Printful_Admin_Settings {
|
5 |
-
|
6 |
public static $_instance;
|
7 |
const CARRIER_TYPE_STANDARD = 'standard';
|
8 |
const CARRIER_TYPE_EXPEDITED = 'expedited';
|
@@ -37,7 +37,7 @@ class Printful_Admin_Settings {
|
|
37 |
'title' => __( 'Calculate sales tax', 'printful' ),
|
38 |
'type' => 'checkbox',
|
39 |
'label' => sprintf(
|
40 |
-
'Calculated for all products
|
41 |
$sales_tax_link
|
42 |
),
|
43 |
'default' => 'no',
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
|
4 |
class Printful_Admin_Settings {
|
5 |
+
|
6 |
public static $_instance;
|
7 |
const CARRIER_TYPE_STANDARD = 'standard';
|
8 |
const CARRIER_TYPE_EXPEDITED = 'expedited';
|
37 |
'title' => __( 'Calculate sales tax', 'printful' ),
|
38 |
'type' => 'checkbox',
|
39 |
'label' => sprintf(
|
40 |
+
__('Calculated for all products listed on your store (including non-Printful products) that ship to %s. Before enabling, make sure you are registered for a seller permit in all these states.'),
|
41 |
$sales_tax_link
|
42 |
),
|
43 |
'default' => 'no',
|
printful-shipping.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Printful Integration for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
|
5 |
Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
|
6 |
-
Version: 2.1.
|
7 |
Author: Printful
|
8 |
Author URI: http://www.printful.com
|
9 |
License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -20,7 +20,7 @@ if ( ! defined( 'PF_PLUGIN_FILE' ) ) {
|
|
20 |
|
21 |
class Printful_Base {
|
22 |
|
23 |
-
const VERSION = '2.1.
|
24 |
const PF_HOST = 'https://www.printful.com/';
|
25 |
const PF_API_HOST = 'https://api.printful.com/';
|
26 |
|
3 |
Plugin Name: Printful Integration for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
|
5 |
Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
|
6 |
+
Version: 2.1.7
|
7 |
Author: Printful
|
8 |
Author URI: http://www.printful.com
|
9 |
License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
|
20 |
|
21 |
class Printful_Base {
|
22 |
|
23 |
+
const VERSION = '2.1.7';
|
24 |
const PF_HOST = 'https://www.printful.com/';
|
25 |
const PF_API_HOST = 'https://api.printful.com/';
|
26 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: woocommerce, printful, drop shipping, shipping, shipping rates, fulfillmen
|
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.2
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -65,6 +65,9 @@ Go to https://www.printful.com/dashboard/store , select your WooCommerce store,
|
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
|
|
|
|
|
|
|
68 |
= 2.1.6 =
|
69 |
Added the ability to change personalization popup title
|
70 |
|
@@ -160,6 +163,9 @@ First release
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
163 |
= 2.1.6 =
|
164 |
* Added the ability to change personalization popup title
|
165 |
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.2
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 2.1.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
|
68 |
+
= 2.1.7 =
|
69 |
+
Updated labels in plugin settings
|
70 |
+
|
71 |
= 2.1.6 =
|
72 |
Added the ability to change personalization popup title
|
73 |
|
163 |
|
164 |
== Changelog ==
|
165 |
|
166 |
+
= 2.1.7 =
|
167 |
+
* Updated labels in plugin settings
|
168 |
+
|
169 |
= 2.1.6 =
|
170 |
* Added the ability to change personalization popup title
|
171 |
|