YITH WooCommerce Ajax Search - Version 1.2.3

Version Description

  • Added: Support to Wordpress 4.1.1
  • Fixed: Minor bugs
Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Ajax Search
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

README.txt CHANGED
@@ -1,10 +1,10 @@
1
  === YITH WooCommerce Ajax Search ===
2
 
3
  Contributors: yithemes
4
- Tags: ajax, search, woocommerce, products, themes, yit, e-commerce, shop, yith, ajax search, instant search, premium, yithemes
5
  Requires at least: 3.5.1
6
- Tested up to: 4.1
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -67,6 +67,10 @@ In WooCommerce->Settings->Ajax Search page, you can choose the minumum size of t
67
 
68
  == Changelog ==
69
 
 
 
 
 
70
  = 1.2.2 =
71
 
72
  * Added: Support to WooCommerce 2.3.x
@@ -121,6 +125,41 @@ Full documentation is available [here](http://yithemes.com/docs-plugins/yith-woo
121
 
122
  == Upgrade notice ==
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  = 1.0.0 =
125
 
126
  Initial release
1
  === YITH WooCommerce Ajax Search ===
2
 
3
  Contributors: yithemes
4
+ Tags: ajax, search, woocommerce, products, themes, yit, e-commerce, shop, yith, ajax search, instant search, premium, yithemes, autocomplete, autosuggest, better search, category search, custom search, highlight terms, Live Search, Predictive Search, product search, relevant search, search highlight, search product, suggest, typeahead, WooCommerce Plugin, woocommerce product search, woocommerce search, wordpress ecommerce
5
  Requires at least: 3.5.1
6
+ Tested up to: 4.1.1
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
67
 
68
  == Changelog ==
69
 
70
+ = 1.2.3 =
71
+ * Added: Support to Wordpress 4.1.1
72
+ * Fixed: Minor bugs
73
+
74
  = 1.2.2 =
75
 
76
  * Added: Support to WooCommerce 2.3.x
125
 
126
  == Upgrade notice ==
127
 
128
+ = 1.2.3 =
129
+ * Added: Support to Wordpress 4.1.1
130
+ * Fixed: Minor bugs
131
+
132
+ = 1.2.2 =
133
+
134
+ * Added: Support to WooCommerce 2.3.x
135
+ * Fixed: Minor bugs
136
+
137
+ = 1.2.1 =
138
+
139
+ * Updated: Plugin Core Framework
140
+
141
+ = 1.2 =
142
+
143
+ * Updated: Plugin Core Framework
144
+
145
+ = 1.1.3 =
146
+
147
+ * Fixed: Javascript code in external file
148
+
149
+ = 1.1.2 =
150
+
151
+ * Fixed: Prevent undefined title index if the widget is called by the the_widget func
152
+ * Updated: Autocomplete js library
153
+ * Updated: Plugin Core Framework
154
+
155
+ = 1.1.1 =
156
+
157
+ * Fixed: Settings link doesn't work on WooCommerce 2.1.1
158
+
159
+ = 1.1.0 =
160
+
161
+ * Added: Support to WooCommerce 2.1.x
162
+
163
  = 1.0.0 =
164
 
165
  Initial release
assets/js/frontend.js CHANGED
@@ -5,28 +5,32 @@
5
  * @package YITH WooCommerce Ajax Search
6
  * @version 1.1.1
7
  */
8
- jQuery(document).ready(function($){
9
  "use strict";
10
 
11
- var el = $('#yith-s'),
12
  def_loader = ( typeof woocommerce_params != 'undefined' && typeof woocommerce_params.ajax_loader_url != 'undefined' ) ? woocommerce_params.ajax_loader_url : yith_wcas_params.loading,
13
  loader_icon = el.data('loader-icon') == '' ? def_loader : el.data('loader-icon'),
14
  min_chars = el.data('min-chars');
15
 
16
- el.autocomplete({
17
- minChars: min_chars,
18
- appendTo: '.yith-ajaxsearchform-container',
19
- serviceUrl: woocommerce_params.ajax_url + '?action=yith_ajax_search_products',
20
- onSearchStart: function(){
21
- $(this).css('background', 'url(' + loader_icon + ') no-repeat right center');
22
- },
23
- onSearchComplete: function(){
24
- $(this).css('background', 'transparent');
25
- },
26
- onSelect: function (suggestion) {
27
- if( suggestion.id != -1 ) {
28
- window.location.href = suggestion.url;
 
 
29
  }
30
- }
31
  });
32
- });
 
 
5
  * @package YITH WooCommerce Ajax Search
6
  * @version 1.1.1
7
  */
8
+ jQuery(document).ready(function ($) {
9
  "use strict";
10
 
11
+ var el = $('.yith-s'),
12
  def_loader = ( typeof woocommerce_params != 'undefined' && typeof woocommerce_params.ajax_loader_url != 'undefined' ) ? woocommerce_params.ajax_loader_url : yith_wcas_params.loading,
13
  loader_icon = el.data('loader-icon') == '' ? def_loader : el.data('loader-icon'),
14
  min_chars = el.data('min-chars');
15
 
16
+ el.each(function () {
17
+ var $t = $(this),
18
+ append_to = ( typeof $t.data('append-to') == 'undefined') ? $t.closest('.yith-ajaxsearchform-container') : $t.data('append-to');
19
+
20
+ el.autocomplete({
21
+ minChars : min_chars,
22
+ appendTo : append_to,
23
+ serviceUrl : woocommerce_params.ajax_url + '?action=yith_ajax_search_products',
24
+ onSearchStart : function () {
25
+ $(this).css('background', 'url(' + loader_icon + ') no-repeat right center');
26
+ },
27
+ onSelect : function (suggestion) {
28
+ if (suggestion.id != -1) {
29
+ window.location.href = suggestion.url;
30
+ }
31
  }
32
+ });
33
  });
34
+ });
35
+
36
+
assets/js/frontend.min.js CHANGED
@@ -1,2 +1,36 @@
1
- jQuery(document).ready(function(b){var a=b("#yith-s"),c="undefined"!=typeof woocommerce_params&&"undefined"!=typeof woocommerce_params.ajax_loader_url?woocommerce_params.ajax_loader_url:yith_wcas_params.loading,d=""==a.data("loader-icon")?c:a.data("loader-icon"),c=a.data("min-chars");a.autocomplete({minChars:c,appendTo:".yith-ajaxsearchform-container",serviceUrl:woocommerce_params.ajax_url+"?action=yith_ajax_search_products",onSearchStart:function(){b(this).css("background","url("+d+") no-repeat right center")},
2
- onSearchComplete:function(){b(this).css("background","transparent")},onSelect:function(a){-1!=a.id&&(window.location.href=a.url)}})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * frontend.js
3
+ *
4
+ * @author Your Inspiration Themes
5
+ * @package YITH WooCommerce Ajax Search
6
+ * @version 1.1.1
7
+ */
8
+ jQuery(document).ready(function ($) {
9
+ "use strict";
10
+
11
+ var el = $('.yith-s'),
12
+ def_loader = ( typeof woocommerce_params != 'undefined' && typeof woocommerce_params.ajax_loader_url != 'undefined' ) ? woocommerce_params.ajax_loader_url : yith_wcas_params.loading,
13
+ loader_icon = el.data('loader-icon') == '' ? def_loader : el.data('loader-icon'),
14
+ min_chars = el.data('min-chars');
15
+
16
+ el.each(function () {
17
+ var $t = $(this),
18
+ append_to = ( typeof $t.data('append-to') == 'undefined') ? $t.closest('.yith-ajaxsearchform-container') : $t.data('append-to');
19
+
20
+ el.autocomplete({
21
+ minChars : min_chars,
22
+ appendTo : append_to,
23
+ serviceUrl : woocommerce_params.ajax_url + '?action=yith_ajax_search_products',
24
+ onSearchStart : function () {
25
+ $(this).css('background', 'url(' + loader_icon + ') no-repeat right center');
26
+ },
27
+ onSelect : function (suggestion) {
28
+ if (suggestion.id != -1) {
29
+ window.location.href = suggestion.url;
30
+ }
31
+ }
32
+ });
33
+ });
34
+ });
35
+
36
+
init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: YITH WooCommerce Ajax Search
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Ajax Search allows your users to search products in real time.
6
- * Version: 1.2.2
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
@@ -11,8 +11,9 @@
11
  *
12
  * @author Yithemes
13
  * @package YITH WooCommerce Ajax Search
14
- * @version 1.1.1
15
  */
 
16
  /* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
17
 
18
  This program is free software; you can redistribute it and/or modify
@@ -70,7 +71,7 @@ register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
70
  if ( defined( 'YITH_WCAS_VERSION' ) ){
71
  return;
72
  }else{
73
- define( 'YITH_WCAS_VERSION', '1.2.2' );
74
  }
75
 
76
  if ( ! defined( 'YITH_WCAS_FREE_INIT' ) ) {
3
  * Plugin Name: YITH WooCommerce Ajax Search
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Ajax Search allows your users to search products in real time.
6
+ * Version: 1.2.3
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
11
  *
12
  * @author Yithemes
13
  * @package YITH WooCommerce Ajax Search
14
+ * @version 1.2.3
15
  */
16
+
17
  /* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
18
 
19
  This program is free software; you can redistribute it and/or modify
71
  if ( defined( 'YITH_WCAS_VERSION' ) ){
72
  return;
73
  }else{
74
+ define( 'YITH_WCAS_VERSION', '1.2.3' );
75
  }
76
 
77
  if ( ! defined( 'YITH_WCAS_FREE_INIT' ) ) {
languages/default.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search Free\n"
4
- "POT-Creation-Date: 2015-01-29 15:45+0100\n"
5
- "PO-Revision-Date: 2015-01-29 15:45+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -35,7 +35,8 @@ msgstr ""
35
  msgid "Plugin Documentation"
36
  msgstr ""
37
 
38
- #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:24
 
39
  msgid "YITH WooCommerce Ajax Search"
40
  msgstr ""
41
 
@@ -67,13 +68,13 @@ msgstr ""
67
  msgid "No results"
68
  msgstr ""
69
 
70
- #: ../init.php:38
71
  msgid ""
72
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
73
  "Woocommerce in order to work."
74
  msgstr ""
75
 
76
- #: ../init.php:51
77
  msgid ""
78
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
79
  "you are using the premium one."
@@ -195,7 +196,7 @@ msgid "Type"
195
  msgstr ""
196
 
197
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
198
- msgid "The layout for this "
199
  msgstr ""
200
 
201
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
@@ -203,27 +204,25 @@ msgid "Rewrite"
203
  msgstr ""
204
 
205
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
206
- msgid "The word used for the URL of each project (the slug of post if empty)"
 
 
207
  msgstr ""
208
 
209
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
210
- msgid "Label Singular"
211
  msgstr ""
212
 
213
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
214
- msgid ""
215
- "Set the label in singular to use for each label (the title of portfolio if "
216
- "empty)"
217
  msgstr ""
218
 
219
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
220
- msgid "Label Plural"
221
  msgstr ""
222
 
223
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
224
- msgid ""
225
- "Set the label in plural to use for each label (the title of portfolio if "
226
- "empty)"
227
  msgstr ""
228
 
229
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
@@ -232,10 +231,9 @@ msgstr ""
232
 
233
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
234
  msgid ""
235
- "If you want to use a category section for the portfolio, set the name of "
236
- "taxonomy. Name should be in slug form (must not contain capital letters or "
237
- "spaces) and not more than 32 characters long (database structure "
238
- "restriction)."
239
  msgstr ""
240
 
241
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
@@ -243,7 +241,7 @@ msgid "Taxonomy Rewrite"
243
  msgstr ""
244
 
245
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
246
- msgid "Set the word to use in the URL for each category page."
247
  msgstr ""
248
 
249
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
@@ -251,7 +249,7 @@ msgid "Single layout"
251
  msgstr ""
252
 
253
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
254
- msgid "The layout for single page of this portfolio"
255
  msgstr ""
256
 
257
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
@@ -265,7 +263,7 @@ msgstr ""
265
 
266
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
267
  #, php-format
268
- msgid "Show the frontend of the %s"
269
  msgstr ""
270
 
271
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
@@ -283,8 +281,8 @@ msgstr ""
283
  msgid "Add with multiupload"
284
  msgstr ""
285
 
286
- #: ../plugin-fw/lib/yit-plugin-panel-wc.php:302
287
- msgid "The changes you made will be lost if you navigate away from this page."
288
  msgstr ""
289
 
290
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
@@ -296,72 +294,69 @@ msgstr ""
296
  msgid "YIT Plugins"
297
  msgstr ""
298
 
299
- #: ../plugin-fw/lib/yit-plugin-panel.php:269
300
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
301
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
302
  msgid "Save Changes"
303
  msgstr ""
304
 
305
- #: ../plugin-fw/lib/yit-plugin-panel.php:272
306
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
307
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
308
- msgid ""
309
- "If you continue with this action, you will reset all options are in this "
310
- "page."
311
  msgstr ""
312
 
313
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
314
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
315
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
316
  msgid "Reset Defaults"
317
  msgstr ""
318
 
319
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
320
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
321
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
322
  msgid "Are you sure of it?"
323
  msgstr ""
324
 
325
- #: ../plugin-fw/lib/yit-plugin-panel.php:408
326
- msgid ""
327
- "The element you have written is already exists. Please, add another name."
328
  msgstr ""
329
 
330
- #: ../plugin-fw/lib/yit-plugin-panel.php:409
331
  msgid "Settings saved"
332
  msgstr ""
333
 
334
- #: ../plugin-fw/lib/yit-plugin-panel.php:410
335
  msgid "Settings reset"
336
  msgstr ""
337
 
338
- #: ../plugin-fw/lib/yit-plugin-panel.php:411
339
  msgid "Element deleted correctly."
340
  msgstr ""
341
 
342
- #: ../plugin-fw/lib/yit-plugin-panel.php:412
343
- #: ../plugin-fw/lib/yit-plugin-panel.php:413
344
  msgid "Element updated correctly."
345
  msgstr ""
346
 
347
- #: ../plugin-fw/lib/yit-plugin-panel.php:414
348
  msgid "Database imported correctly."
349
  msgstr ""
350
 
351
- #: ../plugin-fw/lib/yit-plugin-panel.php:415
352
- msgid "An error encoured during during import. Please try again."
353
  msgstr ""
354
 
355
- #: ../plugin-fw/lib/yit-plugin-panel.php:416
356
- msgid "The file you have insert doesn't valid."
357
  msgstr ""
358
 
359
- #: ../plugin-fw/lib/yit-plugin-panel.php:417
360
- msgid "I'm sorry, the import featured is disabled."
361
  msgstr ""
362
 
363
- #: ../plugin-fw/lib/yit-plugin-panel.php:418
364
- msgid "Sorting done correctly."
365
  msgstr ""
366
 
367
  #: ../plugin-fw/lib/yit-pointers.php:70
@@ -370,10 +365,9 @@ msgstr ""
370
 
371
  #: ../plugin-fw/lib/yit-pointers.php:71
372
  msgid ""
373
- "From now on, you can find all the options of your plugins under the YIT "
374
- "Plugin menu voice.\n"
375
- " For every installation of our new "
376
- "plugins, a new voice will be added to access to the customization settings."
377
  msgstr ""
378
 
379
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
@@ -390,67 +384,67 @@ msgstr ""
390
 
391
  #: ../plugin-fw/lib/yit-pointers.php:85
392
  msgid ""
393
- "From now on, you can find all the options of your plugins under the YIT "
394
- "Plugin menu voice.\n"
395
- " When one of our plugins updates, a new "
396
- "voice will be added to this menu.\n"
397
- " For example, after the update, the "
398
- "options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
399
- "Search, etc.)\n"
400
- " will be removed from the previous "
401
- "location and moved under the YIT Plugin tab."
402
- msgstr ""
403
-
404
- #: ../plugin-fw/lib/yit-upgrade.php:120
405
  msgid "There is a new version of %plugin_name% available."
406
  msgstr ""
407
 
408
- #: ../plugin-fw/lib/yit-upgrade.php:121
409
  msgid "View version %latest% details."
410
  msgstr ""
411
 
412
- #: ../plugin-fw/lib/yit-upgrade.php:122
413
  msgid "Automatic update is unavailable for this plugin,"
414
  msgstr ""
415
 
416
- #: ../plugin-fw/lib/yit-upgrade.php:123
417
  msgid ""
418
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
419
  msgstr ""
420
 
421
- #: ../plugin-fw/lib/yit-upgrade.php:124
422
  msgid "Update now."
423
  msgstr ""
424
 
425
- #: ../plugin-fw/lib/yit-upgrade.php:220
426
  msgid "Yithemes Repository"
427
  msgstr ""
428
 
429
- #: ../plugin-fw/lib/yit-upgrade.php:254
430
  msgid "Invalid URL Provided."
431
  msgstr ""
432
 
433
- #: ../plugin-fw/lib/yit-upgrade.php:267
434
  msgid "Could not create Temporary file."
435
  msgstr ""
436
 
437
- #: ../plugin-fw/lib/yit-upgrade.php:408
438
  #, php-format
439
  msgid ""
440
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
441
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
442
  msgstr ""
443
 
444
- #: ../plugin-fw/lib/yit-upgrade.php:410
445
  #, php-format
446
  msgid ""
447
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
448
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
449
  "have to activate the plugin on a single site of the network to benefit from "
450
- "the automatic updates.</em>"
451
  msgstr ""
452
 
453
- #: ../plugin-fw/lib/yit-upgrade.php:412
454
  #, php-format
455
  msgid ""
456
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -459,7 +453,7 @@ msgid ""
459
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
460
  msgstr ""
461
 
462
- #: ../plugin-fw/lib/yit-upgrade.php:414
463
  #, php-format
464
  msgid ""
465
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -467,61 +461,61 @@ msgid ""
467
  "href=\"%5$s\">update now</a>."
468
  msgstr ""
469
 
470
- #: ../plugin-fw/lib/yit-upgrade.php:487
471
  msgid "You can't update plugins for this site."
472
  msgstr ""
473
 
474
- #: ../plugin-fw/lib/yit-upgrade.php:491
475
  msgid "You do not have sufficient permissions to update plugins for this site."
476
  msgstr ""
477
 
478
- #: ../plugin-fw/lib/yit-upgrade.php:498
479
  msgid "Update Plugin"
480
  msgstr ""
481
 
482
- #: ../plugin-fw/licence/lib/yit-licence.php:154
483
  #, php-format
484
- msgid "%field% field can not be empty"
485
  msgstr ""
486
 
487
- #: ../plugin-fw/licence/lib/yit-licence.php:155
488
- msgid "%field_1% and %field_2% fields can not be empty"
489
  msgstr ""
490
 
491
- #: ../plugin-fw/licence/lib/yit-licence.php:156
492
  msgid "Unable to contact the remote server, please try again later. Thanks!"
493
  msgstr ""
494
 
495
- #: ../plugin-fw/licence/lib/yit-licence.php:538
496
  msgid "Invalid Request"
497
  msgstr ""
498
 
499
- #: ../plugin-fw/licence/lib/yit-licence.php:539
500
  msgid "Invalid licence key"
501
  msgstr ""
502
 
503
- #: ../plugin-fw/licence/lib/yit-licence.php:540
504
- msgid "Software has been deactive"
505
  msgstr ""
506
 
507
- #: ../plugin-fw/licence/lib/yit-licence.php:541
508
- msgid "Exceeded maximum number of activations"
509
  msgstr ""
510
 
511
- #: ../plugin-fw/licence/lib/yit-licence.php:542
512
  msgid "Invalid instance ID"
513
  msgstr ""
514
 
515
- #: ../plugin-fw/licence/lib/yit-licence.php:543
516
  msgid "Invalid security key"
517
  msgstr ""
518
 
519
- #: ../plugin-fw/licence/lib/yit-licence.php:544
520
  msgid "Licence key has expired"
521
  msgstr ""
522
 
523
- #: ../plugin-fw/licence/lib/yit-licence.php:545
524
- msgid "Licence key has be banned"
525
  msgstr ""
526
 
527
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
@@ -539,81 +533,85 @@ msgstr ""
539
  msgid "%s"
540
  msgstr ""
541
 
542
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
543
  msgid "Yithemes Licence Activation"
544
  msgstr ""
545
 
546
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:29
547
  msgid ""
548
  "Have you updated your licenses? Have you asked for an extension? Update "
549
  "information concerning your products."
550
  msgstr ""
551
 
552
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:31
553
  msgid "Update licence information"
554
  msgstr ""
555
 
556
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:41
557
- msgid "To Active"
558
  msgstr ""
559
 
560
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:60
561
  msgid "Activate"
562
  msgstr ""
563
 
564
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
565
  msgid "Activated"
566
  msgstr ""
567
 
568
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:83
569
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:114
570
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:138
571
  msgid "Product Name"
572
  msgstr ""
573
 
574
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:84
575
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:115
576
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:139
577
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
578
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
579
  msgid "Email"
580
  msgstr ""
581
 
582
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:85
583
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:116
584
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:140
585
  msgid "Licence Key"
586
  msgstr ""
587
 
588
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:86
589
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:141
590
  msgid "Expires"
591
  msgstr ""
592
 
593
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:87
594
  msgid "Remaining"
595
  msgstr ""
596
 
597
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:88
598
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:101
599
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:142
600
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:152
601
  msgid "Renew"
602
  msgstr ""
603
 
604
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:99
605
  #, php-format
606
  msgid "%1s out of %2s"
607
  msgstr ""
608
 
609
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
610
  msgid "Banned"
611
  msgstr ""
612
 
613
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
614
  msgid "Expired"
615
  msgstr ""
616
 
 
 
 
 
617
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
618
  msgid "No categories."
619
  msgstr ""
@@ -686,7 +684,7 @@ msgstr ""
686
 
687
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
688
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
689
- msgid "Insert the title of field."
690
  msgstr ""
691
 
692
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
@@ -697,9 +695,8 @@ msgstr ""
697
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
698
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
699
  msgid ""
700
- "REQUIRED: The identification name of this field, that you can insert into "
701
- "body email configuration. <strong>Note:</strong>Use only lowercase "
702
- "characters and underscores."
703
  msgstr ""
704
 
705
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
@@ -709,7 +706,7 @@ msgstr ""
709
 
710
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
711
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
712
- msgid "Select the type of this field."
713
  msgstr ""
714
 
715
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
@@ -719,7 +716,7 @@ msgstr ""
719
 
720
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
721
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
722
- msgid "Select this if you want this field already checked."
723
  msgstr ""
724
 
725
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
@@ -746,7 +743,7 @@ msgstr ""
746
 
747
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
748
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
749
- msgid "Message Error"
750
  msgstr ""
751
 
752
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
@@ -761,12 +758,12 @@ msgstr ""
761
 
762
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
763
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
764
- msgid "Select this if it must be required."
765
  msgstr ""
766
 
767
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
768
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
769
- msgid "Select this if it must be a valid email."
770
  msgstr ""
771
 
772
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
@@ -776,7 +773,7 @@ msgstr ""
776
 
777
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
778
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
779
- msgid "Select this if it's the email where you can reply."
780
  msgstr ""
781
 
782
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
@@ -787,7 +784,7 @@ msgstr ""
787
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
788
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
789
  msgid ""
790
- "Insert an additional class(es) (separateb by comma) for more personalization."
791
  msgstr ""
792
 
793
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
@@ -824,7 +821,7 @@ msgstr ""
824
 
825
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
826
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
827
- msgid "Choose how much long will be the field."
828
  msgstr ""
829
 
830
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
@@ -842,7 +839,7 @@ msgstr ""
842
 
843
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
844
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
845
- msgid "The content of the tab. (HTML is supported)"
846
  msgstr ""
847
 
848
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
@@ -905,10 +902,6 @@ msgstr ""
905
  msgid "No sidebar"
906
  msgstr ""
907
 
908
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
909
- msgid "No sideabr"
910
- msgstr ""
911
-
912
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
913
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
914
  msgid "Right sidebar"
@@ -921,11 +914,11 @@ msgid "Choose a sidebar"
921
  msgstr ""
922
 
923
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
924
- msgid "Sidebar Left"
925
  msgstr ""
926
 
927
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
928
- msgid "Sidebar Right"
929
  msgstr ""
930
 
931
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
@@ -974,69 +967,69 @@ msgstr ""
974
  msgid "Italic bold"
975
  msgstr ""
976
 
977
- #: ../plugin-options/settings-options.php:21
978
  msgid "Upgrade to the PREMIUM VERSION"
979
  msgstr ""
980
 
981
- #: ../plugin-options/settings-options.php:25
982
- msgid "Discovery the Advanced Features"
983
  msgstr ""
984
 
985
- #: ../plugin-options/settings-options.php:26
986
  msgid ""
987
  "Upgrade to the PREMIUM VERSION\n"
988
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
989
  msgstr ""
990
 
991
- #: ../plugin-options/settings-options.php:32
992
  msgid "Get Support and Pro Features"
993
  msgstr ""
994
 
995
- #: ../plugin-options/settings-options.php:33
996
  msgid ""
997
- "Purchasing the premium version of the plugin, you will take advantage of the "
998
- "advanced features of the product and you will get one year of free updates "
999
- "and support through our platform available 24h/24."
1000
  msgstr ""
1001
 
1002
- #: ../plugin-options/settings-options.php:43
1003
  msgid "General settings"
1004
  msgstr ""
1005
 
1006
- #: ../plugin-options/settings-options.php:52
1007
  msgid "Search input label"
1008
  msgstr ""
1009
 
1010
- #: ../plugin-options/settings-options.php:54
1011
- #: ../plugin-options/settings-options.php:62
1012
  msgid "Label for Search input field."
1013
  msgstr ""
1014
 
1015
- #: ../plugin-options/settings-options.php:56
1016
  msgid "Search for products"
1017
  msgstr ""
1018
 
1019
- #: ../plugin-options/settings-options.php:60
1020
  msgid "Search submit label"
1021
  msgstr ""
1022
 
1023
- #: ../plugin-options/settings-options.php:64
1024
  msgid "Search"
1025
  msgstr ""
1026
 
1027
- #: ../plugin-options/settings-options.php:68
1028
  msgid "Minimum number of characters"
1029
  msgstr ""
1030
 
1031
- #: ../plugin-options/settings-options.php:69
1032
  msgid "Minimum number of characters required to trigger autosuggest."
1033
  msgstr ""
1034
 
1035
- #: ../plugin-options/settings-options.php:82
1036
  msgid "Maximum number of results"
1037
  msgstr ""
1038
 
1039
- #: ../plugin-options/settings-options.php:83
1040
  msgid "Maximum number of results showed within the autosuggest box."
1041
  msgstr ""
1042
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search Free\n"
4
+ "POT-Creation-Date: 2015-03-02 10:10+0100\n"
5
+ "PO-Revision-Date: 2015-03-02 10:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
35
  msgid "Plugin Documentation"
36
  msgstr ""
37
 
38
+ #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:26
39
+ #: ../plugin-options/settings-options.php:33
40
  msgid "YITH WooCommerce Ajax Search"
41
  msgstr ""
42
 
68
  msgid "No results"
69
  msgstr ""
70
 
71
+ #: ../init.php:39
72
  msgid ""
73
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
74
  "Woocommerce in order to work."
75
  msgstr ""
76
 
77
+ #: ../init.php:52
78
  msgid ""
79
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
80
  "you are using the premium one."
196
  msgstr ""
197
 
198
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
199
+ msgid "Layout for this "
200
  msgstr ""
201
 
202
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
204
  msgstr ""
205
 
206
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
207
+ msgid ""
208
+ "Univocal identification name in the URL for each product (slug from post if "
209
+ "empty)"
210
  msgstr ""
211
 
212
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
213
+ msgid "Label in Singular"
214
  msgstr ""
215
 
216
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
217
+ msgid "Set a label in singular (title of portfolio if empty)"
 
 
218
  msgstr ""
219
 
220
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
221
+ msgid "Label in Plural"
222
  msgstr ""
223
 
224
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
225
+ msgid "Set a label in plural (title of portfolio if empty)"
 
 
226
  msgstr ""
227
 
228
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
231
 
232
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
233
  msgid ""
234
+ "If you want to use categories in the portfolio, set a name for taxonomy. "
235
+ "Name should be a slug (must not contain capital letters nor spaces) and must "
236
+ "not be more than 32 characters long (database structure restriction)."
 
237
  msgstr ""
238
 
239
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
241
  msgstr ""
242
 
243
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
244
+ msgid "Set the word for each category page URL."
245
  msgstr ""
246
 
247
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
249
  msgstr ""
250
 
251
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
252
+ msgid "Layout for single page of this portfolio"
253
  msgstr ""
254
 
255
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
263
 
264
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
265
  #, php-format
266
+ msgid "Show frontend of the %s"
267
  msgstr ""
268
 
269
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
281
  msgid "Add with multiupload"
282
  msgstr ""
283
 
284
+ #: ../plugin-fw/lib/yit-plugin-panel-wc.php:325
285
+ msgid "The changes you made will be lost if you leave this page."
286
  msgstr ""
287
 
288
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
294
  msgid "YIT Plugins"
295
  msgstr ""
296
 
297
+ #: ../plugin-fw/lib/yit-plugin-panel.php:271
298
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
299
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
300
  msgid "Save Changes"
301
  msgstr ""
302
 
303
+ #: ../plugin-fw/lib/yit-plugin-panel.php:274
304
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
305
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
306
+ msgid "If you go on with this action, you will reset all options in this page."
 
 
307
  msgstr ""
308
 
309
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
310
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
311
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
312
  msgid "Reset Defaults"
313
  msgstr ""
314
 
315
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
316
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
317
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
318
  msgid "Are you sure of it?"
319
  msgstr ""
320
 
321
+ #: ../plugin-fw/lib/yit-plugin-panel.php:410
322
+ msgid "The element you have written already exists. Please, add another name."
 
323
  msgstr ""
324
 
325
+ #: ../plugin-fw/lib/yit-plugin-panel.php:411
326
  msgid "Settings saved"
327
  msgstr ""
328
 
329
+ #: ../plugin-fw/lib/yit-plugin-panel.php:412
330
  msgid "Settings reset"
331
  msgstr ""
332
 
333
+ #: ../plugin-fw/lib/yit-plugin-panel.php:413
334
  msgid "Element deleted correctly."
335
  msgstr ""
336
 
337
+ #: ../plugin-fw/lib/yit-plugin-panel.php:414
338
+ #: ../plugin-fw/lib/yit-plugin-panel.php:415
339
  msgid "Element updated correctly."
340
  msgstr ""
341
 
342
+ #: ../plugin-fw/lib/yit-plugin-panel.php:416
343
  msgid "Database imported correctly."
344
  msgstr ""
345
 
346
+ #: ../plugin-fw/lib/yit-plugin-panel.php:417
347
+ msgid "An error has occurred during import. Please try again."
348
  msgstr ""
349
 
350
+ #: ../plugin-fw/lib/yit-plugin-panel.php:418
351
+ msgid "The file inserted is not valid."
352
  msgstr ""
353
 
354
+ #: ../plugin-fw/lib/yit-plugin-panel.php:419
355
+ msgid "Sorry, import is disabled."
356
  msgstr ""
357
 
358
+ #: ../plugin-fw/lib/yit-plugin-panel.php:420
359
+ msgid "Sorting successful."
360
  msgstr ""
361
 
362
  #: ../plugin-fw/lib/yit-pointers.php:70
365
 
366
  #: ../plugin-fw/lib/yit-pointers.php:71
367
  msgid ""
368
+ "From now on, you can find all plugin options in YIT Plugin menu.\n"
369
+ " For each plugin installed, "
370
+ "customization settings will be available as a new entry in YIT Plugin menu."
 
371
  msgstr ""
372
 
373
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
384
 
385
  #: ../plugin-fw/lib/yit-pointers.php:85
386
  msgid ""
387
+ "From now on, you can find all the options of your plugins in YIT Plugin "
388
+ "menu.\n"
389
+ " Any time one of our plugins is updated, "
390
+ "a new entry will be added to this menu.\n"
391
+ " For example, after update, plugin "
392
+ "options (such for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, "
393
+ "etc.)\n"
394
+ " will be moved from previous location to "
395
+ "YIT Plugin tab."
396
+ msgstr ""
397
+
398
+ #: ../plugin-fw/lib/yit-upgrade.php:119
399
  msgid "There is a new version of %plugin_name% available."
400
  msgstr ""
401
 
402
+ #: ../plugin-fw/lib/yit-upgrade.php:120
403
  msgid "View version %latest% details."
404
  msgstr ""
405
 
406
+ #: ../plugin-fw/lib/yit-upgrade.php:121
407
  msgid "Automatic update is unavailable for this plugin,"
408
  msgstr ""
409
 
410
+ #: ../plugin-fw/lib/yit-upgrade.php:122
411
  msgid ""
412
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
413
  msgstr ""
414
 
415
+ #: ../plugin-fw/lib/yit-upgrade.php:123
416
  msgid "Update now."
417
  msgstr ""
418
 
419
+ #: ../plugin-fw/lib/yit-upgrade.php:226
420
  msgid "Yithemes Repository"
421
  msgstr ""
422
 
423
+ #: ../plugin-fw/lib/yit-upgrade.php:260
424
  msgid "Invalid URL Provided."
425
  msgstr ""
426
 
427
+ #: ../plugin-fw/lib/yit-upgrade.php:273
428
  msgid "Could not create Temporary file."
429
  msgstr ""
430
 
431
+ #: ../plugin-fw/lib/yit-upgrade.php:414
432
  #, php-format
433
  msgid ""
434
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
435
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
436
  msgstr ""
437
 
438
+ #: ../plugin-fw/lib/yit-upgrade.php:416
439
  #, php-format
440
  msgid ""
441
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
442
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
443
  "have to activate the plugin on a single site of the network to benefit from "
444
+ "automatic updates.</em>"
445
  msgstr ""
446
 
447
+ #: ../plugin-fw/lib/yit-upgrade.php:418
448
  #, php-format
449
  msgid ""
450
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
453
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
454
  msgstr ""
455
 
456
+ #: ../plugin-fw/lib/yit-upgrade.php:420
457
  #, php-format
458
  msgid ""
459
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
461
  "href=\"%5$s\">update now</a>."
462
  msgstr ""
463
 
464
+ #: ../plugin-fw/lib/yit-upgrade.php:493
465
  msgid "You can't update plugins for this site."
466
  msgstr ""
467
 
468
+ #: ../plugin-fw/lib/yit-upgrade.php:497
469
  msgid "You do not have sufficient permissions to update plugins for this site."
470
  msgstr ""
471
 
472
+ #: ../plugin-fw/lib/yit-upgrade.php:504
473
  msgid "Update Plugin"
474
  msgstr ""
475
 
476
+ #: ../plugin-fw/licence/lib/yit-licence.php:148
477
  #, php-format
478
+ msgid "%field% field cannot be empty"
479
  msgstr ""
480
 
481
+ #: ../plugin-fw/licence/lib/yit-licence.php:149
482
+ msgid "%field_1% and %field_2% fields cannot be empty"
483
  msgstr ""
484
 
485
+ #: ../plugin-fw/licence/lib/yit-licence.php:150
486
  msgid "Unable to contact the remote server, please try again later. Thanks!"
487
  msgstr ""
488
 
489
+ #: ../plugin-fw/licence/lib/yit-licence.php:529
490
  msgid "Invalid Request"
491
  msgstr ""
492
 
493
+ #: ../plugin-fw/licence/lib/yit-licence.php:530
494
  msgid "Invalid licence key"
495
  msgstr ""
496
 
497
+ #: ../plugin-fw/licence/lib/yit-licence.php:531
498
+ msgid "Software has been deactivated"
499
  msgstr ""
500
 
501
+ #: ../plugin-fw/licence/lib/yit-licence.php:532
502
+ msgid "Maximum number of activations exceeded"
503
  msgstr ""
504
 
505
+ #: ../plugin-fw/licence/lib/yit-licence.php:533
506
  msgid "Invalid instance ID"
507
  msgstr ""
508
 
509
+ #: ../plugin-fw/licence/lib/yit-licence.php:534
510
  msgid "Invalid security key"
511
  msgstr ""
512
 
513
+ #: ../plugin-fw/licence/lib/yit-licence.php:535
514
  msgid "Licence key has expired"
515
  msgstr ""
516
 
517
+ #: ../plugin-fw/licence/lib/yit-licence.php:536
518
+ msgid "Licence key has been banned"
519
  msgstr ""
520
 
521
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
533
  msgid "%s"
534
  msgstr ""
535
 
536
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
537
  msgid "Yithemes Licence Activation"
538
  msgstr ""
539
 
540
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
541
  msgid ""
542
  "Have you updated your licenses? Have you asked for an extension? Update "
543
  "information concerning your products."
544
  msgstr ""
545
 
546
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
547
  msgid "Update licence information"
548
  msgstr ""
549
 
550
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
551
+ msgid "Products to be activated"
552
  msgstr ""
553
 
554
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
555
  msgid "Activate"
556
  msgstr ""
557
 
558
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
559
  msgid "Activated"
560
  msgstr ""
561
 
562
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
563
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
564
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
565
  msgid "Product Name"
566
  msgstr ""
567
 
568
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
569
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
570
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
571
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
572
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
573
  msgid "Email"
574
  msgstr ""
575
 
576
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
577
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
578
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
579
  msgid "Licence Key"
580
  msgstr ""
581
 
582
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
583
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
584
  msgid "Expires"
585
  msgstr ""
586
 
587
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
588
  msgid "Remaining"
589
  msgstr ""
590
 
591
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
592
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
593
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
594
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
595
  msgid "Renew"
596
  msgstr ""
597
 
598
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
599
  #, php-format
600
  msgid "%1s out of %2s"
601
  msgstr ""
602
 
603
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
604
  msgid "Banned"
605
  msgstr ""
606
 
607
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
608
  msgid "Expired"
609
  msgstr ""
610
 
611
+ #: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
612
+ msgid "Search for a product"
613
+ msgstr ""
614
+
615
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
616
  msgid "No categories."
617
  msgstr ""
684
 
685
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
686
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
687
+ msgid "Insert the title for the field."
688
  msgstr ""
689
 
690
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
695
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
696
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
697
  msgid ""
698
+ "REQUIRED: Field identification name to be entered into email body. "
699
+ "<strong>Note:</strong>Use only lowercase characters and underscores."
 
700
  msgstr ""
701
 
702
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
706
 
707
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
708
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
709
+ msgid "Select the type for this field."
710
  msgstr ""
711
 
712
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
716
 
717
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
718
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
719
+ msgid "Select this option if you want this field appears as already checked."
720
  msgstr ""
721
 
722
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
743
 
744
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
745
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
746
+ msgid "Error Message"
747
  msgstr ""
748
 
749
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
758
 
759
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
760
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
761
+ msgid "Select this option if it must be required."
762
  msgstr ""
763
 
764
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
765
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
766
+ msgid "Select this option if the email must be valid."
767
  msgstr ""
768
 
769
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
773
 
774
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
775
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
776
+ msgid "Select this if it is the email you can reply to."
777
  msgstr ""
778
 
779
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
784
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
785
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
786
  msgid ""
787
+ "Insert additional class(es) (separated by commas) for more personalization."
788
  msgstr ""
789
 
790
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
821
 
822
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
823
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
824
+ msgid "Set field length."
825
  msgstr ""
826
 
827
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
839
 
840
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
841
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
842
+ msgid "Content of the tab. (HTML is supported)"
843
  msgstr ""
844
 
845
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
902
  msgid "No sidebar"
903
  msgstr ""
904
 
 
 
 
 
905
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
906
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
907
  msgid "Right sidebar"
914
  msgstr ""
915
 
916
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
917
+ msgid "Left Sidebar"
918
  msgstr ""
919
 
920
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
921
+ msgid "Right Sidebar"
922
  msgstr ""
923
 
924
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
967
  msgid "Italic bold"
968
  msgstr ""
969
 
970
+ #: ../plugin-options/settings-options.php:23
971
  msgid "Upgrade to the PREMIUM VERSION"
972
  msgstr ""
973
 
974
+ #: ../plugin-options/settings-options.php:27
975
+ msgid "Discover the Advanced Features"
976
  msgstr ""
977
 
978
+ #: ../plugin-options/settings-options.php:28
979
  msgid ""
980
  "Upgrade to the PREMIUM VERSION\n"
981
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
982
  msgstr ""
983
 
984
+ #: ../plugin-options/settings-options.php:35
985
  msgid "Get Support and Pro Features"
986
  msgstr ""
987
 
988
+ #: ../plugin-options/settings-options.php:36
989
  msgid ""
990
+ "By purchasing the premium version of the plugin, you will take advantage of "
991
+ "the advanced features of the product and you will get one year of free "
992
+ "updates and support through our platform available 24h/24."
993
  msgstr ""
994
 
995
+ #: ../plugin-options/settings-options.php:46
996
  msgid "General settings"
997
  msgstr ""
998
 
999
+ #: ../plugin-options/settings-options.php:55
1000
  msgid "Search input label"
1001
  msgstr ""
1002
 
1003
+ #: ../plugin-options/settings-options.php:57
1004
+ #: ../plugin-options/settings-options.php:65
1005
  msgid "Label for Search input field."
1006
  msgstr ""
1007
 
1008
+ #: ../plugin-options/settings-options.php:59
1009
  msgid "Search for products"
1010
  msgstr ""
1011
 
1012
+ #: ../plugin-options/settings-options.php:63
1013
  msgid "Search submit label"
1014
  msgstr ""
1015
 
1016
+ #: ../plugin-options/settings-options.php:67
1017
  msgid "Search"
1018
  msgstr ""
1019
 
1020
+ #: ../plugin-options/settings-options.php:71
1021
  msgid "Minimum number of characters"
1022
  msgstr ""
1023
 
1024
+ #: ../plugin-options/settings-options.php:72
1025
  msgid "Minimum number of characters required to trigger autosuggest."
1026
  msgstr ""
1027
 
1028
+ #: ../plugin-options/settings-options.php:85
1029
  msgid "Maximum number of results"
1030
  msgstr ""
1031
 
1032
+ #: ../plugin-options/settings-options.php:86
1033
  msgid "Maximum number of results showed within the autosuggest box."
1034
  msgstr ""
1035
 
languages/yit-it_IT.mo CHANGED
Binary file
languages/yit-it_IT.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search\n"
4
- "POT-Creation-Date: 2015-01-29 15:45+0100\n"
5
- "PO-Revision-Date: 2015-01-29 15:45+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
@@ -35,7 +35,8 @@ msgstr "Ajax Search"
35
  msgid "Plugin Documentation"
36
  msgstr "Impostazioni"
37
 
38
- #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:24
 
39
  #, fuzzy
40
  msgid "YITH WooCommerce Ajax Search"
41
  msgstr "YITH WooCommerce Ajax Product Search"
@@ -69,13 +70,13 @@ msgstr ""
69
  msgid "No results"
70
  msgstr "Nessun risultato"
71
 
72
- #: ../init.php:38
73
  msgid ""
74
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
75
  "Woocommerce in order to work."
76
  msgstr ""
77
 
78
- #: ../init.php:51
79
  msgid ""
80
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
81
  "you are using the premium one."
@@ -198,7 +199,7 @@ msgid "Type"
198
  msgstr ""
199
 
200
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
201
- msgid "The layout for this "
202
  msgstr ""
203
 
204
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
@@ -206,27 +207,25 @@ msgid "Rewrite"
206
  msgstr ""
207
 
208
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
209
- msgid "The word used for the URL of each project (the slug of post if empty)"
 
 
210
  msgstr ""
211
 
212
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
213
- msgid "Label Singular"
214
  msgstr ""
215
 
216
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
217
- msgid ""
218
- "Set the label in singular to use for each label (the title of portfolio if "
219
- "empty)"
220
  msgstr ""
221
 
222
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
223
- msgid "Label Plural"
224
  msgstr ""
225
 
226
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
227
- msgid ""
228
- "Set the label in plural to use for each label (the title of portfolio if "
229
- "empty)"
230
  msgstr ""
231
 
232
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
@@ -235,10 +234,9 @@ msgstr ""
235
 
236
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
237
  msgid ""
238
- "If you want to use a category section for the portfolio, set the name of "
239
- "taxonomy. Name should be in slug form (must not contain capital letters or "
240
- "spaces) and not more than 32 characters long (database structure "
241
- "restriction)."
242
  msgstr ""
243
 
244
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
@@ -246,7 +244,7 @@ msgid "Taxonomy Rewrite"
246
  msgstr ""
247
 
248
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
249
- msgid "Set the word to use in the URL for each category page."
250
  msgstr ""
251
 
252
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
@@ -254,7 +252,7 @@ msgid "Single layout"
254
  msgstr ""
255
 
256
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
257
- msgid "The layout for single page of this portfolio"
258
  msgstr ""
259
 
260
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
@@ -269,7 +267,7 @@ msgstr ""
269
 
270
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
271
  #, php-format
272
- msgid "Show the frontend of the %s"
273
  msgstr ""
274
 
275
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
@@ -287,8 +285,8 @@ msgstr ""
287
  msgid "Add with multiupload"
288
  msgstr ""
289
 
290
- #: ../plugin-fw/lib/yit-plugin-panel-wc.php:302
291
- msgid "The changes you made will be lost if you navigate away from this page."
292
  msgstr ""
293
 
294
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
@@ -301,74 +299,71 @@ msgstr "Impostazioni"
301
  msgid "YIT Plugins"
302
  msgstr ""
303
 
304
- #: ../plugin-fw/lib/yit-plugin-panel.php:269
305
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
306
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
307
  msgid "Save Changes"
308
  msgstr ""
309
 
310
- #: ../plugin-fw/lib/yit-plugin-panel.php:272
311
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
312
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
313
- msgid ""
314
- "If you continue with this action, you will reset all options are in this "
315
- "page."
316
  msgstr ""
317
 
318
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
319
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
320
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
321
  msgid "Reset Defaults"
322
  msgstr ""
323
 
324
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
325
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
326
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
327
  msgid "Are you sure of it?"
328
  msgstr ""
329
 
330
- #: ../plugin-fw/lib/yit-plugin-panel.php:408
331
- msgid ""
332
- "The element you have written is already exists. Please, add another name."
333
  msgstr ""
334
 
335
- #: ../plugin-fw/lib/yit-plugin-panel.php:409
336
  #, fuzzy
337
  msgid "Settings saved"
338
  msgstr "Impostazioni"
339
 
340
- #: ../plugin-fw/lib/yit-plugin-panel.php:410
341
  #, fuzzy
342
  msgid "Settings reset"
343
  msgstr "Impostazioni"
344
 
345
- #: ../plugin-fw/lib/yit-plugin-panel.php:411
346
  msgid "Element deleted correctly."
347
  msgstr ""
348
 
349
- #: ../plugin-fw/lib/yit-plugin-panel.php:412
350
- #: ../plugin-fw/lib/yit-plugin-panel.php:413
351
  msgid "Element updated correctly."
352
  msgstr ""
353
 
354
- #: ../plugin-fw/lib/yit-plugin-panel.php:414
355
  msgid "Database imported correctly."
356
  msgstr ""
357
 
358
- #: ../plugin-fw/lib/yit-plugin-panel.php:415
359
- msgid "An error encoured during during import. Please try again."
360
  msgstr ""
361
 
362
- #: ../plugin-fw/lib/yit-plugin-panel.php:416
363
- msgid "The file you have insert doesn't valid."
364
  msgstr ""
365
 
366
- #: ../plugin-fw/lib/yit-plugin-panel.php:417
367
- msgid "I'm sorry, the import featured is disabled."
368
  msgstr ""
369
 
370
- #: ../plugin-fw/lib/yit-plugin-panel.php:418
371
- msgid "Sorting done correctly."
372
  msgstr ""
373
 
374
  #: ../plugin-fw/lib/yit-pointers.php:70
@@ -377,10 +372,9 @@ msgstr ""
377
 
378
  #: ../plugin-fw/lib/yit-pointers.php:71
379
  msgid ""
380
- "From now on, you can find all the options of your plugins under the YIT "
381
- "Plugin menu voice.\n"
382
- " For every installation of our new "
383
- "plugins, a new voice will be added to access to the customization settings."
384
  msgstr ""
385
 
386
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
@@ -397,67 +391,67 @@ msgstr ""
397
 
398
  #: ../plugin-fw/lib/yit-pointers.php:85
399
  msgid ""
400
- "From now on, you can find all the options of your plugins under the YIT "
401
- "Plugin menu voice.\n"
402
- " When one of our plugins updates, a new "
403
- "voice will be added to this menu.\n"
404
- " For example, after the update, the "
405
- "options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
406
- "Search, etc.)\n"
407
- " will be removed from the previous "
408
- "location and moved under the YIT Plugin tab."
409
- msgstr ""
410
-
411
- #: ../plugin-fw/lib/yit-upgrade.php:120
412
  msgid "There is a new version of %plugin_name% available."
413
  msgstr ""
414
 
415
- #: ../plugin-fw/lib/yit-upgrade.php:121
416
  msgid "View version %latest% details."
417
  msgstr ""
418
 
419
- #: ../plugin-fw/lib/yit-upgrade.php:122
420
  msgid "Automatic update is unavailable for this plugin,"
421
  msgstr ""
422
 
423
- #: ../plugin-fw/lib/yit-upgrade.php:123
424
  msgid ""
425
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
426
  msgstr ""
427
 
428
- #: ../plugin-fw/lib/yit-upgrade.php:124
429
  msgid "Update now."
430
  msgstr ""
431
 
432
- #: ../plugin-fw/lib/yit-upgrade.php:220
433
  msgid "Yithemes Repository"
434
  msgstr ""
435
 
436
- #: ../plugin-fw/lib/yit-upgrade.php:254
437
  msgid "Invalid URL Provided."
438
  msgstr ""
439
 
440
- #: ../plugin-fw/lib/yit-upgrade.php:267
441
  msgid "Could not create Temporary file."
442
  msgstr ""
443
 
444
- #: ../plugin-fw/lib/yit-upgrade.php:408
445
  #, php-format
446
  msgid ""
447
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
448
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
449
  msgstr ""
450
 
451
- #: ../plugin-fw/lib/yit-upgrade.php:410
452
  #, php-format
453
  msgid ""
454
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
455
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
456
  "have to activate the plugin on a single site of the network to benefit from "
457
- "the automatic updates.</em>"
458
  msgstr ""
459
 
460
- #: ../plugin-fw/lib/yit-upgrade.php:412
461
  #, php-format
462
  msgid ""
463
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -466,7 +460,7 @@ msgid ""
466
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
467
  msgstr ""
468
 
469
- #: ../plugin-fw/lib/yit-upgrade.php:414
470
  #, php-format
471
  msgid ""
472
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -474,62 +468,62 @@ msgid ""
474
  "href=\"%5$s\">update now</a>."
475
  msgstr ""
476
 
477
- #: ../plugin-fw/lib/yit-upgrade.php:487
478
  msgid "You can't update plugins for this site."
479
  msgstr ""
480
 
481
- #: ../plugin-fw/lib/yit-upgrade.php:491
482
  msgid "You do not have sufficient permissions to update plugins for this site."
483
  msgstr ""
484
 
485
- #: ../plugin-fw/lib/yit-upgrade.php:498
486
  msgid "Update Plugin"
487
  msgstr ""
488
 
489
- #: ../plugin-fw/licence/lib/yit-licence.php:154
490
  #, php-format
491
- msgid "%field% field can not be empty"
492
  msgstr ""
493
 
494
- #: ../plugin-fw/licence/lib/yit-licence.php:155
495
- msgid "%field_1% and %field_2% fields can not be empty"
496
  msgstr ""
497
 
498
- #: ../plugin-fw/licence/lib/yit-licence.php:156
499
  msgid "Unable to contact the remote server, please try again later. Thanks!"
500
  msgstr ""
501
 
502
- #: ../plugin-fw/licence/lib/yit-licence.php:538
503
  msgid "Invalid Request"
504
  msgstr ""
505
 
506
- #: ../plugin-fw/licence/lib/yit-licence.php:539
507
  msgid "Invalid licence key"
508
  msgstr ""
509
 
510
- #: ../plugin-fw/licence/lib/yit-licence.php:540
511
- msgid "Software has been deactive"
512
  msgstr ""
513
 
514
- #: ../plugin-fw/licence/lib/yit-licence.php:541
515
  #, fuzzy
516
- msgid "Exceeded maximum number of activations"
517
  msgstr "Numero massimo di risultati"
518
 
519
- #: ../plugin-fw/licence/lib/yit-licence.php:542
520
  msgid "Invalid instance ID"
521
  msgstr ""
522
 
523
- #: ../plugin-fw/licence/lib/yit-licence.php:543
524
  msgid "Invalid security key"
525
  msgstr ""
526
 
527
- #: ../plugin-fw/licence/lib/yit-licence.php:544
528
  msgid "Licence key has expired"
529
  msgstr ""
530
 
531
- #: ../plugin-fw/licence/lib/yit-licence.php:545
532
- msgid "Licence key has be banned"
533
  msgstr ""
534
 
535
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
@@ -547,81 +541,86 @@ msgstr ""
547
  msgid "%s"
548
  msgstr ""
549
 
550
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
551
  msgid "Yithemes Licence Activation"
552
  msgstr ""
553
 
554
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:29
555
  msgid ""
556
  "Have you updated your licenses? Have you asked for an extension? Update "
557
  "information concerning your products."
558
  msgstr ""
559
 
560
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:31
561
  msgid "Update licence information"
562
  msgstr ""
563
 
564
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:41
565
- msgid "To Active"
566
  msgstr ""
567
 
568
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:60
569
  msgid "Activate"
570
  msgstr ""
571
 
572
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
573
  msgid "Activated"
574
  msgstr ""
575
 
576
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:83
577
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:114
578
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:138
579
  msgid "Product Name"
580
  msgstr ""
581
 
582
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:84
583
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:115
584
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:139
585
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
586
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
587
  msgid "Email"
588
  msgstr ""
589
 
590
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:85
591
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:116
592
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:140
593
  msgid "Licence Key"
594
  msgstr ""
595
 
596
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:86
597
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:141
598
  msgid "Expires"
599
  msgstr ""
600
 
601
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:87
602
  msgid "Remaining"
603
  msgstr ""
604
 
605
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:88
606
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:101
607
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:142
608
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:152
609
  msgid "Renew"
610
  msgstr ""
611
 
612
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:99
613
  #, php-format
614
  msgid "%1s out of %2s"
615
  msgstr ""
616
 
617
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
618
  msgid "Banned"
619
  msgstr ""
620
 
621
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
622
  msgid "Expired"
623
  msgstr ""
624
 
 
 
 
 
 
625
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
626
  msgid "No categories."
627
  msgstr ""
@@ -697,8 +696,9 @@ msgstr ""
697
 
698
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
699
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
700
- msgid "Insert the title of field."
701
- msgstr ""
 
702
 
703
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
704
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:275
@@ -708,9 +708,8 @@ msgstr ""
708
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
709
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
710
  msgid ""
711
- "REQUIRED: The identification name of this field, that you can insert into "
712
- "body email configuration. <strong>Note:</strong>Use only lowercase "
713
- "characters and underscores."
714
  msgstr ""
715
 
716
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
@@ -720,8 +719,9 @@ msgstr ""
720
 
721
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
722
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
723
- msgid "Select the type of this field."
724
- msgstr ""
 
725
 
726
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
727
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:297
@@ -730,7 +730,7 @@ msgstr ""
730
 
731
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
732
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
733
- msgid "Select this if you want this field already checked."
734
  msgstr ""
735
 
736
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
@@ -758,7 +758,7 @@ msgstr ""
758
 
759
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
760
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
761
- msgid "Message Error"
762
  msgstr ""
763
 
764
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
@@ -773,12 +773,12 @@ msgstr ""
773
 
774
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
775
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
776
- msgid "Select this if it must be required."
777
  msgstr ""
778
 
779
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
780
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
781
- msgid "Select this if it must be a valid email."
782
  msgstr ""
783
 
784
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
@@ -788,7 +788,7 @@ msgstr ""
788
 
789
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
790
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
791
- msgid "Select this if it's the email where you can reply."
792
  msgstr ""
793
 
794
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
@@ -799,7 +799,7 @@ msgstr ""
799
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
800
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
801
  msgid ""
802
- "Insert an additional class(es) (separateb by comma) for more personalization."
803
  msgstr ""
804
 
805
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
@@ -836,7 +836,7 @@ msgstr ""
836
 
837
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
838
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
839
- msgid "Choose how much long will be the field."
840
  msgstr ""
841
 
842
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
@@ -854,7 +854,7 @@ msgstr ""
854
 
855
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
856
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
857
- msgid "The content of the tab. (HTML is supported)"
858
  msgstr ""
859
 
860
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
@@ -917,10 +917,6 @@ msgstr ""
917
  msgid "No sidebar"
918
  msgstr ""
919
 
920
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
921
- msgid "No sideabr"
922
- msgstr ""
923
-
924
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
925
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
926
  msgid "Right sidebar"
@@ -933,11 +929,11 @@ msgid "Choose a sidebar"
933
  msgstr ""
934
 
935
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
936
- msgid "Sidebar Left"
937
  msgstr ""
938
 
939
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
940
- msgid "Sidebar Right"
941
  msgstr ""
942
 
943
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
@@ -986,70 +982,70 @@ msgstr "Italic"
986
  msgid "Italic bold"
987
  msgstr "Italic bold"
988
 
989
- #: ../plugin-options/settings-options.php:21
990
  msgid "Upgrade to the PREMIUM VERSION"
991
  msgstr ""
992
 
993
- #: ../plugin-options/settings-options.php:25
994
- msgid "Discovery the Advanced Features"
995
  msgstr ""
996
 
997
- #: ../plugin-options/settings-options.php:26
998
  msgid ""
999
  "Upgrade to the PREMIUM VERSION\n"
1000
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
1001
  msgstr ""
1002
 
1003
- #: ../plugin-options/settings-options.php:32
1004
  msgid "Get Support and Pro Features"
1005
  msgstr ""
1006
 
1007
- #: ../plugin-options/settings-options.php:33
1008
  msgid ""
1009
- "Purchasing the premium version of the plugin, you will take advantage of the "
1010
- "advanced features of the product and you will get one year of free updates "
1011
- "and support through our platform available 24h/24."
1012
  msgstr ""
1013
 
1014
- #: ../plugin-options/settings-options.php:43
1015
  #, fuzzy
1016
  msgid "General settings"
1017
  msgstr "Impostazioni Generali"
1018
 
1019
- #: ../plugin-options/settings-options.php:52
1020
  msgid "Search input label"
1021
  msgstr "Etichetta campo di ricerca"
1022
 
1023
- #: ../plugin-options/settings-options.php:54
1024
- #: ../plugin-options/settings-options.php:62
1025
  msgid "Label for Search input field."
1026
  msgstr "Etichetta per il campo di ricerca"
1027
 
1028
- #: ../plugin-options/settings-options.php:56
1029
  msgid "Search for products"
1030
  msgstr "Cerca prodotto"
1031
 
1032
- #: ../plugin-options/settings-options.php:60
1033
  msgid "Search submit label"
1034
  msgstr "Etichetta campo di submit"
1035
 
1036
- #: ../plugin-options/settings-options.php:64
1037
  msgid "Search"
1038
  msgstr "Cerca"
1039
 
1040
- #: ../plugin-options/settings-options.php:68
1041
  msgid "Minimum number of characters"
1042
  msgstr "Numero minimo di caratteri"
1043
 
1044
- #: ../plugin-options/settings-options.php:69
1045
  msgid "Minimum number of characters required to trigger autosuggest."
1046
  msgstr "Numero minimo di caratteri richiesti per avviare la ricerca"
1047
 
1048
- #: ../plugin-options/settings-options.php:82
1049
  msgid "Maximum number of results"
1050
  msgstr "Numero massimo di risultati"
1051
 
1052
- #: ../plugin-options/settings-options.php:83
1053
  msgid "Maximum number of results showed within the autosuggest box."
1054
  msgstr "Numero massimo di risultati mostrati nel box di ricerca"
1055
 
@@ -1080,6 +1076,3 @@ msgstr "Titolo:"
1080
 
1081
  #~ msgid "Minutes"
1082
  #~ msgstr "Minuti"
1083
-
1084
- #~ msgid "Select a font family"
1085
- #~ msgstr "Seleziona un font"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search\n"
4
+ "POT-Creation-Date: 2015-03-02 10:11+0100\n"
5
+ "PO-Revision-Date: 2015-03-02 10:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
35
  msgid "Plugin Documentation"
36
  msgstr "Impostazioni"
37
 
38
+ #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:26
39
+ #: ../plugin-options/settings-options.php:33
40
  #, fuzzy
41
  msgid "YITH WooCommerce Ajax Search"
42
  msgstr "YITH WooCommerce Ajax Product Search"
70
  msgid "No results"
71
  msgstr "Nessun risultato"
72
 
73
+ #: ../init.php:39
74
  msgid ""
75
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
76
  "Woocommerce in order to work."
77
  msgstr ""
78
 
79
+ #: ../init.php:52
80
  msgid ""
81
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
82
  "you are using the premium one."
199
  msgstr ""
200
 
201
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
202
+ msgid "Layout for this "
203
  msgstr ""
204
 
205
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
207
  msgstr ""
208
 
209
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
210
+ msgid ""
211
+ "Univocal identification name in the URL for each product (slug from post if "
212
+ "empty)"
213
  msgstr ""
214
 
215
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
216
+ msgid "Label in Singular"
217
  msgstr ""
218
 
219
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
220
+ msgid "Set a label in singular (title of portfolio if empty)"
 
 
221
  msgstr ""
222
 
223
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
224
+ msgid "Label in Plural"
225
  msgstr ""
226
 
227
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
228
+ msgid "Set a label in plural (title of portfolio if empty)"
 
 
229
  msgstr ""
230
 
231
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
234
 
235
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
236
  msgid ""
237
+ "If you want to use categories in the portfolio, set a name for taxonomy. "
238
+ "Name should be a slug (must not contain capital letters nor spaces) and must "
239
+ "not be more than 32 characters long (database structure restriction)."
 
240
  msgstr ""
241
 
242
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
244
  msgstr ""
245
 
246
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
247
+ msgid "Set the word for each category page URL."
248
  msgstr ""
249
 
250
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
252
  msgstr ""
253
 
254
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
255
+ msgid "Layout for single page of this portfolio"
256
  msgstr ""
257
 
258
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
267
 
268
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
269
  #, php-format
270
+ msgid "Show frontend of the %s"
271
  msgstr ""
272
 
273
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
285
  msgid "Add with multiupload"
286
  msgstr ""
287
 
288
+ #: ../plugin-fw/lib/yit-plugin-panel-wc.php:325
289
+ msgid "The changes you made will be lost if you leave this page."
290
  msgstr ""
291
 
292
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
299
  msgid "YIT Plugins"
300
  msgstr ""
301
 
302
+ #: ../plugin-fw/lib/yit-plugin-panel.php:271
303
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
304
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
305
  msgid "Save Changes"
306
  msgstr ""
307
 
308
+ #: ../plugin-fw/lib/yit-plugin-panel.php:274
309
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
310
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
311
+ msgid "If you go on with this action, you will reset all options in this page."
 
 
312
  msgstr ""
313
 
314
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
315
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
316
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
317
  msgid "Reset Defaults"
318
  msgstr ""
319
 
320
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
321
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
322
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
323
  msgid "Are you sure of it?"
324
  msgstr ""
325
 
326
+ #: ../plugin-fw/lib/yit-plugin-panel.php:410
327
+ msgid "The element you have written already exists. Please, add another name."
 
328
  msgstr ""
329
 
330
+ #: ../plugin-fw/lib/yit-plugin-panel.php:411
331
  #, fuzzy
332
  msgid "Settings saved"
333
  msgstr "Impostazioni"
334
 
335
+ #: ../plugin-fw/lib/yit-plugin-panel.php:412
336
  #, fuzzy
337
  msgid "Settings reset"
338
  msgstr "Impostazioni"
339
 
340
+ #: ../plugin-fw/lib/yit-plugin-panel.php:413
341
  msgid "Element deleted correctly."
342
  msgstr ""
343
 
344
+ #: ../plugin-fw/lib/yit-plugin-panel.php:414
345
+ #: ../plugin-fw/lib/yit-plugin-panel.php:415
346
  msgid "Element updated correctly."
347
  msgstr ""
348
 
349
+ #: ../plugin-fw/lib/yit-plugin-panel.php:416
350
  msgid "Database imported correctly."
351
  msgstr ""
352
 
353
+ #: ../plugin-fw/lib/yit-plugin-panel.php:417
354
+ msgid "An error has occurred during import. Please try again."
355
  msgstr ""
356
 
357
+ #: ../plugin-fw/lib/yit-plugin-panel.php:418
358
+ msgid "The file inserted is not valid."
359
  msgstr ""
360
 
361
+ #: ../plugin-fw/lib/yit-plugin-panel.php:419
362
+ msgid "Sorry, import is disabled."
363
  msgstr ""
364
 
365
+ #: ../plugin-fw/lib/yit-plugin-panel.php:420
366
+ msgid "Sorting successful."
367
  msgstr ""
368
 
369
  #: ../plugin-fw/lib/yit-pointers.php:70
372
 
373
  #: ../plugin-fw/lib/yit-pointers.php:71
374
  msgid ""
375
+ "From now on, you can find all plugin options in YIT Plugin menu.\n"
376
+ " For each plugin installed, "
377
+ "customization settings will be available as a new entry in YIT Plugin menu."
 
378
  msgstr ""
379
 
380
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
391
 
392
  #: ../plugin-fw/lib/yit-pointers.php:85
393
  msgid ""
394
+ "From now on, you can find all the options of your plugins in YIT Plugin "
395
+ "menu.\n"
396
+ " Any time one of our plugins is updated, "
397
+ "a new entry will be added to this menu.\n"
398
+ " For example, after update, plugin "
399
+ "options (such for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, "
400
+ "etc.)\n"
401
+ " will be moved from previous location to "
402
+ "YIT Plugin tab."
403
+ msgstr ""
404
+
405
+ #: ../plugin-fw/lib/yit-upgrade.php:119
406
  msgid "There is a new version of %plugin_name% available."
407
  msgstr ""
408
 
409
+ #: ../plugin-fw/lib/yit-upgrade.php:120
410
  msgid "View version %latest% details."
411
  msgstr ""
412
 
413
+ #: ../plugin-fw/lib/yit-upgrade.php:121
414
  msgid "Automatic update is unavailable for this plugin,"
415
  msgstr ""
416
 
417
+ #: ../plugin-fw/lib/yit-upgrade.php:122
418
  msgid ""
419
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
420
  msgstr ""
421
 
422
+ #: ../plugin-fw/lib/yit-upgrade.php:123
423
  msgid "Update now."
424
  msgstr ""
425
 
426
+ #: ../plugin-fw/lib/yit-upgrade.php:226
427
  msgid "Yithemes Repository"
428
  msgstr ""
429
 
430
+ #: ../plugin-fw/lib/yit-upgrade.php:260
431
  msgid "Invalid URL Provided."
432
  msgstr ""
433
 
434
+ #: ../plugin-fw/lib/yit-upgrade.php:273
435
  msgid "Could not create Temporary file."
436
  msgstr ""
437
 
438
+ #: ../plugin-fw/lib/yit-upgrade.php:414
439
  #, php-format
440
  msgid ""
441
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
442
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
443
  msgstr ""
444
 
445
+ #: ../plugin-fw/lib/yit-upgrade.php:416
446
  #, php-format
447
  msgid ""
448
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
449
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
450
  "have to activate the plugin on a single site of the network to benefit from "
451
+ "automatic updates.</em>"
452
  msgstr ""
453
 
454
+ #: ../plugin-fw/lib/yit-upgrade.php:418
455
  #, php-format
456
  msgid ""
457
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
460
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
461
  msgstr ""
462
 
463
+ #: ../plugin-fw/lib/yit-upgrade.php:420
464
  #, php-format
465
  msgid ""
466
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
468
  "href=\"%5$s\">update now</a>."
469
  msgstr ""
470
 
471
+ #: ../plugin-fw/lib/yit-upgrade.php:493
472
  msgid "You can't update plugins for this site."
473
  msgstr ""
474
 
475
+ #: ../plugin-fw/lib/yit-upgrade.php:497
476
  msgid "You do not have sufficient permissions to update plugins for this site."
477
  msgstr ""
478
 
479
+ #: ../plugin-fw/lib/yit-upgrade.php:504
480
  msgid "Update Plugin"
481
  msgstr ""
482
 
483
+ #: ../plugin-fw/licence/lib/yit-licence.php:148
484
  #, php-format
485
+ msgid "%field% field cannot be empty"
486
  msgstr ""
487
 
488
+ #: ../plugin-fw/licence/lib/yit-licence.php:149
489
+ msgid "%field_1% and %field_2% fields cannot be empty"
490
  msgstr ""
491
 
492
+ #: ../plugin-fw/licence/lib/yit-licence.php:150
493
  msgid "Unable to contact the remote server, please try again later. Thanks!"
494
  msgstr ""
495
 
496
+ #: ../plugin-fw/licence/lib/yit-licence.php:529
497
  msgid "Invalid Request"
498
  msgstr ""
499
 
500
+ #: ../plugin-fw/licence/lib/yit-licence.php:530
501
  msgid "Invalid licence key"
502
  msgstr ""
503
 
504
+ #: ../plugin-fw/licence/lib/yit-licence.php:531
505
+ msgid "Software has been deactivated"
506
  msgstr ""
507
 
508
+ #: ../plugin-fw/licence/lib/yit-licence.php:532
509
  #, fuzzy
510
+ msgid "Maximum number of activations exceeded"
511
  msgstr "Numero massimo di risultati"
512
 
513
+ #: ../plugin-fw/licence/lib/yit-licence.php:533
514
  msgid "Invalid instance ID"
515
  msgstr ""
516
 
517
+ #: ../plugin-fw/licence/lib/yit-licence.php:534
518
  msgid "Invalid security key"
519
  msgstr ""
520
 
521
+ #: ../plugin-fw/licence/lib/yit-licence.php:535
522
  msgid "Licence key has expired"
523
  msgstr ""
524
 
525
+ #: ../plugin-fw/licence/lib/yit-licence.php:536
526
+ msgid "Licence key has been banned"
527
  msgstr ""
528
 
529
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
541
  msgid "%s"
542
  msgstr ""
543
 
544
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
545
  msgid "Yithemes Licence Activation"
546
  msgstr ""
547
 
548
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
549
  msgid ""
550
  "Have you updated your licenses? Have you asked for an extension? Update "
551
  "information concerning your products."
552
  msgstr ""
553
 
554
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
555
  msgid "Update licence information"
556
  msgstr ""
557
 
558
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
559
+ msgid "Products to be activated"
560
  msgstr ""
561
 
562
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
563
  msgid "Activate"
564
  msgstr ""
565
 
566
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
567
  msgid "Activated"
568
  msgstr ""
569
 
570
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
571
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
572
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
573
  msgid "Product Name"
574
  msgstr ""
575
 
576
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
577
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
578
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
579
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
580
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
581
  msgid "Email"
582
  msgstr ""
583
 
584
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
585
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
586
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
587
  msgid "Licence Key"
588
  msgstr ""
589
 
590
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
591
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
592
  msgid "Expires"
593
  msgstr ""
594
 
595
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
596
  msgid "Remaining"
597
  msgstr ""
598
 
599
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
600
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
601
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
602
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
603
  msgid "Renew"
604
  msgstr ""
605
 
606
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
607
  #, php-format
608
  msgid "%1s out of %2s"
609
  msgstr ""
610
 
611
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
612
  msgid "Banned"
613
  msgstr ""
614
 
615
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
616
  msgid "Expired"
617
  msgstr ""
618
 
619
+ #: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
620
+ #, fuzzy
621
+ msgid "Search for a product"
622
+ msgstr "Cerca prodotto"
623
+
624
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
625
  msgid "No categories."
626
  msgstr ""
696
 
697
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
698
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
699
+ #, fuzzy
700
+ msgid "Insert the title for the field."
701
+ msgstr "Seleziona un font"
702
 
703
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
704
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:275
708
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
709
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
710
  msgid ""
711
+ "REQUIRED: Field identification name to be entered into email body. "
712
+ "<strong>Note:</strong>Use only lowercase characters and underscores."
 
713
  msgstr ""
714
 
715
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
719
 
720
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
721
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
722
+ #, fuzzy
723
+ msgid "Select the type for this field."
724
+ msgstr "Seleziona un font"
725
 
726
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
727
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:297
730
 
731
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
732
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
733
+ msgid "Select this option if you want this field appears as already checked."
734
  msgstr ""
735
 
736
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
758
 
759
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
760
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
761
+ msgid "Error Message"
762
  msgstr ""
763
 
764
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
773
 
774
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
775
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
776
+ msgid "Select this option if it must be required."
777
  msgstr ""
778
 
779
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
780
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
781
+ msgid "Select this option if the email must be valid."
782
  msgstr ""
783
 
784
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
788
 
789
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
790
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
791
+ msgid "Select this if it is the email you can reply to."
792
  msgstr ""
793
 
794
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
799
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
800
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
801
  msgid ""
802
+ "Insert additional class(es) (separated by commas) for more personalization."
803
  msgstr ""
804
 
805
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
836
 
837
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
838
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
839
+ msgid "Set field length."
840
  msgstr ""
841
 
842
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
854
 
855
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
856
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
857
+ msgid "Content of the tab. (HTML is supported)"
858
  msgstr ""
859
 
860
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
917
  msgid "No sidebar"
918
  msgstr ""
919
 
 
 
 
 
920
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
921
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
922
  msgid "Right sidebar"
929
  msgstr ""
930
 
931
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
932
+ msgid "Left Sidebar"
933
  msgstr ""
934
 
935
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
936
+ msgid "Right Sidebar"
937
  msgstr ""
938
 
939
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
982
  msgid "Italic bold"
983
  msgstr "Italic bold"
984
 
985
+ #: ../plugin-options/settings-options.php:23
986
  msgid "Upgrade to the PREMIUM VERSION"
987
  msgstr ""
988
 
989
+ #: ../plugin-options/settings-options.php:27
990
+ msgid "Discover the Advanced Features"
991
  msgstr ""
992
 
993
+ #: ../plugin-options/settings-options.php:28
994
  msgid ""
995
  "Upgrade to the PREMIUM VERSION\n"
996
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
997
  msgstr ""
998
 
999
+ #: ../plugin-options/settings-options.php:35
1000
  msgid "Get Support and Pro Features"
1001
  msgstr ""
1002
 
1003
+ #: ../plugin-options/settings-options.php:36
1004
  msgid ""
1005
+ "By purchasing the premium version of the plugin, you will take advantage of "
1006
+ "the advanced features of the product and you will get one year of free "
1007
+ "updates and support through our platform available 24h/24."
1008
  msgstr ""
1009
 
1010
+ #: ../plugin-options/settings-options.php:46
1011
  #, fuzzy
1012
  msgid "General settings"
1013
  msgstr "Impostazioni Generali"
1014
 
1015
+ #: ../plugin-options/settings-options.php:55
1016
  msgid "Search input label"
1017
  msgstr "Etichetta campo di ricerca"
1018
 
1019
+ #: ../plugin-options/settings-options.php:57
1020
+ #: ../plugin-options/settings-options.php:65
1021
  msgid "Label for Search input field."
1022
  msgstr "Etichetta per il campo di ricerca"
1023
 
1024
+ #: ../plugin-options/settings-options.php:59
1025
  msgid "Search for products"
1026
  msgstr "Cerca prodotto"
1027
 
1028
+ #: ../plugin-options/settings-options.php:63
1029
  msgid "Search submit label"
1030
  msgstr "Etichetta campo di submit"
1031
 
1032
+ #: ../plugin-options/settings-options.php:67
1033
  msgid "Search"
1034
  msgstr "Cerca"
1035
 
1036
+ #: ../plugin-options/settings-options.php:71
1037
  msgid "Minimum number of characters"
1038
  msgstr "Numero minimo di caratteri"
1039
 
1040
+ #: ../plugin-options/settings-options.php:72
1041
  msgid "Minimum number of characters required to trigger autosuggest."
1042
  msgstr "Numero minimo di caratteri richiesti per avviare la ricerca"
1043
 
1044
+ #: ../plugin-options/settings-options.php:85
1045
  msgid "Maximum number of results"
1046
  msgstr "Numero massimo di risultati"
1047
 
1048
+ #: ../plugin-options/settings-options.php:86
1049
  msgid "Maximum number of results showed within the autosuggest box."
1050
  msgstr "Numero massimo di risultati mostrati nel box di ricerca"
1051
 
1076
 
1077
  #~ msgid "Minutes"
1078
  #~ msgstr "Minuti"
 
 
 
languages/yit-pt_PT.mo ADDED
Binary file
languages/yit-pt_PT.po ADDED
@@ -0,0 +1,1077 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: YITH WooCommerce Ajax Search\n"
4
+ "POT-Creation-Date: 2015-03-02 10:11+0100\n"
5
+ "PO-Revision-Date: 2015-03-02 10:11+0100\n"
6
+ "Last-Translator: Luis Maia <lmsm76@gmail.com>\n"
7
+ "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
8
+ "Language: it_IT\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
+ "X-Poedit-KeywordsList: __;_e;_x\n"
14
+ "X-Poedit-Basepath: ./\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../class.yith-wcas-admin.php:106 ../class.yith-wcas-admin.php:128
18
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
19
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
20
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
21
+ #: ../plugin-fw/lib/yit-plugin-panel.php:62
22
+ msgid "Settings"
23
+ msgstr "Definições"
24
+
25
+ #: ../class.yith-wcas-admin.php:107 ../class.yith-wcas-admin.php:129
26
+ msgid "Premium Version"
27
+ msgstr ""
28
+
29
+ #: ../class.yith-wcas-admin.php:135 ../class.yith-wcas-admin.php:136
30
+ msgid "Ajax Search"
31
+ msgstr "Ajax Search"
32
+
33
+ #: ../class.yith-wcas-admin.php:190
34
+ msgid "Plugin Documentation"
35
+ msgstr ""
36
+
37
+ #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:26
38
+ #: ../plugin-options/settings-options.php:33
39
+ #, fuzzy
40
+ msgid "YITH WooCommerce Ajax Search"
41
+ msgstr "YITH WooCommerce Ajax Product Search"
42
+
43
+ #: ../class.yith-wcas-admin.php:208
44
+ msgid ""
45
+ "In the YIT Plugin tab you can find the YITH WooCommerce Ajax Search "
46
+ "options.\n"
47
+ "With this menu, you can access to all the settings of our plugins that you "
48
+ "have activated.\n"
49
+ "YITH WooCommerce Ajax Search is available in an outstanding PREMIUM version "
50
+ "with many new options, <a href=\""
51
+ msgstr ""
52
+
53
+ #: ../class.yith-wcas-admin.php:221
54
+ #, fuzzy
55
+ msgid "YITH WooCommerce Ajax Search Updated"
56
+ msgstr "YITH WooCommerce Ajax Product Search"
57
+
58
+ #: ../class.yith-wcas-admin.php:222
59
+ msgid ""
60
+ "From now on, you can find all the options of YITH WooCommerce Ajax Search "
61
+ "Updated under YIT Plugin -> Ajax Search instead of WooCommerce -> Settings -"
62
+ "> Ajax Search, as in the previous version.\n"
63
+ "When one of our plugins updates, a new voice will be added to this menu.\n"
64
+ "YITH WooCommerce Ajax Search renovates with new available options, discover "
65
+ "the <a href=\""
66
+ msgstr ""
67
+
68
+ #: ../class.yith-wcas.php:168
69
+ msgid "No results"
70
+ msgstr "Sem resultados"
71
+
72
+ #: ../init.php:39
73
+ msgid ""
74
+ "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
75
+ "Woocommerce in order to work."
76
+ msgstr ""
77
+
78
+ #: ../init.php:52
79
+ msgid ""
80
+ "You can't activate the free version of YITH WooCommerce Ajax Search while "
81
+ "you are using the premium one."
82
+ msgstr ""
83
+
84
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:460
85
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:574
86
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:719
87
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1632
88
+ #, php-format
89
+ msgid "Add %s"
90
+ msgstr ""
91
+
92
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:461
93
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:575
94
+ #, php-format
95
+ msgid "Add New %s"
96
+ msgstr ""
97
+
98
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:462
99
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:576
100
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1267
101
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1304
102
+ #, php-format
103
+ msgid "Edit %s"
104
+ msgstr ""
105
+
106
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:463
107
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:577
108
+ #, php-format
109
+ msgid "New %s"
110
+ msgstr ""
111
+
112
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:464
113
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:578
114
+ #, php-format
115
+ msgid "All %s"
116
+ msgstr ""
117
+
118
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:465
119
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:579
120
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1251
121
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1305
122
+ #, php-format
123
+ msgid "View %s"
124
+ msgstr ""
125
+
126
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:466
127
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:580
128
+ #, fuzzy, php-format
129
+ msgid "Search %s"
130
+ msgstr "Procurar"
131
+
132
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:467
133
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:581
134
+ #, php-format
135
+ msgid "No %s found"
136
+ msgstr ""
137
+
138
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:468
139
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:582
140
+ #, php-format
141
+ msgid "No %s found in Trash"
142
+ msgstr ""
143
+
144
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:625
145
+ #, php-format
146
+ msgid "%s Categories"
147
+ msgstr ""
148
+
149
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:626
150
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:635
151
+ msgid "Category"
152
+ msgstr ""
153
+
154
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:627
155
+ #, fuzzy
156
+ msgid "Search Categories"
157
+ msgstr "Procurar por:"
158
+
159
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:628
160
+ msgid "All Categories"
161
+ msgstr ""
162
+
163
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:629
164
+ msgid "Parent Category"
165
+ msgstr ""
166
+
167
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:630
168
+ msgid "Parent Category:"
169
+ msgstr ""
170
+
171
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:631
172
+ msgid "Edit Category"
173
+ msgstr ""
174
+
175
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:632
176
+ msgid "Update Category"
177
+ msgstr ""
178
+
179
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:633
180
+ msgid "Add New Category"
181
+ msgstr ""
182
+
183
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:634
184
+ msgid "New Category Name"
185
+ msgstr ""
186
+
187
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:724
188
+ msgid "Categories"
189
+ msgstr ""
190
+
191
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1042
192
+ #, fuzzy, php-format
193
+ msgid "%s Settings"
194
+ msgstr "Definições"
195
+
196
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1051
197
+ msgid "Type"
198
+ msgstr ""
199
+
200
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
201
+ msgid "Layout for this "
202
+ msgstr ""
203
+
204
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
205
+ msgid "Rewrite"
206
+ msgstr ""
207
+
208
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
209
+ msgid ""
210
+ "Univocal identification name in the URL for each product (slug from post if "
211
+ "empty)"
212
+ msgstr ""
213
+
214
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
215
+ msgid "Label in Singular"
216
+ msgstr ""
217
+
218
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
219
+ msgid "Set a label in singular (title of portfolio if empty)"
220
+ msgstr ""
221
+
222
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
223
+ msgid "Label in Plural"
224
+ msgstr ""
225
+
226
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
227
+ msgid "Set a label in plural (title of portfolio if empty)"
228
+ msgstr ""
229
+
230
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
231
+ msgid "Taxonomy"
232
+ msgstr ""
233
+
234
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
235
+ msgid ""
236
+ "If you want to use categories in the portfolio, set a name for taxonomy. "
237
+ "Name should be a slug (must not contain capital letters nor spaces) and must "
238
+ "not be more than 32 characters long (database structure restriction)."
239
+ msgstr ""
240
+
241
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
242
+ msgid "Taxonomy Rewrite"
243
+ msgstr ""
244
+
245
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
246
+ msgid "Set the word for each category page URL."
247
+ msgstr ""
248
+
249
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
250
+ msgid "Single layout"
251
+ msgstr ""
252
+
253
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
254
+ msgid "Layout for single page of this portfolio"
255
+ msgstr ""
256
+
257
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
258
+ #, fuzzy
259
+ msgid "layout settings"
260
+ msgstr "Definições"
261
+
262
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1222
263
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1235
264
+ msgid "Quick links"
265
+ msgstr ""
266
+
267
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
268
+ #, php-format
269
+ msgid "Show frontend of the %s"
270
+ msgstr ""
271
+
272
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
273
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:46
274
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:90
275
+ msgid "Name"
276
+ msgstr ""
277
+
278
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
279
+ #, php-format
280
+ msgid "Add %s by images"
281
+ msgstr ""
282
+
283
+ #: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
284
+ msgid "Add with multiupload"
285
+ msgstr ""
286
+
287
+ #: ../plugin-fw/lib/yit-plugin-panel-wc.php:325
288
+ msgid "The changes you made will be lost if you leave this page."
289
+ msgstr ""
290
+
291
+ #: ../plugin-fw/lib/yit-plugin-panel.php:61
292
+ #, fuzzy
293
+ msgid "Plugin Settings"
294
+ msgstr "Definições"
295
+
296
+ #: ../plugin-fw/lib/yit-plugin-panel.php:92
297
+ #: ../plugin-fw/lib/yit-plugin-subpanel.php:101
298
+ msgid "YIT Plugins"
299
+ msgstr ""
300
+
301
+ #: ../plugin-fw/lib/yit-plugin-panel.php:271
302
+ #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
303
+ #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
304
+ msgid "Save Changes"
305
+ msgstr ""
306
+
307
+ #: ../plugin-fw/lib/yit-plugin-panel.php:274
308
+ #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
309
+ #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
310
+ msgid "If you go on with this action, you will reset all options in this page."
311
+ msgstr ""
312
+
313
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
314
+ #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
315
+ #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
316
+ msgid "Reset Defaults"
317
+ msgstr ""
318
+
319
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
320
+ #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
321
+ #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
322
+ msgid "Are you sure of it?"
323
+ msgstr ""
324
+
325
+ #: ../plugin-fw/lib/yit-plugin-panel.php:410
326
+ msgid "The element you have written already exists. Please, add another name."
327
+ msgstr ""
328
+
329
+ #: ../plugin-fw/lib/yit-plugin-panel.php:411
330
+ #, fuzzy
331
+ msgid "Settings saved"
332
+ msgstr "Definições"
333
+
334
+ #: ../plugin-fw/lib/yit-plugin-panel.php:412
335
+ #, fuzzy
336
+ msgid "Settings reset"
337
+ msgstr "Definições"
338
+
339
+ #: ../plugin-fw/lib/yit-plugin-panel.php:413
340
+ msgid "Element deleted correctly."
341
+ msgstr ""
342
+
343
+ #: ../plugin-fw/lib/yit-plugin-panel.php:414
344
+ #: ../plugin-fw/lib/yit-plugin-panel.php:415
345
+ msgid "Element updated correctly."
346
+ msgstr ""
347
+
348
+ #: ../plugin-fw/lib/yit-plugin-panel.php:416
349
+ msgid "Database imported correctly."
350
+ msgstr ""
351
+
352
+ #: ../plugin-fw/lib/yit-plugin-panel.php:417
353
+ msgid "An error has occurred during import. Please try again."
354
+ msgstr ""
355
+
356
+ #: ../plugin-fw/lib/yit-plugin-panel.php:418
357
+ msgid "The file inserted is not valid."
358
+ msgstr ""
359
+
360
+ #: ../plugin-fw/lib/yit-plugin-panel.php:419
361
+ msgid "Sorry, import is disabled."
362
+ msgstr ""
363
+
364
+ #: ../plugin-fw/lib/yit-plugin-panel.php:420
365
+ msgid "Sorting successful."
366
+ msgstr ""
367
+
368
+ #: ../plugin-fw/lib/yit-pointers.php:70
369
+ msgid "Plugins Activated"
370
+ msgstr ""
371
+
372
+ #: ../plugin-fw/lib/yit-pointers.php:71
373
+ msgid ""
374
+ "From now on, you can find all plugin options in YIT Plugin menu.\n"
375
+ " For each plugin installed, "
376
+ "customization settings will be available as a new entry in YIT Plugin menu."
377
+ msgstr ""
378
+
379
+ #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
380
+ msgid "Discover all our plugins available on:"
381
+ msgstr ""
382
+
383
+ #: ../plugin-fw/lib/yit-pointers.php:74 ../plugin-fw/lib/yit-pointers.php:90
384
+ msgid "and"
385
+ msgstr ""
386
+
387
+ #: ../plugin-fw/lib/yit-pointers.php:84
388
+ msgid "Plugins Upgraded"
389
+ msgstr ""
390
+
391
+ #: ../plugin-fw/lib/yit-pointers.php:85
392
+ msgid ""
393
+ "From now on, you can find all the options of your plugins in YIT Plugin "
394
+ "menu.\n"
395
+ " Any time one of our plugins is updated, "
396
+ "a new entry will be added to this menu.\n"
397
+ " For example, after update, plugin "
398
+ "options (such for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, "
399
+ "etc.)\n"
400
+ " will be moved from previous location to "
401
+ "YIT Plugin tab."
402
+ msgstr ""
403
+
404
+ #: ../plugin-fw/lib/yit-upgrade.php:119
405
+ msgid "There is a new version of %plugin_name% available."
406
+ msgstr ""
407
+
408
+ #: ../plugin-fw/lib/yit-upgrade.php:120
409
+ msgid "View version %latest% details."
410
+ msgstr ""
411
+
412
+ #: ../plugin-fw/lib/yit-upgrade.php:121
413
+ msgid "Automatic update is unavailable for this plugin,"
414
+ msgstr ""
415
+
416
+ #: ../plugin-fw/lib/yit-upgrade.php:122
417
+ msgid ""
418
+ "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
419
+ msgstr ""
420
+
421
+ #: ../plugin-fw/lib/yit-upgrade.php:123
422
+ msgid "Update now."
423
+ msgstr ""
424
+
425
+ #: ../plugin-fw/lib/yit-upgrade.php:226
426
+ msgid "Yithemes Repository"
427
+ msgstr ""
428
+
429
+ #: ../plugin-fw/lib/yit-upgrade.php:260
430
+ msgid "Invalid URL Provided."
431
+ msgstr ""
432
+
433
+ #: ../plugin-fw/lib/yit-upgrade.php:273
434
+ msgid "Could not create Temporary file."
435
+ msgstr ""
436
+
437
+ #: ../plugin-fw/lib/yit-upgrade.php:414
438
+ #, php-format
439
+ msgid ""
440
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
441
+ "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
442
+ msgstr ""
443
+
444
+ #: ../plugin-fw/lib/yit-upgrade.php:416
445
+ #, php-format
446
+ msgid ""
447
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
448
+ "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
449
+ "have to activate the plugin on a single site of the network to benefit from "
450
+ "automatic updates.</em>"
451
+ msgstr ""
452
+
453
+ #: ../plugin-fw/lib/yit-upgrade.php:418
454
+ #, php-format
455
+ msgid ""
456
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
457
+ "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
458
+ "<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
459
+ "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
460
+ msgstr ""
461
+
462
+ #: ../plugin-fw/lib/yit-upgrade.php:420
463
+ #, php-format
464
+ msgid ""
465
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
466
+ "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a "
467
+ "href=\"%5$s\">update now</a>."
468
+ msgstr ""
469
+
470
+ #: ../plugin-fw/lib/yit-upgrade.php:493
471
+ msgid "You can't update plugins for this site."
472
+ msgstr ""
473
+
474
+ #: ../plugin-fw/lib/yit-upgrade.php:497
475
+ msgid "You do not have sufficient permissions to update plugins for this site."
476
+ msgstr ""
477
+
478
+ #: ../plugin-fw/lib/yit-upgrade.php:504
479
+ msgid "Update Plugin"
480
+ msgstr ""
481
+
482
+ #: ../plugin-fw/licence/lib/yit-licence.php:148
483
+ #, php-format
484
+ msgid "%field% field cannot be empty"
485
+ msgstr ""
486
+
487
+ #: ../plugin-fw/licence/lib/yit-licence.php:149
488
+ msgid "%field_1% and %field_2% fields cannot be empty"
489
+ msgstr ""
490
+
491
+ #: ../plugin-fw/licence/lib/yit-licence.php:150
492
+ msgid "Unable to contact the remote server, please try again later. Thanks!"
493
+ msgstr ""
494
+
495
+ #: ../plugin-fw/licence/lib/yit-licence.php:529
496
+ msgid "Invalid Request"
497
+ msgstr ""
498
+
499
+ #: ../plugin-fw/licence/lib/yit-licence.php:530
500
+ msgid "Invalid licence key"
501
+ msgstr ""
502
+
503
+ #: ../plugin-fw/licence/lib/yit-licence.php:531
504
+ msgid "Software has been deactivated"
505
+ msgstr ""
506
+
507
+ #: ../plugin-fw/licence/lib/yit-licence.php:532
508
+ #, fuzzy
509
+ msgid "Maximum number of activations exceeded"
510
+ msgstr "Numero máximo de resultados"
511
+
512
+ #: ../plugin-fw/licence/lib/yit-licence.php:533
513
+ msgid "Invalid instance ID"
514
+ msgstr ""
515
+
516
+ #: ../plugin-fw/licence/lib/yit-licence.php:534
517
+ msgid "Invalid security key"
518
+ msgstr ""
519
+
520
+ #: ../plugin-fw/licence/lib/yit-licence.php:535
521
+ msgid "Licence key has expired"
522
+ msgstr ""
523
+
524
+ #: ../plugin-fw/licence/lib/yit-licence.php:536
525
+ msgid "Licence key has been banned"
526
+ msgstr ""
527
+
528
+ #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
529
+ #: ../plugin-fw/licence/lib/yit-plugin-licence.php:64
530
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:63
531
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:64
532
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:106
533
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:107
534
+ msgid "Licence Activation"
535
+ msgstr ""
536
+
537
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:114
538
+ #: ../plugin-fw/licence/lib/yit-theme-licence.php:115
539
+ #, php-format
540
+ msgid "%s"
541
+ msgstr ""
542
+
543
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
544
+ msgid "Yithemes Licence Activation"
545
+ msgstr ""
546
+
547
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
548
+ msgid ""
549
+ "Have you updated your licenses? Have you asked for an extension? Update "
550
+ "information concerning your products."
551
+ msgstr ""
552
+
553
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
554
+ msgid "Update licence information"
555
+ msgstr ""
556
+
557
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
558
+ msgid "Products to be activated"
559
+ msgstr ""
560
+
561
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
562
+ msgid "Activate"
563
+ msgstr ""
564
+
565
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
566
+ msgid "Activated"
567
+ msgstr ""
568
+
569
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
570
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
571
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
572
+ msgid "Product Name"
573
+ msgstr ""
574
+
575
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
576
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
577
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
578
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
579
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
580
+ msgid "Email"
581
+ msgstr ""
582
+
583
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
584
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
585
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
586
+ msgid "Licence Key"
587
+ msgstr ""
588
+
589
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
590
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
591
+ msgid "Expires"
592
+ msgstr ""
593
+
594
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
595
+ msgid "Remaining"
596
+ msgstr ""
597
+
598
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
599
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
600
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
601
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
602
+ msgid "Renew"
603
+ msgstr ""
604
+
605
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
606
+ #, php-format
607
+ msgid "%1s out of %2s"
608
+ msgstr ""
609
+
610
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
611
+ msgid "Banned"
612
+ msgstr ""
613
+
614
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
615
+ msgid "Expired"
616
+ msgstr ""
617
+
618
+ #: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
619
+ #, fuzzy
620
+ msgid "Search for a product"
621
+ msgstr "Procurar por produtos"
622
+
623
+ #: ../plugin-fw/templates/metaboxes/types/categories.php:36
624
+ msgid "No categories."
625
+ msgstr ""
626
+
627
+ #: ../plugin-fw/templates/metaboxes/types/categories.php:42
628
+ msgid "+ Add New Category"
629
+ msgstr ""
630
+
631
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:5
632
+ msgid "Text Input"
633
+ msgstr ""
634
+
635
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:6
636
+ msgid "Checkbox"
637
+ msgstr ""
638
+
639
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:7
640
+ #, fuzzy
641
+ msgid "Select"
642
+ msgstr "Selecione uma data"
643
+
644
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:8
645
+ msgid "Textarea"
646
+ msgstr ""
647
+
648
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:9
649
+ msgid "Radio Input"
650
+ msgstr ""
651
+
652
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:10
653
+ msgid "Password Field"
654
+ msgstr ""
655
+
656
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:11
657
+ #, fuzzy
658
+ msgid "File Upload"
659
+ msgstr "Carregar"
660
+
661
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:45
662
+ msgid "Theme Icon"
663
+ msgstr ""
664
+
665
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:46
666
+ msgid "Custom Icon"
667
+ msgstr ""
668
+
669
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:47
670
+ #: ../plugin-fw/templates/metaboxes/types/responsivesliders.php:24
671
+ msgid "None"
672
+ msgstr ""
673
+
674
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:57
675
+ msgid "Add field"
676
+ msgstr ""
677
+
678
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:66
679
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:258
680
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:37
681
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:82
682
+ msgid "Remove"
683
+ msgstr ""
684
+
685
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:67
686
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:259
687
+ #, fuzzy
688
+ msgid "Click to toggle"
689
+ msgstr "Clicar para pré-visualizar"
690
+
691
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:74
692
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:266
693
+ msgid "Title Field"
694
+ msgstr ""
695
+
696
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
697
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
698
+ #, fuzzy
699
+ msgid "Insert the title for the field."
700
+ msgstr "Selecione uma fonte"
701
+
702
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
703
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:275
704
+ msgid "Data Name"
705
+ msgstr ""
706
+
707
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
708
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
709
+ msgid ""
710
+ "REQUIRED: Field identification name to be entered into email body. "
711
+ "<strong>Note:</strong>Use only lowercase characters and underscores."
712
+ msgstr ""
713
+
714
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
715
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:284
716
+ msgid "Type field"
717
+ msgstr ""
718
+
719
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
720
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
721
+ #, fuzzy
722
+ msgid "Select the type for this field."
723
+ msgstr "Selecione uma fonte"
724
+
725
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
726
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:297
727
+ msgid "Checked"
728
+ msgstr ""
729
+
730
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
731
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
732
+ msgid "Select this option if you want this field appears as already checked."
733
+ msgstr ""
734
+
735
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
736
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:306
737
+ msgid "Add options "
738
+ msgstr ""
739
+
740
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:115
741
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:307
742
+ msgid "Add option"
743
+ msgstr ""
744
+
745
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:118
746
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:310
747
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:432
748
+ #, fuzzy
749
+ msgid "Selected"
750
+ msgstr "Selecione uma data"
751
+
752
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:121
753
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:313
754
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:432
755
+ msgid "Delete option"
756
+ msgstr ""
757
+
758
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
759
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
760
+ msgid "Error Message"
761
+ msgstr ""
762
+
763
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
764
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:323
765
+ msgid "Insert the error message for validation."
766
+ msgstr ""
767
+
768
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:136
769
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:328
770
+ msgid "Required"
771
+ msgstr ""
772
+
773
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
774
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
775
+ msgid "Select this option if it must be required."
776
+ msgstr ""
777
+
778
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
779
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
780
+ msgid "Select this option if the email must be valid."
781
+ msgstr ""
782
+
783
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
784
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:346
785
+ msgid "Reply To"
786
+ msgstr ""
787
+
788
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
789
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
790
+ msgid "Select this if it is the email you can reply to."
791
+ msgstr ""
792
+
793
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
794
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:355
795
+ msgid "Class"
796
+ msgstr ""
797
+
798
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
799
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
800
+ msgid ""
801
+ "Insert additional class(es) (separated by commas) for more personalization."
802
+ msgstr ""
803
+
804
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
805
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:364
806
+ msgid "Icon"
807
+ msgstr ""
808
+
809
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:200
810
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:388
811
+ #: ../plugin-fw/templates/metaboxes/types/icon-list.php:69
812
+ #: ../plugin-fw/templates/metaboxes/types/select-icon.php:33
813
+ #: ../plugin-fw/templates/metaboxes/types/upload.php:21
814
+ #: ../plugin-fw/templates/panel/types/upload.php:31
815
+ #: ../plugin-fw/templates/panel/woocommerce/woocommerce-upload.php:35
816
+ msgid "Upload"
817
+ msgstr "Carregar"
818
+
819
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:206
820
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:394
821
+ #: ../plugin-fw/templates/metaboxes/types/icon-list.php:75
822
+ #: ../plugin-fw/templates/metaboxes/types/select-icon.php:39
823
+ msgid "Image preview"
824
+ msgstr ""
825
+
826
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:214
827
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:402
828
+ msgid "Insert an icon for more personalization."
829
+ msgstr ""
830
+
831
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:219
832
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:406
833
+ msgid "Width"
834
+ msgstr ""
835
+
836
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
837
+ #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
838
+ msgid "Set field length."
839
+ msgstr ""
840
+
841
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
842
+ msgid "Close all"
843
+ msgstr ""
844
+
845
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
846
+ msgid "Expand all"
847
+ msgstr ""
848
+
849
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:52
850
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:95
851
+ msgid "Value"
852
+ msgstr ""
853
+
854
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
855
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
856
+ msgid "Content of the tab. (HTML is supported)"
857
+ msgstr ""
858
+
859
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
860
+ msgid "Add custom product tab"
861
+ msgstr ""
862
+
863
+ #: ../plugin-fw/templates/metaboxes/types/customtabs.php:107
864
+ msgid "Do you want to remove the custom tab?"
865
+ msgstr ""
866
+
867
+ #: ../plugin-fw/templates/metaboxes/types/icon-list.php:89
868
+ #, php-format
869
+ msgid "(Default: %s <img src=\"%s\"/>)"
870
+ msgstr ""
871
+
872
+ #: ../plugin-fw/templates/metaboxes/types/icon-list.php:91
873
+ #, php-format
874
+ msgid "(Default: <i %s></i> )"
875
+ msgstr ""
876
+
877
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:35
878
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
879
+ #: ../plugin-fw/templates/metaboxes/types/images.php:33
880
+ #: ../plugin-fw/templates/metaboxes/types/images.php:59
881
+ msgid "Delete image"
882
+ msgstr ""
883
+
884
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
885
+ msgid "Add Images to Gallery"
886
+ msgstr ""
887
+
888
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
889
+ msgid "Add to gallery"
890
+ msgstr ""
891
+
892
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
893
+ msgid "Add images"
894
+ msgstr ""
895
+
896
+ #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
897
+ msgid "Delete"
898
+ msgstr ""
899
+
900
+ #: ../plugin-fw/templates/metaboxes/types/images.php:37
901
+ msgid "Upload new images"
902
+ msgstr ""
903
+
904
+ #: ../plugin-fw/templates/metaboxes/types/images.php:70
905
+ msgid "Are you sure you want to remove this image?"
906
+ msgstr ""
907
+
908
+ #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:25
909
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:36
910
+ msgid "Left sidebar"
911
+ msgstr ""
912
+
913
+ #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
914
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:42
915
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:45
916
+ msgid "No sidebar"
917
+ msgstr ""
918
+
919
+ #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
920
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
921
+ msgid "Right sidebar"
922
+ msgstr ""
923
+
924
+ #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:34
925
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:53
926
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:64
927
+ msgid "Choose a sidebar"
928
+ msgstr ""
929
+
930
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
931
+ msgid "Left Sidebar"
932
+ msgstr ""
933
+
934
+ #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
935
+ msgid "Right Sidebar"
936
+ msgstr ""
937
+
938
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:42
939
+ msgid "px"
940
+ msgstr "px"
941
+
942
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:43
943
+ msgid "em"
944
+ msgstr "em"
945
+
946
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:44
947
+ msgid "pt"
948
+ msgstr "pt"
949
+
950
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:45
951
+ msgid "rem"
952
+ msgstr "rem"
953
+
954
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:59
955
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:153
956
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:217
957
+ msgid "Web fonts"
958
+ msgstr ""
959
+
960
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:71
961
+ msgid "Google fonts"
962
+ msgstr ""
963
+
964
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:96
965
+ msgid "Regular"
966
+ msgstr "Regular"
967
+
968
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:97
969
+ msgid "Bold"
970
+ msgstr "Bold"
971
+
972
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:98
973
+ msgid "Extra bold"
974
+ msgstr "Extra bold"
975
+
976
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:99
977
+ msgid "Italic"
978
+ msgstr "Italic"
979
+
980
+ #: ../plugin-fw/templates/metaboxes/types/typography.php:100
981
+ msgid "Italic bold"
982
+ msgstr "Italic bold"
983
+
984
+ #: ../plugin-options/settings-options.php:23
985
+ msgid "Upgrade to the PREMIUM VERSION"
986
+ msgstr ""
987
+
988
+ #: ../plugin-options/settings-options.php:27
989
+ msgid "Discover the Advanced Features"
990
+ msgstr ""
991
+
992
+ #: ../plugin-options/settings-options.php:28
993
+ msgid ""
994
+ "Upgrade to the PREMIUM VERSION\n"
995
+ "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
996
+ msgstr ""
997
+
998
+ #: ../plugin-options/settings-options.php:35
999
+ msgid "Get Support and Pro Features"
1000
+ msgstr ""
1001
+
1002
+ #: ../plugin-options/settings-options.php:36
1003
+ msgid ""
1004
+ "By purchasing the premium version of the plugin, you will take advantage of "
1005
+ "the advanced features of the product and you will get one year of free "
1006
+ "updates and support through our platform available 24h/24."
1007
+ msgstr ""
1008
+
1009
+ #: ../plugin-options/settings-options.php:46
1010
+ #, fuzzy
1011
+ msgid "General settings"
1012
+ msgstr "Definições Gerais"
1013
+
1014
+ #: ../plugin-options/settings-options.php:55
1015
+ msgid "Search input label"
1016
+ msgstr "Etiqueta Entrada Dados"
1017
+
1018
+ #: ../plugin-options/settings-options.php:57
1019
+ #: ../plugin-options/settings-options.php:65
1020
+ msgid "Label for Search input field."
1021
+ msgstr "Etiqueta para campo introdução Procura Dados."
1022
+
1023
+ #: ../plugin-options/settings-options.php:59
1024
+ msgid "Search for products"
1025
+ msgstr "Procurar por produtos"
1026
+
1027
+ #: ../plugin-options/settings-options.php:63
1028
+ msgid "Search submit label"
1029
+ msgstr "Etiqueta do botão submeter"
1030
+
1031
+ #: ../plugin-options/settings-options.php:67
1032
+ msgid "Search"
1033
+ msgstr "Procurar"
1034
+
1035
+ #: ../plugin-options/settings-options.php:71
1036
+ msgid "Minimum number of characters"
1037
+ msgstr "Numero minimo caracteres"
1038
+
1039
+ #: ../plugin-options/settings-options.php:72
1040
+ msgid "Minimum number of characters required to trigger autosuggest."
1041
+ msgstr "Numero de caracteres necessário para ativar a autosugestão"
1042
+
1043
+ #: ../plugin-options/settings-options.php:85
1044
+ msgid "Maximum number of results"
1045
+ msgstr "Numero máximo de resultados"
1046
+
1047
+ #: ../plugin-options/settings-options.php:86
1048
+ msgid "Maximum number of results showed within the autosuggest box."
1049
+ msgstr "Numero máximo de resultados a mostrar na caixa de autosugestão"
1050
+
1051
+ #: ../templates/yith-woocommerce-ajax-search.php:20
1052
+ msgid "Search for:"
1053
+ msgstr "Procurar por:"
1054
+
1055
+ #: ../widgets/class.yith-wcas-ajax-search.php:29
1056
+ msgid "An Ajax Search box for products only."
1057
+ msgstr "Uma caixa de Procura somente de produtos em Ajax"
1058
+
1059
+ #: ../widgets/class.yith-wcas-ajax-search.php:31
1060
+ msgid "YITH WooCommerce Ajax Product Search"
1061
+ msgstr "YITH WooCommerce Ajax Product Search"
1062
+
1063
+ #: ../widgets/class.yith-wcas-ajax-search.php:90
1064
+ msgid "Title:"
1065
+ msgstr "Titulo:"
1066
+
1067
+ #~ msgid "Label for Search submit field."
1068
+ #~ msgstr "Etiqueta para o campo do botão Procurar"
1069
+
1070
+ #~ msgid "Docs"
1071
+ #~ msgstr "Documentação"
1072
+
1073
+ #~ msgid "Hours"
1074
+ #~ msgstr "Horas"
1075
+
1076
+ #~ msgid "Minutes"
1077
+ #~ msgstr "Minutos"
languages/yit.pot CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search Free\n"
4
- "POT-Creation-Date: 2015-01-29 15:45+0100\n"
5
- "PO-Revision-Date: 2015-01-29 15:45+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -35,7 +35,8 @@ msgstr ""
35
  msgid "Plugin Documentation"
36
  msgstr ""
37
 
38
- #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:24
 
39
  msgid "YITH WooCommerce Ajax Search"
40
  msgstr ""
41
 
@@ -67,13 +68,13 @@ msgstr ""
67
  msgid "No results"
68
  msgstr ""
69
 
70
- #: ../init.php:38
71
  msgid ""
72
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
73
  "Woocommerce in order to work."
74
  msgstr ""
75
 
76
- #: ../init.php:51
77
  msgid ""
78
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
79
  "you are using the premium one."
@@ -195,7 +196,7 @@ msgid "Type"
195
  msgstr ""
196
 
197
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
198
- msgid "The layout for this "
199
  msgstr ""
200
 
201
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
@@ -203,27 +204,25 @@ msgid "Rewrite"
203
  msgstr ""
204
 
205
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
206
- msgid "The word used for the URL of each project (the slug of post if empty)"
 
 
207
  msgstr ""
208
 
209
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
210
- msgid "Label Singular"
211
  msgstr ""
212
 
213
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
214
- msgid ""
215
- "Set the label in singular to use for each label (the title of portfolio if "
216
- "empty)"
217
  msgstr ""
218
 
219
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
220
- msgid "Label Plural"
221
  msgstr ""
222
 
223
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
224
- msgid ""
225
- "Set the label in plural to use for each label (the title of portfolio if "
226
- "empty)"
227
  msgstr ""
228
 
229
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
@@ -232,10 +231,9 @@ msgstr ""
232
 
233
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
234
  msgid ""
235
- "If you want to use a category section for the portfolio, set the name of "
236
- "taxonomy. Name should be in slug form (must not contain capital letters or "
237
- "spaces) and not more than 32 characters long (database structure "
238
- "restriction)."
239
  msgstr ""
240
 
241
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
@@ -243,7 +241,7 @@ msgid "Taxonomy Rewrite"
243
  msgstr ""
244
 
245
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
246
- msgid "Set the word to use in the URL for each category page."
247
  msgstr ""
248
 
249
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
@@ -251,7 +249,7 @@ msgid "Single layout"
251
  msgstr ""
252
 
253
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
254
- msgid "The layout for single page of this portfolio"
255
  msgstr ""
256
 
257
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
@@ -265,7 +263,7 @@ msgstr ""
265
 
266
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
267
  #, php-format
268
- msgid "Show the frontend of the %s"
269
  msgstr ""
270
 
271
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
@@ -283,8 +281,8 @@ msgstr ""
283
  msgid "Add with multiupload"
284
  msgstr ""
285
 
286
- #: ../plugin-fw/lib/yit-plugin-panel-wc.php:302
287
- msgid "The changes you made will be lost if you navigate away from this page."
288
  msgstr ""
289
 
290
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
@@ -296,72 +294,69 @@ msgstr ""
296
  msgid "YIT Plugins"
297
  msgstr ""
298
 
299
- #: ../plugin-fw/lib/yit-plugin-panel.php:269
300
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
301
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
302
  msgid "Save Changes"
303
  msgstr ""
304
 
305
- #: ../plugin-fw/lib/yit-plugin-panel.php:272
306
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
307
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
308
- msgid ""
309
- "If you continue with this action, you will reset all options are in this "
310
- "page."
311
  msgstr ""
312
 
313
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
314
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
315
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
316
  msgid "Reset Defaults"
317
  msgstr ""
318
 
319
- #: ../plugin-fw/lib/yit-plugin-panel.php:274
320
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
321
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
322
  msgid "Are you sure of it?"
323
  msgstr ""
324
 
325
- #: ../plugin-fw/lib/yit-plugin-panel.php:408
326
- msgid ""
327
- "The element you have written is already exists. Please, add another name."
328
  msgstr ""
329
 
330
- #: ../plugin-fw/lib/yit-plugin-panel.php:409
331
  msgid "Settings saved"
332
  msgstr ""
333
 
334
- #: ../plugin-fw/lib/yit-plugin-panel.php:410
335
  msgid "Settings reset"
336
  msgstr ""
337
 
338
- #: ../plugin-fw/lib/yit-plugin-panel.php:411
339
  msgid "Element deleted correctly."
340
  msgstr ""
341
 
342
- #: ../plugin-fw/lib/yit-plugin-panel.php:412
343
- #: ../plugin-fw/lib/yit-plugin-panel.php:413
344
  msgid "Element updated correctly."
345
  msgstr ""
346
 
347
- #: ../plugin-fw/lib/yit-plugin-panel.php:414
348
  msgid "Database imported correctly."
349
  msgstr ""
350
 
351
- #: ../plugin-fw/lib/yit-plugin-panel.php:415
352
- msgid "An error encoured during during import. Please try again."
353
  msgstr ""
354
 
355
- #: ../plugin-fw/lib/yit-plugin-panel.php:416
356
- msgid "The file you have insert doesn't valid."
357
  msgstr ""
358
 
359
- #: ../plugin-fw/lib/yit-plugin-panel.php:417
360
- msgid "I'm sorry, the import featured is disabled."
361
  msgstr ""
362
 
363
- #: ../plugin-fw/lib/yit-plugin-panel.php:418
364
- msgid "Sorting done correctly."
365
  msgstr ""
366
 
367
  #: ../plugin-fw/lib/yit-pointers.php:70
@@ -370,10 +365,9 @@ msgstr ""
370
 
371
  #: ../plugin-fw/lib/yit-pointers.php:71
372
  msgid ""
373
- "From now on, you can find all the options of your plugins under the YIT "
374
- "Plugin menu voice.\n"
375
- " For every installation of our new "
376
- "plugins, a new voice will be added to access to the customization settings."
377
  msgstr ""
378
 
379
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
@@ -390,67 +384,67 @@ msgstr ""
390
 
391
  #: ../plugin-fw/lib/yit-pointers.php:85
392
  msgid ""
393
- "From now on, you can find all the options of your plugins under the YIT "
394
- "Plugin menu voice.\n"
395
- " When one of our plugins updates, a new "
396
- "voice will be added to this menu.\n"
397
- " For example, after the update, the "
398
- "options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
399
- "Search, etc.)\n"
400
- " will be removed from the previous "
401
- "location and moved under the YIT Plugin tab."
402
- msgstr ""
403
-
404
- #: ../plugin-fw/lib/yit-upgrade.php:120
405
  msgid "There is a new version of %plugin_name% available."
406
  msgstr ""
407
 
408
- #: ../plugin-fw/lib/yit-upgrade.php:121
409
  msgid "View version %latest% details."
410
  msgstr ""
411
 
412
- #: ../plugin-fw/lib/yit-upgrade.php:122
413
  msgid "Automatic update is unavailable for this plugin,"
414
  msgstr ""
415
 
416
- #: ../plugin-fw/lib/yit-upgrade.php:123
417
  msgid ""
418
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
419
  msgstr ""
420
 
421
- #: ../plugin-fw/lib/yit-upgrade.php:124
422
  msgid "Update now."
423
  msgstr ""
424
 
425
- #: ../plugin-fw/lib/yit-upgrade.php:220
426
  msgid "Yithemes Repository"
427
  msgstr ""
428
 
429
- #: ../plugin-fw/lib/yit-upgrade.php:254
430
  msgid "Invalid URL Provided."
431
  msgstr ""
432
 
433
- #: ../plugin-fw/lib/yit-upgrade.php:267
434
  msgid "Could not create Temporary file."
435
  msgstr ""
436
 
437
- #: ../plugin-fw/lib/yit-upgrade.php:408
438
  #, php-format
439
  msgid ""
440
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
441
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
442
  msgstr ""
443
 
444
- #: ../plugin-fw/lib/yit-upgrade.php:410
445
  #, php-format
446
  msgid ""
447
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
448
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
449
  "have to activate the plugin on a single site of the network to benefit from "
450
- "the automatic updates.</em>"
451
  msgstr ""
452
 
453
- #: ../plugin-fw/lib/yit-upgrade.php:412
454
  #, php-format
455
  msgid ""
456
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -459,7 +453,7 @@ msgid ""
459
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
460
  msgstr ""
461
 
462
- #: ../plugin-fw/lib/yit-upgrade.php:414
463
  #, php-format
464
  msgid ""
465
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
@@ -467,61 +461,61 @@ msgid ""
467
  "href=\"%5$s\">update now</a>."
468
  msgstr ""
469
 
470
- #: ../plugin-fw/lib/yit-upgrade.php:487
471
  msgid "You can't update plugins for this site."
472
  msgstr ""
473
 
474
- #: ../plugin-fw/lib/yit-upgrade.php:491
475
  msgid "You do not have sufficient permissions to update plugins for this site."
476
  msgstr ""
477
 
478
- #: ../plugin-fw/lib/yit-upgrade.php:498
479
  msgid "Update Plugin"
480
  msgstr ""
481
 
482
- #: ../plugin-fw/licence/lib/yit-licence.php:154
483
  #, php-format
484
- msgid "%field% field can not be empty"
485
  msgstr ""
486
 
487
- #: ../plugin-fw/licence/lib/yit-licence.php:155
488
- msgid "%field_1% and %field_2% fields can not be empty"
489
  msgstr ""
490
 
491
- #: ../plugin-fw/licence/lib/yit-licence.php:156
492
  msgid "Unable to contact the remote server, please try again later. Thanks!"
493
  msgstr ""
494
 
495
- #: ../plugin-fw/licence/lib/yit-licence.php:538
496
  msgid "Invalid Request"
497
  msgstr ""
498
 
499
- #: ../plugin-fw/licence/lib/yit-licence.php:539
500
  msgid "Invalid licence key"
501
  msgstr ""
502
 
503
- #: ../plugin-fw/licence/lib/yit-licence.php:540
504
- msgid "Software has been deactive"
505
  msgstr ""
506
 
507
- #: ../plugin-fw/licence/lib/yit-licence.php:541
508
- msgid "Exceeded maximum number of activations"
509
  msgstr ""
510
 
511
- #: ../plugin-fw/licence/lib/yit-licence.php:542
512
  msgid "Invalid instance ID"
513
  msgstr ""
514
 
515
- #: ../plugin-fw/licence/lib/yit-licence.php:543
516
  msgid "Invalid security key"
517
  msgstr ""
518
 
519
- #: ../plugin-fw/licence/lib/yit-licence.php:544
520
  msgid "Licence key has expired"
521
  msgstr ""
522
 
523
- #: ../plugin-fw/licence/lib/yit-licence.php:545
524
- msgid "Licence key has be banned"
525
  msgstr ""
526
 
527
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
@@ -539,81 +533,85 @@ msgstr ""
539
  msgid "%s"
540
  msgstr ""
541
 
542
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
543
  msgid "Yithemes Licence Activation"
544
  msgstr ""
545
 
546
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:29
547
  msgid ""
548
  "Have you updated your licenses? Have you asked for an extension? Update "
549
  "information concerning your products."
550
  msgstr ""
551
 
552
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:31
553
  msgid "Update licence information"
554
  msgstr ""
555
 
556
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:41
557
- msgid "To Active"
558
  msgstr ""
559
 
560
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:60
561
  msgid "Activate"
562
  msgstr ""
563
 
564
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
565
  msgid "Activated"
566
  msgstr ""
567
 
568
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:83
569
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:114
570
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:138
571
  msgid "Product Name"
572
  msgstr ""
573
 
574
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:84
575
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:115
576
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:139
577
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
578
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
579
  msgid "Email"
580
  msgstr ""
581
 
582
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:85
583
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:116
584
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:140
585
  msgid "Licence Key"
586
  msgstr ""
587
 
588
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:86
589
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:141
590
  msgid "Expires"
591
  msgstr ""
592
 
593
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:87
594
  msgid "Remaining"
595
  msgstr ""
596
 
597
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:88
598
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:101
599
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:142
600
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:152
601
  msgid "Renew"
602
  msgstr ""
603
 
604
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:99
605
  #, php-format
606
  msgid "%1s out of %2s"
607
  msgstr ""
608
 
609
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
610
  msgid "Banned"
611
  msgstr ""
612
 
613
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
614
  msgid "Expired"
615
  msgstr ""
616
 
 
 
 
 
617
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
618
  msgid "No categories."
619
  msgstr ""
@@ -686,7 +684,7 @@ msgstr ""
686
 
687
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
688
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
689
- msgid "Insert the title of field."
690
  msgstr ""
691
 
692
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
@@ -697,9 +695,8 @@ msgstr ""
697
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
698
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
699
  msgid ""
700
- "REQUIRED: The identification name of this field, that you can insert into "
701
- "body email configuration. <strong>Note:</strong>Use only lowercase "
702
- "characters and underscores."
703
  msgstr ""
704
 
705
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
@@ -709,7 +706,7 @@ msgstr ""
709
 
710
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
711
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
712
- msgid "Select the type of this field."
713
  msgstr ""
714
 
715
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
@@ -719,7 +716,7 @@ msgstr ""
719
 
720
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
721
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
722
- msgid "Select this if you want this field already checked."
723
  msgstr ""
724
 
725
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
@@ -746,7 +743,7 @@ msgstr ""
746
 
747
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
748
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
749
- msgid "Message Error"
750
  msgstr ""
751
 
752
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
@@ -761,12 +758,12 @@ msgstr ""
761
 
762
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
763
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
764
- msgid "Select this if it must be required."
765
  msgstr ""
766
 
767
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
768
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
769
- msgid "Select this if it must be a valid email."
770
  msgstr ""
771
 
772
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
@@ -776,7 +773,7 @@ msgstr ""
776
 
777
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
778
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
779
- msgid "Select this if it's the email where you can reply."
780
  msgstr ""
781
 
782
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
@@ -787,7 +784,7 @@ msgstr ""
787
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
788
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
789
  msgid ""
790
- "Insert an additional class(es) (separateb by comma) for more personalization."
791
  msgstr ""
792
 
793
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
@@ -824,7 +821,7 @@ msgstr ""
824
 
825
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
826
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
827
- msgid "Choose how much long will be the field."
828
  msgstr ""
829
 
830
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
@@ -842,7 +839,7 @@ msgstr ""
842
 
843
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
844
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
845
- msgid "The content of the tab. (HTML is supported)"
846
  msgstr ""
847
 
848
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
@@ -905,10 +902,6 @@ msgstr ""
905
  msgid "No sidebar"
906
  msgstr ""
907
 
908
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
909
- msgid "No sideabr"
910
- msgstr ""
911
-
912
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
913
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
914
  msgid "Right sidebar"
@@ -921,11 +914,11 @@ msgid "Choose a sidebar"
921
  msgstr ""
922
 
923
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
924
- msgid "Sidebar Left"
925
  msgstr ""
926
 
927
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
928
- msgid "Sidebar Right"
929
  msgstr ""
930
 
931
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
@@ -974,69 +967,69 @@ msgstr ""
974
  msgid "Italic bold"
975
  msgstr ""
976
 
977
- #: ../plugin-options/settings-options.php:21
978
  msgid "Upgrade to the PREMIUM VERSION"
979
  msgstr ""
980
 
981
- #: ../plugin-options/settings-options.php:25
982
- msgid "Discovery the Advanced Features"
983
  msgstr ""
984
 
985
- #: ../plugin-options/settings-options.php:26
986
  msgid ""
987
  "Upgrade to the PREMIUM VERSION\n"
988
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
989
  msgstr ""
990
 
991
- #: ../plugin-options/settings-options.php:32
992
  msgid "Get Support and Pro Features"
993
  msgstr ""
994
 
995
- #: ../plugin-options/settings-options.php:33
996
  msgid ""
997
- "Purchasing the premium version of the plugin, you will take advantage of the "
998
- "advanced features of the product and you will get one year of free updates "
999
- "and support through our platform available 24h/24."
1000
  msgstr ""
1001
 
1002
- #: ../plugin-options/settings-options.php:43
1003
  msgid "General settings"
1004
  msgstr ""
1005
 
1006
- #: ../plugin-options/settings-options.php:52
1007
  msgid "Search input label"
1008
  msgstr ""
1009
 
1010
- #: ../plugin-options/settings-options.php:54
1011
- #: ../plugin-options/settings-options.php:62
1012
  msgid "Label for Search input field."
1013
  msgstr ""
1014
 
1015
- #: ../plugin-options/settings-options.php:56
1016
  msgid "Search for products"
1017
  msgstr ""
1018
 
1019
- #: ../plugin-options/settings-options.php:60
1020
  msgid "Search submit label"
1021
  msgstr ""
1022
 
1023
- #: ../plugin-options/settings-options.php:64
1024
  msgid "Search"
1025
  msgstr ""
1026
 
1027
- #: ../plugin-options/settings-options.php:68
1028
  msgid "Minimum number of characters"
1029
  msgstr ""
1030
 
1031
- #: ../plugin-options/settings-options.php:69
1032
  msgid "Minimum number of characters required to trigger autosuggest."
1033
  msgstr ""
1034
 
1035
- #: ../plugin-options/settings-options.php:82
1036
  msgid "Maximum number of results"
1037
  msgstr ""
1038
 
1039
- #: ../plugin-options/settings-options.php:83
1040
  msgid "Maximum number of results showed within the autosuggest box."
1041
  msgstr ""
1042
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Search Free\n"
4
+ "POT-Creation-Date: 2015-03-02 10:10+0100\n"
5
+ "PO-Revision-Date: 2015-03-02 10:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Yithemes <plugins@yithemes.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
35
  msgid "Plugin Documentation"
36
  msgstr ""
37
 
38
+ #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:26
39
+ #: ../plugin-options/settings-options.php:33
40
  msgid "YITH WooCommerce Ajax Search"
41
  msgstr ""
42
 
68
  msgid "No results"
69
  msgstr ""
70
 
71
+ #: ../init.php:39
72
  msgid ""
73
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
74
  "Woocommerce in order to work."
75
  msgstr ""
76
 
77
+ #: ../init.php:52
78
  msgid ""
79
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
80
  "you are using the premium one."
196
  msgstr ""
197
 
198
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
199
+ msgid "Layout for this "
200
  msgstr ""
201
 
202
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
204
  msgstr ""
205
 
206
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
207
+ msgid ""
208
+ "Univocal identification name in the URL for each product (slug from post if "
209
+ "empty)"
210
  msgstr ""
211
 
212
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
213
+ msgid "Label in Singular"
214
  msgstr ""
215
 
216
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
217
+ msgid "Set a label in singular (title of portfolio if empty)"
 
 
218
  msgstr ""
219
 
220
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
221
+ msgid "Label in Plural"
222
  msgstr ""
223
 
224
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
225
+ msgid "Set a label in plural (title of portfolio if empty)"
 
 
226
  msgstr ""
227
 
228
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
231
 
232
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
233
  msgid ""
234
+ "If you want to use categories in the portfolio, set a name for taxonomy. "
235
+ "Name should be a slug (must not contain capital letters nor spaces) and must "
236
+ "not be more than 32 characters long (database structure restriction)."
 
237
  msgstr ""
238
 
239
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
241
  msgstr ""
242
 
243
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
244
+ msgid "Set the word for each category page URL."
245
  msgstr ""
246
 
247
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
249
  msgstr ""
250
 
251
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
252
+ msgid "Layout for single page of this portfolio"
253
  msgstr ""
254
 
255
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
263
 
264
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
265
  #, php-format
266
+ msgid "Show frontend of the %s"
267
  msgstr ""
268
 
269
  #: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
281
  msgid "Add with multiupload"
282
  msgstr ""
283
 
284
+ #: ../plugin-fw/lib/yit-plugin-panel-wc.php:325
285
+ msgid "The changes you made will be lost if you leave this page."
286
  msgstr ""
287
 
288
  #: ../plugin-fw/lib/yit-plugin-panel.php:61
294
  msgid "YIT Plugins"
295
  msgstr ""
296
 
297
+ #: ../plugin-fw/lib/yit-plugin-panel.php:271
298
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:142
299
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
300
  msgid "Save Changes"
301
  msgstr ""
302
 
303
+ #: ../plugin-fw/lib/yit-plugin-panel.php:274
304
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
305
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
306
+ msgid "If you go on with this action, you will reset all options in this page."
 
 
307
  msgstr ""
308
 
309
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
310
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
311
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
312
  msgid "Reset Defaults"
313
  msgstr ""
314
 
315
+ #: ../plugin-fw/lib/yit-plugin-panel.php:276
316
  #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
317
  #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
318
  msgid "Are you sure of it?"
319
  msgstr ""
320
 
321
+ #: ../plugin-fw/lib/yit-plugin-panel.php:410
322
+ msgid "The element you have written already exists. Please, add another name."
 
323
  msgstr ""
324
 
325
+ #: ../plugin-fw/lib/yit-plugin-panel.php:411
326
  msgid "Settings saved"
327
  msgstr ""
328
 
329
+ #: ../plugin-fw/lib/yit-plugin-panel.php:412
330
  msgid "Settings reset"
331
  msgstr ""
332
 
333
+ #: ../plugin-fw/lib/yit-plugin-panel.php:413
334
  msgid "Element deleted correctly."
335
  msgstr ""
336
 
337
+ #: ../plugin-fw/lib/yit-plugin-panel.php:414
338
+ #: ../plugin-fw/lib/yit-plugin-panel.php:415
339
  msgid "Element updated correctly."
340
  msgstr ""
341
 
342
+ #: ../plugin-fw/lib/yit-plugin-panel.php:416
343
  msgid "Database imported correctly."
344
  msgstr ""
345
 
346
+ #: ../plugin-fw/lib/yit-plugin-panel.php:417
347
+ msgid "An error has occurred during import. Please try again."
348
  msgstr ""
349
 
350
+ #: ../plugin-fw/lib/yit-plugin-panel.php:418
351
+ msgid "The file inserted is not valid."
352
  msgstr ""
353
 
354
+ #: ../plugin-fw/lib/yit-plugin-panel.php:419
355
+ msgid "Sorry, import is disabled."
356
  msgstr ""
357
 
358
+ #: ../plugin-fw/lib/yit-plugin-panel.php:420
359
+ msgid "Sorting successful."
360
  msgstr ""
361
 
362
  #: ../plugin-fw/lib/yit-pointers.php:70
365
 
366
  #: ../plugin-fw/lib/yit-pointers.php:71
367
  msgid ""
368
+ "From now on, you can find all plugin options in YIT Plugin menu.\n"
369
+ " For each plugin installed, "
370
+ "customization settings will be available as a new entry in YIT Plugin menu."
 
371
  msgstr ""
372
 
373
  #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
384
 
385
  #: ../plugin-fw/lib/yit-pointers.php:85
386
  msgid ""
387
+ "From now on, you can find all the options of your plugins in YIT Plugin "
388
+ "menu.\n"
389
+ " Any time one of our plugins is updated, "
390
+ "a new entry will be added to this menu.\n"
391
+ " For example, after update, plugin "
392
+ "options (such for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, "
393
+ "etc.)\n"
394
+ " will be moved from previous location to "
395
+ "YIT Plugin tab."
396
+ msgstr ""
397
+
398
+ #: ../plugin-fw/lib/yit-upgrade.php:119
399
  msgid "There is a new version of %plugin_name% available."
400
  msgstr ""
401
 
402
+ #: ../plugin-fw/lib/yit-upgrade.php:120
403
  msgid "View version %latest% details."
404
  msgstr ""
405
 
406
+ #: ../plugin-fw/lib/yit-upgrade.php:121
407
  msgid "Automatic update is unavailable for this plugin,"
408
  msgstr ""
409
 
410
+ #: ../plugin-fw/lib/yit-upgrade.php:122
411
  msgid ""
412
  "please <a href=\"%activate_link%\"> activate </a> your copy of %plugin_name%."
413
  msgstr ""
414
 
415
+ #: ../plugin-fw/lib/yit-upgrade.php:123
416
  msgid "Update now."
417
  msgstr ""
418
 
419
+ #: ../plugin-fw/lib/yit-upgrade.php:226
420
  msgid "Yithemes Repository"
421
  msgstr ""
422
 
423
+ #: ../plugin-fw/lib/yit-upgrade.php:260
424
  msgid "Invalid URL Provided."
425
  msgstr ""
426
 
427
+ #: ../plugin-fw/lib/yit-upgrade.php:273
428
  msgid "Could not create Temporary file."
429
  msgstr ""
430
 
431
+ #: ../plugin-fw/lib/yit-upgrade.php:414
432
  #, php-format
433
  msgid ""
434
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
435
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
436
  msgstr ""
437
 
438
+ #: ../plugin-fw/lib/yit-upgrade.php:416
439
  #, php-format
440
  msgid ""
441
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
442
  "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
443
  "have to activate the plugin on a single site of the network to benefit from "
444
+ "automatic updates.</em>"
445
  msgstr ""
446
 
447
+ #: ../plugin-fw/lib/yit-upgrade.php:418
448
  #, php-format
449
  msgid ""
450
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
453
  "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
454
  msgstr ""
455
 
456
+ #: ../plugin-fw/lib/yit-upgrade.php:420
457
  #, php-format
458
  msgid ""
459
  "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
461
  "href=\"%5$s\">update now</a>."
462
  msgstr ""
463
 
464
+ #: ../plugin-fw/lib/yit-upgrade.php:493
465
  msgid "You can't update plugins for this site."
466
  msgstr ""
467
 
468
+ #: ../plugin-fw/lib/yit-upgrade.php:497
469
  msgid "You do not have sufficient permissions to update plugins for this site."
470
  msgstr ""
471
 
472
+ #: ../plugin-fw/lib/yit-upgrade.php:504
473
  msgid "Update Plugin"
474
  msgstr ""
475
 
476
+ #: ../plugin-fw/licence/lib/yit-licence.php:148
477
  #, php-format
478
+ msgid "%field% field cannot be empty"
479
  msgstr ""
480
 
481
+ #: ../plugin-fw/licence/lib/yit-licence.php:149
482
+ msgid "%field_1% and %field_2% fields cannot be empty"
483
  msgstr ""
484
 
485
+ #: ../plugin-fw/licence/lib/yit-licence.php:150
486
  msgid "Unable to contact the remote server, please try again later. Thanks!"
487
  msgstr ""
488
 
489
+ #: ../plugin-fw/licence/lib/yit-licence.php:529
490
  msgid "Invalid Request"
491
  msgstr ""
492
 
493
+ #: ../plugin-fw/licence/lib/yit-licence.php:530
494
  msgid "Invalid licence key"
495
  msgstr ""
496
 
497
+ #: ../plugin-fw/licence/lib/yit-licence.php:531
498
+ msgid "Software has been deactivated"
499
  msgstr ""
500
 
501
+ #: ../plugin-fw/licence/lib/yit-licence.php:532
502
+ msgid "Maximum number of activations exceeded"
503
  msgstr ""
504
 
505
+ #: ../plugin-fw/licence/lib/yit-licence.php:533
506
  msgid "Invalid instance ID"
507
  msgstr ""
508
 
509
+ #: ../plugin-fw/licence/lib/yit-licence.php:534
510
  msgid "Invalid security key"
511
  msgstr ""
512
 
513
+ #: ../plugin-fw/licence/lib/yit-licence.php:535
514
  msgid "Licence key has expired"
515
  msgstr ""
516
 
517
+ #: ../plugin-fw/licence/lib/yit-licence.php:536
518
+ msgid "Licence key has been banned"
519
  msgstr ""
520
 
521
  #: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
533
  msgid "%s"
534
  msgstr ""
535
 
536
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
537
  msgid "Yithemes Licence Activation"
538
  msgstr ""
539
 
540
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
541
  msgid ""
542
  "Have you updated your licenses? Have you asked for an extension? Update "
543
  "information concerning your products."
544
  msgstr ""
545
 
546
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
547
  msgid "Update licence information"
548
  msgstr ""
549
 
550
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
551
+ msgid "Products to be activated"
552
  msgstr ""
553
 
554
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
555
  msgid "Activate"
556
  msgstr ""
557
 
558
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
559
  msgid "Activated"
560
  msgstr ""
561
 
562
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
563
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
564
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
565
  msgid "Product Name"
566
  msgstr ""
567
 
568
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
569
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
570
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
571
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:145
572
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:337
573
  msgid "Email"
574
  msgstr ""
575
 
576
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
577
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
578
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
579
  msgid "Licence Key"
580
  msgstr ""
581
 
582
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
583
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
584
  msgid "Expires"
585
  msgstr ""
586
 
587
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
588
  msgid "Remaining"
589
  msgstr ""
590
 
591
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
592
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
593
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
594
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
595
  msgid "Renew"
596
  msgstr ""
597
 
598
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
599
  #, php-format
600
  msgid "%1s out of %2s"
601
  msgstr ""
602
 
603
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
604
  msgid "Banned"
605
  msgstr ""
606
 
607
+ #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
608
  msgid "Expired"
609
  msgstr ""
610
 
611
+ #: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
612
+ msgid "Search for a product"
613
+ msgstr ""
614
+
615
  #: ../plugin-fw/templates/metaboxes/types/categories.php:36
616
  msgid "No categories."
617
  msgstr ""
684
 
685
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:78
686
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:270
687
+ msgid "Insert the title for the field."
688
  msgstr ""
689
 
690
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:83
695
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:87
696
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:279
697
  msgid ""
698
+ "REQUIRED: Field identification name to be entered into email body. "
699
+ "<strong>Note:</strong>Use only lowercase characters and underscores."
 
700
  msgstr ""
701
 
702
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:92
706
 
707
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:100
708
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:292
709
+ msgid "Select the type for this field."
710
  msgstr ""
711
 
712
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:105
716
 
717
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:109
718
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:301
719
+ msgid "Select this option if you want this field appears as already checked."
720
  msgstr ""
721
 
722
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:114
743
 
744
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:127
745
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:319
746
+ msgid "Error Message"
747
  msgstr ""
748
 
749
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:131
758
 
759
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:140
760
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:332
761
+ msgid "Select this option if it must be required."
762
  msgstr ""
763
 
764
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:149
765
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:341
766
+ msgid "Select this option if the email must be valid."
767
  msgstr ""
768
 
769
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:154
773
 
774
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:158
775
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:350
776
+ msgid "Select this if it is the email you can reply to."
777
  msgstr ""
778
 
779
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:163
784
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:167
785
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:359
786
  msgid ""
787
+ "Insert additional class(es) (separated by commas) for more personalization."
788
  msgstr ""
789
 
790
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:172
821
 
822
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:244
823
  #: ../plugin-fw/templates/metaboxes/types/contactform.php:418
824
+ msgid "Set field length."
825
  msgstr ""
826
 
827
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
839
 
840
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
841
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
842
+ msgid "Content of the tab. (HTML is supported)"
843
  msgstr ""
844
 
845
  #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
902
  msgid "No sidebar"
903
  msgstr ""
904
 
 
 
 
 
905
  #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
906
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
907
  msgid "Right sidebar"
914
  msgstr ""
915
 
916
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
917
+ msgid "Left Sidebar"
918
  msgstr ""
919
 
920
  #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
921
+ msgid "Right Sidebar"
922
  msgstr ""
923
 
924
  #: ../plugin-fw/templates/metaboxes/types/typography.php:42
967
  msgid "Italic bold"
968
  msgstr ""
969
 
970
+ #: ../plugin-options/settings-options.php:23
971
  msgid "Upgrade to the PREMIUM VERSION"
972
  msgstr ""
973
 
974
+ #: ../plugin-options/settings-options.php:27
975
+ msgid "Discover the Advanced Features"
976
  msgstr ""
977
 
978
+ #: ../plugin-options/settings-options.php:28
979
  msgid ""
980
  "Upgrade to the PREMIUM VERSION\n"
981
  "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
982
  msgstr ""
983
 
984
+ #: ../plugin-options/settings-options.php:35
985
  msgid "Get Support and Pro Features"
986
  msgstr ""
987
 
988
+ #: ../plugin-options/settings-options.php:36
989
  msgid ""
990
+ "By purchasing the premium version of the plugin, you will take advantage of "
991
+ "the advanced features of the product and you will get one year of free "
992
+ "updates and support through our platform available 24h/24."
993
  msgstr ""
994
 
995
+ #: ../plugin-options/settings-options.php:46
996
  msgid "General settings"
997
  msgstr ""
998
 
999
+ #: ../plugin-options/settings-options.php:55
1000
  msgid "Search input label"
1001
  msgstr ""
1002
 
1003
+ #: ../plugin-options/settings-options.php:57
1004
+ #: ../plugin-options/settings-options.php:65
1005
  msgid "Label for Search input field."
1006
  msgstr ""
1007
 
1008
+ #: ../plugin-options/settings-options.php:59
1009
  msgid "Search for products"
1010
  msgstr ""
1011
 
1012
+ #: ../plugin-options/settings-options.php:63
1013
  msgid "Search submit label"
1014
  msgstr ""
1015
 
1016
+ #: ../plugin-options/settings-options.php:67
1017
  msgid "Search"
1018
  msgstr ""
1019
 
1020
+ #: ../plugin-options/settings-options.php:71
1021
  msgid "Minimum number of characters"
1022
  msgstr ""
1023
 
1024
+ #: ../plugin-options/settings-options.php:72
1025
  msgid "Minimum number of characters required to trigger autosuggest."
1026
  msgstr ""
1027
 
1028
+ #: ../plugin-options/settings-options.php:85
1029
  msgid "Maximum number of results"
1030
  msgstr ""
1031
 
1032
+ #: ../plugin-options/settings-options.php:86
1033
  msgid "Maximum number of results showed within the autosuggest box."
1034
  msgstr ""
1035
 
plugin-fw/assets/css/yit-plugin-panel.css CHANGED
@@ -143,6 +143,21 @@
143
  .chosen .select_wrapper .chosen-container .chosen-drop .chosen-search input{
144
  width: 100%!important;
145
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  .select_wrapper span {
147
  height: 26px;
148
  line-height: 26px;
@@ -165,6 +180,22 @@
165
  background-color: #FAFAFA;
166
  }
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
 
169
  /* Style to woocommerce panel*/
170
  #plugin-fw-wc{
143
  .chosen .select_wrapper .chosen-container .chosen-drop .chosen-search input{
144
  width: 100%!important;
145
  }
146
+
147
+ /* === Multiple Chosen Customizzation === */
148
+
149
+ .yith-choosen .chosen-choices {
150
+ line-height: 27px;
151
+ min-height: 27px;
152
+ border: 1px solid #ddd;
153
+ }
154
+
155
+ .yith-choosen .chosen-container-active .chosen-choices{
156
+ border: 1px solid #5b9dd9;
157
+ -webkit-box-shadow: 0 0 2px rgba(30,140,190,.8);
158
+ box-shadow: 0 0 2px rgba(30,140,190,.8);
159
+ }
160
+
161
  .select_wrapper span {
162
  height: 26px;
163
  line-height: 26px;
180
  background-color: #FAFAFA;
181
  }
182
 
183
+ /* === Single Chosen Customizzation === */
184
+
185
+ .yith-choosen .chosen-container-single .chosen-default {
186
+ background: transparent;
187
+ border-color: #ddd;
188
+ }
189
+
190
+ .yith-choosen .chosen-search > input[type=text]{
191
+ width: 100% !important;
192
+ }
193
+
194
+ .yith-choosen .chosen-container-single .chosen-single {
195
+ background: transparent;
196
+ border-color: #ddd;
197
+ }
198
+
199
 
200
  /* Style to woocommerce panel*/
201
  #plugin-fw-wc{
plugin-fw/lib/yit-cpt-unlimited.php CHANGED
@@ -1049,44 +1049,44 @@ class YIT_CPT_Unlimited {
1049
  'fields' => apply_filters( 'yit_cptu_fields', array(
1050
  'type' => array(
1051
  'label' => __( 'Type', 'yit' ),
1052
- 'desc' => __( 'The layout for this '.strtolower( $this->_labels['singular'] ) , 'yit' ),
1053
  'type' => 'select',
1054
  'options' => isset( $layouts ) ? $layouts : array(),
1055
  'std' => '' ),
1056
 
1057
  'rewrite' => array(
1058
  'label' => __( 'Rewrite', 'yit' ),
1059
- 'desc' => __( 'The word used for the URL of each project (the slug of post if empty)', 'yit' ),
1060
  'type' => 'text',
1061
  'std' => '' ),
1062
 
1063
  'label_singular' => array(
1064
- 'label' => __( 'Label Singular', 'yit' ),
1065
- 'desc' => __( 'Set the label in singular to use for each label (the title of portfolio if empty)', 'yit' ),
1066
  'type' => 'text',
1067
  'std' => '' ),
1068
 
1069
  'label_plural' => array(
1070
- 'label' => __( 'Label Plural', 'yit' ),
1071
- 'desc' => __( 'Set the label in plural to use for each label (the title of portfolio if empty)', 'yit' ),
1072
  'type' => 'text',
1073
  'std' => '' ),
1074
 
1075
  'taxonomy' => array(
1076
  'label' => __( 'Taxonomy', 'yit' ),
1077
- 'desc' => __( 'If you want to use a category section for the portfolio, set the name of taxonomy. Name should be in slug form (must not contain capital letters or spaces) and not more than 32 characters long (database structure restriction).', 'yit' ),
1078
  'type' => 'text',
1079
  'std' => '' ),
1080
 
1081
  'taxonomy_rewrite' => array(
1082
  'label' => __( 'Taxonomy Rewrite', 'yit' ),
1083
- 'desc' => __( 'Set the word to use in the URL for each category page.', 'yit' ),
1084
  'type' => 'text',
1085
  'std' => '' ),
1086
 
1087
  'single_layout' => array(
1088
  'label' => __( 'Single layout', 'yit' ),
1089
- 'desc' => __( 'The layout for single page of this portfolio', 'yit' ),
1090
  'type' => 'select',
1091
  'options' => $single_layouts,
1092
  'std' => '' ),
@@ -1472,7 +1472,7 @@ class YIT_CPT_Unlimited {
1472
  $args = array(
1473
  $this->_args['shortcode_name'] => array(
1474
  'title' => $this->_labels['singular'],
1475
- 'description' => sprintf( __( 'Show the frontend of the %s', 'yit' ), $this->_labels['main_name'] ),
1476
  'tab' => 'cpt',
1477
  'create' => false,
1478
  'has_content' => false,
@@ -1628,7 +1628,7 @@ class YIT_CPT_Unlimited {
1628
  var button = $('<a />', {
1629
  href: '#',
1630
  class: 'multi-uploader add-new-h2',
1631
- 'data-uploader_title': '<?php printf( __( 'Add %s by images', 'yit' ), $label_plural ) ?>',
1632
  'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yit' ), $label_plural ) ?>'
1633
  }).text('<?php _e( 'Add with multiupload', 'yit' ) ?>');
1634
 
1049
  'fields' => apply_filters( 'yit_cptu_fields', array(
1050
  'type' => array(
1051
  'label' => __( 'Type', 'yit' ),
1052
+ 'desc' => __( 'Layout for this '.strtolower( $this->_labels['singular'] ) , 'yit' ),
1053
  'type' => 'select',
1054
  'options' => isset( $layouts ) ? $layouts : array(),
1055
  'std' => '' ),
1056
 
1057
  'rewrite' => array(
1058
  'label' => __( 'Rewrite', 'yit' ),
1059
+ 'desc' => __( 'Univocal identification name in the URL for each product (slug from post if empty)', 'yit' ),
1060
  'type' => 'text',
1061
  'std' => '' ),
1062
 
1063
  'label_singular' => array(
1064
+ 'label' => __( 'Label in Singular', 'yit' ),
1065
+ 'desc' => __( 'Set a label in singular (title of portfolio if empty)', 'yit' ),
1066
  'type' => 'text',
1067
  'std' => '' ),
1068
 
1069
  'label_plural' => array(
1070
+ 'label' => __( 'Label in Plural', 'yit' ),
1071
+ 'desc' => __( 'Set a label in plural (title of portfolio if empty)', 'yit' ),
1072
  'type' => 'text',
1073
  'std' => '' ),
1074
 
1075
  'taxonomy' => array(
1076
  'label' => __( 'Taxonomy', 'yit' ),
1077
+ 'desc' => __( 'If you want to use categories in the portfolio, set a name for taxonomy. Name should be a slug (must not contain capital letters nor spaces) and must not be more than 32 characters long (database structure restriction).', 'yit' ),
1078
  'type' => 'text',
1079
  'std' => '' ),
1080
 
1081
  'taxonomy_rewrite' => array(
1082
  'label' => __( 'Taxonomy Rewrite', 'yit' ),
1083
+ 'desc' => __( 'Set univocal name for each category page URL.', 'yit' ),
1084
  'type' => 'text',
1085
  'std' => '' ),
1086
 
1087
  'single_layout' => array(
1088
  'label' => __( 'Single layout', 'yit' ),
1089
+ 'desc' => __( 'Layout for single page of this portfolio', 'yit' ),
1090
  'type' => 'select',
1091
  'options' => $single_layouts,
1092
  'std' => '' ),
1472
  $args = array(
1473
  $this->_args['shortcode_name'] => array(
1474
  'title' => $this->_labels['singular'],
1475
+ 'description' => sprintf( __( 'Show frontend of the %s', 'yit' ), $this->_labels['main_name'] ),
1476
  'tab' => 'cpt',
1477
  'create' => false,
1478
  'has_content' => false,
1628
  var button = $('<a />', {
1629
  href: '#',
1630
  class: 'multi-uploader add-new-h2',
1631
+ 'data-uploader_title': '<?php printf( __( 'Add %s from images', 'yit' ), $label_plural ) ?>',
1632
  'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yit' ), $label_plural ) ?>'
1633
  }).text('<?php _e( 'Add with multiupload', 'yit' ) ?>');
1634
 
plugin-fw/lib/yit-metabox.php CHANGED
@@ -30,7 +30,7 @@ if ( ! class_exists( 'YIT_Metabox' ) ) {
30
  * 'fields' => array(
31
  * 'meta_checkbox' => array(
32
  * 'label' => __( 'Show title', 'yit' ),
33
- * 'desc' => __( 'Show or not the title of the page.', 'yit' ),
34
  * 'type' => 'checkbox',
35
  * 'private' => false,
36
  * 'std' => '1'),
30
  * 'fields' => array(
31
  * 'meta_checkbox' => array(
32
  * 'label' => __( 'Show title', 'yit' ),
33
+ * 'desc' => __( 'Show title of the page or not.', 'yit' ),
34
  * 'type' => 'checkbox',
35
  * 'private' => false,
36
  * 'std' => '1'),
plugin-fw/lib/yit-plugin-panel-wc.php CHANGED
@@ -63,6 +63,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
63
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
64
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
65
  add_action( 'admin_init', array( $this, 'woocommerce_update_options' ) );
 
66
 
67
  add_action( 'woocommerce_admin_field_boxinfo', array( $this, 'yit_boxinfo' ), 10, 1 );
68
  add_action( 'woocommerce_admin_field_videobox', array( $this, 'yit_videobox' ), 10, 1 );
@@ -120,7 +121,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
120
  * @author Emanuela Castorina <emanuela.castorina@yithemes.com>
121
  */
122
  public function yit_videobox( $args = array() ) {
123
- if ( !empty( $args ) ) {
124
  extract( $args );
125
  require_once( YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-videobox.php' );
126
  }
@@ -157,6 +158,27 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
157
  }
158
  }
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  /**
161
  * Returns current active tab slug
162
  *
@@ -240,6 +262,26 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
240
  }
241
  }
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  /**
244
  * Update options
245
  *
@@ -300,7 +342,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
300
  wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker','jquery-ui-dialog', 'jquery-ui-sortable', 'iris', 'chosen' ), $woocommerce->version, true );
301
  wp_enqueue_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen' ), $this->version, true );
302
  wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
303
- 'i18n_nav_warning' => __( 'The changes you made will be lost if you navigate away from this page.', 'yit' )
304
  ) );
305
  }
306
 
63
  add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
64
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
65
  add_action( 'admin_init', array( $this, 'woocommerce_update_options' ) );
66
+ add_filter( 'woocommerce_screen_ids', array( $this, 'add_allowed_screen_id' ) );
67
 
68
  add_action( 'woocommerce_admin_field_boxinfo', array( $this, 'yit_boxinfo' ), 10, 1 );
69
  add_action( 'woocommerce_admin_field_videobox', array( $this, 'yit_videobox' ), 10, 1 );
121
  * @author Emanuela Castorina <emanuela.castorina@yithemes.com>
122
  */
123
  public function yit_videobox( $args = array() ) {
124
+ if ( ! empty( $args ) ) {
125
  extract( $args );
126
  require_once( YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-videobox.php' );
127
  }
158
  }
159
  }
160
 
161
+ /**
162
+ * Add the plugin woocommerce page settings in the screen ids of woocommerce
163
+ *
164
+ * @param $screen_ids
165
+ *
166
+ * @return mixed
167
+ * @since 1.0.0
168
+ * @author Antonino Scarfì <antonino.scarfi@yithemes.com>
169
+ */
170
+ public function add_allowed_screen_id( $screen_ids ) {
171
+ global $admin_page_hooks;
172
+
173
+ if ( ! isset( $admin_page_hooks[ $this->settings['parent_page'] ] ) ) {
174
+ return $screen_ids;
175
+ }
176
+
177
+ $screen_ids[] = $admin_page_hooks[ $this->settings['parent_page'] ] . '_page_' . $this->settings['page'];
178
+
179
+ return $screen_ids;
180
+ }
181
+
182
  /**
183
  * Returns current active tab slug
184
  *
262
  }
263
  }
264
 
265
+ /**
266
+ * Fire the action to print the custom tab
267
+ *
268
+ * @param $current_tab string
269
+ *
270
+ * @return void
271
+ * @since 1.0
272
+ * @author Antonino Scarfì <antonino.scarfi@yithemes.com>
273
+ */
274
+ public function print_video_box() {
275
+ $file = $this->settings['options-path'] . '/video-box.php';
276
+
277
+ if ( ! file_exists( $file ) ) {
278
+ return;
279
+ }
280
+
281
+ $args = include_once( $file );
282
+ $this->yit_videobox( $args );
283
+ }
284
+
285
  /**
286
  * Update options
287
  *
342
  wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', array( 'jquery', 'jquery-ui-datepicker','jquery-ui-dialog', 'jquery-ui-sortable', 'iris', 'chosen' ), $woocommerce->version, true );
343
  wp_enqueue_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen' ), $this->version, true );
344
  wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
345
+ 'i18n_nav_warning' => __( 'The changes you have made will be lost if you leave this page.', 'yit' )
346
  ) );
347
  }
348
 
plugin-fw/lib/yit-plugin-panel.php CHANGED
@@ -271,9 +271,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
271
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
272
  </form>
273
  <form method="post">
274
- <?php $warning = __( 'If you continue with this action, you will reset all options are in this page.', 'yit' ) ?>
275
  <input type="hidden" name="yit-action" value="reset" />
276
- <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure of it?', 'yit' ) ?>');" />
277
  </form>
278
  <p>&nbsp;</p>
279
  <?php endif ?>
@@ -407,17 +407,17 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
407
  public function message() {
408
 
409
  $message = array(
410
- 'element_exists' => $this->get_message( '<strong>' . __( 'The element you have written is already exists. Please, add another name.', 'yit' ) . '</strong>', 'error', false ),
411
  'saved' => $this->get_message( '<strong>' . __( 'Settings saved', 'yit' ) . '.</strong>', 'updated', false ),
412
  'reset' => $this->get_message( '<strong>' . __( 'Settings reset', 'yit' ) . '.</strong>', 'updated', false ),
413
  'delete' => $this->get_message( '<strong>' . __( 'Element deleted correctly.', 'yit' ) . '</strong>', 'updated', false ),
414
  'updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
415
  'settings-updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
416
  'imported' => $this->get_message( '<strong>' . __( 'Database imported correctly.', 'yit' ) . '</strong>', 'updated', false ),
417
- 'no-imported' => $this->get_message( '<strong>' . __( 'An error encoured during during import. Please try again.', 'yit' ) . '</strong>', 'error', false ),
418
- 'file-not-valid' => $this->get_message( '<strong>' . __( "The file you have insert doesn't valid.", 'yit' ) . '</strong>', 'error', false ),
419
- 'cant-import' => $this->get_message( '<strong>' . __( "I'm sorry, the import featured is disabled.", 'yit' ) . '</strong>', 'error', false ),
420
- 'ord' => $this->get_message( '<strong>' . __( "Sorting done correctly.", 'yit' ) . '</strong>', 'updated', false )
421
  );
422
 
423
  foreach ( $message as $key => $value ) {
@@ -467,6 +467,11 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
467
 
468
  foreach ( ( array ) glob( $option_files_path . '*.php' ) as $filename ) {
469
  preg_match( '/(.*)-options\.(.*)/', basename( $filename ), $filename_parts );
 
 
 
 
 
470
  $tab = $filename_parts[1];
471
 
472
  $tabs[$tab] = $filename;
271
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
272
  </form>
273
  <form method="post">
274
+ <?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yit' ) ?>
275
  <input type="hidden" name="yit-action" value="reset" />
276
+ <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
277
  </form>
278
  <p>&nbsp;</p>
279
  <?php endif ?>
407
  public function message() {
408
 
409
  $message = array(
410
+ 'element_exists' => $this->get_message( '<strong>' . __( 'The element you have entered already exists. Please, enter another name.', 'yit' ) . '</strong>', 'error', false ),
411
  'saved' => $this->get_message( '<strong>' . __( 'Settings saved', 'yit' ) . '.</strong>', 'updated', false ),
412
  'reset' => $this->get_message( '<strong>' . __( 'Settings reset', 'yit' ) . '.</strong>', 'updated', false ),
413
  'delete' => $this->get_message( '<strong>' . __( 'Element deleted correctly.', 'yit' ) . '</strong>', 'updated', false ),
414
  'updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
415
  'settings-updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yit' ) . '</strong>', 'updated', false ),
416
  'imported' => $this->get_message( '<strong>' . __( 'Database imported correctly.', 'yit' ) . '</strong>', 'updated', false ),
417
+ 'no-imported' => $this->get_message( '<strong>' . __( 'An error has occurred during import. Please try again.', 'yit' ) . '</strong>', 'error', false ),
418
+ 'file-not-valid' => $this->get_message( '<strong>' . __( 'The added file is not valid.', 'yit' ) . '</strong>', 'error', false ),
419
+ 'cant-import' => $this->get_message( '<strong>' . __( 'Sorry, import is disabled.', 'yit' ) . '</strong>', 'error', false ),
420
+ 'ord' => $this->get_message( '<strong>' . __( 'Sorting successful.', 'yit' ) . '</strong>', 'updated', false )
421
  );
422
 
423
  foreach ( $message as $key => $value ) {
467
 
468
  foreach ( ( array ) glob( $option_files_path . '*.php' ) as $filename ) {
469
  preg_match( '/(.*)-options\.(.*)/', basename( $filename ), $filename_parts );
470
+
471
+ if ( ! isset( $filename_parts[1] ) ) {
472
+ continue;
473
+ }
474
+
475
  $tab = $filename_parts[1];
476
 
477
  $tabs[$tab] = $filename;
plugin-fw/lib/yit-plugin-subpanel.php CHANGED
@@ -142,9 +142,9 @@ if ( ! class_exists( 'YIT_Plugin_SubPanel' ) ) {
142
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
143
  </form>
144
  <form method="post">
145
- <?php $warning = __( 'If you continue with this action, you will reset all options are in this page.', 'yit' ) ?>
146
  <input type="hidden" name="yit-action" value="reset" />
147
- <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure of it?', 'yit' ) ?>');" />
148
  </form>
149
  <p>&nbsp;</p>
150
  <?php endif ?>
142
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'yit' ) ?>" style="float:left;margin-right:10px;" />
143
  </form>
144
  <form method="post">
145
+ <?php $warning = __( 'If you continue with this action, you will reset all the options in this page.', 'yit' ) ?>
146
  <input type="hidden" name="yit-action" value="reset" />
147
+ <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
148
  </form>
149
  <p>&nbsp;</p>
150
  <?php endif ?>
plugin-fw/lib/yit-pointers.php CHANGED
@@ -68,8 +68,8 @@ if ( ! class_exists( 'YIT_Pointers' ) ) {
68
  'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
69
  <a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
70
  __( 'Plugins Activated', 'yit' ),
71
- __( 'From now on, you can find all the options of your plugins under the YIT Plugin menu voice.
72
- For every installation of our new plugins, a new voice will be added to access to the customization settings.', 'yit' ),
73
  __( 'Discover all our plugins available on:', 'yit' ),
74
  __( 'and', 'yit' )
75
  ),
@@ -82,10 +82,10 @@ if ( ! class_exists( 'YIT_Pointers' ) ) {
82
  'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
83
  <a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
84
  __( 'Plugins Upgraded', 'yit' ),
85
- __( 'From now on, you can find all the options of your plugins under the YIT Plugin menu voice.
86
- When one of our plugins updates, a new voice will be added to this menu.
87
- For example, after the update, the options from the plugins (YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.)
88
- will be removed from the previous location and moved under the YIT Plugin tab.', 'yit' ),
89
  __( 'Discover all our plugins available on:', 'yit' ),
90
  __( 'and', 'yit' )
91
  ),
68
  'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
69
  <a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
70
  __( 'Plugins Activated', 'yit' ),
71
+ __( 'From now on, you can find all plugin options in YIT Plugin menu.
72
+ For each plugin installed, customization settings will be available as a new entry in YIT Plugin menu.', 'yit' ),
73
  __( 'Discover all our plugins available on:', 'yit' ),
74
  __( 'and', 'yit' )
75
  ),
82
  'content' => sprintf( '<h3> %s </h3> <p> %s </p> <p> %s <a href="http://yithemes.com/product-category/plugins/" target="_blank">Yithemes.com</a> %s
83
  <a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a></p>',
84
  __( 'Plugins Upgraded', 'yit' ),
85
+ __( 'From now on, you can find all options of your plugins in YIT Plugin menu.
86
+ Any time one of our plugins is updated, a new entry will be added to this menu.
87
+ For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.)
88
+ will be moved from previous location to YIT Plugin tab.', 'yit' ),
89
  __( 'Discover all our plugins available on:', 'yit' ),
90
  __( 'and', 'yit' )
91
  ),
plugin-fw/lib/yit-upgrade.php CHANGED
@@ -119,7 +119,7 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
119
  'new_version' => __( 'There is a new version of %plugin_name% available.', 'yit' ),
120
  'latest' => __( 'View version %latest% details.', 'yit' ),
121
  'unavailable' => __( 'Automatic update is unavailable for this plugin,', 'yit' ),
122
- 'activate' => __( 'please <a href="%activate_link%"> activate </a> your copy of %plugin_name%.', 'yit' ),
123
  'update_now' => __( 'Update now.', 'yit' )
124
 
125
  );
@@ -413,7 +413,7 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
413
  if( ! current_user_can( 'update_plugins' ) ){
414
  printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>.', 'yit'), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
415
  }elseif( is_plugin_active_for_network( $init ) ){
416
- printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>. <em>You have to activate the plugin on a single site of the network to benefit from the automatic updates.</em>', 'yit' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
417
  }elseif ( empty( $r->package ) ) {
418
  printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin, please <a href="%5$s" title="Licence activation">activate</a> your copy of %6s.</em>', 'yit' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version, YIT_Plugin_Licence()->get_licence_activation_page_url(), $this->_plugins[ $init ]['info']['Name'] );
419
  } else {
@@ -490,11 +490,11 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
490
  $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
491
 
492
  if( 'upgrade-plugin-multisite' != $action ){
493
- wp_die( __( 'You can\'t update plugins for this site.', 'yit' ) );
494
  }
495
 
496
  if ( ! current_user_can( 'update_plugins' ) ) {
497
- wp_die( __( 'You do not have sufficient permissions to update plugins for this site.', 'yit' ) );
498
  }
499
 
500
  $this->check_update( get_site_transient( 'update_plugins') , true );
119
  'new_version' => __( 'There is a new version of %plugin_name% available.', 'yit' ),
120
  'latest' => __( 'View version %latest% details.', 'yit' ),
121
  'unavailable' => __( 'Automatic update is unavailable for this plugin,', 'yit' ),
122
+ 'activate' => __( 'please <a href="%activate_link%">activate</a> your copy of %plugin_name%.', 'yit' ),
123
  'update_now' => __( 'Update now.', 'yit' )
124
 
125
  );
413
  if( ! current_user_can( 'update_plugins' ) ){
414
  printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>.', 'yit'), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
415
  }elseif( is_plugin_active_for_network( $init ) ){
416
+ printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>. <em>You have to activate the plugin on a single site of the network to benefit from automatic updates.</em>', 'yit' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
417
  }elseif ( empty( $r->package ) ) {
418
  printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin, please <a href="%5$s" title="Licence activation">activate</a> your copy of %6s.</em>', 'yit' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version, YIT_Plugin_Licence()->get_licence_activation_page_url(), $this->_plugins[ $init ]['info']['Name'] );
419
  } else {
490
  $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
491
 
492
  if( 'upgrade-plugin-multisite' != $action ){
493
+ wp_die( __( 'You can\'t update the plugins for this site.', 'yit' ) );
494
  }
495
 
496
  if ( ! current_user_can( 'update_plugins' ) ) {
497
+ wp_die( __( 'You do not have sufficient permissions to update the plugins for this site.', 'yit' ) );
498
  }
499
 
500
  $this->check_update( get_site_transient( 'update_plugins') , true );
plugin-fw/lib/yit-video.php CHANGED
@@ -62,7 +62,7 @@ if ( ! class_exists( 'YIT_Video' ) ) {
62
  $id = preg_replace( '/[&|&amp;]feature=([\w\-]*)/', '', $id ); ?>
63
 
64
  <div class="post_video youtube">
65
- <iframe wmode="transparent" width="<?php echo $width; ?>" height="<?php echo $height; ?>" src="http://www.youtube.com/embed/<?php echo $id; ?>?wmode=transparent" frameborder="0" allowfullscreen></iframe>
66
  </div>
67
 
68
  <?php
62
  $id = preg_replace( '/[&|&amp;]feature=([\w\-]*)/', '', $id ); ?>
63
 
64
  <div class="post_video youtube">
65
+ <iframe wmode="transparent" width="<?php echo $width; ?>" height="<?php echo $height; ?>" src="https://www.youtube.com/embed/<?php echo $id; ?>?wmode=transparent" frameborder="0" allowfullscreen></iframe>
66
  </div>
67
 
68
  <?php
plugin-fw/licence/lib/yit-licence.php CHANGED
@@ -145,8 +145,8 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
145
  */
146
  public function localize_script() {
147
  wp_localize_script( 'yit-licence', 'licence_message', array(
148
- 'error' => __( '%field% field can not be empty', 'yit' ),
149
- 'errors' => __( '%field_1% and %field_2% fields can not be empty', 'yit' ),
150
  'server' => __( 'Unable to contact the remote server, please try again later. Thanks!', 'yit' )
151
  )
152
  );
@@ -274,7 +274,7 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
274
  *
275
  * 100 -> Invalid Request
276
  * 101 -> Invalid licence key
277
- * 102 -> Software has been deactive
278
  * 103 -> Exceeded maximum number of activations
279
  * 104 -> Invalid instance ID
280
  * 105 -> Invalid security key
@@ -528,12 +528,12 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
528
  $error_strings = array(
529
  '100' => __( 'Invalid Request', 'yit' ),
530
  '101' => __( 'Invalid licence key', 'yit' ),
531
- '102' => __( 'Software has been deactive', 'yit' ),
532
- '103' => __( 'Exceeded maximum number of activations', 'yit' ),
533
  '104' => __( 'Invalid instance ID', 'yit' ),
534
  '105' => __( 'Invalid security key', 'yit' ),
535
  '106' => __( 'Licence key has expired', 'yit' ),
536
- '107' => __( 'Licence key has be banned', 'yit' )
537
  );
538
 
539
  return isset( $error_strings[$code] ) ? $error_strings[$code] : false;
145
  */
146
  public function localize_script() {
147
  wp_localize_script( 'yit-licence', 'licence_message', array(
148
+ 'error' => __( '%field% field cannot be empty', 'yit' ),
149
+ 'errors' => __( '%field_1% and %field_2% fields cannot be empty', 'yit' ),
150
  'server' => __( 'Unable to contact the remote server, please try again later. Thanks!', 'yit' )
151
  )
152
  );
274
  *
275
  * 100 -> Invalid Request
276
  * 101 -> Invalid licence key
277
+ * 102 -> Software has been deactivate
278
  * 103 -> Exceeded maximum number of activations
279
  * 104 -> Invalid instance ID
280
  * 105 -> Invalid security key
528
  $error_strings = array(
529
  '100' => __( 'Invalid Request', 'yit' ),
530
  '101' => __( 'Invalid licence key', 'yit' ),
531
+ '102' => __( 'Software has been deactivated', 'yit' ),
532
+ '103' => __( 'Maximum number of activations exceeded', 'yit' ),
533
  '104' => __( 'Invalid instance ID', 'yit' ),
534
  '105' => __( 'Invalid security key', 'yit' ),
535
  '106' => __( 'Licence key has expired', 'yit' ),
536
+ '107' => __( 'Licence key has been banned', 'yit' )
537
  );
538
 
539
  return isset( $error_strings[$code] ) ? $error_strings[$code] : false;
plugin-fw/licence/templates/panel/activation/activation-panel.php CHANGED
@@ -32,7 +32,7 @@ $banned_products = isset( $no_active_products[ '107' ] ) ? $no_active_produc
32
 
33
  <?php if( ! empty( $to_active_products ) ) : ?>
34
  <h3 class="to-active">
35
- <?php _e( 'To Active', 'yit' ) ?>
36
  <span class="spinner"></span>
37
  </h3>
38
  <div class="to-active-wrapper">
32
 
33
  <?php if( ! empty( $to_active_products ) ) : ?>
34
  <h3 class="to-active">
35
+ <?php _e( 'Products to be activated', 'yit' ) ?>
36
  <span class="spinner"></span>
37
  </h3>
38
  <div class="to-active-wrapper">
plugin-fw/templates/metaboxes/types/contactform.php CHANGED
@@ -75,7 +75,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
75
 
76
  <p>
77
  <input type="text" value="<?php echo esc_attr( $value[$index]['title'] ) ?>" id="<?php echo $id ?>_title_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][title]" />
78
- <span class="desc inline"><?php _e( 'Insert the title of field.', 'yit' ) ?></span>
79
  </p>
80
  </div>
81
 
@@ -84,7 +84,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
84
 
85
  <p>
86
  <input type="text" value="<?php echo esc_attr( $value[$index]['data_name'] ) ?>" id="<?php echo $id ?>_data_name_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][data_name]" />
87
- <span class="desc inline"><?php _e( 'REQUIRED: The identification name of this field, that you can insert into body email configuration. <strong>Note:</strong>Use only lowercase characters and underscores.', 'yit' ) ?></span>
88
  </p>
89
  </div>
90
 
@@ -97,7 +97,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
97
  <option value="<?php echo esc_attr( $type ) ?>"<?php selected( $type, $value[$index]['type'] ) ?>><?php echo $name_type ?></option>
98
  <?php endforeach; ?>
99
  </select>
100
- <span class="desc inline"><?php _e( 'Select the type of this field.', 'yit' ) ?></span>
101
  </p>
102
  </div>
103
 
@@ -106,7 +106,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
106
 
107
  <p>
108
  <input type="checkbox" id="<?php echo $id ?>_already_checked_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][already_checked]" value="1"<?php checked( $value[$index]['already_checked'] ) ?> />
109
- <span class="desc inline"><?php _e( 'Select this if you want this field already checked.', 'yit' ) ?></span>
110
  </p>
111
  </div>
112
 
@@ -124,7 +124,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
124
  </div>
125
 
126
  <div class="the-metabox text clearfix">
127
- <label for="<?php echo $id ?>_error_<?php echo $index ?>"><?php _e( 'Message Error', 'yit' ) ?></label>
128
 
129
  <p>
130
  <input type="text" value="<?php echo esc_attr( $value[$index]['error'] ) ?>" id="<?php echo $id ?>_error_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][error]" />
@@ -137,7 +137,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
137
 
138
  <p>
139
  <input type="checkbox" id="<?php echo $id ?>_required_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][required]" value="1"<?php checked( $value[$index]['required'] ) ?> />
140
- <span class="desc inline"><?php _e( 'Select this if it must be required.', 'yit' ) ?></span>
141
  </p>
142
  </div>
143
 
@@ -146,7 +146,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
146
 
147
  <p>
148
  <input type="checkbox" id="<?php echo $id ?>_is_email_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][is_email]" value="1"<?php checked( $value[$index]['is_email'] ) ?> />
149
- <span class="desc inline"><?php _e( 'Select this if it must be a valid email.', 'yit' ) ?></span>
150
  </p>
151
  </div>
152
 
@@ -155,7 +155,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
155
 
156
  <p>
157
  <input type="checkbox" id="<?php echo $id ?>_reply_to_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][reply_to]" value="1"<?php checked( $value[$index]['reply_to'] ) ?> />
158
- <span class="desc inline"><?php _e( 'Select this if it\'s the email where you can reply.', 'yit' ) ?></span>
159
  </p>
160
  </div>
161
 
@@ -164,7 +164,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
164
 
165
  <p>
166
  <input type="text" value="<?php echo esc_attr( $value[$index]['class'] ) ?>" id="<?php echo $id ?>_class_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][class]" />
167
- <span class="desc inline"><?php _e( 'Insert an additional class(es) (separateb by comma) for more personalization.', 'yit' ) ?></span>
168
  </p>
169
  </div>
170
 
@@ -241,7 +241,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
241
  }
242
  ?>
243
  </select>
244
- <span class="desc inline"><?php _e( 'Choose how much long will be the field.', 'yit' ) ?></span>
245
  </p>
246
  </div>
247
  </div>
@@ -267,7 +267,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
267
 
268
  <p>
269
  <input disabled type="text" value="" id="<?php echo $id ?>_title" name="<?php echo $name ?>[][title]" />
270
- <span class="desc inline"><?php _e( 'Insert the title of field.', 'yit' ) ?></span>
271
  </p>
272
  </div>
273
 
@@ -276,7 +276,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
276
 
277
  <p>
278
  <input disabled type="text" value="" id="<?php echo $id ?>_data_name" name="<?php echo $name ?>[][data_name]" />
279
- <span class="desc inline"><?php _e( 'REQUIRED: The identification name of this field, that you can insert into body email configuration. <strong>Note:</strong>Use only lowercase characters and underscores.', 'yit' ) ?></span>
280
  </p>
281
  </div>
282
 
@@ -289,7 +289,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
289
  <option value="<?php echo esc_attr( $type ) ?>"><?php echo $name_type ?></option>
290
  <?php endforeach; ?>
291
  </select>
292
- <span class="desc inline"><?php _e( 'Select the type of this field.', 'yit' ) ?></span>
293
  </p>
294
  </div>
295
 
@@ -298,7 +298,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
298
 
299
  <p>
300
  <input disabled type="checkbox" id="<?php echo $id ?>_already_checked" name="<?php echo $name ?>[][already_checked]" value="1" />
301
- <span class="desc inline"><?php _e( 'Select this if you want this field already checked.', 'yit' ) ?></span>
302
  </p>
303
  </div>
304
 
@@ -316,7 +316,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
316
  </div>
317
 
318
  <div class="the-metabox text clearfix">
319
- <label for="<?php echo $id ?>_error"><?php _e( 'Message Error', 'yit' ) ?></label>
320
 
321
  <p>
322
  <input disabled type="text" value="" id="<?php echo $id ?>_error" name="<?php echo $name ?>[][error]" />
@@ -329,7 +329,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
329
 
330
  <p>
331
  <input disabled type="checkbox" id="<?php echo $id ?>_required" name="<?php echo $name ?>[][required]" value="1" />
332
- <span class="desc inline"><?php _e( 'Select this if it must be required.', 'yit' ) ?></span>
333
  </p>
334
  </div>
335
 
@@ -338,7 +338,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
338
 
339
  <p>
340
  <input disabled type="checkbox" id="<?php echo $id ?>_is_email" name="<?php echo $name ?>[][is_email]" value="1" />
341
- <span class="desc inline"><?php _e( 'Select this if it must be a valid email.', 'yit' ) ?></span>
342
  </p>
343
  </div>
344
 
@@ -347,7 +347,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
347
 
348
  <p>
349
  <input disabled type="checkbox" id="<?php echo $id ?>_reply_to" name="<?php echo $name ?>[][reply_to]" value="1" />
350
- <span class="desc inline"><?php _e( 'Select this if it\'s the email where you can reply.', 'yit' ) ?></span>
351
  </p>
352
  </div>
353
 
@@ -356,7 +356,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
356
 
357
  <p>
358
  <input disabled type="text" value="" id="<?php echo $id ?>_class" name="<?php echo $name ?>[][class]" />
359
- <span class="desc inline"><?php _e( 'Insert an additional class(es) (separateb by comma) for more personalization.', 'yit' ) ?></span>
360
  </p>
361
  </div>
362
 
@@ -415,7 +415,7 @@ $options["icon"] = YIT_Plugin_Common::get_awesome_icons();
415
  }
416
  ?>
417
  </select>
418
- <span class="desc inline"><?php _e( 'Choose how much long will be the field.', 'yit' ) ?></span>
419
  </p>
420
  </div>
421
  </div>
75
 
76
  <p>
77
  <input type="text" value="<?php echo esc_attr( $value[$index]['title'] ) ?>" id="<?php echo $id ?>_title_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][title]" />
78
+ <span class="desc inline"><?php _e( 'Insert the title for the field.', 'yit' ) ?></span>
79
  </p>
80
  </div>
81
 
84
 
85
  <p>
86
  <input type="text" value="<?php echo esc_attr( $value[$index]['data_name'] ) ?>" id="<?php echo $id ?>_data_name_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][data_name]" />
87
+ <span class="desc inline"><?php _e( 'REQUIRED: Field identification name to be entered into email body. <strong>Note:</strong>Use only lowercase characters and underscores.', 'yit' ) ?></span>
88
  </p>
89
  </div>
90
 
97
  <option value="<?php echo esc_attr( $type ) ?>"<?php selected( $type, $value[$index]['type'] ) ?>><?php echo $name_type ?></option>
98
  <?php endforeach; ?>
99
  </select>
100
+ <span class="desc inline"><?php _e( 'Select the type for this field.', 'yit' ) ?></span>
101
  </p>
102
  </div>
103
 
106
 
107
  <p>
108
  <input type="checkbox" id="<?php echo $id ?>_already_checked_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][already_checked]" value="1"<?php checked( $value[$index]['already_checked'] ) ?> />
109
+ <span class="desc inline"><?php _e( 'Select this option if you want this field appears as already checked.', 'yit' ) ?></span>
110
  </p>
111
  </div>
112
 
124
  </div>
125
 
126
  <div class="the-metabox text clearfix">
127
+ <label for="<?php echo $id ?>_error_<?php echo $index ?>"><?php _e( 'Error Message', 'yit' ) ?></label>
128
 
129
  <p>
130
  <input type="text" value="<?php echo esc_attr( $value[$index]['error'] ) ?>" id="<?php echo $id ?>_error_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][error]" />
137
 
138
  <p>
139
  <input type="checkbox" id="<?php echo $id ?>_required_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][required]" value="1"<?php checked( $value[$index]['required'] ) ?> />
140
+ <span class="desc inline"><?php _e( 'Select this option if it must be required.', 'yit' ) ?></span>
141
  </p>
142
  </div>
143
 
146
 
147
  <p>
148
  <input type="checkbox" id="<?php echo $id ?>_is_email_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][is_email]" value="1"<?php checked( $value[$index]['is_email'] ) ?> />
149
+ <span class="desc inline"><?php _e( 'Select this option if the email must be valid.', 'yit' ) ?></span>
150
  </p>
151
  </div>
152
 
155
 
156
  <p>
157
  <input type="checkbox" id="<?php echo $id ?>_reply_to_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][reply_to]" value="1"<?php checked( $value[$index]['reply_to'] ) ?> />
158
+ <span class="desc inline"><?php _e( 'Select this if it is the email you can reply to.', 'yit' ) ?></span>
159
  </p>
160
  </div>
161
 
164
 
165
  <p>
166
  <input type="text" value="<?php echo esc_attr( $value[$index]['class'] ) ?>" id="<?php echo $id ?>_class_<?php echo $index ?>" name="<?php echo $name ?>[<?php echo $index ?>][class]" />
167
+ <span class="desc inline"><?php _e( 'Insert additional class(es) (separated by commas) for more personalization.', 'yit' ) ?></span>
168
  </p>
169
  </div>
170
 
241
  }
242
  ?>
243
  </select>
244
+ <span class="desc inline"><?php _e( 'Set field length.', 'yit' ) ?></span>
245
  </p>
246
  </div>
247
  </div>
267
 
268
  <p>
269
  <input disabled type="text" value="" id="<?php echo $id ?>_title" name="<?php echo $name ?>[][title]" />
270
+ <span class="desc inline"><?php _e( 'Insert the title for the field.', 'yit' ) ?></span>
271
  </p>
272
  </div>
273
 
276
 
277
  <p>
278
  <input disabled type="text" value="" id="<?php echo $id ?>_data_name" name="<?php echo $name ?>[][data_name]" />
279
+ <span class="desc inline"><?php _e( 'REQUIRED: Field identification name to be entered into email body. <strong>Note:</strong>Use only lowercase characters and underscores.', 'yit' ) ?></span>
280
  </p>
281
  </div>
282
 
289
  <option value="<?php echo esc_attr( $type ) ?>"><?php echo $name_type ?></option>
290
  <?php endforeach; ?>
291
  </select>
292
+ <span class="desc inline"><?php _e( 'Select the type for this field.', 'yit' ) ?></span>
293
  </p>
294
  </div>
295
 
298
 
299
  <p>
300
  <input disabled type="checkbox" id="<?php echo $id ?>_already_checked" name="<?php echo $name ?>[][already_checked]" value="1" />
301
+ <span class="desc inline"><?php _e( 'Select this option if you want this field appears as already checked.', 'yit' ) ?></span>
302
  </p>
303
  </div>
304
 
316
  </div>
317
 
318
  <div class="the-metabox text clearfix">
319
+ <label for="<?php echo $id ?>_error"><?php _e( 'Error Message', 'yit' ) ?></label>
320
 
321
  <p>
322
  <input disabled type="text" value="" id="<?php echo $id ?>_error" name="<?php echo $name ?>[][error]" />
329
 
330
  <p>
331
  <input disabled type="checkbox" id="<?php echo $id ?>_required" name="<?php echo $name ?>[][required]" value="1" />
332
+ <span class="desc inline"><?php _e( 'Select this option if it must be required.', 'yit' ) ?></span>
333
  </p>
334
  </div>
335
 
338
 
339
  <p>
340
  <input disabled type="checkbox" id="<?php echo $id ?>_is_email" name="<?php echo $name ?>[][is_email]" value="1" />
341
+ <span class="desc inline"><?php _e( 'Select this option if the email must be valid.', 'yit' ) ?></span>
342
  </p>
343
  </div>
344
 
347
 
348
  <p>
349
  <input disabled type="checkbox" id="<?php echo $id ?>_reply_to" name="<?php echo $name ?>[][reply_to]" value="1" />
350
+ <span class="desc inline"><?php _e( 'Select this if it is the email you can reply to.', 'yit' ) ?></span>
351
  </p>
352
  </div>
353
 
356
 
357
  <p>
358
  <input disabled type="text" value="" id="<?php echo $id ?>_class" name="<?php echo $name ?>[][class]" />
359
+ <span class="desc inline"><?php _e( 'Insert additional class(es) (separated by commas) for more personalization.', 'yit' ) ?></span>
360
  </p>
361
  </div>
362
 
415
  }
416
  ?>
417
  </select>
418
+ <span class="desc inline"><?php _e( 'Set field length.', 'yit' ) ?></span>
419
  </p>
420
  </div>
421
  </div>
plugin-fw/templates/metaboxes/types/customtabs.php CHANGED
@@ -50,7 +50,7 @@ extract($args);
50
 
51
  <td rowspan="3">
52
  <label><?php _e('Value', 'yit') ?>:</label>
53
- <textarea name="<?php echo $name ?>[<?php echo $i ?>][value]" cols="5" rows="5" placeholder="<?php _e('The content of the tab. (HTML is supported)','yit') ?>"><?php echo $tab['value'] ?></textarea>
54
  </td>
55
  </tr>
56
  </tbody>
@@ -93,7 +93,7 @@ jQuery(document).ready(function($){
93
  </td>\
94
  <td rowspan="3">\
95
  <label><?php _e('Value', 'yit') ?>:</label>\
96
- <textarea name="<?php echo $name ?>[' + size + '][value]" cols="5" rows="5" placeholder="<?php echo addslashes( __('The content of the tab. (HTML is supported)','yit') ) ?>"></textarea>\
97
  </td>\
98
  </tr>\
99
  </tbody>\
50
 
51
  <td rowspan="3">
52
  <label><?php _e('Value', 'yit') ?>:</label>
53
+ <textarea name="<?php echo $name ?>[<?php echo $i ?>][value]" cols="5" rows="5" placeholder="<?php _e('Content of the tab. (HTML is supported)','yit') ?>"><?php echo $tab['value'] ?></textarea>
54
  </td>
55
  </tr>
56
  </tbody>
93
  </td>\
94
  <td rowspan="3">\
95
  <label><?php _e('Value', 'yit') ?>:</label>\
96
+ <textarea name="<?php echo $name ?>[' + size + '][value]" cols="5" rows="5" placeholder="<?php echo addslashes( __('Content of the tab. (HTML is supported)','yit') ) ?>"></textarea>\
97
  </td>\
98
  </tr>\
99
  </tbody>\
plugin-fw/templates/metaboxes/types/sidebar-layout.php CHANGED
@@ -25,7 +25,7 @@ $sidebar = ! isset( $value['sidebar'] ) ? '' : $value['sidebar'];
25
  <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideleft.png" title="<?php _e( 'Left sidebar', 'yit' ) ?>" alt="<?php _e( 'Left sidebar', 'yit' ) ?>" />
26
 
27
  <input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-no' ?>" value="sidebar-no" <?php checked( $layout, 'sidebar-no' ) ?> />
28
- <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/noside.png" title="<?php _e( 'No sidebar', 'yit' ) ?>" alt="<?php _e( 'No sideabr', 'yit' ) ?>" />
29
 
30
  <input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-right' ?>" value="sidebar-right" <?php checked( $layout, 'sidebar-right' ) ?> />
31
  <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideright.png" title="<?php _e( 'Right sidebar', 'yit' ) ?>" alt="<?php _e( 'Right sidebar', 'yit' ) ?>" />
25
  <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideleft.png" title="<?php _e( 'Left sidebar', 'yit' ) ?>" alt="<?php _e( 'Left sidebar', 'yit' ) ?>" />
26
 
27
  <input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-no' ?>" value="sidebar-no" <?php checked( $layout, 'sidebar-no' ) ?> />
28
+ <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/noside.png" title="<?php _e( 'No sidebar', 'yit' ) ?>" alt="<?php _e( 'No sidebar', 'yit' ) ?>" />
29
 
30
  <input type="radio" name="<?php echo $name ?>[layout]" id="<?php echo $id . '-right' ?>" value="sidebar-right" <?php checked( $layout, 'sidebar-right' ) ?> />
31
  <img src="<?php echo YIT_CORE_ASSETS_URL ?>/images/sideright.png" title="<?php _e( 'Right sidebar', 'yit' ) ?>" alt="<?php _e( 'Right sidebar', 'yit' ) ?>" />
plugin-fw/templates/metaboxes/types/sidebars.php CHANGED
@@ -48,7 +48,7 @@ $sidebar_right = ! isset( $value['sidebar-right'] ) ? '-1' : $value['sidebar-ri
48
  <div class="option" id="choose-sidebars">
49
  <div class="side">
50
  <div class="select-mask" <?php if ( $layout != 'sidebar-double' && $layout != 'sidebar-left' ) { echo 'style="display:none"'; } ?> id="<?php echo $id ?>-sidebar-left-container">
51
- <label for ="<?php echo $id ?>-sidebar-left"><?php _e('Sidebar Left','yit') ?></label>
52
  <select name="<?php echo $name ?>[sidebar-left]" id="<?php echo $id ?>-sidebar-left">
53
  <option value="-1"><?php _e( 'Choose a sidebar', 'yit' ) ?></option>
54
  <?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
@@ -59,7 +59,7 @@ $sidebar_right = ! isset( $value['sidebar-right'] ) ? '-1' : $value['sidebar-ri
59
  </div>
60
  <div class="side" style="clear: both">
61
  <div class="select-mask" <?php if ( $layout != 'sidebar-double' && $layout != 'sidebar-right' ) { echo 'style="display:none"'; } ?> id="<?php echo $id ?>-sidebar-right-container">
62
- <label for ="<?php echo $id ?>-sidebar-right"><?php _e('Sidebar Right','yit') ?></label>
63
  <select name="<?php echo $name ?>[sidebar-right]" id="<?php echo $id ?>-sidebar-right">
64
  <option value="-1"><?php _e( 'Choose a sidebar', 'yit' ) ?></option>
65
  <?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
48
  <div class="option" id="choose-sidebars">
49
  <div class="side">
50
  <div class="select-mask" <?php if ( $layout != 'sidebar-double' && $layout != 'sidebar-left' ) { echo 'style="display:none"'; } ?> id="<?php echo $id ?>-sidebar-left-container">
51
+ <label for ="<?php echo $id ?>-sidebar-left"><?php _e('Left Sidebar','yit') ?></label>
52
  <select name="<?php echo $name ?>[sidebar-left]" id="<?php echo $id ?>-sidebar-left">
53
  <option value="-1"><?php _e( 'Choose a sidebar', 'yit' ) ?></option>
54
  <?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
59
  </div>
60
  <div class="side" style="clear: both">
61
  <div class="select-mask" <?php if ( $layout != 'sidebar-double' && $layout != 'sidebar-right' ) { echo 'style="display:none"'; } ?> id="<?php echo $id ?>-sidebar-right-container">
62
+ <label for ="<?php echo $id ?>-sidebar-right"><?php _e('Right Sidebar','yit') ?></label>
63
  <select name="<?php echo $name ?>[sidebar-right]" id="<?php echo $id ?>-sidebar-right">
64
  <option value="-1"><?php _e( 'Choose a sidebar', 'yit' ) ?></option>
65
  <?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
plugin-fw/templates/panel/woocommerce/woocommerce-form.php CHANGED
@@ -5,8 +5,8 @@
5
  <input style="float: left; margin-right: 10px;" class="button-primary" type="submit" value="<?php _e( 'Save Changes', 'yit' )?>"/>
6
  </form>
7
  <form id="plugin-fw-wc-reset" method="post">
8
- <?php $warning = __( 'If you continue with this action, you will reset all options are in this page.', 'yit' ) ?>
9
  <input type="hidden" name="yit-action" value="wc-options-reset" />
10
- <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure of it?', 'yit' ) ?>');" />
11
  </form>
12
  </div>
5
  <input style="float: left; margin-right: 10px;" class="button-primary" type="submit" value="<?php _e( 'Save Changes', 'yit' )?>"/>
6
  </form>
7
  <form id="plugin-fw-wc-reset" method="post">
8
+ <?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yit' ) ?>
9
  <input type="hidden" name="yit-action" value="wc-options-reset" />
10
+ <input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yit' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yit' ) ?>');" />
11
  </form>
12
  </div>
plugin-fw/yit-functions.php CHANGED
@@ -272,7 +272,7 @@ if ( ! function_exists( 'yit_plugin_get_attachment_id' ) ) {
272
 
273
  foreach ( $ids as $id ) {
274
  $attachment_image = wp_get_attachment_image_src( $id, 'full' );
275
- if ( $url == str_replace( 'https://', 'http://', array_shift( $attachment_image ) ) ) {
276
  return $id;
277
  }
278
  }
@@ -337,6 +337,10 @@ if ( ! function_exists( 'yit_enqueue_style' ) ) {
337
  $who = YIT_Asset()->get_stylesheet_handle( get_stylesheet_uri(), 'style' );
338
  $where = 'before';
339
 
 
 
 
 
340
  YIT_Asset()->set( 'style', $handle, compact( 'src', 'deps', 'ver', 'media', 'enqueue' ), $where, $who );
341
  }
342
  else {
272
 
273
  foreach ( $ids as $id ) {
274
  $attachment_image = wp_get_attachment_image_src( $id, 'full' );
275
+ if ( $url == array_shift( $attachment_image ) || $url == str_replace( 'https://', 'http://', array_shift( $attachment_image ) ) ) {
276
  return $id;
277
  }
278
  }
337
  $who = YIT_Asset()->get_stylesheet_handle( get_stylesheet_uri(), 'style' );
338
  $where = 'before';
339
 
340
+ if( false == $who ){
341
+ $who = '';
342
+ }
343
+
344
  YIT_Asset()->set( 'style', $handle, compact( 'src', 'deps', 'ver', 'media', 'enqueue' ), $where, $who );
345
  }
346
  else {