Version Description
- 2019-12-11 =
- Fixed WPML string translations compatibility
Download this release
Release Info
Developer | wpdesk |
Plugin | Flexible Shipping for WooCommerce |
Version | 3.9.4 |
Comparing to | |
See all releases |
Code changes from version 3.9.3 to 3.9.4
- classes/table-rate/functions.php +0 -99
- flexible-shipping.php +4 -4
- inc/functions.php +0 -3
- lang/pl_PL.po +0 -2202
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
classes/table-rate/functions.php
DELETED
@@ -1,99 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
function flexible_shipping_get_all_shipping_methods() {
|
4 |
-
/*
|
5 |
-
$all_shipping_methods = WC()->shipping()->get_shipping_methods();
|
6 |
-
if ( empty( $all_shipping_methods ) ) {
|
7 |
-
$all_shipping_methods = WC()->shipping()->load_shipping_methods();
|
8 |
-
}
|
9 |
-
*/
|
10 |
-
$all_shipping_methods = WC()->shipping()->load_shipping_methods();
|
11 |
-
return $all_shipping_methods;
|
12 |
-
}
|
13 |
-
|
14 |
-
|
15 |
-
function flexible_shipping_method_selected_in_cart( $shipping_method_integration ) {
|
16 |
-
global $woocommerce;
|
17 |
-
$shippings = $woocommerce->session->get('chosen_shipping_methods');
|
18 |
-
$all_shipping_methods = flexible_shipping_get_all_shipping_methods();
|
19 |
-
$flexible_shipping = $all_shipping_methods['flexible_shipping'];
|
20 |
-
$flexible_shipping_rates = $flexible_shipping->get_all_rates();
|
21 |
-
foreach ( $shippings as $id => $shipping ) {
|
22 |
-
if ( isset( $flexible_shipping_rates[$shipping] ) ) {
|
23 |
-
$shipping_method = $flexible_shipping_rates[$shipping];
|
24 |
-
if ( $shipping_method['method_integration'] == $shipping_method_integration ) {
|
25 |
-
return $shipping_method;
|
26 |
-
}
|
27 |
-
}
|
28 |
-
}
|
29 |
-
return false;
|
30 |
-
}
|
31 |
-
|
32 |
-
function flexible_shipping_method_selected( $order, $shipping_method_integration ) {
|
33 |
-
if ( is_numeric( $order ) ) {
|
34 |
-
$order = wc_get_order( $order );
|
35 |
-
}
|
36 |
-
$shippings = $order->get_shipping_methods();
|
37 |
-
$all_shipping_methods = flexible_shipping_get_all_shipping_methods();
|
38 |
-
if ( isset( $all_shipping_methods['flexible_shipping'] ) ) {
|
39 |
-
$flexible_shipping_rates = $all_shipping_methods['flexible_shipping']->get_all_rates();
|
40 |
-
foreach ( $shippings as $id => $shipping ) {
|
41 |
-
if ( isset( $flexible_shipping_rates[ $shipping['method_id'] ] ) ) {
|
42 |
-
$shipping_method = $flexible_shipping_rates[ $shipping['method_id'] ];
|
43 |
-
if ( $shipping_method['method_integration'] == $shipping_method_integration ) {
|
44 |
-
return $shipping_method;
|
45 |
-
}
|
46 |
-
}
|
47 |
-
}
|
48 |
-
}
|
49 |
-
return false;
|
50 |
-
}
|
51 |
-
|
52 |
-
function flexible_shipping_get_integration_for_method( $method_id ) {
|
53 |
-
$all_shipping_methods = flexible_shipping_get_all_shipping_methods();
|
54 |
-
if ( isset( $all_shipping_methods['flexible_shipping'] ) ) {
|
55 |
-
$flexible_shipping_rates = $all_shipping_methods['flexible_shipping']->get_all_rates();
|
56 |
-
if ( isset( $flexible_shipping_rates[$method_id] ) ) {
|
57 |
-
return $flexible_shipping_rates[$method_id]['method_integration'];
|
58 |
-
}
|
59 |
-
}
|
60 |
-
return false;
|
61 |
-
}
|
62 |
-
|
63 |
-
if ( !function_exists('wpdesk_redirect') ) {
|
64 |
-
function wpdesk_redirect( $redirect ) {
|
65 |
-
if ( 1==1 && headers_sent() ) {
|
66 |
-
?>
|
67 |
-
<span><?php printf( __( 'Redirecting. If page not redirects click %s here %s.', 'flexible-shipping'), '<a href="' . $redirect . '" >', '</a>' ); ?></span>
|
68 |
-
|
69 |
-
<script>
|
70 |
-
parent.location.replace('<?php echo $redirect; ?>');
|
71 |
-
</script>
|
72 |
-
<?php
|
73 |
-
}
|
74 |
-
else {
|
75 |
-
wp_safe_redirect($redirect);
|
76 |
-
}
|
77 |
-
exit;
|
78 |
-
}
|
79 |
-
}
|
80 |
-
|
81 |
-
if ( !function_exists( 'wpdesk__' ) ) {
|
82 |
-
function wpdesk__( $text, $domain ) {
|
83 |
-
if ( function_exists( 'icl_sw_filters_gettext' ) ) {
|
84 |
-
return icl_sw_filters_gettext( $text, $text, $domain, $text );
|
85 |
-
}
|
86 |
-
if ( function_exists( 'pll__' ) ) {
|
87 |
-
return pll__( $text );
|
88 |
-
}
|
89 |
-
return __( $text, $domain );
|
90 |
-
}
|
91 |
-
}
|
92 |
-
|
93 |
-
if ( !function_exists( 'wpdesk__e' ) ) {
|
94 |
-
function wpdesk__e( $text, $domain ) {
|
95 |
-
echo wpdesk__( $text, $domain );
|
96 |
-
}
|
97 |
-
}
|
98 |
-
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
flexible-shipping.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Flexible Shipping
|
4 |
* Plugin URI: https://wordpress.org/plugins/flexible-shipping/
|
5 |
* Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
|
6 |
-
* Version: 3.9.
|
7 |
* Author: WP Desk
|
8 |
* Author URI: https://www.wpdesk.net/
|
9 |
* Text Domain: flexible-shipping
|
@@ -11,7 +11,7 @@
|
|
11 |
* Requires at least: 4.5
|
12 |
* Tested up to: 5.3
|
13 |
* WC requires at least: 3.1.0
|
14 |
-
* WC tested up to: 3.8.
|
15 |
* Requires PHP: 5.6
|
16 |
*
|
17 |
* Copyright 2017 WP Desk Ltd.
|
@@ -37,8 +37,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
37 |
} // Exit if accessed directly
|
38 |
|
39 |
/* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
|
40 |
-
$plugin_version = '3.9.
|
41 |
-
$plugin_release_timestamp = '2019-11
|
42 |
|
43 |
$plugin_name = 'Flexible Shipping';
|
44 |
$product_id = 'Flexible Shipping';
|
3 |
* Plugin Name: Flexible Shipping
|
4 |
* Plugin URI: https://wordpress.org/plugins/flexible-shipping/
|
5 |
* Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
|
6 |
+
* Version: 3.9.4
|
7 |
* Author: WP Desk
|
8 |
* Author URI: https://www.wpdesk.net/
|
9 |
* Text Domain: flexible-shipping
|
11 |
* Requires at least: 4.5
|
12 |
* Tested up to: 5.3
|
13 |
* WC requires at least: 3.1.0
|
14 |
+
* WC tested up to: 3.8.1
|
15 |
* Requires PHP: 5.6
|
16 |
*
|
17 |
* Copyright 2017 WP Desk Ltd.
|
37 |
} // Exit if accessed directly
|
38 |
|
39 |
/* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
|
40 |
+
$plugin_version = '3.9.4';
|
41 |
+
$plugin_release_timestamp = '2019-12-11 11:56';
|
42 |
|
43 |
$plugin_name = 'Flexible Shipping';
|
44 |
$product_id = 'Flexible Shipping';
|
inc/functions.php
CHANGED
@@ -80,9 +80,6 @@ if ( !function_exists('wpdesk_redirect') ) {
|
|
80 |
|
81 |
if ( !function_exists( 'wpdesk__' ) ) {
|
82 |
function wpdesk__( $text, $domain ) {
|
83 |
-
if ( function_exists( 'icl_sw_filters_gettext' ) ) {
|
84 |
-
return icl_sw_filters_gettext( $text, $text, $domain, $text );
|
85 |
-
}
|
86 |
if ( function_exists( 'pll__' ) ) {
|
87 |
return pll__( $text );
|
88 |
}
|
80 |
|
81 |
if ( !function_exists( 'wpdesk__' ) ) {
|
82 |
function wpdesk__( $text, $domain ) {
|
|
|
|
|
|
|
83 |
if ( function_exists( 'pll__' ) ) {
|
84 |
return pll__( $text );
|
85 |
}
|
lang/pl_PL.po
DELETED
@@ -1,2202 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Flexible Shipping\n"
|
4 |
-
"POT-Creation-Date: 2019-11-03 10:58+0100\n"
|
5 |
-
"PO-Revision-Date: 2019-11-03 11:00+0100\n"
|
6 |
-
"Last-Translator: Krzysztof Dyszczyk <krzysztof.dyszczyk@gmail.com>\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.2.1\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-WPHeader: flexible-shipping.php\n"
|
15 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
16 |
-
"|| n%100>=20) ? 1 : 2);\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
-
"X-Poedit-SearchPath-0: .\n"
|
22 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
-
|
24 |
-
#: classes/class-flexible-shipping-plugin.php:483
|
25 |
-
#, fuzzy, php-format
|
26 |
-
#| msgid ""
|
27 |
-
#| "How can We make Flexible Shipping better for you? %sJust write to us.%s"
|
28 |
-
msgid ""
|
29 |
-
"How can We make Flexible Shipping better for you? %1$sJust write to us.%2$s"
|
30 |
-
msgstr ""
|
31 |
-
"Jak możemy sprawić, aby Flexible Shipping był lepszy? %sNapisz do nas.%s"
|
32 |
-
|
33 |
-
#: classes/class-flexible-shipping-plugin.php:538
|
34 |
-
#: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:214
|
35 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Page/SettingsPage.php:52
|
36 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Page/SettingsPage.php:53
|
37 |
-
#: vendor_prefixed/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:198
|
38 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Page/SettingsPage.php:46
|
39 |
-
msgid "Settings"
|
40 |
-
msgstr "Ustawienia"
|
41 |
-
|
42 |
-
#: classes/class-flexible-shipping-plugin.php:541
|
43 |
-
#: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:207
|
44 |
-
#: vendor_prefixed/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:194
|
45 |
-
msgid "Docs"
|
46 |
-
msgstr "Docs"
|
47 |
-
|
48 |
-
#: classes/class-flexible-shipping-plugin.php:542
|
49 |
-
#: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:201
|
50 |
-
#: vendor_prefixed/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:191
|
51 |
-
msgid "Support"
|
52 |
-
msgstr "Wsparcie"
|
53 |
-
|
54 |
-
#: classes/class-flexible-shipping-plugin.php:549
|
55 |
-
msgid "Upgrade"
|
56 |
-
msgstr "Kup PRO"
|
57 |
-
|
58 |
-
#: classes/manifest/functions.php:16
|
59 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/functions.php:16
|
60 |
-
#, php-format
|
61 |
-
msgid "Shipping manifest %s, %s"
|
62 |
-
msgstr "Protokół nadania %s, %s"
|
63 |
-
|
64 |
-
#: classes/table-rate/abtests/views/html-information.php:12
|
65 |
-
#, php-format
|
66 |
-
msgid ""
|
67 |
-
"Do you have a problem with our plugin or do not know how to configure it? "
|
68 |
-
"Write to our support department - we will try to help. %1$sGo to contact "
|
69 |
-
"form →%2$s"
|
70 |
-
msgstr ""
|
71 |
-
"Przed wyłączeniem wtyczki możesz skontaktować się z działem wsparcia, aby "
|
72 |
-
"rozwiązać problemy lub wyjaśnić funkcjonalności wtyczki. %1$sPrzejdź do "
|
73 |
-
"formularza kontaktowego →%2$s"
|
74 |
-
|
75 |
-
#: classes/table-rate/abtests/views/html-thickbox-buttons-additional-button.php:10
|
76 |
-
#: classes/table-rate/abtests/views/html-thickbox-buttons.php:2
|
77 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/column-actions.php:2
|
78 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:87
|
79 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:77
|
80 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:117
|
81 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:107
|
82 |
-
msgid "Cancel"
|
83 |
-
msgstr "Anuluj"
|
84 |
-
|
85 |
-
#: classes/table-rate/abtests/views/html-thickbox-buttons-additional-button.php:11
|
86 |
-
msgid "Any problems? Write to us."
|
87 |
-
msgstr "Masz problem? Napisz do Nas!"
|
88 |
-
|
89 |
-
#: classes/table-rate/abtests/views/html-thickbox-buttons-additional-button.php:12
|
90 |
-
#: classes/table-rate/abtests/views/html-thickbox-buttons.php:3
|
91 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:88
|
92 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:78
|
93 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:120
|
94 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:110
|
95 |
-
msgid "Skip & Deactivate"
|
96 |
-
msgstr "Pomiń i dezaktywuj"
|
97 |
-
|
98 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:16
|
99 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:14
|
100 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:3
|
101 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:20
|
102 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:11
|
103 |
-
#, php-format
|
104 |
-
msgid "You are deactivating %s plugin."
|
105 |
-
msgstr "Wyłączasz wtyczkę %s."
|
106 |
-
|
107 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:21
|
108 |
-
msgid ""
|
109 |
-
"If you have a moment, please let us know why you are deactivating the plugin (anonymous feedback):"
|
110 |
-
msgstr ""
|
111 |
-
"Jeśli masz chwilę, prosimy daj nam znać dlaczego wyłączasz wtyczkę (anonimowa opinia):"
|
112 |
-
|
113 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:28
|
114 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:26
|
115 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:16
|
116 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:38
|
117 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:28
|
118 |
-
msgid "The plugin suddenly stopped working"
|
119 |
-
msgstr "Wtyczka nagle przestała działać"
|
120 |
-
|
121 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:36
|
122 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:34
|
123 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:24
|
124 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:48
|
125 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:38
|
126 |
-
msgid "The plugin broke my site"
|
127 |
-
msgstr "Wtyczka zepsuła moją stronę"
|
128 |
-
|
129 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:44
|
130 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:42
|
131 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:32
|
132 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:58
|
133 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:48
|
134 |
-
msgid "I have found a better plugin"
|
135 |
-
msgstr "Znalazłem lepszą wtyczkę"
|
136 |
-
|
137 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:47
|
138 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:45
|
139 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:35
|
140 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:63
|
141 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:53
|
142 |
-
msgid "What's the plugin's name?"
|
143 |
-
msgstr "Jaka jest nazwa wtyczki?"
|
144 |
-
|
145 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:55
|
146 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:53
|
147 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:43
|
148 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:73
|
149 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:63
|
150 |
-
msgid "I only needed the plugin for a short period"
|
151 |
-
msgstr "Potrzebowałem wtyczki tylko przez krótki okres"
|
152 |
-
|
153 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:63
|
154 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:61
|
155 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:51
|
156 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:83
|
157 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:73
|
158 |
-
msgid "I no longer need the plugin"
|
159 |
-
msgstr "Nie potrzebuję już wtyczki"
|
160 |
-
|
161 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:71
|
162 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:69
|
163 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:59
|
164 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:93
|
165 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:83
|
166 |
-
msgid "It's a temporary deactivation. I'm just debugging an issue."
|
167 |
-
msgstr "Jest to tymczasowa dezaktywacja, debaguję problem."
|
168 |
-
|
169 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:79
|
170 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:77
|
171 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:67
|
172 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:103
|
173 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:93
|
174 |
-
msgid "Other"
|
175 |
-
msgstr "Inny"
|
176 |
-
|
177 |
-
#: classes/table-rate/abtests/views/html-thickbox-content.php:82
|
178 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:80
|
179 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:70
|
180 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:108
|
181 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:98
|
182 |
-
msgid "Please let us know how we can improve our plugin"
|
183 |
-
msgstr "Napisz co moglibyśmy zmienić, aby ulepszyć naszą wtyczkę"
|
184 |
-
|
185 |
-
#: classes/table-rate/bulk-actions.php:46
|
186 |
-
msgid "New"
|
187 |
-
msgstr "Nowa"
|
188 |
-
|
189 |
-
#: classes/table-rate/bulk-actions.php:47
|
190 |
-
#: classes/table-rate/bulk-actions.php:198
|
191 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:55
|
192 |
-
msgid "Created"
|
193 |
-
msgstr "Utworzona"
|
194 |
-
|
195 |
-
#: classes/table-rate/bulk-actions.php:48
|
196 |
-
#: classes/table-rate/bulk-actions.php:199
|
197 |
-
msgid "Confirmed"
|
198 |
-
msgstr "Zatwierdzona"
|
199 |
-
|
200 |
-
#: classes/table-rate/bulk-actions.php:49
|
201 |
-
msgid "Manifest"
|
202 |
-
msgstr "Protokół nadania"
|
203 |
-
|
204 |
-
#: classes/table-rate/bulk-actions.php:50
|
205 |
-
msgid "Failed"
|
206 |
-
msgstr "Błąd"
|
207 |
-
|
208 |
-
#: classes/table-rate/bulk-actions.php:196
|
209 |
-
#: classes/table-rate/bulk-actions.php:226
|
210 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:74
|
211 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
212 |
-
msgid "Error"
|
213 |
-
msgstr "Błąd"
|
214 |
-
|
215 |
-
#: classes/table-rate/bulk-actions.php:197
|
216 |
-
msgid "New shipment"
|
217 |
-
msgstr "Nowa"
|
218 |
-
|
219 |
-
#: classes/table-rate/bulk-actions.php:200
|
220 |
-
msgid "Manifest created"
|
221 |
-
msgstr "Protokół nadania utworzony"
|
222 |
-
|
223 |
-
#: classes/table-rate/bulk-actions.php:255
|
224 |
-
#: classes/table-rate/bulk-actions.php:261
|
225 |
-
msgid "Shipping"
|
226 |
-
msgstr "Wysyłka"
|
227 |
-
|
228 |
-
#: classes/table-rate/bulk-actions.php:269
|
229 |
-
msgid "Send shipment"
|
230 |
-
msgstr "Nadaj przesyłkę"
|
231 |
-
|
232 |
-
#: classes/table-rate/bulk-actions.php:270
|
233 |
-
msgid "Get labels"
|
234 |
-
msgstr "Pobierz etykiety nadawcze"
|
235 |
-
|
236 |
-
#: classes/table-rate/bulk-actions.php:272
|
237 |
-
msgid "Create shipping manifest"
|
238 |
-
msgstr "Utwórz protokół nadania"
|
239 |
-
|
240 |
-
#: classes/table-rate/bulk-actions.php:294
|
241 |
-
msgid "Shipment created."
|
242 |
-
msgstr "Przesyłka utworzona."
|
243 |
-
|
244 |
-
#: classes/table-rate/bulk-actions.php:306
|
245 |
-
msgid "No action performed."
|
246 |
-
msgstr "Nie wykonano żadnych działań."
|
247 |
-
|
248 |
-
#: classes/table-rate/bulk-actions.php:326
|
249 |
-
msgid "Label downloaded."
|
250 |
-
msgstr "Etykieta została pobrana."
|
251 |
-
|
252 |
-
#: classes/table-rate/bulk-actions.php:347
|
253 |
-
msgid ""
|
254 |
-
"Unable to create temporary zip archive for labels. Check temporary folder "
|
255 |
-
"configuration on server."
|
256 |
-
msgstr ""
|
257 |
-
"Nie można utworzyć tymczasowego archiwum zip dla etykiet. Sprawdź "
|
258 |
-
"konfigurację folderu na serwerze."
|
259 |
-
|
260 |
-
#: classes/table-rate/bulk-actions.php:411
|
261 |
-
#, php-format
|
262 |
-
msgid ""
|
263 |
-
"Created manifest: %s (%s). If download not start automatically click %shere"
|
264 |
-
"%s."
|
265 |
-
msgstr ""
|
266 |
-
"Utworzone protokoły nadania: %s (%s). Jeśli pobieranie nie rozpoczęło się "
|
267 |
-
"automatycznie kliknij %stutaj%s."
|
268 |
-
|
269 |
-
#: classes/table-rate/bulk-actions.php:423
|
270 |
-
#, php-format
|
271 |
-
msgid "Manifest creation error: %s (%s)."
|
272 |
-
msgstr "Błąd podczas tworzenia protokołu nadania: %s (%s)."
|
273 |
-
|
274 |
-
#: classes/table-rate/bulk-actions.php:434
|
275 |
-
msgid "No manifests created."
|
276 |
-
msgstr "Nie zostały utworzone protokoły nadania."
|
277 |
-
|
278 |
-
#: classes/table-rate/bulk-actions.php:448
|
279 |
-
#, php-format
|
280 |
-
msgid "Bulk send shipment - processed orders: %d"
|
281 |
-
msgstr "Masowe nadawanie przesyłek - przetworzone zamówienia: %d"
|
282 |
-
|
283 |
-
#: classes/table-rate/bulk-actions.php:456
|
284 |
-
#, php-format
|
285 |
-
msgid "Bulk labels - processed orders: %d. No labels for processed orders."
|
286 |
-
msgstr ""
|
287 |
-
"Masowe pobieranie etykiet - przetworzone zamówienia: %d. Brak etykiet dla "
|
288 |
-
"przetworzonych zamówień."
|
289 |
-
|
290 |
-
#: classes/table-rate/bulk-actions.php:475
|
291 |
-
#, php-format
|
292 |
-
msgid ""
|
293 |
-
"Bulk labels - processed orders: %d. If download not start automatically "
|
294 |
-
"click %shere%s."
|
295 |
-
msgstr ""
|
296 |
-
"Masowe pobieranie etykiet - przetworzone zamówienia: %d. Jeśli pobieranie "
|
297 |
-
"nie rozpoczęło się automatycznie kliknij %stutaj%s ."
|
298 |
-
|
299 |
-
#: classes/table-rate/bulk-actions.php:485
|
300 |
-
#, php-format
|
301 |
-
msgid "Bulk shipping manifest - processed orders: %d"
|
302 |
-
msgstr "Zbiorcze tworzenie protokołów nadania - przetworzone zamówienia: %d"
|
303 |
-
|
304 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:131
|
305 |
-
msgid ""
|
306 |
-
"Sorry, there has been an error. The CSV is invalid or incorrect file type."
|
307 |
-
msgstr ""
|
308 |
-
"Przepraszamy, wystąpił błąd. Plik CSV jest niepoprawny lub typ pliku jest "
|
309 |
-
"nieprawidłowy."
|
310 |
-
|
311 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:140
|
312 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:143
|
313 |
-
msgid "import"
|
314 |
-
msgstr "import"
|
315 |
-
|
316 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:162
|
317 |
-
#, php-format
|
318 |
-
msgid "Free Shipping value %1$s is not valid number. Row number %2$d."
|
319 |
-
msgstr "Wartość darmowej wysyłki %1$s jest niepoprawna. Numer wiersza %2$d."
|
320 |
-
|
321 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:180
|
322 |
-
#, php-format
|
323 |
-
msgid "Maximum Cost value %1$s is not valid number. Row number %2$d."
|
324 |
-
msgstr "Maksymalny koszt %1$s jest niepoprawny. Numer wiersza %2$d."
|
325 |
-
|
326 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:195
|
327 |
-
#, php-format
|
328 |
-
msgid "Invalid value for Calculation Method in row number %d."
|
329 |
-
msgstr "Nieprawidłowa wartość dla Metody obliczania w wierszu %d."
|
330 |
-
|
331 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:227
|
332 |
-
#, php-format
|
333 |
-
msgid "%1$s value %2$s is not valid number. Row number %3$d."
|
334 |
-
msgstr "%1$s wartość %2$s jest niepoprawna. Numer wiersza %3$d."
|
335 |
-
|
336 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:269
|
337 |
-
#, php-format
|
338 |
-
msgid "Error while creating shipping class: %1$s, %2$s"
|
339 |
-
msgstr "Błąd podczas tworzenia klasy wysyłkowej: %1$s, %2$s"
|
340 |
-
|
341 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:328
|
342 |
-
#, php-format
|
343 |
-
msgid "Invalid value for Based On in row number %d."
|
344 |
-
msgstr "Nieprawidłowa wartość dla Oparte na w wierszu %d."
|
345 |
-
|
346 |
-
#: classes/table-rate/csv/class-wpdesk-flexible-shipping-csv-importer.php:402
|
347 |
-
#, php-format
|
348 |
-
msgid "Shipping method %1$s imported as %2$s."
|
349 |
-
msgstr "Metoda wysyłki %1$s została zaimportowana jako %2$s."
|
350 |
-
|
351 |
-
#: classes/table-rate/flexible-shipping-settings.php:33
|
352 |
-
#: classes/table-rate/multilingual.php:44
|
353 |
-
#: classes/table-rate/multilingual.php:47
|
354 |
-
#: classes/table-rate/multilingual.php:50
|
355 |
-
#: classes/table-rate/settings/flexible-shipping.php:16
|
356 |
-
#: classes/table-rate/settings/flexible-shipping.php:30
|
357 |
-
#: classes/table-rate/settings/shipping-method-form.php:67
|
358 |
-
#: classes/table-rate/shipping-method.php:34
|
359 |
-
#: classes/table-rate/shipping-method.php:35
|
360 |
-
#: classes/table-rate/shipping-method.php:53
|
361 |
-
msgid "Flexible Shipping"
|
362 |
-
msgstr "Flexible Shipping"
|
363 |
-
|
364 |
-
#: classes/table-rate/flexible-shipping-settings.php:95
|
365 |
-
msgid "Advanced settings"
|
366 |
-
msgstr "Ustawienia zaawansowane"
|
367 |
-
|
368 |
-
#: classes/table-rate/functions.php:67 inc/functions.php:67
|
369 |
-
#, php-format
|
370 |
-
msgid "Redirecting. If page not redirects click %s here %s."
|
371 |
-
msgstr ""
|
372 |
-
"Przekierowywanie. Jeśli strona nie przekierowuje cię automatycznie, kliknij "
|
373 |
-
"%s tu %s."
|
374 |
-
|
375 |
-
#: classes/table-rate/logger/class-logger-downloader.php:57
|
376 |
-
#: classes/table-rate/logger/class-saas-logger-downloader.php:57
|
377 |
-
msgid "File not exists!"
|
378 |
-
msgstr "Plik nie istnieje!"
|
379 |
-
|
380 |
-
#: classes/table-rate/logger/class-logger-downloader.php:60
|
381 |
-
#: classes/table-rate/logger/class-saas-logger-downloader.php:60
|
382 |
-
msgid "Insufficient privileges!"
|
383 |
-
msgstr "Niewystarczające uprawnienia!"
|
384 |
-
|
385 |
-
#: classes/table-rate/logger/class-logger-settings.php:84
|
386 |
-
#: classes/table-rate/logger/class-saas-logger-settings.php:95
|
387 |
-
msgid "Enable Debug Mode"
|
388 |
-
msgstr "Włącz tryb debug"
|
389 |
-
|
390 |
-
#: classes/table-rate/logger/class-logger-settings.php:85
|
391 |
-
#: classes/table-rate/logger/class-saas-logger-settings.php:96
|
392 |
-
msgid "Debug mode"
|
393 |
-
msgstr "Tryb debug"
|
394 |
-
|
395 |
-
#: classes/table-rate/logger/class-logger-settings.php:92
|
396 |
-
#: classes/table-rate/logger/class-saas-logger-settings.php:103
|
397 |
-
#, php-format
|
398 |
-
msgid "%1$sDownload debug.log file%2$s"
|
399 |
-
msgstr "%1$sPobierz plik debug.log%2$s"
|
400 |
-
|
401 |
-
#: classes/table-rate/settings/flexible-shipping.php:18
|
402 |
-
#, php-format
|
403 |
-
msgid "See how to %sconfigure Flexible Shipping%s."
|
404 |
-
msgstr "Zobacz jak %sskonfigurować Flexible Shipping%s."
|
405 |
-
|
406 |
-
#: classes/table-rate/settings/flexible-shipping.php:21
|
407 |
-
#: classes/table-rate/settings/shipping-method-form.php:58
|
408 |
-
#: classes/table-rate/shipping-method.php:44
|
409 |
-
msgid "Enable/Disable"
|
410 |
-
msgstr "Włącz/Wyłącz"
|
411 |
-
|
412 |
-
#: classes/table-rate/settings/flexible-shipping.php:23
|
413 |
-
msgid "Enable Flexible Shipping"
|
414 |
-
msgstr "Włącz Flexible Shipping"
|
415 |
-
|
416 |
-
#: classes/table-rate/settings/flexible-shipping.php:27
|
417 |
-
msgid "Shipping title"
|
418 |
-
msgstr "Tytuł"
|
419 |
-
|
420 |
-
#: classes/table-rate/settings/flexible-shipping.php:29
|
421 |
-
msgid "Visible only to admin in WooCommerce settings."
|
422 |
-
msgstr "Widoczny tylko dla admina w ustawieniach WooCommerce."
|
423 |
-
|
424 |
-
#: classes/table-rate/settings/flexible-shipping.php:34
|
425 |
-
msgid "Tax Status"
|
426 |
-
msgstr "Status podatku"
|
427 |
-
|
428 |
-
#: classes/table-rate/settings/flexible-shipping.php:39
|
429 |
-
msgid "Taxable"
|
430 |
-
msgstr "Opodatkowany"
|
431 |
-
|
432 |
-
#: classes/table-rate/settings/flexible-shipping.php:40
|
433 |
-
msgctxt "Tax status"
|
434 |
-
msgid "None"
|
435 |
-
msgstr "Brak"
|
436 |
-
|
437 |
-
#: classes/table-rate/settings/flexible-shipping.php:44
|
438 |
-
#: classes/table-rate/settings/flexible-shipping.php:49
|
439 |
-
msgid "Shipping Methods"
|
440 |
-
msgstr "Metody wysyłki"
|
441 |
-
|
442 |
-
#: classes/table-rate/settings/shipping-method-form.php:17
|
443 |
-
msgid "Select shipment class"
|
444 |
-
msgstr "Wybierz klasę wysyłkową"
|
445 |
-
|
446 |
-
#: classes/table-rate/settings/shipping-method-form.php:28
|
447 |
-
msgid ""
|
448 |
-
"Integrate with DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
|
449 |
-
msgstr "Zintegruj z DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu."
|
450 |
-
|
451 |
-
#: classes/table-rate/settings/shipping-method-form.php:30
|
452 |
-
#, fuzzy, php-format
|
453 |
-
#| msgid "%sAdd integrations%s"
|
454 |
-
msgid "%1$sAdd integrations%2$s"
|
455 |
-
msgstr "%sDodaj integracje%s"
|
456 |
-
|
457 |
-
#: classes/table-rate/settings/shipping-method-form.php:33
|
458 |
-
msgid "Integrate with DPD."
|
459 |
-
msgstr "Zintegruj z DPD."
|
460 |
-
|
461 |
-
#: classes/table-rate/settings/shipping-method-form.php:35
|
462 |
-
#, fuzzy, php-format
|
463 |
-
#| msgid "%sAdd integration%s"
|
464 |
-
msgid "%1$sAdd integration%2$s"
|
465 |
-
msgstr "%sDodaj integrację%s"
|
466 |
-
|
467 |
-
#: classes/table-rate/settings/shipping-method-form.php:42
|
468 |
-
#: classes/table-rate/shipping-method.php:759
|
469 |
-
msgid "Free"
|
470 |
-
msgstr "Bezpłatnie"
|
471 |
-
|
472 |
-
#: classes/table-rate/settings/shipping-method-form.php:61
|
473 |
-
#: classes/table-rate/shipping-method.php:46
|
474 |
-
msgid "Enable this shipment method"
|
475 |
-
msgstr "Włącz tę metodę wysyłki"
|
476 |
-
|
477 |
-
#: classes/table-rate/settings/shipping-method-form.php:64
|
478 |
-
msgid "Method Title"
|
479 |
-
msgstr "Tytuł metody"
|
480 |
-
|
481 |
-
#: classes/table-rate/settings/shipping-method-form.php:66
|
482 |
-
#: classes/table-rate/shipping-method.php:52
|
483 |
-
msgid "This controls the title which the user sees during checkout."
|
484 |
-
msgstr "Tytuł, który widzi użytkownik podczas składania zamówienia."
|
485 |
-
|
486 |
-
#: classes/table-rate/settings/shipping-method-form.php:73
|
487 |
-
msgid "Method Description"
|
488 |
-
msgstr "Opis"
|
489 |
-
|
490 |
-
#: classes/table-rate/settings/shipping-method-form.php:75
|
491 |
-
msgid "This controls method description which the user sees during checkout."
|
492 |
-
msgstr "Opis, który widzi użytkownik podczas składania zamówienia."
|
493 |
-
|
494 |
-
#: classes/table-rate/settings/shipping-method-form.php:86
|
495 |
-
msgid "Free Shipping"
|
496 |
-
msgstr "Darmowa wysyłka"
|
497 |
-
|
498 |
-
#: classes/table-rate/settings/shipping-method-form.php:89
|
499 |
-
msgid ""
|
500 |
-
"Enter a minimum order amount for free shipment. This will override the costs "
|
501 |
-
"configured below."
|
502 |
-
msgstr ""
|
503 |
-
"Wpisz minimalną kwotę zamówienia dla bezpłatnej wysyłki. Spowoduje to "
|
504 |
-
"zastąpienie reguł skonfigurowanych poniżej."
|
505 |
-
|
506 |
-
#: classes/table-rate/settings/shipping-method-form.php:93
|
507 |
-
msgid "Free Shipping Label"
|
508 |
-
msgstr "Etykieta darmowej wysyłki"
|
509 |
-
|
510 |
-
#: classes/table-rate/settings/shipping-method-form.php:96
|
511 |
-
msgid "Enter additional label for shipment when free shipment available."
|
512 |
-
msgstr ""
|
513 |
-
"Wpisz dodatkową etykietę, która zostanie wyświetlona dla darmowej wysyłki."
|
514 |
-
|
515 |
-
#: classes/table-rate/settings/shipping-method-form.php:105
|
516 |
-
#, fuzzy
|
517 |
-
#| msgid "Calculation Method"
|
518 |
-
msgid "Rules Calculation"
|
519 |
-
msgstr "Metoda obliczania"
|
520 |
-
|
521 |
-
#: classes/table-rate/settings/shipping-method-form.php:107
|
522 |
-
msgid ""
|
523 |
-
"Select how rules will be calculated. If you choose \"sum\" the rules order "
|
524 |
-
"is important."
|
525 |
-
msgstr ""
|
526 |
-
"Wybierz jak będą obliczane reguły. Dla sumy, kolejność reguł ma znaczenie."
|
527 |
-
|
528 |
-
#: classes/table-rate/settings/shipping-method-form.php:110
|
529 |
-
msgid "Sum"
|
530 |
-
msgstr "Suma"
|
531 |
-
|
532 |
-
#: classes/table-rate/settings/shipping-method-form.php:113
|
533 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:13
|
534 |
-
msgid "Visibility"
|
535 |
-
msgstr "Wyświetlanie"
|
536 |
-
|
537 |
-
#: classes/table-rate/settings/shipping-method-form.php:116
|
538 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:46
|
539 |
-
msgid "Show only for logged in users"
|
540 |
-
msgstr "Pokaż tylko dla zalogowanych użytkowników"
|
541 |
-
|
542 |
-
#: classes/table-rate/settings/shipping-method-form.php:119
|
543 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:14
|
544 |
-
msgid "Default"
|
545 |
-
msgstr "Domyślnie"
|
546 |
-
|
547 |
-
#: classes/table-rate/settings/shipping-method-form.php:122
|
548 |
-
msgid ""
|
549 |
-
"Check the box to set this option as the default selected choice on the cart "
|
550 |
-
"page."
|
551 |
-
msgstr ""
|
552 |
-
"Zaznacz, aby ustawić tę metodę wysyłki jako domyślną przy składaniu "
|
553 |
-
"zamówienia."
|
554 |
-
|
555 |
-
#: classes/table-rate/settings/shipping-method-form.php:125
|
556 |
-
#: classes/table-rate/views/html-orders-filter-form.php:5
|
557 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:15
|
558 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:161
|
559 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/filter-form.php:5
|
560 |
-
msgid "Integration"
|
561 |
-
msgstr "Integracja"
|
562 |
-
|
563 |
-
#: classes/table-rate/settings/shipping-method-form.php:127
|
564 |
-
msgid "Select integration. "
|
565 |
-
msgstr "Wybierz integrację. "
|
566 |
-
|
567 |
-
#: classes/table-rate/settings/shipping-method-form.php:130
|
568 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:7
|
569 |
-
msgid "None"
|
570 |
-
msgstr "Brak"
|
571 |
-
|
572 |
-
#: classes/table-rate/settings/shipping-method-form.php:141
|
573 |
-
msgid "Rules"
|
574 |
-
msgstr "Reguły"
|
575 |
-
|
576 |
-
#: classes/table-rate/settings/shipping-method-form.php:162
|
577 |
-
msgid "Shipping Zone"
|
578 |
-
msgstr "Strefa wysyłki"
|
579 |
-
|
580 |
-
#: classes/table-rate/settings/shipping-method-form.php:178
|
581 |
-
#, fuzzy, php-format
|
582 |
-
#| msgid "See how to %sconfigure shipment methods%s."
|
583 |
-
msgid "See how to %1$sconfigure shipment methods%2$s."
|
584 |
-
msgstr "Zobacz jak %sskonfigurować metody wysyłki %s."
|
585 |
-
|
586 |
-
#: classes/table-rate/shipping-method.php:50
|
587 |
-
msgid "Shipping Title"
|
588 |
-
msgstr "Tytuł"
|
589 |
-
|
590 |
-
#: classes/table-rate/shipping-method.php:122
|
591 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:240
|
592 |
-
msgid "Add New"
|
593 |
-
msgstr "Dodaj nową"
|
594 |
-
|
595 |
-
#: classes/table-rate/shipping-method.php:401
|
596 |
-
msgid "New Shipping Method"
|
597 |
-
msgstr "Nowa metoda wysyłki"
|
598 |
-
|
599 |
-
#: classes/table-rate/shipping-method.php:404
|
600 |
-
msgid "Edit Shipping Method"
|
601 |
-
msgstr "Edytuj metodę wysyłki"
|
602 |
-
|
603 |
-
#: classes/table-rate/shipping-method.php:414
|
604 |
-
#: classes/table-rate/shipping-method.php:456
|
605 |
-
#, php-format
|
606 |
-
msgid "Shipping method %s added."
|
607 |
-
msgstr "Metoda wysyłki dodana: %s."
|
608 |
-
|
609 |
-
#: classes/table-rate/shipping-method.php:439
|
610 |
-
#, php-format
|
611 |
-
msgid "Shipping method %s deleted."
|
612 |
-
msgstr "Metoda wysyłki usunięta: %s."
|
613 |
-
|
614 |
-
#: classes/table-rate/shipping-method.php:442
|
615 |
-
msgid "Shipping method not found."
|
616 |
-
msgstr "Metoda wysyłki nie znaleziona."
|
617 |
-
|
618 |
-
#: classes/table-rate/shipping-method.php:468
|
619 |
-
#, php-format
|
620 |
-
msgid "Shipping method %s updated."
|
621 |
-
msgstr "Metoda wysyłki zaktualizowana: %s."
|
622 |
-
|
623 |
-
#: classes/table-rate/views/html-ads.php:4
|
624 |
-
msgid "Get Flexible Shipping PRO!"
|
625 |
-
msgstr "Kup Flexible Shipping PRO!"
|
626 |
-
|
627 |
-
#: classes/table-rate/views/html-ads.php:13
|
628 |
-
msgid "Shipping Classes support"
|
629 |
-
msgstr "Wsparcie klas wysyłkowych"
|
630 |
-
|
631 |
-
#: classes/table-rate/views/html-ads.php:14
|
632 |
-
msgid "Product count based costs"
|
633 |
-
msgstr "Koszty oparte o liczbę produktów w koszyku"
|
634 |
-
|
635 |
-
#: classes/table-rate/views/html-ads.php:15
|
636 |
-
msgid "Stopping, Cancelling a rule"
|
637 |
-
msgstr "Zatrzymywanie, anulowanie reguł"
|
638 |
-
|
639 |
-
#: classes/table-rate/views/html-ads.php:16
|
640 |
-
msgid "Additional calculation methods"
|
641 |
-
msgstr "Dodatkowe rodzaje obliczania kosztów"
|
642 |
-
|
643 |
-
#: classes/table-rate/views/html-ads.php:19
|
644 |
-
msgid "Upgrade Now →"
|
645 |
-
msgstr "Zaktualizuj do wersji PRO →"
|
646 |
-
|
647 |
-
#: classes/table-rate/views/html-column-shipping-shipping.php:11
|
648 |
-
msgid "Get label for: "
|
649 |
-
msgstr "Pobierz etykietę dla "
|
650 |
-
|
651 |
-
#: classes/table-rate/views/html-column-shipping-shipping.php:14
|
652 |
-
msgid "Track shipment for: "
|
653 |
-
msgstr "Śledź przesyłkę "
|
654 |
-
|
655 |
-
#: classes/table-rate/views/html-custom-services.php:14
|
656 |
-
msgid "Code"
|
657 |
-
msgstr "Kod"
|
658 |
-
|
659 |
-
#: classes/table-rate/views/html-custom-services.php:15
|
660 |
-
msgid "Name"
|
661 |
-
msgstr "Nazwa"
|
662 |
-
|
663 |
-
#: classes/table-rate/views/html-custom-services.php:17
|
664 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:12
|
665 |
-
msgid "Enabled"
|
666 |
-
msgstr "Włączona"
|
667 |
-
|
668 |
-
#: classes/table-rate/views/html-custom-services.php:37
|
669 |
-
msgid ""
|
670 |
-
"Drag and drop the services to control their display order. Confirm by "
|
671 |
-
"clicking Save changes button below."
|
672 |
-
msgstr ""
|
673 |
-
"Przeciągnij i upuść usługę, aby zmienić kolejność wyświetlania. Zatwierdź "
|
674 |
-
"zmiany klikając Zapisz zmiany poniżej."
|
675 |
-
|
676 |
-
#: classes/table-rate/views/html-orders-filter-form.php:4
|
677 |
-
#: classes/table-rate/views/html-orders-filter-form.php:12
|
678 |
-
msgid "All shippings"
|
679 |
-
msgstr "Wszystkie przesyłki"
|
680 |
-
|
681 |
-
#: classes/table-rate/views/html-orders-filter-form.php:13
|
682 |
-
msgid "Shipment status"
|
683 |
-
msgstr "Status przesyłki"
|
684 |
-
|
685 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:8
|
686 |
-
msgid "Price"
|
687 |
-
msgstr "Cena"
|
688 |
-
|
689 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:9
|
690 |
-
msgid "Weight"
|
691 |
-
msgstr "Waga"
|
692 |
-
|
693 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:61
|
694 |
-
#, php-format
|
695 |
-
msgid ""
|
696 |
-
"Check %sFlexible Shipping PRO →%s to add advanced rules based on "
|
697 |
-
"shipment classes, product/item count or additional handling fees/insurance."
|
698 |
-
msgstr ""
|
699 |
-
"Sprawdź %sFlexible Shipping PRO →%s, aby dodawać zaawansowane reguły "
|
700 |
-
"oparte o klasy wysyłkowe, liczbę produktów/pozycji lub naliczać dodatkowe "
|
701 |
-
"koszty obsługi/ubezpieczenia."
|
702 |
-
|
703 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:72
|
704 |
-
msgid "Based on"
|
705 |
-
msgstr "Oparte na"
|
706 |
-
|
707 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:73
|
708 |
-
msgid "Shipping cost will be calculated based on the selected parameter."
|
709 |
-
msgstr "Koszty wysyłki będą obliczane w oparciu o wybrany parametr."
|
710 |
-
|
711 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:76
|
712 |
-
msgid "Min"
|
713 |
-
msgstr "Min"
|
714 |
-
|
715 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:77
|
716 |
-
msgid ""
|
717 |
-
"Enter minimum value for the "Based on" parameter. Value based on "
|
718 |
-
"the price will be calculated by WooCommerce tax settings "Display "
|
719 |
-
"prices during cart and checkout""
|
720 |
-
msgstr ""
|
721 |
-
"Wpisz minimalną wartość dla parametru "Oparte na". Wartość oparta "
|
722 |
-
"na cenie zostanie obliczona wg. ustawienia podatków WooCommerce ""
|
723 |
-
"Wyświetlanie cen w koszyku i zamówieniu""
|
724 |
-
|
725 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:80
|
726 |
-
msgid "Max"
|
727 |
-
msgstr "Maks"
|
728 |
-
|
729 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:81
|
730 |
-
msgid ""
|
731 |
-
"Enter maximum value for the "Based on" parameter. Value based on "
|
732 |
-
"the price will be calculated by WooCommerce tax settings "Display "
|
733 |
-
"prices during cart and checkout""
|
734 |
-
msgstr ""
|
735 |
-
"Wpisz maksymalną wartość dla parametru "Oparte na". Wartość oparta "
|
736 |
-
"na cenie zostanie obliczona wg. ustawienia podatków WooCommerce ""
|
737 |
-
"Wyświetlanie cen w koszyku i zamówieniu""
|
738 |
-
|
739 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:84
|
740 |
-
msgid "Cost per<br/>order"
|
741 |
-
msgstr "Koszt na<br/>zamówienie"
|
742 |
-
|
743 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:85
|
744 |
-
msgid "Enter shipment cost for this rule."
|
745 |
-
msgstr "Wpisz koszt wysyłki dla tej reguły."
|
746 |
-
|
747 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:160
|
748 |
-
msgid "Insert rule"
|
749 |
-
msgstr "Dodaj regułę"
|
750 |
-
|
751 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:161
|
752 |
-
msgid "Delete selected rules"
|
753 |
-
msgstr "Usuń wybrane reguły"
|
754 |
-
|
755 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:211
|
756 |
-
msgid "No rows selected."
|
757 |
-
msgstr "Nie wybrano wierszy."
|
758 |
-
|
759 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:216
|
760 |
-
msgid "Are you sure?"
|
761 |
-
msgstr "Na pewno?"
|
762 |
-
|
763 |
-
#: classes/table-rate/views/html-shipping-method-rules.php:231
|
764 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:106
|
765 |
-
msgid "Shipping Zones"
|
766 |
-
msgstr "Strefy wysyłki"
|
767 |
-
|
768 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:11
|
769 |
-
msgid "Title"
|
770 |
-
msgstr "Tytuł"
|
771 |
-
|
772 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:16
|
773 |
-
msgid "Select all"
|
774 |
-
msgstr "Zaznacz wszystkie"
|
775 |
-
|
776 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:39
|
777 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:46
|
778 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:53
|
779 |
-
msgid "yes"
|
780 |
-
msgstr "tak"
|
781 |
-
|
782 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:48
|
783 |
-
msgid "Show for all users"
|
784 |
-
msgstr "Pokaż dla wszystkich użytkowników"
|
785 |
-
|
786 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:69
|
787 |
-
msgid ""
|
788 |
-
"Drag and drop the above shipment methods to control their display order. "
|
789 |
-
"Confirm by clicking Save changes button below."
|
790 |
-
msgstr ""
|
791 |
-
"Przeciągnij i upuść metody wysyłki, aby ustawić ich kolejność wyświetlania. "
|
792 |
-
"Potwierdź przez kliknięcie przycisku Zapisz zmiany poniżej."
|
793 |
-
|
794 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:74
|
795 |
-
msgid "Remove selected"
|
796 |
-
msgstr "Usuń zaznaczone"
|
797 |
-
|
798 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:78
|
799 |
-
msgid "Cancel import"
|
800 |
-
msgstr "Anuluj import"
|
801 |
-
|
802 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:79
|
803 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:80
|
804 |
-
msgid "Import"
|
805 |
-
msgstr "Importuj"
|
806 |
-
|
807 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:155
|
808 |
-
msgid "Please select shipment methods to remove"
|
809 |
-
msgstr "Proszę wybrać metody wysyłki do usunięcia"
|
810 |
-
|
811 |
-
#: classes/table-rate/views/html-shipping-method-settings.php:187
|
812 |
-
msgid "Select file to import"
|
813 |
-
msgstr "Wybierz plik do importu"
|
814 |
-
|
815 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:20
|
816 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:20
|
817 |
-
msgid "How to use Flexible Shipping?"
|
818 |
-
msgstr "Jak używać Flexible Shipping?"
|
819 |
-
|
820 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:26
|
821 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:26
|
822 |
-
#, php-format
|
823 |
-
msgid ""
|
824 |
-
"To add first Flexible Shipping method go to %sShipping zones%s and add "
|
825 |
-
"Flexible Shipping to a shipping zone."
|
826 |
-
msgstr ""
|
827 |
-
"Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki %sStrefy "
|
828 |
-
"wysyłki%s i dodaj Flexible Shipping do strefy wysyłki."
|
829 |
-
|
830 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:33
|
831 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:33
|
832 |
-
msgid ""
|
833 |
-
"You can start the configuration by clicking the Flexible Shipping link in "
|
834 |
-
"the Shipping methods table."
|
835 |
-
msgstr ""
|
836 |
-
"Możesz rozpocząć konfigurację klikając na link Flexible Shipping w tabeli "
|
837 |
-
"”Metody wysyłki”."
|
838 |
-
|
839 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:36
|
840 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:36
|
841 |
-
msgid "Quick Video Overview"
|
842 |
-
msgstr "Krótki przewodnik video"
|
843 |
-
|
844 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:42
|
845 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:42
|
846 |
-
msgid "More resources"
|
847 |
-
msgstr "Więcej informacji"
|
848 |
-
|
849 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:45
|
850 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:45
|
851 |
-
msgid "General Settings"
|
852 |
-
msgstr "Ustawienia główne"
|
853 |
-
|
854 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:46
|
855 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:46
|
856 |
-
msgid "Adding a shipping method"
|
857 |
-
msgstr "Dodawanie metody wysyłki"
|
858 |
-
|
859 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:47
|
860 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:47
|
861 |
-
msgid "Currency Support"
|
862 |
-
msgstr "Waluty"
|
863 |
-
|
864 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:48
|
865 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:48
|
866 |
-
msgid "Weight Based Shipping"
|
867 |
-
msgstr "Koszt na wagę"
|
868 |
-
|
869 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:49
|
870 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:49
|
871 |
-
msgid "Shipping Insurance"
|
872 |
-
msgstr "Ubezpieczenie przesyłki"
|
873 |
-
|
874 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:50
|
875 |
-
#: classes/table-rate/views/html-shipping-settings-info-description.php:50
|
876 |
-
msgid "Conditional Cash on Delivery"
|
877 |
-
msgstr "Przesyłka za pobraniem"
|
878 |
-
|
879 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:54
|
880 |
-
msgid "Integrations"
|
881 |
-
msgstr "Integracja"
|
882 |
-
|
883 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:59
|
884 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:63
|
885 |
-
msgid "FS Connect"
|
886 |
-
msgstr "FS Connect"
|
887 |
-
|
888 |
-
#: classes/table-rate/views/html-shipping-settings-advanced.php:65
|
889 |
-
msgid "Enable integration with Flexible Shipping Connect"
|
890 |
-
msgstr "Włącz integrację z Flexible Shipping Connect"
|
891 |
-
|
892 |
-
#: classes/tracker/tracker.php:211
|
893 |
-
msgid "Opt-in"
|
894 |
-
msgstr "Opt-in"
|
895 |
-
|
896 |
-
#: classes/tracker/tracker.php:214
|
897 |
-
msgid "Opt-out"
|
898 |
-
msgstr "Opt-out"
|
899 |
-
|
900 |
-
#: classes/wp-wpdesk-fs-shipment/admin-notices.php:164
|
901 |
-
#, php-format
|
902 |
-
msgid ""
|
903 |
-
"Flexible Shipping has changed the calculation method for shipping rules. "
|
904 |
-
"Currently, the cart value for rules based on price is determined by "
|
905 |
-
"WooCommerce tax option \"Display prices during cart and checkout\". You "
|
906 |
-
"should check the %ssettings%s."
|
907 |
-
msgstr ""
|
908 |
-
"Flexible Shipping: zaktualizowane zostały metody obliczania reguł wysyłki. "
|
909 |
-
"Aktualnie dla reguł opartych na cenie wartość koszyka zostanie obliczona na "
|
910 |
-
"podstawie ustawienia podatków WooCommerce ”Wyświetlanie cen w sklepie”. "
|
911 |
-
"Sprawdź %sustawienia podatków%s."
|
912 |
-
|
913 |
-
#: classes/wp-wpdesk-fs-shipment/admin-notices.php:181
|
914 |
-
msgid ""
|
915 |
-
"Flexible Shipping requires at least version 2.7 of Active Payments plugin."
|
916 |
-
msgstr ""
|
917 |
-
"Flexible Shipping wymaga wtyczki Aktywne płatności w wersji co najmniej 2.7."
|
918 |
-
|
919 |
-
#: classes/wp-wpdesk-fs-shipment/admin-notices.php:196
|
920 |
-
msgid "Flexible Shipping requires at least version 1.2 of eNadawca plugin."
|
921 |
-
msgstr "Flexible Shipping wymaga wtyczki eNadawca w wersji co najmniej 1.2."
|
922 |
-
|
923 |
-
#: classes/wp-wpdesk-fs-shipment/admin-notices.php:211
|
924 |
-
msgid ""
|
925 |
-
"Flexible Shipping requires at least version 1.1 of Paczka w Ruchu plugin."
|
926 |
-
msgstr ""
|
927 |
-
"Flexible Shipping wymaga wtyczki Paczka w Ruchu w wersji co najmniej 1.1."
|
928 |
-
|
929 |
-
#: classes/wp-wpdesk-fs-shipment/admin-notices.php:223
|
930 |
-
#, php-format
|
931 |
-
msgid ""
|
932 |
-
"You are using WooCommerce Flexible Shipping below 1.4. Please deactivate it "
|
933 |
-
"on %splugins page%s. Read about big changes in Flexible Shipping on %sour "
|
934 |
-
"blog →%s"
|
935 |
-
msgstr ""
|
936 |
-
"Masz włączony WooCommerce Flexible Shipping w wersji starszej niż 1.4. "
|
937 |
-
"Wyłącz go na %sstronie wtyczek%s. Przeczytaj o dużej zmianie we Flexible "
|
938 |
-
"Shipping na %snaszym blogu →%s"
|
939 |
-
|
940 |
-
#: classes/wp-wpdesk-fs-shipment/class-order-add-shipping.php:38
|
941 |
-
#, php-format
|
942 |
-
msgid "Shipment for order %1$s, %2$s"
|
943 |
-
msgstr "Przesyłka do zamówienia %s, %s"
|
944 |
-
|
945 |
-
#: classes/wp-wpdesk-fs-shipment/class-order-add-shipping.php:53
|
946 |
-
#, php-format
|
947 |
-
msgid "Added new shipment via metabox. Shipment ID: %s"
|
948 |
-
msgstr "Dodano nową przesyłkę. Numer przesyłki: %s"
|
949 |
-
|
950 |
-
#: classes/wp-wpdesk-fs-shipment/class-order-add-shipping.php:104
|
951 |
-
msgid "Select integration"
|
952 |
-
msgstr "Wybierz integrację"
|
953 |
-
|
954 |
-
#: classes/wp-wpdesk-fs-shipment/class-order-add-shipping.php:113
|
955 |
-
msgid "Add shipping"
|
956 |
-
msgstr "Dodaj przesyłkę"
|
957 |
-
|
958 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:60
|
959 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:62
|
960 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:64
|
961 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:97
|
962 |
-
msgid "Shipping Manifests"
|
963 |
-
msgstr "Protokoły nadania"
|
964 |
-
|
965 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:61
|
966 |
-
msgid "Shipping Manifest"
|
967 |
-
msgstr "Protokół nadania"
|
968 |
-
|
969 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:65
|
970 |
-
msgid "View Shipping Manifests"
|
971 |
-
msgstr "Wyświetl protokół nadania"
|
972 |
-
|
973 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:66
|
974 |
-
msgid "Add new Shipping Manifest"
|
975 |
-
msgstr "Dodaj nowy Protokół nadania"
|
976 |
-
|
977 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:67
|
978 |
-
msgid "Add new Shipping Manifests"
|
979 |
-
msgstr "Dodaj nowe protokoły nadania"
|
980 |
-
|
981 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:68
|
982 |
-
msgid "Edit Shipping Manifest"
|
983 |
-
msgstr "Edytuj protokół nadania"
|
984 |
-
|
985 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:69
|
986 |
-
msgid "Save Shipping Manifest"
|
987 |
-
msgstr "Zapisz protokół nadania"
|
988 |
-
|
989 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:70
|
990 |
-
msgid "Search Shipping Manifests"
|
991 |
-
msgstr "Szukaj protokół nadania"
|
992 |
-
|
993 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:71
|
994 |
-
msgid "Shipping Manifests not found"
|
995 |
-
msgstr "Nie znaleziono protokołów nadania"
|
996 |
-
|
997 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:72
|
998 |
-
msgid "Shipping Manifests not found in trash"
|
999 |
-
msgstr "Nie znaleziono protokołów nadania w koszu"
|
1000 |
-
|
1001 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:74
|
1002 |
-
msgid "Shipping Manifests."
|
1003 |
-
msgstr "Protokoły nadania."
|
1004 |
-
|
1005 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:116
|
1006 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:50
|
1007 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:52
|
1008 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:54
|
1009 |
-
msgid "Shipments"
|
1010 |
-
msgstr "Przesyłki"
|
1011 |
-
|
1012 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:160
|
1013 |
-
msgid "Date"
|
1014 |
-
msgstr "Data"
|
1015 |
-
|
1016 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:162
|
1017 |
-
msgid "Number"
|
1018 |
-
msgstr "Numer"
|
1019 |
-
|
1020 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:163
|
1021 |
-
msgid "Shipments count"
|
1022 |
-
msgstr "Liczba przesyłek"
|
1023 |
-
|
1024 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:164
|
1025 |
-
msgid "Actions"
|
1026 |
-
msgstr "Akcje"
|
1027 |
-
|
1028 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:219
|
1029 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/cpt-shipping-manifest.php:243
|
1030 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:190
|
1031 |
-
msgid "Invalid nonce!"
|
1032 |
-
msgstr "Błąd weryfikacji nonce!"
|
1033 |
-
|
1034 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/column-actions.php:1
|
1035 |
-
msgid "Download"
|
1036 |
-
msgstr "Pobierz"
|
1037 |
-
|
1038 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/filter-form.php:4
|
1039 |
-
msgid "All manifests"
|
1040 |
-
msgstr "Wszystkie protokoły nadania"
|
1041 |
-
|
1042 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/manifest-metabox.php:7
|
1043 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/manifest-metabox.php:47
|
1044 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:51
|
1045 |
-
#: templates/email/after_order_table.php:12
|
1046 |
-
#: templates/myaccount/after_order_table.php:12
|
1047 |
-
msgid "Shipment"
|
1048 |
-
msgstr "Przesyłka"
|
1049 |
-
|
1050 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/manifest-metabox.php:10
|
1051 |
-
#: classes/wp-wpdesk-fs-shipment/manifest/views/manifest-metabox.php:50
|
1052 |
-
msgid "Order"
|
1053 |
-
msgstr "Zamówienie"
|
1054 |
-
|
1055 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:22
|
1056 |
-
msgid "Unknown error!"
|
1057 |
-
msgstr "Nieznany błąd!"
|
1058 |
-
|
1059 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:25
|
1060 |
-
msgid "Nonce verification error! Invalid request."
|
1061 |
-
msgstr "Błąd weryfikacji nonce! Nieprawidłowe żądanie."
|
1062 |
-
|
1063 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:29
|
1064 |
-
msgid "No shipment id!"
|
1065 |
-
msgstr "Brak id przesyłki!"
|
1066 |
-
|
1067 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:33
|
1068 |
-
msgid "No data!"
|
1069 |
-
msgstr "Brak danych!"
|
1070 |
-
|
1071 |
-
#: classes/wp-wpdesk-fs-shipment/metabox/ajax.php:52
|
1072 |
-
msgid "Saved"
|
1073 |
-
msgstr "Zapisano"
|
1074 |
-
|
1075 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/abstract-rate.php:25
|
1076 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/first-rate-notice.php:17
|
1077 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/second-rate-notice.php:17
|
1078 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/third-rate-notice.php:19
|
1079 |
-
#, php-format
|
1080 |
-
msgid "%1$sOk, you deserved it%2$s"
|
1081 |
-
msgstr "%1$sTak, zasługujecie na nią%2$s"
|
1082 |
-
|
1083 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/abstract-rate.php:30
|
1084 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/first-rate-notice.php:22
|
1085 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/second-rate-notice.php:22
|
1086 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/third-rate-notice.php:24
|
1087 |
-
#, php-format
|
1088 |
-
msgid "%1$sNope, maybe later%2$s"
|
1089 |
-
msgstr "%1$sNie, może później%2$s"
|
1090 |
-
|
1091 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/abstract-rate.php:35
|
1092 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/first-rate-notice.php:27
|
1093 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/second-rate-notice.php:27
|
1094 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/third-rate-notice.php:29
|
1095 |
-
#, php-format
|
1096 |
-
msgid "%1$sI already did%2$s"
|
1097 |
-
msgstr "%1$sJuż to zrobiłem/am%2$s"
|
1098 |
-
|
1099 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/first-rate-notice.php:59
|
1100 |
-
msgid ""
|
1101 |
-
"Awesome, you've been using Flexible Shipping for more than 2 weeks. May I "
|
1102 |
-
"ask you to give it a 5-star rating on WordPress?"
|
1103 |
-
msgstr ""
|
1104 |
-
"Fantastycznie, korzystasz z Flexible Shipping już ponad dwa tygodnie. Czy "
|
1105 |
-
"mogę Cię prosić o wystawienie 5-gwiazdkowej oceny?"
|
1106 |
-
|
1107 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/second-rate-notice.php:59
|
1108 |
-
msgid ""
|
1109 |
-
"Awesome, you've been using Flexible Shipping for more than 2 weeks. Could "
|
1110 |
-
"you please do me a BIG favor and give it a 5-star rating on WordPress? ~ "
|
1111 |
-
"Peter"
|
1112 |
-
msgstr ""
|
1113 |
-
"Fantastycznie, korzystasz z Flexible Shipping już ponad 2 tygodnie. Czy "
|
1114 |
-
"możesz wyświadczyć mi wielką przysługę i wystawić 5-gwiazdkową ocenę? ~ Piotr"
|
1115 |
-
|
1116 |
-
#: classes/wp-wpdesk-fs-shipment/rate-notices/third-rate-notice.php:57
|
1117 |
-
msgid ""
|
1118 |
-
"Awesome, you just crossed the 100 orders on Flexible Shipping method. Could "
|
1119 |
-
"you please do me a BIG favor and give it a 5-star rating on WordPress? ~ "
|
1120 |
-
"Peter"
|
1121 |
-
msgstr ""
|
1122 |
-
"Fantastycznie, przekroczyłeś 100 zamówień z metodą wysyłki Flexible "
|
1123 |
-
"Shipping. Czy możesz wyświadczyć mi wielką przysługę i wystawić 5-gwiazdkową "
|
1124 |
-
"ocenę? ~Piotr"
|
1125 |
-
|
1126 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/class-shipment.php:300
|
1127 |
-
msgid "Please override shipping_column method!"
|
1128 |
-
msgstr "Proszę nadpisać metodę shipping_column!"
|
1129 |
-
|
1130 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:55
|
1131 |
-
msgid "View Shipments"
|
1132 |
-
msgstr "Wyświetl przesyłki"
|
1133 |
-
|
1134 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:56
|
1135 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:57
|
1136 |
-
msgid "Add new Shipment"
|
1137 |
-
msgstr "Dodaj nową przesyłkę"
|
1138 |
-
|
1139 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:58
|
1140 |
-
msgid "Edit Shipment"
|
1141 |
-
msgstr "Edytuj przesyłkę"
|
1142 |
-
|
1143 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:59
|
1144 |
-
msgid "Save Shipment"
|
1145 |
-
msgstr "Zapisz przesyłkę"
|
1146 |
-
|
1147 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:60
|
1148 |
-
msgid "Search Shipments"
|
1149 |
-
msgstr "Szukaj przesyłek"
|
1150 |
-
|
1151 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:61
|
1152 |
-
msgid "Shipment not found"
|
1153 |
-
msgstr "Nie znaleziono przesyłki"
|
1154 |
-
|
1155 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:62
|
1156 |
-
msgid "Shipment not found in trash"
|
1157 |
-
msgstr "Nie znaleziono przesyłki w koszu"
|
1158 |
-
|
1159 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:64
|
1160 |
-
msgid "Shipments."
|
1161 |
-
msgstr "Przesyłki."
|
1162 |
-
|
1163 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:84
|
1164 |
-
msgctxt "Shipment status"
|
1165 |
-
msgid "New"
|
1166 |
-
msgstr "Nowa"
|
1167 |
-
|
1168 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:89
|
1169 |
-
#, php-format
|
1170 |
-
msgid "New <span class=\"count\">(%s)</span>"
|
1171 |
-
msgid_plural "New <span class=\"count\">(%s)</span>"
|
1172 |
-
msgstr[0] "Nowa <span class=\"count\">(%s)</span>"
|
1173 |
-
msgstr[1] "Nowa <span class=\"count\">(%s)</span>"
|
1174 |
-
msgstr[2] "Nowa <span class=\"count\">(%s)</span>"
|
1175 |
-
|
1176 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:92
|
1177 |
-
msgctxt "Shipment status"
|
1178 |
-
msgid "Created"
|
1179 |
-
msgstr "Utworzona"
|
1180 |
-
|
1181 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:97
|
1182 |
-
#, php-format
|
1183 |
-
msgid "Created <span class=\"count\">(%s)</span>"
|
1184 |
-
msgid_plural "Created <span class=\"count\">(%s)</span>"
|
1185 |
-
msgstr[0] "Utworzona <span class=\"count\">(%s)</span>"
|
1186 |
-
msgstr[1] "Utworzona <span class=\"count\">(%s)</span>"
|
1187 |
-
msgstr[2] "Utworzona <span class=\"count\">(%s)</span>"
|
1188 |
-
|
1189 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:100
|
1190 |
-
msgctxt "Shipment status"
|
1191 |
-
msgid "Confirmed"
|
1192 |
-
msgstr "Zatwierdzona"
|
1193 |
-
|
1194 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:105
|
1195 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:113
|
1196 |
-
#, php-format
|
1197 |
-
msgid "Confirmed <span class=\"count\">(%s)</span>"
|
1198 |
-
msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
|
1199 |
-
msgstr[0] "Zatwierdzona <span class=\"count\">(%s)</span>"
|
1200 |
-
msgstr[1] "Zatwierdzona <span class=\"count\">(%s)</span>"
|
1201 |
-
msgstr[2] "Zatwierdzona <span class=\"count\">(%s)</span>"
|
1202 |
-
|
1203 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:108
|
1204 |
-
msgctxt "Shipment status"
|
1205 |
-
msgid "Manifest created"
|
1206 |
-
msgstr "Protokół nadania utworzony"
|
1207 |
-
|
1208 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:116
|
1209 |
-
msgctxt "Shipment status"
|
1210 |
-
msgid "Failed"
|
1211 |
-
msgstr "Błąd"
|
1212 |
-
|
1213 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:121
|
1214 |
-
#, php-format
|
1215 |
-
msgid "Failed <span class=\"count\">(%s)</span>"
|
1216 |
-
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
1217 |
-
msgstr[0] "Błąd <span class=\"count\">(%s)</span>"
|
1218 |
-
msgstr[1] "Błąd <span class=\"count\">(%s)</span>"
|
1219 |
-
msgstr[2] "Błąd <span class=\"count\">(%s)</span>"
|
1220 |
-
|
1221 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/cpt-shipment.php:136
|
1222 |
-
msgid "Shipment data"
|
1223 |
-
msgstr "Dane przesyłki"
|
1224 |
-
|
1225 |
-
#: classes/wp-wpdesk-fs-shipment/shipment/functions.php:28
|
1226 |
-
#, php-format
|
1227 |
-
msgid "Shipment for order %s, %s"
|
1228 |
-
msgstr "Przesyłka do zamówienia %s, %s"
|
1229 |
-
|
1230 |
-
#: classes/wp-wpdesk-fs-shipment/views/html-order-add_shipping-metabox.php:15
|
1231 |
-
msgid "Add"
|
1232 |
-
msgstr "Dodaj"
|
1233 |
-
|
1234 |
-
#: templates/email/after_order_table.php:15
|
1235 |
-
#: templates/myaccount/after_order_table.php:15
|
1236 |
-
msgid "Track shipment: "
|
1237 |
-
msgstr "Śledź przesyłkę: "
|
1238 |
-
|
1239 |
-
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:65
|
1240 |
-
msgid "Test"
|
1241 |
-
msgstr "Test"
|
1242 |
-
|
1243 |
-
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:75
|
1244 |
-
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:77
|
1245 |
-
msgid "Input"
|
1246 |
-
msgstr "Input"
|
1247 |
-
|
1248 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/internationalized-plugin.php:11
|
1249 |
-
msgid "This is a dummy plugin"
|
1250 |
-
msgstr ""
|
1251 |
-
|
1252 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:42
|
1253 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:72
|
1254 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:80
|
1255 |
-
msgid "There was an error when reading this WXR file"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:43
|
1259 |
-
msgid ""
|
1260 |
-
"Details are shown above. The importer will now try again with a different "
|
1261 |
-
"parser..."
|
1262 |
-
msgstr ""
|
1263 |
-
|
1264 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:84
|
1265 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:89
|
1266 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:306
|
1267 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:495
|
1268 |
-
msgid ""
|
1269 |
-
"This does not appear to be a WXR file, missing/invalid WXR version number"
|
1270 |
-
msgstr ""
|
1271 |
-
|
1272 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:132
|
1273 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:141
|
1274 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:192
|
1275 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:196
|
1276 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:205
|
1277 |
-
msgid "Sorry, there has been an error."
|
1278 |
-
msgstr ""
|
1279 |
-
|
1280 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:133
|
1281 |
-
msgid "The file does not exist, please try again."
|
1282 |
-
msgstr ""
|
1283 |
-
|
1284 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:176
|
1285 |
-
msgid "All done."
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:176
|
1289 |
-
msgid "Have fun!"
|
1290 |
-
msgstr ""
|
1291 |
-
|
1292 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:177
|
1293 |
-
msgid "Remember to update the passwords and roles of imported users."
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:197
|
1297 |
-
#, php-format
|
1298 |
-
msgid ""
|
1299 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
1300 |
-
"this was caused by a permissions problem."
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:213
|
1304 |
-
#, php-format
|
1305 |
-
msgid ""
|
1306 |
-
"This WXR file (version %s) may not be supported by this version of the "
|
1307 |
-
"importer. Please consider updating."
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:238
|
1311 |
-
#, php-format
|
1312 |
-
msgid ""
|
1313 |
-
"Failed to import author %s. Their posts will be attributed to the current "
|
1314 |
-
"user."
|
1315 |
-
msgstr ""
|
1316 |
-
|
1317 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:264
|
1318 |
-
msgid "Assign Authors"
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:265
|
1322 |
-
msgid ""
|
1323 |
-
"To make it easier for you to edit and save the imported content, you may "
|
1324 |
-
"want to reassign the author of the imported item to an existing user of this "
|
1325 |
-
"site. For example, you may want to import all the entries as <code>admin</"
|
1326 |
-
"code>s entries."
|
1327 |
-
msgstr ""
|
1328 |
-
|
1329 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:267
|
1330 |
-
#, php-format
|
1331 |
-
msgid ""
|
1332 |
-
"If a new user is created by WordPress, a new password will be randomly "
|
1333 |
-
"generated and the new user’s role will be set as %s. Manually changing "
|
1334 |
-
"the new user’s details will be necessary."
|
1335 |
-
msgstr ""
|
1336 |
-
|
1337 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:277
|
1338 |
-
#, fuzzy
|
1339 |
-
#| msgid "Attachments"
|
1340 |
-
msgid "Import Attachments"
|
1341 |
-
msgstr "Załączniki"
|
1342 |
-
|
1343 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:280
|
1344 |
-
msgid "Download and import file attachments"
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:284
|
1348 |
-
msgid "Submit"
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:297
|
1352 |
-
#, fuzzy
|
1353 |
-
#| msgid "Import"
|
1354 |
-
msgid "Import author:"
|
1355 |
-
msgstr "Importuj"
|
1356 |
-
|
1357 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:308
|
1358 |
-
msgid "or create new user with login name:"
|
1359 |
-
msgstr ""
|
1360 |
-
|
1361 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:311
|
1362 |
-
msgid "as a new user:"
|
1363 |
-
msgstr ""
|
1364 |
-
|
1365 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:319
|
1366 |
-
msgid "assign posts to an existing user:"
|
1367 |
-
msgstr ""
|
1368 |
-
|
1369 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:321
|
1370 |
-
msgid "or assign posts to an existing user:"
|
1371 |
-
msgstr ""
|
1372 |
-
|
1373 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:322
|
1374 |
-
#, fuzzy
|
1375 |
-
#| msgid "Select"
|
1376 |
-
msgid "- Select -"
|
1377 |
-
msgstr "Wybierz"
|
1378 |
-
|
1379 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:372
|
1380 |
-
#, php-format
|
1381 |
-
msgid ""
|
1382 |
-
"Failed to create new user for %s. Their posts will be attributed to the "
|
1383 |
-
"current user."
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:424
|
1387 |
-
#, php-format
|
1388 |
-
msgid "Failed to import category %s"
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:467
|
1392 |
-
#, php-format
|
1393 |
-
msgid "Failed to import post tag %s"
|
1394 |
-
msgstr ""
|
1395 |
-
|
1396 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:516
|
1397 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:738
|
1398 |
-
#, fuzzy, php-format
|
1399 |
-
#| msgid "Select file to import"
|
1400 |
-
msgid "Failed to import %s %s"
|
1401 |
-
msgstr "Wybierz plik do importu"
|
1402 |
-
|
1403 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:605
|
1404 |
-
#, php-format
|
1405 |
-
msgid "Failed to import “%s”: Invalid post type %s"
|
1406 |
-
msgstr ""
|
1407 |
-
|
1408 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:642
|
1409 |
-
#, php-format
|
1410 |
-
msgid "%s “%s” already exists."
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:704
|
1414 |
-
#, php-format
|
1415 |
-
msgid "Failed to import %s “%s”"
|
1416 |
-
msgstr ""
|
1417 |
-
|
1418 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:869
|
1419 |
-
msgid "Menu item skipped due to missing menu slug"
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:876
|
1423 |
-
#, php-format
|
1424 |
-
msgid "Menu item skipped due to invalid menu slug: %s"
|
1425 |
-
msgstr ""
|
1426 |
-
|
1427 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:939
|
1428 |
-
msgid "Fetching attachments is not enabled"
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:952
|
1432 |
-
msgid "Invalid file type"
|
1433 |
-
msgstr ""
|
1434 |
-
|
1435 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:996
|
1436 |
-
msgid "Remote server did not respond"
|
1437 |
-
msgstr ""
|
1438 |
-
|
1439 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1002
|
1440 |
-
#, php-format
|
1441 |
-
msgid "Remote server returned error response %1$d %2$s"
|
1442 |
-
msgstr ""
|
1443 |
-
|
1444 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1009
|
1445 |
-
msgid "Remote file is incorrect size"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1014
|
1449 |
-
#, fuzzy
|
1450 |
-
#| msgid "Label downloaded."
|
1451 |
-
msgid "Zero size file downloaded"
|
1452 |
-
msgstr "Etykieta została pobrana."
|
1453 |
-
|
1454 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1020
|
1455 |
-
#, php-format
|
1456 |
-
msgid "Remote file is too large, limit is %s"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1119
|
1460 |
-
msgid "Import WordPress"
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1126
|
1464 |
-
#, php-format
|
1465 |
-
msgid ""
|
1466 |
-
"A new version of this importer is available. Please update to version %s to "
|
1467 |
-
"ensure compatibility with newer export files."
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1141
|
1471 |
-
msgid ""
|
1472 |
-
"Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import "
|
1473 |
-
"the posts, pages, comments, custom fields, categories, and tags into this "
|
1474 |
-
"site."
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1142
|
1478 |
-
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
1479 |
-
msgstr ""
|
1480 |
-
|
1481 |
-
#: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1216
|
1482 |
-
msgid ""
|
1483 |
-
"Import <strong>posts, pages, comments, custom fields, categories, and tags</"
|
1484 |
-
"strong> from a WordPress export file."
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: vendor/lucatume/wp-browser/src/data/themedir1/internationalized-theme/functions.php:7
|
1488 |
-
msgid "This is a dummy theme"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: vendor/wp-cli/core-command/src/Core_Command.php:441
|
1492 |
-
#: vendor/wp-cli/core-command/src/Core_Command.php:515
|
1493 |
-
#, php-format
|
1494 |
-
msgctxt "Default network name"
|
1495 |
-
msgid "%s Sites"
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#: vendor/wp-cli/core-command/src/Core_Command.php:673
|
1499 |
-
msgid "Wildcard DNS may not be configured correctly."
|
1500 |
-
msgstr ""
|
1501 |
-
|
1502 |
-
#: vendor/wp-cli/entity-command/src/Site_Command.php:125
|
1503 |
-
msgid "Uncategorized"
|
1504 |
-
msgstr ""
|
1505 |
-
|
1506 |
-
#: vendor/wp-cli/entity-command/src/Site_Command.php:128
|
1507 |
-
msgctxt "Default category slug"
|
1508 |
-
msgid "Uncategorized"
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
-
#: vendor/wp-cli/export-command/src/WP_Export_File_Writer.php:32
|
1512 |
-
#: vendor/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php:51
|
1513 |
-
msgid "WP Export: error writing to export file."
|
1514 |
-
msgstr ""
|
1515 |
-
|
1516 |
-
#: vendor/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php:20
|
1517 |
-
#: vendor/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php:25
|
1518 |
-
msgid "Export Error"
|
1519 |
-
msgstr ""
|
1520 |
-
|
1521 |
-
#: vendor/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php:639
|
1522 |
-
msgid " Try again"
|
1523 |
-
msgstr ""
|
1524 |
-
|
1525 |
-
#: vendor/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php:645
|
1526 |
-
msgid "API error. Try Again."
|
1527 |
-
msgstr ""
|
1528 |
-
|
1529 |
-
#: vendor/wp-cli/media-command/src/Media_Command.php:145
|
1530 |
-
msgid "image"
|
1531 |
-
msgid_plural "images"
|
1532 |
-
msgstr[0] ""
|
1533 |
-
msgstr[1] ""
|
1534 |
-
msgstr[2] ""
|
1535 |
-
|
1536 |
-
#: vendor/wp-cli/wp-cli/php/utils-wp.php:196
|
1537 |
-
msgid "Inactive Widgets"
|
1538 |
-
msgstr ""
|
1539 |
-
|
1540 |
-
#: vendor/wp-cli/wp-cli/php/utils-wp.php:199
|
1541 |
-
msgid ""
|
1542 |
-
"Drag widgets here to remove them from the sidebar but keep their settings."
|
1543 |
-
msgstr ""
|
1544 |
-
|
1545 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:187
|
1546 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:168
|
1547 |
-
#, php-format
|
1548 |
-
msgid ""
|
1549 |
-
"The “%s” plugin cannot run on PHP versions older than %s. Please "
|
1550 |
-
"contact your host and ask them to upgrade."
|
1551 |
-
msgstr ""
|
1552 |
-
"Wtyczka “%s” nie może działać w wersjach PHP starszych niż %s. "
|
1553 |
-
"Skontaktuj się z administratorem hostingu i poproś o aktualizację."
|
1554 |
-
|
1555 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:191
|
1556 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:171
|
1557 |
-
#, php-format
|
1558 |
-
msgid ""
|
1559 |
-
"The “%s” plugin cannot run on WordPress versions older than %s. "
|
1560 |
-
"Please update WordPress."
|
1561 |
-
msgstr ""
|
1562 |
-
"Wtyczka “%s” nie może działać w wersjach WordPress starszych niż "
|
1563 |
-
"%s. Prosimy o aktualizację WordPress."
|
1564 |
-
|
1565 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:195
|
1566 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:174
|
1567 |
-
#, php-format
|
1568 |
-
msgid ""
|
1569 |
-
"The “%s” plugin cannot run on WooCommerce versions older than "
|
1570 |
-
"%s. Please update WooCommerce."
|
1571 |
-
msgstr ""
|
1572 |
-
"Wtyczka “%s” nie może działać w wersjach WooCommerce starszych "
|
1573 |
-
"niż %s. Prosimy o aktualizację WooCommerce."
|
1574 |
-
|
1575 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:199
|
1576 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:177
|
1577 |
-
#, php-format
|
1578 |
-
msgid ""
|
1579 |
-
"The “%s” plugin cannot run without OpenSSL module version at "
|
1580 |
-
"least %s. Please update OpenSSL module."
|
1581 |
-
msgstr ""
|
1582 |
-
"Wtyczka “%s” nie może działać bez aktywacji OpenSSL co najmniej "
|
1583 |
-
"w wersji %s. Zaktualizuj wersję OpenSSL."
|
1584 |
-
|
1585 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:290
|
1586 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:263
|
1587 |
-
#, php-format
|
1588 |
-
msgid ""
|
1589 |
-
"The “%s” plugin cannot run without %s active. Please install and "
|
1590 |
-
"activate %s plugin."
|
1591 |
-
msgstr ""
|
1592 |
-
"Wtyczka “%s” nie może działać bez aktywacji %s. Zainstaluj i "
|
1593 |
-
"aktywuj wtyczkę %s."
|
1594 |
-
|
1595 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:351
|
1596 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:313
|
1597 |
-
#, php-format
|
1598 |
-
msgid ""
|
1599 |
-
"The “%s” plugin requires free %s plugin. <a href=\"%s\">Install "
|
1600 |
-
"%s →</a>"
|
1601 |
-
msgstr ""
|
1602 |
-
|
1603 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:360
|
1604 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:319
|
1605 |
-
#, fuzzy, php-format
|
1606 |
-
#| msgid ""
|
1607 |
-
#| "The “%s” plugin cannot run without %s active. Please install "
|
1608 |
-
#| "and activate %s plugin."
|
1609 |
-
msgid ""
|
1610 |
-
"The “%s” plugin requires activating %s plugin. <a href=\"%s"
|
1611 |
-
"\">Activate %s →</a>"
|
1612 |
-
msgstr ""
|
1613 |
-
"Wtyczka “%s” nie może działać bez aktywacji %s. Zainstaluj i "
|
1614 |
-
"aktywuj wtyczkę %s."
|
1615 |
-
|
1616 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:409
|
1617 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:362
|
1618 |
-
#, php-format
|
1619 |
-
msgid ""
|
1620 |
-
"The “%s” plugin cannot run without %s php module installed. "
|
1621 |
-
"Please contact your host and ask them to install %s."
|
1622 |
-
msgstr ""
|
1623 |
-
"Wtyczka “%s” nie może działać bez modułu php: %s. Skontaktuj się "
|
1624 |
-
"z administratorem hostingu i poproś o instalację %s."
|
1625 |
-
|
1626 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:437
|
1627 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:387
|
1628 |
-
#, php-format
|
1629 |
-
msgid ""
|
1630 |
-
"The “%s” plugin cannot run without %s php setting set to %s. "
|
1631 |
-
"Please contact your host and ask them to set %s."
|
1632 |
-
msgstr ""
|
1633 |
-
"Wtyczka “%s” nie może działać bez ustawienia php %s ustawionego "
|
1634 |
-
"na %s. Skontaktuj się z administratorem hostingu i poproś o ustawienie %s."
|
1635 |
-
|
1636 |
-
#: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker_With_Update_Disable.php:27
|
1637 |
-
#: vendor_prefixed/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker_With_Update_Disable.php:29
|
1638 |
-
#, php-format
|
1639 |
-
msgid ""
|
1640 |
-
"The “%s” plugin disables temporarily as required %s plugin is "
|
1641 |
-
"being upgraded."
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
#: vendor/wpdesk/wp-logs/src/WP/WPCapture.php:25
|
1645 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/WP/WPCapture.php:23
|
1646 |
-
#, php-format
|
1647 |
-
msgid ""
|
1648 |
-
"Can not enable WP Desk Debug log! Cannot create directory %s or this "
|
1649 |
-
"directory is not writeable!"
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: vendor/wpdesk/wp-logs/src/WP/WPCapture.php:44
|
1653 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/WP/WPCapture.php:36
|
1654 |
-
#, php-format
|
1655 |
-
msgid "Can not enable WP Desk Debug log! Cannot create file %s!"
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:70
|
1659 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1660 |
-
#, fuzzy
|
1661 |
-
#| msgid "Enabled"
|
1662 |
-
msgid "Disabled"
|
1663 |
-
msgstr "Włączona"
|
1664 |
-
|
1665 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:71
|
1666 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1667 |
-
msgid "Emergency"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:72
|
1671 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1672 |
-
msgid "Alert"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:73
|
1676 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1677 |
-
msgid "Critical"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:75
|
1681 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1682 |
-
msgid "Warning"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:76
|
1686 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1687 |
-
msgid "Notice"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:77
|
1691 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1692 |
-
msgid "Info"
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: vendor/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:78
|
1696 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:41
|
1697 |
-
#: vendor_prefixed/wpdesk/wp-logs/src/deprecated/wpdesk-logger.php:59
|
1698 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:36
|
1699 |
-
#, fuzzy
|
1700 |
-
#| msgid "Debug mode"
|
1701 |
-
msgid "Debug"
|
1702 |
-
msgstr "Tryb debug"
|
1703 |
-
|
1704 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:45
|
1705 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:37
|
1706 |
-
msgid "WP Desk Debug Log"
|
1707 |
-
msgstr ""
|
1708 |
-
|
1709 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:62
|
1710 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:80
|
1711 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:60
|
1712 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:71
|
1713 |
-
msgid "Enable"
|
1714 |
-
msgstr "Włącz"
|
1715 |
-
|
1716 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:65
|
1717 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:64
|
1718 |
-
#, php-format
|
1719 |
-
msgid "Writes error log to %s."
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:97
|
1723 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/LogsIntegration.php:92
|
1724 |
-
#, php-format
|
1725 |
-
msgid "WP Desk Debug Log is enabled. %1$sPlease disable it after testing%2$s."
|
1726 |
-
msgstr ""
|
1727 |
-
|
1728 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:55
|
1729 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:51
|
1730 |
-
#, fuzzy
|
1731 |
-
#| msgid "Plugin Usage"
|
1732 |
-
msgid "Plugin usage tracking"
|
1733 |
-
msgstr "Dane użytkowania wtyczek"
|
1734 |
-
|
1735 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:59
|
1736 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:52
|
1737 |
-
msgid "Allow WP Desk to track plugin usage"
|
1738 |
-
msgstr ""
|
1739 |
-
|
1740 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:84
|
1741 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Integration/TrackerIntegration.php:76
|
1742 |
-
#, php-format
|
1743 |
-
msgid "No sensitive data is tracked, %sread more%s."
|
1744 |
-
msgstr ""
|
1745 |
-
|
1746 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Page/LibraryDebugPage.php:34
|
1747 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Page/LibraryDebugPage.php:35
|
1748 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Page/LibraryDebugPage.php:29
|
1749 |
-
msgid "Library report"
|
1750 |
-
msgstr ""
|
1751 |
-
|
1752 |
-
#: vendor/wpdesk/wp-wpdesk-helper/src/Page/SettingsPage.php:68
|
1753 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-helper/src/Page/SettingsPage.php:58
|
1754 |
-
#, fuzzy
|
1755 |
-
#| msgid "General Settings"
|
1756 |
-
msgid "WP Desk Helper Settings"
|
1757 |
-
msgstr "Ustawienia główne"
|
1758 |
-
|
1759 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:74
|
1760 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:79
|
1761 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:74
|
1762 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:79
|
1763 |
-
msgid "Save Changes"
|
1764 |
-
msgstr ""
|
1765 |
-
|
1766 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:96
|
1767 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:92
|
1768 |
-
msgid "API Key Activation"
|
1769 |
-
msgstr ""
|
1770 |
-
|
1771 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:98
|
1772 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:93
|
1773 |
-
msgid "API Key Status"
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:101
|
1777 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:94
|
1778 |
-
msgid "API Subscription Key"
|
1779 |
-
msgstr ""
|
1780 |
-
|
1781 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:104
|
1782 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:95
|
1783 |
-
msgid "API Subscription email"
|
1784 |
-
msgstr ""
|
1785 |
-
|
1786 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:111
|
1787 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:98
|
1788 |
-
msgid "API Key Deactivation"
|
1789 |
-
msgstr ""
|
1790 |
-
|
1791 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:114
|
1792 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:99
|
1793 |
-
#, fuzzy
|
1794 |
-
#| msgid "Deactivate License"
|
1795 |
-
msgid "Deactivate API Key"
|
1796 |
-
msgstr "Dezaktywuj licencję"
|
1797 |
-
|
1798 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:197
|
1799 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseActivation.php:165
|
1800 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:164
|
1801 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseActivation.php:145
|
1802 |
-
#, fuzzy
|
1803 |
-
#| msgid "Plugin Usage"
|
1804 |
-
msgid "Plugin activated. "
|
1805 |
-
msgstr "Dane użytkowania wtyczek"
|
1806 |
-
|
1807 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:205
|
1808 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:169
|
1809 |
-
msgid "Connection failed to the API Key server. Try again later."
|
1810 |
-
msgstr ""
|
1811 |
-
|
1812 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:311
|
1813 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:241
|
1814 |
-
msgid ""
|
1815 |
-
"The subscription could not be deactivated. Use the Subscription Deactivation "
|
1816 |
-
"tab to manually deactivate the subscription before activating a new "
|
1817 |
-
"subscription."
|
1818 |
-
msgstr ""
|
1819 |
-
|
1820 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:350
|
1821 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseDeactivation.php:46
|
1822 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:262
|
1823 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseDeactivation.php:31
|
1824 |
-
msgid "Plugin subscription deactivated. "
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:435
|
1828 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager-menu.php:324
|
1829 |
-
msgid "Deactivates an API Key so it can be used on another blog."
|
1830 |
-
msgstr ""
|
1831 |
-
|
1832 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:179
|
1833 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:144
|
1834 |
-
msgid "Subscription Activation"
|
1835 |
-
msgstr ""
|
1836 |
-
|
1837 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:180
|
1838 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:145
|
1839 |
-
#, fuzzy
|
1840 |
-
#| msgid "Submit & Deactivate"
|
1841 |
-
msgid "Subscription Deactivation"
|
1842 |
-
msgstr "Anuluj"
|
1843 |
-
|
1844 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:258
|
1845 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:209
|
1846 |
-
#, php-format
|
1847 |
-
msgid ""
|
1848 |
-
" <a target='_blank' href='%s'>Enter a valid subscription key for automatic "
|
1849 |
-
"updates.</a>,"
|
1850 |
-
msgstr ""
|
1851 |
-
|
1852 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:454
|
1853 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:330
|
1854 |
-
#, fuzzy, php-format
|
1855 |
-
#| msgid ""
|
1856 |
-
#| "The %s%s%s License Key has not been activated, so the plugin is inactive! "
|
1857 |
-
#| "%sClick here%s to activate the license key and the plugin."
|
1858 |
-
msgid ""
|
1859 |
-
"The %s%s%s API Key has not been activated, so you won't be supported and "
|
1860 |
-
"your plugin won't be updated! %sClick here%s to activate the API key and the "
|
1861 |
-
"plugin."
|
1862 |
-
msgstr ""
|
1863 |
-
"Klucz licencyjny wtyczki %s%s%s nie został aktywowany, więc wtyczka jest "
|
1864 |
-
"nieaktywna! %sKliknij tutaj%s, aby aktywować klucz licencyjny wtyczki."
|
1865 |
-
|
1866 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:478
|
1867 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-api-manager.php:347
|
1868 |
-
#, php-format
|
1869 |
-
msgid ""
|
1870 |
-
"<b>Warning!</b> You're blocking external requests which means you won't be "
|
1871 |
-
"able to get %s updates. Please add %s to %s."
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:460
|
1875 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:337
|
1876 |
-
#, php-format
|
1877 |
-
msgid ""
|
1878 |
-
"The API key for %s has expired. You can reactivate or purchase a API key "
|
1879 |
-
"from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:474
|
1883 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:348
|
1884 |
-
#, php-format
|
1885 |
-
msgid ""
|
1886 |
-
"The subscription for %s is on-hold. You can reactivate the subscription from "
|
1887 |
-
"your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:488
|
1891 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:359
|
1892 |
-
#, php-format
|
1893 |
-
msgid ""
|
1894 |
-
"The subscription for %s has been cancelled. You can renew the subscription "
|
1895 |
-
"from your account <a href=\"%s\" target=\"_blank\">dashboard</a>. A new API "
|
1896 |
-
"key will be emailed to you after your order has been completed."
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:502
|
1900 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:370
|
1901 |
-
#, php-format
|
1902 |
-
msgid ""
|
1903 |
-
"The subscription for %s has expired. You can reactivate the subscription "
|
1904 |
-
"from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:516
|
1908 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:381
|
1909 |
-
#, php-format
|
1910 |
-
msgid ""
|
1911 |
-
"The subscription for %s has been suspended. You can reactivate the "
|
1912 |
-
"subscription from your account <a href=\"%s\" target=\"_blank\">dashboard</"
|
1913 |
-
"a>."
|
1914 |
-
msgstr ""
|
1915 |
-
|
1916 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:530
|
1917 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:392
|
1918 |
-
#, php-format
|
1919 |
-
msgid ""
|
1920 |
-
"The subscription for %s is still pending. You can check on the status of the "
|
1921 |
-
"subscription from your account <a href=\"%s\" target=\"_blank\">dashboard</"
|
1922 |
-
"a>."
|
1923 |
-
msgstr ""
|
1924 |
-
|
1925 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:544
|
1926 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:403
|
1927 |
-
#, php-format
|
1928 |
-
msgid ""
|
1929 |
-
"The subscription for %s has been placed in the trash and will be deleted "
|
1930 |
-
"soon. You can purchase a new subscription from your account <a href=\"%s\" "
|
1931 |
-
"target=\"_blank\">dashboard</a>."
|
1932 |
-
msgstr ""
|
1933 |
-
|
1934 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:558
|
1935 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:414
|
1936 |
-
#, php-format
|
1937 |
-
msgid ""
|
1938 |
-
"A subscription for %s could not be found. You can purchase a subscription "
|
1939 |
-
"from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
|
1940 |
-
msgstr ""
|
1941 |
-
|
1942 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:572
|
1943 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:425
|
1944 |
-
#, php-format
|
1945 |
-
msgid ""
|
1946 |
-
"A API key for %s could not be found. Maybe you forgot to enter a API key "
|
1947 |
-
"when setting up %s, or the key was deactivated in your account. You can "
|
1948 |
-
"reactivate or purchase a subscription key from your account <a href=\"%s\" "
|
1949 |
-
"target=\"_blank\">dashboard</a>."
|
1950 |
-
msgstr ""
|
1951 |
-
|
1952 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:587
|
1953 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:436
|
1954 |
-
#, php-format
|
1955 |
-
msgid ""
|
1956 |
-
"Download permission for %s has been revoked possibly due to a API key or "
|
1957 |
-
"subscription expiring. You can reactivate or purchase a API key from your "
|
1958 |
-
"account <a href=\"%s\" target=\"_blank\">dashboard</a>."
|
1959 |
-
msgstr ""
|
1960 |
-
|
1961 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:601
|
1962 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:447
|
1963 |
-
#, php-format
|
1964 |
-
msgid ""
|
1965 |
-
"%s has not been activated. Go to the settings page and enter the API key and "
|
1966 |
-
"subscription email to activate %s."
|
1967 |
-
msgstr ""
|
1968 |
-
|
1969 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:615
|
1970 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/ApiManager/class-wc-plugin-update.php:458
|
1971 |
-
#, php-format
|
1972 |
-
msgid ""
|
1973 |
-
"You changed the subscription for %s, so you will need to enter your new API "
|
1974 |
-
"Key in the settings page. The API Key should have arrived in your email "
|
1975 |
-
"inbox, if not you can get it by logging into your account <a href=\"%s\" "
|
1976 |
-
"target=\"_blank\">dashboard</a>."
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseActivation.php:151
|
1980 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/Action/LicenseActivation.php:136
|
1981 |
-
msgid "Connection failed to the Subscription Key API server. Try again later."
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:34
|
1985 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:27
|
1986 |
-
msgid "No WP Desk plugins found."
|
1987 |
-
msgstr ""
|
1988 |
-
|
1989 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:47
|
1990 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:39
|
1991 |
-
#, fuzzy
|
1992 |
-
#| msgid "Plugin Usage"
|
1993 |
-
msgid "Plugin"
|
1994 |
-
msgstr "Dane użytkowania wtyczek"
|
1995 |
-
|
1996 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:48
|
1997 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:39
|
1998 |
-
msgid "Subscription Status"
|
1999 |
-
msgstr ""
|
2000 |
-
|
2001 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:49
|
2002 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:39
|
2003 |
-
msgid "Subscription Data"
|
2004 |
-
msgstr ""
|
2005 |
-
|
2006 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:69
|
2007 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:56
|
2008 |
-
#, fuzzy
|
2009 |
-
#| msgid "Deactivate License"
|
2010 |
-
msgid "Deactivated"
|
2011 |
-
msgstr "Dezaktywuj licencję"
|
2012 |
-
|
2013 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:71
|
2014 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/class-wpdesk-helper-list-table.php:58
|
2015 |
-
msgid "Activated"
|
2016 |
-
msgstr ""
|
2017 |
-
|
2018 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:9
|
2019 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:14
|
2020 |
-
msgid "Key:"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:14
|
2024 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:25
|
2025 |
-
msgid "Email:"
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:22
|
2029 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:41
|
2030 |
-
msgid "Activate"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:25
|
2034 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/license-actions.php:47
|
2035 |
-
#, fuzzy
|
2036 |
-
#| msgid "Deactivate License"
|
2037 |
-
msgid "Deactivate"
|
2038 |
-
msgstr "Dezaktywuj licencję"
|
2039 |
-
|
2040 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/licenses.php:9
|
2041 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/licenses.php:16
|
2042 |
-
#, fuzzy
|
2043 |
-
#| msgid "Method Description"
|
2044 |
-
msgid "WP Desk Subscriptions"
|
2045 |
-
msgstr "Opis"
|
2046 |
-
|
2047 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/License/views/licenses.php:19
|
2048 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/License/views/licenses.php:26
|
2049 |
-
#, php-format
|
2050 |
-
msgid ""
|
2051 |
-
"Get your subscription keys <a href=\"%s\" target=\"_blank\">here</a>. You "
|
2052 |
-
"can activate/deactivate API keys <strong>unlimited times on different "
|
2053 |
-
"domains</strong> as long as you have an active subscription."
|
2054 |
-
msgstr ""
|
2055 |
-
|
2056 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/LicensePage.php:45
|
2057 |
-
#: vendor/wpdesk/wp-wpdesk-license/src/Page/LicensePage.php:46
|
2058 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-license/src/Page/LicensePage.php:41
|
2059 |
-
#, fuzzy
|
2060 |
-
#| msgid "Actions"
|
2061 |
-
msgid "Subscriptions"
|
2062 |
-
msgstr "Akcje"
|
2063 |
-
|
2064 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/scripts.php:27
|
2065 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/scripts.php:35
|
2066 |
-
msgid "Plugin deactivation"
|
2067 |
-
msgstr "Wyłączanie wtyczki"
|
2068 |
-
|
2069 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/scripts.php:76
|
2070 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:92
|
2071 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/scripts.php:106
|
2072 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:126
|
2073 |
-
msgid "Submit & Deactivate"
|
2074 |
-
msgstr "Wyślij i dezaktywuj"
|
2075 |
-
|
2076 |
-
#: vendor/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:19
|
2077 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:9
|
2078 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker-deactivation/src/WPDesk/Tracker/Deactivation/views/thickbox.php:29
|
2079 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-deactivate.php:19
|
2080 |
-
#, fuzzy
|
2081 |
-
#| msgid ""
|
2082 |
-
#| "If you have a moment, please let us know why you are deactivating plugin "
|
2083 |
-
#| "(anonymous feedback):"
|
2084 |
-
msgid ""
|
2085 |
-
"If you have a moment, please let us know why you are deactivating plugin (anonymous feedback):"
|
2086 |
-
msgstr ""
|
2087 |
-
"Jeśli masz chwilę, prosimy daj nam znać dlaczego wyłączasz wtyczkę (anonimowa opinia):"
|
2088 |
-
|
2089 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:7
|
2090 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:5
|
2091 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:15
|
2092 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:13
|
2093 |
-
#, php-format
|
2094 |
-
msgid "Hey %s,"
|
2095 |
-
msgstr "Hej %s,"
|
2096 |
-
|
2097 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:8
|
2098 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:18
|
2099 |
-
msgid ""
|
2100 |
-
"Please help us improve our plugins! If you opt-in, we will collect some non-"
|
2101 |
-
"sensitive data and usage information anonymously. If you skip this, that's "
|
2102 |
-
"okay! All plugins will work just fine."
|
2103 |
-
msgstr ""
|
2104 |
-
"Proszę pomóż nam udoskonalić nasze wtyczki! Jeśli się zgodzisz, będziemy "
|
2105 |
-
"zbierać niewrażliwe dane użytkowania anonimowo. Jeśli pominiesz ten krok, w "
|
2106 |
-
"porządku! Wszystkie wtyczki będą działać."
|
2107 |
-
|
2108 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:13
|
2109 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:27
|
2110 |
-
msgid "Allow & Continue →"
|
2111 |
-
msgstr "Pozwól i kontynuuj →"
|
2112 |
-
|
2113 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:14
|
2114 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:32
|
2115 |
-
msgid "Skip"
|
2116 |
-
msgstr "Pomiń"
|
2117 |
-
|
2118 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:19
|
2119 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:39
|
2120 |
-
msgid "What permissions are being granted?"
|
2121 |
-
msgstr "Jakie uprawnienia są przyznawane?"
|
2122 |
-
|
2123 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:26
|
2124 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:48
|
2125 |
-
msgid "Your Site Overview"
|
2126 |
-
msgstr "Dane witryny"
|
2127 |
-
|
2128 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:27
|
2129 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:51
|
2130 |
-
msgid "WP version, PHP info"
|
2131 |
-
msgstr "Wersja WP, PHP info"
|
2132 |
-
|
2133 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:33
|
2134 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:59
|
2135 |
-
msgid "Plugin Usage"
|
2136 |
-
msgstr "Dane użytkowania wtyczek"
|
2137 |
-
|
2138 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:34
|
2139 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:62
|
2140 |
-
msgid "Current settings and usage information of WP Desk plugins"
|
2141 |
-
msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
|
2142 |
-
|
2143 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:40
|
2144 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:70
|
2145 |
-
msgid "Your Store Overview"
|
2146 |
-
msgstr "Ustawienia i informacje o użytkowaniu wtyczek WP Desk"
|
2147 |
-
|
2148 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:41
|
2149 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:73
|
2150 |
-
msgid "Anonymized and non-sensitive store usage information"
|
2151 |
-
msgstr "Tylko niewrażliwe i anonimowe dane o użytkowaniu sklepu"
|
2152 |
-
|
2153 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:47
|
2154 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:7
|
2155 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-connect.php:83
|
2156 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:21
|
2157 |
-
msgid "Find out more »"
|
2158 |
-
msgstr "Dowiedz się więcej »"
|
2159 |
-
|
2160 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:6
|
2161 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:16
|
2162 |
-
msgid ""
|
2163 |
-
"We need your help to improve <strong>WP Desk plugins</strong>, so they are "
|
2164 |
-
"more useful for you and the rest of <strong>30,000+ users</strong>. By "
|
2165 |
-
"collecting data on how you use our plugins, you will help us a lot. We will "
|
2166 |
-
"not collect any sensitive data, so you can feel safe."
|
2167 |
-
msgstr ""
|
2168 |
-
"Potrzebujemy Twojej pomocy, aby dalej rozwijać <strong>wtyczki WP Desk</"
|
2169 |
-
"strong> i były one jeszcze bardziej pomocne dla Ciebie i pozostałych ponad "
|
2170 |
-
"<strong>30 000 użytkowników</strong>. Zbierając dane na temat tego jak "
|
2171 |
-
"korzystasz z naszych wtyczek bardzo nam w tym pomożesz. Nie będziemy zbierać "
|
2172 |
-
"żadnych danych wrażliwych, więc możesz czuć się bezpiecznie."
|
2173 |
-
|
2174 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:10
|
2175 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-notice.php:26
|
2176 |
-
msgid "Allow"
|
2177 |
-
msgstr "Pozwól"
|
2178 |
-
|
2179 |
-
#: vendor/wpdesk/wp-wpdesk-tracker/src/views/tracker-opt-out-notice.php:3
|
2180 |
-
#: vendor_prefixed/wpdesk/wp-wpdesk-tracker/src/views/tracker-opt-out-notice.php:11
|
2181 |
-
msgid ""
|
2182 |
-
"You successfully opted out of collecting usage data by WP Desk. If you "
|
2183 |
-
"change your mind, you can always opt in later in the plugin's quick links."
|
2184 |
-
msgstr ""
|
2185 |
-
"Twoja rezygnacja ze zbierania danych użytkowania wtyczek przez WP Desk "
|
2186 |
-
"została przyjęta. Jeśli zmienisz zdanie, zawsze możesz włączyć zgodę poprzez "
|
2187 |
-
"szybkie linki w menu wtyczek."
|
2188 |
-
|
2189 |
-
#~ msgid "Watch how to use Flexible Shipping"
|
2190 |
-
#~ msgstr "Obejrzyj konfigurację Flexible Shipping"
|
2191 |
-
|
2192 |
-
#~ msgid "How to start with Flexible Shipping"
|
2193 |
-
#~ msgstr "Jak zacząć z Flexible Shipping?"
|
2194 |
-
|
2195 |
-
#~ msgid ""
|
2196 |
-
#~ "To add first Flexible Shipping method go to %1$sShipping zones%2$s and "
|
2197 |
-
#~ "add Flexible Shipping to a shipping zone. More info about %3$sshipping "
|
2198 |
-
#~ "methods%4$s."
|
2199 |
-
#~ msgstr ""
|
2200 |
-
#~ "Aby dodać pierwszą metodę Flexible Shipping przejdź do zakładki "
|
2201 |
-
#~ "%1$sStrefy wysyłki%2$s i dodaj Flexible Shipping do strefy wysyłki. "
|
2202 |
-
#~ "Dowiedz się więcej o %3$smetodach wysyłki%4$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://flexibleshipping.com/table-rate/
|
|
4 |
Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 3.9.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -175,6 +175,9 @@ If you are upgrading from the old Flexible Shipping version (1.3.2, woo-flexible
|
|
175 |
|
176 |
== Changelog ==
|
177 |
|
|
|
|
|
|
|
178 |
= 3.9.3 - 2019-10-07 =
|
179 |
* Added shipment data to WooCommerce REST API Order response
|
180 |
* Added A/B Tests on deactivation form
|
4 |
Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 3.9.4
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
175 |
|
176 |
== Changelog ==
|
177 |
|
178 |
+
= 3.9.4 - 2019-12-11 =
|
179 |
+
* Fixed WPML string translations compatibility
|
180 |
+
|
181 |
= 3.9.3 - 2019-10-07 =
|
182 |
* Added shipment data to WooCommerce REST API Order response
|
183 |
* Added A/B Tests on deactivation form
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit7f4bf840738d3676149bf7c00e78b444
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit0260a2ce46cad302eedd0ac9ddc08929', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'P' =>
|
@@ -349,9 +349,9 @@ class ComposerStaticInit7f4bf840738d3676149bf7c00e78b444
|
|
349 |
public static function getInitializer(ClassLoader $loader)
|
350 |
{
|
351 |
return \Closure::bind(function () use ($loader) {
|
352 |
-
$loader->prefixLengthsPsr4 =
|
353 |
-
$loader->prefixDirsPsr4 =
|
354 |
-
$loader->classMap =
|
355 |
|
356 |
}, null, ClassLoader::class);
|
357 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'P' =>
|
349 |
public static function getInitializer(ClassLoader $loader)
|
350 |
{
|
351 |
return \Closure::bind(function () use ($loader) {
|
352 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$prefixLengthsPsr4;
|
353 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$prefixDirsPsr4;
|
354 |
+
$loader->classMap = ComposerStaticInit0260a2ce46cad302eedd0ac9ddc08929::$classMap;
|
355 |
|
356 |
}, null, ClassLoader::class);
|
357 |
}
|