Version Description
- 2017-10-10 =
- Added support for WooCommerce 3.2
- Dropped support for WooCommerce 2.5.x (the plugin may still work but we do not declare official support)
Download this release
Release Info
Developer | wpdesk |
Plugin | Flexible Checkout Fields for WooCommerce – WooCommerce Checkout Manager |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
- class/tracker.php +5 -3
- class/views/settings-tabs.php +1 -1
- flexible-checkout-fields.php +9 -13
- inc/wpdesk-tracker/class-wpdesk-tracker.php +11 -0
- inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.mo +0 -0
- inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.po +32 -14
- inc/wpdesk-tracker/views/tracker-notice.php +8 -2
- lang/flexible-checkout-fields-pl_PL.mo +0 -0
- lang/flexible-checkout-fields-pl_PL.po +70 -44
- readme.txt +8 -4
class/tracker.php
CHANGED
@@ -127,7 +127,7 @@ if ( ! class_exists( 'WPDesk_Flexible_Checkout_Fields_Tracker' ) ) {
|
|
127 |
}
|
128 |
|
129 |
public function plugin_action_links( $links ) {
|
130 |
-
if ( !wpdesk_tracker_enabled() ) {
|
131 |
return $links;
|
132 |
}
|
133 |
$options = get_option('wpdesk_helper_options', array() );
|
@@ -163,8 +163,10 @@ if ( ! class_exists( 'WPDesk_Flexible_Checkout_Fields_Tracker' ) ) {
|
|
163 |
if ( $options['wpdesk_tracker_agree'] == '0' && $wpdesk_tracker_skip_plugin == '0' ) {
|
164 |
update_option( 'wpdesk_tracker_notice', '1' );
|
165 |
update_option( 'wpdesk_tracker_skip_flexible_checkout_fields', '1' );
|
166 |
-
|
167 |
-
|
|
|
|
|
168 |
}
|
169 |
}
|
170 |
}
|
127 |
}
|
128 |
|
129 |
public function plugin_action_links( $links ) {
|
130 |
+
if ( !wpdesk_tracker_enabled() || apply_filters( 'wpdesk_tracker_do_not_ask', false ) ) {
|
131 |
return $links;
|
132 |
}
|
133 |
$options = get_option('wpdesk_helper_options', array() );
|
163 |
if ( $options['wpdesk_tracker_agree'] == '0' && $wpdesk_tracker_skip_plugin == '0' ) {
|
164 |
update_option( 'wpdesk_tracker_notice', '1' );
|
165 |
update_option( 'wpdesk_tracker_skip_flexible_checkout_fields', '1' );
|
166 |
+
if ( !apply_filters( 'wpdesk_tracker_do_not_ask', false ) ) {
|
167 |
+
wp_redirect( admin_url( 'admin.php?page=wpdesk_tracker&plugin=flexible-checkout-fields/flexible-checkout-fields.php' ) );
|
168 |
+
exit;
|
169 |
+
}
|
170 |
}
|
171 |
}
|
172 |
}
|
class/views/settings-tabs.php
CHANGED
@@ -5,4 +5,4 @@
|
|
5 |
<?php endforeach; ?>
|
6 |
</h2>
|
7 |
|
8 |
-
<p><?php _e( 'Read the <a href="https://www.wpdesk.net/docs/flexible-checkout-fields-docs
|
5 |
<?php endforeach; ?>
|
6 |
</h2>
|
7 |
|
8 |
+
<p><?php _e( 'Read the <a href="https://www.wpdesk.net/docs/flexible-checkout-fields-docs/?utm_source=flexible-checkout-fields-settings&utm_medium=link&utm_campaign=flexible-checkout-fields-docs-link" target="_blank">configuration manual →', 'flexible-checkout-fields' ); ?></a></p>
|
flexible-checkout-fields.php
CHANGED
@@ -3,11 +3,15 @@
|
|
3 |
Plugin Name: Flexible Checkout Fields
|
4 |
Plugin URI: https://www.wpdesk.net/products/flexible-checkout-fields-pro-woocommerce/
|
5 |
Description: Manage your WooCommerce checkout fields. Change order, labels, placeholders and add new fields.
|
6 |
-
Version: 1.5.
|
7 |
Author: WP Desk
|
8 |
Author URI: https://www.wpdesk.net/
|
9 |
Text Domain: flexible-checkout-fields
|
10 |
Domain Path: /lang/
|
|
|
|
|
|
|
|
|
11 |
|
12 |
Copyright 2017 WP Desk Ltd.
|
13 |
|
@@ -897,9 +901,12 @@
|
|
897 |
*/
|
898 |
public function linksFilter( $links ) {
|
899 |
|
|
|
|
|
|
|
900 |
$plugin_links = array(
|
901 |
'<a href="' . admin_url( 'admin.php?page=inspire_checkout_fields_settings') . '">' . __( 'Settings', 'flexible-checkout-fields' ) . '</a>',
|
902 |
-
'<a href="' .
|
903 |
'<a href="https://wordpress.org/support/plugin/flexible-checkout-fields/">' . __( 'Support', 'flexible-checkout-fields' ) . '</a>',
|
904 |
);
|
905 |
|
@@ -968,17 +975,6 @@
|
|
968 |
}
|
969 |
}
|
970 |
|
971 |
-
if ( !function_exists( 'wpdesk_tracker_enabled' ) ) {
|
972 |
-
function wpdesk_tracker_enabled() {
|
973 |
-
$tracker_enabled = true;
|
974 |
-
if ( !empty( $_SERVER['SERVER_ADDR'] ) && $_SERVER['SERVER_ADDR'] == '127.0.0.1' ) {
|
975 |
-
$tracker_enabled = false;
|
976 |
-
}
|
977 |
-
return apply_filters( 'wpdesk_tracker_enabled', $tracker_enabled );
|
978 |
-
// add_filter( 'wpdesk_tracker_enabled', '__return_true' );
|
979 |
-
}
|
980 |
-
}
|
981 |
-
|
982 |
add_action( 'plugins_loaded', 'flexible_chekout_fields_plugins_loaded', 9 );
|
983 |
function flexible_chekout_fields_plugins_loaded() {
|
984 |
if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
3 |
Plugin Name: Flexible Checkout Fields
|
4 |
Plugin URI: https://www.wpdesk.net/products/flexible-checkout-fields-pro-woocommerce/
|
5 |
Description: Manage your WooCommerce checkout fields. Change order, labels, placeholders and add new fields.
|
6 |
+
Version: 1.5.3
|
7 |
Author: WP Desk
|
8 |
Author URI: https://www.wpdesk.net/
|
9 |
Text Domain: flexible-checkout-fields
|
10 |
Domain Path: /lang/
|
11 |
+
Requires at least: 4.5
|
12 |
+
Tested up to: 4.9
|
13 |
+
WC requires at least: 2.6.14
|
14 |
+
WC tested up to: 3.2.0
|
15 |
|
16 |
Copyright 2017 WP Desk Ltd.
|
17 |
|
901 |
*/
|
902 |
public function linksFilter( $links ) {
|
903 |
|
904 |
+
$docs_link = __( 'https://www.wpdesk.net/docs/flexible-checkout-fields-pro-woocommerce-docs/', 'flexible-checkout-fields' );
|
905 |
+
$docs_link .= '?utm_source=wp-admin-plugins&utm_medium=quick-link&utm_campaign=flexible-checkout-fields-docs-link';
|
906 |
+
|
907 |
$plugin_links = array(
|
908 |
'<a href="' . admin_url( 'admin.php?page=inspire_checkout_fields_settings') . '">' . __( 'Settings', 'flexible-checkout-fields' ) . '</a>',
|
909 |
+
'<a href="' . $docs_link . '">' . __( 'Docs', 'flexible-checkout-fields' ) . '</a>',
|
910 |
'<a href="https://wordpress.org/support/plugin/flexible-checkout-fields/">' . __( 'Support', 'flexible-checkout-fields' ) . '</a>',
|
911 |
);
|
912 |
|
975 |
}
|
976 |
}
|
977 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
add_action( 'plugins_loaded', 'flexible_chekout_fields_plugins_loaded', 9 );
|
979 |
function flexible_chekout_fields_plugins_loaded() {
|
980 |
if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
inc/wpdesk-tracker/class-wpdesk-tracker.php
CHANGED
@@ -25,6 +25,8 @@ if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
|
25 |
|
26 |
public static $dismiss_coupon = false;
|
27 |
|
|
|
|
|
28 |
/**
|
29 |
* URL to the WP Desk Tracker API endpoint.
|
30 |
* @var string
|
@@ -58,6 +60,8 @@ if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
|
58 |
add_filter( 'wpdesk_tracker_data', array( __CLASS__, 'wpdesk_tracker_data_orders_per_month' ) );
|
59 |
add_filter( 'wpdesk_tracker_data', array( __CLASS__, 'wpdesk_tracker_data_shipping_methods_in_zones' ) );
|
60 |
|
|
|
|
|
61 |
global $pagenow;
|
62 |
if ( 'plugins.php' === $pagenow ) {
|
63 |
add_action( 'admin_footer', array( __CLASS__, 'admin_footer' ) );
|
@@ -249,6 +253,7 @@ if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
|
249 |
$user = wp_get_current_user();
|
250 |
$username = $user->first_name ? $user->first_name : $user->user_login;
|
251 |
$terms_url = get_locale() == 'pl_PL' ? 'https://www.wpdesk.pl/dane-uzytkowania/' : 'https://www.wpdesk.net/usage-tracking/';
|
|
|
252 |
include( 'views/tracker-notice.php' );
|
253 |
}
|
254 |
}
|
@@ -432,6 +437,12 @@ if ( !class_exists( 'WPDesk_Tracker' ) ) {
|
|
432 |
return $data;
|
433 |
}
|
434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
|
436 |
public static function send_deactivation_data() {
|
437 |
|
25 |
|
26 |
public static $dismiss_coupon = false;
|
27 |
|
28 |
+
public static $message_version = '3';
|
29 |
+
|
30 |
/**
|
31 |
* URL to the WP Desk Tracker API endpoint.
|
32 |
* @var string
|
60 |
add_filter( 'wpdesk_tracker_data', array( __CLASS__, 'wpdesk_tracker_data_orders_per_month' ) );
|
61 |
add_filter( 'wpdesk_tracker_data', array( __CLASS__, 'wpdesk_tracker_data_shipping_methods_in_zones' ) );
|
62 |
|
63 |
+
add_filter( 'wpdesk_tracker_data', array( __CLASS__, 'wpdesk_tracker_message_version' ) );
|
64 |
+
|
65 |
global $pagenow;
|
66 |
if ( 'plugins.php' === $pagenow ) {
|
67 |
add_action( 'admin_footer', array( __CLASS__, 'admin_footer' ) );
|
253 |
$user = wp_get_current_user();
|
254 |
$username = $user->first_name ? $user->first_name : $user->user_login;
|
255 |
$terms_url = get_locale() == 'pl_PL' ? 'https://www.wpdesk.pl/dane-uzytkowania/' : 'https://www.wpdesk.net/usage-tracking/';
|
256 |
+
$shop_url = get_locale() == 'pl_PL' ? 'https://www.wpdesk.pl/' : 'https://www.wpdesk.net/';
|
257 |
include( 'views/tracker-notice.php' );
|
258 |
}
|
259 |
}
|
437 |
return $data;
|
438 |
}
|
439 |
|
440 |
+
public static function wpdesk_tracker_message_version( $data ) {
|
441 |
+
|
442 |
+
$data['message_version'] = self::$message_version;
|
443 |
+
|
444 |
+
return $data;
|
445 |
+
}
|
446 |
|
447 |
public static function send_deactivation_data() {
|
448 |
|
inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.mo
CHANGED
Binary file
|
inc/wpdesk-tracker/lang/wpdesk-tracker-pl_PL.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Desk Tracker\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.0.
|
13 |
"X-Poedit-Basepath: ../..\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
15 |
"|| n%100>=20) ? 1 : 2);\n"
|
@@ -22,13 +22,13 @@ msgstr ""
|
|
22 |
|
23 |
#: wpdesk-tracker/views/tracker-connect.php:7
|
24 |
#: wpdesk-tracker/views/tracker-notice.php:5
|
25 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
26 |
#, php-format
|
27 |
msgid "Hey %s,"
|
28 |
msgstr "Hej %s,"
|
29 |
|
30 |
#: wpdesk-tracker/views/tracker-connect.php:8
|
31 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
32 |
msgid ""
|
33 |
"Please help us improve our plugins! If you opt-in, we will collect some non-"
|
34 |
"sensitive data and usage information. If you skip this, that's okay! All "
|
@@ -85,8 +85,7 @@ msgstr ""
|
|
85 |
"rezygnacja"
|
86 |
|
87 |
#: wpdesk-tracker/views/tracker-connect.php:54
|
88 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
89 |
-
#: wpdesk-tracker/views/tracker-notice.php:18
|
90 |
msgid "Find out more »"
|
91 |
msgstr "Dowiedz się więcej »"
|
92 |
|
@@ -151,16 +150,28 @@ msgstr "Anuluj"
|
|
151 |
msgid "Submit & Deactivate"
|
152 |
msgstr "Wyślij i dezaktywuj"
|
153 |
|
154 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
|
|
155 |
msgid ""
|
156 |
-
"
|
157 |
-
"
|
|
|
|
|
|
|
|
|
|
|
158 |
msgstr ""
|
159 |
-
"
|
160 |
-
"strong>
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
163 |
-
#: wpdesk-tracker/views/tracker-notice.php:
|
164 |
msgid "Allow"
|
165 |
msgstr "Pozwól"
|
166 |
|
@@ -173,6 +184,13 @@ msgstr ""
|
|
173 |
"została przyjęta. Jeśli zmienisz zdanie, zawsze możesz włączyć zgodę poprzez "
|
174 |
"szybkie linki w menu wtyczek."
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
#~ msgid ""
|
177 |
#~ "Allow WP Desk to collect plugin usage information and <strong>get "
|
178 |
#~ "discount coupon</strong> in our shop. No sensitive data is tracked."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Desk Tracker\n"
|
4 |
+
"POT-Creation-Date: 2017-10-04 17:34+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-04 17:36+0200\n"
|
6 |
"Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.0.3\n"
|
13 |
"X-Poedit-Basepath: ../..\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
15 |
"|| n%100>=20) ? 1 : 2);\n"
|
22 |
|
23 |
#: wpdesk-tracker/views/tracker-connect.php:7
|
24 |
#: wpdesk-tracker/views/tracker-notice.php:5
|
25 |
+
#: wpdesk-tracker/views/tracker-notice.php:22
|
26 |
#, php-format
|
27 |
msgid "Hey %s,"
|
28 |
msgstr "Hej %s,"
|
29 |
|
30 |
#: wpdesk-tracker/views/tracker-connect.php:8
|
31 |
+
#: wpdesk-tracker/views/tracker-notice.php:23
|
32 |
msgid ""
|
33 |
"Please help us improve our plugins! If you opt-in, we will collect some non-"
|
34 |
"sensitive data and usage information. If you skip this, that's okay! All "
|
85 |
"rezygnacja"
|
86 |
|
87 |
#: wpdesk-tracker/views/tracker-connect.php:54
|
88 |
+
#: wpdesk-tracker/views/tracker-notice.php:24
|
|
|
89 |
msgid "Find out more »"
|
90 |
msgstr "Dowiedz się więcej »"
|
91 |
|
150 |
msgid "Submit & Deactivate"
|
151 |
msgstr "Wyślij i dezaktywuj"
|
152 |
|
153 |
+
#: wpdesk-tracker/views/tracker-notice.php:8
|
154 |
+
#, php-format
|
155 |
msgid ""
|
156 |
+
"We need your help to improve <strong>WP Desk plugins</strong>, so they are "
|
157 |
+
"more useful for you and the rest of <strong>10,000+ users</strong>. By "
|
158 |
+
"collecting data on how you use our plugins, you will help us a lot. We will "
|
159 |
+
"not collect any sensitive data, so you can feel safe. As a thank you for "
|
160 |
+
"your consent, we will send you a <strong>discount coupon</strong> for %sWP "
|
161 |
+
"Desk plugins%s, which you can use yourself or share with others. %sFind out "
|
162 |
+
"more »%s"
|
163 |
msgstr ""
|
164 |
+
"Potrzebujemy Twojej pomocy, aby dalej rozwijać <strong>wtyczki WP Desk</"
|
165 |
+
"strong> i były one jeszcze bardziej pomocne dla Ciebie i pozostałych ponad "
|
166 |
+
"<strong>10 000 użytkowników</strong>. Zbierając dane na temat tego jak "
|
167 |
+
"korzystasz z naszych wtyczek bardzo nam w tym pomożesz. Nie będziemy zbierać "
|
168 |
+
"żadnych danych wrażliwych, więc możesz czuć się bezpiecznie. W zamian za "
|
169 |
+
"Twoją zgodę otrzymasz <strong>kupon rabatowy</strong> na %swtyczki WP Desk"
|
170 |
+
"%s, który możesz wykorzystać sam lub podzielić się z innymi. %sDowiedz się "
|
171 |
+
"więcej »%s"
|
172 |
|
173 |
+
#: wpdesk-tracker/views/tracker-notice.php:16
|
174 |
+
#: wpdesk-tracker/views/tracker-notice.php:27
|
175 |
msgid "Allow"
|
176 |
msgstr "Pozwól"
|
177 |
|
184 |
"została przyjęta. Jeśli zmienisz zdanie, zawsze możesz włączyć zgodę poprzez "
|
185 |
"szybkie linki w menu wtyczek."
|
186 |
|
187 |
+
#~ msgid ""
|
188 |
+
#~ "Please help us improve our plugins and get a <strong>20% discount "
|
189 |
+
#~ "coupon</strong> for <strong>WP Desk</strong> plugins."
|
190 |
+
#~ msgstr ""
|
191 |
+
#~ "Pomóż nam ulepszyć nasze wtyczki i otrzymaj <strong>kupon rabatowy 20%"
|
192 |
+
#~ "</strong> na kolejne zakupy w <strong>WP Desk</strong>."
|
193 |
+
|
194 |
#~ msgid ""
|
195 |
#~ "Allow WP Desk to collect plugin usage information and <strong>get "
|
196 |
#~ "discount coupon</strong> in our shop. No sensitive data is tracked."
|
inc/wpdesk-tracker/views/tracker-notice.php
CHANGED
@@ -3,8 +3,14 @@
|
|
3 |
<div id="wpdesk_tracker_notice_coupon" class="updated notice wpdesk_tracker_notice is-dismissible">
|
4 |
<p>
|
5 |
<?php printf ( __( 'Hey %s,', 'wpdesk-tracker'), $username ); ?><br/>
|
6 |
-
<?php
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
</p>
|
9 |
<p>
|
10 |
<button id="wpdesk_tracker_allow_coupon_button_notice" class="button button-primary"><?php _e( 'Allow', 'wpdesk-tracker' ); ?></button>
|
3 |
<div id="wpdesk_tracker_notice_coupon" class="updated notice wpdesk_tracker_notice is-dismissible">
|
4 |
<p>
|
5 |
<?php printf ( __( 'Hey %s,', 'wpdesk-tracker'), $username ); ?><br/>
|
6 |
+
<?php
|
7 |
+
printf(
|
8 |
+
__( 'We need your help to improve <strong>WP Desk plugins</strong>, so they are more useful for you and the rest of <strong>10,000+ users</strong>. By collecting data on how you use our plugins, you will help us a lot. We will not collect any sensitive data, so you can feel safe. As a thank you for your consent, we will send you a <strong>discount coupon</strong> for %sWP Desk plugins%s, which you can use yourself or share with others. %sFind out more »%s', 'wpdesk-tracker' ),
|
9 |
+
'<a target="_blank" href="' . $shop_url . '?utm_source=tracker&utm_medium=link&utm_campaign=tracker-coupon-message-v3">',
|
10 |
+
'</a>',
|
11 |
+
'<a target="_blank" href="' . $terms_url . '?utm_source=tracker&utm_medium=link&utm_campaign=tracker-shop-link">',
|
12 |
+
'</a>'
|
13 |
+
); ?>
|
14 |
</p>
|
15 |
<p>
|
16 |
<button id="wpdesk_tracker_allow_coupon_button_notice" class="button button-primary"><?php _e( 'Allow', 'wpdesk-tracker' ); ?></button>
|
lang/flexible-checkout-fields-pl_PL.mo
CHANGED
Binary file
|
lang/flexible-checkout-fields-pl_PL.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Flexible Checkout Fields\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
|
7 |
"Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.0.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: flexible-checkout-fields.php\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
@@ -71,7 +71,7 @@ msgstr ""
|
|
71 |
"Notatka do twojego zamówienia, np. informacje o dostarczeniu przesyłki."
|
72 |
|
73 |
#: class/inspireCheckoutFieldsSettings.php:136
|
74 |
-
#: class/views/settings-settings.php:11 flexible-checkout-fields.php:
|
75 |
msgid "Settings"
|
76 |
msgstr "Ustawienia"
|
77 |
|
@@ -302,121 +302,126 @@ msgstr ""
|
|
302 |
|
303 |
#: class/views/settings-tabs.php:8
|
304 |
msgid ""
|
305 |
-
"Read the <a href=\"https://www.wpdesk.net/docs/flexible-checkout-fields-
|
306 |
-
"
|
|
|
|
|
307 |
msgstr ""
|
308 |
"Przeczytaj <a href=\"https://www.wpdesk.pl/docs/woocommerce-checkout-fields-"
|
309 |
-
"docs
|
|
|
|
|
310 |
|
311 |
-
#: flexible-checkout-fields.php:
|
312 |
msgid "Billing"
|
313 |
msgstr "Płatność"
|
314 |
|
315 |
-
#: flexible-checkout-fields.php:
|
316 |
msgid "Shipping"
|
317 |
msgstr "Wysyłka"
|
318 |
|
319 |
-
#: flexible-checkout-fields.php:
|
320 |
msgid "Order"
|
321 |
msgstr "Zamówienie"
|
322 |
|
323 |
-
#: flexible-checkout-fields.php:
|
324 |
msgid "Single Line Text"
|
325 |
msgstr "Pojedyncza linia (input)"
|
326 |
|
327 |
-
#: flexible-checkout-fields.php:
|
328 |
msgid "Paragraph Text"
|
329 |
msgstr "Obszar tekstowy (textarea)"
|
330 |
|
331 |
-
#: flexible-checkout-fields.php:
|
332 |
msgid "Checkbox"
|
333 |
msgstr "Wybór (checkbox)"
|
334 |
|
335 |
-
#: flexible-checkout-fields.php:
|
336 |
msgid "Radio button"
|
337 |
msgstr "Wybór (radio)"
|
338 |
|
339 |
-
#: flexible-checkout-fields.php:
|
340 |
msgid "Select (Drop Down)"
|
341 |
msgstr "Lista rozwijana (select)"
|
342 |
|
343 |
-
#: flexible-checkout-fields.php:
|
344 |
msgid "Date"
|
345 |
msgstr "Data"
|
346 |
|
347 |
-
#: flexible-checkout-fields.php:
|
348 |
msgid "Time"
|
349 |
msgstr "Czas"
|
350 |
|
351 |
-
#: flexible-checkout-fields.php:
|
352 |
msgid "Color Picker"
|
353 |
msgstr "Wybór koloru"
|
354 |
|
355 |
-
#: flexible-checkout-fields.php:
|
356 |
msgid "Headline"
|
357 |
msgstr "Nagłówek"
|
358 |
|
359 |
-
#: flexible-checkout-fields.php:
|
360 |
msgid "HTML"
|
361 |
msgstr "HTML"
|
362 |
|
363 |
-
#: flexible-checkout-fields.php:
|
364 |
msgid "File Upload"
|
365 |
msgstr "Przesyłanie pliku"
|
366 |
|
367 |
-
#: flexible-checkout-fields.php:
|
368 |
msgid "Uploading file..."
|
369 |
msgstr "Przesyłanie plik..."
|
370 |
|
371 |
-
#: flexible-checkout-fields.php:
|
372 |
msgid "Close"
|
373 |
msgstr "Zamknij"
|
374 |
|
375 |
-
#: flexible-checkout-fields.php:
|
376 |
msgid "Today"
|
377 |
msgstr "Dzisiaj"
|
378 |
|
379 |
-
#: flexible-checkout-fields.php:
|
380 |
msgid "Next"
|
381 |
msgstr "Następny"
|
382 |
|
383 |
-
#: flexible-checkout-fields.php:
|
384 |
msgid "Previous"
|
385 |
msgstr "Poprzedni"
|
386 |
|
387 |
-
#: flexible-checkout-fields.php:
|
388 |
msgid "Additional Information"
|
389 |
msgstr "Dodatkowe informacje"
|
390 |
|
391 |
-
#: flexible-checkout-fields.php:
|
392 |
-
msgid "
|
|
|
393 |
msgstr "https://www.wpdesk.pl/docs/woocommerce-checkout-fields-docs/"
|
394 |
|
395 |
-
#: flexible-checkout-fields.php:
|
396 |
msgid "Docs"
|
397 |
msgstr "Docs"
|
398 |
|
399 |
-
#: flexible-checkout-fields.php:
|
400 |
msgid "Support"
|
401 |
msgstr "Wsparcie"
|
402 |
|
403 |
-
#: flexible-checkout-fields.php:
|
404 |
msgid "Upgrade"
|
405 |
msgstr "Kup PRO"
|
406 |
|
407 |
-
#: flexible-checkout-fields.php:
|
408 |
msgid "Advanced"
|
409 |
msgstr "Zaawansowane"
|
410 |
|
411 |
#: inc/wpdesk-tracker/views/tracker-connect.php:7
|
412 |
#: inc/wpdesk-tracker/views/tracker-notice.php:5
|
413 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
414 |
#, php-format
|
415 |
msgid "Hey %s,"
|
416 |
msgstr "Hej %s,"
|
417 |
|
418 |
#: inc/wpdesk-tracker/views/tracker-connect.php:8
|
419 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
420 |
msgid ""
|
421 |
"Please help us improve our plugins! If you opt-in, we will collect some non-"
|
422 |
"sensitive data and usage information. If you skip this, that's okay! All "
|
@@ -473,8 +478,7 @@ msgstr ""
|
|
473 |
"rezygnacja"
|
474 |
|
475 |
#: inc/wpdesk-tracker/views/tracker-connect.php:54
|
476 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
477 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:18
|
478 |
msgid "Find out more »"
|
479 |
msgstr "Dowiedz się więcej »"
|
480 |
|
@@ -539,16 +543,28 @@ msgstr "Anuluj"
|
|
539 |
msgid "Submit & Deactivate"
|
540 |
msgstr "Wyślij i dezaktywuj"
|
541 |
|
542 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
|
|
543 |
msgid ""
|
544 |
-
"
|
545 |
-
"
|
|
|
|
|
|
|
|
|
|
|
546 |
msgstr ""
|
547 |
-
"
|
548 |
-
"strong>
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
|
550 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
551 |
-
#: inc/wpdesk-tracker/views/tracker-notice.php:
|
552 |
msgid "Allow"
|
553 |
msgstr "Pozwól"
|
554 |
|
@@ -590,6 +606,16 @@ msgstr "WP Desk"
|
|
590 |
msgid "https://www.wpdesk.net/"
|
591 |
msgstr "https://www.wpdesk.pl/"
|
592 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
#~ msgid ""
|
594 |
#~ "Allow WP Desk to collect plugin usage information and <strong>get "
|
595 |
#~ "discount coupon</strong> in our shop. No sensitive data is tracked."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Flexible Checkout Fields\n"
|
4 |
+
"POT-Creation-Date: 2017-10-10 13:36+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-10 13:37+0200\n"
|
6 |
"Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
|
7 |
"Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.0.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: flexible-checkout-fields.php\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
71 |
"Notatka do twojego zamówienia, np. informacje o dostarczeniu przesyłki."
|
72 |
|
73 |
#: class/inspireCheckoutFieldsSettings.php:136
|
74 |
+
#: class/views/settings-settings.php:11 flexible-checkout-fields.php:908
|
75 |
msgid "Settings"
|
76 |
msgstr "Ustawienia"
|
77 |
|
302 |
|
303 |
#: class/views/settings-tabs.php:8
|
304 |
msgid ""
|
305 |
+
"Read the <a href=\"https://www.wpdesk.net/docs/flexible-checkout-fields-"
|
306 |
+
"docs/?utm_source=flexible-checkout-fields-"
|
307 |
+
"settings&utm_medium=link&utm_campaign=flexible-checkout-fields-docs-link\" "
|
308 |
+
"target=\"_blank\">configuration manual →"
|
309 |
msgstr ""
|
310 |
"Przeczytaj <a href=\"https://www.wpdesk.pl/docs/woocommerce-checkout-fields-"
|
311 |
+
"docs/?utm_source=flexible-checkout-fields-"
|
312 |
+
"settings&utm_medium=link&utm_campaign=flexible-checkout-fields-docs-link\" "
|
313 |
+
"target=\"_blank\">instrukcję konfiguracji →"
|
314 |
|
315 |
+
#: flexible-checkout-fields.php:169
|
316 |
msgid "Billing"
|
317 |
msgstr "Płatność"
|
318 |
|
319 |
+
#: flexible-checkout-fields.php:175
|
320 |
msgid "Shipping"
|
321 |
msgstr "Wysyłka"
|
322 |
|
323 |
+
#: flexible-checkout-fields.php:181
|
324 |
msgid "Order"
|
325 |
msgstr "Zamówienie"
|
326 |
|
327 |
+
#: flexible-checkout-fields.php:197
|
328 |
msgid "Single Line Text"
|
329 |
msgstr "Pojedyncza linia (input)"
|
330 |
|
331 |
+
#: flexible-checkout-fields.php:201
|
332 |
msgid "Paragraph Text"
|
333 |
msgstr "Obszar tekstowy (textarea)"
|
334 |
|
335 |
+
#: flexible-checkout-fields.php:209
|
336 |
msgid "Checkbox"
|
337 |
msgstr "Wybór (checkbox)"
|
338 |
|
339 |
+
#: flexible-checkout-fields.php:214
|
340 |
msgid "Radio button"
|
341 |
msgstr "Wybór (radio)"
|
342 |
|
343 |
+
#: flexible-checkout-fields.php:219
|
344 |
msgid "Select (Drop Down)"
|
345 |
msgstr "Lista rozwijana (select)"
|
346 |
|
347 |
+
#: flexible-checkout-fields.php:224
|
348 |
msgid "Date"
|
349 |
msgstr "Data"
|
350 |
|
351 |
+
#: flexible-checkout-fields.php:229
|
352 |
msgid "Time"
|
353 |
msgstr "Czas"
|
354 |
|
355 |
+
#: flexible-checkout-fields.php:234
|
356 |
msgid "Color Picker"
|
357 |
msgstr "Wybór koloru"
|
358 |
|
359 |
+
#: flexible-checkout-fields.php:239
|
360 |
msgid "Headline"
|
361 |
msgstr "Nagłówek"
|
362 |
|
363 |
+
#: flexible-checkout-fields.php:244
|
364 |
msgid "HTML"
|
365 |
msgstr "HTML"
|
366 |
|
367 |
+
#: flexible-checkout-fields.php:249
|
368 |
msgid "File Upload"
|
369 |
msgstr "Przesyłanie pliku"
|
370 |
|
371 |
+
#: flexible-checkout-fields.php:337
|
372 |
msgid "Uploading file..."
|
373 |
msgstr "Przesyłanie plik..."
|
374 |
|
375 |
+
#: flexible-checkout-fields.php:368
|
376 |
msgid "Close"
|
377 |
msgstr "Zamknij"
|
378 |
|
379 |
+
#: flexible-checkout-fields.php:369
|
380 |
msgid "Today"
|
381 |
msgstr "Dzisiaj"
|
382 |
|
383 |
+
#: flexible-checkout-fields.php:372
|
384 |
msgid "Next"
|
385 |
msgstr "Następny"
|
386 |
|
387 |
+
#: flexible-checkout-fields.php:373
|
388 |
msgid "Previous"
|
389 |
msgstr "Poprzedni"
|
390 |
|
391 |
+
#: flexible-checkout-fields.php:712 flexible-checkout-fields.php:870
|
392 |
msgid "Additional Information"
|
393 |
msgstr "Dodatkowe informacje"
|
394 |
|
395 |
+
#: flexible-checkout-fields.php:904
|
396 |
+
msgid ""
|
397 |
+
"https://www.wpdesk.net/docs/flexible-checkout-fields-pro-woocommerce-docs/"
|
398 |
msgstr "https://www.wpdesk.pl/docs/woocommerce-checkout-fields-docs/"
|
399 |
|
400 |
+
#: flexible-checkout-fields.php:909
|
401 |
msgid "Docs"
|
402 |
msgstr "Docs"
|
403 |
|
404 |
+
#: flexible-checkout-fields.php:910
|
405 |
msgid "Support"
|
406 |
msgstr "Wsparcie"
|
407 |
|
408 |
+
#: flexible-checkout-fields.php:917
|
409 |
msgid "Upgrade"
|
410 |
msgstr "Kup PRO"
|
411 |
|
412 |
+
#: flexible-checkout-fields.php:936
|
413 |
msgid "Advanced"
|
414 |
msgstr "Zaawansowane"
|
415 |
|
416 |
#: inc/wpdesk-tracker/views/tracker-connect.php:7
|
417 |
#: inc/wpdesk-tracker/views/tracker-notice.php:5
|
418 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:22
|
419 |
#, php-format
|
420 |
msgid "Hey %s,"
|
421 |
msgstr "Hej %s,"
|
422 |
|
423 |
#: inc/wpdesk-tracker/views/tracker-connect.php:8
|
424 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:23
|
425 |
msgid ""
|
426 |
"Please help us improve our plugins! If you opt-in, we will collect some non-"
|
427 |
"sensitive data and usage information. If you skip this, that's okay! All "
|
478 |
"rezygnacja"
|
479 |
|
480 |
#: inc/wpdesk-tracker/views/tracker-connect.php:54
|
481 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:24
|
|
|
482 |
msgid "Find out more »"
|
483 |
msgstr "Dowiedz się więcej »"
|
484 |
|
543 |
msgid "Submit & Deactivate"
|
544 |
msgstr "Wyślij i dezaktywuj"
|
545 |
|
546 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:8
|
547 |
+
#, php-format
|
548 |
msgid ""
|
549 |
+
"We need your help to improve <strong>WP Desk plugins</strong>, so they are "
|
550 |
+
"more useful for you and the rest of <strong>10,000+ users</strong>. By "
|
551 |
+
"collecting data on how you use our plugins, you will help us a lot. We will "
|
552 |
+
"not collect any sensitive data, so you can feel safe. As a thank you for "
|
553 |
+
"your consent, we will send you a <strong>discount coupon</strong> for %sWP "
|
554 |
+
"Desk plugins%s, which you can use yourself or share with others. %sFind out "
|
555 |
+
"more »%s"
|
556 |
msgstr ""
|
557 |
+
"Potrzebujemy Twojej pomocy, aby dalej rozwijać <strong>wtyczki WP Desk</"
|
558 |
+
"strong> i były one jeszcze bardziej pomocne dla Ciebie i pozostałych ponad "
|
559 |
+
"<strong>10 000 użytkowników</strong>. Zbierając dane na temat tego jak "
|
560 |
+
"korzystasz z naszych wtyczek bardzo nam w tym pomożesz. Nie będziemy zbierać "
|
561 |
+
"żadnych danych wrażliwych, więc możesz czuć się bezpiecznie. W zamian za "
|
562 |
+
"Twoją zgodę otrzymasz <strong>kupon rabatowy</strong> na %swtyczki WP Desk"
|
563 |
+
"%s, który możesz wykorzystać sam lub podzielić się z innymi. %sDowiedz się "
|
564 |
+
"więcej »%s"
|
565 |
|
566 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:16
|
567 |
+
#: inc/wpdesk-tracker/views/tracker-notice.php:27
|
568 |
msgid "Allow"
|
569 |
msgstr "Pozwól"
|
570 |
|
606 |
msgid "https://www.wpdesk.net/"
|
607 |
msgstr "https://www.wpdesk.pl/"
|
608 |
|
609 |
+
#~ msgid "https://www.wpdesk.net/docs/flexible-checkout-fields-docs/"
|
610 |
+
#~ msgstr "https://www.wpdesk.pl/docs/woocommerce-checkout-fields-docs/"
|
611 |
+
|
612 |
+
#~ msgid ""
|
613 |
+
#~ "Please help us improve our plugins and get a <strong>20% discount "
|
614 |
+
#~ "coupon</strong> for <strong>WP Desk</strong> plugins."
|
615 |
+
#~ msgstr ""
|
616 |
+
#~ "Pomóż nam ulepszyć nasze wtyczki i otrzymaj <strong>kupon rabatowy 20%"
|
617 |
+
#~ "</strong> na kolejne zakupy w <strong>WP Desk</strong>."
|
618 |
+
|
619 |
#~ msgid ""
|
620 |
#~ "Allow WP Desk to collect plugin usage information and <strong>get "
|
621 |
#~ "discount coupon</strong> in our shop. No sensitive data is tracked."
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: wpdesk, swoboda, jablonowski, barczakszymon, ospiotr
|
|
3 |
Donate link: https://www.wpdesk.net/flexible-checkout-fields-woocommerce/
|
4 |
Tags: woocommerce checkout fields, woocommerce custom fields, woocommerce checkout manager, woocommerce checkout editor, woocommerce fields manager, woocommerce fields editor, woocommerce custom checkout fields, woocommerce checkout options, woocommerce checkout pro, woocommerce custom sections, woocommerce file upload
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -100,9 +100,9 @@ Enable conditional logic (show or hide) for fields based on products and/or cate
|
|
100 |
|
101 |
= WooCommerce Compatibility =
|
102 |
|
103 |
-
**WooCommerce 3.
|
104 |
|
105 |
-
Flexible Checkout Fields also plays well with older versions of WooCommerce. We tested the plugin with WooCommerce 2.
|
106 |
|
107 |
= Well Documented =
|
108 |
|
@@ -165,6 +165,10 @@ If you are upgrading from the old WooCommerce Checkout Fields version (1.1, wooc
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
|
|
|
|
|
|
|
|
168 |
= 1.5.2 - 2017-07-27 =
|
169 |
* Fixed issue with the fields order in the checkout
|
170 |
* Tweaked message in WP Desk Tracker class
|
3 |
Donate link: https://www.wpdesk.net/flexible-checkout-fields-woocommerce/
|
4 |
Tags: woocommerce checkout fields, woocommerce custom fields, woocommerce checkout manager, woocommerce checkout editor, woocommerce fields manager, woocommerce fields editor, woocommerce custom checkout fields, woocommerce checkout options, woocommerce checkout pro, woocommerce custom sections, woocommerce file upload
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 1.5.3
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
100 |
|
101 |
= WooCommerce Compatibility =
|
102 |
|
103 |
+
**WooCommerce 3.2 ready!**
|
104 |
|
105 |
+
Flexible Checkout Fields also plays well with older versions of WooCommerce. We tested the plugin with WooCommerce 2.6.14 and up.
|
106 |
|
107 |
= Well Documented =
|
108 |
|
165 |
|
166 |
== Changelog ==
|
167 |
|
168 |
+
= 1.5.3 - 2017-10-10 =
|
169 |
+
* Added support for WooCommerce 3.2
|
170 |
+
* Dropped support for WooCommerce 2.5.x (the plugin may still work but we do not declare official support)
|
171 |
+
|
172 |
= 1.5.2 - 2017-07-27 =
|
173 |
* Fixed issue with the fields order in the checkout
|
174 |
* Tweaked message in WP Desk Tracker class
|