YITH WooCommerce Ajax Search - Version 1.3.5

Version Description

  • Added: Support most search elements on a page
Download this release

Release Info

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

Code changes from version 1.3.4 to 1.3.5

README.txt CHANGED
@@ -4,7 +4,7 @@ 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.2
7
- Stable tag: 1.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -61,6 +61,11 @@ If you have created your own language pack, or have an update for an existing on
61
  2. The plugin at work displaying the ajax search results
62
 
63
  == Changelog ==
 
 
 
 
 
64
  = 1.3.4 =
65
  * Fixed: Support to WPML
66
 
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.2
7
+ Stable tag: 1.3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
61
  2. The plugin at work displaying the ajax search results
62
 
63
  == Changelog ==
64
+
65
+
66
+ = 1.3.5 =
67
+ * Added: Support most search elements on a page
68
+
69
  = 1.3.4 =
70
  * Fixed: Support to WPML
71
 
assets/js/frontend.js CHANGED
@@ -24,11 +24,12 @@ jQuery(document).ready(function ($) {
24
  });
25
 
26
  if( el.length == 0 ) el = $('#yith-s');
 
27
  el.each(function () {
28
  var $t = $(this),
29
  append_to = ( typeof $t.data('append-to') == 'undefined') ? $t.closest('.yith-ajaxsearchform-container') : $t.data('append-to');
30
 
31
- el.yithautocomplete({
32
  minChars : min_chars,
33
  appendTo : append_to,
34
  triggerSelectOnValidInput: false,
24
  });
25
 
26
  if( el.length == 0 ) el = $('#yith-s');
27
+
28
  el.each(function () {
29
  var $t = $(this),
30
  append_to = ( typeof $t.data('append-to') == 'undefined') ? $t.closest('.yith-ajaxsearchform-container') : $t.data('append-to');
31
 
32
+ $t.yithautocomplete({
33
  minChars : min_chars,
34
  appendTo : append_to,
35
  triggerSelectOnValidInput: false,
assets/js/frontend.min.js CHANGED
@@ -1,2 +1,2 @@
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,e=""==a.data("loader-icon")?c:a.data("loader-icon"),c=b("#yith-searchsubmit"),f=a.data("min-chars");c.on("click",function(){return""==b(this).closest("form").find(".yith-s").val()?!1:!0});0==a.length&&(a=b("#yith-s"));a.each(function(){var d=b(this),c="undefined"==typeof d.data("append-to")?
2
- d.closest(".yith-ajaxsearchform-container"):d.data("append-to");a.yithautocomplete({minChars:f,appendTo:c,triggerSelectOnValidInput:!1,serviceUrl:yith_wcas_params.ajax_url+"?action=yith_ajax_search_products",onSearchStart:function(){d.css({"background-image":"url("+e+")","background-repeat":"no-repeat","background-position":"center right"})},onSelect:function(a){-1!=a.id&&(window.location.href=a.url)},onSearchComplete:function(){d.css("background-image","none")}})})});
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=b("#yith-searchsubmit"),e=a.data("min-chars");c.on("click",function(){return""==b(this).closest("form").find(".yith-s").val()?!1:!0});0==a.length&&(a=b("#yith-s"));a.each(function(){var a=b(this),c="undefined"==typeof a.data("append-to")?
2
+ a.closest(".yith-ajaxsearchform-container"):a.data("append-to");a.yithautocomplete({minChars:e,appendTo:c,triggerSelectOnValidInput:!1,serviceUrl:yith_wcas_params.ajax_url+"?action=yith_ajax_search_products",onSearchStart:function(){a.css({"background-image":"url("+d+")","background-repeat":"no-repeat","background-position":"center right"})},onSelect:function(a){-1!=a.id&&(window.location.href=a.url)},onSearchComplete:function(){a.css("background-image","none")}})})});
class.yith-wcas.php CHANGED
@@ -164,7 +164,7 @@ if ( !class_exists( 'YITH_WCAS' ) ) {
164
 
165
  $suggestions[] = apply_filters( 'yith_wcas_suggestion', array(
166
  'id' => $product->id,
167
- 'value' => $product->get_title(),
168
  'url' => $product->get_permalink()
169
  ), $product );
170
  }
@@ -187,5 +187,7 @@ if ( !class_exists( 'YITH_WCAS' ) ) {
187
  echo json_encode( $suggestions );
188
  die();
189
  }
 
 
190
  }
191
  }
164
 
165
  $suggestions[] = apply_filters( 'yith_wcas_suggestion', array(
166
  'id' => $product->id,
167
+ 'value' => strip_tags($product->get_title()),
168
  'url' => $product->get_permalink()
169
  ), $product );
170
  }
187
  echo json_encode( $suggestions );
188
  die();
189
  }
190
+
191
+
192
  }
193
  }
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.3.4
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
@@ -59,7 +59,7 @@ register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
59
  if ( defined( 'YITH_WCAS_VERSION' ) ){
60
  return;
61
  }else{
62
- define( 'YITH_WCAS_VERSION', '1.3.4' );
63
  }
64
 
65
  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.3.5
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
59
  if ( defined( 'YITH_WCAS_VERSION' ) ){
60
  return;
61
  }else{
62
+ define( 'YITH_WCAS_VERSION', '1.3.5' );
63
  }
64
 
65
  if ( ! defined( 'YITH_WCAS_FREE_INIT' ) ) {
languages/yit-it_IT.mo CHANGED
Binary file
languages/yit-it_IT.po CHANGED
@@ -1,45 +1,40 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: YITH WooCommerce Ajax Search\n"
4
- "POT-Creation-Date: 2015-04-24 14:41+0100\n"
5
- "PO-Revision-Date: 2015-04-24 14:41+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"
 
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:64
22
  msgid "Settings"
23
  msgstr "Impostazioni"
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
- #, fuzzy
35
  msgid "Plugin Documentation"
36
- msgstr "Impostazioni"
37
 
38
  #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:24
39
  #: ../plugin-options/settings-options.php:31
40
- #, fuzzy
41
  msgid "YITH WooCommerce Ajax Search"
42
- msgstr "YITH WooCommerce Ajax Product Search"
43
 
44
  #: ../class.yith-wcas-admin.php:208
45
  msgid ""
@@ -50,11 +45,16 @@ msgid ""
50
  "YITH WooCommerce Ajax Search is available in an outstanding PREMIUM version "
51
  "with many new options, <a href=\""
52
  msgstr ""
 
 
 
 
 
 
53
 
54
  #: ../class.yith-wcas-admin.php:221
55
- #, fuzzy
56
  msgid "YITH WooCommerce Ajax Search Updated"
57
- msgstr "YITH WooCommerce Ajax Product Search"
58
 
59
  #: ../class.yith-wcas-admin.php:222
60
  msgid ""
@@ -65,8 +65,15 @@ msgid ""
65
  "YITH WooCommerce Ajax Search renovates with new available options, discover "
66
  "the <a href=\""
67
  msgstr ""
 
 
 
 
 
 
 
68
 
69
- #: ../class.yith-wcas.php:172
70
  msgid "No results"
71
  msgstr "Nessun risultato"
72
 
@@ -75,1025 +82,437 @@ msgid ""
75
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
76
  "you are using the premium one."
77
  msgstr ""
 
 
78
 
79
  #: ../init.php:104
80
  msgid ""
81
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
82
- "Woocommerce in order to work."
83
- msgstr ""
84
-
85
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:460
86
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:574
87
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:719
88
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1632
89
- #, php-format
90
- msgid "Add %s"
91
- msgstr ""
92
-
93
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:461
94
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:575
95
- #, php-format
96
- msgid "Add New %s"
97
- msgstr ""
98
-
99
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:462
100
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:576
101
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1267
102
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1304
103
- #, php-format
104
- msgid "Edit %s"
105
- msgstr ""
106
-
107
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:463
108
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:577
109
- #, php-format
110
- msgid "New %s"
111
- msgstr ""
112
-
113
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:464
114
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:578
115
- #, php-format
116
- msgid "All %s"
117
- msgstr ""
118
-
119
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:465
120
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:579
121
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1251
122
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1305
123
- #, php-format
124
- msgid "View %s"
125
- msgstr ""
126
-
127
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:466
128
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:580
129
- #, fuzzy, php-format
130
- msgid "Search %s"
131
- msgstr "Cerca"
132
-
133
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:467
134
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:581
135
- #, php-format
136
- msgid "No %s found"
137
- msgstr ""
138
-
139
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:468
140
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:582
141
- #, php-format
142
- msgid "No %s found in Trash"
143
  msgstr ""
 
 
144
 
145
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:625
146
- #, php-format
147
- msgid "%s Categories"
148
- msgstr ""
149
-
150
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:626
151
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:635
152
- msgid "Category"
153
- msgstr ""
154
-
155
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:627
156
- #, fuzzy
157
- msgid "Search Categories"
158
- msgstr "Cerca:"
159
-
160
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:628
161
- msgid "All Categories"
162
- msgstr ""
163
-
164
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:629
165
- msgid "Parent Category"
166
- msgstr ""
167
-
168
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:630
169
- msgid "Parent Category:"
170
- msgstr ""
171
-
172
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:631
173
- msgid "Edit Category"
174
- msgstr ""
175
-
176
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:632
177
- msgid "Update Category"
178
- msgstr ""
179
-
180
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:633
181
- msgid "Add New Category"
182
- msgstr ""
183
-
184
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:634
185
- msgid "New Category Name"
186
- msgstr ""
187
-
188
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:724
189
- msgid "Categories"
190
- msgstr ""
191
-
192
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1042
193
- #, fuzzy, php-format
194
- msgid "%s Settings"
195
- msgstr "Impostazioni"
196
-
197
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1051
198
- msgid "Type"
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
206
- msgid "Rewrite"
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
232
- msgid "Taxonomy"
233
- msgstr ""
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
243
- msgid "Taxonomy Rewrite"
244
  msgstr ""
 
 
 
245
 
246
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
247
- msgid "Set univocal name for each category page URL."
248
- msgstr ""
249
 
250
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
251
- msgid "Single layout"
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
259
- #, fuzzy
260
- msgid "layout settings"
261
- msgstr "Impostazioni"
262
 
263
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1222
264
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1235
265
- msgid "Quick links"
266
- msgstr ""
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
274
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:46
275
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:90
276
- msgid "Name"
277
- msgstr ""
278
 
279
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
280
- #, php-format
281
- msgid "Add %s from images"
282
  msgstr ""
 
283
 
284
- #: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
285
- msgid "Add with multiupload"
286
- msgstr ""
287
 
288
- #: ../plugin-fw/lib/yit-plugin-panel-wc.php:295
289
- msgid "The changes you have made will be lost if you leave this page."
290
- msgstr ""
291
 
292
- #: ../plugin-fw/lib/yit-plugin-panel.php:63
293
- #, fuzzy
294
- msgid "Plugin Settings"
295
- msgstr "Impostazioni"
296
 
297
- #: ../plugin-fw/lib/yit-plugin-panel.php:95
298
- #: ../plugin-fw/lib/yit-plugin-subpanel.php:101
299
- msgid "YIT Plugins"
300
- msgstr ""
301
 
302
- #: ../plugin-fw/lib/yit-plugin-panel.php:292
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:295
309
- #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
310
- msgid ""
311
- "If you continue with this action, you will reset all options in this page."
312
- msgstr ""
313
 
314
- #: ../plugin-fw/lib/yit-plugin-panel.php:297
315
- #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
316
- msgid "Reset to Default"
317
- msgstr ""
318
 
319
- #: ../plugin-fw/lib/yit-plugin-panel.php:297
320
- #: ../plugin-fw/lib/yit-plugin-subpanel.php:147
321
- #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
322
- msgid "Are you sure?"
323
- msgstr ""
324
 
325
- #: ../plugin-fw/lib/yit-plugin-panel.php:431
326
- msgid ""
327
- "The element you have entered already exists. Please, enter another name."
328
- msgstr ""
329
 
330
- #: ../plugin-fw/lib/yit-plugin-panel.php:432
331
- #, fuzzy
332
- msgid "Settings saved"
333
- msgstr "Impostazioni"
334
 
335
- #: ../plugin-fw/lib/yit-plugin-panel.php:433
336
- #, fuzzy
337
- msgid "Settings reset"
338
- msgstr "Impostazioni"
339
 
340
- #: ../plugin-fw/lib/yit-plugin-panel.php:434
341
- msgid "Element deleted correctly."
342
- msgstr ""
 
 
 
343
 
344
- #: ../plugin-fw/lib/yit-plugin-panel.php:435
345
- #: ../plugin-fw/lib/yit-plugin-panel.php:436
346
- msgid "Element updated correctly."
347
- msgstr ""
348
 
349
- #: ../plugin-fw/lib/yit-plugin-panel.php:437
350
- msgid "Database imported correctly."
351
- msgstr ""
352
 
353
- #: ../plugin-fw/lib/yit-plugin-panel.php:438
354
- msgid "An error has occurred during import. Please try again."
355
- msgstr ""
356
 
357
- #: ../plugin-fw/lib/yit-plugin-panel.php:439
358
- msgid "The added file is not valid."
359
- msgstr ""
360
 
361
- #: ../plugin-fw/lib/yit-plugin-panel.php:440
362
- msgid "Sorry, import is disabled."
363
- msgstr ""
364
 
365
- #: ../plugin-fw/lib/yit-plugin-panel.php:441
366
- msgid "Sorting successful."
367
- msgstr ""
368
 
369
- #: ../plugin-fw/lib/yit-plugin-subpanel.php:145
370
- msgid ""
371
- "If you continue with this action, you will reset all the options in this "
372
- "page."
373
- msgstr ""
374
 
375
- #: ../plugin-fw/lib/yit-pointers.php:70
376
- msgid "Plugins Activated"
377
- msgstr ""
378
 
379
- #: ../plugin-fw/lib/yit-pointers.php:71
380
- msgid ""
381
- "From now on, you can find all plugin options in YIT Plugin menu.\n"
382
- " For each plugin installed, "
383
- "customization settings will be available as a new entry in YIT Plugin menu."
384
- msgstr ""
385
 
386
- #: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
387
- msgid "Discover all our plugins available on:"
388
- msgstr ""
389
 
390
- #: ../plugin-fw/lib/yit-pointers.php:74 ../plugin-fw/lib/yit-pointers.php:90
391
- msgid "and"
392
- msgstr ""
393
 
394
- #: ../plugin-fw/lib/yit-pointers.php:84
395
- msgid "Plugins Upgraded"
396
- msgstr ""
397
 
398
- #: ../plugin-fw/lib/yit-pointers.php:85
399
- msgid ""
400
- "From now on, you can find all options of your plugins in YIT Plugin menu.\n"
401
- " Any time one of our plugins is updated, "
402
- "a new entry will be added to this menu.\n"
403
- " For example, after the update, plugin "
404
- "options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
405
- "Search, etc.)\n"
406
- " will be moved from previous location to "
407
- "YIT Plugin tab."
408
- msgstr ""
409
 
410
- #: ../plugin-fw/lib/yit-upgrade.php:123
411
- msgid "There is a new version of %plugin_name% available."
412
- msgstr ""
413
 
414
- #: ../plugin-fw/lib/yit-upgrade.php:124
415
- msgid "View version %latest% details."
416
- msgstr ""
417
 
418
- #: ../plugin-fw/lib/yit-upgrade.php:125
419
- msgid "Automatic update is unavailable for this plugin,"
420
- msgstr ""
421
 
422
- #: ../plugin-fw/lib/yit-upgrade.php:126
423
- msgid ""
424
- "please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
425
- msgstr ""
426
 
427
- #: ../plugin-fw/lib/yit-upgrade.php:127
428
- msgid "Update now."
429
- msgstr ""
430
 
431
- #: ../plugin-fw/lib/yit-upgrade.php:230
432
- msgid "Yithemes Repository"
433
- msgstr ""
434
 
435
- #: ../plugin-fw/lib/yit-upgrade.php:264
436
- msgid "Invalid URL Provided."
437
- msgstr ""
438
 
439
- #: ../plugin-fw/lib/yit-upgrade.php:277
440
- msgid "Could not create Temporary file."
441
- msgstr ""
442
 
443
- #: ../plugin-fw/lib/yit-upgrade.php:419
444
- #, php-format
445
- msgid ""
446
- "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
447
- "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
448
- msgstr ""
449
 
450
- #: ../plugin-fw/lib/yit-upgrade.php:421
451
- #, php-format
452
- msgid ""
453
- "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
454
- "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
455
- "have to activate the plugin on a single site of the network to benefit from "
456
- "automatic updates.</em>"
457
- msgstr ""
458
 
459
- #: ../plugin-fw/lib/yit-upgrade.php:423
460
- #, php-format
461
- msgid ""
462
- "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
463
- "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
464
- "<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
465
- "title=\"Licence activation\">activate</a> your copy of %6s.</em>"
466
- msgstr ""
467
 
468
- #: ../plugin-fw/lib/yit-upgrade.php:425
469
- #, php-format
470
- msgid ""
471
- "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
472
- "yit-changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a "
473
- "href=\"%5$s\">update now</a>."
474
- msgstr ""
475
 
476
- #: ../plugin-fw/lib/yit-upgrade.php:498
477
- msgid "You can't update the plugins for this site."
478
- msgstr ""
479
 
480
- #: ../plugin-fw/lib/yit-upgrade.php:502
481
- msgid ""
482
- "You do not have sufficient permissions to update the plugins for this site."
483
- msgstr ""
484
 
485
- #: ../plugin-fw/lib/yit-upgrade.php:509
486
- msgid "Update Plugin"
487
- msgstr ""
488
 
489
- #: ../plugin-fw/licence/lib/yit-licence.php:161
490
- #, php-format
491
- msgid "%field% field cannot be empty"
492
- msgstr ""
493
 
494
- #: ../plugin-fw/licence/lib/yit-licence.php:162
495
- msgid "%field_1% and %field_2% fields cannot be empty"
496
- msgstr ""
497
 
498
- #: ../plugin-fw/licence/lib/yit-licence.php:163
499
- msgid "Unable to contact the remote server, please try again later. Thanks!"
500
- msgstr ""
501
 
502
- #: ../plugin-fw/licence/lib/yit-licence.php:548
503
- msgid "Invalid Request"
504
- msgstr ""
505
 
506
- #: ../plugin-fw/licence/lib/yit-licence.php:549
507
- msgid "Invalid licence key"
508
- msgstr ""
509
 
510
- #: ../plugin-fw/licence/lib/yit-licence.php:550
511
- msgid "Software has been deactivated"
512
- msgstr ""
513
 
514
- #: ../plugin-fw/licence/lib/yit-licence.php:551
515
- #, fuzzy
516
- msgid "Maximum number of activations exceeded"
517
- msgstr "Numero massimo di risultati"
518
 
519
- #: ../plugin-fw/licence/lib/yit-licence.php:552
520
- msgid "Invalid instance ID"
521
- msgstr ""
522
 
523
- #: ../plugin-fw/licence/lib/yit-licence.php:553
524
- msgid "Invalid security key"
525
- msgstr ""
526
 
527
- #: ../plugin-fw/licence/lib/yit-licence.php:554
528
- msgid "Licence key has expired"
529
- msgstr ""
530
 
531
- #: ../plugin-fw/licence/lib/yit-licence.php:555
532
- msgid "Licence key has been banned"
533
- msgstr ""
534
 
535
- #: ../plugin-fw/licence/lib/yit-plugin-licence.php:64
536
- #: ../plugin-fw/licence/lib/yit-plugin-licence.php:65
537
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:64
538
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:65
539
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:107
540
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:108
541
- msgid "Licence Activation"
542
- msgstr ""
543
 
544
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:115
545
- #: ../plugin-fw/licence/lib/yit-theme-licence.php:116
546
- #, php-format
547
- msgid "%s"
548
- msgstr ""
549
 
550
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
551
- msgid "Yithemes Licence Activation"
552
- msgstr ""
553
 
554
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
555
- msgid ""
556
- "I cannot find the license key for activating the theme I have bought some "
557
- "time ago. Where can I find it?"
558
- msgstr ""
559
 
560
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:26
561
- msgid ""
562
- "If you have purchased one of our products before 27 January 2015, you can "
563
- "benefit from support and updates (the services offered with the license)\n"
564
- " until 27 January 2016 and you do not have to purchase it again "
565
- "to get a new license key, because, before this date, your license used to be "
566
- "activated automatically by our system.\n"
567
- " After 27 January 2016, instead, if you want to benefit from "
568
- "support and updates you have to buy a new license and activate it through "
569
- "the license key you will be\n"
570
- " provided with and that you can find in your YIThemes account, in "
571
- "section \"My licenses\"."
572
- msgstr ""
573
 
574
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:37
575
- msgid ""
576
- "Have you updated your licenses? Have you asked for an extension? Update "
577
- "information concerning your products."
578
- msgstr ""
579
 
580
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:39
581
- msgid "Update licence information"
582
- msgstr ""
583
 
584
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:49
585
- msgid "Products to be activated"
586
- msgstr ""
587
 
588
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:68
589
- msgid "Activate"
590
- msgstr ""
591
 
592
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:87
593
- msgid "Activated"
594
- msgstr ""
595
 
596
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:91
597
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:123
598
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
599
- msgid "Product Name"
600
- msgstr ""
601
 
602
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:92
603
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:124
604
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:148
605
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:148
606
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:340
607
- msgid "Email"
608
- msgstr ""
609
 
610
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
611
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:125
612
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:149
613
- msgid "Licence Key"
614
- msgstr ""
 
 
615
 
616
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:94
617
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:150
618
- msgid "Expires"
619
- msgstr ""
620
 
621
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
622
- msgid "Remaining"
623
- msgstr ""
624
 
625
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:96
626
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
627
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:151
628
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:161
629
- msgid "Renew"
630
- msgstr ""
631
 
632
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:107
633
- #, php-format
634
- msgid "%1s out of %2s"
635
- msgstr ""
636
 
637
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:119
638
- msgid "Banned"
639
- msgstr ""
640
 
641
- #: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:143
642
- msgid "Expired"
643
- msgstr ""
644
 
645
- #: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
646
- #, fuzzy
647
- msgid "Search for a product"
648
- msgstr "Cerca prodotto"
 
 
 
649
 
650
- #: ../plugin-fw/templates/metaboxes/types/categories.php:36
651
- msgid "No categories."
652
- msgstr ""
653
 
654
- #: ../plugin-fw/templates/metaboxes/types/categories.php:42
655
- msgid "+ Add New Category"
656
- msgstr ""
 
 
 
657
 
658
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:7
659
- msgid "Text Input"
660
- msgstr ""
661
 
662
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:8
663
- msgid "Checkbox"
664
- msgstr ""
665
 
666
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:9
667
- #, fuzzy
668
- msgid "Select"
669
- msgstr "Seleziona una data"
 
 
670
 
671
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:10
672
- msgid "Textarea"
673
- msgstr ""
674
 
675
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:11
676
- msgid "Radio Input"
677
- msgstr ""
678
 
679
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:12
680
- msgid "Password Field"
681
- msgstr ""
682
 
683
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:13
684
  #, fuzzy
685
- msgid "File Upload"
686
- msgstr "Upload"
687
-
688
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:47
689
- msgid "Theme Icon"
690
- msgstr ""
691
-
692
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:48
693
- msgid "Custom Icon"
694
- msgstr ""
695
-
696
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:49
697
- #: ../plugin-fw/templates/metaboxes/types/responsivesliders.php:24
698
- msgid "None"
699
- msgstr ""
700
-
701
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:60
702
- msgid "Add field"
703
- msgstr ""
704
 
705
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:69
706
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:261
707
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:37
708
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:82
709
- msgid "Remove"
710
- msgstr ""
711
-
712
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:70
713
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:262
714
  #, fuzzy
715
- msgid "Click to toggle"
716
- msgstr "Clicca per anteprima"
717
-
718
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:77
719
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:269
720
- msgid "Title Field"
721
- msgstr ""
722
 
723
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:81
724
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:273
725
  #, fuzzy
726
- msgid "Insert the title for the field."
727
- msgstr "Seleziona un font"
728
 
729
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:86
730
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:278
731
- msgid "Data Name"
732
- msgstr ""
733
-
734
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:90
735
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:282
736
- msgid ""
737
- "REQUIRED: Field identification name to be entered into email body. "
738
- "<strong>Note:</strong>Use only lowercase characters and underscores."
739
- msgstr ""
740
-
741
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:95
742
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:287
743
- msgid "Type field"
744
- msgstr ""
745
-
746
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:103
747
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:295
748
  #, fuzzy
749
- msgid "Select the type for this field."
750
- msgstr "Seleziona un font"
751
-
752
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:108
753
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:300
754
- msgid "Checked"
755
- msgstr ""
756
-
757
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:112
758
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:304
759
- msgid "Select this option if you want this field appears as already checked."
760
- msgstr ""
761
-
762
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:117
763
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:309
764
- msgid "Add options "
765
- msgstr ""
766
-
767
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:118
768
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:310
769
- msgid "Add option"
770
- msgstr ""
771
 
772
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:121
773
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:313
774
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:436
775
  #, fuzzy
776
- msgid "Selected"
777
- msgstr "Seleziona una data"
778
 
779
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:124
780
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:316
781
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:436
782
- msgid "Delete option"
783
- msgstr ""
784
-
785
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:130
786
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:322
787
- msgid "Error Message"
788
- msgstr ""
789
-
790
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:134
791
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:326
792
- msgid "Insert the error message for validation."
793
- msgstr ""
794
-
795
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:139
796
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:331
797
- msgid "Required"
798
- msgstr ""
799
-
800
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:143
801
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:335
802
- msgid "Select this option if it must be required."
803
- msgstr ""
804
-
805
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:152
806
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:344
807
- msgid "Select this option if the email must be valid."
808
- msgstr ""
809
-
810
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:157
811
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:349
812
- msgid "Reply To"
813
- msgstr ""
814
-
815
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:161
816
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:353
817
- msgid "Select this if it is the email you can reply to."
818
- msgstr ""
819
-
820
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:166
821
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:358
822
- msgid "Class"
823
- msgstr ""
824
-
825
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:170
826
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:362
827
- msgid ""
828
- "Insert additional class(es) (separated by commas) for more personalization."
829
- msgstr ""
830
-
831
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:175
832
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:367
833
- msgid "Icon"
834
- msgstr ""
835
-
836
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:203
837
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:391
838
- #: ../plugin-fw/templates/metaboxes/types/icon-list.php:69
839
- #: ../plugin-fw/templates/metaboxes/types/select-icon.php:33
840
- #: ../plugin-fw/templates/metaboxes/types/upload.php:21
841
- #: ../plugin-fw/templates/panel/types/upload.php:31
842
- #: ../plugin-fw/templates/panel/woocommerce/woocommerce-upload.php:35
843
- msgid "Upload"
844
- msgstr "Upload"
845
-
846
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:209
847
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:397
848
- #: ../plugin-fw/templates/metaboxes/types/icon-list.php:75
849
- #: ../plugin-fw/templates/metaboxes/types/select-icon.php:39
850
- msgid "Image preview"
851
- msgstr ""
852
-
853
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:217
854
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:405
855
- msgid "Insert an icon for more personalization."
856
- msgstr ""
857
-
858
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:222
859
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:409
860
- msgid "Width"
861
- msgstr ""
862
-
863
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:247
864
- #: ../plugin-fw/templates/metaboxes/types/contactform.php:421
865
- msgid "Set field length."
866
- msgstr ""
867
-
868
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
869
- msgid "Close all"
870
- msgstr ""
871
-
872
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
873
- msgid "Expand all"
874
- msgstr ""
875
-
876
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:52
877
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:95
878
- msgid "Value"
879
- msgstr ""
880
-
881
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
882
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
883
- msgid "Content of the tab. (HTML is supported)"
884
- msgstr ""
885
-
886
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
887
- msgid "Add custom product tab"
888
- msgstr ""
889
-
890
- #: ../plugin-fw/templates/metaboxes/types/customtabs.php:107
891
- msgid "Do you want to remove the custom tab?"
892
- msgstr ""
893
-
894
- #: ../plugin-fw/templates/metaboxes/types/icon-list.php:89
895
- #, php-format
896
- msgid "(Default: %s <img src=\"%s\"/>)"
897
- msgstr ""
898
-
899
- #: ../plugin-fw/templates/metaboxes/types/icon-list.php:91
900
- #, php-format
901
- msgid "(Default: <i %s></i> )"
902
- msgstr ""
903
-
904
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
905
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:45
906
- #: ../plugin-fw/templates/metaboxes/types/images.php:38
907
- #: ../plugin-fw/templates/metaboxes/types/images.php:64
908
- msgid "Delete image"
909
- msgstr ""
910
-
911
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:45
912
- msgid "Add Images to Gallery"
913
- msgstr ""
914
-
915
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:45
916
- msgid "Add to gallery"
917
- msgstr ""
918
-
919
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:45
920
- msgid "Add images"
921
- msgstr ""
922
-
923
- #: ../plugin-fw/templates/metaboxes/types/image-gallery.php:45
924
- msgid "Delete"
925
- msgstr ""
926
-
927
- #: ../plugin-fw/templates/metaboxes/types/images.php:42
928
- msgid "Upload new images"
929
- msgstr ""
930
-
931
- #: ../plugin-fw/templates/metaboxes/types/images.php:75
932
- msgid "Are you sure you want to remove this image?"
933
- msgstr ""
934
-
935
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:25
936
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:36
937
- msgid "Left sidebar"
938
- msgstr ""
939
-
940
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
941
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:42
942
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:45
943
- msgid "No sidebar"
944
- msgstr ""
945
-
946
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
947
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
948
- msgid "Right sidebar"
949
- msgstr ""
950
-
951
- #: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:34
952
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:53
953
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:64
954
- msgid "Choose a sidebar"
955
- msgstr ""
956
-
957
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
958
- msgid "Left Sidebar"
959
- msgstr ""
960
-
961
- #: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
962
- msgid "Right Sidebar"
963
- msgstr ""
964
-
965
- #: ../plugin-fw/templates/metaboxes/types/typography.php:42
966
- msgid "px"
967
- msgstr "px"
968
-
969
- #: ../plugin-fw/templates/metaboxes/types/typography.php:43
970
- msgid "em"
971
- msgstr "em"
972
-
973
- #: ../plugin-fw/templates/metaboxes/types/typography.php:44
974
- msgid "pt"
975
- msgstr "pt"
976
-
977
- #: ../plugin-fw/templates/metaboxes/types/typography.php:45
978
- msgid "rem"
979
- msgstr "rem"
980
-
981
- #: ../plugin-fw/templates/metaboxes/types/typography.php:59
982
- #: ../plugin-fw/templates/metaboxes/types/typography.php:153
983
- #: ../plugin-fw/templates/metaboxes/types/typography.php:217
984
- msgid "Web fonts"
985
- msgstr ""
986
-
987
- #: ../plugin-fw/templates/metaboxes/types/typography.php:71
988
- msgid "Google fonts"
989
- msgstr ""
990
-
991
- #: ../plugin-fw/templates/metaboxes/types/typography.php:96
992
- msgid "Regular"
993
- msgstr "Regular"
994
-
995
- #: ../plugin-fw/templates/metaboxes/types/typography.php:97
996
- msgid "Bold"
997
- msgstr "Bold"
998
-
999
- #: ../plugin-fw/templates/metaboxes/types/typography.php:98
1000
- msgid "Extra bold"
1001
- msgstr "Extra bold"
1002
-
1003
- #: ../plugin-fw/templates/metaboxes/types/typography.php:99
1004
- msgid "Italic"
1005
- msgstr "Italic"
1006
-
1007
- #: ../plugin-fw/templates/metaboxes/types/typography.php:100
1008
- msgid "Italic bold"
1009
- msgstr "Italic bold"
1010
-
1011
- #: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
1012
- msgid "Reset Defaults"
1013
- msgstr ""
1014
 
1015
- #: ../plugin-options/settings-options.php:21
1016
- msgid "Upgrade to the PREMIUM VERSION"
1017
- msgstr ""
1018
 
1019
- #: ../plugin-options/settings-options.php:25
1020
- msgid "Discover the Advanced Features"
1021
- msgstr ""
1022
 
1023
- #: ../plugin-options/settings-options.php:26
1024
- msgid ""
1025
- "Upgrade to the PREMIUM VERSION\n"
1026
- "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
1027
- msgstr ""
1028
 
1029
- #: ../plugin-options/settings-options.php:33
1030
- msgid "Get Support and Pro Features"
1031
- msgstr ""
1032
 
1033
- #: ../plugin-options/settings-options.php:34
1034
- msgid ""
1035
- "By purchasing the premium version of the plugin, you will take advantage of "
1036
- "the advanced features of the product and you will get one year of free "
1037
- "updates and support through our platform available 24h/24."
1038
- msgstr ""
1039
 
1040
- #: ../plugin-options/settings-options.php:44
1041
  #, fuzzy
1042
- msgid "General settings"
1043
- msgstr "Impostazioni Generali"
1044
 
1045
- #: ../plugin-options/settings-options.php:53
1046
- msgid "Search input label"
1047
- msgstr "Etichetta campo di ricerca"
1048
 
1049
- #: ../plugin-options/settings-options.php:55
1050
- #: ../plugin-options/settings-options.php:63
1051
- msgid "Label for Search input field."
1052
- msgstr "Etichetta per il campo di ricerca"
1053
 
1054
- #: ../plugin-options/settings-options.php:57
1055
- msgid "Search for products"
1056
- msgstr "Cerca prodotto"
1057
 
1058
- #: ../plugin-options/settings-options.php:61
1059
- msgid "Search submit label"
1060
- msgstr "Etichetta campo di submit"
1061
 
1062
- #: ../plugin-options/settings-options.php:65
1063
- msgid "Search"
1064
- msgstr "Cerca"
1065
 
1066
- #: ../plugin-options/settings-options.php:69
1067
- msgid "Minimum number of characters"
1068
- msgstr "Numero minimo di caratteri"
1069
 
1070
- #: ../plugin-options/settings-options.php:70
1071
- msgid "Minimum number of characters required to trigger autosuggest."
1072
- msgstr "Numero minimo di caratteri richiesti per avviare la ricerca"
1073
 
1074
- #: ../plugin-options/settings-options.php:83
1075
- msgid "Maximum number of results"
1076
- msgstr "Numero massimo di risultati"
1077
 
1078
- #: ../plugin-options/settings-options.php:84
1079
- msgid "Maximum number of results showed within the autosuggest box."
1080
- msgstr "Numero massimo di risultati mostrati nel box di ricerca"
1081
 
1082
- #: ../templates/yith-woocommerce-ajax-search.php:20
1083
- msgid "Search for:"
1084
- msgstr "Cerca:"
1085
 
1086
- #: ../widgets/class.yith-wcas-ajax-search.php:29
1087
- msgid "An Ajax Search box for products only."
1088
- msgstr "Un filtro di ricerca Ajax per i prodotti di WooCommmerce."
1089
 
1090
- #: ../widgets/class.yith-wcas-ajax-search.php:31
1091
- msgid "YITH WooCommerce Ajax Product Search"
1092
- msgstr "YITH WooCommerce Ajax Product Search"
1093
 
1094
- #: ../widgets/class.yith-wcas-ajax-search.php:90
1095
- msgid "Title:"
1096
- msgstr "Titolo:"
1097
 
1098
  #~ msgid "Label for Search submit field."
1099
  #~ msgstr "Etichetta per il campo di submit"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: YITH WooCommerce Ajax Search Premium\n"
4
+ "POT-Creation-Date: 2015-07-20 12:50+0100\n"
5
+ "PO-Revision-Date: 2015-07-20 13:06+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.7.3\n"
13
  "X-Poedit-KeywordsList: __;_e;_x\n"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
+ "X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
17
 
18
  #: ../class.yith-wcas-admin.php:106 ../class.yith-wcas-admin.php:128
 
 
 
 
19
  msgid "Settings"
20
  msgstr "Impostazioni"
21
 
22
  #: ../class.yith-wcas-admin.php:107 ../class.yith-wcas-admin.php:129
23
  msgid "Premium Version"
24
+ msgstr "Versione premium"
25
 
26
  #: ../class.yith-wcas-admin.php:135 ../class.yith-wcas-admin.php:136
27
  msgid "Ajax Search"
28
  msgstr "Ajax Search"
29
 
30
  #: ../class.yith-wcas-admin.php:190
 
31
  msgid "Plugin Documentation"
32
+ msgstr "Documentazione plugin"
33
 
34
  #: ../class.yith-wcas-admin.php:207 ../plugin-options/settings-options.php:24
35
  #: ../plugin-options/settings-options.php:31
 
36
  msgid "YITH WooCommerce Ajax Search"
37
+ msgstr "YITH WooCommerce Ajax Search"
38
 
39
  #: ../class.yith-wcas-admin.php:208
40
  msgid ""
45
  "YITH WooCommerce Ajax Search is available in an outstanding PREMIUM version "
46
  "with many new options, <a href=\""
47
  msgstr ""
48
+ "Nella scheda del plugin puoi trovare tutte le opzioni di YITH WooCommerce "
49
+ "Ajax Search.\n"
50
+ "Da questo menu, avrai accesso a tutte le impostazioni dei nostri plugin "
51
+ "attivati finora.\n"
52
+ "YITH WooCommerce Ajax Search è disponibile in una eccezionale versione "
53
+ "PREMIUM con molte nuove optioni, <a href=\""
54
 
55
  #: ../class.yith-wcas-admin.php:221
 
56
  msgid "YITH WooCommerce Ajax Search Updated"
57
+ msgstr "YITH WooCommerce Ajax Search aggiornato"
58
 
59
  #: ../class.yith-wcas-admin.php:222
60
  msgid ""
65
  "YITH WooCommerce Ajax Search renovates with new available options, discover "
66
  "the <a href=\""
67
  msgstr ""
68
+ "Da adesso, puoi trovare tutte le opzioni del nuovo YITH WooCommerce Ajax "
69
+ "Search in YIT Plugin > Ajax Search invece che in WooCommerce > Settings > "
70
+ "Ajax Search, come accadeva nelle precedenti versioni.\n"
71
+ "Quando uno dei nostri plugin verrà aggiornato, una nuova voce sarà aggiunta "
72
+ "a questo menu.\n"
73
+ "YITH WooCommerce Ajax Search si è rinnovato con molte nuove opzioni "
74
+ "disponibili, scopri <a href=\""
75
 
76
+ #: ../class.yith-wcas.php:173
77
  msgid "No results"
78
  msgstr "Nessun risultato"
79
 
82
  "You can't activate the free version of YITH WooCommerce Ajax Search while "
83
  "you are using the premium one."
84
  msgstr ""
85
+ "Non puoi attivare la versione free di YITH WooCommerce Ajax Search se stai "
86
+ "già utilizzando la premium."
87
 
88
  #: ../init.php:104
89
  msgid ""
90
  "YITH WooCommerce Ajax Search is enabled but not effective. It requires "
91
+ "WooCommerce in order to work."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr ""
93
+ "YITH WooCommerce Ajax Search è abilitato ma non in funzione. Devi aver "
94
+ "installato WooCommerce per poter funzionare."
95
 
96
+ #: ../plugin-options/settings-options.php:21
97
+ msgid "Upgrade to the PREMIUM VERSION"
98
+ msgstr "Aggiorna alla VERSIONE PREMIUM"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
 
100
+ #: ../plugin-options/settings-options.php:25
101
+ msgid "Discover the Advanced Features"
102
+ msgstr "Scopri le funzionalità avanzate"
103
 
104
+ #: ../plugin-options/settings-options.php:26
105
  msgid ""
106
+ "Upgrade to the PREMIUM VERSION\n"
107
+ "of YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgstr ""
109
+ "Passa alla VERSIONE PREMIUM\n"
110
+ "di YITH WooCommerce Ajax Search per poter fruire di tutte le sue "
111
+ "funzionalità!"
112
 
113
+ #: ../plugin-options/settings-options.php:33
114
+ msgid "Get Support and Pro Features"
115
+ msgstr "Accedi al supporto e alle funzionalità premium"
116
 
117
+ #: ../plugin-options/settings-options.php:34
118
  msgid ""
119
+ "By purchasing the premium version of the plugin, you will take advantage of "
120
+ "the advanced features of the product and you will get one year of free "
121
+ "updates and support through our platform available 24h/24."
 
 
 
 
122
  msgstr ""
123
+ "Acquistando la versione premium del plugin, potrai utilizzare le "
124
+ "funzionalità avanzate del prodotto ed otterrai un anno di aggiornamenti "
125
+ "gratuiti e di supporto sulla nostra piattaforma disponibile 24h su 24."
126
 
127
+ #: ../plugin-options/settings-options.php:44
128
+ msgid "General settings"
129
+ msgstr "Impostazioni generali"
130
 
131
+ #: ../plugin-options/settings-options.php:53
132
+ msgid "Search input label"
133
+ msgstr "Etichetta campo \"Cerca\""
134
 
135
+ #: ../plugin-options/settings-options.php:55
136
+ #: ../plugin-options/settings-options.php:63
137
+ msgid "Label for Search input field."
138
+ msgstr "Etichetta per il campo \"Cerca\""
139
 
140
+ #: ../plugin-options/settings-options.php:57
141
+ msgid "Search for products"
142
+ msgstr "Cerca prodotto"
 
143
 
144
+ #: ../plugin-options/settings-options.php:61
145
+ msgid "Search submit label"
146
+ msgstr "Etichetta campo \"Submit\""
 
147
 
148
+ #: ../plugin-options/settings-options.php:65
149
+ msgid "Search"
150
+ msgstr "Cerca"
 
151
 
152
+ #: ../plugin-options/settings-options.php:69
153
+ msgid "Minimum number of characters"
154
+ msgstr "Numero minimo di caratteri"
 
 
155
 
156
+ #: ../plugin-options/settings-options.php:70
157
+ msgid "Minimum number of characters required to trigger autosuggest."
 
158
  msgstr ""
159
+ "Numero minimo di caratteri richiesti per mostrare i suggerimenti automatici."
160
 
161
+ #: ../plugin-options/settings-options.php:83
162
+ msgid "Maximum number of results"
163
+ msgstr "Numero massimo di risultati"
164
 
165
+ #: ../plugin-options/settings-options.php:84
166
+ msgid "Maximum number of results showed within the autosuggest box."
167
+ msgstr "Numero massimo di risultati da mostrare tra i suggerimenti automatici."
168
 
169
+ #: ../templates/yith-woocommerce-ajax-search.php:18
170
+ msgid "Search for:"
171
+ msgstr "Cerca:"
 
172
 
173
+ #: ../widgets/class.yith-wcas-ajax-search.php:29
174
+ msgid "An Ajax Search box for products only."
175
+ msgstr "Un filtro di ricerca Ajax solo per i prodotti."
 
176
 
177
+ #: ../widgets/class.yith-wcas-ajax-search.php:31
178
+ msgid "YITH WooCommerce Ajax Product Search"
179
+ msgstr "YITH WooCommerce Ajax Product Search"
 
 
180
 
181
+ #: ../widgets/class.yith-wcas-ajax-search.php:90
182
+ msgid "Title:"
183
+ msgstr "Titolo:"
 
 
184
 
185
+ #~ msgid "Output"
186
+ #~ msgstr "Risultati di ricerca"
 
 
187
 
188
+ #~ msgid "sale"
189
+ #~ msgstr "in saldo"
 
 
 
190
 
191
+ #~ msgid "featured"
192
+ #~ msgstr "in evidenza"
 
 
193
 
194
+ #~ msgid "Search in product brands"
195
+ #~ msgstr "Cerca marche prodotti"
 
 
196
 
197
+ #~ msgid "Extend search in product brands"
198
+ #~ msgstr "Estendi la ricerca alle marche dei prodotti"
 
 
199
 
200
+ #~ msgid ""
201
+ #~ "YITH WooCommerce Ajax Search Premium is enabled but not effective. It "
202
+ #~ "requires WooCommerce in order to work."
203
+ #~ msgstr ""
204
+ #~ "YITH WooCommerce Ajax Search Premium è abilitato ma non in funzione. Devi "
205
+ #~ "aver installato WooCommerce per poterlo utilizzare."
206
 
207
+ #~ msgid "Output Options"
208
+ #~ msgstr "Impostazioni risultati di ricerca"
 
 
209
 
210
+ #~ msgid "Show thumbnail"
211
+ #~ msgstr "Mostra thumbnail"
 
212
 
213
+ #~ msgid "Choose if you want show thumbnail and position"
214
+ #~ msgstr "Scegli se mostrare la thumbnail e dove"
 
215
 
216
+ #~ msgid "Hide thumbnail"
217
+ #~ msgstr "Nascondi thumbnail"
 
218
 
219
+ #~ msgid "Show on the Left"
220
+ #~ msgstr "Mostra a sinistra"
 
221
 
222
+ #~ msgid "Show on the Right"
223
+ #~ msgstr "Mostra a destra"
 
224
 
225
+ #~ msgid "Size of thumbnails"
226
+ #~ msgstr "Dimensione thumbnail"
 
 
 
227
 
228
+ #~ msgid "Show price"
229
+ #~ msgstr "Mostra prezzo"
 
230
 
231
+ #~ msgid "Show price of product"
232
+ #~ msgstr "Mostra prezzo prodotto"
 
 
 
 
233
 
234
+ #~ msgid "Price Label"
235
+ #~ msgstr "Etichetta prezzo"
 
236
 
237
+ #~ msgid "Show a label before the price"
238
+ #~ msgstr "Mostra un'etichetta prima del prezzo"
 
239
 
240
+ #~ msgid "Price:"
241
+ #~ msgstr "Prezzo:"
 
242
 
243
+ #~ msgid "Loader"
244
+ #~ msgstr "Icona di caricamento"
 
 
 
 
 
 
 
 
 
245
 
246
+ #~ msgid "Loader gif"
247
+ #~ msgstr "GIF icona di caricamento"
 
248
 
249
+ #~ msgid "Sales and Features badges"
250
+ #~ msgstr "Simboli \"in saldo\" e \"in evidenza\""
 
251
 
252
+ #~ msgid "Show sale badge"
253
+ #~ msgstr "Mostra adesivo \"in saldo\""
 
254
 
255
+ #~ msgid "Show sale badge if the product is on sale"
256
+ #~ msgstr "Mostra adesivo \"in saldo\" per i prodotti in saldo"
 
 
257
 
258
+ #~ msgid "Sale badge background color"
259
+ #~ msgstr "Colore sfondo adesivo \"in saldo\""
 
260
 
261
+ #~ msgid "Sale badge color"
262
+ #~ msgstr "Colore adesivo \"in saldo\""
 
263
 
264
+ #~ msgid "Show featured badge"
265
+ #~ msgstr "Mostra adesivo \"in evidenza\""
 
266
 
267
+ #~ msgid "Featured badge background color"
268
+ #~ msgstr "Colore sfondo adesivo \"in evidenza\""
 
269
 
270
+ #~ msgid "Featured badge color"
271
+ #~ msgstr "Colore adesivo \"in evidenza\""
 
 
 
 
272
 
273
+ #~ msgid "Hide featured bagde if the product is on sale"
274
+ #~ msgstr "Nascondi adesivo \"in evidenza\" per i prodotti in saldo"
 
 
 
 
 
 
275
 
276
+ #~ msgid "Title & Excerpt"
277
+ #~ msgstr "Titolo & Riassunto"
 
 
 
 
 
 
278
 
279
+ #~ msgid "Title color"
280
+ #~ msgstr "Colore titolo"
 
 
 
 
 
281
 
282
+ #~ msgid "Show excerpt"
283
+ #~ msgstr "Mostra riassunto"
 
284
 
285
+ #~ msgid "Show excerpt of product"
286
+ #~ msgstr "Mostra riassunto prodotto"
 
 
287
 
288
+ #~ msgid "Number of words to show in excerpt"
289
+ #~ msgstr "Numero di parole da mostrare nel riassunto"
 
290
 
291
+ #~ msgid "\"View All\" Link"
292
+ #~ msgstr "Link \"Visualizza tutto\""
 
 
293
 
294
+ #~ msgid "Show \"view all\" link"
295
+ #~ msgstr "Mostra link \"Visualizza tutto\""
 
296
 
297
+ #~ msgid "Add a link to the bottom of results"
298
+ #~ msgstr "Aggiungi un link sotto tutti i risultati"
 
299
 
300
+ #~ msgid "Text of \"view all\" link"
301
+ #~ msgstr "Testo del link \"Visualizza tutto\""
 
302
 
303
+ #~ msgid "Add a link at the bottom of results"
304
+ #~ msgstr "Aggiungi un link sotto tutti i risultati"
 
305
 
306
+ #~ msgid "View all"
307
+ #~ msgstr "Visualizza tutto"
 
308
 
309
+ #~ msgid "Search settings"
310
+ #~ msgstr "Impostazioni di ricerca"
 
 
311
 
312
+ #~ msgid "Choose element types to search"
313
+ #~ msgstr "Scegli il tipo di elementi da cercare"
 
314
 
315
+ #~ msgid "Choose if you want to extend search also to posts and pages"
316
+ #~ msgstr "Scegli se estendere la ricerca anche ad articoli e pagine"
 
317
 
318
+ #~ msgid "All"
319
+ #~ msgstr "Tutti"
 
320
 
321
+ #~ msgid "Products"
322
+ #~ msgstr "Prodotti"
 
323
 
324
+ #~ msgid "Search in excerpt"
325
+ #~ msgstr "Cerca in riassunto"
 
 
 
 
 
 
326
 
327
+ #~ msgid "Extend search in the excerpt of the product"
328
+ #~ msgstr "Estendi ricerca anche al riassunto del prodotto"
 
 
 
329
 
330
+ #~ msgid "Search in content"
331
+ #~ msgstr "Cerca nel contenuto"
 
332
 
333
+ #~ msgid "Extend search in the content of the product"
334
+ #~ msgstr "Estendi ricerca anche al contenuto del prodotto"
 
 
 
335
 
336
+ #~ msgid "Search in product categories"
337
+ #~ msgstr "Cerca tra le categorie prodotto"
 
 
 
 
 
 
 
 
 
 
 
338
 
339
+ #~ msgid "Extend search in product categories"
340
+ #~ msgstr "Estendi ricerca alle categorie prodotto"
 
 
 
341
 
342
+ #~ msgid "Search in product tags"
343
+ #~ msgstr "Cerca fra i tag del prodotto"
 
344
 
345
+ #~ msgid "Extend search in product tags"
346
+ #~ msgstr "Estendi ricerca ai tag del prodotto"
 
347
 
348
+ #~ msgid "Multiple Word Search"
349
+ #~ msgstr "Ricerca per più parole"
 
350
 
351
+ #~ msgid "Show items containing all words typed"
352
+ #~ msgstr "Mostra articoli contenenti tutte le parole inserite"
 
353
 
354
+ #~ msgid "Show items containing al least one of the words typed"
355
+ #~ msgstr "Mostra articoli contenenti almeno una delle parole inserite"
 
 
 
356
 
357
+ #~ msgid "Search by Sku Settings"
358
+ #~ msgstr "Impostazioni per Cerca per SKU "
 
 
 
 
 
359
 
360
+ #~ msgid ""
361
+ #~ "Extend search functionality so that search includes also sku. Attention: "
362
+ #~ "this feature may slow down the search process on some servers."
363
+ #~ msgstr ""
364
+ #~ "Estendi la funzionalità di ricerca in modo tale che sia incluso anche lo "
365
+ #~ "SKU del prodotto. Attenzione: questa funzionalità potrebbe rallentare il "
366
+ #~ "processo di ricerca su alcuni server."
367
 
368
+ #~ msgid "Search by sku"
369
+ #~ msgstr "Cerca per SKU"
 
 
370
 
371
+ #~ msgid "Extend search functionality so that search includes also sku"
372
+ #~ msgstr ""
373
+ #~ "Estendi la funzionalità di ricerca in modo tale da includere anche lo SKU"
374
 
375
+ #~ msgid "Search by sku variable products"
376
+ #~ msgstr "Cerca tra prodotti con SKU variabile"
 
 
 
 
377
 
378
+ #~ msgid "Extend sku search including variable products."
379
+ #~ msgstr "Estendi ricerca SKU includendo prodotti variabili."
 
 
380
 
381
+ #~ msgid "Maximum number of results showed in autosuggest box."
382
+ #~ msgstr "Numero massimo di risultati da mostrare nel riquadro suggerimenti."
 
383
 
384
+ #~ msgid "Additional Features"
385
+ #~ msgstr "Funzionalità aggiuntive"
 
386
 
387
+ #~ msgid ""
388
+ #~ "If these options are not showed, your theme may not support these "
389
+ #~ "features. Please, contact the developer of theme to implement them."
390
+ #~ msgstr ""
391
+ #~ "Se non visualizzi queste opzioni, il tuo tema potrebbe non supportare "
392
+ #~ "queste funzionalità. Contatta lo sviluppatore del tuo tema per "
393
+ #~ "implementarle."
394
 
395
+ #~ msgid "Show filter for search fields"
396
+ #~ msgstr "Mostra filtro per campi di ricerca"
 
397
 
398
+ #~ msgid ""
399
+ #~ "Show filter for search fields (it allows searching the Whole site or only "
400
+ #~ "among products)"
401
+ #~ msgstr ""
402
+ #~ "Mostra filtro per campi di ricerca (consente la ricerca in tutto il sito "
403
+ #~ "o solo tra i prodotti)"
404
 
405
+ #~ msgid "Show the category list"
406
+ #~ msgstr "Mostra lista categorie"
 
407
 
408
+ #~ msgid "Categories to show"
409
+ #~ msgstr "Categorie da mostrare"
 
410
 
411
+ #~ msgid ""
412
+ #~ "This option lets you decide to show all the categories or only the main "
413
+ #~ "ones"
414
+ #~ msgstr ""
415
+ #~ "Con questa opzione puoi scegliere di mostrare tutte le categorie o solo "
416
+ #~ "le principali"
417
 
418
+ #~ msgid "Main Categories"
419
+ #~ msgstr "Categorie principali"
 
420
 
421
+ #~ msgid "All Categories"
422
+ #~ msgstr "Tutte le categorie"
 
423
 
424
+ #~ msgid "Test of \"view all\" link"
425
+ #~ msgstr "Testo di"
 
426
 
 
427
  #, fuzzy
428
+ #~ msgid "Search %s"
429
+ #~ msgstr "Cerca"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
 
 
 
 
 
 
 
 
 
 
431
  #, fuzzy
432
+ #~ msgid "Search Categories"
433
+ #~ msgstr "Cerca:"
 
 
 
 
 
434
 
 
 
435
  #, fuzzy
436
+ #~ msgid "%s Settings"
437
+ #~ msgstr "Impostazioni"
438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
  #, fuzzy
440
+ #~ msgid "layout settings"
441
+ #~ msgstr "Impostazioni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
 
 
 
 
443
  #, fuzzy
444
+ #~ msgid "Plugin Settings"
445
+ #~ msgstr "Impostazioni"
446
 
447
+ #, fuzzy
448
+ #~ msgid "Settings saved"
449
+ #~ msgstr "Impostazioni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
450
 
451
+ #, fuzzy
452
+ #~ msgid "Settings reset"
453
+ #~ msgstr "Impostazioni"
454
 
455
+ #, fuzzy
456
+ #~ msgid "Maximum number of activations exceeded"
457
+ #~ msgstr "Numero massimo di risultati"
458
 
459
+ #, fuzzy
460
+ #~ msgid "Search for a product"
461
+ #~ msgstr "Cerca prodotto"
 
 
462
 
463
+ #, fuzzy
464
+ #~ msgid "Select"
465
+ #~ msgstr "Seleziona una data"
466
 
467
+ #, fuzzy
468
+ #~ msgid "File Upload"
469
+ #~ msgstr "Upload"
 
 
 
470
 
 
471
  #, fuzzy
472
+ #~ msgid "Click to toggle"
473
+ #~ msgstr "Clicca per anteprima"
474
 
475
+ #, fuzzy
476
+ #~ msgid "Insert the title for the field."
477
+ #~ msgstr "Seleziona un font"
478
 
479
+ #, fuzzy
480
+ #~ msgid "Select the type for this field."
481
+ #~ msgstr "Seleziona un font"
 
482
 
483
+ #, fuzzy
484
+ #~ msgid "Selected"
485
+ #~ msgstr "Seleziona una data"
486
 
487
+ #~ msgid "Upload"
488
+ #~ msgstr "Upload"
 
489
 
490
+ #~ msgid "px"
491
+ #~ msgstr "px"
 
492
 
493
+ #~ msgid "em"
494
+ #~ msgstr "em"
 
495
 
496
+ #~ msgid "pt"
497
+ #~ msgstr "pt"
 
498
 
499
+ #~ msgid "rem"
500
+ #~ msgstr "rem"
 
501
 
502
+ #~ msgid "Regular"
503
+ #~ msgstr "Regular"
 
504
 
505
+ #~ msgid "Bold"
506
+ #~ msgstr "Bold"
 
507
 
508
+ #~ msgid "Extra bold"
509
+ #~ msgstr "Extra bold"
 
510
 
511
+ #~ msgid "Italic"
512
+ #~ msgstr "Italic"
 
513
 
514
+ #~ msgid "Italic bold"
515
+ #~ msgstr "Italic bold"
 
516
 
517
  #~ msgid "Label for Search submit field."
518
  #~ msgstr "Etichetta per il campo di submit"
plugin-fw/assets/js/chosen/ajax-chosen.jquery.min.js CHANGED
@@ -1,3 +1,2 @@
1
- (function(b){return b.fn.ajaxChosen=function(d,g){var e,a,f;null==d&&(d={});null==g&&(g=function(){});f=this;e=null;a=b.extend({},{minTermLength:3,afterTypeDelay:500,jsonTermKey:"term"},d);this.chosen();return this.each(function(){return b(this).next(".chosen-container").find(".search-field > input, .chosen-search > input").bind("keyup",function(){var d,l,h,c;c=b.trim(b(this).attr("value"));l=c.length<a.minTermLength?"Keep typing...":"Looking for '"+c+"'";f.next(".chosen-container").find(".no-results").text(l);
2
- if(c===b(this).data("prevVal"))return!1;b(this).data("prevVal",c);this.timer&&clearTimeout(this.timer);if(c.length<a.minTermLength)return!1;d=b(this);null==a.data&&(a.data={});a.data[a.jsonTermKey]=c;null!=a.dataCallback&&(a.data=a.dataCallback(a.data));h=a.success;a.success=function(a){var e,k;if(null!=a)return k=[],f.find("option").each(function(){return b(this).is(":selected")?k.push(b(this).val()+"-"+b(this).text()):b(this).remove()}),e=g(a),b.each(e,function(a,c){if(-1===b.inArray(a+"-"+c,k))return b("<option />").attr("value",
3
- a).html(c).appendTo(f)}),f.trigger("chosen:updated"),null!=h&&h(a),d.attr("value",c),d.css("width","auto")};return this.timer=setTimeout(function(){e&&e.abort();return e=b.ajax(a)},a.afterTypeDelay)})})}})(jQuery);
1
+ // Generated by CoffeeScript 1.3.1
2
+ (function(e){return e.fn.ajaxChosen=function(t,n){var r,i,s,o;t==null&&(t={});n==null&&(n=function(){});i={minTermLength:3,afterTypeDelay:500,jsonTermKey:"term"};o=this;r=null;s=e.extend({},i,t);this.chosen();return this.each(function(){return e(this).next(".chosen-container").find(".search-field > input, .chosen-search > input").bind("keyup",function(){var t,i,u,a;a=e.trim(e(this).attr("value"));i=a.length<s.minTermLength?"Keep typing...":"Looking for '"+a+"'";o.next(".chosen-container").find(".no-results").text(i);if(a===e(this).data("prevVal"))return!1;e(this).data("prevVal",a);this.timer&&clearTimeout(this.timer);if(a.length<s.minTermLength)return!1;t=e(this);s.data==null&&(s.data={});s.data[s.jsonTermKey]=a;s.dataCallback!=null&&(s.data=s.dataCallback(s.data));u=s.success;s.success=function(r){var i,s;if(r==null)return;s=[];o.find("option").each(function(){return e(this).is(":selected")?s.push(e(this).val()+"-"+e(this).text()):e(this).remove()});i=n(r);e.each(i,function(t,n){if(e.inArray(t+"-"+n,s)===-1)return e("<option />").attr("value",t).html(n).appendTo(o)});o.trigger("chosen:updated");u!=null&&u(r);t.attr("value",a);return t.css("width","auto")};return this.timer=setTimeout(function(){r&&r.abort();return r=e.ajax(s)},s.afterTypeDelay)})})}})(jQuery);
 
plugin-fw/assets/js/metabox.min.js CHANGED
@@ -1,6 +1,6 @@
1
  (function(a){function k(b,c,d){var e=!0;if("string"==typeof c){":radio"==c.substr(0,6)&&(c+=":checked");var g=a(c).val();"checkbox"==a(c).attr("type")&&(g=a(c).is(":checked")?"yes":"no");d=d.split(",");for(c=0;c<d.length;c++)if(g!=d[c])e=!1;else{e=!0;break}}e?a(b+"-container").parent().show():a(b+"-container").parent().hide()}a(".metaboxes-tab").each(function(){a(".tabs-panel",this).hide();var b=wpCookies.get("active_metabox_tab"),b=null==b?a("ul.metaboxes-tabs li:first-child a",this).attr("href"):
2
- "#"+b;a(b).show();a(".metaboxes-tabs a",this).click(function(b){if(a(this).parent().hasClass("tabs"))b.preventDefault();else return b=a(this).attr("href"),a(this).parent().addClass("tabs").siblings("li").removeClass("tabs"),a(this).closest(".metaboxes-tab").find(".tabs-panel").slideUp("fast"),a(b).delay(350).slideDown("fast"),!1})});var h=!0,l=wp.media.editor.send.attachment;a(document).on("click",".metaboxes-tab .upload_button",function(b){b=a(this);if("undefined"!=typeof b.attr("id")){var c=b.attr("id").replace("-button",
3
- "");h=!0;wp.media.editor.send.attachment=function(b,e){if(h)a("#"+c).is("input[type=text]")?a("#"+c).val(e.url):a("#"+c+"_custom").val(e.url);else return l.apply(this,[b,e])};wp.media.editor.open(b);return!1}});a(".metaboxes-tab .add_media").on("click",function(){h=!1});a(".metaboxes-tab .panel-colorpicker").wpColorPicker({onInit:function(){console.log("test")},change:function(a,c){},clear:function(){var b=a(this);b.val(b.data("default-color"));b.change()}});a(".metaboxes-tab .panel-colorpicker").each(function(){var b=
4
  a(this).data("variations-label");a(this).parent().parent().find("a.wp-color-result").attr("title",b)});a(".metaboxes-tab .panel-datepicker").each(function(){a(this).datepicker()});var f=function(){var b="";a(this).attr("multiple")?(a(this).children("option:selected").each(function(c,d){0!=c&&(b+=", ");b+=a(d).text()}),""==b&&a(this).children().children("option:selected").each(function(c,d){0!=c&&(b+=", ");b+=a(d).text()})):(b=a(this).children("option:selected").text(),""==b&&(b=a(this).children().children("option:selected").text()));
5
  0>=a(this).parent().find("span").length&&a(this).before("<span></span>");a(this).parent().children("span").replaceWith("<span>"+b+"</span>")};a(".metaboxes-tab .select_wrapper select").not(".chosen").each(f).change(f);a(".metaboxes-tab .select_wrapper").click(function(b){b.stopPropagation();a(this).find("select[multiple]").not(".chosen").toggle()});a(".metaboxes-tab .select_wrapper select[multiple]").not(".chosen").click(function(a){a.stopPropagation()});a(window).click(function(){a(".metaboxes-tab .select_wrapper select[multiple]").not(".chosen").hide()});
6
  a(".metaboxes-tab .onoff_container span").on("click",function(){var b=a(this).prev("input");b.prop("checked")?b.prop("checked",!1).attr("value","no").removeClass("onoffchecked"):b.prop("checked",!0).attr("value","yes").addClass("onoffchecked");b.change()});a(".metaboxes-tab .chosen .select_wrapper select").chosen();a(".metaboxes-tab .slider_container .ui-slider-horizontal").each(function(){var b=a(this).data("val"),c=a(this).data("min"),d=a(this).data("max"),e=a(this).data("step"),g=a(this).data("labels");
1
  (function(a){function k(b,c,d){var e=!0;if("string"==typeof c){":radio"==c.substr(0,6)&&(c+=":checked");var g=a(c).val();"checkbox"==a(c).attr("type")&&(g=a(c).is(":checked")?"yes":"no");d=d.split(",");for(c=0;c<d.length;c++)if(g!=d[c])e=!1;else{e=!0;break}}e?a(b+"-container").parent().show():a(b+"-container").parent().hide()}a(".metaboxes-tab").each(function(){a(".tabs-panel",this).hide();var b=wpCookies.get("active_metabox_tab"),b=null==b?a("ul.metaboxes-tabs li:first-child a",this).attr("href"):
2
+ "#"+b;a(b).show();a(".metaboxes-tabs a",this).click(function(b){if(a(this).parent().hasClass("tabs"))b.preventDefault();else return b=a(this).attr("href"),a(this).parent().addClass("tabs").siblings("li").removeClass("tabs"),a(this).closest(".metaboxes-tab").find(".tabs-panel").slideUp("fast"),a(b).delay(350).slideDown("fast"),!1})});var h=!0,l=wp.media.editor.send.attachment;a(document).on("click",".metaboxes-tab .upload_button",function(b){b=a(this);var c=b.attr("id").replace("-button","");h=!0;
3
+ wp.media.editor.send.attachment=function(b,e){if(h)a("#"+c).is("input[type=text]")?a("#"+c).val(e.url):a("#"+c+"_custom").val(e.url);else return l.apply(this,[b,e])};wp.media.editor.open(b);return!1});a(".metaboxes-tab .add_media").on("click",function(){h=!1});a(".metaboxes-tab .panel-colorpicker").wpColorPicker({onInit:function(){console.log("test")},change:function(a,c){},clear:function(){var b=a(this);b.val(b.data("default-color"));b.change()}});a(".metaboxes-tab .panel-colorpicker").each(function(){var b=
4
  a(this).data("variations-label");a(this).parent().parent().find("a.wp-color-result").attr("title",b)});a(".metaboxes-tab .panel-datepicker").each(function(){a(this).datepicker()});var f=function(){var b="";a(this).attr("multiple")?(a(this).children("option:selected").each(function(c,d){0!=c&&(b+=", ");b+=a(d).text()}),""==b&&a(this).children().children("option:selected").each(function(c,d){0!=c&&(b+=", ");b+=a(d).text()})):(b=a(this).children("option:selected").text(),""==b&&(b=a(this).children().children("option:selected").text()));
5
  0>=a(this).parent().find("span").length&&a(this).before("<span></span>");a(this).parent().children("span").replaceWith("<span>"+b+"</span>")};a(".metaboxes-tab .select_wrapper select").not(".chosen").each(f).change(f);a(".metaboxes-tab .select_wrapper").click(function(b){b.stopPropagation();a(this).find("select[multiple]").not(".chosen").toggle()});a(".metaboxes-tab .select_wrapper select[multiple]").not(".chosen").click(function(a){a.stopPropagation()});a(window).click(function(){a(".metaboxes-tab .select_wrapper select[multiple]").not(".chosen").hide()});
6
  a(".metaboxes-tab .onoff_container span").on("click",function(){var b=a(this).prev("input");b.prop("checked")?b.prop("checked",!1).attr("value","no").removeClass("onoffchecked"):b.prop("checked",!0).attr("value","yes").addClass("onoffchecked");b.change()});a(".metaboxes-tab .chosen .select_wrapper select").chosen();a(".metaboxes-tab .slider_container .ui-slider-horizontal").each(function(){var b=a(this).data("val"),c=a(this).data("min"),d=a(this).data("max"),e=a(this).data("step"),g=a(this).data("labels");
plugin-fw/assets/js/multisite-updater.min.js CHANGED
@@ -1,4 +1,4 @@
1
- (function(m){function n(c,d,k){this.php_js=this.php_js||{};this.php_js.ENV=this.php_js.ENV||{};var a=0,e=0,b=0,f={dev:-6,alpha:-5,a:-5,beta:-4,b:-4,RC:-3,rc:-3,"#":-2,p:1,pl:1},a=function(a){a=(""+a).replace(/[_\-+]/g,".");a=a.replace(/([^.\d]+)/g,".$1.").replace(/\.{2,}/g,".");return a.length?a.split("."):[-8]};numVersion=function(a){return a?isNaN(a)?f[a]||-7:parseInt(a,10):0};c=a(c);d=a(d);e=Math.max(c.length,d.length);for(a=0;a<e;a++)if(c[a]!=d[a])if(c[a]=numVersion(c[a]),d[a]=numVersion(d[a]),
2
- c[a]<d[a]){b=-1;break}else if(c[a]>d[a]){b=1;break}if(!k)return b;switch(k){case ">":case "gt":return 0<b;case ">=":case "ge":return 0<=b;case "<=":case "le":return 0>=b;case "==":case "=":case "eq":return 0===b;case "<>":case "!=":case "ne":return 0!==b;case "":case "<":case "lt":return 0>b;default:return null}}var l=m("#menu-plugins"),g=l.find(".update-plugins").find(".update-count").text(),p=plugins.registered,q=plugins.activated;if(0==g||""==g)g=0,l.find(".wp-menu-name").append('<span class="update-plugins"><span class="plugin-count"></span></span>');
3
- (function(c,d,k,a){for(var e in c){var b=c[e],f;for(f in b)if("slug"!=f&&!n(b[f].Version,b[f].Latest,">=")){k=parseInt(k)+1;m(".plugin-count").empty().html(k);var g=""+b[f].Name,l="#"+g.replace(RegExp(" ","g"),"-").trim().toLowerCase();m(l).addClass("update");var h='<tr class="plugin-update-tr"><td colspan="3" class="plugin-update colspanchange"><div class="update-message">'+a.strings.new_version.replace("%plugin_name%",g)+'<a class="thickbox" href="'+a.details_url[e]+'">'+a.strings.latest.replace("%latest%",
4
- b[f].Latest)+"</a>",h="undefined"==typeof d[e]?h+" <em>"+a.strings.unavailable+"</em>"+a.strings.activate.replace("%activate_link%",a.licence_activation_url).replace("%plugin_name%",g):h+'. <a href="'+a.update_url[e]+'">'+a.strings.update_now+"</a>";"undefined"!=typeof a.changelogs[e]&&(h+=a.changelogs[e]);h+="</div></td></tr>";m(h).insertAfter(l)}}})(p,q,g,plugins)})(jQuery);
1
+ (function(m){function n(c,d,k){this.php_js=this.php_js||{};this.php_js.ENV=this.php_js.ENV||{};var a=0,e=0,b=0,f={dev:-6,alpha:-5,a:-5,beta:-4,b:-4,RC:-3,rc:-3,"#":-2,p:1,pl:1},a=function(a){a=(""+a).replace(/[_\-+]/g,".");a=a.replace(/([^.\d]+)/g,".$1.").replace(/\.{2,}/g,".");return a.length?a.split("."):[-8]};numVersion=function(a){return a?isNaN(a)?f[a]||-7:parseInt(a,10):0};c=a(c);d=a(d);e=Math.max(c.length,d.length);for(a=0;a<e;a++)if(c[a]!=d[a])if(c[a]=numVersion(c[a]),d[a]=numVersion(d[a]),
2
+ c[a]<d[a]){b=-1;break}else if(c[a]>d[a]){b=1;break}if(!k)return b;switch(k){case ">":case "gt":return 0<b;case ">=":case "ge":return 0<=b;case "<=":case "le":return 0>=b;case "==":case "=":case "eq":return 0===b;case "<>":case "!=":case "ne":return 0!==b;case "":case "<":case "lt":return 0>b;default:return null}}var l=m("#menu-plugins"),g=l.find(".update-plugins").find(".update-count").text(),p=plugins.registered,q=plugins.activated;if(0==g||""==g)g=0,l.find(".wp-menu-name").append('<span class="update-plugins"><span class="plugin-count"></span></span>');
3
+ (function(c,d,k,a){for(var e in c){var b=c[e],f;for(f in b)if("slug"!=f&&!n(b[f].Version,b[f].Latest,">=")){k=parseInt(k)+1;m(".plugin-count").empty().html(k);var g=""+b[f].Name,l="#"+g.replace(RegExp(" ","g"),"-").trim().toLowerCase();m(l).addClass("update");var h='<tr class="plugin-update-tr"><td colspan="3" class="plugin-update colspanchange"><div class="update-message">'+a.strings.new_version.replace("%plugin_name%",g)+'<a class="thickbox" href="'+a.details_url[e]+'">'+a.strings.latest.replace("%latest%",
4
+ b[f].Latest)+"</a>",h="undefined"==typeof d[e]?h+" <em>"+a.strings.unavailable+"</em>"+a.strings.activate.replace("%activate_link%",a.licence_activation_url).replace("%plugin_name%",g):h+'. <a href="'+a.update_url[e]+'">'+a.strings.update_now+"</a>";"undefined"!=typeof a.changelogs[e]&&(h+=a.changelogs[e]);h+="</div></td></tr>";m(h).insertAfter(l)}}})(p,q,g,plugins)})(jQuery);
plugin-fw/assets/js/yit-plugin-panel.min.js CHANGED
@@ -7,4 +7,4 @@ function(){});a("[data-field]").each(function(){var b=a(this),c="#"+b.data("fiel
7
  b.sortable({connectWith:b,update:function(d,e){var f={};b.each(function(){var b={};a(this).children().each(function(){b[a(this).data("option")]=a(this).text()});f[a(this).data("list")]=b});c.val(JSON.stringify(f).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()});a(document).ready(function(){a(".yith-video-link").click(function(b){b.preventDefault();b=a(this).data("video-id");a("."+b).dialog({dialogClass:"wp-dialog yit-dialog yit-video-dialog",modal:!0,closeOnEscape:!0,width:"auto",
8
  resizable:!1,draggable:!1,create:function(b,d){a(this).css("maxWidth","853px")},open:function(b,d){a(".ui-widget-overlay").bind("click",function(){a(this).siblings(".ui-dialog").find(".ui-dialog-content").dialog("close")})}});a(".ui-dialog :button").blur()})});a(document).ready(function(){a(".codemirror").each(function(b,c){var d=CodeMirror.fromTextArea(c,{lineNumbers:1,mode:"javascript",showCursorWhenSelecting:!0});a(c).data("codemirrorInstance",d)})});a(document).ready(function(){a(".google-analytic-generate").click(function(){var b=
9
  a("#"+a(this).data("textarea")).data("codemirrorInstance"),c=a("#"+a(this).data("input")).val(),d=a(this).data("basename"),e;e="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\nm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n";e+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n";e+="ga('create', '"+c+"', '"+d+"');\n";e+="ga('send', 'pageview');\n";
10
- b.replaceRange(e,b.getCursor("start"),b.getCursor("end"))})})})(jQuery);
7
  b.sortable({connectWith:b,update:function(d,e){var f={};b.each(function(){var b={};a(this).children().each(function(){b[a(this).data("option")]=a(this).text()});f[a(this).data("list")]=b});c.val(JSON.stringify(f).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()});a(document).ready(function(){a(".yith-video-link").click(function(b){b.preventDefault();b=a(this).data("video-id");a("."+b).dialog({dialogClass:"wp-dialog yit-dialog yit-video-dialog",modal:!0,closeOnEscape:!0,width:"auto",
8
  resizable:!1,draggable:!1,create:function(b,d){a(this).css("maxWidth","853px")},open:function(b,d){a(".ui-widget-overlay").bind("click",function(){a(this).siblings(".ui-dialog").find(".ui-dialog-content").dialog("close")})}});a(".ui-dialog :button").blur()})});a(document).ready(function(){a(".codemirror").each(function(b,c){var d=CodeMirror.fromTextArea(c,{lineNumbers:1,mode:"javascript",showCursorWhenSelecting:!0});a(c).data("codemirrorInstance",d)})});a(document).ready(function(){a(".google-analytic-generate").click(function(){var b=
9
  a("#"+a(this).data("textarea")).data("codemirrorInstance"),c=a("#"+a(this).data("input")).val(),d=a(this).data("basename"),e;e="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\nm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n";e+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n";e+="ga('create', '"+c+"', '"+d+"');\n";e+="ga('send', 'pageview');\n";
10
+ b.replaceRange(e,b.getCursor("start"),b.getCursor("end"))})})})(jQuery);
plugin-fw/assets/js/yit-wp-pointer.min.js CHANGED
@@ -1,3 +1,3 @@
1
- jQuery(document).ready(function(b){var c=custom_pointer.pointers[0],d=c.options,a=b(c.target),e=c.pointer_id;b(a).find(".wp-submenu li a").each(function(){var f=b(this),h=f.attr("href"),h=h.replace("admin.php?page=","");if(h==e){var k=f.add(a),g=a.find(c.target.replace("#","."));a.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu");f.pointer({pointerClass:"yit-wp-pointer",content:d.content,position:d.position,open:function(){k.toggleClass("yit-pointer-selected-row");g.addClass("yit-pointer")},
2
- close:function(){a.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu");k.toggleClass("yit-pointer-selected-row");g.removeClass("yit-pointer");b.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:e},success:function(a){}})}}).pointer("open")}else if("yith_default_pointer"==e){var k=f.add(a),g=a.find(c.target.replace("#",".")),l=b(c.target);l.addClass("wp-has-current-submenu");g.pointer({pointerClass:"yit-wp-pointer",content:d.content,position:d.position,open:function(){l.addClass("yit-pointer-selected-row")},
3
- close:function(){l.removeClass("yit-pointer-selected-row wp-has-current-submenu");b.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:e},success:function(a){}})}}).pointer("open")}})});
1
+ jQuery(document).ready(function(b){var c=custom_pointer.pointers[0],d=c.options,a=b(c.target),e=c.pointer_id;b(a).find(".wp-submenu li a").each(function(){var f=b(this),h=f.attr("href"),h=h.replace("admin.php?page=","");if(h==e){var k=f.add(a),g=a.find(c.target.replace("#","."));a.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu");f.pointer({pointerClass:"yit-wp-pointer",content:d.content,position:d.position,open:function(){console.log("here");k.toggleClass("yit-pointer-selected-row");
2
+ g.addClass("yit-pointer")},close:function(){a.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu");k.toggleClass("yit-pointer-selected-row");g.removeClass("yit-pointer");b.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:e},success:function(a){}})}}).pointer("open")}else if("yith_default_pointer"==e){var k=f.add(a),g=a.find(c.target.replace("#",".")),l=b(c.target);l.addClass("wp-has-current-submenu");g.pointer({pointerClass:"yit-wp-pointer",content:d.content,
3
+ position:d.position,open:function(){l.addClass("yit-pointer-selected-row")},close:function(){l.removeClass("yit-pointer-selected-row wp-has-current-submenu");b.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:e},success:function(a){}})}}).pointer("open")}})});
plugin-fw/languages/yith-plugin-fw-it_IT.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-it_IT.po CHANGED
@@ -5,14 +5,14 @@ msgstr ""
5
  "Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
6
  "Report-Msgid-Bugs-To: Your Inspiration Themes <plugins@yithemes.com>\n"
7
  "POT-Creation-Date: 2015-05-11 17:13+0100\n"
8
- "PO-Revision-Date: 2015-05-11 17:15+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
11
  "Language: en\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=utf-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.7.3\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
@@ -233,7 +233,7 @@ msgstr "Impostazioni plugin"
233
 
234
  #: lib/yit-plugin-panel.php:95 lib/yit-plugin-subpanel.php:101
235
  msgid "YIT Plugins"
236
- msgstr "Plugin YIT"
237
 
238
  #: lib/yit-plugin-panel.php:292 lib/yit-plugin-subpanel.php:142
239
  #: templates/panel/woocommerce/woocommerce-form.php:5
5
  "Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
6
  "Report-Msgid-Bugs-To: Your Inspiration Themes <plugins@yithemes.com>\n"
7
  "POT-Creation-Date: 2015-05-11 17:13+0100\n"
8
+ "PO-Revision-Date: 2015-07-24 16:13+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
11
  "Language: en\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=utf-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
233
 
234
  #: lib/yit-plugin-panel.php:95 lib/yit-plugin-subpanel.php:101
235
  msgid "YIT Plugins"
236
+ msgstr "YIT Plugins"
237
 
238
  #: lib/yit-plugin-panel.php:292 lib/yit-plugin-subpanel.php:142
239
  #: templates/panel/woocommerce/woocommerce-form.php:5
plugin-fw/licence/assets/js/yit-licence.min.js CHANGED
@@ -1,4 +1,4 @@
1
- (function(b){var g=function(d){d.on("click",function(u,d){u.preventDefault();var e=b(this),a=e.data("formid"),c=b("#"+a),f=c.serialize(),h=b(c).find(".message"),l=b(c).find(".message-wrapper"),r=c.find(".user-email"),t=c.find(".licence-key"),g=c.find(".user-email").val(),q=c.find(".licence-key").val(),m=!1,a=[],n=c.find(".product-row"),p=b("h3.to-active").find(".spinner");h.empty();l.removeClass("visible");r.removeClass("require");t.removeClass("require");n.removeClass("error");p.addClass("show");
2
- e.prop("disabled",!0).addClass("clicked");""==g&&(m=!0,a[a.length]="Email",r.addClass("require"));""==q&&(m=!0,a[a.length]="Licence Key",t.addClass("require"));if(0==m)jQuery.ajax({type:"POST",url:ajaxurl,data:f,success:function(a){p.removeClass("show");e.prop("disabled",!1).removeClass("clicked");1==a.activated?(b(".product-licence-activation").empty().replaceWith(a.template),k()):(0!=a?h.text(a.error):h.text(licence_message.server),l.addClass("visible"),n.addClass("error"))}});else{if(1==a.length)h.text(licence_message.error.replace("%field%",
3
- a[0]));else{c=licence_message.errors;for(f=0;f<a.length;f++)c=c.replace("%field_"+(f+1)+"%",a[f]),l.addClass("visible");h.text(c)}l.addClass("visible");n.addClass("error");p.removeClass("show");e.prop("disabled",!1).removeClass("clicked")}})},q=function(d){d.on("click",function(d){d.preventDefault();d=b(this);var g=b("#licence-check-update"),e=g.serialize();d.prop("disabled",!0).addClass("clicked");g.find("div.spinner").addClass("show");jQuery.ajax({type:"POST",url:ajaxurl,data:e,success:function(a){b(".product-licence-activation").empty().replaceWith(a.template);
4
- k()}})})},k=function(){var d=b(".licence-activation"),k=b(".licence-check");g(d);q(k)};k();b("body").on("click",".yit-changelog-button",function(d){b("#TB_window").remove()})})(jQuery);
1
+ (function(b){var g=function(d){d.on("click",function(u,d){u.preventDefault();var e=b(this),a=e.data("formid"),c=b("#"+a),f=c.serialize(),h=b(c).find(".message"),l=b(c).find(".message-wrapper"),r=c.find(".user-email"),t=c.find(".licence-key"),g=c.find(".user-email").val(),q=c.find(".licence-key").val(),m=!1,a=[],n=c.find(".product-row"),p=b("h3.to-active").find(".spinner");h.empty();l.removeClass("visible");r.removeClass("require");t.removeClass("require");n.removeClass("error");p.addClass("show");
2
+ e.prop("disabled",!0).addClass("clicked");""==g&&(m=!0,a[a.length]="Email",r.addClass("require"));""==q&&(m=!0,a[a.length]="Licence Key",t.addClass("require"));if(0==m)jQuery.ajax({type:"POST",url:ajaxurl,data:f,success:function(a){p.removeClass("show");e.prop("disabled",!1).removeClass("clicked");1==a.activated?(b(".product-licence-activation").empty().replaceWith(a.template),k()):(0!=a?h.text(a.error):h.text(licence_message.server),l.addClass("visible"),n.addClass("error"))}});else{if(1==a.length)h.text(licence_message.error.replace("%field%",
3
+ a[0]));else{c=licence_message.errors;for(f=0;f<a.length;f++)c=c.replace("%field_"+(f+1)+"%",a[f]),l.addClass("visible");h.text(c)}l.addClass("visible");n.addClass("error");p.removeClass("show");e.prop("disabled",!1).removeClass("clicked")}})},q=function(d){d.on("click",function(d){d.preventDefault();d=b(this);var g=b("#licence-check-update"),e=g.serialize();d.prop("disabled",!0).addClass("clicked");g.find("div.spinner").addClass("show");jQuery.ajax({type:"POST",url:ajaxurl,data:e,success:function(a){b(".product-licence-activation").empty().replaceWith(a.template);
4
+ k()}})})},k=function(){var d=b(".licence-activation"),k=b(".licence-check");g(d);q(k)};k();b("body").on("click",".yit-changelog-button",function(d){b("#TB_window").remove()})})(jQuery);