Version Description
(2022-09-22) = * Fixed: Both Product Query Type issue fixed. * Fixed: Minor bug fixing to config class.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.5.3 |
Comparing to | |
See all releases |
Code changes from version 4.5.2 to 4.5.3
- README.txt +5 -1
- V5/Query/{BothQuery.php → BOTHQuery.php} +8 -8
- V5/Utility/Config.php +135 -81
- includes/classes/class-woo-feed-constants.php +1 -1
- includes/filters/filters.php +19 -17
- languages/woo-feed.pot +0 -2937
- woo-feed.php +1 -1
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: WooCommerce Product Feed, WooCommerce, Google Shopping, Google Merchant, F
|
|
5 |
Requires at least: 4.4
|
6 |
Tested Up To: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 4.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -590,6 +590,10 @@ Using pro version:
|
|
590 |
|
591 |
== Changelog ==
|
592 |
|
|
|
|
|
|
|
|
|
593 |
= 4.5.2 (2022-09-15) =
|
594 |
* Fixed: Both Product Query Type class missing.
|
595 |
* Fixed: Pinterest RSS Board Feed changed from atom to RSS version 2.0.
|
5 |
Requires at least: 4.4
|
6 |
Tested Up To: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 4.5.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
590 |
|
591 |
== Changelog ==
|
592 |
|
593 |
+
= 4.5.3 (2022-09-22) =
|
594 |
+
* Fixed: Both Product Query Type issue fixed.
|
595 |
+
* Fixed: Minor bug fixing to config class.
|
596 |
+
|
597 |
= 4.5.2 (2022-09-15) =
|
598 |
* Fixed: Both Product Query Type class missing.
|
599 |
* Fixed: Pinterest RSS Board Feed changed from atom to RSS version 2.0.
|
V5/Query/{BothQuery.php → BOTHQuery.php}
RENAMED
@@ -1,29 +1,29 @@
|
|
1 |
<?php
|
2 |
namespace CTXFeed\V5\Query;
|
3 |
|
4 |
-
class
|
5 |
private $config;
|
6 |
-
|
7 |
public function __construct( $config ) {
|
8 |
$this->config = $config;
|
9 |
}
|
10 |
-
|
11 |
public function get_product_types() {
|
12 |
return false;
|
13 |
}
|
14 |
-
|
15 |
public function get_query_arguments() {
|
16 |
return false;
|
17 |
}
|
18 |
-
|
19 |
public function get_product_status() {
|
20 |
return false;
|
21 |
}
|
22 |
-
|
23 |
public function product_ids() {
|
24 |
$wp = (new WPQuery($this->config))->product_ids();
|
25 |
$wc = (new WCQuery($this->config))->product_ids();
|
26 |
-
|
27 |
return array_unique( array_merge( $wc, $wp ) );
|
28 |
}
|
29 |
-
}
|
1 |
<?php
|
2 |
namespace CTXFeed\V5\Query;
|
3 |
|
4 |
+
class BOTHQuery implements QueryInterface {
|
5 |
private $config;
|
6 |
+
|
7 |
public function __construct( $config ) {
|
8 |
$this->config = $config;
|
9 |
}
|
10 |
+
|
11 |
public function get_product_types() {
|
12 |
return false;
|
13 |
}
|
14 |
+
|
15 |
public function get_query_arguments() {
|
16 |
return false;
|
17 |
}
|
18 |
+
|
19 |
public function get_product_status() {
|
20 |
return false;
|
21 |
}
|
22 |
+
|
23 |
public function product_ids() {
|
24 |
$wp = (new WPQuery($this->config))->product_ids();
|
25 |
$wc = (new WCQuery($this->config))->product_ids();
|
26 |
+
|
27 |
return array_unique( array_merge( $wc, $wp ) );
|
28 |
}
|
29 |
+
}
|
V5/Utility/Config.php
CHANGED
@@ -27,7 +27,8 @@ class Config {
|
|
27 |
|
28 |
$this->feedInfo = $feedInfo;
|
29 |
$this->context = $context;
|
30 |
-
$
|
|
|
31 |
}
|
32 |
|
33 |
public function __isset( $name ) {
|
@@ -46,6 +47,10 @@ class Config {
|
|
46 |
return $this->config[ $name ] = $value;
|
47 |
}
|
48 |
|
|
|
|
|
|
|
|
|
49 |
/**
|
50 |
*
|
51 |
* @return array
|
@@ -60,7 +65,11 @@ class Config {
|
|
60 |
* @return string
|
61 |
*/
|
62 |
public function get_feed_id() {
|
63 |
-
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
|
66 |
/**
|
@@ -69,7 +78,11 @@ class Config {
|
|
69 |
* @return string
|
70 |
*/
|
71 |
public function get_feed_name() {
|
72 |
-
|
|
|
|
|
|
|
|
|
73 |
}
|
74 |
|
75 |
/**
|
@@ -78,7 +91,7 @@ class Config {
|
|
78 |
* @return string
|
79 |
*/
|
80 |
public function get_feed_file_name( $array = false ) {
|
81 |
-
if ( isset( $this->feedInfo['url'] ) ) {
|
82 |
$fileInfo = pathinfo( $this->feedInfo['url'] );
|
83 |
if ( $array ) {
|
84 |
return $fileInfo;
|
@@ -96,7 +109,11 @@ class Config {
|
|
96 |
* @return string
|
97 |
*/
|
98 |
public function get_feed_template() {
|
99 |
-
|
|
|
|
|
|
|
|
|
100 |
}
|
101 |
|
102 |
/**
|
@@ -105,7 +122,11 @@ class Config {
|
|
105 |
* @return string
|
106 |
*/
|
107 |
public function get_feed_language() {
|
108 |
-
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
|
111 |
/**
|
@@ -114,7 +135,7 @@ class Config {
|
|
114 |
* @return string
|
115 |
*/
|
116 |
public function get_feed_currency() {
|
117 |
-
if ( $this->config['feedCurrency'] ) {
|
118 |
return $this->config['feedCurrency'];
|
119 |
}
|
120 |
|
@@ -136,7 +157,11 @@ class Config {
|
|
136 |
* @return string
|
137 |
*/
|
138 |
public function get_feed_country() {
|
139 |
-
|
|
|
|
|
|
|
|
|
140 |
}
|
141 |
|
142 |
/**
|
@@ -145,7 +170,11 @@ class Config {
|
|
145 |
* @return string
|
146 |
*/
|
147 |
public function get_feed_file_type() {
|
148 |
-
|
|
|
|
|
|
|
|
|
149 |
}
|
150 |
|
151 |
/**
|
@@ -154,18 +183,21 @@ class Config {
|
|
154 |
* @return string
|
155 |
*/
|
156 |
public function get_delimiter() {
|
|
|
|
|
|
|
157 |
|
158 |
-
|
159 |
-
|
160 |
|
161 |
-
|
162 |
-
|
|
|
163 |
|
164 |
-
|
165 |
-
$this->config['delimiter'] = "\s";
|
166 |
}
|
167 |
|
168 |
-
return
|
169 |
}
|
170 |
|
171 |
/**
|
@@ -174,11 +206,14 @@ class Config {
|
|
174 |
* @return string
|
175 |
*/
|
176 |
public function get_enclosure() {
|
177 |
-
if (
|
|
|
|
|
|
|
178 |
return ( 'double' === $this->config['enclosure'] ) ? '"' : "'";
|
179 |
}
|
180 |
|
181 |
-
return
|
182 |
}
|
183 |
|
184 |
/**
|
@@ -187,7 +222,11 @@ class Config {
|
|
187 |
* @return string
|
188 |
*/
|
189 |
public function get_feed_items_wrapper() {
|
190 |
-
|
|
|
|
|
|
|
|
|
191 |
}
|
192 |
|
193 |
/**
|
@@ -196,7 +235,11 @@ class Config {
|
|
196 |
* @return string
|
197 |
*/
|
198 |
public function get_feed_item_wrapper() {
|
199 |
-
|
|
|
|
|
|
|
|
|
200 |
}
|
201 |
|
202 |
/**
|
@@ -205,7 +248,11 @@ class Config {
|
|
205 |
* @return string
|
206 |
*/
|
207 |
public function get_feed_extra_header() {
|
208 |
-
|
|
|
|
|
|
|
|
|
209 |
}
|
210 |
|
211 |
/**
|
@@ -214,7 +261,11 @@ class Config {
|
|
214 |
* @return string
|
215 |
*/
|
216 |
public function get_shipping_country() {
|
217 |
-
|
|
|
|
|
|
|
|
|
218 |
}
|
219 |
|
220 |
/**
|
@@ -223,7 +274,11 @@ class Config {
|
|
223 |
* @return string
|
224 |
*/
|
225 |
public function get_tax_country() {
|
226 |
-
|
|
|
|
|
|
|
|
|
227 |
}
|
228 |
|
229 |
/**
|
@@ -242,10 +297,23 @@ class Config {
|
|
242 |
/**
|
243 |
* Get URL campaign parameter.
|
244 |
*
|
245 |
-
* @return
|
246 |
*/
|
247 |
public function get_campaign_parameters() {
|
248 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
}
|
250 |
|
251 |
/**
|
@@ -254,7 +322,11 @@ class Config {
|
|
254 |
* @return bool
|
255 |
*/
|
256 |
public function remove_backorder_product() {
|
257 |
-
|
|
|
|
|
|
|
|
|
258 |
}
|
259 |
|
260 |
/**
|
@@ -263,7 +335,11 @@ class Config {
|
|
263 |
* @return bool
|
264 |
*/
|
265 |
public function remove_outofstock_product() {
|
266 |
-
|
|
|
|
|
|
|
|
|
267 |
}
|
268 |
|
269 |
/**
|
@@ -272,7 +348,11 @@ class Config {
|
|
272 |
* @return bool
|
273 |
*/
|
274 |
public function remove_empty_description() {
|
275 |
-
|
|
|
|
|
|
|
|
|
276 |
}
|
277 |
|
278 |
/**
|
@@ -281,7 +361,11 @@ class Config {
|
|
281 |
* @return bool
|
282 |
*/
|
283 |
public function remove_empty_image() {
|
284 |
-
|
|
|
|
|
|
|
|
|
285 |
}
|
286 |
|
287 |
/**
|
@@ -290,15 +374,19 @@ class Config {
|
|
290 |
* @return bool
|
291 |
*/
|
292 |
public function remove_empty_price() {
|
293 |
-
|
|
|
|
|
|
|
|
|
294 |
}
|
295 |
|
296 |
/**
|
297 |
-
* Get
|
298 |
*
|
299 |
* @return bool|array
|
300 |
*/
|
301 |
-
public function
|
302 |
if ( isset( $this->config['decimal_separator'] ) ) {
|
303 |
$number_format = [
|
304 |
'decimal_separator' => apply_filters( 'ctx_feed_number_format_decimal_separator', $this->config['decimal_separator'], $this->config ),
|
@@ -388,14 +476,14 @@ class Config {
|
|
388 |
*/
|
389 |
public function get_post_status_to_include() {
|
390 |
$status = [ 'draft', 'pending', 'private', 'publish' ];
|
391 |
-
if ( isset( $this->config['filter_mode'] ) && ! empty( $this->config['post_status'] ) ) {
|
392 |
$mode = $this->config['filter_mode'];
|
393 |
if ( 'include' === $mode['post_status'] ) {
|
394 |
return $this->config['post_status'];
|
395 |
}
|
396 |
|
397 |
if ( 'exclude' === $mode['post_status'] ) {
|
398 |
-
return array_merge( array_diff( $status, $this->config['post_status'] ), array_diff( $status, $this->config['post_status'] ) );
|
399 |
}
|
400 |
}
|
401 |
|
@@ -432,7 +520,7 @@ class Config {
|
|
432 |
* @return array|bool
|
433 |
*/
|
434 |
public function get_advance_filters() {
|
435 |
-
if ( isset( $this->config['
|
436 |
return [
|
437 |
"fattribute" => $this->config['fattribute'],
|
438 |
"condition" => $this->config['condition'],
|
@@ -450,10 +538,11 @@ class Config {
|
|
450 |
* @return array|bool
|
451 |
*/
|
452 |
public function get_ftp_config() {
|
453 |
-
if ( isset( $this->config['ftpenabled'] ) ) {
|
454 |
-
|
455 |
-
|
456 |
-
|
|
|
457 |
|
458 |
return [
|
459 |
"type" => $this->config['ftporsftp'],
|
@@ -478,8 +567,8 @@ class Config {
|
|
478 |
if ( isset( $this->config['is_variations'] ) ) {
|
479 |
return [
|
480 |
"is_variations" => $this->config['is_variations'],
|
481 |
-
"variable_price" => $this->config['variable_price'],
|
482 |
-
"variable_quantity" => $this->config['variable_quantity'],
|
483 |
];
|
484 |
}
|
485 |
|
@@ -492,7 +581,11 @@ class Config {
|
|
492 |
* @return mixed
|
493 |
*/
|
494 |
public function get_composite_price_type() {
|
495 |
-
|
|
|
|
|
|
|
|
|
496 |
}
|
497 |
|
498 |
/**
|
@@ -504,30 +597,6 @@ class Config {
|
|
504 |
return $this->feedInfo;
|
505 |
}
|
506 |
|
507 |
-
/**
|
508 |
-
* Get Feed Info
|
509 |
-
*
|
510 |
-
* @param $feedInfo
|
511 |
-
*
|
512 |
-
* @return array|mixed
|
513 |
-
*/
|
514 |
-
public function set_feed( $feedInfo ) {
|
515 |
-
return $this->feedInfo = $feedInfo;
|
516 |
-
}
|
517 |
-
|
518 |
-
/**
|
519 |
-
* Get Feed Configuration.
|
520 |
-
*
|
521 |
-
* @return object|false
|
522 |
-
*/
|
523 |
-
public function get_feed_config() {
|
524 |
-
if ( $this->feedInfo ) {
|
525 |
-
return ( new Config( $this->feedInfo['feedrules'] ) );
|
526 |
-
}
|
527 |
-
|
528 |
-
return false;
|
529 |
-
}
|
530 |
-
|
531 |
/**
|
532 |
* Get Feed Configuration.
|
533 |
*
|
@@ -544,10 +613,6 @@ class Config {
|
|
544 |
*/
|
545 |
private function set_config( $config ) {
|
546 |
|
547 |
-
// if ( empty( $this->config ) ) {
|
548 |
-
// $this->config = array();
|
549 |
-
// }
|
550 |
-
|
551 |
$defaults = array(
|
552 |
'provider' => '',
|
553 |
'feed_country' => '',
|
@@ -615,17 +680,6 @@ class Config {
|
|
615 |
)
|
616 |
);
|
617 |
|
618 |
-
$this->config['campaign_parameters'] = wp_parse_args(
|
619 |
-
$this->config['campaign_parameters'],
|
620 |
-
array(
|
621 |
-
'utm_source' => '',
|
622 |
-
'utm_medium' => '',
|
623 |
-
'utm_campaign' => '',
|
624 |
-
'utm_term' => '',
|
625 |
-
'utm_content' => '',
|
626 |
-
)
|
627 |
-
);
|
628 |
-
|
629 |
if ( ! empty( $this->config['provider'] ) && is_string( $this->config['provider'] ) ) {
|
630 |
/**
|
631 |
* filter parsed rules for provider
|
27 |
|
28 |
$this->feedInfo = $feedInfo;
|
29 |
$this->context = $context;
|
30 |
+
$config = isset( $this->feedInfo['feedrules'] ) ? $this->feedInfo['feedrules'] : $this->feedInfo;
|
31 |
+
$this->set_config( $config );
|
32 |
}
|
33 |
|
34 |
public function __isset( $name ) {
|
47 |
return $this->config[ $name ] = $value;
|
48 |
}
|
49 |
|
50 |
+
public function __unset( $name ) {
|
51 |
+
unset( $this->config[ $name ] );
|
52 |
+
}
|
53 |
+
|
54 |
/**
|
55 |
*
|
56 |
* @return array
|
65 |
* @return string
|
66 |
*/
|
67 |
public function get_feed_id() {
|
68 |
+
if ( isset( $this->config['feed_id'] ) && ! empty( $this->config['feed_id'] ) ) {
|
69 |
+
return $this->config['feed_id'];
|
70 |
+
}
|
71 |
+
|
72 |
+
return false;
|
73 |
}
|
74 |
|
75 |
/**
|
78 |
* @return string
|
79 |
*/
|
80 |
public function get_feed_name() {
|
81 |
+
if ( isset( $this->config['filename'] ) && ! empty( $this->config['filename'] ) ) {
|
82 |
+
return $this->config['filename'];
|
83 |
+
}
|
84 |
+
|
85 |
+
return false;
|
86 |
}
|
87 |
|
88 |
/**
|
91 |
* @return string
|
92 |
*/
|
93 |
public function get_feed_file_name( $array = false ) {
|
94 |
+
if ( isset( $this->feedInfo['url'] ) && ! empty( $this->feedInfo['url'] ) ) {
|
95 |
$fileInfo = pathinfo( $this->feedInfo['url'] );
|
96 |
if ( $array ) {
|
97 |
return $fileInfo;
|
109 |
* @return string
|
110 |
*/
|
111 |
public function get_feed_template() {
|
112 |
+
if ( isset( $this->config['provider'] ) ) {
|
113 |
+
return $this->config['provider'];
|
114 |
+
}
|
115 |
+
|
116 |
+
return false;
|
117 |
}
|
118 |
|
119 |
/**
|
122 |
* @return string
|
123 |
*/
|
124 |
public function get_feed_language() {
|
125 |
+
if ( isset( $this->config['feedLanguage'] ) && ! empty( $this->config['feedLanguage'] ) ) {
|
126 |
+
return $this->config['feedLanguage'];
|
127 |
+
}
|
128 |
+
|
129 |
+
return false;
|
130 |
}
|
131 |
|
132 |
/**
|
135 |
* @return string
|
136 |
*/
|
137 |
public function get_feed_currency() {
|
138 |
+
if ( isset( $this->config['feedCurrency'] ) ) {
|
139 |
return $this->config['feedCurrency'];
|
140 |
}
|
141 |
|
157 |
* @return string
|
158 |
*/
|
159 |
public function get_feed_country() {
|
160 |
+
if ( isset( $this->config['feed_country'] ) && ! empty( $this->config['feed_country'] ) ) {
|
161 |
+
return $this->config['feed_country'];
|
162 |
+
}
|
163 |
+
|
164 |
+
return false;
|
165 |
}
|
166 |
|
167 |
/**
|
170 |
* @return string
|
171 |
*/
|
172 |
public function get_feed_file_type() {
|
173 |
+
if ( isset( $this->config['feedType'] ) && ! empty( $this->config['feedType'] ) ) {
|
174 |
+
return $this->config['feedType'];
|
175 |
+
}
|
176 |
+
|
177 |
+
return false;
|
178 |
}
|
179 |
|
180 |
/**
|
183 |
* @return string
|
184 |
*/
|
185 |
public function get_delimiter() {
|
186 |
+
if ( isset( $this->config['delimiter'] ) && $this->config['delimiter'] !== "" ) {
|
187 |
+
if ( 'tsv' === $this->get_feed_file_type() ) {
|
188 |
+
$this->config['delimiter'] = "\t";
|
189 |
|
190 |
+
return $this->config['delimiter'];
|
191 |
+
}
|
192 |
|
193 |
+
if ( ' ' === $this->config['delimiter'] ) {
|
194 |
+
$this->config['delimiter'] = "\s";
|
195 |
+
}
|
196 |
|
197 |
+
return $this->config['delimiter'];
|
|
|
198 |
}
|
199 |
|
200 |
+
return false;
|
201 |
}
|
202 |
|
203 |
/**
|
206 |
* @return string
|
207 |
*/
|
208 |
public function get_enclosure() {
|
209 |
+
if ( isset( $this->config['enclosure'] ) && ! empty( $this->config['enclosure'] ) && in_array( $this->config['enclosure'], [
|
210 |
+
'double',
|
211 |
+
'single'
|
212 |
+
] ) ) {
|
213 |
return ( 'double' === $this->config['enclosure'] ) ? '"' : "'";
|
214 |
}
|
215 |
|
216 |
+
return false;
|
217 |
}
|
218 |
|
219 |
/**
|
222 |
* @return string
|
223 |
*/
|
224 |
public function get_feed_items_wrapper() {
|
225 |
+
if ( isset( $this->config['itemsWrapper'] ) && ! empty( $this->config['itemsWrapper'] ) ) {
|
226 |
+
return $this->config['itemsWrapper'];
|
227 |
+
}
|
228 |
+
|
229 |
+
return false;
|
230 |
}
|
231 |
|
232 |
/**
|
235 |
* @return string
|
236 |
*/
|
237 |
public function get_feed_item_wrapper() {
|
238 |
+
if ( isset( $this->config['itemWrapper'] ) && ! empty( $this->config['itemWrapper'] ) ) {
|
239 |
+
return $this->config['itemWrapper'];
|
240 |
+
}
|
241 |
+
|
242 |
+
return false;
|
243 |
}
|
244 |
|
245 |
/**
|
248 |
* @return string
|
249 |
*/
|
250 |
public function get_feed_extra_header() {
|
251 |
+
if ( isset( $this->config['extraHeader'] ) && ! empty( $this->config['extraHeader'] ) ) {
|
252 |
+
return $this->config['extraHeader'];
|
253 |
+
}
|
254 |
+
|
255 |
+
return false;
|
256 |
}
|
257 |
|
258 |
/**
|
261 |
* @return string
|
262 |
*/
|
263 |
public function get_shipping_country() {
|
264 |
+
if ( isset( $this->config['shipping_country'] ) && ! empty( $this->config['shipping_country'] ) ) {
|
265 |
+
return $this->config['shipping_country'];
|
266 |
+
}
|
267 |
+
|
268 |
+
return false;
|
269 |
}
|
270 |
|
271 |
/**
|
274 |
* @return string
|
275 |
*/
|
276 |
public function get_tax_country() {
|
277 |
+
if ( isset( $this->config['tax_country'] ) && ! empty( $this->config['tax_country'] ) ) {
|
278 |
+
return $this->config['tax_country'];
|
279 |
+
}
|
280 |
+
|
281 |
+
return false;
|
282 |
}
|
283 |
|
284 |
/**
|
297 |
/**
|
298 |
* Get URL campaign parameter.
|
299 |
*
|
300 |
+
* @return array|bool
|
301 |
*/
|
302 |
public function get_campaign_parameters() {
|
303 |
+
if ( isset( $this->config['campaign_parameters'] ) && ! empty( $this->config['campaign_parameters'] ) ) {
|
304 |
+
return wp_parse_args(
|
305 |
+
$this->config['campaign_parameters'],
|
306 |
+
array(
|
307 |
+
'utm_source' => '',
|
308 |
+
'utm_medium' => '',
|
309 |
+
'utm_campaign' => '',
|
310 |
+
'utm_term' => '',
|
311 |
+
'utm_content' => '',
|
312 |
+
)
|
313 |
+
);
|
314 |
+
}
|
315 |
+
|
316 |
+
return false;
|
317 |
}
|
318 |
|
319 |
/**
|
322 |
* @return bool
|
323 |
*/
|
324 |
public function remove_backorder_product() {
|
325 |
+
if ( isset( $this->config['is_backorder'] ) ) {
|
326 |
+
return 'y' === $this->config['is_backorder'];
|
327 |
+
}
|
328 |
+
|
329 |
+
return false;
|
330 |
}
|
331 |
|
332 |
/**
|
335 |
* @return bool
|
336 |
*/
|
337 |
public function remove_outofstock_product() {
|
338 |
+
if ( isset( $this->config['is_outOfStock'] ) ) {
|
339 |
+
return 'y' === $this->config['is_outOfStock'];
|
340 |
+
}
|
341 |
+
|
342 |
+
return false;
|
343 |
}
|
344 |
|
345 |
/**
|
348 |
* @return bool
|
349 |
*/
|
350 |
public function remove_empty_description() {
|
351 |
+
if ( isset( $this->config['is_emptyDescription'] ) ) {
|
352 |
+
return 'y' === $this->config['is_emptyDescription'];
|
353 |
+
}
|
354 |
+
|
355 |
+
return false;
|
356 |
}
|
357 |
|
358 |
/**
|
361 |
* @return bool
|
362 |
*/
|
363 |
public function remove_empty_image() {
|
364 |
+
if ( isset( $this->config['is_emptyImage'] ) ) {
|
365 |
+
return 'y' === $this->config['is_emptyImage'];
|
366 |
+
}
|
367 |
+
|
368 |
+
return false;
|
369 |
}
|
370 |
|
371 |
/**
|
374 |
* @return bool
|
375 |
*/
|
376 |
public function remove_empty_price() {
|
377 |
+
if ( isset( $this->config['is_emptyPrice'] ) ) {
|
378 |
+
return 'y' === $this->config['is_emptyPrice'];
|
379 |
+
}
|
380 |
+
|
381 |
+
return false;
|
382 |
}
|
383 |
|
384 |
/**
|
385 |
+
* Get Number Format.
|
386 |
*
|
387 |
* @return bool|array
|
388 |
*/
|
389 |
+
public function get_number_format() {
|
390 |
if ( isset( $this->config['decimal_separator'] ) ) {
|
391 |
$number_format = [
|
392 |
'decimal_separator' => apply_filters( 'ctx_feed_number_format_decimal_separator', $this->config['decimal_separator'], $this->config ),
|
476 |
*/
|
477 |
public function get_post_status_to_include() {
|
478 |
$status = [ 'draft', 'pending', 'private', 'publish' ];
|
479 |
+
if ( isset( $this->config['filter_mode'], $this->config['post_status']) && ! empty( $this->config['post_status'] ) ) {
|
480 |
$mode = $this->config['filter_mode'];
|
481 |
if ( 'include' === $mode['post_status'] ) {
|
482 |
return $this->config['post_status'];
|
483 |
}
|
484 |
|
485 |
if ( 'exclude' === $mode['post_status'] ) {
|
486 |
+
return array_unique(array_merge( array_diff( $status, $this->config['post_status'] ), array_diff( $status, $this->config['post_status'] ) ));
|
487 |
}
|
488 |
}
|
489 |
|
520 |
* @return array|bool
|
521 |
*/
|
522 |
public function get_advance_filters() {
|
523 |
+
if ( isset( $this->config['fattribute'] ) ) {
|
524 |
return [
|
525 |
"fattribute" => $this->config['fattribute'],
|
526 |
"condition" => $this->config['condition'],
|
538 |
* @return array|bool
|
539 |
*/
|
540 |
public function get_ftp_config() {
|
541 |
+
if ( isset( $this->config['ftpenabled'] ) && $this->config['ftpenabled'] ) {
|
542 |
+
|
543 |
+
// if ( '0' === $this->config['ftpenabled'] ) {
|
544 |
+
// return false;
|
545 |
+
// }
|
546 |
|
547 |
return [
|
548 |
"type" => $this->config['ftporsftp'],
|
567 |
if ( isset( $this->config['is_variations'] ) ) {
|
568 |
return [
|
569 |
"is_variations" => $this->config['is_variations'],
|
570 |
+
"variable_price" => isset( $this->config['variable_price'] ) ? $this->config['variable_price'] : '',
|
571 |
+
"variable_quantity" => isset( $this->config['variable_quantity'] ) ? $this->config['variable_quantity'] : '',
|
572 |
];
|
573 |
}
|
574 |
|
581 |
* @return mixed
|
582 |
*/
|
583 |
public function get_composite_price_type() {
|
584 |
+
if ( isset( $this->config['composite_price'] ) ) {
|
585 |
+
return $this->config['composite_price'];
|
586 |
+
}
|
587 |
+
|
588 |
+
return false;
|
589 |
}
|
590 |
|
591 |
/**
|
597 |
return $this->feedInfo;
|
598 |
}
|
599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
/**
|
601 |
* Get Feed Configuration.
|
602 |
*
|
613 |
*/
|
614 |
private function set_config( $config ) {
|
615 |
|
|
|
|
|
|
|
|
|
616 |
$defaults = array(
|
617 |
'provider' => '',
|
618 |
'feed_country' => '',
|
680 |
)
|
681 |
);
|
682 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
if ( ! empty( $this->config['provider'] ) && is_string( $this->config['provider'] ) ) {
|
684 |
/**
|
685 |
* filter parsed rules for provider
|
includes/classes/class-woo-feed-constants.php
CHANGED
@@ -23,7 +23,7 @@ if( ! class_exists("Woo_Feed_Constants") ) {
|
|
23 |
* @var string
|
24 |
* @since 3.1.6
|
25 |
*/
|
26 |
-
define( 'WOO_FEED_FREE_VERSION', '4.5.
|
27 |
}
|
28 |
|
29 |
if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
|
23 |
* @var string
|
24 |
* @since 3.1.6
|
25 |
*/
|
26 |
+
define( 'WOO_FEED_FREE_VERSION', '4.5.3' );
|
27 |
}
|
28 |
|
29 |
if ( ! defined( 'WOO_FEED_FREE_PATH' ) ) {
|
includes/filters/filters.php
CHANGED
@@ -13,28 +13,30 @@
|
|
13 |
if (!defined('ABSPATH')) {
|
14 |
exit;
|
15 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
case "email":
|
21 |
-
$outp = sanitize_email($inpu);
|
22 |
-
break;
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
31 |
|
32 |
-
case "file_name":
|
33 |
-
$outp = sanitize_file_name($inpu);
|
34 |
-
break;
|
35 |
}
|
36 |
-
return $outp;
|
37 |
|
|
|
38 |
}
|
39 |
|
40 |
-
add_filter( 'CTXFEED_filter_securing_input', 'CTXFEED_filter_securing_input_cb', 10, 4 );
|
13 |
if (!defined('ABSPATH')) {
|
14 |
exit;
|
15 |
}
|
16 |
+
if(!function_exists('CTXFEED_filter_securing_input_cb')){
|
17 |
+
function CTXFEED_filter_securing_input_cb($meth = "POST", $inpu = '', $type = "text" ) {
|
18 |
+
$outp = '';
|
19 |
+
switch ( $type ) {
|
20 |
+
case "email":
|
21 |
+
$outp = sanitize_email($inpu);
|
22 |
+
break;
|
23 |
|
24 |
+
case "text":
|
25 |
+
$outp = sanitize_text_field($inpu);
|
26 |
+
break;
|
|
|
|
|
|
|
27 |
|
28 |
+
case "textarea":
|
29 |
+
$outp = sanitize_textarea_field($inpu);
|
30 |
+
break;
|
31 |
|
32 |
+
case "file_name":
|
33 |
+
$outp = sanitize_file_name($inpu);
|
34 |
+
break;
|
35 |
+
}
|
36 |
+
return $outp;
|
37 |
|
|
|
|
|
|
|
38 |
}
|
|
|
39 |
|
40 |
+
add_filter( 'CTXFEED_filter_securing_input', 'CTXFEED_filter_securing_input_cb', 10, 4 );
|
41 |
}
|
42 |
|
|
languages/woo-feed.pot
DELETED
@@ -1,2937 +0,0 @@
|
|
1 |
-
# Copyright (C) 2022 WooFeed
|
2 |
-
# This file is distributed under the same license as the WooFeed package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: WooFeed\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Language-Team: support@webappick.com\n"
|
10 |
-
"POT-Creation-Date: 2022-08-10 12:06+0000\n"
|
11 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/webappick-product-feed-for-woocommerce/\n"
|
12 |
-
"X-Domain: woo-feed\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
15 |
-
"X-Poedit-SearchPath-0: .\n"
|
16 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
|
20 |
-
#: woo-feed.php:152, woo-feed.php:227, woo-feed.php:596, woo-feed.php:636, woo-feed.php:656, woo-feed.php:676, woo-feed.php:702, includes/action-handler.php:48
|
21 |
-
msgid "Unauthorized Action."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: woo-feed.php:156, includes/action-handler.php:55, includes/helper.php:863, includes/helper.php:2679, includes/helper.php:2707, includes/helper.php:3113, includes/helper.php:3306, includes/helper.php:3333, includes/helper.php:4570, includes/helper.php:5072, includes/classes/class-woo-feed-webappick-api.php:468, V5/Common/ImportFeed.php:102
|
25 |
-
msgid "Invalid Request."
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: woo-feed.php:231
|
29 |
-
msgid "Invalid Feed."
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: woo-feed.php:315
|
33 |
-
msgid "No Product Found with your feed configuration. Please Update And Generate the feed again."
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: woo-feed.php:310
|
37 |
-
msgid "Products not found with your filtering condition."
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woo-feed.php:363
|
41 |
-
msgid "Failed to save feed file. Please confirm that your WordPress directory have read and write permission."
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: woo-feed.php:355
|
45 |
-
msgid "Feed Making Complete"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: woo-feed.php:440, woo-feed.php:490
|
49 |
-
msgid "Failed security check"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: woo-feed.php:444, woo-feed.php:494
|
53 |
-
msgid "Invalid Feed Type!"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: woo-feed.php:549
|
57 |
-
msgid "Feed Does not Exists."
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: woo-feed.php:602
|
61 |
-
msgid "Invalid Merchant"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: admin/class-woo-feed-admin.php:181, includes/helper.php:828, includes/helper.php:940, includes/helper.php:921, includes/helper.php:909, includes/helper.php:897
|
65 |
-
msgid "N/A"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: admin/class-woo-feed-admin.php:182
|
69 |
-
msgid "Generating..."
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: admin/class-woo-feed-admin.php:183
|
73 |
-
msgid "Learn More.."
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: admin/class-woo-feed-admin.php:185, includes/helper.php:3033, admin/partials/woo-feed-edit-config.php:66
|
77 |
-
msgid "Select A Category"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: admin/class-woo-feed-admin.php:186
|
81 |
-
msgid "Loading Template..."
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: admin/class-woo-feed-admin.php:187
|
85 |
-
msgid "Delivering Configuration..."
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: admin/class-woo-feed-admin.php:188
|
89 |
-
msgid "Saving Configuration..."
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: admin/class-woo-feed-admin.php:189
|
93 |
-
msgid "Wait! Checking Extensions ..."
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: admin/class-woo-feed-admin.php:190
|
97 |
-
msgid "Warning! Enable PHP ssh2 extension to use SFTP. Contact your server administrator."
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: admin/class-woo-feed-admin.php:191
|
101 |
-
msgid "SFTP Available!"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: admin/class-woo-feed-admin.php:192
|
105 |
-
msgid "Please add one or more items to continue."
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: admin/class-woo-feed-admin.php:194
|
109 |
-
msgid "Are you sure you want to delete this item?"
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: admin/class-woo-feed-admin.php:195
|
113 |
-
msgid "Are you sure you want to delete selected items?"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: admin/class-woo-feed-admin.php:206
|
117 |
-
msgid "There was an error processing ajax request."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: admin/class-woo-feed-admin.php:249
|
121 |
-
msgid "Get Pro"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: admin/class-woo-feed-admin.php:251, admin/class-woo-feed-admin.php:282
|
125 |
-
msgid "Docs"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: admin/class-woo-feed-admin.php:253, admin/class-woo-feed-admin.php:280, admin/class-woo-feed-admin.php:280, admin/partials/woo-feed-settings.php:17
|
129 |
-
msgid "Settings"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: admin/class-woo-feed-admin.php:275, admin/class-woo-feed-admin.php:275, includes/classes/class-woo-feed-admin-message.php:121, includes/classes/class-woo-feed-webappick-api.php:300
|
133 |
-
msgid "CTX Feed"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: admin/class-woo-feed-admin.php:276, admin/class-woo-feed-admin.php:276
|
137 |
-
msgid "Manage Feeds"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: admin/class-woo-feed-admin.php:277, admin/class-woo-feed-admin.php:277
|
141 |
-
msgid "Make Feed"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: admin/class-woo-feed-admin.php:278, admin/class-woo-feed-admin.php:278, admin/partials/woo-feed-category-mapping.php:27, includes/classes/class-woo-feed-product-attributes.php:577, V5/Product/ProductAttributeFactory.php:529
|
145 |
-
msgid "Category Mapping"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: admin/class-woo-feed-admin.php:279, admin/class-woo-feed-admin.php:279
|
149 |
-
msgid "WP Options"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: admin/class-woo-feed-admin.php:281, admin/class-woo-feed-admin.php:281
|
153 |
-
msgid "Status"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: admin/class-woo-feed-admin.php:282, includes/classes/class-woo-feed-admin-message.php:129, includes/classes/class-woo-feed-webappick-api.php:186
|
157 |
-
msgid "Documentation"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: admin/class-woo-feed-category-list.php:35
|
161 |
-
msgid "mapping"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: admin/class-woo-feed-category-list.php:36
|
165 |
-
msgid "mappings"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: admin/class-woo-feed-category-list.php:81, admin/class-woo-feed-category-list.php:122, admin/class-woo-feed-category-list.php:217, admin/class-woo-feed-manage-list.php:161, admin/class-woo-feed-manage-list.php:269, includes/helper.php:3385, V5/Common/Taxonomy.php:44
|
169 |
-
msgid "Edit"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: admin/class-woo-feed-category-list.php:88, admin/class-woo-feed-category-list.php:128, admin/class-woo-feed-category-list.php:222, admin/class-woo-feed-category-list.php:296, admin/class-woo-feed-manage-list.php:175, admin/class-woo-feed-manage-list.php:283, admin/class-woo-feed-manage-list.php:362, admin/class-woo-feed-option-list.php:90, admin/class-woo-feed-option-list.php:128, admin/class-woo-feed-option-list.php:216, admin/class-woo-feed-option-list.php:295
|
173 |
-
msgid "Delete"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: admin/class-woo-feed-category-list.php:186
|
177 |
-
msgid "No mapping available."
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: admin/class-woo-feed-category-list.php:248
|
181 |
-
msgid "Category Mapping Name"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: admin/class-woo-feed-category-list.php:249, admin/partials/woo-feed-content-settings.php:46
|
185 |
-
msgid "Template"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: admin/class-woo-feed-category-list.php:250, admin/class-woo-feed-manage-list.php:316, admin/class-woo-feed-option-list.php:248, admin/partials/woo-feed-settings.php:239
|
189 |
-
msgid "Action"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: admin/class-woo-feed-category-list.php:326
|
193 |
-
msgid "Failed To Delete Mapping"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: admin/class-woo-feed-category-list.php:322
|
197 |
-
msgid "Mapping Deleted Successfully"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: admin/class-woo-feed-category-list.php:316, admin/class-woo-feed-category-list.php:350
|
201 |
-
msgid "Failed To Delete Mapping. You do not have sufficient permission to delete."
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: admin/class-woo-feed-category-list.php:336, admin/class-woo-feed-manage-list.php:425, admin/class-woo-feed-manage-list.php:440, admin/class-woo-feed-option-list.php:337
|
205 |
-
msgid "You do not have sufficient permission to delete!"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#. translators: 1: number of item deleted.
|
209 |
-
#: admin/class-woo-feed-category-list.php:364
|
210 |
-
msgid "%d Mapping Successfully Deleted."
|
211 |
-
msgid_plural "%d Mappings Successfully Deleted."
|
212 |
-
msgstr[0] ""
|
213 |
-
msgstr[1] ""
|
214 |
-
|
215 |
-
#: admin/class-woo-feed-manage-list.php:36
|
216 |
-
msgid "feed"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: admin/class-woo-feed-manage-list.php:37
|
220 |
-
msgid "feeds"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: admin/class-woo-feed-manage-list.php:100
|
224 |
-
msgid "Copy To Clipboard"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: admin/class-woo-feed-manage-list.php:117, includes/helper.php:962
|
228 |
-
msgid "View"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: admin/class-woo-feed-manage-list.php:119
|
232 |
-
msgid "Regenerate"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: admin/class-woo-feed-manage-list.php:120, admin/partials/woo-feed-status.php:46
|
236 |
-
msgid "Download"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: admin/class-woo-feed-manage-list.php:123
|
240 |
-
msgid "Export Feed Config"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: admin/class-woo-feed-manage-list.php:126
|
244 |
-
msgid "Download Feed Log"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: admin/class-woo-feed-manage-list.php:168, admin/class-woo-feed-manage-list.php:276
|
248 |
-
msgid "Duplicate"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: admin/class-woo-feed-manage-list.php:235
|
252 |
-
msgid "No feed available."
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: admin/class-woo-feed-manage-list.php:310
|
256 |
-
msgid "Auto Update"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: admin/class-woo-feed-manage-list.php:311
|
260 |
-
msgid "Feed Name"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: admin/class-woo-feed-manage-list.php:312
|
264 |
-
msgid "Provider"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: admin/class-woo-feed-manage-list.php:313, admin/partials/woo-feed-edit-config.php:12
|
268 |
-
msgid "Type"
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: admin/class-woo-feed-manage-list.php:314
|
272 |
-
msgid "Feed URL"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: admin/class-woo-feed-manage-list.php:315
|
276 |
-
msgid "Last Updated"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: admin/class-woo-feed-manage-list.php:393
|
280 |
-
msgid "Failed To Delete Feed"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: admin/class-woo-feed-manage-list.php:389
|
284 |
-
msgid "Feed Deleted Successfully"
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: admin/class-woo-feed-manage-list.php:382
|
288 |
-
msgid "Failed To Delete Feed. You do not have sufficient permission to delete."
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: admin/class-woo-feed-manage-list.php:413
|
292 |
-
msgid "Feed Successfully Duplicated."
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: admin/class-woo-feed-manage-list.php:403
|
296 |
-
msgid "Failed To Duplicate Feed. You do not have sufficient permission to duplicate."
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#. translators: %d: number of item deleted.
|
300 |
-
#: admin/class-woo-feed-manage-list.php:453
|
301 |
-
msgid "%d Feed Successfully Deleted."
|
302 |
-
msgid_plural "%d Feeds Successfully Deleted."
|
303 |
-
msgstr[0] ""
|
304 |
-
msgstr[1] ""
|
305 |
-
|
306 |
-
#: admin/class-woo-feed-option-list.php:35
|
307 |
-
msgid "option"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#: admin/class-woo-feed-option-list.php:36
|
311 |
-
msgid "options"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: admin/class-woo-feed-option-list.php:185
|
315 |
-
msgid "No option saved."
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: admin/class-woo-feed-option-list.php:246, admin/partials/woo-feed-add-option.php:11
|
319 |
-
msgid "Option Name"
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#: admin/class-woo-feed-option-list.php:247
|
323 |
-
msgid "Option Value"
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
-
#: admin/class-woo-feed-option-list.php:326
|
327 |
-
msgid "Failed To Delete Option."
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: admin/class-woo-feed-option-list.php:322
|
331 |
-
msgid "Option Deleted Successfully."
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: admin/class-woo-feed-option-list.php:316, admin/class-woo-feed-option-list.php:355
|
335 |
-
msgid "Failed To Delete Option. You do not have sufficient permission to delete."
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#. translators: 1: number of item deleted.
|
339 |
-
#: admin/class-woo-feed-option-list.php:370
|
340 |
-
msgid "%d Option Successfully Deleted."
|
341 |
-
msgid_plural "%d Options Successfully Deleted."
|
342 |
-
msgstr[0] ""
|
343 |
-
msgstr[1] ""
|
344 |
-
|
345 |
-
#: includes/action-handler.php:139, includes/action-handler.php:104
|
346 |
-
msgid "No products found. Add product or change feed config before generate the feed."
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: includes/action-handler.php:119
|
350 |
-
msgid "Failed to fetch products."
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#. translators: %s: Reload Button
|
354 |
-
#: includes/class-woo-feed-docs.php:105
|
355 |
-
msgid "There's some problem loading the docs. Please Click %s To Fetch Again."
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: includes/class-woo-feed-docs.php:109
|
359 |
-
msgid "Here"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: includes/class-woo-feed-docs.php:64
|
363 |
-
msgid "Toggle panel: %s"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: includes/class-woo-feed-docs.php:124, admin/partials/woo-feed-pro-vs-free.php:196
|
367 |
-
msgid "Still need help?"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: includes/class-woo-feed-docs.php:125, admin/partials/woo-feed-pro-vs-free.php:197
|
371 |
-
msgid "Have we not answered your question?<br>Don't worry, you can contact us for more information..."
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: includes/class-woo-feed-docs.php:128, admin/partials/woo-feed-pro-vs-free.php:200, includes/classes/class-woo-feed-admin-message.php:131, includes/classes/class-woo-feed-webappick-api.php:206
|
375 |
-
msgid "Get Support"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: includes/class-woo-feed-installer.php:46
|
379 |
-
msgid "Woo Feed Update Interval"
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#. translators: 1: minimum required php version, 2: server php version
|
383 |
-
#: includes/class-woo-feed-installer.php:63
|
384 |
-
msgid "The Minimum PHP Version Requirement for <b>WooCommerce Product Feed</b> is %1$s. You are Running PHP %2$s"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/class-woo-feed-installer.php:92
|
388 |
-
msgid "Please deactivate the <b>WooCommerce Product Feed Pro</b> version to activate free version again."
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/helper.php:203, includes/helper.php:205, includes/helper.php:222, includes/helper.php:224
|
392 |
-
msgid "WooCommerce"
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: includes/helper.php:204, includes/helper.php:223
|
396 |
-
msgid "WooCommerce Product Feed"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#. translators: 1: this plugin name, 2: required plugin name, 3: required plugin name and installation url
|
400 |
-
#: includes/helper.php:208
|
401 |
-
msgid "%1$s requires %2$s to be installed and active. You can installed/activate %3$s here."
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#. translators: 1: this plugin name, 2: required plugin name, 3: required plugin required version, 4: required plugin current version, 5: required plugin update url and name
|
405 |
-
#: includes/helper.php:227
|
406 |
-
msgid "%1$s requires %2$s version %3$s or above and %4$s found. Please upgrade %2$s to the latest version here %5$s"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: includes/helper.php:293
|
410 |
-
msgid "Generating Product Feed"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/helper.php:391, V5/Common/DropDownOptions.php:608
|
414 |
-
msgid "WC_Product_Query"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: includes/helper.php:392, V5/Common/DropDownOptions.php:609
|
418 |
-
msgid "WP_Query"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/helper.php:393, V5/Common/DropDownOptions.php:610
|
422 |
-
msgid "Both"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: includes/helper.php:386, V5/Common/DropDownOptions.php:591
|
426 |
-
msgid "Individual"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: includes/helper.php:387, V5/Common/DropDownOptions.php:592
|
430 |
-
msgid "Variable Dependable"
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: includes/helper.php:407
|
434 |
-
msgid "No Expiration "
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: includes/helper.php:408
|
438 |
-
msgid "1 Month"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: includes/helper.php:409, includes/helper.php:1788
|
442 |
-
msgid "1 Week"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: includes/helper.php:410, includes/helper.php:1789
|
446 |
-
msgid "24 Hours"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: includes/helper.php:411, includes/helper.php:1790
|
450 |
-
msgid "12 Hours"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: includes/helper.php:412, includes/helper.php:1791
|
454 |
-
msgid "6 Hours"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: includes/helper.php:413, includes/helper.php:1792
|
458 |
-
msgid "1 Hours"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: includes/helper.php:839
|
462 |
-
msgid "Watch Now"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/helper.php:834, includes/helper.php:900
|
466 |
-
msgid "Read Article"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: includes/helper.php:936
|
470 |
-
msgid "Support Docs:"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: includes/helper.php:917
|
474 |
-
msgid "Supported File Types:"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: includes/helper.php:905
|
478 |
-
msgid "Video Documentation:"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: includes/helper.php:912
|
482 |
-
msgid "Watch now"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: includes/helper.php:893
|
486 |
-
msgid "Feed Specification:"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: includes/helper.php:963
|
490 |
-
msgid "Open Feed File"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: includes/helper.php:2643, V5/Helper/CustomFieldHelper.php:21
|
494 |
-
msgid "Brand"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: includes/helper.php:2644, includes/classes/class-woo-feed-product-attributes.php:322, V5/Helper/CustomFieldHelper.php:22, V5/Product/ProductAttributeFactory.php:266
|
498 |
-
msgid "GTIN"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: includes/helper.php:2645, includes/classes/class-woo-feed-product-attributes.php:323, V5/Helper/CustomFieldHelper.php:23, V5/Product/ProductAttributeFactory.php:267
|
502 |
-
msgid "MPN"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: includes/helper.php:2646, V5/Helper/CustomFieldHelper.php:24
|
506 |
-
msgid "EAN"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: includes/helper.php:2647, V5/Helper/CustomFieldHelper.php:25
|
510 |
-
msgid "ISBN"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: includes/helper.php:2648, V5/Helper/CustomFieldHelper.php:26
|
514 |
-
msgid "Age group"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: includes/helper.php:2649, V5/Helper/CustomFieldHelper.php:27
|
518 |
-
msgid "Gender"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: includes/helper.php:2650, V5/Helper/CustomFieldHelper.php:28
|
522 |
-
msgid "Material"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: includes/helper.php:2651, V5/Helper/CustomFieldHelper.php:29
|
526 |
-
msgid "Cost of good sold"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: includes/helper.php:2652, includes/classes/class-woo-feed-product-attributes.php:124, V5/Common/CustomFileds.php:60, V5/Common/CustomFileds.php:133, V5/CustomFields/AvailabilityDate.php:47, V5/CustomFields/AvailabilityDate.php:77, V5/Helper/CustomFieldHelper.php:30, V5/Product/ProductAttributeFactory.php:66, libs/WebAppick/Attributes/AvailabilityDate.php:47, libs/WebAppick/Attributes/AvailabilityDate.php:77
|
530 |
-
msgid "Availability Date"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: includes/helper.php:2653, includes/classes/class-woo-feed-product-attributes.php:306, V5/Helper/CustomFieldHelper.php:31, V5/Product/ProductAttributeFactory.php:249
|
534 |
-
msgid "Unit"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: includes/helper.php:2654, includes/classes/class-woo-feed-product-attributes.php:307, includes/classes/class-woo-feed-product-attributes.php:320, V5/Helper/CustomFieldHelper.php:32, V5/Product/ProductAttributeFactory.php:250, V5/Product/ProductAttributeFactory.php:264
|
538 |
-
msgid "Unit Price Measure"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: includes/helper.php:2655, includes/classes/class-woo-feed-product-attributes.php:308, includes/classes/class-woo-feed-product-attributes.php:321, V5/Helper/CustomFieldHelper.php:33, V5/Product/ProductAttributeFactory.php:251, V5/Product/ProductAttributeFactory.php:265
|
542 |
-
msgid "Unit Price Base Measure"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: includes/helper.php:2656, V5/Helper/CustomFieldHelper.php:34
|
546 |
-
msgid "Custom field 0"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: includes/helper.php:2657, V5/Helper/CustomFieldHelper.php:35
|
550 |
-
msgid "Custom field 1"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: includes/helper.php:2658, V5/Helper/CustomFieldHelper.php:36
|
554 |
-
msgid "Custom field 2"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: includes/helper.php:2659, V5/Helper/CustomFieldHelper.php:37
|
558 |
-
msgid "Custom field 3"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: includes/helper.php:2660, V5/Helper/CustomFieldHelper.php:38
|
562 |
-
msgid "Custom field 4"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/helper.php:2727, includes/helper.php:2831, V5/Common/CustomFileds.php:34, V5/Common/CustomFileds.php:108, V5/CustomFields/InputCustomFiled.php:37, V5/CustomFields/InputCustomFiled.php:93
|
566 |
-
msgid "CUSTOM FIELDS by CTX Feed"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: includes/helper.php:2744, V5/Common/CustomFileds.php:52, V5/CustomFields/InputCustomFiled.php:55
|
570 |
-
msgid "Set product "
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: includes/helper.php:2744, V5/Common/CustomFileds.php:52, V5/CustomFields/InputCustomFiled.php:55
|
574 |
-
msgid " here."
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: includes/helper.php:2941
|
578 |
-
msgid "Another category mapping exists with the same name."
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: includes/helper.php:2950
|
582 |
-
msgid "Failed To Add Mapping"
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: includes/helper.php:2946
|
586 |
-
msgid "Mapping Added Successfully"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: includes/helper.php:2915
|
590 |
-
msgid "Mapping Not Changed"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: includes/helper.php:2925
|
594 |
-
msgid "Failed To Updated Mapping"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: includes/helper.php:2921
|
598 |
-
msgid "Mapping Updated Successfully"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: includes/helper.php:3053
|
602 |
-
msgid "Copy this category to subcategories"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: includes/helper.php:3083
|
606 |
-
msgid "Clear Cache"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: includes/helper.php:3302, includes/helper.php:3330
|
610 |
-
msgid "Something is wrong."
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: includes/helper.php:3300
|
614 |
-
msgid "User meta updated successfully."
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: includes/helper.php:3377, includes/helper.php:3379, V5/Common/Taxonomy.php:36, V5/Common/Taxonomy.php:38
|
618 |
-
msgid "by CTX Feed"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: includes/helper.php:3380, V5/Common/Taxonomy.php:39
|
622 |
-
msgid "All"
|
623 |
-
msgstr ""
|
624 |
-
|
625 |
-
#: includes/helper.php:3381, V5/Common/Taxonomy.php:40
|
626 |
-
msgid "Parent"
|
627 |
-
msgstr ""
|
628 |
-
|
629 |
-
#: includes/helper.php:3382, V5/Common/Taxonomy.php:41
|
630 |
-
msgid "Parent:"
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
#: includes/helper.php:3383, V5/Common/Taxonomy.php:42
|
634 |
-
msgid "New"
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: includes/helper.php:3383, V5/Common/Taxonomy.php:42, libs/WebAppick/AppServices/Insights.php:977
|
638 |
-
msgid "Name"
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
-
#: includes/helper.php:3384, V5/Common/Taxonomy.php:43
|
642 |
-
msgid "Add New"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: includes/helper.php:3386, V5/Common/Taxonomy.php:45
|
646 |
-
msgid "Update"
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: includes/helper.php:3387, V5/Common/Taxonomy.php:46
|
650 |
-
msgid "Separate"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: includes/helper.php:3387, V5/Common/Taxonomy.php:46
|
654 |
-
msgid "with commas"
|
655 |
-
msgstr ""
|
656 |
-
|
657 |
-
#: includes/helper.php:3388, V5/Common/Taxonomy.php:47
|
658 |
-
msgid "Search"
|
659 |
-
msgstr ""
|
660 |
-
|
661 |
-
#: includes/helper.php:3389, V5/Common/Taxonomy.php:48
|
662 |
-
msgid "Add or remove"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: includes/helper.php:3390, V5/Common/Taxonomy.php:49
|
666 |
-
msgid "Choose from the most used"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: includes/helper.php:4269
|
670 |
-
msgid "Option Successfully Added."
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: includes/helper.php:4260
|
674 |
-
msgid "Option Already Added."
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: includes/helper.php:4978
|
678 |
-
msgid "Delivery up to 30 days"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: includes/helper.php:4976
|
682 |
-
msgid "Delivery 1 to 3 days"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: includes/helper.php:5080
|
686 |
-
msgid "Feed data is empty. Can't duplicate feed."
|
687 |
-
msgstr ""
|
688 |
-
|
689 |
-
#: includes/helper.php:5096
|
690 |
-
msgid "Unable to save the duplicate feed data."
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#: includes/helper.php:5106
|
694 |
-
msgid "Feed Successfully Duplicated, but unable to generate the data file. Please click the \"Regenerate Button\""
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#. translators: 1: error message 2: file name and path 3: line number
|
698 |
-
#: includes/log-helper.php:63
|
699 |
-
msgid "%1$s in %2$s on line %3$s"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: includes/template-infos.php:26, V5/Merchant/TemplateInfo.php:17
|
703 |
-
msgid "How to make google merchant feed?"
|
704 |
-
msgstr ""
|
705 |
-
|
706 |
-
#: includes/template-infos.php:27, V5/Merchant/TemplateInfo.php:18
|
707 |
-
msgid "How to configure shipping info?"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: includes/template-infos.php:28, V5/Merchant/TemplateInfo.php:19
|
711 |
-
msgid "How to set price with tax?"
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
#: includes/template-infos.php:29, includes/template-infos.php:65, V5/Merchant/TemplateInfo.php:20, V5/Merchant/TemplateInfo.php:56
|
715 |
-
msgid "How to configure google product categories?"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: includes/template-infos.php:176, V5/Merchant/TemplateInfo.php:167
|
719 |
-
msgid "Validator"
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: includes/template-infos.php:188, V5/Merchant/TemplateInfo.php:179
|
723 |
-
msgid "Set up return policies for Shopping Actions"
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: includes/template-infos.php:189, V5/Merchant/TemplateInfo.php:180
|
727 |
-
msgid "Set up a return address for Shopping Actions"
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
#: includes/template-infos.php:197, includes/template-infos.php:206, includes/template-infos.php:215, includes/template-infos.php:224, includes/template-infos.php:233, includes/template-infos.php:242, includes/template-infos.php:251, includes/template-infos.php:260, includes/template-infos.php:269, includes/template-infos.php:278, includes/template-infos.php:287, includes/template-infos.php:296, includes/template-infos.php:305, includes/template-infos.php:314, includes/template-infos.php:323, includes/template-infos.php:332, includes/template-infos.php:341, includes/template-infos.php:350, includes/template-infos.php:359, includes/template-infos.php:368, includes/template-infos.php:377, V5/Merchant/TemplateInfo.php:188, V5/Merchant/TemplateInfo.php:197, V5/Merchant/TemplateInfo.php:206, V5/Merchant/TemplateInfo.php:215, V5/Merchant/TemplateInfo.php:224, V5/Merchant/TemplateInfo.php:233, V5/Merchant/TemplateInfo.php:242, V5/Merchant/TemplateInfo.php:251, V5/Merchant/TemplateInfo.php:260, V5/Merchant/TemplateInfo.php:269, V5/Merchant/TemplateInfo.php:278, V5/Merchant/TemplateInfo.php:287, V5/Merchant/TemplateInfo.php:296, V5/Merchant/TemplateInfo.php:305, V5/Merchant/TemplateInfo.php:314, V5/Merchant/TemplateInfo.php:323, V5/Merchant/TemplateInfo.php:332, V5/Merchant/TemplateInfo.php:341, V5/Merchant/TemplateInfo.php:350, V5/Merchant/TemplateInfo.php:359, V5/Merchant/TemplateInfo.php:368
|
731 |
-
msgid "Feed Field Data Types"
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
-
#: includes/template-infos.php:198, includes/template-infos.php:207, includes/template-infos.php:216, includes/template-infos.php:225, includes/template-infos.php:234, includes/template-infos.php:243, includes/template-infos.php:252, includes/template-infos.php:261, includes/template-infos.php:270, includes/template-infos.php:279, includes/template-infos.php:288, includes/template-infos.php:297, includes/template-infos.php:306, includes/template-infos.php:315, includes/template-infos.php:324, includes/template-infos.php:333, includes/template-infos.php:342, includes/template-infos.php:351, includes/template-infos.php:360, includes/template-infos.php:369, includes/template-infos.php:378, V5/Merchant/TemplateInfo.php:189, V5/Merchant/TemplateInfo.php:198, V5/Merchant/TemplateInfo.php:207, V5/Merchant/TemplateInfo.php:216, V5/Merchant/TemplateInfo.php:225, V5/Merchant/TemplateInfo.php:234, V5/Merchant/TemplateInfo.php:243, V5/Merchant/TemplateInfo.php:252, V5/Merchant/TemplateInfo.php:261, V5/Merchant/TemplateInfo.php:270, V5/Merchant/TemplateInfo.php:279, V5/Merchant/TemplateInfo.php:288, V5/Merchant/TemplateInfo.php:297, V5/Merchant/TemplateInfo.php:306, V5/Merchant/TemplateInfo.php:315, V5/Merchant/TemplateInfo.php:324, V5/Merchant/TemplateInfo.php:333, V5/Merchant/TemplateInfo.php:342, V5/Merchant/TemplateInfo.php:351, V5/Merchant/TemplateInfo.php:360, V5/Merchant/TemplateInfo.php:369
|
735 |
-
msgid "Product Feed Standard"
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
-
#: includes/widget.php:19, V5/Common/Widget.php:18
|
739 |
-
msgid "Latest News from WebAppick Blog"
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: includes/widget.php:50, V5/Common/Widget.php:44
|
743 |
-
msgid "WEBAPPICK.COM"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: includes/widget.php:64, V5/Common/Widget.php:60
|
747 |
-
msgid "Get more woocommerce tips & news on our blog..."
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: admin/partials/woo-feed-add-option.php:3, admin/partials/woo-feed-add-option.php:18
|
751 |
-
msgid "Add Option"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: admin/partials/woo-feed-add-option.php:13
|
755 |
-
msgid "Search Option Name"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: admin/partials/woo-feed-admin-display.php:38
|
759 |
-
msgid "New WooCommerce Product Feed"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: admin/partials/woo-feed-category-mapping-list.php:21
|
763 |
-
msgid "Category Mapping List"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: admin/partials/woo-feed-category-mapping-list.php:21
|
767 |
-
msgid "Add New Mapping"
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: admin/partials/woo-feed-category-mapping-list.php:35, admin/partials/woo-feed-category-mapping-list.php:41, admin/partials/woo-feed-category-mapping-list.php:45, admin/partials/woo-feed-option-list.php:33, admin/partials/woo-feed-option-list.php:38, admin/partials/woo-feed-option-list.php:41
|
771 |
-
msgid "Are You Sure to Delete?"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: admin/partials/woo-feed-category-mapping.php:35
|
775 |
-
msgid "Merchant"
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: admin/partials/woo-feed-category-mapping.php:47
|
779 |
-
msgid "Mapping Name"
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
-
#: admin/partials/woo-feed-category-mapping.php:49
|
783 |
-
msgid "Mapping Name should be unique and don't use space. Otherwise it will override the existing Category Mapping. Example: myMappingName or my_mapping_name"
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
#: admin/partials/woo-feed-category-mapping.php:58
|
787 |
-
msgid "Local Category"
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: admin/partials/woo-feed-category-mapping.php:59
|
791 |
-
msgid "Merchant Category"
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: admin/partials/woo-feed-category-mapping.php:69
|
795 |
-
msgid "Save Mapping"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: admin/partials/woo-feed-content-settings.php:26
|
799 |
-
msgid "Content Settings"
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: admin/partials/woo-feed-content-settings.php:33
|
803 |
-
msgid "Country"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: admin/partials/woo-feed-content-settings.php:35
|
807 |
-
msgid "Select a country"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: admin/partials/woo-feed-content-settings.php:48
|
811 |
-
msgid "Select a template"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: admin/partials/woo-feed-content-settings.php:57
|
815 |
-
msgid "File Name"
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: admin/partials/woo-feed-content-settings.php:59
|
819 |
-
msgid "Filename should be unique. Otherwise it will override the existing filename."
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: admin/partials/woo-feed-content-settings.php:63
|
823 |
-
msgid "File Type"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: admin/partials/woo-feed-content-settings.php:87
|
827 |
-
msgid "Items Wrapper"
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: admin/partials/woo-feed-content-settings.php:94
|
831 |
-
msgid "Single Item Wrapper"
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
#: admin/partials/woo-feed-content-settings.php:109
|
835 |
-
msgid "Delimiter"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: admin/partials/woo-feed-content-settings.php:121
|
839 |
-
msgid "Enclosure"
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: admin/partials/woo-feed-edit-config.php:10
|
843 |
-
msgid "Attributes"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: admin/partials/woo-feed-edit-config.php:11
|
847 |
-
msgid "Prefix"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: admin/partials/woo-feed-edit-config.php:13
|
851 |
-
msgid "Value"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: admin/partials/woo-feed-edit-config.php:14
|
855 |
-
msgid "Suffix"
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
#: admin/partials/woo-feed-edit-config.php:15
|
859 |
-
msgid "Output Type"
|
860 |
-
msgstr ""
|
861 |
-
|
862 |
-
#: admin/partials/woo-feed-edit-config.php:16
|
863 |
-
msgid "Command"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
-
#: admin/partials/woo-feed-edit-config.php:53, admin/partials/woo-feed-edit-config.php:129
|
867 |
-
msgid "Attribute"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: admin/partials/woo-feed-edit-config.php:54, admin/partials/woo-feed-edit-config.php:130
|
871 |
-
msgid "Pattern (Static Value)"
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: admin/partials/woo-feed-edit-config.php:87, admin/partials/woo-feed-edit-config.php:146
|
875 |
-
msgid "Select Output Type"
|
876 |
-
msgstr ""
|
877 |
-
|
878 |
-
#: admin/partials/woo-feed-edit-config.php:161
|
879 |
-
msgid "Add New Attribute"
|
880 |
-
msgstr ""
|
881 |
-
|
882 |
-
#: admin/partials/woo-feed-edit-filter.php:10
|
883 |
-
msgid "Campaign URL Builder"
|
884 |
-
msgstr ""
|
885 |
-
|
886 |
-
#: admin/partials/woo-feed-edit-filter.php:18, admin/partials/woo-feed-edit-filter.php:19
|
887 |
-
msgid "Campaign Source"
|
888 |
-
msgstr ""
|
889 |
-
|
890 |
-
#: admin/partials/woo-feed-edit-filter.php:18, admin/partials/woo-feed-edit-filter.php:25, admin/partials/woo-feed-edit-filter.php:32
|
891 |
-
msgid "Required"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: admin/partials/woo-feed-edit-filter.php:21
|
895 |
-
msgid "The referrer: (e.g. google, newsletter)"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: admin/partials/woo-feed-edit-filter.php:25, admin/partials/woo-feed-edit-filter.php:26
|
899 |
-
msgid "Campaign Medium"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: admin/partials/woo-feed-edit-filter.php:28
|
903 |
-
msgid "Marketing medium: (e.g. cpc, banner, email)"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
#: admin/partials/woo-feed-edit-filter.php:32, admin/partials/woo-feed-edit-filter.php:33
|
907 |
-
msgid "Campaign Name"
|
908 |
-
msgstr ""
|
909 |
-
|
910 |
-
#: admin/partials/woo-feed-edit-filter.php:35
|
911 |
-
msgid "Product, promo code, or slogan (e.g. spring_sale)"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: admin/partials/woo-feed-edit-filter.php:39, admin/partials/woo-feed-edit-filter.php:40
|
915 |
-
msgid "Campaign Term"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: admin/partials/woo-feed-edit-filter.php:42
|
919 |
-
msgid "Identify the keywords"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: admin/partials/woo-feed-edit-filter.php:46, admin/partials/woo-feed-edit-filter.php:47
|
923 |
-
msgid "Campaign Content"
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: admin/partials/woo-feed-edit-filter.php:49
|
927 |
-
msgid "Use to differentiate ads"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: admin/partials/woo-feed-edit-filter.php:61
|
931 |
-
msgid "Fill out the required fields (marked with *) in the form above, if any required field is empty, then the parameters will not be applied."
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: admin/partials/woo-feed-edit-filter.php:62
|
935 |
-
msgid "Learn more about Campaign URL"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: admin/partials/woo-feed-edit-ftp.php:15, admin/partials/woo-feed-edit-ftp.php:19, admin/partials/woo-feed-settings.php:133, admin/partials/woo-feed-settings.php:154, admin/partials/woo-feed-settings.php:181, admin/partials/woo-feed-settings.php:193, admin/partials/woo-feed-settings.php:205, admin/partials/woo-feed-settings.php:217
|
939 |
-
msgid "Enabled"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: admin/partials/woo-feed-edit-ftp.php:18, admin/partials/woo-feed-settings.php:132, admin/partials/woo-feed-settings.php:153, admin/partials/woo-feed-settings.php:180, admin/partials/woo-feed-settings.php:192, admin/partials/woo-feed-settings.php:204, admin/partials/woo-feed-settings.php:216
|
943 |
-
msgid "Disabled"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: admin/partials/woo-feed-edit-ftp.php:21
|
947 |
-
msgid "For Google SFTP/FTP upload, first you need to create a feed on your Google Merchant Center."
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: admin/partials/woo-feed-edit-ftp.php:25
|
951 |
-
msgid "Server Type"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: admin/partials/woo-feed-edit-ftp.php:28
|
955 |
-
msgid "FTP"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: admin/partials/woo-feed-edit-ftp.php:29
|
959 |
-
msgid "SFTP"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: admin/partials/woo-feed-edit-ftp.php:35
|
963 |
-
msgid "Host Name"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: admin/partials/woo-feed-edit-ftp.php:39
|
967 |
-
msgid "Port"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: admin/partials/woo-feed-edit-ftp.php:43
|
971 |
-
msgid "User Name"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: admin/partials/woo-feed-edit-ftp.php:47
|
975 |
-
msgid "Password"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
#: admin/partials/woo-feed-edit-ftp.php:51
|
979 |
-
msgid "Path"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: admin/partials/woo-feed-edit-ftp.php:55
|
983 |
-
msgid "Connection Mode"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: admin/partials/woo-feed-edit-ftp.php:58
|
987 |
-
msgid "Active"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: admin/partials/woo-feed-edit-ftp.php:59
|
991 |
-
msgid "Passive"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: admin/partials/woo-feed-edit-ftp.php:9
|
995 |
-
msgid "FTP/SFTP module is not found in your server. Please contact your service provider or system administrator to install/enable FTP/SFTP module."
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: admin/partials/woo-feed-edit-tabs.php:16
|
999 |
-
msgid "Feed Config"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: admin/partials/woo-feed-edit-tabs.php:20
|
1003 |
-
msgid "Filter"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: admin/partials/woo-feed-edit-tabs.php:28
|
1007 |
-
msgid "FTP/SFTP"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: admin/partials/woo-feed-edit-tabs.php:105
|
1011 |
-
msgid "Save"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: admin/partials/woo-feed-edit-tabs.php:107
|
1015 |
-
msgid "Update and Generate Feed"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: admin/partials/woo-feed-edit-template.php:38
|
1019 |
-
msgid "Edit WooCommerce Product Feed"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: admin/partials/woo-feed-manage-list.php:41
|
1023 |
-
msgid "Manage Feed"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: admin/partials/woo-feed-manage-list.php:42
|
1027 |
-
msgid "New Feed"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: admin/partials/woo-feed-manage-list.php:43
|
1031 |
-
msgid "Import Feed"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: admin/partials/woo-feed-manage-list.php:51
|
1035 |
-
msgid "Import Feed File"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: admin/partials/woo-feed-manage-list.php:57, admin/partials/woo-feed-manage-list.php:58
|
1039 |
-
msgid "Feed File Name"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: admin/partials/woo-feed-manage-list.php:63
|
1043 |
-
msgid "Import Now"
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: admin/partials/woo-feed-manage-list.php:76
|
1047 |
-
msgid "Auto Update Feed Interval"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: admin/partials/woo-feed-manage-list.php:86
|
1051 |
-
msgid "Interval"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: admin/partials/woo-feed-manage-list.php:95
|
1055 |
-
msgid "Update Interval"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: admin/partials/woo-feed-option-list.php:18
|
1059 |
-
msgid "Option List"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: admin/partials/woo-feed-option-list.php:18
|
1063 |
-
msgid "Add New Option"
|
1064 |
-
msgstr ""
|
1065 |
-
|
1066 |
-
#: admin/partials/woo-feed-pro-vs-free.php:136
|
1067 |
-
msgid "Upgrade to WooFeed Pro to unlock more powerful features."
|
1068 |
-
msgstr ""
|
1069 |
-
|
1070 |
-
#: admin/partials/woo-feed-pro-vs-free.php:153
|
1071 |
-
msgid "Learn More"
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
#: admin/partials/woo-feed-pro-vs-free.php:168
|
1075 |
-
msgid "CTX Feed Pro"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: admin/partials/woo-feed-pro-vs-free.php:170
|
1079 |
-
msgid "From: "
|
1080 |
-
msgstr ""
|
1081 |
-
|
1082 |
-
#: admin/partials/woo-feed-pro-vs-free.php:172
|
1083 |
-
msgid "$ "
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
#: admin/partials/woo-feed-pro-vs-free.php:172
|
1087 |
-
msgid "119.00"
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: admin/partials/woo-feed-pro-vs-free.php:174
|
1091 |
-
msgid "/ year"
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: admin/partials/woo-feed-pro-vs-free.php:177
|
1095 |
-
msgid "CTX Feed Pro is the most optimized & error-free WooCommerce product feed manager that makes your product listing approved faster, [...]"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: admin/partials/woo-feed-pro-vs-free.php:181
|
1099 |
-
msgid "Buy Now"
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: admin/partials/woo-feed-settings.php:26
|
1103 |
-
msgid "Common Settings"
|
1104 |
-
msgstr ""
|
1105 |
-
|
1106 |
-
#: admin/partials/woo-feed-settings.php:29
|
1107 |
-
msgid "Version "
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#: admin/partials/woo-feed-settings.php:40
|
1111 |
-
msgid "Product per batch"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: admin/partials/woo-feed-settings.php:43, admin/partials/woo-feed-settings.php:54, admin/partials/woo-feed-settings.php:65
|
1115 |
-
msgid "Don't change the value if you are not sure about this. Plugin may fail to make feed."
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: admin/partials/woo-feed-settings.php:47
|
1119 |
-
msgid "Product Query Type"
|
1120 |
-
msgstr ""
|
1121 |
-
|
1122 |
-
#: admin/partials/woo-feed-settings.php:58
|
1123 |
-
msgid "Variation Query Type"
|
1124 |
-
msgstr ""
|
1125 |
-
|
1126 |
-
#: admin/partials/woo-feed-settings.php:69
|
1127 |
-
msgid "Debug Mode"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: admin/partials/woo-feed-settings.php:73, admin/partials/woo-feed-settings.php:118
|
1131 |
-
msgid "Off"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: admin/partials/woo-feed-settings.php:74, admin/partials/woo-feed-settings.php:119
|
1135 |
-
msgid "On"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: admin/partials/woo-feed-settings.php:77
|
1139 |
-
msgid "Clear All Log Data"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: admin/partials/woo-feed-settings.php:79
|
1143 |
-
msgid "Enabling Logging will decrease performance of feed generation."
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: admin/partials/woo-feed-settings.php:83
|
1147 |
-
msgid "Send Debug Info"
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: admin/partials/woo-feed-settings.php:86
|
1151 |
-
msgid "Allow CTXFeed To Collect Debug Info."
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: admin/partials/woo-feed-settings.php:88
|
1155 |
-
msgid "To opt out, leave this box unchecked. Your Feed Data remains un-tracked, and no data will be collected. No sensitive data is tracked."
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: admin/partials/woo-feed-settings.php:88
|
1159 |
-
msgid "See What We Collect."
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: admin/partials/woo-feed-settings.php:100
|
1163 |
-
msgid "CTXFeed Cache TTL"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: admin/partials/woo-feed-settings.php:108
|
1167 |
-
msgid "Purge Cache Now"
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: admin/partials/woo-feed-settings.php:110
|
1171 |
-
msgid "When to expire the Cache."
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: admin/partials/woo-feed-settings.php:114
|
1175 |
-
msgid "WooCommerce Default Schema Override "
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: admin/partials/woo-feed-settings.php:122
|
1179 |
-
msgid "Turn off when you don't want to override default WooCommerce Product Schema"
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: admin/partials/woo-feed-settings.php:128
|
1183 |
-
msgid "Disable/Enable Facebook Pixel"
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: admin/partials/woo-feed-settings.php:136
|
1187 |
-
msgid "Disables or Enables Facebook Pixel ID’s for Variation"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: admin/partials/woo-feed-settings.php:140
|
1191 |
-
msgid "Facebook Pixel ID"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: admin/partials/woo-feed-settings.php:143
|
1195 |
-
msgid "Insert your Facebook Pixel ID"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: admin/partials/woo-feed-settings.php:149
|
1199 |
-
msgid "Disable/Enable Google Remarketing"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: admin/partials/woo-feed-settings.php:157
|
1203 |
-
msgid "Disables or Enables Google Remarketing"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: admin/partials/woo-feed-settings.php:161
|
1207 |
-
msgid "Google Remarketing ID"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: admin/partials/woo-feed-settings.php:164
|
1211 |
-
msgid "Insert your Google Remarketing ID"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: admin/partials/woo-feed-settings.php:168
|
1215 |
-
msgid "Google Remarketing Label"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: admin/partials/woo-feed-settings.php:171
|
1219 |
-
msgid "Insert your Google Remarketing Label"
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: admin/partials/woo-feed-settings.php:176
|
1223 |
-
msgid "Add Shipping/Tax info for all countries to feed (Google Shopping)"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: admin/partials/woo-feed-settings.php:184
|
1227 |
-
msgid "Disable or Enable all shipping to feed"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: admin/partials/woo-feed-settings.php:188
|
1231 |
-
msgid "Remove all other shipping classes when free shipping criteria are met (Google Shopping / Facebook only)"
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
#: admin/partials/woo-feed-settings.php:196
|
1235 |
-
msgid "Disable or Enable all shipping when free shipping is exists"
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: admin/partials/woo-feed-settings.php:200
|
1239 |
-
msgid "Remove the local pickup shipping zone from feed (Google Shopping)"
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: admin/partials/woo-feed-settings.php:208
|
1243 |
-
msgid "Disable or Enable all shipping when local pickup shipping is exists"
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
-
#: admin/partials/woo-feed-settings.php:212
|
1247 |
-
msgid "Enable FTP Upload"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: admin/partials/woo-feed-settings.php:220
|
1251 |
-
msgid "Disable or Enable FTP upload setting"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: admin/partials/woo-feed-settings.php:228
|
1255 |
-
msgid "Save Changes"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: admin/partials/woo-feed-settings.php:238
|
1259 |
-
msgid "Custom Fields"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: admin/partials/woo-feed-status.php:16
|
1263 |
-
msgid "System Status"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: admin/partials/woo-feed-status.php:64
|
1267 |
-
msgid "Environment"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: admin/partials/woo-feed-status.php:66, libs/WebAppick/AppServices/Insights.php:1003
|
1271 |
-
msgid "Message"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#. translators: 1: Method Name 2: Method Name
|
1275 |
-
#: includes/classes/class-woo-feed-admin-message.php:78
|
1276 |
-
msgid "%1$s Should be called before %2$s"
|
1277 |
-
msgstr ""
|
1278 |
-
|
1279 |
-
#: includes/classes/class-woo-feed-admin-message.php:124, includes/classes/class-woo-feed-admin-message.php:125
|
1280 |
-
msgid "Get CTX Feed Pro"
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#: includes/classes/class-woo-feed-admin-message.php:130, includes/classes/class-woo-feed-webappick-api.php:187
|
1284 |
-
msgid "Video Tutorials"
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: includes/classes/class-woo-feed-admin-message.php:225
|
1288 |
-
msgid "Feed Config Created Successfully."
|
1289 |
-
msgstr ""
|
1290 |
-
|
1291 |
-
#: includes/classes/class-woo-feed-admin-message.php:234
|
1292 |
-
msgid "Feed Config Updated Successfully."
|
1293 |
-
msgstr ""
|
1294 |
-
|
1295 |
-
#: includes/classes/class-woo-feed-admin-message.php:243
|
1296 |
-
msgid "Feed Config Successfully Imported."
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#. translators: Feed URL
|
1300 |
-
#: includes/classes/class-woo-feed-admin-message.php:261
|
1301 |
-
msgid "Feed Generated Successfully. Feed URL: %s"
|
1302 |
-
msgstr ""
|
1303 |
-
|
1304 |
-
#: includes/classes/class-woo-feed-admin-message.php:264
|
1305 |
-
msgid "Warning:"
|
1306 |
-
msgstr ""
|
1307 |
-
|
1308 |
-
#: includes/classes/class-woo-feed-admin-message.php:267
|
1309 |
-
msgid "Learn more..."
|
1310 |
-
msgstr ""
|
1311 |
-
|
1312 |
-
#: includes/classes/class-woo-feed-admin-message.php:268
|
1313 |
-
msgid "Google Product category is not selected. Your Google Ads CPC rate will be high. Add proper Google Product Category to each product & reduce CPC rate."
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#: includes/classes/class-woo-feed-admin-message.php:296
|
1317 |
-
msgid "Feed auto update interval updated."
|
1318 |
-
msgstr ""
|
1319 |
-
|
1320 |
-
#: includes/classes/class-woo-feed-admin-message.php:305
|
1321 |
-
msgid "Unable to save auto update interval."
|
1322 |
-
msgstr ""
|
1323 |
-
|
1324 |
-
#: includes/classes/class-woo-feed-admin-message.php:314
|
1325 |
-
msgid "Invalid interval value."
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
-
#: includes/classes/class-woo-feed-admin-message.php:323
|
1329 |
-
msgid "Invalid request."
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
-
#: includes/classes/class-woo-feed-admin-message.php:346
|
1333 |
-
msgid "Settings Updated."
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: includes/classes/class-woo-feed-list-table.php:182
|
1337 |
-
msgid "List View"
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: includes/classes/class-woo-feed-list-table.php:183
|
1341 |
-
msgid "Excerpt View"
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
#: includes/classes/class-woo-feed-list-table.php:360
|
1345 |
-
msgid "No items found."
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: includes/classes/class-woo-feed-list-table.php:495
|
1349 |
-
msgid "Select bulk action"
|
1350 |
-
msgstr ""
|
1351 |
-
|
1352 |
-
#: includes/classes/class-woo-feed-list-table.php:497
|
1353 |
-
msgid "Bulk Actions"
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
#: includes/classes/class-woo-feed-list-table.php:506
|
1357 |
-
msgid "Apply"
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: includes/classes/class-woo-feed-list-table.php:560, includes/classes/class-woo-feed-list-table.php:1408
|
1361 |
-
msgid "Show more details"
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: includes/classes/class-woo-feed-list-table.php:629
|
1365 |
-
msgid "Filter by date"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
#: includes/classes/class-woo-feed-list-table.php:631
|
1369 |
-
msgid "All dates"
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#. translators: 1: month name, 2: 4-digit year
|
1373 |
-
#: includes/classes/class-woo-feed-list-table.php:646
|
1374 |
-
msgid "%1$s %2$d"
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: includes/classes/class-woo-feed-list-table.php:699
|
1378 |
-
msgid "%s comment"
|
1379 |
-
msgid_plural "%s comments"
|
1380 |
-
msgstr[0] ""
|
1381 |
-
msgstr[1] ""
|
1382 |
-
|
1383 |
-
#: includes/classes/class-woo-feed-list-table.php:700
|
1384 |
-
msgid "%s approved comment"
|
1385 |
-
msgid_plural "%s approved comments"
|
1386 |
-
msgstr[0] ""
|
1387 |
-
msgstr[1] ""
|
1388 |
-
|
1389 |
-
#: includes/classes/class-woo-feed-list-table.php:701
|
1390 |
-
msgid "%s pending comment"
|
1391 |
-
msgid_plural "%s pending comments"
|
1392 |
-
msgstr[0] ""
|
1393 |
-
msgstr[1] ""
|
1394 |
-
|
1395 |
-
#: includes/classes/class-woo-feed-list-table.php:729
|
1396 |
-
msgid "No approved comments"
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: includes/classes/class-woo-feed-list-table.php:729, includes/classes/class-woo-feed-list-table.php:707, includes/classes/class-woo-feed-list-table.php:752
|
1400 |
-
msgid "No comments"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: includes/classes/class-woo-feed-list-table.php:752
|
1404 |
-
msgid "No pending comments"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: includes/classes/class-woo-feed-list-table.php:831, includes/classes/class-woo-feed-list-table.php:1433
|
1408 |
-
msgid "%s item"
|
1409 |
-
msgid_plural "%s items"
|
1410 |
-
msgstr[0] ""
|
1411 |
-
msgstr[1] ""
|
1412 |
-
|
1413 |
-
#: includes/classes/class-woo-feed-list-table.php:867
|
1414 |
-
msgid "First page"
|
1415 |
-
msgstr ""
|
1416 |
-
|
1417 |
-
#: includes/classes/class-woo-feed-list-table.php:878
|
1418 |
-
msgid "Previous page"
|
1419 |
-
msgstr ""
|
1420 |
-
|
1421 |
-
#: includes/classes/class-woo-feed-list-table.php:889, includes/classes/class-woo-feed-list-table.php:885
|
1422 |
-
msgid "Current Page"
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
#: includes/classes/class-woo-feed-list-table.php:895
|
1426 |
-
msgctxt "paging"
|
1427 |
-
msgid "%1$s of %2$s"
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: includes/classes/class-woo-feed-list-table.php:903
|
1431 |
-
msgid "Next page"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: includes/classes/class-woo-feed-list-table.php:914
|
1435 |
-
msgid "Last page"
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: includes/classes/class-woo-feed-list-table.php:1144
|
1439 |
-
msgid "Select All"
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: includes/classes/class-woo-feed-log-handler-file.php:347, includes/classes/class-woo-feed-log-handler-file.php:367, V5/Utility/CTX_WC_Log_Handler.php:352, V5/Utility/CTX_WC_Log_Handler.php:372
|
1443 |
-
msgid "This method should not be called before plugins_loaded."
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: includes/classes/class-woo-feed-merchant.php:311
|
1447 |
-
msgid "Custom Template"
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: includes/classes/class-woo-feed-merchant.php:312, V5/Common/DropDownOptions.php:289
|
1451 |
-
msgid "Custom Template 1"
|
1452 |
-
msgstr ""
|
1453 |
-
|
1454 |
-
#: includes/classes/class-woo-feed-merchant.php:323
|
1455 |
-
msgid "Popular Templates"
|
1456 |
-
msgstr ""
|
1457 |
-
|
1458 |
-
#: includes/classes/class-woo-feed-merchant.php:324, V5/Common/DropDownOptions.php:296
|
1459 |
-
msgid "Google Shopping"
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: includes/classes/class-woo-feed-merchant.php:325, V5/Common/DropDownOptions.php:297
|
1463 |
-
msgid "Google Local Inventory Ads"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: includes/classes/class-woo-feed-merchant.php:326, V5/Common/DropDownOptions.php:298
|
1467 |
-
msgid "Google Local Product Inventory"
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: includes/classes/class-woo-feed-merchant.php:327, V5/Common/DropDownOptions.php:299
|
1471 |
-
msgid "Google Product Review"
|
1472 |
-
msgstr ""
|
1473 |
-
|
1474 |
-
#: includes/classes/class-woo-feed-merchant.php:328, V5/Common/DropDownOptions.php:300
|
1475 |
-
msgid "Google Shopping Action"
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#: includes/classes/class-woo-feed-merchant.php:329, V5/Common/DropDownOptions.php:301
|
1479 |
-
msgid "Google Promotions"
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
#: includes/classes/class-woo-feed-merchant.php:330, V5/Common/DropDownOptions.php:302
|
1483 |
-
msgid "Google Dynamic Search Ads"
|
1484 |
-
msgstr ""
|
1485 |
-
|
1486 |
-
#: includes/classes/class-woo-feed-merchant.php:331, V5/Common/DropDownOptions.php:303
|
1487 |
-
msgid "Google Ads"
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: includes/classes/class-woo-feed-merchant.php:332, V5/Common/DropDownOptions.php:304
|
1491 |
-
msgid "Google Ads Local Product"
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
#: includes/classes/class-woo-feed-merchant.php:333, V5/Common/DropDownOptions.php:305
|
1495 |
-
msgid "Facebook Catalog / Instagram"
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#: includes/classes/class-woo-feed-merchant.php:334, V5/Common/DropDownOptions.php:306
|
1499 |
-
msgid "Pinterest Catalog"
|
1500 |
-
msgstr ""
|
1501 |
-
|
1502 |
-
#: includes/classes/class-woo-feed-merchant.php:335, V5/Common/DropDownOptions.php:307
|
1503 |
-
msgid "Pinterest RSS Board"
|
1504 |
-
msgstr ""
|
1505 |
-
|
1506 |
-
#: includes/classes/class-woo-feed-merchant.php:336, V5/Common/DropDownOptions.php:308
|
1507 |
-
msgid "Bing Shopping"
|
1508 |
-
msgstr ""
|
1509 |
-
|
1510 |
-
#: includes/classes/class-woo-feed-merchant.php:337, V5/Common/DropDownOptions.php:309
|
1511 |
-
msgid "Bing Local Inventory"
|
1512 |
-
msgstr ""
|
1513 |
-
|
1514 |
-
#: includes/classes/class-woo-feed-merchant.php:338, V5/Common/DropDownOptions.php:310
|
1515 |
-
msgid "Snapchat"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
#: includes/classes/class-woo-feed-merchant.php:339, V5/Common/DropDownOptions.php:311
|
1519 |
-
msgid "TikTok"
|
1520 |
-
msgstr ""
|
1521 |
-
|
1522 |
-
#: includes/classes/class-woo-feed-merchant.php:340, V5/Common/DropDownOptions.php:312
|
1523 |
-
msgid "Idealo"
|
1524 |
-
msgstr ""
|
1525 |
-
|
1526 |
-
#: includes/classes/class-woo-feed-merchant.php:341, V5/Common/DropDownOptions.php:313
|
1527 |
-
msgid "PriceSpy"
|
1528 |
-
msgstr ""
|
1529 |
-
|
1530 |
-
#: includes/classes/class-woo-feed-merchant.php:342, V5/Common/DropDownOptions.php:314
|
1531 |
-
msgid "Price Runner"
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: includes/classes/class-woo-feed-merchant.php:343, V5/Common/DropDownOptions.php:315
|
1535 |
-
msgid "Yandex (CSV)"
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
-
#: includes/classes/class-woo-feed-merchant.php:344, V5/Common/DropDownOptions.php:316
|
1539 |
-
msgid "Yandex (XML)"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#: includes/classes/class-woo-feed-merchant.php:355
|
1543 |
-
msgid "Templates"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: includes/classes/class-woo-feed-merchant.php:356, V5/Common/DropDownOptions.php:322
|
1547 |
-
msgid "AdForm"
|
1548 |
-
msgstr ""
|
1549 |
-
|
1550 |
-
#: includes/classes/class-woo-feed-merchant.php:357, V5/Common/DropDownOptions.php:323
|
1551 |
-
msgid "AdRoll"
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
#: includes/classes/class-woo-feed-merchant.php:358, V5/Common/DropDownOptions.php:324
|
1555 |
-
msgid "Avantlink"
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: includes/classes/class-woo-feed-merchant.php:359, V5/Common/DropDownOptions.php:325
|
1559 |
-
msgid "Become"
|
1560 |
-
msgstr ""
|
1561 |
-
|
1562 |
-
#: includes/classes/class-woo-feed-merchant.php:360, V5/Common/DropDownOptions.php:326
|
1563 |
-
msgid "Beslist.nl"
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: includes/classes/class-woo-feed-merchant.php:361, V5/Common/DropDownOptions.php:327
|
1567 |
-
msgid "Bestprice"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: includes/classes/class-woo-feed-merchant.php:362, V5/Common/DropDownOptions.php:328
|
1571 |
-
msgid "Billiger.de"
|
1572 |
-
msgstr ""
|
1573 |
-
|
1574 |
-
#: includes/classes/class-woo-feed-merchant.php:363, V5/Common/DropDownOptions.php:329
|
1575 |
-
msgid "Bol.com"
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
#: includes/classes/class-woo-feed-merchant.php:364, V5/Common/DropDownOptions.php:330
|
1579 |
-
msgid "Bonanza"
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: includes/classes/class-woo-feed-merchant.php:365, V5/Common/DropDownOptions.php:331
|
1583 |
-
msgid "Catch.com.au"
|
1584 |
-
msgstr ""
|
1585 |
-
|
1586 |
-
#: includes/classes/class-woo-feed-merchant.php:366, V5/Common/DropDownOptions.php:332
|
1587 |
-
msgid "CDiscount.fr"
|
1588 |
-
msgstr ""
|
1589 |
-
|
1590 |
-
#: includes/classes/class-woo-feed-merchant.php:367, V5/Common/DropDownOptions.php:333
|
1591 |
-
msgid "Comparer.be"
|
1592 |
-
msgstr ""
|
1593 |
-
|
1594 |
-
#: includes/classes/class-woo-feed-merchant.php:368, V5/Common/DropDownOptions.php:334
|
1595 |
-
msgid "Connexity"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: includes/classes/class-woo-feed-merchant.php:369, V5/Common/DropDownOptions.php:335
|
1599 |
-
msgid "Criteo"
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: includes/classes/class-woo-feed-merchant.php:370, V5/Common/DropDownOptions.php:336
|
1603 |
-
msgid "Crowdfox"
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: includes/classes/class-woo-feed-merchant.php:371, V5/Common/DropDownOptions.php:337
|
1607 |
-
msgid "Daisycon Advertiser (General)"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: includes/classes/class-woo-feed-merchant.php:372, V5/Common/DropDownOptions.php:338
|
1611 |
-
msgid "Daisycon Advertiser (Automotive)"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: includes/classes/class-woo-feed-merchant.php:373, V5/Common/DropDownOptions.php:339
|
1615 |
-
msgid "Daisycon Advertiser (Books)"
|
1616 |
-
msgstr ""
|
1617 |
-
|
1618 |
-
#: includes/classes/class-woo-feed-merchant.php:374, V5/Common/DropDownOptions.php:340
|
1619 |
-
msgid "Daisycon Advertiser (Cosmetics)"
|
1620 |
-
msgstr ""
|
1621 |
-
|
1622 |
-
#: includes/classes/class-woo-feed-merchant.php:375, V5/Common/DropDownOptions.php:341
|
1623 |
-
msgid "Daisycon Advertiser (Daily Offers)"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: includes/classes/class-woo-feed-merchant.php:376, V5/Common/DropDownOptions.php:342
|
1627 |
-
msgid "Daisycon Advertiser (Electronics)"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: includes/classes/class-woo-feed-merchant.php:377, V5/Common/DropDownOptions.php:343
|
1631 |
-
msgid "Daisycon Advertiser (Fashion)"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: includes/classes/class-woo-feed-merchant.php:378, V5/Common/DropDownOptions.php:344
|
1635 |
-
msgid "Daisycon Advertiser (Food & Drinks)"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: includes/classes/class-woo-feed-merchant.php:379, V5/Common/DropDownOptions.php:345
|
1639 |
-
msgid "Daisycon Advertiser (Holidays: Accommodations and transport)"
|
1640 |
-
msgstr ""
|
1641 |
-
|
1642 |
-
#: includes/classes/class-woo-feed-merchant.php:380, V5/Common/DropDownOptions.php:346
|
1643 |
-
msgid "Daisycon Advertiser (Holidays: Accommodations)"
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: includes/classes/class-woo-feed-merchant.php:381, V5/Common/DropDownOptions.php:347
|
1647 |
-
msgid "Daisycon Advertiser (Holidays: Trips)"
|
1648 |
-
msgstr ""
|
1649 |
-
|
1650 |
-
#: includes/classes/class-woo-feed-merchant.php:382, V5/Common/DropDownOptions.php:348
|
1651 |
-
msgid "Daisycon Advertiser (Home & Garden)"
|
1652 |
-
msgstr ""
|
1653 |
-
|
1654 |
-
#: includes/classes/class-woo-feed-merchant.php:383, V5/Common/DropDownOptions.php:349
|
1655 |
-
msgid "Daisycon Advertiser (Housing)"
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#: includes/classes/class-woo-feed-merchant.php:384, V5/Common/DropDownOptions.php:350
|
1659 |
-
msgid "Daisycon Advertiser (Magazines)"
|
1660 |
-
msgstr ""
|
1661 |
-
|
1662 |
-
#: includes/classes/class-woo-feed-merchant.php:385, V5/Common/DropDownOptions.php:351
|
1663 |
-
msgid "Daisycon Advertiser (Studies & Trainings)"
|
1664 |
-
msgstr ""
|
1665 |
-
|
1666 |
-
#: includes/classes/class-woo-feed-merchant.php:386, V5/Common/DropDownOptions.php:352
|
1667 |
-
msgid "Daisycon Advertiser (Telecom: Accessories)"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: includes/classes/class-woo-feed-merchant.php:387, V5/Common/DropDownOptions.php:353
|
1671 |
-
msgid "Daisycon Advertiser (Telecom: All-in-one)"
|
1672 |
-
msgstr ""
|
1673 |
-
|
1674 |
-
#: includes/classes/class-woo-feed-merchant.php:388, V5/Common/DropDownOptions.php:354
|
1675 |
-
msgid "Daisycon Advertiser (Telecom: GSM + Subscription)"
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: includes/classes/class-woo-feed-merchant.php:389, V5/Common/DropDownOptions.php:355
|
1679 |
-
msgid "Daisycon Advertiser (Telecom: GSM only)"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: includes/classes/class-woo-feed-merchant.php:390, V5/Common/DropDownOptions.php:356
|
1683 |
-
msgid "Daisycon Advertiser (Telecom: Sim only)"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
#: includes/classes/class-woo-feed-merchant.php:391, V5/Common/DropDownOptions.php:357
|
1687 |
-
msgid "Daisycon Advertiser (Work & Jobs)"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: includes/classes/class-woo-feed-merchant.php:392, V5/Common/DropDownOptions.php:358
|
1691 |
-
msgid "Dooyoo"
|
1692 |
-
msgstr ""
|
1693 |
-
|
1694 |
-
#: includes/classes/class-woo-feed-merchant.php:393, V5/Common/DropDownOptions.php:359
|
1695 |
-
msgid "Ecommerce.it"
|
1696 |
-
msgstr ""
|
1697 |
-
|
1698 |
-
#: includes/classes/class-woo-feed-merchant.php:394, V5/Common/DropDownOptions.php:360
|
1699 |
-
msgid "Etsy"
|
1700 |
-
msgstr ""
|
1701 |
-
|
1702 |
-
#: includes/classes/class-woo-feed-merchant.php:395, V5/Common/DropDownOptions.php:361
|
1703 |
-
msgid "Fruugo"
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: includes/classes/class-woo-feed-merchant.php:396, V5/Common/DropDownOptions.php:362
|
1707 |
-
msgid "Fashionchick.nl"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: includes/classes/class-woo-feed-merchant.php:397, V5/Common/DropDownOptions.php:363
|
1711 |
-
msgid "Fruugoaustralia.com"
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: includes/classes/class-woo-feed-merchant.php:398, V5/Common/DropDownOptions.php:364
|
1715 |
-
msgid "Fyndiq.se"
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#: includes/classes/class-woo-feed-merchant.php:399, V5/Common/DropDownOptions.php:365
|
1719 |
-
msgid "GoedGeplaatst.nl"
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#: includes/classes/class-woo-feed-merchant.php:400, V5/Common/DropDownOptions.php:366
|
1723 |
-
msgid "Heureka.sk"
|
1724 |
-
msgstr ""
|
1725 |
-
|
1726 |
-
#: includes/classes/class-woo-feed-merchant.php:401, V5/Common/DropDownOptions.php:367
|
1727 |
-
msgid "Hintaseuranta.fi"
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: includes/classes/class-woo-feed-merchant.php:402, V5/Common/DropDownOptions.php:368
|
1731 |
-
msgid "Incurvy"
|
1732 |
-
msgstr ""
|
1733 |
-
|
1734 |
-
#: includes/classes/class-woo-feed-merchant.php:403, V5/Common/DropDownOptions.php:369
|
1735 |
-
msgid "Jet.com"
|
1736 |
-
msgstr ""
|
1737 |
-
|
1738 |
-
#: includes/classes/class-woo-feed-merchant.php:404, V5/Common/DropDownOptions.php:370
|
1739 |
-
msgid "Kelkoo"
|
1740 |
-
msgstr ""
|
1741 |
-
|
1742 |
-
#: includes/classes/class-woo-feed-merchant.php:405, V5/Common/DropDownOptions.php:371
|
1743 |
-
msgid "Kieskeurig.nl"
|
1744 |
-
msgstr ""
|
1745 |
-
|
1746 |
-
#: includes/classes/class-woo-feed-merchant.php:406, V5/Common/DropDownOptions.php:372
|
1747 |
-
msgid "Kijiji.ca"
|
1748 |
-
msgstr ""
|
1749 |
-
|
1750 |
-
#: includes/classes/class-woo-feed-merchant.php:407, V5/Common/DropDownOptions.php:373
|
1751 |
-
msgid "LeGuide"
|
1752 |
-
msgstr ""
|
1753 |
-
|
1754 |
-
#: includes/classes/class-woo-feed-merchant.php:408, V5/Common/DropDownOptions.php:374
|
1755 |
-
msgid "Marktplaats.nl"
|
1756 |
-
msgstr ""
|
1757 |
-
|
1758 |
-
#: includes/classes/class-woo-feed-merchant.php:409, V5/Common/DropDownOptions.php:375
|
1759 |
-
msgid "Miinto.de"
|
1760 |
-
msgstr ""
|
1761 |
-
|
1762 |
-
#: includes/classes/class-woo-feed-merchant.php:410, V5/Common/DropDownOptions.php:376
|
1763 |
-
msgid "Miinto.nl"
|
1764 |
-
msgstr ""
|
1765 |
-
|
1766 |
-
#: includes/classes/class-woo-feed-merchant.php:411, V5/Common/DropDownOptions.php:377
|
1767 |
-
msgid "Modalova"
|
1768 |
-
msgstr ""
|
1769 |
-
|
1770 |
-
#: includes/classes/class-woo-feed-merchant.php:412, V5/Common/DropDownOptions.php:378
|
1771 |
-
msgid "Modina.de"
|
1772 |
-
msgstr ""
|
1773 |
-
|
1774 |
-
#: includes/classes/class-woo-feed-merchant.php:413, V5/Common/DropDownOptions.php:379
|
1775 |
-
msgid "Moebel.de"
|
1776 |
-
msgstr ""
|
1777 |
-
|
1778 |
-
#: includes/classes/class-woo-feed-merchant.php:414, V5/Common/DropDownOptions.php:380
|
1779 |
-
msgid "Myshopping.com.au"
|
1780 |
-
msgstr ""
|
1781 |
-
|
1782 |
-
#: includes/classes/class-woo-feed-merchant.php:415, V5/Common/DropDownOptions.php:381
|
1783 |
-
msgid "TheNextAd"
|
1784 |
-
msgstr ""
|
1785 |
-
|
1786 |
-
#: includes/classes/class-woo-feed-merchant.php:416, V5/Common/DropDownOptions.php:382
|
1787 |
-
msgid "Nextag"
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: includes/classes/class-woo-feed-merchant.php:417, V5/Common/DropDownOptions.php:383
|
1791 |
-
msgid "Polyvore"
|
1792 |
-
msgstr ""
|
1793 |
-
|
1794 |
-
#: includes/classes/class-woo-feed-merchant.php:418, V5/Common/DropDownOptions.php:384
|
1795 |
-
msgid "Price Grabber"
|
1796 |
-
msgstr ""
|
1797 |
-
|
1798 |
-
#: includes/classes/class-woo-feed-merchant.php:419, V5/Common/DropDownOptions.php:385
|
1799 |
-
msgid "Prisjakt"
|
1800 |
-
msgstr ""
|
1801 |
-
|
1802 |
-
#: includes/classes/class-woo-feed-merchant.php:420, V5/Common/DropDownOptions.php:386
|
1803 |
-
msgid "Profit Share"
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
#: includes/classes/class-woo-feed-merchant.php:421, V5/Common/DropDownOptions.php:387
|
1807 |
-
msgid "Rakuten.de"
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: includes/classes/class-woo-feed-merchant.php:422, V5/Common/DropDownOptions.php:388
|
1811 |
-
msgid "Real"
|
1812 |
-
msgstr ""
|
1813 |
-
|
1814 |
-
#: includes/classes/class-woo-feed-merchant.php:423, V5/Common/DropDownOptions.php:389
|
1815 |
-
msgid "ShareASale"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: includes/classes/class-woo-feed-merchant.php:424, V5/Common/DropDownOptions.php:390
|
1819 |
-
msgid "Shopalike.fr"
|
1820 |
-
msgstr ""
|
1821 |
-
|
1822 |
-
#: includes/classes/class-woo-feed-merchant.php:425, V5/Common/DropDownOptions.php:391
|
1823 |
-
msgid "Shopbot"
|
1824 |
-
msgstr ""
|
1825 |
-
|
1826 |
-
#: includes/classes/class-woo-feed-merchant.php:426, V5/Common/DropDownOptions.php:392
|
1827 |
-
msgid "Shopmania"
|
1828 |
-
msgstr ""
|
1829 |
-
|
1830 |
-
#: includes/classes/class-woo-feed-merchant.php:427, V5/Common/DropDownOptions.php:393
|
1831 |
-
msgid "Shopping.com"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: includes/classes/class-woo-feed-merchant.php:428, V5/Common/DropDownOptions.php:394
|
1835 |
-
msgid "Shopflix (WellComm)"
|
1836 |
-
msgstr ""
|
1837 |
-
|
1838 |
-
#: includes/classes/class-woo-feed-merchant.php:429, V5/Common/DropDownOptions.php:395
|
1839 |
-
msgid "Shopzilla"
|
1840 |
-
msgstr ""
|
1841 |
-
|
1842 |
-
#: includes/classes/class-woo-feed-merchant.php:430, V5/Common/DropDownOptions.php:396
|
1843 |
-
msgid "SkinFlint.co.uk"
|
1844 |
-
msgstr ""
|
1845 |
-
|
1846 |
-
#: includes/classes/class-woo-feed-merchant.php:431, V5/Common/DropDownOptions.php:397
|
1847 |
-
msgid "Skroutz.gr"
|
1848 |
-
msgstr ""
|
1849 |
-
|
1850 |
-
#: includes/classes/class-woo-feed-merchant.php:432, V5/Common/DropDownOptions.php:398
|
1851 |
-
msgid "Smartly.io"
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
#: includes/classes/class-woo-feed-merchant.php:433, V5/Common/DropDownOptions.php:399
|
1855 |
-
msgid "Spartoo.fi"
|
1856 |
-
msgstr ""
|
1857 |
-
|
1858 |
-
#: includes/classes/class-woo-feed-merchant.php:434, V5/Common/DropDownOptions.php:400
|
1859 |
-
msgid "Shopee"
|
1860 |
-
msgstr ""
|
1861 |
-
|
1862 |
-
#: includes/classes/class-woo-feed-merchant.php:435, V5/Common/DropDownOptions.php:401
|
1863 |
-
msgid "Stylight.com"
|
1864 |
-
msgstr ""
|
1865 |
-
|
1866 |
-
#: includes/classes/class-woo-feed-merchant.php:436, V5/Common/DropDownOptions.php:402
|
1867 |
-
msgid "Trovaprezzi.it"
|
1868 |
-
msgstr ""
|
1869 |
-
|
1870 |
-
#: includes/classes/class-woo-feed-merchant.php:437, V5/Common/DropDownOptions.php:403
|
1871 |
-
msgid "Twenga"
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: includes/classes/class-woo-feed-merchant.php:438, V5/Common/DropDownOptions.php:404
|
1875 |
-
msgid "Tweakers (XML)"
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: includes/classes/class-woo-feed-merchant.php:439, V5/Common/DropDownOptions.php:405
|
1879 |
-
msgid "Tweakers (CSV)"
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: includes/classes/class-woo-feed-merchant.php:440, V5/Common/DropDownOptions.php:406
|
1883 |
-
msgid "Vertaa.fi"
|
1884 |
-
msgstr ""
|
1885 |
-
|
1886 |
-
#: includes/classes/class-woo-feed-merchant.php:441, V5/Common/DropDownOptions.php:407
|
1887 |
-
msgid "Walmart"
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: includes/classes/class-woo-feed-merchant.php:442, V5/Common/DropDownOptions.php:408
|
1891 |
-
msgid "Webmarchand"
|
1892 |
-
msgstr ""
|
1893 |
-
|
1894 |
-
#: includes/classes/class-woo-feed-merchant.php:443, V5/Common/DropDownOptions.php:409
|
1895 |
-
msgid "Wine Searcher"
|
1896 |
-
msgstr ""
|
1897 |
-
|
1898 |
-
#: includes/classes/class-woo-feed-merchant.php:444, V5/Common/DropDownOptions.php:410
|
1899 |
-
msgid "Wish.com"
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: includes/classes/class-woo-feed-merchant.php:445, V5/Common/DropDownOptions.php:411
|
1903 |
-
msgid "Yahoo NFA"
|
1904 |
-
msgstr ""
|
1905 |
-
|
1906 |
-
#: includes/classes/class-woo-feed-merchant.php:446, V5/Common/DropDownOptions.php:412
|
1907 |
-
msgid "Zap.co.il"
|
1908 |
-
msgstr ""
|
1909 |
-
|
1910 |
-
#: includes/classes/class-woo-feed-merchant.php:447, V5/Common/DropDownOptions.php:413
|
1911 |
-
msgid "Zbozi.cz"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
#: includes/classes/class-woo-feed-merchant.php:448, V5/Common/DropDownOptions.php:414
|
1915 |
-
msgid "Zalando"
|
1916 |
-
msgstr ""
|
1917 |
-
|
1918 |
-
#: includes/classes/class-woo-feed-merchant.php:449, V5/Common/DropDownOptions.php:415
|
1919 |
-
msgid "Admarkt(marktplaats)"
|
1920 |
-
msgstr ""
|
1921 |
-
|
1922 |
-
#: includes/classes/class-woo-feed-merchant.php:450, V5/Common/DropDownOptions.php:416
|
1923 |
-
msgid "GLAMI"
|
1924 |
-
msgstr ""
|
1925 |
-
|
1926 |
-
#: includes/classes/class-woo-feed-product-attributes.php:31, includes/classes/class-woo-feed-products.php:1803
|
1927 |
-
msgid "Select Attributes"
|
1928 |
-
msgstr ""
|
1929 |
-
|
1930 |
-
#: includes/classes/class-woo-feed-product-attributes.php:100, includes/classes/class-woo-feed-products.php:1784, V5/Product/ProductAttributeFactory.php:42
|
1931 |
-
msgid "Primary Attributes"
|
1932 |
-
msgstr ""
|
1933 |
-
|
1934 |
-
#: includes/classes/class-woo-feed-product-attributes.php:102, includes/classes/class-woo-feed-products.php:1711, V5/Product/ProductAttributeFactory.php:44
|
1935 |
-
msgid "Product Id"
|
1936 |
-
msgstr ""
|
1937 |
-
|
1938 |
-
#: includes/classes/class-woo-feed-product-attributes.php:103, includes/classes/class-woo-feed-products.php:1712, V5/Product/ProductAttributeFactory.php:45
|
1939 |
-
msgid "Product Title"
|
1940 |
-
msgstr ""
|
1941 |
-
|
1942 |
-
#: includes/classes/class-woo-feed-product-attributes.php:104, V5/Product/ProductAttributeFactory.php:46
|
1943 |
-
msgid "Parent Title"
|
1944 |
-
msgstr ""
|
1945 |
-
|
1946 |
-
#: includes/classes/class-woo-feed-product-attributes.php:105, includes/classes/class-woo-feed-products.php:1713, V5/Product/ProductAttributeFactory.php:47
|
1947 |
-
msgid "Product Description"
|
1948 |
-
msgstr ""
|
1949 |
-
|
1950 |
-
#: includes/classes/class-woo-feed-product-attributes.php:106, V5/Product/ProductAttributeFactory.php:48
|
1951 |
-
msgid "Product Description (with HTML)"
|
1952 |
-
msgstr ""
|
1953 |
-
|
1954 |
-
#: includes/classes/class-woo-feed-product-attributes.php:107, includes/classes/class-woo-feed-products.php:1714, V5/Product/ProductAttributeFactory.php:49
|
1955 |
-
msgid "Product Short Description"
|
1956 |
-
msgstr ""
|
1957 |
-
|
1958 |
-
#: includes/classes/class-woo-feed-product-attributes.php:108, V5/Product/ProductAttributeFactory.php:50
|
1959 |
-
msgid "Parent Category"
|
1960 |
-
msgstr ""
|
1961 |
-
|
1962 |
-
#: includes/classes/class-woo-feed-product-attributes.php:109, V5/Product/ProductAttributeFactory.php:51
|
1963 |
-
msgid "Parent Category ID"
|
1964 |
-
msgstr ""
|
1965 |
-
|
1966 |
-
#: includes/classes/class-woo-feed-product-attributes.php:110, V5/Product/ProductAttributeFactory.php:52
|
1967 |
-
msgid "Child Category"
|
1968 |
-
msgstr ""
|
1969 |
-
|
1970 |
-
#: includes/classes/class-woo-feed-product-attributes.php:111, V5/Product/ProductAttributeFactory.php:53
|
1971 |
-
msgid "Child Category ID"
|
1972 |
-
msgstr ""
|
1973 |
-
|
1974 |
-
#: includes/classes/class-woo-feed-product-attributes.php:112, V5/Product/ProductAttributeFactory.php:54
|
1975 |
-
msgid "Product Category [Category Path]"
|
1976 |
-
msgstr ""
|
1977 |
-
|
1978 |
-
#: includes/classes/class-woo-feed-product-attributes.php:113, V5/Product/ProductAttributeFactory.php:55
|
1979 |
-
msgid "Product Full Category [Category Full Path]"
|
1980 |
-
msgstr ""
|
1981 |
-
|
1982 |
-
#: includes/classes/class-woo-feed-product-attributes.php:114, includes/classes/class-woo-feed-products.php:1716, V5/Product/ProductAttributeFactory.php:56
|
1983 |
-
msgid "Product URL"
|
1984 |
-
msgstr ""
|
1985 |
-
|
1986 |
-
#: includes/classes/class-woo-feed-product-attributes.php:115, V5/Product/ProductAttributeFactory.php:57
|
1987 |
-
msgid "Parent URL"
|
1988 |
-
msgstr ""
|
1989 |
-
|
1990 |
-
#: includes/classes/class-woo-feed-product-attributes.php:116, V5/Product/ProductAttributeFactory.php:58
|
1991 |
-
msgid "Canonical URL"
|
1992 |
-
msgstr ""
|
1993 |
-
|
1994 |
-
#: includes/classes/class-woo-feed-product-attributes.php:117, includes/classes/class-woo-feed-products.php:1717, V5/Product/ProductAttributeFactory.php:59
|
1995 |
-
msgid "External Product URL"
|
1996 |
-
msgstr ""
|
1997 |
-
|
1998 |
-
#: includes/classes/class-woo-feed-product-attributes.php:118, V5/Product/ProductAttributeFactory.php:60
|
1999 |
-
msgid "Add to Cart URL"
|
2000 |
-
msgstr ""
|
2001 |
-
|
2002 |
-
#: includes/classes/class-woo-feed-product-attributes.php:119, includes/classes/class-woo-feed-products.php:1719, V5/Product/ProductAttributeFactory.php:61
|
2003 |
-
msgid "Parent Id [Group Id]"
|
2004 |
-
msgstr ""
|
2005 |
-
|
2006 |
-
#: includes/classes/class-woo-feed-product-attributes.php:120, includes/classes/class-woo-feed-products.php:1720, V5/Product/ProductAttributeFactory.php:62
|
2007 |
-
msgid "SKU"
|
2008 |
-
msgstr ""
|
2009 |
-
|
2010 |
-
#: includes/classes/class-woo-feed-product-attributes.php:121, V5/Product/ProductAttributeFactory.php:63
|
2011 |
-
msgid "SKU_ID"
|
2012 |
-
msgstr ""
|
2013 |
-
|
2014 |
-
#: includes/classes/class-woo-feed-product-attributes.php:122, includes/classes/class-woo-feed-products.php:1721, V5/Product/ProductAttributeFactory.php:64
|
2015 |
-
msgid "Parent SKU"
|
2016 |
-
msgstr ""
|
2017 |
-
|
2018 |
-
#: includes/classes/class-woo-feed-product-attributes.php:123, includes/classes/class-woo-feed-products.php:1722, V5/Product/ProductAttributeFactory.php:65
|
2019 |
-
msgid "Availability"
|
2020 |
-
msgstr ""
|
2021 |
-
|
2022 |
-
#: includes/classes/class-woo-feed-product-attributes.php:125, includes/classes/class-woo-feed-products.php:1723, V5/Product/ProductAttributeFactory.php:67
|
2023 |
-
msgid "Quantity"
|
2024 |
-
msgstr ""
|
2025 |
-
|
2026 |
-
#: includes/classes/class-woo-feed-product-attributes.php:126, V5/Product/ProductAttributeFactory.php:68
|
2027 |
-
msgid "Reviewer Name"
|
2028 |
-
msgstr ""
|
2029 |
-
|
2030 |
-
#: includes/classes/class-woo-feed-product-attributes.php:127, includes/classes/class-woo-feed-products.php:1732, V5/Product/ProductAttributeFactory.php:69
|
2031 |
-
msgid "Weight"
|
2032 |
-
msgstr ""
|
2033 |
-
|
2034 |
-
#: includes/classes/class-woo-feed-product-attributes.php:128, V5/Product/ProductAttributeFactory.php:70
|
2035 |
-
msgid "Weight Unit"
|
2036 |
-
msgstr ""
|
2037 |
-
|
2038 |
-
#: includes/classes/class-woo-feed-product-attributes.php:129, includes/classes/class-woo-feed-products.php:1733, V5/Product/ProductAttributeFactory.php:71
|
2039 |
-
msgid "Width"
|
2040 |
-
msgstr ""
|
2041 |
-
|
2042 |
-
#: includes/classes/class-woo-feed-product-attributes.php:130, includes/classes/class-woo-feed-products.php:1734, V5/Product/ProductAttributeFactory.php:72
|
2043 |
-
msgid "Height"
|
2044 |
-
msgstr ""
|
2045 |
-
|
2046 |
-
#: includes/classes/class-woo-feed-product-attributes.php:131, includes/classes/class-woo-feed-products.php:1735, V5/Product/ProductAttributeFactory.php:73
|
2047 |
-
msgid "Length"
|
2048 |
-
msgstr ""
|
2049 |
-
|
2050 |
-
#: includes/classes/class-woo-feed-product-attributes.php:132, includes/classes/class-woo-feed-products.php:1737, V5/Product/ProductAttributeFactory.php:74
|
2051 |
-
msgid "Product Type"
|
2052 |
-
msgstr ""
|
2053 |
-
|
2054 |
-
#: includes/classes/class-woo-feed-product-attributes.php:133, includes/classes/class-woo-feed-products.php:1739, V5/Product/ProductAttributeFactory.php:75
|
2055 |
-
msgid "Visibility"
|
2056 |
-
msgstr ""
|
2057 |
-
|
2058 |
-
#: includes/classes/class-woo-feed-product-attributes.php:134, includes/classes/class-woo-feed-products.php:1740, V5/Product/ProductAttributeFactory.php:76
|
2059 |
-
msgid "Total Rating"
|
2060 |
-
msgstr ""
|
2061 |
-
|
2062 |
-
#: includes/classes/class-woo-feed-product-attributes.php:135, includes/classes/class-woo-feed-products.php:1741, V5/Product/ProductAttributeFactory.php:77
|
2063 |
-
msgid "Average Rating"
|
2064 |
-
msgstr ""
|
2065 |
-
|
2066 |
-
#: includes/classes/class-woo-feed-product-attributes.php:136, includes/classes/class-woo-feed-products.php:1742, V5/Product/ProductAttributeFactory.php:78
|
2067 |
-
msgid "Tags"
|
2068 |
-
msgstr ""
|
2069 |
-
|
2070 |
-
#: includes/classes/class-woo-feed-product-attributes.php:137, includes/classes/class-woo-feed-products.php:1744, V5/Product/ProductAttributeFactory.php:79
|
2071 |
-
msgid "Is Bundle"
|
2072 |
-
msgstr ""
|
2073 |
-
|
2074 |
-
#: includes/classes/class-woo-feed-product-attributes.php:138, includes/classes/class-woo-feed-products.php:1745, V5/Product/ProductAttributeFactory.php:80
|
2075 |
-
msgid "Author Name"
|
2076 |
-
msgstr ""
|
2077 |
-
|
2078 |
-
#: includes/classes/class-woo-feed-product-attributes.php:139, includes/classes/class-woo-feed-products.php:1746, V5/Product/ProductAttributeFactory.php:81
|
2079 |
-
msgid "Author Email"
|
2080 |
-
msgstr ""
|
2081 |
-
|
2082 |
-
#: includes/classes/class-woo-feed-product-attributes.php:140, includes/classes/class-woo-feed-products.php:1747, V5/Product/ProductAttributeFactory.php:82
|
2083 |
-
msgid "Date Created"
|
2084 |
-
msgstr ""
|
2085 |
-
|
2086 |
-
#: includes/classes/class-woo-feed-product-attributes.php:141, includes/classes/class-woo-feed-products.php:1748, V5/Product/ProductAttributeFactory.php:83
|
2087 |
-
msgid "Date Updated"
|
2088 |
-
msgstr ""
|
2089 |
-
|
2090 |
-
#: includes/classes/class-woo-feed-product-attributes.php:149, V5/Product/ProductAttributeFactory.php:91
|
2091 |
-
msgid "Images"
|
2092 |
-
msgstr ""
|
2093 |
-
|
2094 |
-
#: includes/classes/class-woo-feed-product-attributes.php:151, includes/classes/class-woo-feed-products.php:1751, V5/Product/ProductAttributeFactory.php:93
|
2095 |
-
msgid "Main Image"
|
2096 |
-
msgstr ""
|
2097 |
-
|
2098 |
-
#: includes/classes/class-woo-feed-product-attributes.php:152, includes/classes/class-woo-feed-products.php:1752, V5/Product/ProductAttributeFactory.php:94
|
2099 |
-
msgid "Featured Image"
|
2100 |
-
msgstr ""
|
2101 |
-
|
2102 |
-
#: includes/classes/class-woo-feed-product-attributes.php:153, includes/classes/class-woo-feed-products.php:1753, V5/Product/ProductAttributeFactory.php:95
|
2103 |
-
msgid "Images [Comma Separated]"
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: includes/classes/class-woo-feed-product-attributes.php:154, includes/classes/class-woo-feed-products.php:1754, V5/Product/ProductAttributeFactory.php:96
|
2107 |
-
msgid "Additional Image 1"
|
2108 |
-
msgstr ""
|
2109 |
-
|
2110 |
-
#: includes/classes/class-woo-feed-product-attributes.php:155, includes/classes/class-woo-feed-products.php:1755, V5/Product/ProductAttributeFactory.php:97
|
2111 |
-
msgid "Additional Image 2"
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
#: includes/classes/class-woo-feed-product-attributes.php:156, includes/classes/class-woo-feed-products.php:1756, V5/Product/ProductAttributeFactory.php:98
|
2115 |
-
msgid "Additional Image 3"
|
2116 |
-
msgstr ""
|
2117 |
-
|
2118 |
-
#: includes/classes/class-woo-feed-product-attributes.php:157, includes/classes/class-woo-feed-products.php:1757, V5/Product/ProductAttributeFactory.php:99
|
2119 |
-
msgid "Additional Image 4"
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: includes/classes/class-woo-feed-product-attributes.php:158, includes/classes/class-woo-feed-products.php:1758, V5/Product/ProductAttributeFactory.php:100
|
2123 |
-
msgid "Additional Image 5"
|
2124 |
-
msgstr ""
|
2125 |
-
|
2126 |
-
#: includes/classes/class-woo-feed-product-attributes.php:159, includes/classes/class-woo-feed-products.php:1759, V5/Product/ProductAttributeFactory.php:101
|
2127 |
-
msgid "Additional Image 6"
|
2128 |
-
msgstr ""
|
2129 |
-
|
2130 |
-
#: includes/classes/class-woo-feed-product-attributes.php:160, includes/classes/class-woo-feed-products.php:1760, V5/Product/ProductAttributeFactory.php:102
|
2131 |
-
msgid "Additional Image 7"
|
2132 |
-
msgstr ""
|
2133 |
-
|
2134 |
-
#: includes/classes/class-woo-feed-product-attributes.php:161, includes/classes/class-woo-feed-products.php:1761, V5/Product/ProductAttributeFactory.php:103
|
2135 |
-
msgid "Additional Image 8"
|
2136 |
-
msgstr ""
|
2137 |
-
|
2138 |
-
#: includes/classes/class-woo-feed-product-attributes.php:162, includes/classes/class-woo-feed-products.php:1762, V5/Product/ProductAttributeFactory.php:104
|
2139 |
-
msgid "Additional Image 9"
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: includes/classes/class-woo-feed-product-attributes.php:163, includes/classes/class-woo-feed-products.php:1763, V5/Product/ProductAttributeFactory.php:105
|
2143 |
-
msgid "Additional Image 10"
|
2144 |
-
msgstr ""
|
2145 |
-
|
2146 |
-
#: includes/classes/class-woo-feed-product-attributes.php:170, includes/classes/class-woo-feed-product-attributes.php:174, includes/classes/class-woo-feed-products.php:1725, V5/Product/ProductAttributeFactory.php:112, V5/Product/ProductAttributeFactory.php:116
|
2147 |
-
msgid "Price"
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: includes/classes/class-woo-feed-product-attributes.php:172, V5/Product/ProductAttributeFactory.php:114
|
2151 |
-
msgid "Currency"
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: includes/classes/class-woo-feed-product-attributes.php:173, includes/classes/class-woo-feed-products.php:1724, V5/Product/ProductAttributeFactory.php:115
|
2155 |
-
msgid "Regular Price"
|
2156 |
-
msgstr ""
|
2157 |
-
|
2158 |
-
#: includes/classes/class-woo-feed-product-attributes.php:175, includes/classes/class-woo-feed-products.php:1726, V5/Product/ProductAttributeFactory.php:117
|
2159 |
-
msgid "Sale Price"
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: includes/classes/class-woo-feed-product-attributes.php:176, includes/classes/class-woo-feed-products.php:1727, V5/Product/ProductAttributeFactory.php:118
|
2163 |
-
msgid "Regular Price With Tax"
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#: includes/classes/class-woo-feed-product-attributes.php:177, includes/classes/class-woo-feed-products.php:1728, V5/Product/ProductAttributeFactory.php:119
|
2167 |
-
msgid "Price With Tax"
|
2168 |
-
msgstr ""
|
2169 |
-
|
2170 |
-
#: includes/classes/class-woo-feed-product-attributes.php:178, includes/classes/class-woo-feed-products.php:1729, V5/Product/ProductAttributeFactory.php:120
|
2171 |
-
msgid "Sale Price With Tax"
|
2172 |
-
msgstr ""
|
2173 |
-
|
2174 |
-
#: includes/classes/class-woo-feed-product-attributes.php:179, includes/classes/class-woo-feed-products.php:1730, V5/Product/ProductAttributeFactory.php:121
|
2175 |
-
msgid "Sale Start Date"
|
2176 |
-
msgstr ""
|
2177 |
-
|
2178 |
-
#: includes/classes/class-woo-feed-product-attributes.php:180, includes/classes/class-woo-feed-products.php:1731, V5/Product/ProductAttributeFactory.php:122
|
2179 |
-
msgid "Sale End Date"
|
2180 |
-
msgstr ""
|
2181 |
-
|
2182 |
-
#: includes/classes/class-woo-feed-product-attributes.php:181, includes/classes/class-woo-feed-products.php:1743, V5/Product/ProductAttributeFactory.php:123
|
2183 |
-
msgid "Sale Price Effective Date"
|
2184 |
-
msgstr ""
|
2185 |
-
|
2186 |
-
#: includes/classes/class-woo-feed-product-attributes.php:188, V5/Product/ProductAttributeFactory.php:130
|
2187 |
-
msgid "Shipping"
|
2188 |
-
msgstr ""
|
2189 |
-
|
2190 |
-
#: includes/classes/class-woo-feed-product-attributes.php:190, V5/Product/ProductAttributeFactory.php:132
|
2191 |
-
msgid "Shipping (Google Format)"
|
2192 |
-
msgstr ""
|
2193 |
-
|
2194 |
-
#: includes/classes/class-woo-feed-product-attributes.php:191, includes/classes/class-woo-feed-products.php:1736, V5/Product/ProductAttributeFactory.php:133
|
2195 |
-
msgid "Shipping Class"
|
2196 |
-
msgstr ""
|
2197 |
-
|
2198 |
-
#: includes/classes/class-woo-feed-product-attributes.php:192, V5/Product/ProductAttributeFactory.php:134
|
2199 |
-
msgid "Shipping Zone Name"
|
2200 |
-
msgstr ""
|
2201 |
-
|
2202 |
-
#: includes/classes/class-woo-feed-product-attributes.php:193, V5/Product/ProductAttributeFactory.php:135
|
2203 |
-
msgid "Shipping Country"
|
2204 |
-
msgstr ""
|
2205 |
-
|
2206 |
-
#: includes/classes/class-woo-feed-product-attributes.php:194, V5/Product/ProductAttributeFactory.php:136
|
2207 |
-
msgid "Shipping Regions"
|
2208 |
-
msgstr ""
|
2209 |
-
|
2210 |
-
#: includes/classes/class-woo-feed-product-attributes.php:195, V5/Product/ProductAttributeFactory.php:137
|
2211 |
-
msgid "Shipping Postcodes"
|
2212 |
-
msgstr ""
|
2213 |
-
|
2214 |
-
#: includes/classes/class-woo-feed-product-attributes.php:196, V5/Product/ProductAttributeFactory.php:138
|
2215 |
-
msgid "Shipping Method Name"
|
2216 |
-
msgstr ""
|
2217 |
-
|
2218 |
-
#: includes/classes/class-woo-feed-product-attributes.php:197, V5/Product/ProductAttributeFactory.php:139
|
2219 |
-
msgid "Shipping Cost"
|
2220 |
-
msgstr ""
|
2221 |
-
|
2222 |
-
#: includes/classes/class-woo-feed-product-attributes.php:204, V5/Product/ProductAttributeFactory.php:146
|
2223 |
-
msgid "Tax"
|
2224 |
-
msgstr ""
|
2225 |
-
|
2226 |
-
#: includes/classes/class-woo-feed-product-attributes.php:206, V5/Product/ProductAttributeFactory.php:148
|
2227 |
-
msgid "Tax (Google Format)"
|
2228 |
-
msgstr ""
|
2229 |
-
|
2230 |
-
#: includes/classes/class-woo-feed-product-attributes.php:207, V5/Product/ProductAttributeFactory.php:149
|
2231 |
-
msgid "Tax Class"
|
2232 |
-
msgstr ""
|
2233 |
-
|
2234 |
-
#: includes/classes/class-woo-feed-product-attributes.php:208, V5/Product/ProductAttributeFactory.php:150
|
2235 |
-
msgid "Tax Status"
|
2236 |
-
msgstr ""
|
2237 |
-
|
2238 |
-
#: includes/classes/class-woo-feed-product-attributes.php:209, V5/Product/ProductAttributeFactory.php:151
|
2239 |
-
msgid "Tax Country"
|
2240 |
-
msgstr ""
|
2241 |
-
|
2242 |
-
#: includes/classes/class-woo-feed-product-attributes.php:210, V5/Product/ProductAttributeFactory.php:152
|
2243 |
-
msgid "Tax State"
|
2244 |
-
msgstr ""
|
2245 |
-
|
2246 |
-
#: includes/classes/class-woo-feed-product-attributes.php:211, V5/Product/ProductAttributeFactory.php:153
|
2247 |
-
msgid "Tax Postcodes"
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#: includes/classes/class-woo-feed-product-attributes.php:212, V5/Product/ProductAttributeFactory.php:154
|
2251 |
-
msgid "Tax City"
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: includes/classes/class-woo-feed-product-attributes.php:213, V5/Product/ProductAttributeFactory.php:155
|
2255 |
-
msgid "Tax Rate"
|
2256 |
-
msgstr ""
|
2257 |
-
|
2258 |
-
#: includes/classes/class-woo-feed-product-attributes.php:214, V5/Product/ProductAttributeFactory.php:156
|
2259 |
-
msgid "Tax Name"
|
2260 |
-
msgstr ""
|
2261 |
-
|
2262 |
-
#: includes/classes/class-woo-feed-product-attributes.php:221, V5/Product/ProductAttributeFactory.php:163
|
2263 |
-
msgid "Subscription & Installment"
|
2264 |
-
msgstr ""
|
2265 |
-
|
2266 |
-
#: includes/classes/class-woo-feed-product-attributes.php:223, V5/Product/ProductAttributeFactory.php:165
|
2267 |
-
msgid "Subscription Period"
|
2268 |
-
msgstr ""
|
2269 |
-
|
2270 |
-
#: includes/classes/class-woo-feed-product-attributes.php:224, V5/Product/ProductAttributeFactory.php:166
|
2271 |
-
msgid "Subscription Period Length"
|
2272 |
-
msgstr ""
|
2273 |
-
|
2274 |
-
#: includes/classes/class-woo-feed-product-attributes.php:225, V5/Product/ProductAttributeFactory.php:167
|
2275 |
-
msgid "Subscription Amount"
|
2276 |
-
msgstr ""
|
2277 |
-
|
2278 |
-
#: includes/classes/class-woo-feed-product-attributes.php:226, V5/Product/ProductAttributeFactory.php:168
|
2279 |
-
msgid "Installment Months"
|
2280 |
-
msgstr ""
|
2281 |
-
|
2282 |
-
#: includes/classes/class-woo-feed-product-attributes.php:227, V5/Product/ProductAttributeFactory.php:169
|
2283 |
-
msgid "Installment Amount"
|
2284 |
-
msgstr ""
|
2285 |
-
|
2286 |
-
#: includes/classes/class-woo-feed-product-attributes.php:232, V5/Common/DropDownOptions.php:290, V5/Product/ProductAttributeFactory.php:174
|
2287 |
-
msgid "Custom Template 2 (XML)"
|
2288 |
-
msgstr ""
|
2289 |
-
|
2290 |
-
#: includes/classes/class-woo-feed-product-attributes.php:234, V5/Product/ProductAttributeFactory.php:176
|
2291 |
-
msgid "Product Variations"
|
2292 |
-
msgstr ""
|
2293 |
-
|
2294 |
-
#: includes/classes/class-woo-feed-product-attributes.php:235, V5/Product/ProductAttributeFactory.php:177
|
2295 |
-
msgid "Product Gallery Images"
|
2296 |
-
msgstr ""
|
2297 |
-
|
2298 |
-
#: includes/classes/class-woo-feed-product-attributes.php:236, V5/Product/ProductAttributeFactory.php:178
|
2299 |
-
msgid "Product Categories"
|
2300 |
-
msgstr ""
|
2301 |
-
|
2302 |
-
#: includes/classes/class-woo-feed-product-attributes.php:286, V5/Product/ProductAttributeFactory.php:229
|
2303 |
-
msgid "Custom Fields by CTX Feed"
|
2304 |
-
msgstr ""
|
2305 |
-
|
2306 |
-
#: includes/classes/class-woo-feed-product-attributes.php:304, V5/Product/ProductAttributeFactory.php:247
|
2307 |
-
msgid "Unit Price (CTX Feed)"
|
2308 |
-
msgstr ""
|
2309 |
-
|
2310 |
-
#: includes/classes/class-woo-feed-product-attributes.php:318, V5/Product/ProductAttributeFactory.php:262
|
2311 |
-
msgid "Unit Price (WooCommerce Germanized)"
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
-
#: includes/classes/class-woo-feed-product-attributes.php:347, V5/Product/ProductAttributeFactory.php:292
|
2315 |
-
msgid "Yoast SEO"
|
2316 |
-
msgstr ""
|
2317 |
-
|
2318 |
-
#: includes/classes/class-woo-feed-product-attributes.php:349, includes/classes/class-woo-feed-products.php:1776, V5/Product/ProductAttributeFactory.php:294
|
2319 |
-
msgid "Title [Yoast SEO]"
|
2320 |
-
msgstr ""
|
2321 |
-
|
2322 |
-
#: includes/classes/class-woo-feed-product-attributes.php:350, includes/classes/class-woo-feed-products.php:1777, V5/Product/ProductAttributeFactory.php:295
|
2323 |
-
msgid "Description [Yoast SEO]"
|
2324 |
-
msgstr ""
|
2325 |
-
|
2326 |
-
#: includes/classes/class-woo-feed-product-attributes.php:351, V5/Product/ProductAttributeFactory.php:296
|
2327 |
-
msgid "Canonical URL [Yoast SEO]"
|
2328 |
-
msgstr ""
|
2329 |
-
|
2330 |
-
#: includes/classes/class-woo-feed-product-attributes.php:361, V5/Product/ProductAttributeFactory.php:307
|
2331 |
-
msgid "GTIN8 [Yoast SEO]"
|
2332 |
-
msgstr ""
|
2333 |
-
|
2334 |
-
#: includes/classes/class-woo-feed-product-attributes.php:362, V5/Product/ProductAttributeFactory.php:308
|
2335 |
-
msgid "GTIN12 / UPC [Yoast SEO]"
|
2336 |
-
msgstr ""
|
2337 |
-
|
2338 |
-
#: includes/classes/class-woo-feed-product-attributes.php:363, V5/Product/ProductAttributeFactory.php:309
|
2339 |
-
msgid "GTIN13 / EAN [Yoast SEO]"
|
2340 |
-
msgstr ""
|
2341 |
-
|
2342 |
-
#: includes/classes/class-woo-feed-product-attributes.php:364, V5/Product/ProductAttributeFactory.php:310
|
2343 |
-
msgid "GTIN14 / ITF-14 [Yoast SEO]"
|
2344 |
-
msgstr ""
|
2345 |
-
|
2346 |
-
#: includes/classes/class-woo-feed-product-attributes.php:365, V5/Product/ProductAttributeFactory.php:311
|
2347 |
-
msgid "ISBN [Yoast SEO]"
|
2348 |
-
msgstr ""
|
2349 |
-
|
2350 |
-
#: includes/classes/class-woo-feed-product-attributes.php:366, V5/Product/ProductAttributeFactory.php:312
|
2351 |
-
msgid "MPN [Yoast SEO]"
|
2352 |
-
msgstr ""
|
2353 |
-
|
2354 |
-
#: includes/classes/class-woo-feed-product-attributes.php:373, V5/Product/ProductAttributeFactory.php:319
|
2355 |
-
msgid "RANK MATH SEO"
|
2356 |
-
msgstr ""
|
2357 |
-
|
2358 |
-
#: includes/classes/class-woo-feed-product-attributes.php:375, V5/Product/ProductAttributeFactory.php:321
|
2359 |
-
msgid "Title [RankMath SEO]"
|
2360 |
-
msgstr ""
|
2361 |
-
|
2362 |
-
#: includes/classes/class-woo-feed-product-attributes.php:376, V5/Product/ProductAttributeFactory.php:322
|
2363 |
-
msgid "Description [RankMath SEO]"
|
2364 |
-
msgstr ""
|
2365 |
-
|
2366 |
-
#: includes/classes/class-woo-feed-product-attributes.php:377, V5/Product/ProductAttributeFactory.php:323
|
2367 |
-
msgid "Canonical URL [RankMath SEO]"
|
2368 |
-
msgstr ""
|
2369 |
-
|
2370 |
-
#: includes/classes/class-woo-feed-product-attributes.php:382, V5/Product/ProductAttributeFactory.php:328
|
2371 |
-
msgid "GTIN [RankMath Pro SEO]"
|
2372 |
-
msgstr ""
|
2373 |
-
|
2374 |
-
#: includes/classes/class-woo-feed-product-attributes.php:388, V5/Product/ProductAttributeFactory.php:334
|
2375 |
-
msgid "ALL IN ONE SEO"
|
2376 |
-
msgstr ""
|
2377 |
-
|
2378 |
-
#: includes/classes/class-woo-feed-product-attributes.php:390, includes/classes/class-woo-feed-products.php:1769, V5/Product/ProductAttributeFactory.php:336
|
2379 |
-
msgid "Title [All in One SEO]"
|
2380 |
-
msgstr ""
|
2381 |
-
|
2382 |
-
#: includes/classes/class-woo-feed-product-attributes.php:391, includes/classes/class-woo-feed-products.php:1770, V5/Product/ProductAttributeFactory.php:337
|
2383 |
-
msgid "Description [All in One SEO]"
|
2384 |
-
msgstr ""
|
2385 |
-
|
2386 |
-
#: includes/classes/class-woo-feed-product-attributes.php:392, V5/Product/ProductAttributeFactory.php:338
|
2387 |
-
msgid "Canonical URL [All in One SEO]"
|
2388 |
-
msgstr ""
|
2389 |
-
|
2390 |
-
#: includes/classes/class-woo-feed-product-attributes.php:418, V5/Product/ProductAttributeFactory.php:365
|
2391 |
-
msgid "Product Attributes"
|
2392 |
-
msgstr ""
|
2393 |
-
|
2394 |
-
#: includes/classes/class-woo-feed-product-attributes.php:439, includes/classes/class-woo-feed-products.php:1813, V5/Product/ProductAttributeFactory.php:387
|
2395 |
-
msgid "Product Custom Attributes"
|
2396 |
-
msgstr ""
|
2397 |
-
|
2398 |
-
#: includes/classes/class-woo-feed-product-attributes.php:535, V5/Product/ProductAttributeFactory.php:484
|
2399 |
-
msgid "Product Taxonomies"
|
2400 |
-
msgstr ""
|
2401 |
-
|
2402 |
-
#: includes/classes/class-woo-feed-product-attributes.php:551, V5/Product/ProductAttributeFactory.php:500
|
2403 |
-
msgid "Options"
|
2404 |
-
msgstr ""
|
2405 |
-
|
2406 |
-
#: includes/classes/class-woo-feed-product-attributes.php:617, V5/Product/ProductAttributeFactory.php:570
|
2407 |
-
msgid "Advance Custom Fields (ACF)"
|
2408 |
-
msgstr ""
|
2409 |
-
|
2410 |
-
#: includes/classes/class-woo-feed-product-attributes.php:725, V5/Product/ProductAttributeFactory.php:678
|
2411 |
-
msgid "Custom Fields & Post Metas"
|
2412 |
-
msgstr ""
|
2413 |
-
|
2414 |
-
#: includes/classes/class-woo-feed-product-attributes.php:755, V5/Product/ProductAttributeFactory.php:708
|
2415 |
-
msgid "Dynamic Attributes"
|
2416 |
-
msgstr ""
|
2417 |
-
|
2418 |
-
#: includes/classes/class-woo-feed-product-attributes.php:779, V5/Product/ProductAttributeFactory.php:732
|
2419 |
-
msgid "Attribute Mappings"
|
2420 |
-
msgstr ""
|
2421 |
-
|
2422 |
-
#: includes/classes/class-woo-feed-product-attributes.php:791, V5/Product/ProductAttributeFactory.php:744
|
2423 |
-
msgid "WPML Attributes"
|
2424 |
-
msgstr ""
|
2425 |
-
|
2426 |
-
#: includes/classes/class-woo-feed-product-attributes.php:793, V5/Product/ProductAttributeFactory.php:746
|
2427 |
-
msgid "Parent Product ID"
|
2428 |
-
msgstr ""
|
2429 |
-
|
2430 |
-
#: includes/classes/class-woo-feed-product-attributes.php:808, V5/Product/ProductAttributeFactory.php:761
|
2431 |
-
msgid "Multi Vendor Attributes"
|
2432 |
-
msgstr ""
|
2433 |
-
|
2434 |
-
#: includes/classes/class-woo-feed-product-attributes.php:810, V5/Product/ProductAttributeFactory.php:763
|
2435 |
-
msgid "Vendor Store Name"
|
2436 |
-
msgstr ""
|
2437 |
-
|
2438 |
-
#: includes/classes/class-woo-feed-products.php:1715
|
2439 |
-
msgid "Product Local Category"
|
2440 |
-
msgstr ""
|
2441 |
-
|
2442 |
-
#: includes/classes/class-woo-feed-products.php:1718
|
2443 |
-
msgid "Condition"
|
2444 |
-
msgstr ""
|
2445 |
-
|
2446 |
-
#: includes/classes/class-woo-feed-products.php:1738
|
2447 |
-
msgid "Variation Type"
|
2448 |
-
msgstr ""
|
2449 |
-
|
2450 |
-
#: includes/classes/class-woo-feed-products.php:1793
|
2451 |
-
msgid "Image Attributes"
|
2452 |
-
msgstr ""
|
2453 |
-
|
2454 |
-
#: includes/classes/class-woo-feed-products.php:1821
|
2455 |
-
msgid "Custom Fields/Post Meta"
|
2456 |
-
msgstr ""
|
2457 |
-
|
2458 |
-
#: includes/classes/class-woo-feed-products.php:1831
|
2459 |
-
msgid "Custom Taxonomies"
|
2460 |
-
msgstr ""
|
2461 |
-
|
2462 |
-
#: includes/classes/class-woo-feed-webappick-api.php:101
|
2463 |
-
msgid "Cloning is forbidden."
|
2464 |
-
msgstr ""
|
2465 |
-
|
2466 |
-
#: includes/classes/class-woo-feed-webappick-api.php:179, libs/WebAppick/AppServices/Insights.php:920
|
2467 |
-
msgid "Thank you -- Support Ticket Submitted."
|
2468 |
-
msgstr ""
|
2469 |
-
|
2470 |
-
#: includes/classes/class-woo-feed-webappick-api.php:180
|
2471 |
-
msgid "Your ticket has been successfully submitted."
|
2472 |
-
msgstr ""
|
2473 |
-
|
2474 |
-
#: includes/classes/class-woo-feed-webappick-api.php:181
|
2475 |
-
msgid "24 hours"
|
2476 |
-
msgstr ""
|
2477 |
-
|
2478 |
-
#. translators: %s: Approx. time to response after ticket submission.
|
2479 |
-
#: includes/classes/class-woo-feed-webappick-api.php:183
|
2480 |
-
msgid "You will receive an email notification from \"support@webappick.com\" in your inbox within %s."
|
2481 |
-
msgstr ""
|
2482 |
-
|
2483 |
-
#: includes/classes/class-woo-feed-webappick-api.php:184
|
2484 |
-
msgid "Please Follow the email and WebAppick Support Team will get back with you shortly."
|
2485 |
-
msgstr ""
|
2486 |
-
|
2487 |
-
#: includes/classes/class-woo-feed-webappick-api.php:190
|
2488 |
-
msgid "Terms & Conditions"
|
2489 |
-
msgstr ""
|
2490 |
-
|
2491 |
-
#: includes/classes/class-woo-feed-webappick-api.php:191
|
2492 |
-
msgid "Privacy Policy"
|
2493 |
-
msgstr ""
|
2494 |
-
|
2495 |
-
#. translators: 1: Link to the Trams And Condition Page, 2: Link to the Privacy Policy Page
|
2496 |
-
#: includes/classes/class-woo-feed-webappick-api.php:193
|
2497 |
-
msgid "Please read our %1$s and %2$s"
|
2498 |
-
msgstr ""
|
2499 |
-
|
2500 |
-
#: includes/classes/class-woo-feed-webappick-api.php:205
|
2501 |
-
msgid "Something Went Wrong. Please Try The Support Ticket Form On Our Website."
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
#: includes/classes/class-woo-feed-webappick-api.php:207
|
2505 |
-
msgid "Support Ticket form will open in new tab in 5 seconds."
|
2506 |
-
msgstr ""
|
2507 |
-
|
2508 |
-
#: includes/classes/class-woo-feed-webappick-api.php:219
|
2509 |
-
msgid "Number of products in your site."
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: includes/classes/class-woo-feed-webappick-api.php:220
|
2513 |
-
msgid "Number of product categories in your site."
|
2514 |
-
msgstr ""
|
2515 |
-
|
2516 |
-
#: includes/classes/class-woo-feed-webappick-api.php:221
|
2517 |
-
msgid "Feed Configuration."
|
2518 |
-
msgstr ""
|
2519 |
-
|
2520 |
-
#: includes/classes/class-woo-feed-webappick-api.php:222
|
2521 |
-
msgid "Site name, language and url."
|
2522 |
-
msgstr ""
|
2523 |
-
|
2524 |
-
#: includes/classes/class-woo-feed-webappick-api.php:223
|
2525 |
-
msgid "Number of active and inactive plugins."
|
2526 |
-
msgstr ""
|
2527 |
-
|
2528 |
-
#: includes/classes/class-woo-feed-webappick-api.php:224
|
2529 |
-
msgid "Your name and email address."
|
2530 |
-
msgstr ""
|
2531 |
-
|
2532 |
-
#: includes/classes/class-woo-feed-webappick-api.php:265, includes/classes/class-woo-feed-webappick-api.php:265, includes/classes/class-woo-feed-webappick-api.php:301
|
2533 |
-
msgid "Premium"
|
2534 |
-
msgstr ""
|
2535 |
-
|
2536 |
-
#. translators: 1: plugin name,2: Slightly Smiling Face (Emoji), 3: line break 'br' tag
|
2537 |
-
#: includes/classes/class-woo-feed-webappick-api.php:334
|
2538 |
-
msgid "%3$s %2$s We have spent countless hours developing this free plugin for you, and we would really appreciate it if you dropped us a quick rating. Your opinion matters a lot to us.%4$s It helps us to get better. Thanks for using %1$s."
|
2539 |
-
msgstr ""
|
2540 |
-
|
2541 |
-
#: includes/classes/class-woo-feed-webappick-api.php:342
|
2542 |
-
msgid "Remind me later"
|
2543 |
-
msgstr ""
|
2544 |
-
|
2545 |
-
#: includes/classes/class-woo-feed-webappick-api.php:343
|
2546 |
-
msgid "I would not"
|
2547 |
-
msgstr ""
|
2548 |
-
|
2549 |
-
#: includes/classes/class-woo-feed-webappick-api.php:344
|
2550 |
-
msgid "I already did!"
|
2551 |
-
msgstr ""
|
2552 |
-
|
2553 |
-
#: includes/classes/class-woo-feed-webappick-api.php:345
|
2554 |
-
msgid "Review Here"
|
2555 |
-
msgstr ""
|
2556 |
-
|
2557 |
-
#: includes/classes/class-woo-feed-webappick-api.php:348
|
2558 |
-
msgid "Dismiss"
|
2559 |
-
msgstr ""
|
2560 |
-
|
2561 |
-
#. translators: 1: This plugin name, 2: Pro version purchase link
|
2562 |
-
#: includes/classes/class-woo-feed-webappick-api.php:362
|
2563 |
-
msgid "You are awesome for using %1$s. Using the %2$s version you can make multilingual feed for your WPML languages."
|
2564 |
-
msgstr ""
|
2565 |
-
|
2566 |
-
#. translators: 1: This plugin Name, 2: Incompatible plugin name, 3: Pro version purchase link
|
2567 |
-
#: includes/classes/class-woo-feed-webappick-api.php:377
|
2568 |
-
msgid "%1$s isn't fully compatible with %2$s. Get the %3$s version for full support."
|
2569 |
-
msgstr ""
|
2570 |
-
|
2571 |
-
#: includes/classes/class-woo-feed-webappick-api.php:379
|
2572 |
-
msgid "WooCommerce Dynamic Pricing & Discounts"
|
2573 |
-
msgstr ""
|
2574 |
-
|
2575 |
-
#: includes/classes/class-woo-feed-webappick-api.php:465
|
2576 |
-
msgid "Request Successful."
|
2577 |
-
msgstr ""
|
2578 |
-
|
2579 |
-
#: V5/Common/CustomFileds.php:64, V5/Common/CustomFileds.php:136, V5/CustomFields/AvailabilityDate.php:51, V5/CustomFields/AvailabilityDate.php:80, libs/WebAppick/Attributes/AvailabilityDate.php:51, libs/WebAppick/Attributes/AvailabilityDate.php:80
|
2580 |
-
msgid "Set availability date for backorder products."
|
2581 |
-
msgstr ""
|
2582 |
-
|
2583 |
-
#: V5/Common/DisplayNotices.php:33
|
2584 |
-
msgid "Log File Not Found."
|
2585 |
-
msgstr ""
|
2586 |
-
|
2587 |
-
#: V5/Common/DisplayNotices.php:34
|
2588 |
-
msgid "Log file not fount. Please enable log from CTX Feed > Setting or Regenerate the Feed."
|
2589 |
-
msgstr ""
|
2590 |
-
|
2591 |
-
#: V5/Common/DisplayNotices.php:39
|
2592 |
-
msgid "Feed Download Failed."
|
2593 |
-
msgstr ""
|
2594 |
-
|
2595 |
-
#: V5/Common/DisplayNotices.php:40
|
2596 |
-
msgid "Failed to download feed file. Please regenerate the feed and try again."
|
2597 |
-
msgstr ""
|
2598 |
-
|
2599 |
-
#: V5/Common/DropDownOptions.php:455
|
2600 |
-
msgid "Variable Products (Parent)"
|
2601 |
-
msgstr ""
|
2602 |
-
|
2603 |
-
#: V5/Common/DropDownOptions.php:456
|
2604 |
-
msgid "All Variations"
|
2605 |
-
msgstr ""
|
2606 |
-
|
2607 |
-
#: V5/Common/DropDownOptions.php:457
|
2608 |
-
msgid "Default Variation"
|
2609 |
-
msgstr ""
|
2610 |
-
|
2611 |
-
#: V5/Common/DropDownOptions.php:458
|
2612 |
-
msgid "Cheapest Variation"
|
2613 |
-
msgstr ""
|
2614 |
-
|
2615 |
-
#: V5/Common/DropDownOptions.php:459
|
2616 |
-
msgid "First Variation"
|
2617 |
-
msgstr ""
|
2618 |
-
|
2619 |
-
#: V5/Common/DropDownOptions.php:460
|
2620 |
-
msgid "Last Variation"
|
2621 |
-
msgstr ""
|
2622 |
-
|
2623 |
-
#: V5/Common/DropDownOptions.php:461
|
2624 |
-
msgid "Variable + Variations"
|
2625 |
-
msgstr ""
|
2626 |
-
|
2627 |
-
#: V5/Common/DropDownOptions.php:477, V5/Common/DropDownOptions.php:495
|
2628 |
-
msgid "First Variation Price"
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: V5/Common/DropDownOptions.php:478, V5/Common/DropDownOptions.php:496
|
2632 |
-
msgid "Max Variation Price"
|
2633 |
-
msgstr ""
|
2634 |
-
|
2635 |
-
#: V5/Common/DropDownOptions.php:479, V5/Common/DropDownOptions.php:497
|
2636 |
-
msgid "Min Variation Price"
|
2637 |
-
msgstr ""
|
2638 |
-
|
2639 |
-
#: V5/Common/DropDownOptions.php:567
|
2640 |
-
msgid "is / equal"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: V5/Common/DropDownOptions.php:568
|
2644 |
-
msgid "is not / not equal"
|
2645 |
-
msgstr ""
|
2646 |
-
|
2647 |
-
#: V5/Common/DropDownOptions.php:569
|
2648 |
-
msgid "equals or greater than"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: V5/Common/DropDownOptions.php:570
|
2652 |
-
msgid "greater than"
|
2653 |
-
msgstr ""
|
2654 |
-
|
2655 |
-
#: V5/Common/DropDownOptions.php:571
|
2656 |
-
msgid "equals or less than"
|
2657 |
-
msgstr ""
|
2658 |
-
|
2659 |
-
#: V5/Common/DropDownOptions.php:572
|
2660 |
-
msgid "less than"
|
2661 |
-
msgstr ""
|
2662 |
-
|
2663 |
-
#: V5/Common/DropDownOptions.php:573
|
2664 |
-
msgid "contains"
|
2665 |
-
msgstr ""
|
2666 |
-
|
2667 |
-
#: V5/Common/DropDownOptions.php:574
|
2668 |
-
msgid "does not contain"
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
#: V5/Common/DropDownOptions.php:575
|
2672 |
-
msgid "between"
|
2673 |
-
msgstr ""
|
2674 |
-
|
2675 |
-
#: V5/Common/ExportFeed.php:42, libs/WebAppick/AppServices/Insights.php:813, libs/WebAppick/AppServices/Promotions.php:362
|
2676 |
-
msgid "Invalid Request"
|
2677 |
-
msgstr ""
|
2678 |
-
|
2679 |
-
#: V5/Common/ImportFeed.php:34
|
2680 |
-
msgid "Empty File Uploaded. Upload a Valid File."
|
2681 |
-
msgstr ""
|
2682 |
-
|
2683 |
-
#: V5/Common/ImportFeed.php:39
|
2684 |
-
msgid "Unable to read file content"
|
2685 |
-
msgstr ""
|
2686 |
-
|
2687 |
-
#: V5/Common/ImportFeed.php:45
|
2688 |
-
msgid "Unable to read data from file."
|
2689 |
-
msgstr ""
|
2690 |
-
|
2691 |
-
#: V5/Common/ImportFeed.php:49
|
2692 |
-
msgid "Unable to read file info."
|
2693 |
-
msgstr ""
|
2694 |
-
|
2695 |
-
#: V5/Common/ImportFeed.php:56
|
2696 |
-
msgid "Unable to read feed data from file."
|
2697 |
-
msgstr ""
|
2698 |
-
|
2699 |
-
#: V5/Common/ImportFeed.php:59
|
2700 |
-
msgid "Unable to verify the file."
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
#: V5/Common/ImportFeed.php:64
|
2704 |
-
msgid "Invalid or corrupted config file."
|
2705 |
-
msgstr ""
|
2706 |
-
|
2707 |
-
#: V5/Common/ImportFeed.php:78
|
2708 |
-
msgid " Imported"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: libs/WebAppick/AppServices/Insights.php:332
|
2712 |
-
msgid "Server environment details (php, mysql, server, WordPress versions)."
|
2713 |
-
msgstr ""
|
2714 |
-
|
2715 |
-
#. translators: 1: plugin name
|
2716 |
-
#: libs/WebAppick/AppServices/Insights.php:455
|
2717 |
-
msgid "Want to help make %1$s even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information."
|
2718 |
-
msgstr ""
|
2719 |
-
|
2720 |
-
#: libs/WebAppick/AppServices/Insights.php:463
|
2721 |
-
msgid "what we collect"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: libs/WebAppick/AppServices/Insights.php:464
|
2725 |
-
msgid "No sensitive data is tracked."
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: libs/WebAppick/AppServices/Insights.php:468
|
2729 |
-
msgid "No thanks"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: libs/WebAppick/AppServices/Insights.php:469
|
2733 |
-
msgid "Allow"
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: libs/WebAppick/AppServices/Insights.php:687
|
2737 |
-
msgid "Once Weekly"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: libs/WebAppick/AppServices/Insights.php:749
|
2741 |
-
msgid "I couldn't understand how to make it work"
|
2742 |
-
msgstr ""
|
2743 |
-
|
2744 |
-
#: libs/WebAppick/AppServices/Insights.php:751
|
2745 |
-
msgid "Would you like us to assist you?"
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#: libs/WebAppick/AppServices/Insights.php:755
|
2749 |
-
msgid "I found a better plugin"
|
2750 |
-
msgstr ""
|
2751 |
-
|
2752 |
-
#: libs/WebAppick/AppServices/Insights.php:757
|
2753 |
-
msgid "Which plugin?"
|
2754 |
-
msgstr ""
|
2755 |
-
|
2756 |
-
#: libs/WebAppick/AppServices/Insights.php:761
|
2757 |
-
msgid "The plugin is great, but I need specific feature that you don't support"
|
2758 |
-
msgstr ""
|
2759 |
-
|
2760 |
-
#: libs/WebAppick/AppServices/Insights.php:763
|
2761 |
-
msgid "Could you tell us more about that feature?"
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: libs/WebAppick/AppServices/Insights.php:767
|
2765 |
-
msgid "The plugin is not working"
|
2766 |
-
msgstr ""
|
2767 |
-
|
2768 |
-
#: libs/WebAppick/AppServices/Insights.php:769
|
2769 |
-
msgid "Could you tell us a bit more whats not working?"
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: libs/WebAppick/AppServices/Insights.php:773
|
2773 |
-
msgid "It's not what I was looking for"
|
2774 |
-
msgstr ""
|
2775 |
-
|
2776 |
-
#: libs/WebAppick/AppServices/Insights.php:779
|
2777 |
-
msgid "The plugin didn't work as expected"
|
2778 |
-
msgstr ""
|
2779 |
-
|
2780 |
-
#: libs/WebAppick/AppServices/Insights.php:781
|
2781 |
-
msgid "What did you expect?"
|
2782 |
-
msgstr ""
|
2783 |
-
|
2784 |
-
#: libs/WebAppick/AppServices/Insights.php:785
|
2785 |
-
msgid "Temporary deactivation for debugging"
|
2786 |
-
msgstr ""
|
2787 |
-
|
2788 |
-
#: libs/WebAppick/AppServices/Insights.php:791
|
2789 |
-
msgid "Other"
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: libs/WebAppick/AppServices/Insights.php:793
|
2793 |
-
msgid "Could you tell us a bit more?"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: libs/WebAppick/AppServices/Insights.php:863
|
2797 |
-
msgid "Something Went Wrong."
|
2798 |
-
msgstr ""
|
2799 |
-
|
2800 |
-
#: libs/WebAppick/AppServices/Insights.php:864
|
2801 |
-
msgid "Please try again after sometime."
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: libs/WebAppick/AppServices/Insights.php:943
|
2805 |
-
msgid "Missing Required Fields."
|
2806 |
-
msgstr ""
|
2807 |
-
|
2808 |
-
#: libs/WebAppick/AppServices/Insights.php:937
|
2809 |
-
msgid "Something Went Wrong. Please Try Again After Sometime."
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#. translators: 1: Plugin Name
|
2813 |
-
#: libs/WebAppick/AppServices/Insights.php:963
|
2814 |
-
msgid "“%s” Uninstall Confirmation"
|
2815 |
-
msgstr ""
|
2816 |
-
|
2817 |
-
#: libs/WebAppick/AppServices/Insights.php:967
|
2818 |
-
msgid "Submit Support Ticket."
|
2819 |
-
msgstr ""
|
2820 |
-
|
2821 |
-
#: libs/WebAppick/AppServices/Insights.php:968, libs/WebAppick/AppServices/Insights.php:1021
|
2822 |
-
msgid "Close"
|
2823 |
-
msgstr ""
|
2824 |
-
|
2825 |
-
#: libs/WebAppick/AppServices/Insights.php:983
|
2826 |
-
msgid "Email"
|
2827 |
-
msgstr ""
|
2828 |
-
|
2829 |
-
#: libs/WebAppick/AppServices/Insights.php:990
|
2830 |
-
msgid "Subject"
|
2831 |
-
msgstr ""
|
2832 |
-
|
2833 |
-
#: libs/WebAppick/AppServices/Insights.php:996
|
2834 |
-
msgid "Website"
|
2835 |
-
msgstr ""
|
2836 |
-
|
2837 |
-
#: libs/WebAppick/AppServices/Insights.php:1013
|
2838 |
-
msgid "Send Message"
|
2839 |
-
msgstr ""
|
2840 |
-
|
2841 |
-
#: libs/WebAppick/AppServices/Insights.php:1014, libs/WebAppick/AppServices/Insights.php:1051
|
2842 |
-
msgid "Cancel"
|
2843 |
-
msgstr ""
|
2844 |
-
|
2845 |
-
#: libs/WebAppick/AppServices/Insights.php:1020
|
2846 |
-
msgid "If you have a moment, please let us know why you are deactivating:"
|
2847 |
-
msgstr ""
|
2848 |
-
|
2849 |
-
#: libs/WebAppick/AppServices/Insights.php:1039
|
2850 |
-
msgid "In trouble? Please submit a support request."
|
2851 |
-
msgstr ""
|
2852 |
-
|
2853 |
-
#: libs/WebAppick/AppServices/Insights.php:1041
|
2854 |
-
msgid "Not Interested"
|
2855 |
-
msgstr ""
|
2856 |
-
|
2857 |
-
#: libs/WebAppick/AppServices/Insights.php:1042
|
2858 |
-
msgid "Open Support Ticket"
|
2859 |
-
msgstr ""
|
2860 |
-
|
2861 |
-
#: libs/WebAppick/AppServices/Insights.php:1049
|
2862 |
-
msgid "I rather wouldn't say"
|
2863 |
-
msgstr ""
|
2864 |
-
|
2865 |
-
#: libs/WebAppick/AppServices/Insights.php:1050
|
2866 |
-
msgid "Submit & Deactivate"
|
2867 |
-
msgstr ""
|
2868 |
-
|
2869 |
-
#: libs/WebAppick/AppServices/Insights.php:1150
|
2870 |
-
msgid "Processing..."
|
2871 |
-
msgstr ""
|
2872 |
-
|
2873 |
-
#: libs/WebAppick/AppServices/Promotions.php:126
|
2874 |
-
msgid "Promotion Source URL Not Set. see Promotions::set_source( $URL )"
|
2875 |
-
msgstr ""
|
2876 |
-
|
2877 |
-
#: libs/WebAppick/AppServices/Promotions.php:360
|
2878 |
-
msgid "Promo hidden"
|
2879 |
-
msgstr ""
|
2880 |
-
|
2881 |
-
#: libs/WebAppick/AppServices/Promotions.php:373
|
2882 |
-
msgid "Method must be invoked inside admin_init action"
|
2883 |
-
msgstr ""
|
2884 |
-
|
2885 |
-
#: libs/WebAppick/FTP/FTPConnection.php:77
|
2886 |
-
msgid "FTP connection has failed!"
|
2887 |
-
msgstr ""
|
2888 |
-
|
2889 |
-
#. translators: 1: ftp username, 2: server host, 3: server port
|
2890 |
-
#: libs/WebAppick/FTP/FTPConnection.php:79
|
2891 |
-
msgid "Attempted to connect to %1$s@%2$s:%3$s"
|
2892 |
-
msgstr ""
|
2893 |
-
|
2894 |
-
#. translators: 1: ftp username, 2: server host, 3: server port
|
2895 |
-
#: libs/WebAppick/FTP/FTPConnection.php:94
|
2896 |
-
msgid "Connected to %1$s@%2$s:%3$s"
|
2897 |
-
msgstr ""
|
2898 |
-
|
2899 |
-
#: libs/WebAppick/FTP/FTPConnection.php:88
|
2900 |
-
msgid "FTP Login has failed!"
|
2901 |
-
msgstr ""
|
2902 |
-
|
2903 |
-
#: libs/WebAppick/FTP/FTPConnection.php:90
|
2904 |
-
msgid "Attempted to login %1$s@%2$s:%3$s"
|
2905 |
-
msgstr ""
|
2906 |
-
|
2907 |
-
#. translators: Permission Mode
|
2908 |
-
#: libs/WebAppick/FTP/FTPConnection.php:132
|
2909 |
-
msgid "%s must be an octal number"
|
2910 |
-
msgstr ""
|
2911 |
-
|
2912 |
-
#: libs/WebAppick/FTP/FTPConnection.php:126
|
2913 |
-
msgid "File Permission Failed"
|
2914 |
-
msgstr ""
|
2915 |
-
|
2916 |
-
#: libs/WebAppick/FTP/FTPConnection.php:122
|
2917 |
-
msgid "File Permission Granted"
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
#. translators: Directory Path
|
2921 |
-
#: libs/WebAppick/FTP/FTPConnection.php:153
|
2922 |
-
msgid "Failed creating directory \"%s\"."
|
2923 |
-
msgstr ""
|
2924 |
-
|
2925 |
-
#: libs/WebAppick/FTP/FTPConnection.php:148
|
2926 |
-
msgid "Directory \"%s\" created successfully."
|
2927 |
-
msgstr ""
|
2928 |
-
|
2929 |
-
#. translators: 1: file from, 2: file to
|
2930 |
-
#: libs/WebAppick/FTP/FTPConnection.php:183
|
2931 |
-
msgid "Uploaded \"%1$s\" as \"%2$s\""
|
2932 |
-
msgstr ""
|
2933 |
-
|
2934 |
-
#. translators: 1: server host, 2: server port
|
2935 |
-
#: libs/WebAppick/FTP/SFTPConnection.php:14
|
2936 |
-
msgid "Could not connect to %1$s:%2$s. SSH2 is not enabled on this server."
|
2937 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
woo-feed.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: CTX Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
-
* Version: 4.5.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
10 |
* Plugin Name: CTX Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
+
* Version: 4.5.3
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|