WooCommerce Wishlist Plugin - Version 1.8.6

Version Description

Release Date - 18 July 2018

  • Added custom capabilities for dashboard pages
Download this release

Release Info

Developer templateinvaders
Plugin Icon 128x128 WooCommerce Wishlist Plugin
Version 1.8.6
Comparing to
See all releases

Code changes from version 1.8.5 to 1.8.6

admin/settings/general.class.php CHANGED
@@ -34,6 +34,7 @@ class TInvWL_Admin_Settings_General extends TInvWL_Admin_BaseSection {
34
  'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
35
  'method' => array( $this, '_print_' ),
36
  'slug' => '',
 
37
  );
38
  }
39
 
34
  'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
35
  'method' => array( $this, '_print_' ),
36
  'slug' => '',
37
+ 'capability' => 'tinvwl_general_settings',
38
  );
39
  }
40
 
admin/settings/style.class.php CHANGED
@@ -35,6 +35,7 @@ class TInvWL_Admin_Settings_Style extends TInvWL_Admin_BaseStyle {
35
  'page_title' => __( 'Wishlist Style Options', 'ti-woocommerce-wishlist' ),
36
  'method' => array( $this, '_print_' ),
37
  'slug' => 'style-settings',
 
38
  );
39
  }
40
 
35
  'page_title' => __( 'Wishlist Style Options', 'ti-woocommerce-wishlist' ),
36
  'method' => array( $this, '_print_' ),
37
  'slug' => 'style-settings',
38
+ 'capability' => 'tinvwl_style_settings',
39
  );
40
  }
41
 
admin/settings/upgrade.class.php CHANGED
@@ -35,6 +35,7 @@ class TInvWL_Admin_Settings_Upgrade extends TInvWL_Admin_BaseSection {
35
  'page_title' => __( 'Premium Features', 'ti-woocommerce-wishlist' ),
36
  'method' => array( $this, '_print_' ),
37
  'slug' => 'upgrade',
 
38
  );
39
  }
40
  }
35
  'page_title' => __( 'Premium Features', 'ti-woocommerce-wishlist' ),
36
  'method' => array( $this, '_print_' ),
37
  'slug' => 'upgrade',
38
+ 'capability' => 'tinvwl_upgrade',
39
  );
40
  }
41
  }
admin/tinvwl.class.php CHANGED
@@ -120,7 +120,8 @@ class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
120
  * Creation mune and sub-menu
121
  */
122
  function action_menu() {
123
- $page = add_menu_page( 'TI Wishlist', 'TI Wishlist', 'manage_options', $this->_name, null, TINVWL_URL . 'assets/img/icon_menu.png', 56 );
 
124
  add_action( "load-$page", array( $this, 'onload' ) );
125
  $menu = apply_filters( $this->_name . '_admin_menu', array() );
126
  foreach ( $menu as $item ) {
@@ -131,8 +132,17 @@ class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
131
  $item['parent'] = $this->_name;
132
  }
133
  if ( ! array_key_exists( 'capability', $item ) ) {
134
- $item['capability'] = 'manage_options';
135
  }
 
 
 
 
 
 
 
 
 
136
  $item['slug'] = implode( '-', array_filter( array( $this->_name, $item['slug'] ) ) );
137
 
138
  $page = add_submenu_page( $item['parent'], $item['page_title'], $item['title'], $item['capability'], $item['slug'], $item['method'] );
@@ -198,7 +208,21 @@ class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
198
  "Parent theme author":"' . ( ( $parent_theme ) ? $parent_theme->get( 'Author' ) : '' ) . '",
199
  "Parent theme author URI":"' . ( ( $parent_theme ) ? $parent_theme->get( 'AuthorURI' ) : '' ) . '",
200
  };
201
- (function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic("reattach_activator");ic("update",intercomSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Intercom=i;function l(){var s=d.createElement("script");s.type="text/javascript";s.async=true;s.src="https://widget.intercom.io/widget/zyh6v0pc";var x=d.getElementsByTagName("script")[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent("onload",l);}else{w.addEventListener("load",l,false);}}})()' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  }
203
 
204
  /**
120
  * Creation mune and sub-menu
121
  */
122
  function action_menu() {
123
+ global $wp_roles;
124
+ $page = add_menu_page( 'TI Wishlist', 'TI Wishlist', 'tinvwl_general_settings', $this->_name, null, TINVWL_URL . 'assets/img/icon_menu.png', 56 );
125
  add_action( "load-$page", array( $this, 'onload' ) );
126
  $menu = apply_filters( $this->_name . '_admin_menu', array() );
127
  foreach ( $menu as $item ) {
132
  $item['parent'] = $this->_name;
133
  }
134
  if ( ! array_key_exists( 'capability', $item ) ) {
135
+ $item['capability'] = 'manage_woocommerce';
136
  }
137
+
138
+ if ( ! array_key_exists( 'roles', $item ) ) {
139
+ $item['roles'] = array( 'administrator' );
140
+ }
141
+
142
+ foreach ( $item['roles'] as $role ) {
143
+ $wp_roles->add_cap( $role, $item['capability'] );
144
+ }
145
+
146
  $item['slug'] = implode( '-', array_filter( array( $this->_name, $item['slug'] ) ) );
147
 
148
  $page = add_submenu_page( $item['parent'], $item['page_title'], $item['title'], $item['capability'], $item['slug'], $item['method'] );
208
  "Parent theme author":"' . ( ( $parent_theme ) ? $parent_theme->get( 'Author' ) : '' ) . '",
209
  "Parent theme author URI":"' . ( ( $parent_theme ) ? $parent_theme->get( 'AuthorURI' ) : '' ) . '",
210
  };
211
+ (function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic("reattach_activator");ic("update",intercomSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Intercom=i;function l(){var s=d.createElement("script");s.type="text/javascript";s.async=true;s.src="https://widget.intercom.io/widget/zyh6v0pc";var x=d.getElementsByTagName("script")[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent("onload",l);}else{w.addEventListener("load",l,false);}}})();
212
+ Intercom("trackEvent", "wishlist-free-install", {
213
+ theme_name:"' . ( ( $parent_theme ) ? $parent_theme->get( 'Name' ) : $current_theme->get( 'Name' ) ) . '",
214
+ theme_uri:"' . ( ( $parent_theme ) ? $parent_theme->get( 'ThemeURI' ) : $current_theme->get( 'ThemeURI' ) ) . '",
215
+ theme_author:"' . ( ( $parent_theme ) ? $parent_theme->get( 'Author' ) : $current_theme->get( 'Author' ) ) . '",
216
+ theme_author_uri:"' . ( ( $parent_theme ) ? $parent_theme->get( 'AuthorURI' ) : $current_theme->get( 'AuthorURI' ) ) . '",
217
+ theme_version:"' . ( ( $parent_theme ) ? $parent_theme->get( 'Version' ) : $current_theme->get( 'Version' ) ) . '",
218
+ website:"' . get_site_url() . '",
219
+ user:"' . $user_info->user_email . '",
220
+ user_name:"' . $user_info->user_nicename . '",
221
+ plugin_name:"WooCommerce Wishlist Plugin",
222
+ plugin_version:"' . TINVWL_FVERSION . '",
223
+ partner:"' . TINVWL_UTM_SOURCE . '"
224
+ });
225
+ ' );
226
  }
227
 
228
  /**
assets/css/admin-form.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/css/admin-setup.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/css/admin.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/css/public.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/css/theme.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/js/admin.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
assets/js/public.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.8.5
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
1
+ /*! WooCommerce Wishlist Plugin - version 1.8.6
2
  * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
  * Copyright (c) 2018;
4
  * Licensed GPLv2+ */
languages/ti-woocommerce-wishlist.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Wishlist Plugin 1.8.5\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/ti-woocommerce-wishlist\n"
8
- "POT-Creation-Date: 2018-07-16 18:13:27+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -41,284 +41,284 @@ msgstr ""
41
  msgid "Template Custom CSS"
42
  msgstr ""
43
 
44
- #: admin/basestyle.helper.php:114 admin/settings/general.class.php:692
45
  msgid "Save Settings"
46
  msgstr ""
47
 
48
- #: admin/basestyle.helper.php:120 admin/settings/general.class.php:698
49
  msgid "Reset"
50
  msgstr ""
51
 
52
- #: admin/basestyle.helper.php:126 admin/settings/general.class.php:704
53
  msgid "Save"
54
  msgstr ""
55
 
56
- #: admin/settings/general.class.php:34 admin/settings/general.class.php:56
57
  msgid "General Settings"
58
  msgstr ""
59
 
60
- #: admin/settings/general.class.php:57
61
  msgid ""
62
  "Wishlist page need to be selected so the plugin knows where it is. This "
63
  "page should have been created upon installation of the plugin, if not you "
64
  "will need to create it manually."
65
  msgstr ""
66
 
67
- #: admin/settings/general.class.php:63 views/wizard/step-page.php:27
68
  msgid "Default Wishlist Name"
69
  msgstr ""
70
 
71
- #: admin/settings/general.class.php:69
72
  msgid "Wishlist Page"
73
  msgstr ""
74
 
75
- #: admin/settings/general.class.php:77
76
  msgid "Require Login"
77
  msgstr ""
78
 
79
- #: admin/settings/general.class.php:78
80
  msgid "Disallows guests to use Wishlist functionality until they sign-in."
81
  msgstr ""
82
 
83
- #: admin/settings/general.class.php:87
84
  msgid "Redirect to Login Page"
85
  msgstr ""
86
 
87
- #: admin/settings/general.class.php:88
88
  msgid ""
89
  "Currently this option could not be changed because \"Show successful notice "
90
  "in popup\" is disabled. Guests will be redirected automatically to a login "
91
  "page."
92
  msgstr ""
93
 
94
- #: admin/settings/general.class.php:88
95
  msgid ""
96
  "If enabled, guests will be redirected to a login page once clicking the "
97
  "\"Add to Wishlist\" button or \"Wishlist Products Counter\" link. Otherwise "
98
  "a popup with login required notice will appear."
99
  msgstr ""
100
 
101
- #: admin/settings/general.class.php:95
102
  msgid "Show Link to Wishlist in my account"
103
  msgstr ""
104
 
105
- #: admin/settings/general.class.php:101
106
  msgid "Remove Product from Wishlist if added to cart"
107
  msgstr ""
108
 
109
- #: admin/settings/general.class.php:108 admin/settings/general.class.php:227
110
  msgid "Redirect to the checkout page from Wishlist if added to cart"
111
  msgstr ""
112
 
113
- #: admin/settings/general.class.php:114 admin/settings/general.class.php:234
114
  msgid "Remove by anyone"
115
  msgstr ""
116
 
117
- #: admin/settings/general.class.php:121
118
  msgid "Remove product from Wishlist on second click"
119
  msgstr ""
120
 
121
- #: admin/settings/general.class.php:135
122
  msgid "Show successful notice in popup"
123
  msgstr ""
124
 
125
- #: admin/settings/general.class.php:136
126
  msgid ""
127
  "This option allows to show/hide a popup with successful or error notices "
128
  "after addition or removing products from a Wishlist."
129
  msgstr ""
130
 
131
- #: admin/settings/general.class.php:146
132
  msgid "\"View Wishlist\" button Text"
133
  msgstr ""
134
 
135
- #: admin/settings/general.class.php:153
136
  msgid "Redirect to Wishlist"
137
  msgstr ""
138
 
139
- #: admin/settings/general.class.php:154
140
  msgid ""
141
  "If enabled, user will be redirected to wishlist page after 5 sec from "
142
  "adding product to wishlist."
143
  msgstr ""
144
 
145
- #: admin/settings/general.class.php:161
146
  msgid "\"Product added to Wishlist\" Text"
147
  msgstr ""
148
 
149
- #: admin/settings/general.class.php:168
150
  msgid "\"Product already in Wishlist\" Text"
151
  msgstr ""
152
 
153
- #: admin/settings/general.class.php:169
154
  msgid ""
155
  "This notification will be shown if user will try to add a product that is "
156
  "already in the wishlist."
157
  msgstr ""
158
 
159
- #: admin/settings/general.class.php:176
160
  msgid "\"Product removed from Wishlist\" Text"
161
  msgstr ""
162
 
163
- #: admin/settings/general.class.php:177
164
  msgid ""
165
  "This notification will be shown once the product is removed from Wishlist "
166
  "on a single or a catalog page."
167
  msgstr ""
168
 
169
- #: admin/settings/general.class.php:185
170
  msgid "Wishlist Page Options"
171
  msgstr ""
172
 
173
- #: admin/settings/general.class.php:186 admin/settings/general.class.php:203
174
  msgid "Coming soon"
175
  msgstr ""
176
 
177
- #: admin/settings/general.class.php:193 views/wizard/step-page.php:36
178
  msgid "My Wishlist"
179
  msgstr ""
180
 
181
- #: admin/settings/general.class.php:202
182
  msgid "Wishlist Processing Options"
183
  msgstr ""
184
 
185
- #: admin/settings/general.class.php:210
186
  msgid "Automatic removal"
187
  msgstr ""
188
 
189
- #: admin/settings/general.class.php:217
190
  msgid "Remove condition"
191
  msgstr ""
192
 
193
- #: admin/settings/general.class.php:220
194
  msgid "Add to Cart"
195
  msgstr ""
196
 
197
- #: admin/settings/general.class.php:242
198
  msgid "Product page \"Add to Wishlist\" Button Settings"
199
  msgstr ""
200
 
201
- #: admin/settings/general.class.php:248 admin/settings/general.class.php:364
202
  #: views/wizard/step-button.php:32
203
  msgid "Button position"
204
  msgstr ""
205
 
206
- #: admin/settings/general.class.php:249
207
  msgid ""
208
  "Add this shortcode <code>[ti_wishlists_addtowishlist]</code> anywhere on "
209
  "product page, if you have chosen custom position for product button. You "
210
  "will have to do this for each product."
211
  msgstr ""
212
 
213
- #: admin/settings/general.class.php:252 admin/settings/general.class.php:367
214
  #: includes/wizard.class.php:406
215
  msgid "After \"Add to Cart\" button"
216
  msgstr ""
217
 
218
- #: admin/settings/general.class.php:253 admin/settings/general.class.php:368
219
  #: includes/wizard.class.php:407
220
  msgid "Before \"Add to Cart\" button"
221
  msgstr ""
222
 
223
- #: admin/settings/general.class.php:254 admin/settings/general.class.php:370
224
  #: includes/wizard.class.php:408
225
  msgid "Custom position with code"
226
  msgstr ""
227
 
228
- #: admin/settings/general.class.php:260 admin/settings/general.class.php:377
229
  msgid "Button type"
230
  msgstr ""
231
 
232
- #: admin/settings/general.class.php:263 admin/settings/general.class.php:380
233
  msgid "Link"
234
  msgstr ""
235
 
236
- #: admin/settings/general.class.php:264 admin/settings/general.class.php:381
237
  #: includes/wizard.class.php:395
238
  msgid "Button"
239
  msgstr ""
240
 
241
- #: admin/settings/general.class.php:270 admin/settings/general.class.php:387
242
  msgid "\"Add to Wishlist\" Icon"
243
  msgstr ""
244
 
245
- #: admin/settings/general.class.php:271 admin/settings/general.class.php:635
246
  msgid ""
247
  "You can choose from our predefined icons or upload your custom icon. Custom "
248
  "icon size is limited to 16x16 px."
249
  msgstr ""
250
 
251
- #: admin/settings/general.class.php:274 admin/settings/general.class.php:390
252
- #: admin/settings/general.class.php:630
253
- msgid "None"
254
- msgstr ""
255
-
256
  #: admin/settings/general.class.php:275 admin/settings/general.class.php:391
257
  #: admin/settings/general.class.php:631
258
- msgid "Heart"
259
  msgstr ""
260
 
261
  #: admin/settings/general.class.php:276 admin/settings/general.class.php:392
262
  #: admin/settings/general.class.php:632
263
- msgid "Heart+"
264
  msgstr ""
265
 
266
  #: admin/settings/general.class.php:277 admin/settings/general.class.php:393
267
  #: admin/settings/general.class.php:633
 
 
 
 
 
268
  msgid "Custom"
269
  msgstr ""
270
 
271
- #: admin/settings/general.class.php:294 admin/settings/general.class.php:409
272
- #: admin/settings/general.class.php:650
273
  msgid "Upload"
274
  msgstr ""
275
 
276
- #: admin/settings/general.class.php:303 admin/settings/general.class.php:418
277
  msgid "\"Add to Wishlist\" Icon Color"
278
  msgstr ""
279
 
280
- #: admin/settings/general.class.php:305 admin/settings/general.class.php:420
281
- #: admin/settings/general.class.php:661
282
  msgid "Black"
283
  msgstr ""
284
 
285
- #: admin/settings/general.class.php:306 admin/settings/general.class.php:421
286
- #: admin/settings/general.class.php:612 admin/settings/general.class.php:662
287
  msgid "White"
288
  msgstr ""
289
 
290
- #: admin/settings/general.class.php:313 admin/settings/general.class.php:428
291
  msgid "Show button text"
292
  msgstr ""
293
 
294
- #: admin/settings/general.class.php:328
295
  msgid "\"Add to Wishlist\" button Text"
296
  msgstr ""
297
 
298
- #: admin/settings/general.class.php:334 admin/settings/general.class.php:449
299
  msgid "\"Remove from Wishlist\" Button Text"
300
  msgstr ""
301
 
302
- #: admin/settings/general.class.php:342
303
  msgid "Product listing Button Settings"
304
  msgstr ""
305
 
306
- #: admin/settings/general.class.php:343
307
  msgid ""
308
  "These are separate settings for the \"Add to Wishlist\" button on a product "
309
  "listing (Shop page, categories, etc.). You can also adjust button and text "
310
  "colors, size, etc. in a <code>TI Wishlist > Style Options.</code>"
311
  msgstr ""
312
 
313
- #: admin/settings/general.class.php:349
314
  msgid "Show in Product Listing"
315
  msgstr ""
316
 
317
- #: admin/settings/general.class.php:369
318
  msgid "Above Thumbnail"
319
  msgstr ""
320
 
321
- #: admin/settings/general.class.php:372
322
  msgid ""
323
  "Note: if \"Custom position with code\" option is applied, the \"Add to "
324
  "Wishlist\" button should be added into template using "
@@ -326,79 +326,79 @@ msgid ""
326
  "/><code>do_shortcode(\"[ti_wishlists_addtowishlist loop=yes]\")</code>"
327
  msgstr ""
328
 
329
- #: admin/settings/general.class.php:443 views/wizard/step-button.php:41
330
  msgid "\"Add to Wishlist\" Text"
331
  msgstr ""
332
 
333
- #: admin/settings/general.class.php:457
334
  msgid "Wishlist Product Settings"
335
  msgstr ""
336
 
337
- #: admin/settings/general.class.php:458
338
  msgid ""
339
  "Following options allows you to choose what information/functionality to "
340
  "show/enable in wishlist table on wishlist page."
341
  msgstr ""
342
 
343
- #: admin/settings/general.class.php:464
344
  msgid "Show \"Add to Cart\" button"
345
  msgstr ""
346
 
347
- #: admin/settings/general.class.php:471
348
  msgid "\"Add to Cart\" Text"
349
  msgstr ""
350
 
351
- #: admin/settings/general.class.php:478
352
  msgid "Show Unit price"
353
  msgstr ""
354
 
355
- #: admin/settings/general.class.php:484
356
  msgid "Show Stock status"
357
  msgstr ""
358
 
359
- #: admin/settings/general.class.php:490
360
  msgid "Show Date of addition"
361
  msgstr ""
362
 
363
- #: admin/settings/general.class.php:497
364
  msgid "Wishlist Table Settings"
365
  msgstr ""
366
 
367
- #: admin/settings/general.class.php:498
368
  msgid ""
369
  "Following options will help user to manage and add products to cart from "
370
  "wishlist table in bulk."
371
  msgstr ""
372
 
373
- #: admin/settings/general.class.php:504
374
  msgid "Show Checkboxes"
375
  msgstr ""
376
 
377
- #: admin/settings/general.class.php:516
378
  msgid "Show Actions button"
379
  msgstr ""
380
 
381
- #: admin/settings/general.class.php:517
382
  msgid "Bulk actions drop down at the bottom of wishlist table"
383
  msgstr ""
384
 
385
- #: admin/settings/general.class.php:523
386
  msgid "Show \"Add Selected to Cart\" button"
387
  msgstr ""
388
 
389
- #: admin/settings/general.class.php:530
390
  msgid "\"Add Selected to Cart\" Button Text"
391
  msgstr ""
392
 
393
- #: admin/settings/general.class.php:541
394
  msgid "Show \"Add All to Cart\" button"
395
  msgstr ""
396
 
397
- #: admin/settings/general.class.php:548
398
  msgid "\"Add All to Cart\" Button Text"
399
  msgstr ""
400
 
401
- #: admin/settings/general.class.php:561
402
  msgid ""
403
  "Following options enable/disable Social share icons below wishlist table on "
404
  "wishlist page. Wishlist owner can easily share their wishlists using this "
@@ -406,47 +406,47 @@ msgid ""
406
  "shared status, private wishlists can't be shared."
407
  msgstr ""
408
 
409
- #: admin/settings/general.class.php:567
410
  msgid "Social Networks Sharing Options"
411
  msgstr ""
412
 
413
- #: admin/settings/general.class.php:573 views/wizard/step-social.php:26
414
  msgid "Show \"Facebook\" Button"
415
  msgstr ""
416
 
417
- #: admin/settings/general.class.php:579 views/wizard/step-social.php:35
418
  msgid "Show \"Twitter\" Button"
419
  msgstr ""
420
 
421
- #: admin/settings/general.class.php:585 views/wizard/step-social.php:44
422
  msgid "Show \"Pinterest\" Button"
423
  msgstr ""
424
 
425
- #: admin/settings/general.class.php:591 views/wizard/step-social.php:53
426
  msgid "Show \"Google+\" Button"
427
  msgstr ""
428
 
429
- #: admin/settings/general.class.php:597 views/wizard/step-social.php:62
430
  msgid "Show \"Share by Email\" Button"
431
  msgstr ""
432
 
433
- #: admin/settings/general.class.php:603
434
  msgid "\"Share on\" Text"
435
  msgstr ""
436
 
437
- #: admin/settings/general.class.php:609
438
  msgid "Social Icons Color"
439
  msgstr ""
440
 
441
- #: admin/settings/general.class.php:611
442
  msgid "Dark"
443
  msgstr ""
444
 
445
- #: admin/settings/general.class.php:620
446
  msgid "Wishlist Products Counter"
447
  msgstr ""
448
 
449
- #: admin/settings/general.class.php:621
450
  msgid ""
451
  "Add this shortcode <code>[ti_wishlist_products_counter]</code> anywhere "
452
  "into a page content to show Wishlist Counter.<br/><br/>It can be also added "
@@ -454,23 +454,23 @@ msgid ""
454
  "href=\"%s\">Appearance -> Widgets</a> section."
455
  msgstr ""
456
 
457
- #: admin/settings/general.class.php:627
458
  msgid "\"Wishlist\" Icon"
459
  msgstr ""
460
 
461
- #: admin/settings/general.class.php:659
462
  msgid "\"Wishlist\" Icon Color"
463
  msgstr ""
464
 
465
- #: admin/settings/general.class.php:669 public/widget/topwishlist.class.php:36
466
  msgid "Show counter text"
467
  msgstr ""
468
 
469
- #: admin/settings/general.class.php:678 public/widget/topwishlist.class.php:41
470
  msgid "Counter Text"
471
  msgstr ""
472
 
473
- #: admin/settings/general.class.php:679
474
  msgid "Wishlist - "
475
  msgstr ""
476
 
@@ -482,215 +482,215 @@ msgstr ""
482
  msgid "Wishlist Style Options"
483
  msgstr ""
484
 
485
- #: admin/settings/style.class.php:48
486
  msgid "Use Default Font"
487
  msgstr ""
488
 
489
- #: admin/settings/style.class.php:65
490
  msgid "text"
491
  msgstr ""
492
 
493
- #: admin/settings/style.class.php:72
494
  msgid "Title Color"
495
  msgstr ""
496
 
497
- #: admin/settings/style.class.php:78
498
  msgid "Title Font Size"
499
  msgstr ""
500
 
501
- #: admin/settings/style.class.php:84 admin/settings/style.class.php:460
502
- #: admin/settings/style.class.php:559
503
  msgid "Content Text Color"
504
  msgstr ""
505
 
506
- #: admin/settings/style.class.php:90 admin/settings/style.class.php:126
507
- #: admin/settings/style.class.php:164 admin/settings/style.class.php:221
508
- #: admin/settings/style.class.php:290 admin/settings/style.class.php:346
509
- #: admin/settings/style.class.php:396
510
  msgid "Font"
511
  msgstr ""
512
 
513
- #: admin/settings/style.class.php:97
514
  msgid "Product Title link"
515
  msgstr ""
516
 
517
- #: admin/settings/style.class.php:104
518
  msgid "Color"
519
  msgstr ""
520
 
521
- #: admin/settings/style.class.php:110
522
  msgid "Hover Color"
523
  msgstr ""
524
 
525
- #: admin/settings/style.class.php:116
526
  msgid "Underline"
527
  msgstr ""
528
 
529
- #: admin/settings/style.class.php:118
530
  msgid "Yes"
531
  msgstr ""
532
 
533
- #: admin/settings/style.class.php:119
534
  msgid "No"
535
  msgstr ""
536
 
537
- #: admin/settings/style.class.php:133
538
  msgid "fields"
539
  msgstr ""
540
 
541
- #: admin/settings/style.class.php:140 admin/settings/style.class.php:184
542
- #: admin/settings/style.class.php:253 admin/settings/style.class.php:322
543
- #: admin/settings/style.class.php:372 admin/settings/style.class.php:422
544
- #: admin/settings/style.class.php:517 admin/settings/style.class.php:553
545
  msgid "Background Color"
546
  msgstr ""
547
 
548
- #: admin/settings/style.class.php:146 admin/settings/style.class.php:428
549
  msgid "Border Color"
550
  msgstr ""
551
 
552
- #: admin/settings/style.class.php:152 admin/settings/style.class.php:241
553
- #: admin/settings/style.class.php:310 admin/settings/style.class.php:360
554
- #: admin/settings/style.class.php:410
555
  msgid "Border Radius"
556
  msgstr ""
557
 
558
- #: admin/settings/style.class.php:158 admin/settings/style.class.php:208
559
- #: admin/settings/style.class.php:277 admin/settings/style.class.php:334
560
- #: admin/settings/style.class.php:384
561
  msgid "Text Color"
562
  msgstr ""
563
 
564
- #: admin/settings/style.class.php:172
565
  msgid "Select Font Size"
566
  msgstr ""
567
 
568
- #: admin/settings/style.class.php:177
569
  msgid "\"Add to Wishlist\" product page button"
570
  msgstr ""
571
 
572
- #: admin/settings/style.class.php:190 admin/settings/style.class.php:259
573
- #: admin/settings/style.class.php:328 admin/settings/style.class.php:378
574
- #: admin/settings/style.class.php:523
575
  msgid "Background Hover Color"
576
  msgstr ""
577
 
578
- #: admin/settings/style.class.php:196 admin/settings/style.class.php:265
579
  msgid "Button Text Color"
580
  msgstr ""
581
 
582
- #: admin/settings/style.class.php:202 admin/settings/style.class.php:271
583
  msgid "Button Text Hover Color"
584
  msgstr ""
585
 
586
- #: admin/settings/style.class.php:214 admin/settings/style.class.php:283
587
- #: admin/settings/style.class.php:340 admin/settings/style.class.php:390
588
  msgid "Text Hover Color"
589
  msgstr ""
590
 
591
- #: admin/settings/style.class.php:229 admin/settings/style.class.php:298
592
- #: admin/settings/style.class.php:354 admin/settings/style.class.php:404
593
  msgid "Font Size"
594
  msgstr ""
595
 
596
- #: admin/settings/style.class.php:235 admin/settings/style.class.php:304
597
- #: admin/settings/style.class.php:541
598
  msgid "Icon Size"
599
  msgstr ""
600
 
601
- #: admin/settings/style.class.php:246
602
  msgid "\"Add to Wishlist\" product listing button"
603
  msgstr ""
604
 
605
- #: admin/settings/style.class.php:315
606
  msgid "\"Apply Action\" button "
607
  msgstr ""
608
 
609
- #: admin/settings/style.class.php:365
610
  msgid "add to cart button"
611
  msgstr ""
612
 
613
- #: admin/settings/style.class.php:415
614
  msgid "table"
615
  msgstr ""
616
 
617
- #: admin/settings/style.class.php:434
618
  msgid "Table Head Background Color"
619
  msgstr ""
620
 
621
- #: admin/settings/style.class.php:440
622
  msgid "Table Head Text Color"
623
  msgstr ""
624
 
625
- #: admin/settings/style.class.php:446
626
  msgid "Table Head Font"
627
  msgstr ""
628
 
629
- #: admin/settings/style.class.php:454
630
  msgid "Table Head Font Size"
631
  msgstr ""
632
 
633
- #: admin/settings/style.class.php:466 admin/settings/style.class.php:565
634
  msgid "Content Text Font"
635
  msgstr ""
636
 
637
- #: admin/settings/style.class.php:474 admin/settings/style.class.php:573
638
  msgid "Content Text Font Size"
639
  msgstr ""
640
 
641
- #: admin/settings/style.class.php:480
642
  msgid "Price Color"
643
  msgstr ""
644
 
645
- #: admin/settings/style.class.php:486
646
  msgid "Price Font"
647
  msgstr ""
648
 
649
- #: admin/settings/style.class.php:494
650
  msgid "Price Font Size"
651
  msgstr ""
652
 
653
- #: admin/settings/style.class.php:500
654
  msgid "Special Price Color"
655
  msgstr ""
656
 
657
- #: admin/settings/style.class.php:506
658
  msgid "Special Price Background Color"
659
  msgstr ""
660
 
661
- #: admin/settings/style.class.php:510
662
  msgid "Share buttons"
663
  msgstr ""
664
 
665
- #: admin/settings/style.class.php:529
666
  msgid "Icon Color"
667
  msgstr ""
668
 
669
- #: admin/settings/style.class.php:535
670
  msgid "Icon Hover Color"
671
  msgstr ""
672
 
673
- #: admin/settings/style.class.php:546
674
  msgid "popups"
675
  msgstr ""
676
 
677
- #: admin/settings/style.class.php:579
678
  msgid "Normal Buttons Background Color"
679
  msgstr ""
680
 
681
- #: admin/settings/style.class.php:585
682
  msgid "Normal Buttons Background Hover Color"
683
  msgstr ""
684
 
685
- #: admin/settings/style.class.php:591
686
  msgid "Normal Buttons Text Color"
687
  msgstr ""
688
 
689
- #: admin/settings/style.class.php:597
690
  msgid "Normal Buttons Text Hover Color"
691
  msgstr ""
692
 
693
- #: admin/settings/upgrade.class.php:34 admin/tinvwl.class.php:226
694
  #: views/wizard/finish.php:31
695
  msgid "Upgrade to Premium"
696
  msgstr ""
@@ -761,17 +761,17 @@ msgstr ""
761
  msgid " or "
762
  msgstr ""
763
 
764
- #: admin/tinvwl.class.php:175
765
  msgid "Are you sure you want to reset the settings?"
766
  msgstr ""
767
 
768
- #: admin/tinvwl.class.php:265
769
  msgid ""
770
  "<code>%1$s</code> version <strong style=\"color:red\">%2$s</strong> is out "
771
  "of date. The core version is <strong style=\"color:red\">%3$s</strong>"
772
  msgstr ""
773
 
774
- #: admin/tinvwl.class.php:291
775
  msgid ""
776
  "<strong>Your theme (%1$s) contains outdated copies of some WooCommerce "
777
  "Wishlist Plugin template files.</strong><br> These files may need updating "
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Wishlist Plugin 1.8.6\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/ti-woocommerce-wishlist\n"
8
+ "POT-Creation-Date: 2018-07-18 18:13:02+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
41
  msgid "Template Custom CSS"
42
  msgstr ""
43
 
44
+ #: admin/basestyle.helper.php:114 admin/settings/general.class.php:693
45
  msgid "Save Settings"
46
  msgstr ""
47
 
48
+ #: admin/basestyle.helper.php:120 admin/settings/general.class.php:699
49
  msgid "Reset"
50
  msgstr ""
51
 
52
+ #: admin/basestyle.helper.php:126 admin/settings/general.class.php:705
53
  msgid "Save"
54
  msgstr ""
55
 
56
+ #: admin/settings/general.class.php:34 admin/settings/general.class.php:57
57
  msgid "General Settings"
58
  msgstr ""
59
 
60
+ #: admin/settings/general.class.php:58
61
  msgid ""
62
  "Wishlist page need to be selected so the plugin knows where it is. This "
63
  "page should have been created upon installation of the plugin, if not you "
64
  "will need to create it manually."
65
  msgstr ""
66
 
67
+ #: admin/settings/general.class.php:64 views/wizard/step-page.php:27
68
  msgid "Default Wishlist Name"
69
  msgstr ""
70
 
71
+ #: admin/settings/general.class.php:70
72
  msgid "Wishlist Page"
73
  msgstr ""
74
 
75
+ #: admin/settings/general.class.php:78
76
  msgid "Require Login"
77
  msgstr ""
78
 
79
+ #: admin/settings/general.class.php:79
80
  msgid "Disallows guests to use Wishlist functionality until they sign-in."
81
  msgstr ""
82
 
83
+ #: admin/settings/general.class.php:88
84
  msgid "Redirect to Login Page"
85
  msgstr ""
86
 
87
+ #: admin/settings/general.class.php:89
88
  msgid ""
89
  "Currently this option could not be changed because \"Show successful notice "
90
  "in popup\" is disabled. Guests will be redirected automatically to a login "
91
  "page."
92
  msgstr ""
93
 
94
+ #: admin/settings/general.class.php:89
95
  msgid ""
96
  "If enabled, guests will be redirected to a login page once clicking the "
97
  "\"Add to Wishlist\" button or \"Wishlist Products Counter\" link. Otherwise "
98
  "a popup with login required notice will appear."
99
  msgstr ""
100
 
101
+ #: admin/settings/general.class.php:96
102
  msgid "Show Link to Wishlist in my account"
103
  msgstr ""
104
 
105
+ #: admin/settings/general.class.php:102
106
  msgid "Remove Product from Wishlist if added to cart"
107
  msgstr ""
108
 
109
+ #: admin/settings/general.class.php:109 admin/settings/general.class.php:228
110
  msgid "Redirect to the checkout page from Wishlist if added to cart"
111
  msgstr ""
112
 
113
+ #: admin/settings/general.class.php:115 admin/settings/general.class.php:235
114
  msgid "Remove by anyone"
115
  msgstr ""
116
 
117
+ #: admin/settings/general.class.php:122
118
  msgid "Remove product from Wishlist on second click"
119
  msgstr ""
120
 
121
+ #: admin/settings/general.class.php:136
122
  msgid "Show successful notice in popup"
123
  msgstr ""
124
 
125
+ #: admin/settings/general.class.php:137
126
  msgid ""
127
  "This option allows to show/hide a popup with successful or error notices "
128
  "after addition or removing products from a Wishlist."
129
  msgstr ""
130
 
131
+ #: admin/settings/general.class.php:147
132
  msgid "\"View Wishlist\" button Text"
133
  msgstr ""
134
 
135
+ #: admin/settings/general.class.php:154
136
  msgid "Redirect to Wishlist"
137
  msgstr ""
138
 
139
+ #: admin/settings/general.class.php:155
140
  msgid ""
141
  "If enabled, user will be redirected to wishlist page after 5 sec from "
142
  "adding product to wishlist."
143
  msgstr ""
144
 
145
+ #: admin/settings/general.class.php:162
146
  msgid "\"Product added to Wishlist\" Text"
147
  msgstr ""
148
 
149
+ #: admin/settings/general.class.php:169
150
  msgid "\"Product already in Wishlist\" Text"
151
  msgstr ""
152
 
153
+ #: admin/settings/general.class.php:170
154
  msgid ""
155
  "This notification will be shown if user will try to add a product that is "
156
  "already in the wishlist."
157
  msgstr ""
158
 
159
+ #: admin/settings/general.class.php:177
160
  msgid "\"Product removed from Wishlist\" Text"
161
  msgstr ""
162
 
163
+ #: admin/settings/general.class.php:178
164
  msgid ""
165
  "This notification will be shown once the product is removed from Wishlist "
166
  "on a single or a catalog page."
167
  msgstr ""
168
 
169
+ #: admin/settings/general.class.php:186
170
  msgid "Wishlist Page Options"
171
  msgstr ""
172
 
173
+ #: admin/settings/general.class.php:187 admin/settings/general.class.php:204
174
  msgid "Coming soon"
175
  msgstr ""
176
 
177
+ #: admin/settings/general.class.php:194 views/wizard/step-page.php:36
178
  msgid "My Wishlist"
179
  msgstr ""
180
 
181
+ #: admin/settings/general.class.php:203
182
  msgid "Wishlist Processing Options"
183
  msgstr ""
184
 
185
+ #: admin/settings/general.class.php:211
186
  msgid "Automatic removal"
187
  msgstr ""
188
 
189
+ #: admin/settings/general.class.php:218
190
  msgid "Remove condition"
191
  msgstr ""
192
 
193
+ #: admin/settings/general.class.php:221
194
  msgid "Add to Cart"
195
  msgstr ""
196
 
197
+ #: admin/settings/general.class.php:243
198
  msgid "Product page \"Add to Wishlist\" Button Settings"
199
  msgstr ""
200
 
201
+ #: admin/settings/general.class.php:249 admin/settings/general.class.php:365
202
  #: views/wizard/step-button.php:32
203
  msgid "Button position"
204
  msgstr ""
205
 
206
+ #: admin/settings/general.class.php:250
207
  msgid ""
208
  "Add this shortcode <code>[ti_wishlists_addtowishlist]</code> anywhere on "
209
  "product page, if you have chosen custom position for product button. You "
210
  "will have to do this for each product."
211
  msgstr ""
212
 
213
+ #: admin/settings/general.class.php:253 admin/settings/general.class.php:368
214
  #: includes/wizard.class.php:406
215
  msgid "After \"Add to Cart\" button"
216
  msgstr ""
217
 
218
+ #: admin/settings/general.class.php:254 admin/settings/general.class.php:369
219
  #: includes/wizard.class.php:407
220
  msgid "Before \"Add to Cart\" button"
221
  msgstr ""
222
 
223
+ #: admin/settings/general.class.php:255 admin/settings/general.class.php:371
224
  #: includes/wizard.class.php:408
225
  msgid "Custom position with code"
226
  msgstr ""
227
 
228
+ #: admin/settings/general.class.php:261 admin/settings/general.class.php:378
229
  msgid "Button type"
230
  msgstr ""
231
 
232
+ #: admin/settings/general.class.php:264 admin/settings/general.class.php:381
233
  msgid "Link"
234
  msgstr ""
235
 
236
+ #: admin/settings/general.class.php:265 admin/settings/general.class.php:382
237
  #: includes/wizard.class.php:395
238
  msgid "Button"
239
  msgstr ""
240
 
241
+ #: admin/settings/general.class.php:271 admin/settings/general.class.php:388
242
  msgid "\"Add to Wishlist\" Icon"
243
  msgstr ""
244
 
245
+ #: admin/settings/general.class.php:272 admin/settings/general.class.php:636
246
  msgid ""
247
  "You can choose from our predefined icons or upload your custom icon. Custom "
248
  "icon size is limited to 16x16 px."
249
  msgstr ""
250
 
 
 
 
 
 
251
  #: admin/settings/general.class.php:275 admin/settings/general.class.php:391
252
  #: admin/settings/general.class.php:631
253
+ msgid "None"
254
  msgstr ""
255
 
256
  #: admin/settings/general.class.php:276 admin/settings/general.class.php:392
257
  #: admin/settings/general.class.php:632
258
+ msgid "Heart"
259
  msgstr ""
260
 
261
  #: admin/settings/general.class.php:277 admin/settings/general.class.php:393
262
  #: admin/settings/general.class.php:633
263
+ msgid "Heart+"
264
+ msgstr ""
265
+
266
+ #: admin/settings/general.class.php:278 admin/settings/general.class.php:394
267
+ #: admin/settings/general.class.php:634
268
  msgid "Custom"
269
  msgstr ""
270
 
271
+ #: admin/settings/general.class.php:295 admin/settings/general.class.php:410
272
+ #: admin/settings/general.class.php:651
273
  msgid "Upload"
274
  msgstr ""
275
 
276
+ #: admin/settings/general.class.php:304 admin/settings/general.class.php:419
277
  msgid "\"Add to Wishlist\" Icon Color"
278
  msgstr ""
279
 
280
+ #: admin/settings/general.class.php:306 admin/settings/general.class.php:421
281
+ #: admin/settings/general.class.php:662
282
  msgid "Black"
283
  msgstr ""
284
 
285
+ #: admin/settings/general.class.php:307 admin/settings/general.class.php:422
286
+ #: admin/settings/general.class.php:613 admin/settings/general.class.php:663
287
  msgid "White"
288
  msgstr ""
289
 
290
+ #: admin/settings/general.class.php:314 admin/settings/general.class.php:429
291
  msgid "Show button text"
292
  msgstr ""
293
 
294
+ #: admin/settings/general.class.php:329
295
  msgid "\"Add to Wishlist\" button Text"
296
  msgstr ""
297
 
298
+ #: admin/settings/general.class.php:335 admin/settings/general.class.php:450
299
  msgid "\"Remove from Wishlist\" Button Text"
300
  msgstr ""
301
 
302
+ #: admin/settings/general.class.php:343
303
  msgid "Product listing Button Settings"
304
  msgstr ""
305
 
306
+ #: admin/settings/general.class.php:344
307
  msgid ""
308
  "These are separate settings for the \"Add to Wishlist\" button on a product "
309
  "listing (Shop page, categories, etc.). You can also adjust button and text "
310
  "colors, size, etc. in a <code>TI Wishlist > Style Options.</code>"
311
  msgstr ""
312
 
313
+ #: admin/settings/general.class.php:350
314
  msgid "Show in Product Listing"
315
  msgstr ""
316
 
317
+ #: admin/settings/general.class.php:370
318
  msgid "Above Thumbnail"
319
  msgstr ""
320
 
321
+ #: admin/settings/general.class.php:373
322
  msgid ""
323
  "Note: if \"Custom position with code\" option is applied, the \"Add to "
324
  "Wishlist\" button should be added into template using "
326
  "/><code>do_shortcode(\"[ti_wishlists_addtowishlist loop=yes]\")</code>"
327
  msgstr ""
328
 
329
+ #: admin/settings/general.class.php:444 views/wizard/step-button.php:41
330
  msgid "\"Add to Wishlist\" Text"
331
  msgstr ""
332
 
333
+ #: admin/settings/general.class.php:458
334
  msgid "Wishlist Product Settings"
335
  msgstr ""
336
 
337
+ #: admin/settings/general.class.php:459
338
  msgid ""
339
  "Following options allows you to choose what information/functionality to "
340
  "show/enable in wishlist table on wishlist page."
341
  msgstr ""
342
 
343
+ #: admin/settings/general.class.php:465
344
  msgid "Show \"Add to Cart\" button"
345
  msgstr ""
346
 
347
+ #: admin/settings/general.class.php:472
348
  msgid "\"Add to Cart\" Text"
349
  msgstr ""
350
 
351
+ #: admin/settings/general.class.php:479
352
  msgid "Show Unit price"
353
  msgstr ""
354
 
355
+ #: admin/settings/general.class.php:485
356
  msgid "Show Stock status"
357
  msgstr ""
358
 
359
+ #: admin/settings/general.class.php:491
360
  msgid "Show Date of addition"
361
  msgstr ""
362
 
363
+ #: admin/settings/general.class.php:498
364
  msgid "Wishlist Table Settings"
365
  msgstr ""
366
 
367
+ #: admin/settings/general.class.php:499
368
  msgid ""
369
  "Following options will help user to manage and add products to cart from "
370
  "wishlist table in bulk."
371
  msgstr ""
372
 
373
+ #: admin/settings/general.class.php:505
374
  msgid "Show Checkboxes"
375
  msgstr ""
376
 
377
+ #: admin/settings/general.class.php:517
378
  msgid "Show Actions button"
379
  msgstr ""
380
 
381
+ #: admin/settings/general.class.php:518
382
  msgid "Bulk actions drop down at the bottom of wishlist table"
383
  msgstr ""
384
 
385
+ #: admin/settings/general.class.php:524
386
  msgid "Show \"Add Selected to Cart\" button"
387
  msgstr ""
388
 
389
+ #: admin/settings/general.class.php:531
390
  msgid "\"Add Selected to Cart\" Button Text"
391
  msgstr ""
392
 
393
+ #: admin/settings/general.class.php:542
394
  msgid "Show \"Add All to Cart\" button"
395
  msgstr ""
396
 
397
+ #: admin/settings/general.class.php:549
398
  msgid "\"Add All to Cart\" Button Text"
399
  msgstr ""
400
 
401
+ #: admin/settings/general.class.php:562
402
  msgid ""
403
  "Following options enable/disable Social share icons below wishlist table on "
404
  "wishlist page. Wishlist owner can easily share their wishlists using this "
406
  "shared status, private wishlists can't be shared."
407
  msgstr ""
408
 
409
+ #: admin/settings/general.class.php:568
410
  msgid "Social Networks Sharing Options"
411
  msgstr ""
412
 
413
+ #: admin/settings/general.class.php:574 views/wizard/step-social.php:26
414
  msgid "Show \"Facebook\" Button"
415
  msgstr ""
416
 
417
+ #: admin/settings/general.class.php:580 views/wizard/step-social.php:35
418
  msgid "Show \"Twitter\" Button"
419
  msgstr ""
420
 
421
+ #: admin/settings/general.class.php:586 views/wizard/step-social.php:44
422
  msgid "Show \"Pinterest\" Button"
423
  msgstr ""
424
 
425
+ #: admin/settings/general.class.php:592 views/wizard/step-social.php:53
426
  msgid "Show \"Google+\" Button"
427
  msgstr ""
428
 
429
+ #: admin/settings/general.class.php:598 views/wizard/step-social.php:62
430
  msgid "Show \"Share by Email\" Button"
431
  msgstr ""
432
 
433
+ #: admin/settings/general.class.php:604
434
  msgid "\"Share on\" Text"
435
  msgstr ""
436
 
437
+ #: admin/settings/general.class.php:610
438
  msgid "Social Icons Color"
439
  msgstr ""
440
 
441
+ #: admin/settings/general.class.php:612
442
  msgid "Dark"
443
  msgstr ""
444
 
445
+ #: admin/settings/general.class.php:621
446
  msgid "Wishlist Products Counter"
447
  msgstr ""
448
 
449
+ #: admin/settings/general.class.php:622
450
  msgid ""
451
  "Add this shortcode <code>[ti_wishlist_products_counter]</code> anywhere "
452
  "into a page content to show Wishlist Counter.<br/><br/>It can be also added "
454
  "href=\"%s\">Appearance -> Widgets</a> section."
455
  msgstr ""
456
 
457
+ #: admin/settings/general.class.php:628
458
  msgid "\"Wishlist\" Icon"
459
  msgstr ""
460
 
461
+ #: admin/settings/general.class.php:660
462
  msgid "\"Wishlist\" Icon Color"
463
  msgstr ""
464
 
465
+ #: admin/settings/general.class.php:670 public/widget/topwishlist.class.php:36
466
  msgid "Show counter text"
467
  msgstr ""
468
 
469
+ #: admin/settings/general.class.php:679 public/widget/topwishlist.class.php:41
470
  msgid "Counter Text"
471
  msgstr ""
472
 
473
+ #: admin/settings/general.class.php:680
474
  msgid "Wishlist - "
475
  msgstr ""
476
 
482
  msgid "Wishlist Style Options"
483
  msgstr ""
484
 
485
+ #: admin/settings/style.class.php:49
486
  msgid "Use Default Font"
487
  msgstr ""
488
 
489
+ #: admin/settings/style.class.php:66
490
  msgid "text"
491
  msgstr ""
492
 
493
+ #: admin/settings/style.class.php:73
494
  msgid "Title Color"
495
  msgstr ""
496
 
497
+ #: admin/settings/style.class.php:79
498
  msgid "Title Font Size"
499
  msgstr ""
500
 
501
+ #: admin/settings/style.class.php:85 admin/settings/style.class.php:461
502
+ #: admin/settings/style.class.php:560
503
  msgid "Content Text Color"
504
  msgstr ""
505
 
506
+ #: admin/settings/style.class.php:91 admin/settings/style.class.php:127
507
+ #: admin/settings/style.class.php:165 admin/settings/style.class.php:222
508
+ #: admin/settings/style.class.php:291 admin/settings/style.class.php:347
509
+ #: admin/settings/style.class.php:397
510
  msgid "Font"
511
  msgstr ""
512
 
513
+ #: admin/settings/style.class.php:98
514
  msgid "Product Title link"
515
  msgstr ""
516
 
517
+ #: admin/settings/style.class.php:105
518
  msgid "Color"
519
  msgstr ""
520
 
521
+ #: admin/settings/style.class.php:111
522
  msgid "Hover Color"
523
  msgstr ""
524
 
525
+ #: admin/settings/style.class.php:117
526
  msgid "Underline"
527
  msgstr ""
528
 
529
+ #: admin/settings/style.class.php:119
530
  msgid "Yes"
531
  msgstr ""
532
 
533
+ #: admin/settings/style.class.php:120
534
  msgid "No"
535
  msgstr ""
536
 
537
+ #: admin/settings/style.class.php:134
538
  msgid "fields"
539
  msgstr ""
540
 
541
+ #: admin/settings/style.class.php:141 admin/settings/style.class.php:185
542
+ #: admin/settings/style.class.php:254 admin/settings/style.class.php:323
543
+ #: admin/settings/style.class.php:373 admin/settings/style.class.php:423
544
+ #: admin/settings/style.class.php:518 admin/settings/style.class.php:554
545
  msgid "Background Color"
546
  msgstr ""
547
 
548
+ #: admin/settings/style.class.php:147 admin/settings/style.class.php:429
549
  msgid "Border Color"
550
  msgstr ""
551
 
552
+ #: admin/settings/style.class.php:153 admin/settings/style.class.php:242
553
+ #: admin/settings/style.class.php:311 admin/settings/style.class.php:361
554
+ #: admin/settings/style.class.php:411
555
  msgid "Border Radius"
556
  msgstr ""
557
 
558
+ #: admin/settings/style.class.php:159 admin/settings/style.class.php:209
559
+ #: admin/settings/style.class.php:278 admin/settings/style.class.php:335
560
+ #: admin/settings/style.class.php:385
561
  msgid "Text Color"
562
  msgstr ""
563
 
564
+ #: admin/settings/style.class.php:173
565
  msgid "Select Font Size"
566
  msgstr ""
567
 
568
+ #: admin/settings/style.class.php:178
569
  msgid "\"Add to Wishlist\" product page button"
570
  msgstr ""
571
 
572
+ #: admin/settings/style.class.php:191 admin/settings/style.class.php:260
573
+ #: admin/settings/style.class.php:329 admin/settings/style.class.php:379
574
+ #: admin/settings/style.class.php:524
575
  msgid "Background Hover Color"
576
  msgstr ""
577
 
578
+ #: admin/settings/style.class.php:197 admin/settings/style.class.php:266
579
  msgid "Button Text Color"
580
  msgstr ""
581
 
582
+ #: admin/settings/style.class.php:203 admin/settings/style.class.php:272
583
  msgid "Button Text Hover Color"
584
  msgstr ""
585
 
586
+ #: admin/settings/style.class.php:215 admin/settings/style.class.php:284
587
+ #: admin/settings/style.class.php:341 admin/settings/style.class.php:391
588
  msgid "Text Hover Color"
589
  msgstr ""
590
 
591
+ #: admin/settings/style.class.php:230 admin/settings/style.class.php:299
592
+ #: admin/settings/style.class.php:355 admin/settings/style.class.php:405
593
  msgid "Font Size"
594
  msgstr ""
595
 
596
+ #: admin/settings/style.class.php:236 admin/settings/style.class.php:305
597
+ #: admin/settings/style.class.php:542
598
  msgid "Icon Size"
599
  msgstr ""
600
 
601
+ #: admin/settings/style.class.php:247
602
  msgid "\"Add to Wishlist\" product listing button"
603
  msgstr ""
604
 
605
+ #: admin/settings/style.class.php:316
606
  msgid "\"Apply Action\" button "
607
  msgstr ""
608
 
609
+ #: admin/settings/style.class.php:366
610
  msgid "add to cart button"
611
  msgstr ""
612
 
613
+ #: admin/settings/style.class.php:416
614
  msgid "table"
615
  msgstr ""
616
 
617
+ #: admin/settings/style.class.php:435
618
  msgid "Table Head Background Color"
619
  msgstr ""
620
 
621
+ #: admin/settings/style.class.php:441
622
  msgid "Table Head Text Color"
623
  msgstr ""
624
 
625
+ #: admin/settings/style.class.php:447
626
  msgid "Table Head Font"
627
  msgstr ""
628
 
629
+ #: admin/settings/style.class.php:455
630
  msgid "Table Head Font Size"
631
  msgstr ""
632
 
633
+ #: admin/settings/style.class.php:467 admin/settings/style.class.php:566
634
  msgid "Content Text Font"
635
  msgstr ""
636
 
637
+ #: admin/settings/style.class.php:475 admin/settings/style.class.php:574
638
  msgid "Content Text Font Size"
639
  msgstr ""
640
 
641
+ #: admin/settings/style.class.php:481
642
  msgid "Price Color"
643
  msgstr ""
644
 
645
+ #: admin/settings/style.class.php:487
646
  msgid "Price Font"
647
  msgstr ""
648
 
649
+ #: admin/settings/style.class.php:495
650
  msgid "Price Font Size"
651
  msgstr ""
652
 
653
+ #: admin/settings/style.class.php:501
654
  msgid "Special Price Color"
655
  msgstr ""
656
 
657
+ #: admin/settings/style.class.php:507
658
  msgid "Special Price Background Color"
659
  msgstr ""
660
 
661
+ #: admin/settings/style.class.php:511
662
  msgid "Share buttons"
663
  msgstr ""
664
 
665
+ #: admin/settings/style.class.php:530
666
  msgid "Icon Color"
667
  msgstr ""
668
 
669
+ #: admin/settings/style.class.php:536
670
  msgid "Icon Hover Color"
671
  msgstr ""
672
 
673
+ #: admin/settings/style.class.php:547
674
  msgid "popups"
675
  msgstr ""
676
 
677
+ #: admin/settings/style.class.php:580
678
  msgid "Normal Buttons Background Color"
679
  msgstr ""
680
 
681
+ #: admin/settings/style.class.php:586
682
  msgid "Normal Buttons Background Hover Color"
683
  msgstr ""
684
 
685
+ #: admin/settings/style.class.php:592
686
  msgid "Normal Buttons Text Color"
687
  msgstr ""
688
 
689
+ #: admin/settings/style.class.php:598
690
  msgid "Normal Buttons Text Hover Color"
691
  msgstr ""
692
 
693
+ #: admin/settings/upgrade.class.php:34 admin/tinvwl.class.php:250
694
  #: views/wizard/finish.php:31
695
  msgid "Upgrade to Premium"
696
  msgstr ""
761
  msgid " or "
762
  msgstr ""
763
 
764
+ #: admin/tinvwl.class.php:185
765
  msgid "Are you sure you want to reset the settings?"
766
  msgstr ""
767
 
768
+ #: admin/tinvwl.class.php:289
769
  msgid ""
770
  "<code>%1$s</code> version <strong style=\"color:red\">%2$s</strong> is out "
771
  "of date. The core version is <strong style=\"color:red\">%3$s</strong>"
772
  msgstr ""
773
 
774
+ #: admin/tinvwl.class.php:315
775
  msgid ""
776
  "<strong>Your theme (%1$s) contains outdated copies of some WooCommerce "
777
  "Wishlist Plugin template files.</strong><br> These files may need updating "
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://templateinvaders.com/?utm_source=wordpressorg&utm_content=d
4
  Tags: wishlist, woocommerce, woocommerce wishlist, e-commerce, ecommerce
5
  Requires at least: 4.5
6
  Tested up to: 4.9
7
- Stable tag: 1.8.5
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -19,7 +19,7 @@ The WooCommerce Wishlist plugin does not collect any personal data from website
19
  = Increase Sales and Conversions =
20
  WooCommerce Wishlist is a simple but powerful tool that can help you to convert your site visitors into loyal customers. There are many situations when customers can’t buy a product at this time or simply don’t want. Possibility to save products for later encourages users to return to your site and after all, make a purchase. Adding products to Wishlist is easy and convenient so it may also force your customers to buy even more products than they planned. Users can share their wishlist, for example, to help their friends choose a gift for upcoming holiday and so on. By sharing their Wishlists, they are bringing you, new potential customers. All in all this increasing amount of your site visitors, conversion and as a result sales.
21
 
22
- [Live Preview](https://woocommercewishlist.com/preview/?utm_source=wordpressorg&utm_content=preview)
23
 
24
  [View documentation](https://templateinvaders.com/documentation/ti-woocommerce-wishlist-free/?utm_source=wordpressorg&utm_content=documentation)
25
 
@@ -130,6 +130,10 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
130
 
131
 
132
  == Changelog ==
 
 
 
 
133
 
134
  = 1.8.5 =
135
  *Release Date - 16 July 2018*
4
  Tags: wishlist, woocommerce, woocommerce wishlist, e-commerce, ecommerce
5
  Requires at least: 4.5
6
  Tested up to: 4.9
7
+ Stable tag: 1.8.6
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
19
  = Increase Sales and Conversions =
20
  WooCommerce Wishlist is a simple but powerful tool that can help you to convert your site visitors into loyal customers. There are many situations when customers can’t buy a product at this time or simply don’t want. Possibility to save products for later encourages users to return to your site and after all, make a purchase. Adding products to Wishlist is easy and convenient so it may also force your customers to buy even more products than they planned. Users can share their wishlist, for example, to help their friends choose a gift for upcoming holiday and so on. By sharing their Wishlists, they are bringing you, new potential customers. All in all this increasing amount of your site visitors, conversion and as a result sales.
21
 
22
+ [Live Preview](https://wishlist1.templateinvaders.com/?utm_source=wordpressorg&utm_content=preview)
23
 
24
  [View documentation](https://templateinvaders.com/documentation/ti-woocommerce-wishlist-free/?utm_source=wordpressorg&utm_content=documentation)
25
 
130
 
131
 
132
  == Changelog ==
133
+ = 1.8.6 =
134
+ *Release Date - 18 July 2018*
135
+
136
+ * Added custom capabilities for dashboard pages
137
 
138
  = 1.8.5 =
139
  *Release Date - 16 July 2018*
ti-woocommerce-wishlist.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: WooCommerce Wishlist Plugin
5
  * Plugin URI: https://wordpress.org/plugins/ti-woocommerce-wishlist/
6
  * Description: Wishlist functionality for your WooCommerce store.
7
- * Version: 1.8.5
8
  * Requires at least: 4.5
9
  * Tested up to: 4.9
10
  * WC requires at least: 2.6
@@ -41,7 +41,7 @@ if ( ! defined( 'TINVWL_DOMAIN' ) ) {
41
  }
42
 
43
  if ( ! defined( 'TINVWL_FVERSION' ) ) {
44
- define( 'TINVWL_FVERSION', '1.8.5' );
45
  }
46
 
47
  if ( ! defined( 'TINVWL_LOAD_FREE' ) ) {
4
  * Plugin Name: WooCommerce Wishlist Plugin
5
  * Plugin URI: https://wordpress.org/plugins/ti-woocommerce-wishlist/
6
  * Description: Wishlist functionality for your WooCommerce store.
7
+ * Version: 1.8.6
8
  * Requires at least: 4.5
9
  * Tested up to: 4.9
10
  * WC requires at least: 2.6
41
  }
42
 
43
  if ( ! defined( 'TINVWL_FVERSION' ) ) {
44
+ define( 'TINVWL_FVERSION', '1.8.6' );
45
  }
46
 
47
  if ( ! defined( 'TINVWL_LOAD_FREE' ) ) {