Version Description
Released Oct 20 - 2016
- Added: Support to WooCommerce 2.6.5
- Added: Support to WordPress 4.6.1
- Fixed: Responsive style.
- Fixed: Add inline css using WordPress function wp_add_inline_style.
- Updated: Plugin Core.
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Quick View |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- README.txt +16 -6
- assets/css/yith-quick-view.css +64 -33
- assets/js/frontend.js +26 -2
- assets/js/frontend.min.js +1 -2
- class.yith-wcqv-admin.php +1 -1
- class.yith-wcqv-frontend.php +22 -20
- class.yith-wcqv.php +9 -6
- init.php +3 -3
- plugin-fw/assets/js/yit-plugin-panel.js +11 -0
- plugin-fw/assets/js/yit-plugin-panel.min.js +1 -10
- plugin-fw/init.php +2 -1
- plugin-fw/languages/yith-plugin-fw-es_ES.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-es_ES.po +287 -260
- plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-it_IT.po +299 -282
- plugin-fw/languages/yith-plugin-fw.pot +36 -126
- plugin-fw/lib/yit-metabox.php +1 -1
- plugin-fw/lib/yit-plugin-panel-sidebar.php +8 -5
- plugin-fw/lib/yit-plugin-panel-wc.php +1 -1
- plugin-fw/lib/yit-plugin-panel.php +4 -3
- plugin-fw/lib/yit-pointers.php +5 -5
- plugin-fw/lib/yit-upgrade.php +16 -7
- plugin-fw/licence/lib/yit-licence.php +2 -2
- plugin-fw/licence/templates/panel/activation/activation-panel.php +2 -2
- plugin-fw/templates/panel/types/colorpicker.php +38 -0
- plugin-fw/templates/panel/types/number.php +35 -0
- plugin-fw/templates/panel/types/upload.php +1 -1
- plugin-fw/templates/panel/woocommerce/woocommerce-form.php +25 -23
README.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: yithemes
|
3 |
Tags: yith, woocommerce, quick view, woocommerce quick view, yit, single product, products quick view, free quick view, woocommerce extension, woocommerce plugin, product summary, summary, modal
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -42,6 +42,14 @@ Full documentation is available [here](http://yithemes.com/docs-plugins/yith-woo
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
= 1.1.2 = Released Jun 10 - 2016
|
46 |
|
47 |
* Added: Added minimized js files. Plugin loads full files version if the constant "SCRIPT_DEBUG" is defined and is true.
|
@@ -122,8 +130,10 @@ If you have created your own language pack, or have an update for an existing on
|
|
122 |
|
123 |
== Upgrade notice ==
|
124 |
|
125 |
-
= 1.1.
|
126 |
|
127 |
-
* Added:
|
128 |
-
* Added: Support to
|
129 |
-
*
|
|
|
|
2 |
Contributors: yithemes
|
3 |
Tags: yith, woocommerce, quick view, woocommerce quick view, yit, single product, products quick view, free quick view, woocommerce extension, woocommerce plugin, product summary, summary, modal
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 4.6.1
|
6 |
+
Stable tag: 1.1.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 1.1.3 = Released Oct 20 - 2016
|
46 |
+
|
47 |
+
* Added: Support to WooCommerce 2.6.5
|
48 |
+
* Added: Support to WordPress 4.6.1
|
49 |
+
* Fixed: Responsive style.
|
50 |
+
* Fixed: Add inline css using WordPress function wp_add_inline_style.
|
51 |
+
* Updated: Plugin Core.
|
52 |
+
|
53 |
= 1.1.2 = Released Jun 10 - 2016
|
54 |
|
55 |
* Added: Added minimized js files. Plugin loads full files version if the constant "SCRIPT_DEBUG" is defined and is true.
|
130 |
|
131 |
== Upgrade notice ==
|
132 |
|
133 |
+
= 1.1.3 = Released Oct 20 - 2016
|
134 |
|
135 |
+
* Added: Support to WooCommerce 2.6.5
|
136 |
+
* Added: Support to WordPress 4.6.1
|
137 |
+
* Fixed: Responsive style.
|
138 |
+
* Fixed: Add inline css using WordPress function wp_add_inline_style.
|
139 |
+
* Updated: Plugin Core.
|
assets/css/yith-quick-view.css
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#yith-quick-view-modal {
|
2 |
position: fixed;
|
3 |
visibility: hidden;
|
@@ -5,17 +14,22 @@
|
|
5 |
left: 0;
|
6 |
right: 0;
|
7 |
bottom: 0;
|
8 |
-
z-index:
|
9 |
opacity: 0;
|
10 |
text-align: center;
|
11 |
-webkit-transition: all 0.3s;
|
12 |
-moz-transition: all 0.3s;
|
13 |
transition: all 0.3s;
|
14 |
}
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
18 |
}
|
|
|
19 |
#yith-quick-view-modal .yith-quick-view-overlay {
|
20 |
position: absolute;
|
21 |
top: 0;
|
@@ -24,44 +38,43 @@
|
|
24 |
left: 0;
|
25 |
background: rgba( 0, 0, 0, 0.8);
|
26 |
}
|
27 |
-
|
28 |
-
content: '';
|
29 |
-
display: inline-block;
|
30 |
-
vertical-align: middle;
|
31 |
-
height: 100%;
|
32 |
-
width: 0;
|
33 |
-
}
|
34 |
#yith-quick-view-modal .yith-wcqv-wrapper {
|
35 |
display: inline-block;
|
36 |
vertical-align: middle;
|
37 |
-
min-width: 300px;
|
38 |
-
max-width: 1000px;
|
39 |
-
height: 700px;
|
40 |
-
overflow: hidden;
|
41 |
-
z-index: 2000;
|
42 |
visibility: hidden;
|
43 |
-webkit-backface-visibility: hidden;
|
44 |
-moz-backface-visibility: hidden;
|
45 |
backface-visibility: hidden;
|
46 |
-
text-align:
|
47 |
-
|
48 |
-
|
49 |
-
#yith-quick-view-modal.open .yith-wcqv-wrapper {
|
50 |
-
visibility: visible;
|
51 |
}
|
|
|
52 |
#yith-quick-view-modal .yith-wcqv-main {
|
53 |
-webkit-transform: translateY(20%);
|
54 |
-moz-transform: translateY(20%);
|
55 |
-ms-transform: translateY(20%);
|
56 |
transform: translateY(20%);
|
57 |
opacity: 0;
|
|
|
58 |
-webkit-transition: all 0.3s;
|
59 |
-moz-transition: all 0.3s;
|
60 |
transition: all 0.3s;
|
61 |
-
-webkit-box-shadow: 0 0 0
|
62 |
-
box-shadow: 0 0 0
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
|
|
65 |
#yith-quick-view-modal .yith-wcqv-main:after,
|
66 |
#yith-quick-view-modal .yith-wcqv-main:before {
|
67 |
content: '';
|
@@ -77,14 +90,6 @@
|
|
77 |
height: 100%;
|
78 |
overflow-y: scroll;
|
79 |
}
|
80 |
-
@media screen and ( max-height: 800px ){
|
81 |
-
#yith-quick-view-modal .yith-wcqv-wrapper {
|
82 |
-
height: 80%;
|
83 |
-
}
|
84 |
-
#yith-quick-view-modal.open .yith-wcqv-main {
|
85 |
-
overflow-y: scroll;
|
86 |
-
}
|
87 |
-
}
|
88 |
|
89 |
#yith-quick-view-close {
|
90 |
border: 1px solid;
|
@@ -105,8 +110,15 @@
|
|
105 |
-moz-transition: all 0.2s ease;
|
106 |
-ms-transition: all 0.2s ease;
|
107 |
}
|
|
|
|
|
|
|
|
|
108 |
#yith-quick-view-content div.summary {
|
109 |
-
|
|
|
|
|
|
|
110 |
}
|
111 |
#yith-quick-view-content div.woocommerce-product-rating:after,
|
112 |
#yith-quick-view-content div.woocommerce-product-rating:before {
|
@@ -117,7 +129,26 @@
|
|
117 |
#yith-quick-view-content div.woocommerce-product-rating a.woocommerce-review-link {
|
118 |
display: none;
|
119 |
}
|
|
|
|
|
|
|
|
|
|
|
120 |
|
121 |
li.product .yith-wcqv-button .blockUI.blockOverlay:before {
|
122 |
background: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
1 |
+
/*=======================
|
2 |
+
* MODAL POPUP STYLE
|
3 |
+
========================*/
|
4 |
+
|
5 |
+
html.yith-quick-view-is-open,
|
6 |
+
html.yith-quick-view-is-open body {
|
7 |
+
overflow: hidden;
|
8 |
+
}
|
9 |
+
|
10 |
#yith-quick-view-modal {
|
11 |
position: fixed;
|
12 |
visibility: hidden;
|
14 |
left: 0;
|
15 |
right: 0;
|
16 |
bottom: 0;
|
17 |
+
z-index: 1400;
|
18 |
opacity: 0;
|
19 |
text-align: center;
|
20 |
-webkit-transition: all 0.3s;
|
21 |
-moz-transition: all 0.3s;
|
22 |
transition: all 0.3s;
|
23 |
}
|
24 |
+
|
25 |
+
#yith-quick-view-modal:before {
|
26 |
+
content: '';
|
27 |
+
display: inline-block;
|
28 |
+
vertical-align: middle;
|
29 |
+
height: 100%;
|
30 |
+
width: 0;
|
31 |
}
|
32 |
+
|
33 |
#yith-quick-view-modal .yith-quick-view-overlay {
|
34 |
position: absolute;
|
35 |
top: 0;
|
38 |
left: 0;
|
39 |
background: rgba( 0, 0, 0, 0.8);
|
40 |
}
|
41 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
#yith-quick-view-modal .yith-wcqv-wrapper {
|
43 |
display: inline-block;
|
44 |
vertical-align: middle;
|
|
|
|
|
|
|
|
|
|
|
45 |
visibility: hidden;
|
46 |
-webkit-backface-visibility: hidden;
|
47 |
-moz-backface-visibility: hidden;
|
48 |
backface-visibility: hidden;
|
49 |
+
text-align: left;
|
50 |
+
height: 700px;
|
51 |
+
width: 1000px;
|
|
|
|
|
52 |
}
|
53 |
+
|
54 |
#yith-quick-view-modal .yith-wcqv-main {
|
55 |
-webkit-transform: translateY(20%);
|
56 |
-moz-transform: translateY(20%);
|
57 |
-ms-transform: translateY(20%);
|
58 |
transform: translateY(20%);
|
59 |
opacity: 0;
|
60 |
+
height: 100%;
|
61 |
-webkit-transition: all 0.3s;
|
62 |
-moz-transition: all 0.3s;
|
63 |
transition: all 0.3s;
|
64 |
+
-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
|
65 |
+
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
|
66 |
+
}
|
67 |
+
|
68 |
+
#yith-quick-view-modal.open,
|
69 |
+
#yith-quick-view-modal.open .yith-wcqv-wrapper {
|
70 |
+
visibility: visible;
|
71 |
+
opacity: 1;
|
72 |
+
}
|
73 |
+
|
74 |
+
#yith-quick-view-modal .yith-quick-view-content {
|
75 |
+
height: 100%;
|
76 |
}
|
77 |
+
|
78 |
#yith-quick-view-modal .yith-wcqv-main:after,
|
79 |
#yith-quick-view-modal .yith-wcqv-main:before {
|
80 |
content: '';
|
90 |
height: 100%;
|
91 |
overflow-y: scroll;
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
#yith-quick-view-close {
|
95 |
border: 1px solid;
|
110 |
-moz-transition: all 0.2s ease;
|
111 |
-ms-transition: all 0.2s ease;
|
112 |
}
|
113 |
+
#yith-quick-view-content div.images {
|
114 |
+
width: 40%;
|
115 |
+
float: left;
|
116 |
+
}
|
117 |
#yith-quick-view-content div.summary {
|
118 |
+
margin: 0;
|
119 |
+
padding: 15px;
|
120 |
+
width: 60%;
|
121 |
+
float: left;
|
122 |
}
|
123 |
#yith-quick-view-content div.woocommerce-product-rating:after,
|
124 |
#yith-quick-view-content div.woocommerce-product-rating:before {
|
129 |
#yith-quick-view-content div.woocommerce-product-rating a.woocommerce-review-link {
|
130 |
display: none;
|
131 |
}
|
132 |
+
#yith-quick-view-content .onsale {
|
133 |
+
top: 5px;
|
134 |
+
right: auto;
|
135 |
+
left: 5px;
|
136 |
+
}
|
137 |
|
138 |
li.product .yith-wcqv-button .blockUI.blockOverlay:before {
|
139 |
background: none;
|
140 |
+
}
|
141 |
+
|
142 |
+
@media( max-width: 480px ) {
|
143 |
+
#yith-quick-view-content div.images,
|
144 |
+
#yith-quick-view-content div.summary {
|
145 |
+
width: 100%;
|
146 |
+
float: none;
|
147 |
+
}
|
148 |
+
#yith-quick-view-content div.summary {
|
149 |
+
margin: 0;
|
150 |
+
padding: 15px;
|
151 |
+
width: 100%;
|
152 |
+
float: left;
|
153 |
+
}
|
154 |
}
|
assets/js/frontend.js
CHANGED
@@ -16,7 +16,24 @@ jQuery(document).ready(function($){
|
|
16 |
var qv_modal = $(document).find( '#yith-quick-view-modal' ),
|
17 |
qv_overlay = qv_modal.find( '.yith-quick-view-overlay'),
|
18 |
qv_content = qv_modal.find( '#yith-quick-view-content' ),
|
19 |
-
qv_close = qv_modal.find( '#yith-quick-view-close' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
|
22 |
/*==================
|
@@ -60,7 +77,10 @@ jQuery(document).ready(function($){
|
|
60 |
|
61 |
var ajax_call = function( t, product_id, is_blocked ) {
|
62 |
|
63 |
-
$.post(
|
|
|
|
|
|
|
64 |
|
65 |
qv_content.html( data );
|
66 |
|
@@ -135,6 +155,10 @@ jQuery(document).ready(function($){
|
|
135 |
|
136 |
close_modal_qv();
|
137 |
|
|
|
|
|
|
|
|
|
138 |
// START
|
139 |
$.fn.yith_quick_view();
|
140 |
|
16 |
var qv_modal = $(document).find( '#yith-quick-view-modal' ),
|
17 |
qv_overlay = qv_modal.find( '.yith-quick-view-overlay'),
|
18 |
qv_content = qv_modal.find( '#yith-quick-view-content' ),
|
19 |
+
qv_close = qv_modal.find( '#yith-quick-view-close' ),
|
20 |
+
qv_wrapper = qv_modal.find( '.yith-wcqv-wrapper'),
|
21 |
+
qv_wrapper_w = qv_wrapper.width(),
|
22 |
+
qv_wrapper_h = qv_wrapper.height(),
|
23 |
+
center_modal = function() {
|
24 |
+
|
25 |
+
var window_w = $(window).width(),
|
26 |
+
window_h = $(window).height(),
|
27 |
+
width = ( ( window_w - 60 ) > qv_wrapper_w ) ? qv_wrapper_w : ( window_w - 60 ),
|
28 |
+
height = ( ( window_h - 120 ) > qv_wrapper_h ) ? qv_wrapper_h : ( window_h - 120 );
|
29 |
+
|
30 |
+
qv_wrapper.css({
|
31 |
+
'left' : (( window_w/2 ) - ( width/2 )),
|
32 |
+
'top' : (( window_h/2 ) - ( height/2 )),
|
33 |
+
'width' : width + 'px',
|
34 |
+
'height' : height + 'px'
|
35 |
+
});
|
36 |
+
};
|
37 |
|
38 |
|
39 |
/*==================
|
77 |
|
78 |
var ajax_call = function( t, product_id, is_blocked ) {
|
79 |
|
80 |
+
$.post(
|
81 |
+
yith_qv.ajaxurl.toString().replace( '%%endpoint%%', 'yith_load_product_quick_view' ),
|
82 |
+
{ action: 'yith_load_product_quick_view', product_id: product_id },
|
83 |
+
function( data ) {
|
84 |
|
85 |
qv_content.html( data );
|
86 |
|
155 |
|
156 |
close_modal_qv();
|
157 |
|
158 |
+
|
159 |
+
center_modal();
|
160 |
+
$( window ).on( 'resize', center_modal );
|
161 |
+
|
162 |
// START
|
163 |
$.fn.yith_quick_view();
|
164 |
|
assets/js/frontend.min.js
CHANGED
@@ -5,5 +5,4 @@
|
|
5 |
* @package YITH WooCommerce Quick View
|
6 |
* @version 1.0.0
|
7 |
*/
|
8 |
-
|
9 |
-
jQuery(document).ready(function(t){"use strict";if("undefined"!=typeof yith_qv){var n=t(document).find("#yith-quick-view-modal"),i=n.find(".yith-quick-view-overlay"),o=n.find("#yith-quick-view-content"),e=n.find("#yith-quick-view-close");t.fn.yith_quick_view=function(){t(document).off("click",".yith-wcqv-button").on("click",".yith-wcqv-button",function(i){i.preventDefault();var o=t(this),e=o.data("product_id"),d=!1;"undefined"!=typeof yith_qv.loader&&(d=!0,o.block({message:null,overlayCSS:{background:"#fff url("+yith_qv.loader+") no-repeat center",opacity:.5,cursor:"none"}}),n.hasClass("loading")||n.addClass("loading"),t(document).trigger("qv_loading")),a(o,e,d)})};var a=function(i,e,a){t.post(yith_qv.ajaxurl,{action:"yith_load_product_quick_view",product_id:e},function(e){o.html(e),yith_qv.is2_2&&o.find("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('<input type="button" value="+" class="plus" />').prepend('<input type="button" value="-" class="minus" />');var d=o.find(".variations_form");d.wc_variation_form(),d.trigger("check_variations"),"undefined"!=typeof t.fn.yith_wccl&&d.yith_wccl(),"undefined"!=typeof t.fn.prettyPhoto&&o.find("a[data-rel^='prettyPhoto'], a.zoom").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1}),n.hasClass("open")||(n.removeClass("loading").addClass("open"),a&&i.unblock()),t(document).trigger("qv_loader_stop")})},d=function(){i.on("click",function(t){a()}),t(document).keyup(function(t){27===t.keyCode&&a()}),e.on("click",function(t){t.preventDefault(),a()});var a=function(){n.removeClass("open").removeClass("loading"),setTimeout(function(){o.html("")},1e3)}};d(),t.fn.yith_quick_view(),t(document).on("yith_infs_adding_elem yith-wcan-ajax-filtered",function(){t.fn.yith_quick_view()})}});
|
5 |
* @package YITH WooCommerce Quick View
|
6 |
* @version 1.0.0
|
7 |
*/
|
8 |
+
jQuery(document).ready(function(a){"use strict";if("undefined"!=typeof yith_qv){var b=a(document).find("#yith-quick-view-modal"),c=b.find(".yith-quick-view-overlay"),d=b.find("#yith-quick-view-content"),e=b.find("#yith-quick-view-close"),f=b.find(".yith-wcqv-wrapper"),g=f.width(),h=f.height(),i=function(){var b=a(window).width(),c=a(window).height(),d=b-60>g?g:b-60,e=c-120>h?h:c-120;f.css({left:b/2-d/2,top:c/2-e/2,width:d+"px",height:e+"px"})};a.fn.yith_quick_view=function(){a(document).off("click",".yith-wcqv-button").on("click",".yith-wcqv-button",function(c){c.preventDefault();var d=a(this),e=d.data("product_id"),f=!1;"undefined"!=typeof yith_qv.loader&&(f=!0,d.block({message:null,overlayCSS:{background:"#fff url("+yith_qv.loader+") no-repeat center",opacity:.5,cursor:"none"}}),b.hasClass("loading")||b.addClass("loading"),a(document).trigger("qv_loading")),j(d,e,f)})};var j=function(c,e,f){a.post(yith_qv.ajaxurl.toString().replace("%%endpoint%%","yith_load_product_quick_view"),{action:"yith_load_product_quick_view",product_id:e},function(e){d.html(e),yith_qv.is2_2&&d.find("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").addClass("buttons_added").append('<input type="button" value="+" class="plus" />').prepend('<input type="button" value="-" class="minus" />');var g=d.find(".variations_form");g.wc_variation_form(),g.trigger("check_variations"),"undefined"!=typeof a.fn.yith_wccl&&g.yith_wccl(),"undefined"!=typeof a.fn.prettyPhoto&&d.find("a[data-rel^='prettyPhoto'], a.zoom").prettyPhoto({hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1}),b.hasClass("open")||(b.removeClass("loading").addClass("open"),f&&c.unblock()),a(document).trigger("qv_loader_stop")})},k=function(){c.on("click",function(a){f()}),a(document).keyup(function(a){27===a.keyCode&&f()}),e.on("click",function(a){a.preventDefault(),f()});var f=function(){b.removeClass("open").removeClass("loading"),setTimeout(function(){d.html("")},1e3)}};k(),i(),a(window).on("resize",i),a.fn.yith_quick_view(),a(document).on("yith_infs_adding_elem yith-wcan-ajax-filtered",function(){a.fn.yith_quick_view()})}});
|
|
class.yith-wcqv-admin.php
CHANGED
@@ -77,7 +77,7 @@ if ( ! class_exists( 'YITH_WCQV_Admin' ) ) {
|
|
77 |
/**
|
78 |
* Returns single instance of the class
|
79 |
*
|
80 |
-
* @return \
|
81 |
* @since 1.0.0
|
82 |
*/
|
83 |
public static function get_instance(){
|
77 |
/**
|
78 |
* Returns single instance of the class
|
79 |
*
|
80 |
+
* @return \YITH_WCQV_Admin
|
81 |
* @since 1.0.0
|
82 |
*/
|
83 |
public static function get_instance(){
|
class.yith-wcqv-frontend.php
CHANGED
@@ -62,8 +62,13 @@ if( ! class_exists( 'YITH_WCQV_Frontend' ) ) {
|
|
62 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_scripts' ) );
|
63 |
|
64 |
// quick view ajax
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
// add button
|
69 |
add_action( 'woocommerce_after_shop_loop_item', array( $this, 'yith_add_quick_view_button' ), 15 );
|
@@ -88,23 +93,20 @@ if( ! class_exists( 'YITH_WCQV_Frontend' ) ) {
|
|
88 |
|
89 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
90 |
|
91 |
-
|
|
|
92 |
wp_enqueue_style( 'yith-quick-view', YITH_WCQV_ASSETS_URL . '/css/yith-quick-view.css' );
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
#yith-quick-view-
|
100 |
-
|
101 |
-
}
|
102 |
-
|
103 |
-
|
104 |
-
}
|
105 |
-
</style>
|
106 |
-
|
107 |
-
<?php
|
108 |
}
|
109 |
|
110 |
/**
|
@@ -160,9 +162,9 @@ if( ! class_exists( 'YITH_WCQV_Frontend' ) ) {
|
|
160 |
do_action( 'yith_quick_view_custom_style_scripts' );
|
161 |
|
162 |
wp_localize_script( 'yith-wcqv-frontend', 'yith_qv', array (
|
163 |
-
'ajaxurl'
|
164 |
-
'
|
165 |
-
'
|
166 |
)
|
167 |
);
|
168 |
|
62 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_scripts' ) );
|
63 |
|
64 |
// quick view ajax
|
65 |
+
if( version_compare( WC()->version, '2.4', '>=' ) ){
|
66 |
+
add_action( 'wc_ajax_yith_load_product_quick_view', array( $this, 'yith_load_product_quick_view_ajax' ) );
|
67 |
+
}
|
68 |
+
else {
|
69 |
+
add_action( 'wp_ajax_yith_load_product_quick_view', array( $this, 'yith_load_product_quick_view_ajax' ) );
|
70 |
+
add_action( 'wp_ajax_nopriv_yith_load_product_quick_view', array( $this, 'yith_load_product_quick_view_ajax' ) );
|
71 |
+
}
|
72 |
|
73 |
// add button
|
74 |
add_action( 'woocommerce_after_shop_loop_item', array( $this, 'yith_add_quick_view_button' ), 15 );
|
93 |
|
94 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
95 |
|
96 |
+
wp_register_script( 'yith-wcqv-frontend', YITH_WCQV_ASSETS_URL . '/js/frontend'.$suffix.'.js', array('jquery'), $this->version, true);
|
97 |
+
wp_enqueue_script( 'yith-wcqv-frontend' );
|
98 |
wp_enqueue_style( 'yith-quick-view', YITH_WCQV_ASSETS_URL . '/css/yith-quick-view.css' );
|
99 |
|
100 |
+
$background_modal = get_option( 'yith-wcqv-background-modal' );
|
101 |
+
$close_color = get_option( 'yith-wcqv-close-color' );
|
102 |
+
$close_color_hover = get_option( 'yith-wcqv-close-color-hover' );
|
103 |
+
|
104 |
+
$inline_style = "
|
105 |
+
#yith-quick-view-modal .yith-wcqv-main{background:{$background_modal};}
|
106 |
+
#yith-quick-view-close{color:{$close_color};}
|
107 |
+
#yith-quick-view-close:hover{color:{$close_color_hover};}";
|
108 |
+
|
109 |
+
wp_add_inline_style( 'yith-quick-view', $inline_style );
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
/**
|
162 |
do_action( 'yith_quick_view_custom_style_scripts' );
|
163 |
|
164 |
wp_localize_script( 'yith-wcqv-frontend', 'yith_qv', array (
|
165 |
+
'ajaxurl' => version_compare( WC()->version, '2.4', '>=' ) ? WC_AJAX::get_endpoint( "%%endpoint%%" ) : admin_url( 'admin-ajax.php', 'relative' ),
|
166 |
+
'loader' => $loader,
|
167 |
+
'is2_2' => $version
|
168 |
)
|
169 |
);
|
170 |
|
class.yith-wcqv.php
CHANGED
@@ -105,12 +105,15 @@ if ( ! class_exists( 'YITH_WCQV' ) ) {
|
|
105 |
* @return void
|
106 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
107 |
*/
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
|
|
|
|
|
|
114 |
}
|
115 |
}
|
116 |
|
105 |
* @return void
|
106 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
107 |
*/
|
108 |
+
public function plugin_fw_loader() {
|
109 |
+
if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
|
110 |
+
global $plugin_fw_data;
|
111 |
+
if( ! empty( $plugin_fw_data ) ){
|
112 |
+
$plugin_fw_file = array_shift( $plugin_fw_data );
|
113 |
+
require_once( $plugin_fw_file );
|
114 |
+
}
|
115 |
+
}
|
116 |
+
}
|
117 |
}
|
118 |
}
|
119 |
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Quick View
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-quick-view
|
5 |
* Description: YITH WooCommerce Quick View allows your users to have a quick look about products.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: YITHEMES
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-quick-view
|
@@ -11,7 +11,7 @@
|
|
11 |
*
|
12 |
* @author Yithemes
|
13 |
* @package YITH WooCommerce Quick View
|
14 |
-
* @version 1.1.
|
15 |
*/
|
16 |
/* Copyright 2015 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
@@ -59,7 +59,7 @@ register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
|
|
59 |
|
60 |
|
61 |
if ( ! defined( 'YITH_WCQV_VERSION' ) ){
|
62 |
-
define( 'YITH_WCQV_VERSION', '1.1.
|
63 |
}
|
64 |
|
65 |
if ( ! defined( 'YITH_WCQV_FREE_INIT' ) ) {
|
3 |
* Plugin Name: YITH WooCommerce Quick View
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-quick-view
|
5 |
* Description: YITH WooCommerce Quick View allows your users to have a quick look about products.
|
6 |
+
* Version: 1.1.3
|
7 |
* Author: YITHEMES
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-quick-view
|
11 |
*
|
12 |
* @author Yithemes
|
13 |
* @package YITH WooCommerce Quick View
|
14 |
+
* @version 1.1.3
|
15 |
*/
|
16 |
/* Copyright 2015 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
59 |
|
60 |
|
61 |
if ( ! defined( 'YITH_WCQV_VERSION' ) ){
|
62 |
+
define( 'YITH_WCQV_VERSION', '1.1.3' );
|
63 |
}
|
64 |
|
65 |
if ( ! defined( 'YITH_WCQV_FREE_INIT' ) ) {
|
plugin-fw/assets/js/yit-plugin-panel.js
CHANGED
@@ -78,6 +78,17 @@
|
|
78 |
input.change();
|
79 |
});
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
//slider
|
83 |
$('.plugin-option .slider_container .ui-slider-horizontal').each(function () {
|
78 |
input.change();
|
79 |
});
|
80 |
|
81 |
+
//colorpicker
|
82 |
+
$('.plugin-option .panel-colorpicker').wpColorPicker({
|
83 |
+
onInit: function(){ },
|
84 |
+
change: function(event, ui){
|
85 |
+
},
|
86 |
+
clear: function(){
|
87 |
+
var input = $(this);
|
88 |
+
input.val(input.data('default-color'));
|
89 |
+
input.change();
|
90 |
+
}
|
91 |
+
});
|
92 |
|
93 |
//slider
|
94 |
$('.plugin-option .slider_container .ui-slider-horizontal').each(function () {
|
plugin-fw/assets/js/yit-plugin-panel.min.js
CHANGED
@@ -1,10 +1 @@
|
|
1 |
-
(function(a){var
|
2 |
-
"</span>")};a(".plugin-option .select_wrapper select").not(".chosen").each(l).change(l);a(".plugin-option .select_wrapper").click(function(b){b.stopPropagation();a(this).find("select[multiple]").not(".chosen").toggle()});a(".plugin-option .select_wrapper select[multiple]").not(".chosen").click(function(a){a.stopPropagation()});a(window).click(function(){a(".plugin-option .select_wrapper select[multiple]").not(".chosen").hide()});a(".plugin-option .chosen .select_wrapper select").chosen();a(".plugin-option .onoff_container span").on("click",
|
3 |
-
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(".plugin-option .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"),f=a(this).data("labels");a(this).slider({value:b,min:c,max:d,range:"min",step:e,slide:function(b,c){a(this).find("input").val(c.value);
|
4 |
-
a(this).siblings(".feedback").find("strong").text(c.value+f)}})});"undefined"!==typeof wp&&"undefined"!==typeof wp.media&&(a(".plugin-option .upload_img_url").change(function(){var b=a(this).val(),c=a(this).parents().siblings(".upload_img_preview");/(http|ftp|https):\/\/[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico)/.test(b)?c.html('<img src="'+b+'" style="max-width:600px; max-height:300px;" />'):c.html("")}).trigger("change"),a(document).on("click",".plugin-option .upload_button",function(b){b.preventDefault();
|
5 |
-
var c,d=a(this).attr("id").replace(/-button$/,"");c||(b=[new wp.media.controller.Library({library:wp.media.query(),multiple:!1,title:"Choose Image",priority:20,filterable:"uploaded"})],c=wp.media.frames.downloadable_file=wp.media({title:"Choose Image",library:{type:""},button:{text:"Choose Image"},multiple:!1,states:b}),c.on("select",function(){var b=c.state().get("selection").first().toJSON();a("#"+d).val(b.url);a("#"+d+"-yith-attachment-id")&&a("#"+d+"-yith-attachment-id").val(b.id);a(".plugin-option .upload_img_url").trigger("change")}));
|
6 |
-
c.open()}),a(document).on("click",".plugin-option .upload_button_reset",function(b){var c=a(this);b=c.attr("id");c=c.attr("id").replace(/-button_reset$/,"");b=a("#"+b).data("default");a("#"+c).val(b);a(".plugin-option .upload_img_url").trigger("change")}));a(".plugin-option .add_media").on("click",function(){});a("[data-field]").each(function(){var b=a(this),c="#"+b.data("field"),d="#"+b.data("dep"),e=b.data("value");a(d).on("change",function(){var b=d,g=e.toString(),h=!0;if("string"==typeof b){":radio"==
|
7 |
-
b.substr(0,6)&&(b+=":checked");for(var g=g.split(","),k=0;k<g.length;k++)if(a(b).val()!=g[k])h=!1;else{h=!0;break}}h?a(c+"-container").closest("tr").show():a(c+"-container").closest("tr").hide()}).change()});a(".rm_connectedlist").each(function(){var b=a(this).find("ul"),c=a(this).find(":hidden");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,
|
8 |
-
"\\$&").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",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")})}});
|
9 |
-
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=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";
|
10 |
-
e+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n";e+="ga('create', '"+c+"', '"+d+"');\n";e+="ga('send', 'pageview');\n";b.replaceRange(e,b.getCursor("start"),b.getCursor("end"))})})})(jQuery);
|
1 |
+
!function(t){function e(e,i,n){var a=!0;if("string"==typeof i){":radio"==i.substr(0,6)&&(i+=":checked");for(var n=n.split(","),o=0;o<n.length;o++){if(t(i).val()==n[o]){a=!0;break}a=!1}}a?t(e+"-container").closest("tr").show():t(e+"-container").closest("tr").hide()}var i=function(){var e="";t(this).attr("multiple")?(t(this).children("option:selected").each(function(i,n){0!=i&&(e+=", "),e+=t(n).text()}),""==e&&t(this).children().children("option:selected").each(function(i,n){0!=i&&(e+=", "),e+=t(n).text()})):(e=t(this).children("option:selected").text(),""==e&&(e=t(this).children().children("option:selected").text())),t(this).parent().find("span").length<=0&&t(this).before("<span></span>"),t(this).parent().children("span").replaceWith("<span>"+e+"</span>")};if(t(".plugin-option .select_wrapper select").not(".chosen").each(i).change(i),t(".plugin-option .select_wrapper").click(function(e){e.stopPropagation(),t(this).find("select[multiple]").not(".chosen").toggle()}),t(".plugin-option .select_wrapper select[multiple]").not(".chosen").click(function(t){t.stopPropagation()}),t(window).click(function(){t(".plugin-option .select_wrapper select[multiple]").not(".chosen").hide()}),t(".plugin-option .chosen .select_wrapper select").chosen(),t(".plugin-option .onoff_container span").on("click",function(){var e=t(this).prev("input"),i=e.prop("checked");i?e.prop("checked",!1).attr("value","no").removeClass("onoffchecked"):e.prop("checked",!0).attr("value","yes").addClass("onoffchecked"),e.change()}),t(".plugin-option .panel-colorpicker").wpColorPicker({onInit:function(){},change:function(t,e){},clear:function(){var e=t(this);e.val(e.data("default-color")),e.change()}}),t(".plugin-option .slider_container .ui-slider-horizontal").each(function(){var e=t(this).data("val"),i=t(this).data("min"),n=t(this).data("max"),a=t(this).data("step"),o=t(this).data("labels");t(this).slider({value:e,min:i,max:n,range:"min",step:a,slide:function(e,i){t(this).find("input").val(i.value),t(this).siblings(".feedback").find("strong").text(i.value+o)}})}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media){var n=!0;wp.media.editor.send.attachment;t(".plugin-option .upload_img_url").change(function(){var e=t(this).val(),i=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico)"),n=t(this).parents().siblings(".upload_img_preview");i.test(e)?n.html('<img src="'+e+'" style="max-width:600px; max-height:300px;" />'):n.html("")}).trigger("change"),t(document).on("click",".plugin-option .upload_button",function(e){e.preventDefault();var i,n=t(this),a=n.attr("id").replace(/-button$/,"");if(i)return void i.open();var o=[new wp.media.controller.Library({library:wp.media.query(),multiple:!1,title:"Choose Image",priority:20,filterable:"uploaded"})];i=wp.media.frames.downloadable_file=wp.media({title:"Choose Image",library:{type:""},button:{text:"Choose Image"},multiple:!1,states:o}),i.on("select",function(){var e=i.state().get("selection").first().toJSON();t("#"+a).val(e.url),t("#"+a+"-yith-attachment-id")&&t("#"+a+"-yith-attachment-id").val(e.id),t(".plugin-option .upload_img_url").trigger("change")}),i.open()}),t(document).on("click",".plugin-option .upload_button_reset",function(e){var i=t(this),n=i.attr("id"),a=i.attr("id").replace(/-button_reset$/,""),o=t("#"+n).data("default");t("#"+a).val(o),t(".plugin-option .upload_img_url").trigger("change")})}t(".plugin-option .add_media").on("click",function(){n=!1}),t("[data-field]").each(function(){var i=t(this),n="#"+i.data("field"),a="#"+i.data("dep"),o=i.data("value");t(a).on("change",function(){e(n,a,o.toString())}).change()}),t(".rm_connectedlist").each(function(){var e=t(this).find("ul"),i=t(this).find(":hidden");e.sortable({connectWith:e,update:function(n,a){var o={};e.each(function(){var e={};t(this).children().each(function(){e[t(this).data("option")]=t(this).text()}),o[t(this).data("list")]=e}),i.val(JSON.stringify(o).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()}),t(document).ready(function(){t(".yith-video-link").click(function(e){e.preventDefault();var i=t(this).data("video-id");t("."+i).dialog({dialogClass:"wp-dialog yit-dialog yit-video-dialog",modal:!0,closeOnEscape:!0,width:"auto",resizable:!1,draggable:!1,create:function(e,i){t(this).css("maxWidth","853px")},open:function(e,i){t(".ui-widget-overlay").bind("click",function(){t(this).siblings(".ui-dialog").find(".ui-dialog-content").dialog("close")})}}),t(".ui-dialog :button").blur()})}),t(document).ready(function(){t(".codemirror").each(function(e,i){var n=CodeMirror.fromTextArea(i,{lineNumbers:1,mode:"javascript",showCursorWhenSelecting:!0});t(i).data("codemirrorInstance",n)})}),t(document).ready(function(){t(".google-analytic-generate").click(function(){var e=t("#"+t(this).data("textarea")).data("codemirrorInstance"),i=t("#"+t(this).data("input")).val(),n=t(this).data("basename"),a="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n";a+="(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\n",a+="m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n",a+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n",a+="ga('create', '"+i+"', '"+n+"');\n",a+="ga('send', 'pageview');\n",e.replaceRange(a,e.getCursor("start"),e.getCursor("end"))})})}(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugin-fw/init.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
-
* Version: 2.9.
|
5 |
* Author: Yithemes
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
@@ -19,6 +19,7 @@
|
|
19 |
* http://www.gnu.org/licenses/gpl-3.0.txt
|
20 |
*/
|
21 |
|
|
|
22 |
|
23 |
if ( ! defined ( 'ABSPATH' ) ) {
|
24 |
exit;
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
+
* Version: 2.9.38
|
5 |
* Author: Yithemes
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
19 |
* http://www.gnu.org/licenses/gpl-3.0.txt
|
20 |
*/
|
21 |
|
22 |
+
// test
|
23 |
|
24 |
if ( ! defined ( 'ABSPATH' ) ) {
|
25 |
exit;
|
plugin-fw/languages/yith-plugin-fw-es_ES.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-es_ES.po
CHANGED
@@ -4,15 +4,15 @@ msgid ""
|
|
4 |
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: 2016-
|
8 |
-
"PO-Revision-Date: 2016-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
|
11 |
"Language: es_ES\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.
|
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"
|
@@ -146,10 +146,11 @@ msgstr "Reescribir"
|
|
146 |
|
147 |
#: lib/yit-cpt-unlimited.php:1059
|
148 |
msgid ""
|
149 |
-
"Univocal identification name in the URL for each product (slug from post if
|
|
|
150 |
msgstr ""
|
151 |
-
"Nombre de identificación único en la URL para cada producto (slug desde la
|
152 |
-
"si está vacío)"
|
153 |
|
154 |
#: lib/yit-cpt-unlimited.php:1064
|
155 |
msgid "Label in Singular"
|
@@ -157,7 +158,8 @@ msgstr "Etiqueta en singular"
|
|
157 |
|
158 |
#: lib/yit-cpt-unlimited.php:1065
|
159 |
msgid "Set a label in singular (title of portfolio if empty)"
|
160 |
-
msgstr "
|
|
|
161 |
|
162 |
#: lib/yit-cpt-unlimited.php:1070
|
163 |
msgid "Label in Plural"
|
@@ -165,7 +167,8 @@ msgstr "Etiqueta en Plural"
|
|
165 |
|
166 |
#: lib/yit-cpt-unlimited.php:1071
|
167 |
msgid "Set a label in plural (title of portfolio if empty)"
|
168 |
-
msgstr "
|
|
|
169 |
|
170 |
#: lib/yit-cpt-unlimited.php:1076
|
171 |
msgid "Taxonomy"
|
@@ -173,14 +176,14 @@ msgstr "Taxonomía"
|
|
173 |
|
174 |
#: lib/yit-cpt-unlimited.php:1077
|
175 |
msgid ""
|
176 |
-
"If you want to use categories in the portfolio, set a name for taxonomy.
|
177 |
-
"should be a slug (must not contain capital letters nor spaces) and must
|
178 |
-
"more than 32 characters long (database structure restriction)."
|
179 |
msgstr ""
|
180 |
"Si quieres usar categorías en el portafolio, establece un nombre para la "
|
181 |
-
"taxonomía. El nombre debería ser un slug (no debe contener mayúsculas ni
|
182 |
-
"y no debe ser más largo de 32 caracteres (restricción de
|
183 |
-
"datos)."
|
184 |
|
185 |
#: lib/yit-cpt-unlimited.php:1082
|
186 |
msgid "Taxonomy Rewrite"
|
@@ -233,7 +236,7 @@ msgstr "Ocultar barra lateral"
|
|
233 |
msgid "Show sidebar"
|
234 |
msgstr "Mostrar barra lateral"
|
235 |
|
236 |
-
#: lib/yit-plugin-panel-wc.php:
|
237 |
msgid "The changes you have made will be lost if you leave this page."
|
238 |
msgstr "Los cambios que has hecho se perderán si sales de esta página."
|
239 |
|
@@ -241,72 +244,80 @@ msgstr "Los cambios que has hecho se perderán si sales de esta página."
|
|
241 |
msgid "Plugin Settings"
|
242 |
msgstr "Ajustes del plugin"
|
243 |
|
244 |
-
#: lib/yit-plugin-panel.php:
|
245 |
-
msgid "
|
246 |
-
msgstr "
|
247 |
|
248 |
-
#: lib/yit-plugin-panel.php:
|
249 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar cambios"
|
252 |
|
253 |
-
#: lib/yit-plugin-panel.php:
|
254 |
-
|
255 |
-
|
|
|
|
|
|
|
256 |
|
257 |
-
#: lib/yit-plugin-panel.php:
|
258 |
msgid "Reset to default"
|
259 |
msgstr "Reiniciar a predeterminado"
|
260 |
|
261 |
-
#: lib/yit-plugin-panel.php:
|
262 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
263 |
msgid "Are you sure?"
|
264 |
msgstr "¿Estás seguro/a?"
|
265 |
|
266 |
-
#: lib/yit-plugin-panel.php:
|
267 |
-
msgid "
|
268 |
-
|
|
|
|
|
269 |
|
270 |
-
#: lib/yit-plugin-panel.php:
|
271 |
msgid "Settings saved"
|
272 |
msgstr "Ajustes guardados"
|
273 |
|
274 |
-
#: lib/yit-plugin-panel.php:
|
275 |
msgid "Settings reset"
|
276 |
msgstr "Ajustes reiniciados"
|
277 |
|
278 |
-
#: lib/yit-plugin-panel.php:
|
279 |
msgid "Element deleted correctly."
|
280 |
msgstr "Elemento borrado correctamente."
|
281 |
|
282 |
-
#: lib/yit-plugin-panel.php:
|
283 |
msgid "Element updated correctly."
|
284 |
msgstr "Elemento actualizado correctamente."
|
285 |
|
286 |
-
#: lib/yit-plugin-panel.php:
|
287 |
msgid "Database imported correctly."
|
288 |
msgstr "Base de datos importada correctamente."
|
289 |
|
290 |
-
#: lib/yit-plugin-panel.php:
|
291 |
msgid "An error has occurred during import. Please try again."
|
292 |
-
msgstr "
|
|
|
293 |
|
294 |
-
#: lib/yit-plugin-panel.php:
|
295 |
msgid "The added file is not valid."
|
296 |
msgstr "El archivo añadido no es válido."
|
297 |
|
298 |
-
#: lib/yit-plugin-panel.php:
|
299 |
msgid "Sorry, import is disabled."
|
300 |
msgstr "Lo sentimos, la importación está deshabilitada."
|
301 |
|
302 |
-
#: lib/yit-plugin-panel.php:
|
303 |
msgid "Sorting successful."
|
304 |
msgstr "Clasificación fue realizada con éxito."
|
305 |
|
306 |
#: lib/yit-plugin-subpanel.php:149
|
307 |
msgid ""
|
308 |
-
"If you continue with this action, you will reset all the options in this
|
309 |
-
|
|
|
|
|
310 |
|
311 |
#: lib/yit-pointers.php:70
|
312 |
msgid "Plugins Activated"
|
@@ -315,13 +326,14 @@ msgstr "Plugins Activados"
|
|
315 |
#: lib/yit-pointers.php:71
|
316 |
msgid ""
|
317 |
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
318 |
-
" For each plugin installed,
|
319 |
-
"settings will be available as a new entry in YIT Plugin menu."
|
320 |
msgstr ""
|
321 |
-
"De ahora en adelante, puedes encontrar todas las opciones del plugin en el
|
322 |
-
"YIT Plugin.\n"
|
323 |
-
" Para cada plugin instalado, los ajustes
|
324 |
-
"personalización estarán disponibles como una nueva entrada en el menú YIT
|
|
|
325 |
|
326 |
#: lib/yit-pointers.php:73 lib/yit-pointers.php:89
|
327 |
msgid "Discover all our plugins available on:"
|
@@ -338,111 +350,117 @@ msgstr "Plugins Actualizados"
|
|
338 |
#: lib/yit-pointers.php:85
|
339 |
msgid ""
|
340 |
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
341 |
-
" Any time one of our plugins is updated,
|
342 |
-
"entry will be added to this menu.\n"
|
343 |
-
" For example, after the update, plugin
|
344 |
-
"(such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax
|
345 |
-
"
|
346 |
-
"
|
|
|
347 |
msgstr ""
|
348 |
-
"De ahora en adelante, puedes encontrar todas las opciones de tus plugins en
|
349 |
-
"menú YIT Plugin.\n"
|
350 |
" Cada vez que uno de nuestros plugins sea "
|
351 |
"actualizado, se añadirá una nueva entrada a este menú.\n"
|
352 |
" Por ejemplo, después de actualizar, las "
|
353 |
-
"opciones del plugin (como las de YITH WooCommerce Wishlist, YITH WooCommerce
|
354 |
-
"Search, etc.)\n"
|
355 |
" se moverán de su posición anterior a la "
|
356 |
"pestaña YIT Plugin."
|
357 |
|
358 |
-
#: lib/yit-upgrade.php:
|
359 |
msgid "There is a new version of %plugin_name% available."
|
360 |
msgstr "Hay una nueva versión de %plugin_name% disponible."
|
361 |
|
362 |
-
#: lib/yit-upgrade.php:
|
363 |
msgid "View version %latest% details."
|
364 |
msgstr "Ver detalles de la %latest% versión"
|
365 |
|
366 |
-
#: lib/yit-upgrade.php:
|
367 |
msgid "Automatic update is unavailable for this plugin,"
|
368 |
msgstr "Las actualizaciones automáticas no están disponibles para este plugin,"
|
369 |
|
370 |
-
#: lib/yit-upgrade.php:
|
371 |
-
msgid "
|
372 |
-
|
|
|
|
|
373 |
|
374 |
-
#: lib/yit-upgrade.php:
|
375 |
msgid "Update now."
|
376 |
msgstr "Actualiza ahora."
|
377 |
|
378 |
-
#: lib/yit-upgrade.php:
|
379 |
msgid "YIThemes Repository"
|
380 |
msgstr "Repositorio YIThemes"
|
381 |
|
382 |
-
#: lib/yit-upgrade.php:
|
383 |
msgid "Invalid URL Provided."
|
384 |
msgstr "La URL proporcionada no es válida."
|
385 |
|
386 |
-
#: lib/yit-upgrade.php:
|
387 |
msgid "Could not create Temporary file."
|
388 |
msgstr "No se pudo crear un archivo temporal."
|
389 |
|
390 |
-
#: lib/yit-upgrade.php:
|
391 |
#, php-format
|
392 |
msgid ""
|
393 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
394 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
395 |
msgstr ""
|
396 |
-
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox
|
397 |
-
"changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>."
|
398 |
|
399 |
-
#: lib/yit-upgrade.php:
|
400 |
#, php-format
|
401 |
msgid ""
|
402 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
403 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You
|
404 |
-
"activate the plugin on a single site of the network to benefit from
|
405 |
-
"updates.</em>"
|
406 |
msgstr ""
|
407 |
-
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox
|
408 |
-
"changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>.
|
409 |
-
"que activar el plugin en un único sitio web desdela red para
|
410 |
-
"actualizaciones automáticas.</em>"
|
411 |
|
412 |
-
#: lib/yit-upgrade.php:
|
413 |
#, php-format
|
414 |
msgid ""
|
415 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
416 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>.
|
417 |
-
"update is unavailable for this plugin, please <a href=\"%5$s\"
|
418 |
-
"activation\">activate</a> your copy of %6s.</em>"
|
419 |
msgstr ""
|
420 |
-
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox
|
421 |
-
"changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>.
|
422 |
-
"actualizaciones automáticas no están disponibles para este plugin,
|
423 |
-
"href=\"%5$s\" title=\"License activation\">activa</a> tu copia
|
|
|
424 |
|
425 |
-
#: lib/yit-upgrade.php:
|
426 |
#, php-format
|
427 |
msgid ""
|
428 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
429 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a
|
430 |
-
"\">update now</a>."
|
431 |
msgstr ""
|
432 |
-
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox
|
433 |
-
"changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a> o
|
434 |
-
"
|
435 |
|
436 |
-
#: lib/yit-upgrade.php:
|
437 |
msgid "You can't update the plugins for this site."
|
438 |
msgstr "No puedes actualizar los plugins para este sitio web."
|
439 |
|
440 |
-
#: lib/yit-upgrade.php:
|
441 |
-
msgid "
|
|
|
442 |
msgstr ""
|
443 |
-
"No tienes suficientes permisos para actualizar los plugins para este sitio
|
|
|
444 |
|
445 |
-
#: lib/yit-upgrade.php:
|
446 |
msgid "Update Plugin"
|
447 |
msgstr "Actualizar Plugin"
|
448 |
|
@@ -460,8 +478,8 @@ msgstr "Los campos %s y %s no pueden estar vacíos"
|
|
460 |
#: licence/lib/yit-licence.php:184
|
461 |
msgid "Unable to contact the remote server, please try again later. Thanks!"
|
462 |
msgstr ""
|
463 |
-
"No fue posible contactar con el servidor remoto, por favor, inténtalo de
|
464 |
-
"tarde. ¡Gracias!"
|
465 |
|
466 |
#: licence/lib/yit-licence.php:185
|
467 |
#: licence/templates/panel/activation/activation-panel.php:88
|
@@ -482,7 +500,8 @@ msgstr "Clave de Licencia"
|
|
482 |
#: licence/lib/yit-licence.php:187
|
483 |
msgid "Are you sure you want to deactivate the license for current site?"
|
484 |
msgstr ""
|
485 |
-
"¿Estás seguro/a de que quieres desactivar la licencia para el sitio web
|
|
|
486 |
|
487 |
#: licence/lib/yit-licence.php:667
|
488 |
msgid "Invalid Request"
|
@@ -517,8 +536,9 @@ msgid "License key has been banned"
|
|
517 |
msgstr "La clave de licencia ha sido bloqueada"
|
518 |
|
519 |
#: licence/lib/yit-licence.php:675
|
520 |
-
msgid "Current product is not included
|
521 |
-
msgstr "
|
|
|
522 |
|
523 |
#: licence/lib/yit-licence.php:676
|
524 |
msgid "Great"
|
@@ -545,34 +565,34 @@ msgstr "%s"
|
|
545 |
|
546 |
#: licence/lib/yit-theme-licence.php:159
|
547 |
msgid ""
|
548 |
-
"I cannot find the license key for activating the theme I have bought some
|
549 |
-
"ago. Where can I find it?"
|
550 |
msgstr ""
|
551 |
"No puedo encontrar la clave de licencia para activar el tema que compré hace "
|
552 |
"tiempo. ¿Dónde la puedo encontrar?"
|
553 |
|
554 |
#: licence/lib/yit-theme-licence.php:163
|
555 |
msgid ""
|
556 |
-
"If you have purchased one of our products before 27 January 2015, you can
|
557 |
-
"from support and updates (the services offered with the license)\n"
|
558 |
-
" until 27 January 2016 and you do not have to purchase it
|
559 |
-
"to get a new license key, because, before this date, your license used
|
560 |
-
"activated automatically by our system.\n"
|
561 |
-
" After 27 January 2016, instead, if you want to benefit
|
562 |
-
"support and updates you have to buy a new license and activate it
|
563 |
-
"license key you will be\n"
|
564 |
-
" provided with and that you can find in your YIThemes
|
565 |
-
"in section \"My licenses\"."
|
566 |
msgstr ""
|
567 |
-
"Si has comprado uno de nuestros productos antes del 27 de enero de 2015,
|
568 |
-
"beneficiarte del soporte y actualizaciones (los servicios incluidos
|
569 |
-
"licencia)\n"
|
570 |
-
" hasta el 27 de enero de 2016 y no tendrás que comprarla
|
571 |
-
"vez para conseguir una nueva clave de licencia, porque, antes de esta
|
572 |
-
"licencia se activaba automáticamente por nuestro sistema.\n"
|
573 |
" Después del 27 de enero de 2016, sin embargo, si quieres "
|
574 |
-
"beneficiarte de nuestro soporte y actualizaciones, tienes que comprar una
|
575 |
-
"licencia y activarla a través de la clave de licencia que \n"
|
576 |
" se te proporcionará y que podrás encontrar en tu cuenta "
|
577 |
"YIThemes, en la sección \"My licenses\"."
|
578 |
|
@@ -620,8 +640,8 @@ msgid "Remaining"
|
|
620 |
msgstr "Queda"
|
621 |
|
622 |
#: licence/templates/panel/activation/activation-panel.php:97
|
623 |
-
msgid "
|
624 |
-
msgstr "Suscripción"
|
625 |
|
626 |
#: licence/templates/panel/activation/activation-panel.php:101
|
627 |
msgid "License Actions"
|
@@ -748,11 +768,12 @@ msgstr "Nombre del dato."
|
|
748 |
#: templates/metaboxes/types/contactform.php:90
|
749 |
#: templates/metaboxes/types/contactform.php:282
|
750 |
msgid ""
|
751 |
-
"REQUIRED: Field identification name to be entered into email body.
|
752 |
-
"strong>Use only lowercase characters and underscores."
|
753 |
msgstr ""
|
754 |
-
"OBLIGATORIO: El nombre del campo de identificación debe introducirse en el
|
755 |
-
"del email. <strong> Nota: </strong> Usa sólo minúsculas y guiones
|
|
|
756 |
|
757 |
#: templates/metaboxes/types/contactform.php:95
|
758 |
#: templates/metaboxes/types/contactform.php:287
|
@@ -772,7 +793,8 @@ msgstr "Campo seleccionado"
|
|
772 |
#: templates/metaboxes/types/contactform.php:112
|
773 |
#: templates/metaboxes/types/contactform.php:304
|
774 |
msgid "Select this option if you want this field appears as already checked."
|
775 |
-
msgstr "
|
|
|
776 |
|
777 |
#: templates/metaboxes/types/contactform.php:117
|
778 |
#: templates/metaboxes/types/contactform.php:309
|
@@ -838,8 +860,10 @@ msgstr "Clase"
|
|
838 |
|
839 |
#: templates/metaboxes/types/contactform.php:170
|
840 |
#: templates/metaboxes/types/contactform.php:362
|
841 |
-
msgid "
|
842 |
-
|
|
|
|
|
843 |
|
844 |
#: templates/metaboxes/types/contactform.php:175
|
845 |
#: templates/metaboxes/types/contactform.php:367
|
@@ -915,7 +939,8 @@ msgstr "(Por defecto: <i %s></i> )"
|
|
915 |
|
916 |
#: templates/metaboxes/types/image-gallery.php:40
|
917 |
#: templates/metaboxes/types/image-gallery.php:45
|
918 |
-
#: templates/metaboxes/types/images.php:38
|
|
|
919 |
msgid "Delete image"
|
920 |
msgstr "Borrar imagen"
|
921 |
|
@@ -1043,128 +1068,130 @@ msgstr "Reinicia"
|
|
1043 |
msgid "Reset Defaults"
|
1044 |
msgstr "Ajustes predeterminados"
|
1045 |
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
"
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
"
|
1061 |
-
|
1062 |
-
"
|
1063 |
-
"
|
1064 |
-
|
1065 |
-
|
1066 |
-
"
|
1067 |
-
|
1068 |
-
"
|
1069 |
-
"
|
1070 |
-
"
|
1071 |
-
"
|
1072 |
-
"
|
1073 |
-
|
1074 |
-
"
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
"
|
1080 |
-
"
|
1081 |
-
|
1082 |
-
|
1083 |
-
"
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
"
|
1093 |
-
|
1094 |
-
|
1095 |
-
"
|
1096 |
-
"\"
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
"
|
1101 |
-
"
|
1102 |
-
|
1103 |
-
|
1104 |
-
"
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
"
|
1109 |
-
|
1110 |
-
|
1111 |
-
"
|
1112 |
-
|
1113 |
-
"
|
1114 |
-
"
|
1115 |
-
|
1116 |
-
"
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
"
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
"
|
1131 |
-
"
|
1132 |
-
"
|
1133 |
-
|
1134 |
-
"
|
1135 |
-
|
1136 |
-
|
1137 |
-
"
|
1138 |
-
"
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
"
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
"
|
1156 |
-
"
|
1157 |
-
|
1158 |
-
"
|
1159 |
-
|
1160 |
-
|
1161 |
-
"
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
"
|
1167 |
-
|
1168 |
-
"
|
1169 |
-
|
1170 |
-
"de
|
|
|
|
4 |
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: 2016-07-06 15:18+0200\n"
|
8 |
+
"PO-Revision-Date: 2016-07-06 15:19+0200\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
|
11 |
"Language: es_ES\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.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"
|
146 |
|
147 |
#: lib/yit-cpt-unlimited.php:1059
|
148 |
msgid ""
|
149 |
+
"Univocal identification name in the URL for each product (slug from post if "
|
150 |
+
"empty)"
|
151 |
msgstr ""
|
152 |
+
"Nombre de identificación único en la URL para cada producto (slug desde la "
|
153 |
+
"entrada si está vacío)"
|
154 |
|
155 |
#: lib/yit-cpt-unlimited.php:1064
|
156 |
msgid "Label in Singular"
|
158 |
|
159 |
#: lib/yit-cpt-unlimited.php:1065
|
160 |
msgid "Set a label in singular (title of portfolio if empty)"
|
161 |
+
msgstr ""
|
162 |
+
"Establecer una etiqueta en singular (título del portafolio si está vacío)"
|
163 |
|
164 |
#: lib/yit-cpt-unlimited.php:1070
|
165 |
msgid "Label in Plural"
|
167 |
|
168 |
#: lib/yit-cpt-unlimited.php:1071
|
169 |
msgid "Set a label in plural (title of portfolio if empty)"
|
170 |
+
msgstr ""
|
171 |
+
"Establecer una etiqueta en plural (título del portafolio si está vacío)"
|
172 |
|
173 |
#: lib/yit-cpt-unlimited.php:1076
|
174 |
msgid "Taxonomy"
|
176 |
|
177 |
#: lib/yit-cpt-unlimited.php:1077
|
178 |
msgid ""
|
179 |
+
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
180 |
+
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
181 |
+
"not be more than 32 characters long (database structure restriction)."
|
182 |
msgstr ""
|
183 |
"Si quieres usar categorías en el portafolio, establece un nombre para la "
|
184 |
+
"taxonomía. El nombre debería ser un slug (no debe contener mayúsculas ni "
|
185 |
+
"espacios) y no debe ser más largo de 32 caracteres (restricción de "
|
186 |
+
"estructura de base de datos)."
|
187 |
|
188 |
#: lib/yit-cpt-unlimited.php:1082
|
189 |
msgid "Taxonomy Rewrite"
|
236 |
msgid "Show sidebar"
|
237 |
msgstr "Mostrar barra lateral"
|
238 |
|
239 |
+
#: lib/yit-plugin-panel-wc.php:374
|
240 |
msgid "The changes you have made will be lost if you leave this page."
|
241 |
msgstr "Los cambios que has hecho se perderán si sales de esta página."
|
242 |
|
244 |
msgid "Plugin Settings"
|
245 |
msgstr "Ajustes del plugin"
|
246 |
|
247 |
+
#: lib/yit-plugin-panel.php:297 lib/yit-plugin-panel.php:300
|
248 |
+
msgid "How to install premium version"
|
249 |
+
msgstr "Cómo instalar la versión premium"
|
250 |
|
251 |
+
#: lib/yit-plugin-panel.php:352 lib/yit-plugin-subpanel.php:146
|
252 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
253 |
msgid "Save Changes"
|
254 |
msgstr "Guardar cambios"
|
255 |
|
256 |
+
#: lib/yit-plugin-panel.php:355
|
257 |
+
#: templates/panel/woocommerce/woocommerce-form.php:14
|
258 |
+
msgid ""
|
259 |
+
"If you continue with this action, you will reset all options in this page."
|
260 |
+
msgstr ""
|
261 |
+
"Si sigues con esta acción, se reiniciarán todas las opciones en esta página."
|
262 |
|
263 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
264 |
msgid "Reset to default"
|
265 |
msgstr "Reiniciar a predeterminado"
|
266 |
|
267 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
268 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
269 |
msgid "Are you sure?"
|
270 |
msgstr "¿Estás seguro/a?"
|
271 |
|
272 |
+
#: lib/yit-plugin-panel.php:553
|
273 |
+
msgid ""
|
274 |
+
"The element you have entered already exists. Please, enter another name."
|
275 |
+
msgstr ""
|
276 |
+
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."
|
277 |
|
278 |
+
#: lib/yit-plugin-panel.php:554
|
279 |
msgid "Settings saved"
|
280 |
msgstr "Ajustes guardados"
|
281 |
|
282 |
+
#: lib/yit-plugin-panel.php:555
|
283 |
msgid "Settings reset"
|
284 |
msgstr "Ajustes reiniciados"
|
285 |
|
286 |
+
#: lib/yit-plugin-panel.php:556
|
287 |
msgid "Element deleted correctly."
|
288 |
msgstr "Elemento borrado correctamente."
|
289 |
|
290 |
+
#: lib/yit-plugin-panel.php:557 lib/yit-plugin-panel.php:558
|
291 |
msgid "Element updated correctly."
|
292 |
msgstr "Elemento actualizado correctamente."
|
293 |
|
294 |
+
#: lib/yit-plugin-panel.php:559
|
295 |
msgid "Database imported correctly."
|
296 |
msgstr "Base de datos importada correctamente."
|
297 |
|
298 |
+
#: lib/yit-plugin-panel.php:560
|
299 |
msgid "An error has occurred during import. Please try again."
|
300 |
+
msgstr ""
|
301 |
+
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
|
302 |
|
303 |
+
#: lib/yit-plugin-panel.php:561
|
304 |
msgid "The added file is not valid."
|
305 |
msgstr "El archivo añadido no es válido."
|
306 |
|
307 |
+
#: lib/yit-plugin-panel.php:562
|
308 |
msgid "Sorry, import is disabled."
|
309 |
msgstr "Lo sentimos, la importación está deshabilitada."
|
310 |
|
311 |
+
#: lib/yit-plugin-panel.php:563
|
312 |
msgid "Sorting successful."
|
313 |
msgstr "Clasificación fue realizada con éxito."
|
314 |
|
315 |
#: lib/yit-plugin-subpanel.php:149
|
316 |
msgid ""
|
317 |
+
"If you continue with this action, you will reset all the options in this "
|
318 |
+
"page."
|
319 |
+
msgstr ""
|
320 |
+
"Si continúas con esta acción, reiniciarás todas las opciones de esta página."
|
321 |
|
322 |
#: lib/yit-pointers.php:70
|
323 |
msgid "Plugins Activated"
|
326 |
#: lib/yit-pointers.php:71
|
327 |
msgid ""
|
328 |
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
329 |
+
" For each plugin installed, "
|
330 |
+
"customization settings will be available as a new entry in YIT Plugin menu."
|
331 |
msgstr ""
|
332 |
+
"De ahora en adelante, puedes encontrar todas las opciones del plugin en el "
|
333 |
+
"menú YIT Plugin.\n"
|
334 |
+
" Para cada plugin instalado, los ajustes "
|
335 |
+
"de personalización estarán disponibles como una nueva entrada en el menú YIT "
|
336 |
+
"Plugin."
|
337 |
|
338 |
#: lib/yit-pointers.php:73 lib/yit-pointers.php:89
|
339 |
msgid "Discover all our plugins available on:"
|
350 |
#: lib/yit-pointers.php:85
|
351 |
msgid ""
|
352 |
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
353 |
+
" Any time one of our plugins is updated, "
|
354 |
+
"a new entry will be added to this menu.\n"
|
355 |
+
" For example, after the update, plugin "
|
356 |
+
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
357 |
+
"Search, etc.)\n"
|
358 |
+
" will be moved from previous location to "
|
359 |
+
"YIT Plugin tab."
|
360 |
msgstr ""
|
361 |
+
"De ahora en adelante, puedes encontrar todas las opciones de tus plugins en "
|
362 |
+
"el menú YIT Plugin.\n"
|
363 |
" Cada vez que uno de nuestros plugins sea "
|
364 |
"actualizado, se añadirá una nueva entrada a este menú.\n"
|
365 |
" Por ejemplo, después de actualizar, las "
|
366 |
+
"opciones del plugin (como las de YITH WooCommerce Wishlist, YITH WooCommerce "
|
367 |
+
"Ajax Search, etc.)\n"
|
368 |
" se moverán de su posición anterior a la "
|
369 |
"pestaña YIT Plugin."
|
370 |
|
371 |
+
#: lib/yit-upgrade.php:135
|
372 |
msgid "There is a new version of %plugin_name% available."
|
373 |
msgstr "Hay una nueva versión de %plugin_name% disponible."
|
374 |
|
375 |
+
#: lib/yit-upgrade.php:136
|
376 |
msgid "View version %latest% details."
|
377 |
msgstr "Ver detalles de la %latest% versión"
|
378 |
|
379 |
+
#: lib/yit-upgrade.php:137
|
380 |
msgid "Automatic update is unavailable for this plugin,"
|
381 |
msgstr "Las actualizaciones automáticas no están disponibles para este plugin,"
|
382 |
|
383 |
+
#: lib/yit-upgrade.php:138
|
384 |
+
msgid ""
|
385 |
+
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
386 |
+
msgstr ""
|
387 |
+
"por favor, <a href=\"%activate_link%\">activa</a> tu copia de %plugin_name%."
|
388 |
|
389 |
+
#: lib/yit-upgrade.php:139
|
390 |
msgid "Update now."
|
391 |
msgstr "Actualiza ahora."
|
392 |
|
393 |
+
#: lib/yit-upgrade.php:240
|
394 |
msgid "YIThemes Repository"
|
395 |
msgstr "Repositorio YIThemes"
|
396 |
|
397 |
+
#: lib/yit-upgrade.php:274
|
398 |
msgid "Invalid URL Provided."
|
399 |
msgstr "La URL proporcionada no es válida."
|
400 |
|
401 |
+
#: lib/yit-upgrade.php:287
|
402 |
msgid "Could not create Temporary file."
|
403 |
msgstr "No se pudo crear un archivo temporal."
|
404 |
|
405 |
+
#: lib/yit-upgrade.php:439
|
406 |
#, php-format
|
407 |
msgid ""
|
408 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
409 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
410 |
msgstr ""
|
411 |
+
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox "
|
412 |
+
"yit-changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>."
|
413 |
|
414 |
+
#: lib/yit-upgrade.php:441
|
415 |
#, php-format
|
416 |
msgid ""
|
417 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
418 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
419 |
+
"have to activate the plugin on a single site of the network to benefit from "
|
420 |
+
"automatic updates.</em>"
|
421 |
msgstr ""
|
422 |
+
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox "
|
423 |
+
"yit-changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>. "
|
424 |
+
"<em>Tienes que activar el plugin en un único sitio web desdela red para "
|
425 |
+
"beneficiarte de las actualizaciones automáticas.</em>"
|
426 |
|
427 |
+
#: lib/yit-upgrade.php:443
|
428 |
#, php-format
|
429 |
msgid ""
|
430 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
431 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
|
432 |
+
"<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
|
433 |
+
"title=\"License activation\">activate</a> your copy of %6s.</em>"
|
434 |
msgstr ""
|
435 |
+
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox "
|
436 |
+
"yit-changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a>. "
|
437 |
+
"<em>Las actualizaciones automáticas no están disponibles para este plugin, "
|
438 |
+
"por favor <a href=\"%5$s\" title=\"License activation\">activa</a> tu copia "
|
439 |
+
"de %6s.</em>"
|
440 |
|
441 |
+
#: lib/yit-upgrade.php:445
|
442 |
#, php-format
|
443 |
msgid ""
|
444 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
445 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a "
|
446 |
+
"href=\"%5$s\">update now</a>."
|
447 |
msgstr ""
|
448 |
+
"Hay una nueva versión de %1$s disponible. <a href=\"%2$s\" class=\"thickbox "
|
449 |
+
"yit-changelog-button\" title=\"%3$s\">Ver detalles de la versión %4$s</a> o "
|
450 |
+
"<a href=\"%5$s\">actualizar ahora</a>."
|
451 |
|
452 |
+
#: lib/yit-upgrade.php:517
|
453 |
msgid "You can't update the plugins for this site."
|
454 |
msgstr "No puedes actualizar los plugins para este sitio web."
|
455 |
|
456 |
+
#: lib/yit-upgrade.php:521
|
457 |
+
msgid ""
|
458 |
+
"You do not have sufficient permissions to update the plugins for this site."
|
459 |
msgstr ""
|
460 |
+
"No tienes suficientes permisos para actualizar los plugins para este sitio "
|
461 |
+
"web."
|
462 |
|
463 |
+
#: lib/yit-upgrade.php:528
|
464 |
msgid "Update Plugin"
|
465 |
msgstr "Actualizar Plugin"
|
466 |
|
478 |
#: licence/lib/yit-licence.php:184
|
479 |
msgid "Unable to contact the remote server, please try again later. Thanks!"
|
480 |
msgstr ""
|
481 |
+
"No fue posible contactar con el servidor remoto, por favor, inténtalo de "
|
482 |
+
"nuevo más tarde. ¡Gracias!"
|
483 |
|
484 |
#: licence/lib/yit-licence.php:185
|
485 |
#: licence/templates/panel/activation/activation-panel.php:88
|
500 |
#: licence/lib/yit-licence.php:187
|
501 |
msgid "Are you sure you want to deactivate the license for current site?"
|
502 |
msgstr ""
|
503 |
+
"¿Estás seguro/a de que quieres desactivar la licencia para el sitio web "
|
504 |
+
"actual?"
|
505 |
|
506 |
#: licence/lib/yit-licence.php:667
|
507 |
msgid "Invalid Request"
|
536 |
msgstr "La clave de licencia ha sido bloqueada"
|
537 |
|
538 |
#: licence/lib/yit-licence.php:675
|
539 |
+
msgid "Current product is not included in your YITH Club Subscription key"
|
540 |
+
msgstr ""
|
541 |
+
"Producto actual no está incluido en la clave de suscripción de Club de YITH"
|
542 |
|
543 |
#: licence/lib/yit-licence.php:676
|
544 |
msgid "Great"
|
565 |
|
566 |
#: licence/lib/yit-theme-licence.php:159
|
567 |
msgid ""
|
568 |
+
"I cannot find the license key for activating the theme I have bought some "
|
569 |
+
"time ago. Where can I find it?"
|
570 |
msgstr ""
|
571 |
"No puedo encontrar la clave de licencia para activar el tema que compré hace "
|
572 |
"tiempo. ¿Dónde la puedo encontrar?"
|
573 |
|
574 |
#: licence/lib/yit-theme-licence.php:163
|
575 |
msgid ""
|
576 |
+
"If you have purchased one of our products before 27 January 2015, you can "
|
577 |
+
"benefit from support and updates (the services offered with the license)\n"
|
578 |
+
" until 27 January 2016 and you do not have to purchase it "
|
579 |
+
"again to get a new license key, because, before this date, your license used "
|
580 |
+
"to be activated automatically by our system.\n"
|
581 |
+
" After 27 January 2016, instead, if you want to benefit "
|
582 |
+
"from support and updates you have to buy a new license and activate it "
|
583 |
+
"through the license key you will be\n"
|
584 |
+
" provided with and that you can find in your YIThemes "
|
585 |
+
"account, in section \"My licenses\"."
|
586 |
msgstr ""
|
587 |
+
"Si has comprado uno de nuestros productos antes del 27 de enero de 2015, "
|
588 |
+
"puedes beneficiarte del soporte y actualizaciones (los servicios incluidos "
|
589 |
+
"con la licencia)\n"
|
590 |
+
" hasta el 27 de enero de 2016 y no tendrás que comprarla "
|
591 |
+
"otra vez para conseguir una nueva clave de licencia, porque, antes de esta "
|
592 |
+
"fecha, tu licencia se activaba automáticamente por nuestro sistema.\n"
|
593 |
" Después del 27 de enero de 2016, sin embargo, si quieres "
|
594 |
+
"beneficiarte de nuestro soporte y actualizaciones, tienes que comprar una "
|
595 |
+
"nueva licencia y activarla a través de la clave de licencia que \n"
|
596 |
" se te proporcionará y que podrás encontrar en tu cuenta "
|
597 |
"YIThemes, en la sección \"My licenses\"."
|
598 |
|
640 |
msgstr "Queda"
|
641 |
|
642 |
#: licence/templates/panel/activation/activation-panel.php:97
|
643 |
+
msgid "Club Subscription"
|
644 |
+
msgstr "Suscripción a Club"
|
645 |
|
646 |
#: licence/templates/panel/activation/activation-panel.php:101
|
647 |
msgid "License Actions"
|
768 |
#: templates/metaboxes/types/contactform.php:90
|
769 |
#: templates/metaboxes/types/contactform.php:282
|
770 |
msgid ""
|
771 |
+
"REQUIRED: Field identification name to be entered into email body. "
|
772 |
+
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
773 |
msgstr ""
|
774 |
+
"OBLIGATORIO: El nombre del campo de identificación debe introducirse en el "
|
775 |
+
"cuerpo del email. <strong> Nota: </strong> Usa sólo minúsculas y guiones "
|
776 |
+
"bajos."
|
777 |
|
778 |
#: templates/metaboxes/types/contactform.php:95
|
779 |
#: templates/metaboxes/types/contactform.php:287
|
793 |
#: templates/metaboxes/types/contactform.php:112
|
794 |
#: templates/metaboxes/types/contactform.php:304
|
795 |
msgid "Select this option if you want this field appears as already checked."
|
796 |
+
msgstr ""
|
797 |
+
"Selecciona esta opción si quieres que este campo aparezca como ya marcado."
|
798 |
|
799 |
#: templates/metaboxes/types/contactform.php:117
|
800 |
#: templates/metaboxes/types/contactform.php:309
|
860 |
|
861 |
#: templates/metaboxes/types/contactform.php:170
|
862 |
#: templates/metaboxes/types/contactform.php:362
|
863 |
+
msgid ""
|
864 |
+
"Insert additional class(es) (separated by commas) for more personalization."
|
865 |
+
msgstr ""
|
866 |
+
"Inserta clase(s) adicionales (separados por comas) para más personalización."
|
867 |
|
868 |
#: templates/metaboxes/types/contactform.php:175
|
869 |
#: templates/metaboxes/types/contactform.php:367
|
939 |
|
940 |
#: templates/metaboxes/types/image-gallery.php:40
|
941 |
#: templates/metaboxes/types/image-gallery.php:45
|
942 |
+
#: templates/metaboxes/types/images.php:38
|
943 |
+
#: templates/metaboxes/types/images.php:64
|
944 |
msgid "Delete image"
|
945 |
msgstr "Borrar imagen"
|
946 |
|
1068 |
msgid "Reset Defaults"
|
1069 |
msgstr "Ajustes predeterminados"
|
1070 |
|
1071 |
+
#~ msgid "Premium version upgrade"
|
1072 |
+
#~ msgstr "Actualiza a la versión premium"
|
1073 |
+
|
1074 |
+
#~ msgid "Current product is not included with your membership key"
|
1075 |
+
#~ msgstr "El producto actual no está incluido en tu clave de suscripción"
|
1076 |
+
|
1077 |
+
#~ msgid "Membership"
|
1078 |
+
#~ msgstr "Suscripción"
|
1079 |
+
|
1080 |
+
#~ msgid "Upgrade to Premium Version"
|
1081 |
+
#~ msgstr "Actualizar a la Versión Premium"
|
1082 |
+
|
1083 |
+
#~ msgid ""
|
1084 |
+
#~ "Have you purchased the premium version of a plugin? Don't you know how to "
|
1085 |
+
#~ "activate the license after the purchase?"
|
1086 |
+
#~ msgstr ""
|
1087 |
+
#~ "¿Has comprado la versión premium de un plugin? ¿No sabes cómo activar la "
|
1088 |
+
#~ "licencia después de la compra?"
|
1089 |
+
|
1090 |
+
#~ msgid ""
|
1091 |
+
#~ "To upgrade from a FREE to a PREMIUM plugin is not suffice to insert the "
|
1092 |
+
#~ "license key provided after the purchase.\n"
|
1093 |
+
#~ " The reason is that they are two distinct products, with "
|
1094 |
+
#~ "significant differences both for available options and for number of "
|
1095 |
+
#~ "files included in the plugin package.\n"
|
1096 |
+
#~ " To start to use the PREMIUM version of the plugin, you simply "
|
1097 |
+
#~ "need to download the PREMIUM packet and install it on your site."
|
1098 |
+
#~ msgstr ""
|
1099 |
+
#~ "Para actualizar a del plugin FREE al PREMIUMT no es suficiente con "
|
1100 |
+
#~ "insertar la clave de licencia proporcionada después de la compra.\n"
|
1101 |
+
#~ " La razón es que son dos productos diferentes, con diferencias "
|
1102 |
+
#~ "significativas en las opciones disponibles para el número de archivos "
|
1103 |
+
#~ "incluidos en el paquete del plugin.\n"
|
1104 |
+
#~ " Para empezar a usar la versión PREMIUM del plugin, simplemente "
|
1105 |
+
#~ "necesitas descargar el paquete PREMIUM e instalarlo en tu sitio web."
|
1106 |
+
|
1107 |
+
#~ msgid ""
|
1108 |
+
#~ "%1$sDo you need to know how to do it?%2$s Easy! %1$sFollow this list of "
|
1109 |
+
#~ "steps%2$s and in a few minutes the plugin you purchased will be installed "
|
1110 |
+
#~ "on your site"
|
1111 |
+
#~ msgstr ""
|
1112 |
+
#~ "%1$s¿Necesitas saber cómo hacerlo?%2$s ¡Fácil! %1$sSigue estos pasos%2$s "
|
1113 |
+
#~ "y en unos minutos el plugin que has comprado estará instalado en tu sitio "
|
1114 |
+
#~ "web"
|
1115 |
+
|
1116 |
+
#~ msgid "Go to yithemes.com and login to \"My Account\" page"
|
1117 |
+
#~ msgstr "Ve a yithemes.com e inicia sesión en la página \"Mi cuenta\""
|
1118 |
+
|
1119 |
+
#~ msgid ""
|
1120 |
+
#~ "From the menu on the left, click on \"My Downloads\", look for the plugin "
|
1121 |
+
#~ "you want to install among the available downloads and click on \"Download"
|
1122 |
+
#~ "\" button"
|
1123 |
+
#~ msgstr ""
|
1124 |
+
#~ "Desde el menú de la izquierda, haz click en \"Mis Descargas\", busca el "
|
1125 |
+
#~ "plugin que te quieres descargar entre las descargas disponibles y haz "
|
1126 |
+
#~ "click en el botón \"Descargar\""
|
1127 |
+
|
1128 |
+
#~ msgid ""
|
1129 |
+
#~ "After downloading the packet, go to your website and login to WordPress "
|
1130 |
+
#~ "administration area."
|
1131 |
+
#~ msgstr ""
|
1132 |
+
#~ "Después de descargar el paquete, ve a tu sitio web y regístrate en el "
|
1133 |
+
#~ "área de administración de WordPress."
|
1134 |
+
|
1135 |
+
#~ msgid ""
|
1136 |
+
#~ "From the menu on the left, click on \"Plugins\". You will be redirected "
|
1137 |
+
#~ "to the page where you will find the complete list of all the plugins "
|
1138 |
+
#~ "available on your site. Click on \"Add New\" button that you find above "
|
1139 |
+
#~ "on the left to add a new plugin"
|
1140 |
+
#~ msgstr ""
|
1141 |
+
#~ "Desde el menú de la izquierda, haz click en \"Plugins\". Serás redirigido/"
|
1142 |
+
#~ "a a la página donde podrás encontrar la lista completa de plugins "
|
1143 |
+
#~ "disponible en tu sitio web. Haz click en el botón \"Añadir Nuevo\" que "
|
1144 |
+
#~ "encontrarás arriba a la izquierda para añadir un nuevo plugin"
|
1145 |
+
|
1146 |
+
#~ msgid ""
|
1147 |
+
#~ "You will be redirected to a new page where you will find, above on the "
|
1148 |
+
#~ "left next to the page title, the \"Upload Plugin\" button."
|
1149 |
+
#~ msgstr ""
|
1150 |
+
#~ "Serás redirigido/a a una nueva página donde encontrarás, en la parte "
|
1151 |
+
#~ "superior izquierda, junto al título de la página, el botón \"Actualizar "
|
1152 |
+
#~ "Plugin\""
|
1153 |
+
|
1154 |
+
#~ msgid ""
|
1155 |
+
#~ "Click on \"Upload Plugins\" button to start the upload of the PREMIUM "
|
1156 |
+
#~ "version of the plugin previously downloaded. Click on \"Select File\", "
|
1157 |
+
#~ "search for the download folder related to the plugin and upload the "
|
1158 |
+
#~ "package. Now you only need to wait a few minutes for the upload and the "
|
1159 |
+
#~ "installation on your site. (We used YITH Live Chat plugin by way of "
|
1160 |
+
#~ "example)"
|
1161 |
+
#~ msgstr ""
|
1162 |
+
#~ "Haz click en el botón \"Actualizar Plugins\" para actualizar la versión "
|
1163 |
+
#~ "premium del plugin anteriormente descargada. Haz click en \"Seleccionar "
|
1164 |
+
#~ "Archivo\", busca la carpeta relacionada al plugin y actualiza el paquete. "
|
1165 |
+
#~ "Ahora sólo necesitas esperar unos minutos para actualizarlo e instalarlo "
|
1166 |
+
#~ "en tu sitio web. (Usamos YITH Live Chat a modo de ejemplo)"
|
1167 |
+
|
1168 |
+
#~ msgid "After completing the installation, click on \"Activate plugin\""
|
1169 |
+
#~ msgstr ""
|
1170 |
+
#~ "Después de completar la instalación, haz click en \"Activar plugin\""
|
1171 |
+
|
1172 |
+
#~ msgid ""
|
1173 |
+
#~ "If everything worked allright, your plugin is now correctly installed on "
|
1174 |
+
#~ "your website. Enjoy it :-)"
|
1175 |
+
#~ msgstr ""
|
1176 |
+
#~ "Si todo funcionó bien, tu plugin está ahora correctamente instalado en tu "
|
1177 |
+
#~ "sitio web. Disfrútalo :-)"
|
1178 |
+
|
1179 |
+
#~ msgid ""
|
1180 |
+
#~ "The last step is the activation of the plugin through its license key you "
|
1181 |
+
#~ "received after the purchase. Click on \"License Activation\" that you "
|
1182 |
+
#~ "find in \"YITH Plugins\" and insert the license key and the email address "
|
1183 |
+
#~ "you used during the purchase."
|
1184 |
+
#~ msgstr ""
|
1185 |
+
#~ "El último paso es la activación del plugin a través de la clave de "
|
1186 |
+
#~ "licencia, que recibiste después de la compra. Haz click en \"Activación "
|
1187 |
+
#~ "de la licencia\", que encontrarás en \"YITH Plugins\" e introduce la "
|
1188 |
+
#~ "dirección de email que usaste durante la compra."
|
1189 |
+
|
1190 |
+
#~ msgid ""
|
1191 |
+
#~ "In case you had difficulty to recover the license key we sent you by "
|
1192 |
+
#~ "email, you can easily find it in \"My Licenses\" section of your account "
|
1193 |
+
#~ "on yithemes.com"
|
1194 |
+
#~ msgstr ""
|
1195 |
+
#~ "En caso de que hayas tenido dificultad para recuperar la clave de "
|
1196 |
+
#~ "licencia que te enviamos por email, puedes encontrarla fácilmente en la "
|
1197 |
+
#~ "sección \"Mis Licencias\" de tu cuenta en yithemes.com"
|
plugin-fw/languages/yith-plugin-fw-it_IT.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-it_IT.po
CHANGED
@@ -4,15 +4,15 @@ msgid ""
|
|
4 |
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: 2016-
|
8 |
-
"PO-Revision-Date: 2016-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: YIThemes <plugins@yithemes.com>\n"
|
11 |
"Language: it_IT\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.
|
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"
|
@@ -138,7 +138,7 @@ msgstr "Tipologia"
|
|
138 |
#: lib/yit-cpt-unlimited.php:1052
|
139 |
#, php-format
|
140 |
msgid "Layout for this %s"
|
141 |
-
msgstr ""
|
142 |
|
143 |
#: lib/yit-cpt-unlimited.php:1058
|
144 |
msgid "Rewrite"
|
@@ -146,10 +146,11 @@ msgstr "Riscrivi"
|
|
146 |
|
147 |
#: lib/yit-cpt-unlimited.php:1059
|
148 |
msgid ""
|
149 |
-
"Univocal identification name in the URL for each product (slug from post if
|
|
|
150 |
msgstr ""
|
151 |
-
"Nome identificativo univoco nell'URL per singolo prodotto (usa slug dal post
|
152 |
-
"vuoto)"
|
153 |
|
154 |
#: lib/yit-cpt-unlimited.php:1064
|
155 |
msgid "Label in Singular"
|
@@ -173,13 +174,14 @@ msgstr "Tassonomia"
|
|
173 |
|
174 |
#: lib/yit-cpt-unlimited.php:1077
|
175 |
msgid ""
|
176 |
-
"If you want to use categories in the portfolio, set a name for taxonomy.
|
177 |
-
"should be a slug (must not contain capital letters nor spaces) and must
|
178 |
-
"more than 32 characters long (database structure restriction)."
|
179 |
msgstr ""
|
180 |
"Se vuoi aggiungere delle categorie nel portfolio, imposta un nome per la "
|
181 |
-
"tassonomia. Il nome dovrà essere in forma di slug (non deve contenere
|
182 |
-
"maiuscoli né spazi) e non più lungo di 32 caratteri (restrizione
|
|
|
183 |
|
184 |
#: lib/yit-cpt-unlimited.php:1082
|
185 |
msgid "Taxonomy Rewrite"
|
@@ -222,17 +224,17 @@ msgstr "Aggiungi %s dalla immagini"
|
|
222 |
|
223 |
#: lib/yit-cpt-unlimited.php:1633
|
224 |
msgid "Upload multiple files"
|
225 |
-
msgstr ""
|
226 |
|
227 |
#: lib/yit-plugin-panel-sidebar.php:421 templates/panel/sidebar/sidebar.php:3
|
228 |
msgid "Hide sidebar"
|
229 |
-
msgstr ""
|
230 |
|
231 |
#: lib/yit-plugin-panel-sidebar.php:422 templates/panel/sidebar/sidebar.php:3
|
232 |
msgid "Show sidebar"
|
233 |
-
msgstr ""
|
234 |
|
235 |
-
#: lib/yit-plugin-panel-wc.php:
|
236 |
msgid "The changes you have made will be lost if you leave this page."
|
237 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
238 |
|
@@ -240,73 +242,77 @@ msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
|
240 |
msgid "Plugin Settings"
|
241 |
msgstr "Impostazioni plugin"
|
242 |
|
243 |
-
#: lib/yit-plugin-panel.php:
|
244 |
-
msgid "
|
245 |
-
msgstr ""
|
246 |
|
247 |
-
#: lib/yit-plugin-panel.php:
|
248 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Salva modifiche"
|
251 |
|
252 |
-
#: lib/yit-plugin-panel.php:
|
253 |
-
|
|
|
|
|
254 |
msgstr ""
|
255 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
256 |
"reimpostate."
|
257 |
|
258 |
-
#: lib/yit-plugin-panel.php:
|
259 |
msgid "Reset to default"
|
260 |
-
msgstr ""
|
261 |
|
262 |
-
#: lib/yit-plugin-panel.php:
|
263 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
264 |
msgid "Are you sure?"
|
265 |
msgstr "Sei sicuro?"
|
266 |
|
267 |
-
#: lib/yit-plugin-panel.php:
|
268 |
-
msgid "
|
|
|
269 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
270 |
|
271 |
-
#: lib/yit-plugin-panel.php:
|
272 |
msgid "Settings saved"
|
273 |
msgstr "Impostazioni salvate"
|
274 |
|
275 |
-
#: lib/yit-plugin-panel.php:
|
276 |
msgid "Settings reset"
|
277 |
msgstr "Impostazioni azzerate"
|
278 |
|
279 |
-
#: lib/yit-plugin-panel.php:
|
280 |
msgid "Element deleted correctly."
|
281 |
msgstr "Elemento rimosso correttamente."
|
282 |
|
283 |
-
#: lib/yit-plugin-panel.php:
|
284 |
msgid "Element updated correctly."
|
285 |
msgstr "Elemento aggiornato correttamente."
|
286 |
|
287 |
-
#: lib/yit-plugin-panel.php:
|
288 |
msgid "Database imported correctly."
|
289 |
msgstr "Database importato correttamente."
|
290 |
|
291 |
-
#: lib/yit-plugin-panel.php:
|
292 |
msgid "An error has occurred during import. Please try again."
|
293 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
294 |
|
295 |
-
#: lib/yit-plugin-panel.php:
|
296 |
msgid "The added file is not valid."
|
297 |
msgstr "Il file aggiunto non è valido."
|
298 |
|
299 |
-
#: lib/yit-plugin-panel.php:
|
300 |
msgid "Sorry, import is disabled."
|
301 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
302 |
|
303 |
-
#: lib/yit-plugin-panel.php:
|
304 |
msgid "Sorting successful."
|
305 |
msgstr "Ordinamento effettuato con successo."
|
306 |
|
307 |
#: lib/yit-plugin-subpanel.php:149
|
308 |
msgid ""
|
309 |
-
"If you continue with this action, you will reset all the options in this
|
|
|
310 |
msgstr ""
|
311 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
312 |
"reimpostate."
|
@@ -318,12 +324,13 @@ msgstr "Plugin attivati"
|
|
318 |
#: lib/yit-pointers.php:71
|
319 |
msgid ""
|
320 |
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
321 |
-
" For each plugin installed,
|
322 |
-
"settings will be available as a new entry in YIT Plugin menu."
|
323 |
msgstr ""
|
324 |
-
"Da ora in poi, puoi trovare tutte le opzioni dei tuoi plugin nel menu Plugin
|
325 |
-
"
|
326 |
-
"
|
|
|
327 |
|
328 |
#: lib/yit-pointers.php:73 lib/yit-pointers.php:89
|
329 |
msgid "Discover all our plugins available on:"
|
@@ -337,110 +344,120 @@ msgstr "e"
|
|
337 |
msgid "Plugins Upgraded"
|
338 |
msgstr "Plugin aggiornati"
|
339 |
|
340 |
-
# Any time you install one of our plugins, a new entry will be added to this menu.\n
|
341 |
#: lib/yit-pointers.php:85
|
342 |
msgid ""
|
343 |
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
344 |
-
" Any time one of our plugins is updated,
|
345 |
-
"entry will be added to this menu.\n"
|
346 |
-
" For example, after the update, plugin
|
347 |
-
"(such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax
|
348 |
-
"
|
349 |
-
"
|
|
|
350 |
msgstr ""
|
351 |
-
"Da ora in poi, troverai tutte le opzioni dei tuoi plugin nel menu Plugin
|
352 |
-
"
|
353 |
-
"
|
354 |
-
"
|
355 |
-
"
|
|
|
356 |
"saranno trasferite nella scheda Plugin YIT."
|
357 |
|
358 |
-
#: lib/yit-upgrade.php:
|
359 |
msgid "There is a new version of %plugin_name% available."
|
360 |
msgstr "Una nuova versione di %plugin_name% è disponibile."
|
361 |
|
362 |
-
#: lib/yit-upgrade.php:
|
363 |
msgid "View version %latest% details."
|
364 |
msgstr "Visualizza i dettagli della versione %latest%."
|
365 |
|
366 |
-
#: lib/yit-upgrade.php:
|
367 |
msgid "Automatic update is unavailable for this plugin,"
|
368 |
msgstr "L'aggiornamento automatico non è disponibile per questo plugin,"
|
369 |
|
370 |
-
#: lib/yit-upgrade.php:
|
371 |
-
msgid "
|
|
|
372 |
msgstr ""
|
373 |
-
"per favore, <a href=\"%activate_link%\">attiva</a> la tua copia di
|
|
|
374 |
|
375 |
-
#: lib/yit-upgrade.php:
|
376 |
msgid "Update now."
|
377 |
msgstr "Aggiorna adesso."
|
378 |
|
379 |
-
#: lib/yit-upgrade.php:
|
380 |
msgid "YIThemes Repository"
|
381 |
-
msgstr ""
|
382 |
|
383 |
-
#: lib/yit-upgrade.php:
|
384 |
msgid "Invalid URL Provided."
|
385 |
msgstr "L'URL inserito non è valido."
|
386 |
|
387 |
-
#: lib/yit-upgrade.php:
|
388 |
msgid "Could not create Temporary file."
|
389 |
msgstr "Non è stato possibile creare il file temporaneo."
|
390 |
|
391 |
-
#: lib/yit-upgrade.php:
|
392 |
#, php-format
|
393 |
msgid ""
|
394 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
395 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
396 |
msgstr ""
|
397 |
-
"È disponibile una nuova versione di %1$s. <a href=\"%2$s\" class=\"thickbox
|
398 |
-
"changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione
|
|
|
399 |
|
400 |
-
#: lib/yit-upgrade.php:
|
401 |
#, php-format
|
402 |
msgid ""
|
403 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
404 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You
|
405 |
-
"activate the plugin on a single site of the network to benefit from
|
406 |
-
"updates.</em>"
|
407 |
msgstr ""
|
408 |
-
"È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class=\"thickbox
|
409 |
-
"changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione
|
410 |
-
"<em>Per poter usufruire degli aggiornamenti automatici è
|
411 |
-
"plugin su un solo sito.</em>"
|
412 |
|
413 |
-
#: lib/yit-upgrade.php:
|
414 |
#, php-format
|
415 |
msgid ""
|
416 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
417 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a>.
|
418 |
-
"update is unavailable for this plugin, please <a href=\"%5$s\"
|
419 |
-
"activation\">activate</a> your copy of %6s.</em>"
|
420 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
421 |
|
422 |
-
#: lib/yit-upgrade.php:
|
423 |
#, php-format
|
424 |
msgid ""
|
425 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox
|
426 |
-
"changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a
|
427 |
-
"\">update now</a>."
|
428 |
msgstr ""
|
429 |
-
"È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class=\"thickbox
|
430 |
-
"changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione
|
431 |
-
"oppure <a href=\"%5$s\">aggiorna adesso</a>."
|
432 |
|
433 |
-
#: lib/yit-upgrade.php:
|
434 |
msgid "You can't update the plugins for this site."
|
435 |
msgstr "Non è possibile aggiornare i plugin per questo sito."
|
436 |
|
437 |
-
#: lib/yit-upgrade.php:
|
438 |
-
msgid "
|
|
|
439 |
msgstr ""
|
440 |
-
"Non sei in possesso delle autorizzazioni necessarie per aggiornare i plugin
|
441 |
-
"questo sito."
|
442 |
|
443 |
-
#: lib/yit-upgrade.php:
|
444 |
msgid "Update Plugin"
|
445 |
msgstr "Aggiorna plugin"
|
446 |
|
@@ -473,11 +490,11 @@ msgstr "Email"
|
|
473 |
#: licence/templates/panel/activation/activation-panel.php:167
|
474 |
#: licence/templates/panel/activation/activation-panel.php:198
|
475 |
msgid "License Key"
|
476 |
-
msgstr ""
|
477 |
|
478 |
#: licence/lib/yit-licence.php:187
|
479 |
msgid "Are you sure you want to deactivate the license for current site?"
|
480 |
-
msgstr ""
|
481 |
|
482 |
#: licence/lib/yit-licence.php:667
|
483 |
msgid "Invalid Request"
|
@@ -485,7 +502,7 @@ msgstr "Richiesta non valida"
|
|
485 |
|
486 |
#: licence/lib/yit-licence.php:668
|
487 |
msgid "Invalid license key"
|
488 |
-
msgstr ""
|
489 |
|
490 |
#: licence/lib/yit-licence.php:669
|
491 |
msgid "Software has been deactivated"
|
@@ -505,33 +522,33 @@ msgstr "Chiave di sicurezza non valida"
|
|
505 |
|
506 |
#: licence/lib/yit-licence.php:673
|
507 |
msgid "License key has expired"
|
508 |
-
msgstr ""
|
509 |
|
510 |
#: licence/lib/yit-licence.php:674
|
511 |
msgid "License key has been banned"
|
512 |
-
msgstr ""
|
513 |
|
514 |
#: licence/lib/yit-licence.php:675
|
515 |
-
msgid "Current product is not included
|
516 |
-
msgstr ""
|
517 |
|
518 |
#: licence/lib/yit-licence.php:676
|
519 |
msgid "Great"
|
520 |
-
msgstr ""
|
521 |
|
522 |
#: licence/lib/yit-licence.php:676
|
523 |
msgid "License successfully activated"
|
524 |
-
msgstr ""
|
525 |
|
526 |
#: licence/lib/yit-licence.php:677
|
527 |
msgid "License key deactivated for website"
|
528 |
-
msgstr ""
|
529 |
|
530 |
#: licence/lib/yit-plugin-licence.php:67 licence/lib/yit-plugin-licence.php:68
|
531 |
#: licence/lib/yit-theme-licence.php:69 licence/lib/yit-theme-licence.php:70
|
532 |
#: licence/lib/yit-theme-licence.php:109 licence/lib/yit-theme-licence.php:110
|
533 |
msgid "License Activation"
|
534 |
-
msgstr ""
|
535 |
|
536 |
#: licence/lib/yit-theme-licence.php:117 licence/lib/yit-theme-licence.php:118
|
537 |
#, php-format
|
@@ -540,29 +557,39 @@ msgstr "%s"
|
|
540 |
|
541 |
#: licence/lib/yit-theme-licence.php:159
|
542 |
msgid ""
|
543 |
-
"I cannot find the license key for activating the theme I have bought some
|
544 |
-
"ago. Where can I find it?"
|
545 |
msgstr ""
|
546 |
"Non riesco a trovare la chiave di licenza per l'attivazione del tema che ho "
|
547 |
"acquistato diverso tempo fa. Dove posso trovarla?"
|
548 |
|
549 |
#: licence/lib/yit-theme-licence.php:163
|
550 |
msgid ""
|
551 |
-
"If you have purchased one of our products before 27 January 2015, you can
|
552 |
-
"from support and updates (the services offered with the license)\n"
|
553 |
-
" until 27 January 2016 and you do not have to purchase it
|
554 |
-
"to get a new license key, because, before this date, your license used
|
555 |
-
"activated automatically by our system.\n"
|
556 |
-
" After 27 January 2016, instead, if you want to benefit
|
557 |
-
"support and updates you have to buy a new license and activate it
|
558 |
-
"license key you will be\n"
|
559 |
-
" provided with and that you can find in your YIThemes
|
560 |
-
"in section \"My licenses\"."
|
561 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
|
563 |
#: licence/templates/panel/activation/activation-panel.php:23
|
564 |
msgid "Yithemes License Activation"
|
565 |
-
msgstr ""
|
566 |
|
567 |
#: licence/templates/panel/activation/activation-panel.php:27
|
568 |
msgid ""
|
@@ -574,13 +601,13 @@ msgstr ""
|
|
574 |
|
575 |
#: licence/templates/panel/activation/activation-panel.php:29
|
576 |
msgid "Update license information"
|
577 |
-
msgstr ""
|
578 |
|
579 |
#: licence/templates/panel/activation/activation-panel.php:42
|
580 |
msgid "Product to activate"
|
581 |
msgid_plural "Products to activate"
|
582 |
-
msgstr[0] ""
|
583 |
-
msgstr[1] ""
|
584 |
|
585 |
#: licence/templates/panel/activation/activation-panel.php:61
|
586 |
msgid "Activate"
|
@@ -606,12 +633,12 @@ msgid "Remaining"
|
|
606 |
msgstr "Tempo rimanente"
|
607 |
|
608 |
#: licence/templates/panel/activation/activation-panel.php:97
|
609 |
-
msgid "
|
610 |
-
msgstr ""
|
611 |
|
612 |
#: licence/templates/panel/activation/activation-panel.php:101
|
613 |
msgid "License Actions"
|
614 |
-
msgstr ""
|
615 |
|
616 |
#: licence/templates/panel/activation/activation-panel.php:126
|
617 |
#, php-format
|
@@ -620,7 +647,7 @@ msgstr "%1s di %2s"
|
|
620 |
|
621 |
#: licence/templates/panel/activation/activation-panel.php:142
|
622 |
msgid "Deactivate"
|
623 |
-
msgstr ""
|
624 |
|
625 |
#: licence/templates/panel/activation/activation-panel.php:147
|
626 |
#: licence/templates/panel/activation/activation-panel.php:204
|
@@ -637,11 +664,11 @@ msgstr "Non più valido"
|
|
637 |
|
638 |
#: licence/templates/panel/activation/activation-panel.php:226
|
639 |
msgid "Order again"
|
640 |
-
msgstr ""
|
641 |
|
642 |
#: licence/templates/panel/activation/activation-panel.php:228
|
643 |
msgid "Renew license"
|
644 |
-
msgstr ""
|
645 |
|
646 |
#: templates/metaboxes/types/ajax-products.php:23
|
647 |
msgid "Search for a product"
|
@@ -734,11 +761,12 @@ msgstr "Nome dati"
|
|
734 |
#: templates/metaboxes/types/contactform.php:90
|
735 |
#: templates/metaboxes/types/contactform.php:282
|
736 |
msgid ""
|
737 |
-
"REQUIRED: Field identification name to be entered into email body.
|
738 |
-
"strong>Use only lowercase characters and underscores."
|
739 |
msgstr ""
|
740 |
"RICHIESTO: Nome identificativo del campo da inserire nel corpo dell'email. "
|
741 |
-
"<strong>Nota:</strong>Puoi utilizzare solamente caratteri minuscoli e
|
|
|
742 |
|
743 |
#: templates/metaboxes/types/contactform.php:95
|
744 |
#: templates/metaboxes/types/contactform.php:287
|
@@ -824,7 +852,8 @@ msgstr "Classe"
|
|
824 |
|
825 |
#: templates/metaboxes/types/contactform.php:170
|
826 |
#: templates/metaboxes/types/contactform.php:362
|
827 |
-
msgid "
|
|
|
828 |
msgstr ""
|
829 |
"Inserisci una o più classi (separate da virgole) per una ulteriore "
|
830 |
"personalizzazione."
|
@@ -903,7 +932,8 @@ msgstr "(Default: <i %s></i> )"
|
|
903 |
|
904 |
#: templates/metaboxes/types/image-gallery.php:40
|
905 |
#: templates/metaboxes/types/image-gallery.php:45
|
906 |
-
#: templates/metaboxes/types/images.php:38
|
|
|
907 |
msgid "Delete image"
|
908 |
msgstr "Rimuovi immagine"
|
909 |
|
@@ -1009,163 +1039,149 @@ msgstr "Grassetto corsivo"
|
|
1009 |
|
1010 |
#: templates/panel/sidebar/widgets/widgets.php:17
|
1011 |
msgid "Join the club"
|
1012 |
-
msgstr ""
|
1013 |
|
1014 |
#: templates/panel/sidebar/widgets/widgets.php:24
|
1015 |
msgid "Despacho Theme - 100% FREE"
|
1016 |
-
msgstr ""
|
1017 |
|
1018 |
#: templates/panel/sidebar/widgets/widgets.php:28
|
1019 |
msgid "FREE!"
|
1020 |
-
msgstr ""
|
1021 |
|
1022 |
#: templates/panel/sidebar/widgets/widgets.php:34
|
1023 |
msgid "Important Links"
|
1024 |
-
msgstr ""
|
1025 |
|
1026 |
#: templates/panel/types/upload.php:32
|
1027 |
msgid "Reset"
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
#: templates/panel/woocommerce/woocommerce-form.php:17
|
1031 |
msgid "Reset Defaults"
|
1032 |
msgstr "Ripristina impostazioni iniziali"
|
1033 |
|
1034 |
-
|
1035 |
-
|
1036 |
-
msgstr ""
|
1037 |
|
1038 |
-
|
1039 |
-
|
1040 |
-
"
|
1041 |
-
|
1042 |
-
|
1043 |
-
"
|
1044 |
-
"attivare la licenza del tuo plugin premium ? "
|
1045 |
|
1046 |
-
|
1047 |
-
|
1048 |
-
"
|
1049 |
-
"
|
1050 |
-
"
|
1051 |
-
"
|
1052 |
-
"plugin
|
1053 |
-
"
|
1054 |
-
|
1055 |
-
|
1056 |
-
"
|
1057 |
-
"
|
1058 |
-
"
|
1059 |
-
"
|
1060 |
-
"
|
1061 |
-
"
|
1062 |
-
"semplicemente scaricare il pacchetto PREMIUM ed installarlo sul tuo sito."
|
1063 |
-
|
1064 |
-
#: templates/upgrade/upgrade-to-pro-version.php:9
|
1065 |
-
#, php-format
|
1066 |
-
msgid ""
|
1067 |
-
"%1$sDo you need to know how to do it?%2$s Easy! %1$sFollow this list of steps%2$s "
|
1068 |
-
"and in a few minutes the plugin you purchased will be installed on your site"
|
1069 |
-
msgstr ""
|
1070 |
-
"%1$sNon sai come fare ?%2$s Non è un problema%1$s, segui i passi elencati qui sotto"
|
1071 |
-
"%2$s ed in pochi minuti avrai il plugin acquistato correttamente installato sul "
|
1072 |
-
"tuo sito."
|
1073 |
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
|
|
|
|
|
|
|
|
|
|
1077 |
|
1078 |
-
|
1079 |
-
|
1080 |
-
"
|
1081 |
-
"to install among the available downloads and click on \"Download\" button"
|
1082 |
-
msgstr ""
|
1083 |
-
"Dal menù di sinistra clicca su \"My Downloads\" e cerca tra i download disponibili "
|
1084 |
-
"il plugin che vuoi installare, e clicca su \"Download\""
|
1085 |
|
1086 |
-
|
1087 |
-
|
1088 |
-
"
|
1089 |
-
"
|
1090 |
-
msgstr ""
|
1091 |
-
"
|
1092 |
-
"
|
1093 |
|
1094 |
-
|
1095 |
-
|
1096 |
-
"
|
1097 |
-
|
1098 |
-
|
1099 |
-
"
|
1100 |
-
msgstr ""
|
1101 |
-
"Dal menù di sinistra clicca sulla voce Plugins. Verrai indirizzato su una pagina "
|
1102 |
-
"con la lista dei plugin disponibili sul tuo sito. Clicca sul pulsante \"Add New\" "
|
1103 |
-
"che trovi in alto a sinistra vicino al titolo della pagina."
|
1104 |
|
1105 |
-
|
1106 |
-
|
1107 |
-
"
|
1108 |
-
"
|
1109 |
-
|
1110 |
-
|
1111 |
-
"
|
|
|
|
|
|
|
1112 |
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
"
|
1118 |
-
"
|
1119 |
-
"Live Chat plugin by way of example)"
|
1120 |
-
msgstr ""
|
1121 |
-
"Cliccando su \"Upload Plugins\", ti troverai in una pagina dove poter effettuare "
|
1122 |
-
"l'upload del pacchetto del plugin PREMIUM da te precedentemente scaricato. Clicca "
|
1123 |
-
"quindi su \"Scegli File\", cerca la cartella di download dove hai scaricato il "
|
1124 |
-
"plugin ed effettua il caricamento del pacchetto. A questo punto ti basta attendere "
|
1125 |
-
"qualche minuto che il pacchetto venga caricato ed installato sul tuo sito. "
|
1126 |
-
"(Abbiamo usato YITH Live Chat come esempio) "
|
1127 |
-
|
1128 |
-
#: templates/upgrade/upgrade-to-pro-version.php:48
|
1129 |
-
msgid "After completing the installation, click on \"Activate plugin\""
|
1130 |
-
msgstr "Al termine della procedura di installazione clicca su \"Attiva\""
|
1131 |
-
|
1132 |
-
#: templates/upgrade/upgrade-to-pro-version.php:52
|
1133 |
-
msgid ""
|
1134 |
-
"If everything worked allright, your plugin is now correctly installed on your "
|
1135 |
-
"website. Enjoy it :-)"
|
1136 |
-
msgstr ""
|
1137 |
-
"Se tutto è andato per il meglio il tuo plugin è correttamente installato sul tuo "
|
1138 |
-
"sito web. Enjoy it :-)"
|
1139 |
|
1140 |
-
|
1141 |
-
|
1142 |
-
"
|
1143 |
-
"
|
1144 |
-
"
|
1145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
"
|
1153 |
-
|
1154 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1155 |
|
1156 |
#~ msgid "YITH Plugins"
|
1157 |
#~ msgstr "YITH Plugins"
|
1158 |
|
1159 |
#~ msgid ""
|
1160 |
#~ "The last step is the activation of the plugin through its license key you "
|
1161 |
-
#~ "received after the purchase. Click on \"License Activation\" that you
|
1162 |
-
#~ "\"YITH Plugins\" and insert the license key and the email address
|
1163 |
-
#~ "during the purchas."
|
1164 |
#~ msgstr ""
|
1165 |
-
#~ "Ultimo step è attivare il plugin con la chiave di licenza che hai
|
1166 |
-
#~ "l'acquisto. Clicca quindi sul link \"License Activation\"
|
1167 |
-
#~ "\"YITH Plugins\" ed inserisci la license key in tuo
|
1168 |
-
#~ "utilizzata in fase di acquisto."
|
1169 |
|
1170 |
#~ msgid "YIT Plugins"
|
1171 |
#~ msgstr "YIT Plugins"
|
@@ -1183,16 +1199,17 @@ msgstr ""
|
|
1183 |
#~ msgstr "Ripristina impostazioni iniziali"
|
1184 |
|
1185 |
#~ msgid ""
|
1186 |
-
#~ "There is a new version of %1$s available. <a href=\"%2$s\" class
|
1187 |
-
#~ "changelog-button\" title=\"%3$s\">View version %4$s
|
1188 |
-
#~ "update is unavailable for this plugin, please
|
1189 |
-
#~ "activation\">activate</a> your copy of
|
|
|
1190 |
#~ msgstr ""
|
1191 |
-
#~ "È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class
|
1192 |
-
#~ "changelog-button\" title=\"%3$s\">Visualizza i dettagli
|
1193 |
-
#~ "a>. <em>Gli aggiornamenti automatici non sono
|
1194 |
-
#~ "favore, <a href=\"%5$s\" title
|
1195 |
-
#~ "di %6s.</em>"
|
1196 |
|
1197 |
#~ msgid "Invalid licence key"
|
1198 |
#~ msgstr "Chiave di licenza non valida"
|
@@ -1212,24 +1229,24 @@ msgstr ""
|
|
1212 |
#~ msgid ""
|
1213 |
#~ "If you have purchased one of our products before 27 January 2015, you can "
|
1214 |
#~ "benefit from support and updates (the services offered with the license)\n"
|
1215 |
-
#~ " until 27 January 2016 and you do not have to purchase it
|
1216 |
-
#~ "get a new license key, because, before this date, your license
|
1217 |
-
#~ "activated automatically by our system.\n"
|
1218 |
-
#~ " After 27 January 2016, instead, if you want to benefit from
|
1219 |
-
#~ "and updates you have to buy a new license and activate it through
|
1220 |
-
#~ "key you will be\n"
|
1221 |
-
#~ " provided with and that you can find in your YIThemes account,
|
1222 |
-
#~ "section \"My licenses\"."
|
1223 |
#~ msgstr ""
|
1224 |
-
#~ "Se hai acquistato un nostro prodotto prima del 27 gennaio 2015 potrai
|
1225 |
-
#~ "al supporto e scaricare gli aggiornamenti fino al 27 gennaio
|
1226 |
-
#~ "bisogno di una chiave di licenza,\n"
|
1227 |
#~ "in quanto la tua licenza prima di questa data veniva attivata in modo "
|
1228 |
#~ "automatico dal nostro sistema.\n"
|
1229 |
-
#~ "Dopo il 27 gennaio 2016, invece, per poter usufruire del servizio di
|
1230 |
-
#~ "degli aggiornamenti dovrai riacquistare il prodotto e\n"
|
1231 |
-
#~ "attivarlo con la chiave di licenza che ti sarà fornita e che puoi trovare
|
1232 |
-
#~ "tuo account YIThemes, alla voce \"Le mie licenze\"."
|
1233 |
|
1234 |
#~ msgid "Update licence information"
|
1235 |
#~ msgstr "Aggiorna le informazioni di licenza"
|
4 |
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: 2016-07-06 15:16+0200\n"
|
8 |
+
"PO-Revision-Date: 2016-07-06 15:17+0200\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: YIThemes <plugins@yithemes.com>\n"
|
11 |
"Language: it_IT\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.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"
|
138 |
#: lib/yit-cpt-unlimited.php:1052
|
139 |
#, php-format
|
140 |
msgid "Layout for this %s"
|
141 |
+
msgstr "Layout per questo %s"
|
142 |
|
143 |
#: lib/yit-cpt-unlimited.php:1058
|
144 |
msgid "Rewrite"
|
146 |
|
147 |
#: lib/yit-cpt-unlimited.php:1059
|
148 |
msgid ""
|
149 |
+
"Univocal identification name in the URL for each product (slug from post if "
|
150 |
+
"empty)"
|
151 |
msgstr ""
|
152 |
+
"Nome identificativo univoco nell'URL per singolo prodotto (usa slug dal post "
|
153 |
+
"se vuoto)"
|
154 |
|
155 |
#: lib/yit-cpt-unlimited.php:1064
|
156 |
msgid "Label in Singular"
|
174 |
|
175 |
#: lib/yit-cpt-unlimited.php:1077
|
176 |
msgid ""
|
177 |
+
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
178 |
+
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
179 |
+
"not be more than 32 characters long (database structure restriction)."
|
180 |
msgstr ""
|
181 |
"Se vuoi aggiungere delle categorie nel portfolio, imposta un nome per la "
|
182 |
+
"tassonomia. Il nome dovrà essere in forma di slug (non deve contenere "
|
183 |
+
"caratteri maiuscoli né spazi) e non più lungo di 32 caratteri (restrizione "
|
184 |
+
"di database)."
|
185 |
|
186 |
#: lib/yit-cpt-unlimited.php:1082
|
187 |
msgid "Taxonomy Rewrite"
|
224 |
|
225 |
#: lib/yit-cpt-unlimited.php:1633
|
226 |
msgid "Upload multiple files"
|
227 |
+
msgstr "Carica file multipli"
|
228 |
|
229 |
#: lib/yit-plugin-panel-sidebar.php:421 templates/panel/sidebar/sidebar.php:3
|
230 |
msgid "Hide sidebar"
|
231 |
+
msgstr "Nascondi barra laterale"
|
232 |
|
233 |
#: lib/yit-plugin-panel-sidebar.php:422 templates/panel/sidebar/sidebar.php:3
|
234 |
msgid "Show sidebar"
|
235 |
+
msgstr "Mostra barra laterale"
|
236 |
|
237 |
+
#: lib/yit-plugin-panel-wc.php:374
|
238 |
msgid "The changes you have made will be lost if you leave this page."
|
239 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
240 |
|
242 |
msgid "Plugin Settings"
|
243 |
msgstr "Impostazioni plugin"
|
244 |
|
245 |
+
#: lib/yit-plugin-panel.php:297 lib/yit-plugin-panel.php:300
|
246 |
+
msgid "How to install premium version"
|
247 |
+
msgstr "Come installare la versione premium"
|
248 |
|
249 |
+
#: lib/yit-plugin-panel.php:352 lib/yit-plugin-subpanel.php:146
|
250 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Salva modifiche"
|
253 |
|
254 |
+
#: lib/yit-plugin-panel.php:355
|
255 |
+
#: templates/panel/woocommerce/woocommerce-form.php:14
|
256 |
+
msgid ""
|
257 |
+
"If you continue with this action, you will reset all options in this page."
|
258 |
msgstr ""
|
259 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
260 |
"reimpostate."
|
261 |
|
262 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
263 |
msgid "Reset to default"
|
264 |
+
msgstr "Ripristina configurazione predefinita"
|
265 |
|
266 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
267 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
268 |
msgid "Are you sure?"
|
269 |
msgstr "Sei sicuro?"
|
270 |
|
271 |
+
#: lib/yit-plugin-panel.php:553
|
272 |
+
msgid ""
|
273 |
+
"The element you have entered already exists. Please, enter another name."
|
274 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
275 |
|
276 |
+
#: lib/yit-plugin-panel.php:554
|
277 |
msgid "Settings saved"
|
278 |
msgstr "Impostazioni salvate"
|
279 |
|
280 |
+
#: lib/yit-plugin-panel.php:555
|
281 |
msgid "Settings reset"
|
282 |
msgstr "Impostazioni azzerate"
|
283 |
|
284 |
+
#: lib/yit-plugin-panel.php:556
|
285 |
msgid "Element deleted correctly."
|
286 |
msgstr "Elemento rimosso correttamente."
|
287 |
|
288 |
+
#: lib/yit-plugin-panel.php:557 lib/yit-plugin-panel.php:558
|
289 |
msgid "Element updated correctly."
|
290 |
msgstr "Elemento aggiornato correttamente."
|
291 |
|
292 |
+
#: lib/yit-plugin-panel.php:559
|
293 |
msgid "Database imported correctly."
|
294 |
msgstr "Database importato correttamente."
|
295 |
|
296 |
+
#: lib/yit-plugin-panel.php:560
|
297 |
msgid "An error has occurred during import. Please try again."
|
298 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
299 |
|
300 |
+
#: lib/yit-plugin-panel.php:561
|
301 |
msgid "The added file is not valid."
|
302 |
msgstr "Il file aggiunto non è valido."
|
303 |
|
304 |
+
#: lib/yit-plugin-panel.php:562
|
305 |
msgid "Sorry, import is disabled."
|
306 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
307 |
|
308 |
+
#: lib/yit-plugin-panel.php:563
|
309 |
msgid "Sorting successful."
|
310 |
msgstr "Ordinamento effettuato con successo."
|
311 |
|
312 |
#: lib/yit-plugin-subpanel.php:149
|
313 |
msgid ""
|
314 |
+
"If you continue with this action, you will reset all the options in this "
|
315 |
+
"page."
|
316 |
msgstr ""
|
317 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
318 |
"reimpostate."
|
324 |
#: lib/yit-pointers.php:71
|
325 |
msgid ""
|
326 |
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
327 |
+
" For each plugin installed, "
|
328 |
+
"customization settings will be available as a new entry in YIT Plugin menu."
|
329 |
msgstr ""
|
330 |
+
"Da ora in poi, puoi trovare tutte le opzioni dei tuoi plugin nel menu Plugin "
|
331 |
+
"YIT.\n"
|
332 |
+
"Troverai le impostazioni di personalizzazione sotto una nuova voce nel menu "
|
333 |
+
"Plugin YIT."
|
334 |
|
335 |
#: lib/yit-pointers.php:73 lib/yit-pointers.php:89
|
336 |
msgid "Discover all our plugins available on:"
|
344 |
msgid "Plugins Upgraded"
|
345 |
msgstr "Plugin aggiornati"
|
346 |
|
|
|
347 |
#: lib/yit-pointers.php:85
|
348 |
msgid ""
|
349 |
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
350 |
+
" Any time one of our plugins is updated, "
|
351 |
+
"a new entry will be added to this menu.\n"
|
352 |
+
" For example, after the update, plugin "
|
353 |
+
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
354 |
+
"Search, etc.)\n"
|
355 |
+
" will be moved from previous location to "
|
356 |
+
"YIT Plugin tab."
|
357 |
msgstr ""
|
358 |
+
"Da ora in poi, troverai tutte le opzioni dei tuoi plugin nel menu Plugin "
|
359 |
+
"YIT.\n"
|
360 |
+
"Ogni volta che aggiornerai i nostri plugin, troverai una nuova voce in "
|
361 |
+
"questo menu.\n"
|
362 |
+
"Per esempio, dopo l'aggiornamento, le opzioni del plugin (come per esempio "
|
363 |
+
"quelle di YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search etc.)\n"
|
364 |
"saranno trasferite nella scheda Plugin YIT."
|
365 |
|
366 |
+
#: lib/yit-upgrade.php:135
|
367 |
msgid "There is a new version of %plugin_name% available."
|
368 |
msgstr "Una nuova versione di %plugin_name% è disponibile."
|
369 |
|
370 |
+
#: lib/yit-upgrade.php:136
|
371 |
msgid "View version %latest% details."
|
372 |
msgstr "Visualizza i dettagli della versione %latest%."
|
373 |
|
374 |
+
#: lib/yit-upgrade.php:137
|
375 |
msgid "Automatic update is unavailable for this plugin,"
|
376 |
msgstr "L'aggiornamento automatico non è disponibile per questo plugin,"
|
377 |
|
378 |
+
#: lib/yit-upgrade.php:138
|
379 |
+
msgid ""
|
380 |
+
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
381 |
msgstr ""
|
382 |
+
"per favore, <a href=\"%activate_link%\">attiva</a> la tua copia di "
|
383 |
+
"%plugin_name%."
|
384 |
|
385 |
+
#: lib/yit-upgrade.php:139
|
386 |
msgid "Update now."
|
387 |
msgstr "Aggiorna adesso."
|
388 |
|
389 |
+
#: lib/yit-upgrade.php:240
|
390 |
msgid "YIThemes Repository"
|
391 |
+
msgstr "Repository YIThemes"
|
392 |
|
393 |
+
#: lib/yit-upgrade.php:274
|
394 |
msgid "Invalid URL Provided."
|
395 |
msgstr "L'URL inserito non è valido."
|
396 |
|
397 |
+
#: lib/yit-upgrade.php:287
|
398 |
msgid "Could not create Temporary file."
|
399 |
msgstr "Non è stato possibile creare il file temporaneo."
|
400 |
|
401 |
+
#: lib/yit-upgrade.php:439
|
402 |
#, php-format
|
403 |
msgid ""
|
404 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
405 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
406 |
msgstr ""
|
407 |
+
"È disponibile una nuova versione di %1$s. <a href=\"%2$s\" class=\"thickbox "
|
408 |
+
"yit-changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione "
|
409 |
+
"%4$s</a>."
|
410 |
|
411 |
+
#: lib/yit-upgrade.php:441
|
412 |
#, php-format
|
413 |
msgid ""
|
414 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
415 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
416 |
+
"have to activate the plugin on a single site of the network to benefit from "
|
417 |
+
"automatic updates.</em>"
|
418 |
msgstr ""
|
419 |
+
"È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class=\"thickbox "
|
420 |
+
"yit-changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione "
|
421 |
+
"%4$s</a>. <em>Per poter usufruire degli aggiornamenti automatici è "
|
422 |
+
"necessario attivare il plugin su un solo sito.</em>"
|
423 |
|
424 |
+
#: lib/yit-upgrade.php:443
|
425 |
#, php-format
|
426 |
msgid ""
|
427 |
+
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
428 |
+
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
|
429 |
+
"<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
|
430 |
+
"title=\"License activation\">activate</a> your copy of %6s.</em>"
|
431 |
msgstr ""
|
432 |
+
"È disponibile una nuova versione di %1$s. <a href=\"%2$s\" class=\"thickbox "
|
433 |
+
"yit-changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione "
|
434 |
+
"%4$s</a>. <em>Gli aggiornamenti automatici non sono disponibili per questo "
|
435 |
+
"plugin, per piacere <a href=\"%5$s\" title=\"License activation\">attivi</a> "
|
436 |
+
"la sua copia di %6s.</em>"
|
437 |
|
438 |
+
#: lib/yit-upgrade.php:445
|
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> or <a "
|
443 |
+
"href=\"%5$s\">update now</a>."
|
444 |
msgstr ""
|
445 |
+
"È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class=\"thickbox "
|
446 |
+
"yit-changelog-button\" title=\"%3$s\">Visualizza i dettagli della versione "
|
447 |
+
"%4$s</a> oppure <a href=\"%5$s\">aggiorna adesso</a>."
|
448 |
|
449 |
+
#: lib/yit-upgrade.php:517
|
450 |
msgid "You can't update the plugins for this site."
|
451 |
msgstr "Non è possibile aggiornare i plugin per questo sito."
|
452 |
|
453 |
+
#: lib/yit-upgrade.php:521
|
454 |
+
msgid ""
|
455 |
+
"You do not have sufficient permissions to update the plugins for this site."
|
456 |
msgstr ""
|
457 |
+
"Non sei in possesso delle autorizzazioni necessarie per aggiornare i plugin "
|
458 |
+
"in questo sito."
|
459 |
|
460 |
+
#: lib/yit-upgrade.php:528
|
461 |
msgid "Update Plugin"
|
462 |
msgstr "Aggiorna plugin"
|
463 |
|
490 |
#: licence/templates/panel/activation/activation-panel.php:167
|
491 |
#: licence/templates/panel/activation/activation-panel.php:198
|
492 |
msgid "License Key"
|
493 |
+
msgstr "Chiave di licenza"
|
494 |
|
495 |
#: licence/lib/yit-licence.php:187
|
496 |
msgid "Are you sure you want to deactivate the license for current site?"
|
497 |
+
msgstr "Sei sicuro di voler disattivare la licenza per questo sito?"
|
498 |
|
499 |
#: licence/lib/yit-licence.php:667
|
500 |
msgid "Invalid Request"
|
502 |
|
503 |
#: licence/lib/yit-licence.php:668
|
504 |
msgid "Invalid license key"
|
505 |
+
msgstr "Chiave di licenza non valida"
|
506 |
|
507 |
#: licence/lib/yit-licence.php:669
|
508 |
msgid "Software has been deactivated"
|
522 |
|
523 |
#: licence/lib/yit-licence.php:673
|
524 |
msgid "License key has expired"
|
525 |
+
msgstr "La chiave di licenza è scaduta"
|
526 |
|
527 |
#: licence/lib/yit-licence.php:674
|
528 |
msgid "License key has been banned"
|
529 |
+
msgstr "La chiave di licenza è stata bloccata"
|
530 |
|
531 |
#: licence/lib/yit-licence.php:675
|
532 |
+
msgid "Current product is not included in your YITH Club Subscription key"
|
533 |
+
msgstr "Questo prodotto non è incluso nella tua licenze YITH Club Subscription"
|
534 |
|
535 |
#: licence/lib/yit-licence.php:676
|
536 |
msgid "Great"
|
537 |
+
msgstr "Grande!"
|
538 |
|
539 |
#: licence/lib/yit-licence.php:676
|
540 |
msgid "License successfully activated"
|
541 |
+
msgstr "Licenza attivata con successo"
|
542 |
|
543 |
#: licence/lib/yit-licence.php:677
|
544 |
msgid "License key deactivated for website"
|
545 |
+
msgstr "Chiave di licenza disattivata per il sito web"
|
546 |
|
547 |
#: licence/lib/yit-plugin-licence.php:67 licence/lib/yit-plugin-licence.php:68
|
548 |
#: licence/lib/yit-theme-licence.php:69 licence/lib/yit-theme-licence.php:70
|
549 |
#: licence/lib/yit-theme-licence.php:109 licence/lib/yit-theme-licence.php:110
|
550 |
msgid "License Activation"
|
551 |
+
msgstr "Attivazione licenza"
|
552 |
|
553 |
#: licence/lib/yit-theme-licence.php:117 licence/lib/yit-theme-licence.php:118
|
554 |
#, php-format
|
557 |
|
558 |
#: licence/lib/yit-theme-licence.php:159
|
559 |
msgid ""
|
560 |
+
"I cannot find the license key for activating the theme I have bought some "
|
561 |
+
"time ago. Where can I find it?"
|
562 |
msgstr ""
|
563 |
"Non riesco a trovare la chiave di licenza per l'attivazione del tema che ho "
|
564 |
"acquistato diverso tempo fa. Dove posso trovarla?"
|
565 |
|
566 |
#: licence/lib/yit-theme-licence.php:163
|
567 |
msgid ""
|
568 |
+
"If you have purchased one of our products before 27 January 2015, you can "
|
569 |
+
"benefit from support and updates (the services offered with the license)\n"
|
570 |
+
" until 27 January 2016 and you do not have to purchase it "
|
571 |
+
"again to get a new license key, because, before this date, your license used "
|
572 |
+
"to be activated automatically by our system.\n"
|
573 |
+
" After 27 January 2016, instead, if you want to benefit "
|
574 |
+
"from support and updates you have to buy a new license and activate it "
|
575 |
+
"through the license key you will be\n"
|
576 |
+
" provided with and that you can find in your YIThemes "
|
577 |
+
"account, in section \"My licenses\"."
|
578 |
msgstr ""
|
579 |
+
"Se hai acquistato uno dei nostri prodotti prima del 27 gennaio 2015, potrai "
|
580 |
+
"usufruire di supporto e aggiornamenti (servizi inclusi nella licenza)\n"
|
581 |
+
"fino al 27 gennaio 2016 e non dovrai riacquistare il prodotto per ottenere "
|
582 |
+
"una chiave di licenza, poiché prima di questa data il tuo prodotto veniva "
|
583 |
+
"automaticamente attivato dal nostro sistema.\n"
|
584 |
+
"Dopo il 27 gennaio 2016, invece, se vorrai usufruire di supporto e "
|
585 |
+
"aggiornamenti dovrai acquistare una nuova licenza e attivarla con il codice "
|
586 |
+
"che ti verrà\n"
|
587 |
+
"fornito e che puoi trovare nella tua area riservata su YIThemes, nella "
|
588 |
+
"sezione \"My licenses\"."
|
589 |
|
590 |
#: licence/templates/panel/activation/activation-panel.php:23
|
591 |
msgid "Yithemes License Activation"
|
592 |
+
msgstr "Attivazione licenza YIThemes"
|
593 |
|
594 |
#: licence/templates/panel/activation/activation-panel.php:27
|
595 |
msgid ""
|
601 |
|
602 |
#: licence/templates/panel/activation/activation-panel.php:29
|
603 |
msgid "Update license information"
|
604 |
+
msgstr "Aggiorna informazioni licenza"
|
605 |
|
606 |
#: licence/templates/panel/activation/activation-panel.php:42
|
607 |
msgid "Product to activate"
|
608 |
msgid_plural "Products to activate"
|
609 |
+
msgstr[0] "Prodotto da attivare"
|
610 |
+
msgstr[1] "Prodotti da attivare"
|
611 |
|
612 |
#: licence/templates/panel/activation/activation-panel.php:61
|
613 |
msgid "Activate"
|
633 |
msgstr "Tempo rimanente"
|
634 |
|
635 |
#: licence/templates/panel/activation/activation-panel.php:97
|
636 |
+
msgid "Club Subscription"
|
637 |
+
msgstr "Club Subscription"
|
638 |
|
639 |
#: licence/templates/panel/activation/activation-panel.php:101
|
640 |
msgid "License Actions"
|
641 |
+
msgstr "Azioni licenza"
|
642 |
|
643 |
#: licence/templates/panel/activation/activation-panel.php:126
|
644 |
#, php-format
|
647 |
|
648 |
#: licence/templates/panel/activation/activation-panel.php:142
|
649 |
msgid "Deactivate"
|
650 |
+
msgstr "Disattiva"
|
651 |
|
652 |
#: licence/templates/panel/activation/activation-panel.php:147
|
653 |
#: licence/templates/panel/activation/activation-panel.php:204
|
664 |
|
665 |
#: licence/templates/panel/activation/activation-panel.php:226
|
666 |
msgid "Order again"
|
667 |
+
msgstr "Acquista di nuovo"
|
668 |
|
669 |
#: licence/templates/panel/activation/activation-panel.php:228
|
670 |
msgid "Renew license"
|
671 |
+
msgstr "Rinnova la licenza"
|
672 |
|
673 |
#: templates/metaboxes/types/ajax-products.php:23
|
674 |
msgid "Search for a product"
|
761 |
#: templates/metaboxes/types/contactform.php:90
|
762 |
#: templates/metaboxes/types/contactform.php:282
|
763 |
msgid ""
|
764 |
+
"REQUIRED: Field identification name to be entered into email body. "
|
765 |
+
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
766 |
msgstr ""
|
767 |
"RICHIESTO: Nome identificativo del campo da inserire nel corpo dell'email. "
|
768 |
+
"<strong>Nota:</strong>Puoi utilizzare solamente caratteri minuscoli e "
|
769 |
+
"underscore."
|
770 |
|
771 |
#: templates/metaboxes/types/contactform.php:95
|
772 |
#: templates/metaboxes/types/contactform.php:287
|
852 |
|
853 |
#: templates/metaboxes/types/contactform.php:170
|
854 |
#: templates/metaboxes/types/contactform.php:362
|
855 |
+
msgid ""
|
856 |
+
"Insert additional class(es) (separated by commas) for more personalization."
|
857 |
msgstr ""
|
858 |
"Inserisci una o più classi (separate da virgole) per una ulteriore "
|
859 |
"personalizzazione."
|
932 |
|
933 |
#: templates/metaboxes/types/image-gallery.php:40
|
934 |
#: templates/metaboxes/types/image-gallery.php:45
|
935 |
+
#: templates/metaboxes/types/images.php:38
|
936 |
+
#: templates/metaboxes/types/images.php:64
|
937 |
msgid "Delete image"
|
938 |
msgstr "Rimuovi immagine"
|
939 |
|
1039 |
|
1040 |
#: templates/panel/sidebar/widgets/widgets.php:17
|
1041 |
msgid "Join the club"
|
1042 |
+
msgstr "Iscriviti al Club"
|
1043 |
|
1044 |
#: templates/panel/sidebar/widgets/widgets.php:24
|
1045 |
msgid "Despacho Theme - 100% FREE"
|
1046 |
+
msgstr "Despacho Theme - 100% GRATUITO"
|
1047 |
|
1048 |
#: templates/panel/sidebar/widgets/widgets.php:28
|
1049 |
msgid "FREE!"
|
1050 |
+
msgstr "GRATIS!"
|
1051 |
|
1052 |
#: templates/panel/sidebar/widgets/widgets.php:34
|
1053 |
msgid "Important Links"
|
1054 |
+
msgstr "Link importanti"
|
1055 |
|
1056 |
#: templates/panel/types/upload.php:32
|
1057 |
msgid "Reset"
|
1058 |
+
msgstr "Ripristina"
|
1059 |
|
1060 |
#: templates/panel/woocommerce/woocommerce-form.php:17
|
1061 |
msgid "Reset Defaults"
|
1062 |
msgstr "Ripristina impostazioni iniziali"
|
1063 |
|
1064 |
+
#~ msgid "Premium version upgrade"
|
1065 |
+
#~ msgstr "Aggiorna alla versione PREMIUM"
|
|
|
1066 |
|
1067 |
+
#~ msgid ""
|
1068 |
+
#~ "Have you purchased the premium version of a plugin? Don't you know how to "
|
1069 |
+
#~ "activate the license after the purchase?"
|
1070 |
+
#~ msgstr ""
|
1071 |
+
#~ "Hai comprato la versione premium di un plugin ? Dopo l'acquisto non trovi "
|
1072 |
+
#~ "dove attivare la licenza del tuo plugin premium ? "
|
|
|
1073 |
|
1074 |
+
#~ msgid ""
|
1075 |
+
#~ "To upgrade from a FREE to a PREMIUM plugin is not suffice to insert the "
|
1076 |
+
#~ "license key provided after the purchase.\n"
|
1077 |
+
#~ " The reason is that they are two distinct products, with "
|
1078 |
+
#~ "significant differences both for available options and for number of "
|
1079 |
+
#~ "files included in the plugin package.\n"
|
1080 |
+
#~ " To start to use the PREMIUM version of the plugin, you simply "
|
1081 |
+
#~ "need to download the PREMIUM packet and install it on your site."
|
1082 |
+
#~ msgstr ""
|
1083 |
+
#~ "Per passare da un plugin FREE ad uno PREMIUM non basta semplicemnete "
|
1084 |
+
#~ "inserire la chiave di licenza che ti è stata fornita dopo aver completato "
|
1085 |
+
#~ "l'acquisto. Questo perchè fisicamente si tratta di due prodotti diversi, "
|
1086 |
+
#~ "con differenze sostanziali sia nelle opzioni disponibili sia sul numero "
|
1087 |
+
#~ "di file presenti all'interno del pacchetto del plugin stesso. \n"
|
1088 |
+
#~ "Per iniziare ad usare il plugin PREMIUM che hai appena acquistato devi "
|
1089 |
+
#~ "semplicemente scaricare il pacchetto PREMIUM ed installarlo sul tuo sito."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1090 |
|
1091 |
+
#~ msgid ""
|
1092 |
+
#~ "%1$sDo you need to know how to do it?%2$s Easy! %1$sFollow this list of "
|
1093 |
+
#~ "steps%2$s and in a few minutes the plugin you purchased will be installed "
|
1094 |
+
#~ "on your site"
|
1095 |
+
#~ msgstr ""
|
1096 |
+
#~ "%1$sNon sai come fare ?%2$s Non è un problema%1$s, segui i passi elencati "
|
1097 |
+
#~ "qui sotto%2$s ed in pochi minuti avrai il plugin acquistato correttamente "
|
1098 |
+
#~ "installato sul tuo sito."
|
1099 |
|
1100 |
+
#~ msgid "Go to yithemes.com and login to \"My Account\" page"
|
1101 |
+
#~ msgstr ""
|
1102 |
+
#~ "Vai su yithemes.com ed effettua il login alla sezione \"My Account \""
|
|
|
|
|
|
|
|
|
1103 |
|
1104 |
+
#~ msgid ""
|
1105 |
+
#~ "From the menu on the left, click on \"My Downloads\", look for the plugin "
|
1106 |
+
#~ "you want to install among the available downloads and click on \"Download"
|
1107 |
+
#~ "\" button"
|
1108 |
+
#~ msgstr ""
|
1109 |
+
#~ "Dal menù di sinistra clicca su \"My Downloads\" e cerca tra i download "
|
1110 |
+
#~ "disponibili il plugin che vuoi installare, e clicca su \"Download\""
|
1111 |
|
1112 |
+
#~ msgid ""
|
1113 |
+
#~ "After downloading the packet, go to your website and login to WordPress "
|
1114 |
+
#~ "administration area."
|
1115 |
+
#~ msgstr ""
|
1116 |
+
#~ "Non appena il download del pacchetto sarà completato recati sul tuo sito "
|
1117 |
+
#~ "web ed effettua il login all'area amministrazione di WordPress."
|
|
|
|
|
|
|
|
|
1118 |
|
1119 |
+
#~ msgid ""
|
1120 |
+
#~ "From the menu on the left, click on \"Plugins\". You will be redirected "
|
1121 |
+
#~ "to the page where you will find the complete list of all the plugins "
|
1122 |
+
#~ "available on your site. Click on \"Add New\" button that you find above "
|
1123 |
+
#~ "on the left to add a new plugin"
|
1124 |
+
#~ msgstr ""
|
1125 |
+
#~ "Dal menù di sinistra clicca sulla voce Plugins. Verrai indirizzato su una "
|
1126 |
+
#~ "pagina con la lista dei plugin disponibili sul tuo sito. Clicca sul "
|
1127 |
+
#~ "pulsante \"Add New\" che trovi in alto a sinistra vicino al titolo della "
|
1128 |
+
#~ "pagina."
|
1129 |
|
1130 |
+
#~ msgid ""
|
1131 |
+
#~ "You will be redirected to a new page where you will find, above on the "
|
1132 |
+
#~ "left next to the page title, the \"Upload Plugin\" button."
|
1133 |
+
#~ msgstr ""
|
1134 |
+
#~ "Verrai indirizzato su una nuova pagina dove trovi, in alto a sinistra "
|
1135 |
+
#~ "vicino al titolo della pagina, il pulsante \"Upload Plugin\"."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1136 |
|
1137 |
+
#~ msgid ""
|
1138 |
+
#~ "Click on \"Upload Plugins\" button to start the upload of the PREMIUM "
|
1139 |
+
#~ "version of the plugin previously downloaded. Click on \"Select File\", "
|
1140 |
+
#~ "search for the download folder related to the plugin and upload the "
|
1141 |
+
#~ "package. Now you only need to wait a few minutes for the upload and the "
|
1142 |
+
#~ "installation on your site. (We used YITH Live Chat plugin by way of "
|
1143 |
+
#~ "example)"
|
1144 |
+
#~ msgstr ""
|
1145 |
+
#~ "Cliccando su \"Upload Plugins\", ti troverai in una pagina dove poter "
|
1146 |
+
#~ "effettuare l'upload del pacchetto del plugin PREMIUM da te "
|
1147 |
+
#~ "precedentemente scaricato. Clicca quindi su \"Scegli File\", cerca la "
|
1148 |
+
#~ "cartella di download dove hai scaricato il plugin ed effettua il "
|
1149 |
+
#~ "caricamento del pacchetto. A questo punto ti basta attendere qualche "
|
1150 |
+
#~ "minuto che il pacchetto venga caricato ed installato sul tuo sito. "
|
1151 |
+
#~ "(Abbiamo usato YITH Live Chat come esempio) "
|
1152 |
|
1153 |
+
#~ msgid "After completing the installation, click on \"Activate plugin\""
|
1154 |
+
#~ msgstr "Al termine della procedura di installazione clicca su \"Attiva\""
|
1155 |
+
|
1156 |
+
#~ msgid ""
|
1157 |
+
#~ "If everything worked allright, your plugin is now correctly installed on "
|
1158 |
+
#~ "your website. Enjoy it :-)"
|
1159 |
+
#~ msgstr ""
|
1160 |
+
#~ "Se tutto è andato per il meglio il tuo plugin è correttamente installato "
|
1161 |
+
#~ "sul tuo sito web. Enjoy it :-)"
|
1162 |
+
|
1163 |
+
#~ msgid ""
|
1164 |
+
#~ "In case you had difficulty to recover the license key we sent you by "
|
1165 |
+
#~ "email, you can easily find it in \"My Licenses\" section of your account "
|
1166 |
+
#~ "on yithemes.com"
|
1167 |
+
#~ msgstr ""
|
1168 |
+
#~ "Se non trovi l'email che ti abbiamo inviato contenete la license key puoi "
|
1169 |
+
#~ "facilmente recuperarla dalla sezione \"My Licenses\" all'interno della "
|
1170 |
+
#~ "sezione My Account del nostro sito yithemes.com."
|
1171 |
|
1172 |
#~ msgid "YITH Plugins"
|
1173 |
#~ msgstr "YITH Plugins"
|
1174 |
|
1175 |
#~ msgid ""
|
1176 |
#~ "The last step is the activation of the plugin through its license key you "
|
1177 |
+
#~ "received after the purchase. Click on \"License Activation\" that you "
|
1178 |
+
#~ "find in \"YITH Plugins\" and insert the license key and the email address "
|
1179 |
+
#~ "you used during the purchas."
|
1180 |
#~ msgstr ""
|
1181 |
+
#~ "Ultimo step è attivare il plugin con la chiave di licenza che hai "
|
1182 |
+
#~ "ricevuto dopo l'acquisto. Clicca quindi sul link \"License Activation\" "
|
1183 |
+
#~ "che trovi sotto \"YITH Plugins\" ed inserisci la license key in tuo "
|
1184 |
+
#~ "possesso ed email utilizzata in fase di acquisto."
|
1185 |
|
1186 |
#~ msgid "YIT Plugins"
|
1187 |
#~ msgstr "YIT Plugins"
|
1199 |
#~ msgstr "Ripristina impostazioni iniziali"
|
1200 |
|
1201 |
#~ msgid ""
|
1202 |
+
#~ "There is a new version of %1$s available. <a href=\"%2$s\" class="
|
1203 |
+
#~ "\"thickbox yit-changelog-button\" title=\"%3$s\">View version %4$s "
|
1204 |
+
#~ "details</a>. <em>Automatic update is unavailable for this plugin, please "
|
1205 |
+
#~ "<a href=\"%5$s\" title=\"Licence activation\">activate</a> your copy of "
|
1206 |
+
#~ "%6s.</em>"
|
1207 |
#~ msgstr ""
|
1208 |
+
#~ "È disponibile una nuova versioni di %1$s. <a href=\"%2$s\" class="
|
1209 |
+
#~ "\"thickbox yit-changelog-button\" title=\"%3$s\">Visualizza i dettagli "
|
1210 |
+
#~ "della versione %4$s</a>. <em>Gli aggiornamenti automatici non sono "
|
1211 |
+
#~ "disponibili per questo plugi, per favore, <a href=\"%5$s\" title="
|
1212 |
+
#~ "\"Licence activation\">attiva</a> la tua copia di %6s.</em>"
|
1213 |
|
1214 |
#~ msgid "Invalid licence key"
|
1215 |
#~ msgstr "Chiave di licenza non valida"
|
1229 |
#~ msgid ""
|
1230 |
#~ "If you have purchased one of our products before 27 January 2015, you can "
|
1231 |
#~ "benefit from support and updates (the services offered with the license)\n"
|
1232 |
+
#~ " until 27 January 2016 and you do not have to purchase it "
|
1233 |
+
#~ "again to get a new license key, because, before this date, your license "
|
1234 |
+
#~ "used to be activated automatically by our system.\n"
|
1235 |
+
#~ " After 27 January 2016, instead, if you want to benefit from "
|
1236 |
+
#~ "support and updates you have to buy a new license and activate it through "
|
1237 |
+
#~ "the license key you will be\n"
|
1238 |
+
#~ " provided with and that you can find in your YIThemes account, "
|
1239 |
+
#~ "in section \"My licenses\"."
|
1240 |
#~ msgstr ""
|
1241 |
+
#~ "Se hai acquistato un nostro prodotto prima del 27 gennaio 2015 potrai "
|
1242 |
+
#~ "accedere al supporto e scaricare gli aggiornamenti fino al 27 gennaio "
|
1243 |
+
#~ "2016 e non avrai bisogno di una chiave di licenza,\n"
|
1244 |
#~ "in quanto la tua licenza prima di questa data veniva attivata in modo "
|
1245 |
#~ "automatico dal nostro sistema.\n"
|
1246 |
+
#~ "Dopo il 27 gennaio 2016, invece, per poter usufruire del servizio di "
|
1247 |
+
#~ "supporto e degli aggiornamenti dovrai riacquistare il prodotto e\n"
|
1248 |
+
#~ "attivarlo con la chiave di licenza che ti sarà fornita e che puoi trovare "
|
1249 |
+
#~ "sul tuo account YIThemes, alla voce \"Le mie licenze\"."
|
1250 |
|
1251 |
#~ msgid "Update licence information"
|
1252 |
#~ msgstr "Aggiorna le informazioni di licenza"
|
plugin-fw/languages/yith-plugin-fw.pot
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
|
7 |
"Report-Msgid-Bugs-To: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
-
"POT-Creation-Date: 2016-
|
9 |
"PO-Revision-Date: 2015-05-05 10:38+0100\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=utf-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
18 |
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
19 |
"esc_html_x:1,2c\n"
|
@@ -228,7 +228,7 @@ msgstr ""
|
|
228 |
msgid "Show sidebar"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lib/yit-plugin-panel-wc.php:
|
232 |
msgid "The changes you have made will be lost if you leave this page."
|
233 |
msgstr ""
|
234 |
|
@@ -236,65 +236,65 @@ msgstr ""
|
|
236 |
msgid "Plugin Settings"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: lib/yit-plugin-panel.php:
|
240 |
-
msgid "
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: lib/yit-plugin-panel.php:
|
244 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
245 |
msgid "Save Changes"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: lib/yit-plugin-panel.php:
|
249 |
msgid "If you continue with this action, you will reset all options in this page."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: lib/yit-plugin-panel.php:
|
253 |
msgid "Reset to default"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: lib/yit-plugin-panel.php:
|
257 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
258 |
msgid "Are you sure?"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: lib/yit-plugin-panel.php:
|
262 |
msgid "The element you have entered already exists. Please, enter another name."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: lib/yit-plugin-panel.php:
|
266 |
msgid "Settings saved"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: lib/yit-plugin-panel.php:
|
270 |
msgid "Settings reset"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: lib/yit-plugin-panel.php:
|
274 |
msgid "Element deleted correctly."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: lib/yit-plugin-panel.php:
|
278 |
msgid "Element updated correctly."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: lib/yit-plugin-panel.php:
|
282 |
msgid "Database imported correctly."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: lib/yit-plugin-panel.php:
|
286 |
msgid "An error has occurred during import. Please try again."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: lib/yit-plugin-panel.php:
|
290 |
msgid "The added file is not valid."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: lib/yit-plugin-panel.php:
|
294 |
msgid "Sorry, import is disabled."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: lib/yit-plugin-panel.php:
|
298 |
msgid "Sorting successful."
|
299 |
msgstr ""
|
300 |
|
@@ -337,46 +337,46 @@ msgid ""
|
|
337 |
"Plugin tab."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: lib/yit-upgrade.php:
|
341 |
msgid "There is a new version of %plugin_name% available."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: lib/yit-upgrade.php:
|
345 |
msgid "View version %latest% details."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: lib/yit-upgrade.php:
|
349 |
msgid "Automatic update is unavailable for this plugin,"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: lib/yit-upgrade.php:
|
353 |
msgid "please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: lib/yit-upgrade.php:
|
357 |
msgid "Update now."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: lib/yit-upgrade.php:
|
361 |
msgid "YIThemes Repository"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: lib/yit-upgrade.php:
|
365 |
msgid "Invalid URL Provided."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: lib/yit-upgrade.php:
|
369 |
msgid "Could not create Temporary file."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: lib/yit-upgrade.php:
|
373 |
#, php-format
|
374 |
msgid ""
|
375 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
376 |
"changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: lib/yit-upgrade.php:
|
380 |
#, php-format
|
381 |
msgid ""
|
382 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
@@ -385,7 +385,7 @@ msgid ""
|
|
385 |
"updates.</em>"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: lib/yit-upgrade.php:
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
@@ -394,7 +394,7 @@ msgid ""
|
|
394 |
"activation\">activate</a> your copy of %6s.</em>"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: lib/yit-upgrade.php:
|
398 |
#, php-format
|
399 |
msgid ""
|
400 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
@@ -402,15 +402,15 @@ msgid ""
|
|
402 |
"\">update now</a>."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: lib/yit-upgrade.php:
|
406 |
msgid "You can't update the plugins for this site."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: lib/yit-upgrade.php:
|
410 |
msgid "You do not have sufficient permissions to update the plugins for this site."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: lib/yit-upgrade.php:
|
414 |
msgid "Update Plugin"
|
415 |
msgstr ""
|
416 |
|
@@ -482,7 +482,7 @@ msgid "License key has been banned"
|
|
482 |
msgstr ""
|
483 |
|
484 |
#: licence/lib/yit-licence.php:675
|
485 |
-
msgid "Current product is not included
|
486 |
msgstr ""
|
487 |
|
488 |
#: licence/lib/yit-licence.php:676
|
@@ -572,7 +572,7 @@ msgid "Remaining"
|
|
572 |
msgstr ""
|
573 |
|
574 |
#: licence/templates/panel/activation/activation-panel.php:97
|
575 |
-
msgid "
|
576 |
msgstr ""
|
577 |
|
578 |
#: licence/templates/panel/activation/activation-panel.php:101
|
@@ -992,93 +992,3 @@ msgstr ""
|
|
992 |
#: templates/panel/woocommerce/woocommerce-form.php:17
|
993 |
msgid "Reset Defaults"
|
994 |
msgstr ""
|
995 |
-
|
996 |
-
#: templates/upgrade/upgrade-to-pro-version.php:2
|
997 |
-
msgid "Upgrade to Premium Version"
|
998 |
-
msgstr ""
|
999 |
-
|
1000 |
-
#: templates/upgrade/upgrade-to-pro-version.php:3
|
1001 |
-
msgid ""
|
1002 |
-
"Have you purchased the premium version of a plugin? Don't you know how to activate "
|
1003 |
-
"the license after the purchase?"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: templates/upgrade/upgrade-to-pro-version.php:5
|
1007 |
-
msgid ""
|
1008 |
-
"To upgrade from a FREE to a PREMIUM plugin is not suffice to insert the license "
|
1009 |
-
"key provided after the purchase.\n"
|
1010 |
-
" The reason is that they are two distinct products, with significant "
|
1011 |
-
"differences both for available options and for number of files included in the "
|
1012 |
-
"plugin package.\n"
|
1013 |
-
" To start to use the PREMIUM version of the plugin, you simply need to "
|
1014 |
-
"download the PREMIUM packet and install it on your site."
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: templates/upgrade/upgrade-to-pro-version.php:9
|
1018 |
-
#, php-format
|
1019 |
-
msgid ""
|
1020 |
-
"%1$sDo you need to know how to do it?%2$s Easy! %1$sFollow this list of steps%2$s "
|
1021 |
-
"and in a few minutes the plugin you purchased will be installed on your site"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: templates/upgrade/upgrade-to-pro-version.php:12
|
1025 |
-
msgid "Go to yithemes.com and login to \"My Account\" page"
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: templates/upgrade/upgrade-to-pro-version.php:18
|
1029 |
-
msgid ""
|
1030 |
-
"From the menu on the left, click on \"My Downloads\", look for the plugin you want "
|
1031 |
-
"to install among the available downloads and click on \"Download\" button"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: templates/upgrade/upgrade-to-pro-version.php:24
|
1035 |
-
msgid ""
|
1036 |
-
"After downloading the packet, go to your website and login to WordPress "
|
1037 |
-
"administration area."
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: templates/upgrade/upgrade-to-pro-version.php:30
|
1041 |
-
msgid ""
|
1042 |
-
"From the menu on the left, click on \"Plugins\". You will be redirected to the "
|
1043 |
-
"page where you will find the complete list of all the plugins available on your "
|
1044 |
-
"site. Click on \"Add New\" button that you find above on the left to add a new "
|
1045 |
-
"plugin"
|
1046 |
-
msgstr ""
|
1047 |
-
|
1048 |
-
#: templates/upgrade/upgrade-to-pro-version.php:36
|
1049 |
-
msgid ""
|
1050 |
-
"You will be redirected to a new page where you will find, above on the left next "
|
1051 |
-
"to the page title, the \"Upload Plugin\" button."
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: templates/upgrade/upgrade-to-pro-version.php:42
|
1055 |
-
msgid ""
|
1056 |
-
"Click on \"Upload Plugins\" button to start the upload of the PREMIUM version of "
|
1057 |
-
"the plugin previously downloaded. Click on \"Select File\", search for the "
|
1058 |
-
"download folder related to the plugin and upload the package. Now you only need to "
|
1059 |
-
"wait a few minutes for the upload and the installation on your site. (We used YITH "
|
1060 |
-
"Live Chat plugin by way of example)"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#: templates/upgrade/upgrade-to-pro-version.php:48
|
1064 |
-
msgid "After completing the installation, click on \"Activate plugin\""
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: templates/upgrade/upgrade-to-pro-version.php:52
|
1068 |
-
msgid ""
|
1069 |
-
"If everything worked allright, your plugin is now correctly installed on your "
|
1070 |
-
"website. Enjoy it :-)"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: templates/upgrade/upgrade-to-pro-version.php:55
|
1074 |
-
msgid ""
|
1075 |
-
"The last step is the activation of the plugin through its license key you received "
|
1076 |
-
"after the purchase. Click on \"License Activation\" that you find in \"YITH Plugins"
|
1077 |
-
"\" and insert the license key and the email address you used during the purchase."
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: templates/upgrade/upgrade-to-pro-version.php:61
|
1081 |
-
msgid ""
|
1082 |
-
"In case you had difficulty to recover the license key we sent you by email, you "
|
1083 |
-
"can easily find it in \"My Licenses\" section of your account on yithemes.com"
|
1084 |
-
msgstr ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
|
7 |
"Report-Msgid-Bugs-To: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
+
"POT-Creation-Date: 2016-07-06 15:16+0200\n"
|
9 |
"PO-Revision-Date: 2015-05-05 10:38+0100\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Your Inspiration Themes <info@yithemes.com>\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=utf-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Generator: Poedit 1.8.8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
18 |
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
19 |
"esc_html_x:1,2c\n"
|
228 |
msgid "Show sidebar"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lib/yit-plugin-panel-wc.php:374
|
232 |
msgid "The changes you have made will be lost if you leave this page."
|
233 |
msgstr ""
|
234 |
|
236 |
msgid "Plugin Settings"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: lib/yit-plugin-panel.php:297 lib/yit-plugin-panel.php:300
|
240 |
+
msgid "How to install premium version"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lib/yit-plugin-panel.php:352 lib/yit-plugin-subpanel.php:146
|
244 |
#: templates/panel/woocommerce/woocommerce-form.php:11
|
245 |
msgid "Save Changes"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: lib/yit-plugin-panel.php:355 templates/panel/woocommerce/woocommerce-form.php:14
|
249 |
msgid "If you continue with this action, you will reset all options in this page."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
253 |
msgid "Reset to default"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: lib/yit-plugin-panel.php:357 lib/yit-plugin-subpanel.php:151
|
257 |
#: templates/panel/woocommerce/woocommerce-form.php:18
|
258 |
msgid "Are you sure?"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: lib/yit-plugin-panel.php:553
|
262 |
msgid "The element you have entered already exists. Please, enter another name."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: lib/yit-plugin-panel.php:554
|
266 |
msgid "Settings saved"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: lib/yit-plugin-panel.php:555
|
270 |
msgid "Settings reset"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: lib/yit-plugin-panel.php:556
|
274 |
msgid "Element deleted correctly."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: lib/yit-plugin-panel.php:557 lib/yit-plugin-panel.php:558
|
278 |
msgid "Element updated correctly."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: lib/yit-plugin-panel.php:559
|
282 |
msgid "Database imported correctly."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: lib/yit-plugin-panel.php:560
|
286 |
msgid "An error has occurred during import. Please try again."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: lib/yit-plugin-panel.php:561
|
290 |
msgid "The added file is not valid."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: lib/yit-plugin-panel.php:562
|
294 |
msgid "Sorry, import is disabled."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: lib/yit-plugin-panel.php:563
|
298 |
msgid "Sorting successful."
|
299 |
msgstr ""
|
300 |
|
337 |
"Plugin tab."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: lib/yit-upgrade.php:135
|
341 |
msgid "There is a new version of %plugin_name% available."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: lib/yit-upgrade.php:136
|
345 |
msgid "View version %latest% details."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: lib/yit-upgrade.php:137
|
349 |
msgid "Automatic update is unavailable for this plugin,"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: lib/yit-upgrade.php:138
|
353 |
msgid "please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: lib/yit-upgrade.php:139
|
357 |
msgid "Update now."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: lib/yit-upgrade.php:240
|
361 |
msgid "YIThemes Repository"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: lib/yit-upgrade.php:274
|
365 |
msgid "Invalid URL Provided."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: lib/yit-upgrade.php:287
|
369 |
msgid "Could not create Temporary file."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: lib/yit-upgrade.php:439
|
373 |
#, php-format
|
374 |
msgid ""
|
375 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
376 |
"changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: lib/yit-upgrade.php:441
|
380 |
#, php-format
|
381 |
msgid ""
|
382 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
385 |
"updates.</em>"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: lib/yit-upgrade.php:443
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
394 |
"activation\">activate</a> your copy of %6s.</em>"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: lib/yit-upgrade.php:445
|
398 |
#, php-format
|
399 |
msgid ""
|
400 |
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox yit-"
|
402 |
"\">update now</a>."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: lib/yit-upgrade.php:517
|
406 |
msgid "You can't update the plugins for this site."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: lib/yit-upgrade.php:521
|
410 |
msgid "You do not have sufficient permissions to update the plugins for this site."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: lib/yit-upgrade.php:528
|
414 |
msgid "Update Plugin"
|
415 |
msgstr ""
|
416 |
|
482 |
msgstr ""
|
483 |
|
484 |
#: licence/lib/yit-licence.php:675
|
485 |
+
msgid "Current product is not included in your YITH Club Subscription key"
|
486 |
msgstr ""
|
487 |
|
488 |
#: licence/lib/yit-licence.php:676
|
572 |
msgstr ""
|
573 |
|
574 |
#: licence/templates/panel/activation/activation-panel.php:97
|
575 |
+
msgid "Club Subscription"
|
576 |
msgstr ""
|
577 |
|
578 |
#: licence/templates/panel/activation/activation-panel.php:101
|
992 |
#: templates/panel/woocommerce/woocommerce-form.php:17
|
993 |
msgid "Reset Defaults"
|
994 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugin-fw/lib/yit-metabox.php
CHANGED
@@ -158,7 +158,7 @@ if (!class_exists('YIT_Metabox')) {
|
|
158 |
wp_enqueue_script('jquery-ui-datepicker');
|
159 |
wp_enqueue_script('yit-spinner', YIT_CORE_PLUGIN_URL . '/assets/js/panel.spinner.js', array('jquery'), '0.0.1', true);
|
160 |
wp_enqueue_script('jquery-chosen', YIT_CORE_PLUGIN_URL . '/assets/js/chosen/chosen.jquery.js', array('jquery'), '1.1.0', true);
|
161 |
-
wp_enqueue_script('ajax-chosen',
|
162 |
wp_enqueue_script('yit-metabox', YIT_CORE_PLUGIN_URL . '/assets/js/metabox.js', array('jquery', 'wp-color-picker'), '1.0.0', true);
|
163 |
wp_enqueue_style('jquery-ui-overcast', YIT_CORE_PLUGIN_URL . '/assets/css/overcast/jquery-ui-custom/jquery-ui-1.8.9.custom.css', false, '1.8.9', 'all');
|
164 |
}
|
158 |
wp_enqueue_script('jquery-ui-datepicker');
|
159 |
wp_enqueue_script('yit-spinner', YIT_CORE_PLUGIN_URL . '/assets/js/panel.spinner.js', array('jquery'), '0.0.1', true);
|
160 |
wp_enqueue_script('jquery-chosen', YIT_CORE_PLUGIN_URL . '/assets/js/chosen/chosen.jquery.js', array('jquery'), '1.1.0', true);
|
161 |
+
wp_enqueue_script('ajax-chosen', YIT_CORE_PLUGIN_URL . '/assets/js/chosen/'.yit_load_js_file('ajax-chosen.jquery.js'), array('jquery'), '1.1.0', true);
|
162 |
wp_enqueue_script('yit-metabox', YIT_CORE_PLUGIN_URL . '/assets/js/metabox.js', array('jquery', 'wp-color-picker'), '1.0.0', true);
|
163 |
wp_enqueue_style('jquery-ui-overcast', YIT_CORE_PLUGIN_URL . '/assets/css/overcast/jquery-ui-custom/jquery-ui-1.8.9.custom.css', false, '1.8.9', 'all');
|
164 |
}
|
plugin-fw/lib/yit-plugin-panel-sidebar.php
CHANGED
@@ -166,6 +166,10 @@ if ( !class_exists( 'YIT_Plugin_Panel_Sidebar' ) ) {
|
|
166 |
* @author Leanza Francesco <leanzafrancesco@gmail.com>
|
167 |
*/
|
168 |
public function get_remote_widgets() {
|
|
|
|
|
|
|
|
|
169 |
$remote_widgets = get_transient( self::$transient_remote_widgets );
|
170 |
$updated = get_transient( self::$transient_updated_remote_widgets );
|
171 |
$is_debug = defined( 'YIT_FW_REMOTE_WIDGETS_DEBUG' ) && YIT_FW_REMOTE_WIDGETS_DEBUG;
|
@@ -209,11 +213,11 @@ if ( !class_exists( 'YIT_Plugin_Panel_Sidebar' ) ) {
|
|
209 |
if ( !isset( $xml_widget->id ) )
|
210 |
continue;
|
211 |
|
212 |
-
$widget_id = (string)$xml_widget->id;
|
213 |
$widget_array = array();
|
214 |
foreach ( $enabled_args as $key ) {
|
215 |
if ( isset( $xml_widget->$key ) ) {
|
216 |
-
$widget_array[ $key ] = (string)$xml_widget->$key;
|
217 |
} else {
|
218 |
if ( $key == 'priority' ) {
|
219 |
$widget_array[ $key ] = $last_remote_priority;
|
@@ -224,7 +228,7 @@ if ( !class_exists( 'YIT_Plugin_Panel_Sidebar' ) ) {
|
|
224 |
$remote_widgets[ $widget_id ] = $widget_array;
|
225 |
}
|
226 |
|
227 |
-
$xml_expiration = isset( $xml_data->expiration ) ? (string)$xml_data->expiration : '';
|
228 |
if ( !empty( $xml_expiration ) ) {
|
229 |
$expiration = strtotime( $xml_expiration ) - strtotime( 'now' );
|
230 |
// if the XML is expired removes widgets
|
@@ -253,8 +257,7 @@ if ( !class_exists( 'YIT_Plugin_Panel_Sidebar' ) ) {
|
|
253 |
if ( $expiration < 1 ) {
|
254 |
$expiration = 1 * DAY_IN_SECONDS + $four_days_random;
|
255 |
}
|
256 |
-
}
|
257 |
-
catch ( Exception $e ) {
|
258 |
|
259 |
}
|
260 |
|
166 |
* @author Leanza Francesco <leanzafrancesco@gmail.com>
|
167 |
*/
|
168 |
public function get_remote_widgets() {
|
169 |
+
$load_remote_widgets = apply_filters( 'yit_panel_sidebar_load_remote_widgets', true );
|
170 |
+
if ( !$load_remote_widgets )
|
171 |
+
return array();
|
172 |
+
|
173 |
$remote_widgets = get_transient( self::$transient_remote_widgets );
|
174 |
$updated = get_transient( self::$transient_updated_remote_widgets );
|
175 |
$is_debug = defined( 'YIT_FW_REMOTE_WIDGETS_DEBUG' ) && YIT_FW_REMOTE_WIDGETS_DEBUG;
|
213 |
if ( !isset( $xml_widget->id ) )
|
214 |
continue;
|
215 |
|
216 |
+
$widget_id = (string) $xml_widget->id;
|
217 |
$widget_array = array();
|
218 |
foreach ( $enabled_args as $key ) {
|
219 |
if ( isset( $xml_widget->$key ) ) {
|
220 |
+
$widget_array[ $key ] = (string) $xml_widget->$key;
|
221 |
} else {
|
222 |
if ( $key == 'priority' ) {
|
223 |
$widget_array[ $key ] = $last_remote_priority;
|
228 |
$remote_widgets[ $widget_id ] = $widget_array;
|
229 |
}
|
230 |
|
231 |
+
$xml_expiration = isset( $xml_data->expiration ) ? (string) $xml_data->expiration : '';
|
232 |
if ( !empty( $xml_expiration ) ) {
|
233 |
$expiration = strtotime( $xml_expiration ) - strtotime( 'now' );
|
234 |
// if the XML is expired removes widgets
|
257 |
if ( $expiration < 1 ) {
|
258 |
$expiration = 1 * DAY_IN_SECONDS + $four_days_random;
|
259 |
}
|
260 |
+
} catch ( Exception $e ) {
|
|
|
261 |
|
262 |
}
|
263 |
|
plugin-fw/lib/yit-plugin-panel-wc.php
CHANGED
@@ -369,7 +369,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
369 |
wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', $woocommerce_settings_deps, $woocommerce_version, true );
|
370 |
|
371 |
wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox.js', array( 'jquery' ), '1.6.3', true );
|
372 |
-
wp_register_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen' ), $this->version, true );
|
373 |
wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
|
374 |
'i18n_nav_warning' => __( 'The changes you have made will be lost if you leave this page.', 'yith-plugin-fw' )
|
375 |
) );
|
369 |
wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', $woocommerce_settings_deps, $woocommerce_version, true );
|
370 |
|
371 |
wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox.js', array( 'jquery' ), '1.6.3', true );
|
372 |
+
wp_register_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.min.js', array( 'jquery', 'jquery-chosen','wp-color-picker' ), $this->version, true );
|
373 |
wp_localize_script( 'woocommerce_settings', 'woocommerce_settings_params', array(
|
374 |
'i18n_nav_warning' => __( 'The changes you have made will be lost if you leave this page.', 'yith-plugin-fw' )
|
375 |
) );
|
plugin-fw/lib/yit-plugin-panel.php
CHANGED
@@ -113,7 +113,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
113 |
|
114 |
if( ! isset( $admin_page_hooks['yit_plugin_panel'] ) ){
|
115 |
$position = apply_filters( 'yit_plugins_menu_item_position', '62.32' );
|
116 |
-
|
|
|
117 |
}
|
118 |
}
|
119 |
|
@@ -151,7 +152,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
151 |
wp_enqueue_script( 'jquery-ui-slider' );
|
152 |
wp_enqueue_script( 'jquery-ui-dialog' );
|
153 |
wp_enqueue_script( 'jquery-chosen', YIT_CORE_PLUGIN_URL . '/assets/js/chosen/chosen.jquery.js', array( 'jquery' ), '1.1.0', true );
|
154 |
-
wp_register_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.js', array( 'jquery', 'jquery-chosen'
|
155 |
wp_register_script( 'codemirror', YIT_CORE_PLUGIN_URL . '/assets/js/codemirror/codemirror.js', array( 'jquery' ), $this->version, true );
|
156 |
wp_register_script( 'codemirror-javascript', YIT_CORE_PLUGIN_URL . '/assets/js/codemirror/javascript.js', array( 'jquery', 'codemirror' ), $this->version, true );
|
157 |
wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox.js', array( 'jquery' ), '1.6.3', true );
|
@@ -167,7 +168,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
167 |
wp_enqueue_style( 'yit-jquery-ui-style', '//code.jquery.com/ui/' . $jquery_version . '/themes/smoothness/jquery-ui.css', array(), $jquery_version );
|
168 |
wp_register_style( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/css/colorbox.css', array(), $this->version );
|
169 |
wp_register_style( 'yit-upgrade-to-pro', YIT_CORE_PLUGIN_URL . '/assets/css/yit-upgrade-to-pro.css', array( 'colorbox' ), $this->version );
|
170 |
-
|
171 |
if( ( 'admin.php' == $pagenow && strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false ) || apply_filters( 'yit_plugin_panel_asset_loading', false ) ){
|
172 |
wp_enqueue_style( 'yit-plugin-style' );
|
173 |
wp_enqueue_script( 'yit-plugin-panel' );
|
113 |
|
114 |
if( ! isset( $admin_page_hooks['yit_plugin_panel'] ) ){
|
115 |
$position = apply_filters( 'yit_plugins_menu_item_position', '62.32' );
|
116 |
+
// YITH Plugins text must not be translated
|
117 |
+
add_menu_page( 'yit_plugin_panel', 'YITH Plugins', 'manage_options', 'yit_plugin_panel', NULL, YIT_CORE_PLUGIN_URL . '/assets/images/yithemes-icon.png', $position );
|
118 |
}
|
119 |
}
|
120 |
|
152 |
wp_enqueue_script( 'jquery-ui-slider' );
|
153 |
wp_enqueue_script( 'jquery-ui-dialog' );
|
154 |
wp_enqueue_script( 'jquery-chosen', YIT_CORE_PLUGIN_URL . '/assets/js/chosen/chosen.jquery.js', array( 'jquery' ), '1.1.0', true );
|
155 |
+
wp_register_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel.js', array( 'jquery', 'jquery-chosen','wp-color-picker'), $this->version, true );
|
156 |
wp_register_script( 'codemirror', YIT_CORE_PLUGIN_URL . '/assets/js/codemirror/codemirror.js', array( 'jquery' ), $this->version, true );
|
157 |
wp_register_script( 'codemirror-javascript', YIT_CORE_PLUGIN_URL . '/assets/js/codemirror/javascript.js', array( 'jquery', 'codemirror' ), $this->version, true );
|
158 |
wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox.js', array( 'jquery' ), '1.6.3', true );
|
168 |
wp_enqueue_style( 'yit-jquery-ui-style', '//code.jquery.com/ui/' . $jquery_version . '/themes/smoothness/jquery-ui.css', array(), $jquery_version );
|
169 |
wp_register_style( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/css/colorbox.css', array(), $this->version );
|
170 |
wp_register_style( 'yit-upgrade-to-pro', YIT_CORE_PLUGIN_URL . '/assets/css/yit-upgrade-to-pro.css', array( 'colorbox' ), $this->version );
|
171 |
+
|
172 |
if( ( 'admin.php' == $pagenow && strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false ) || apply_filters( 'yit_plugin_panel_asset_loading', false ) ){
|
173 |
wp_enqueue_style( 'yit-plugin-style' );
|
174 |
wp_enqueue_script( 'yit-plugin-panel' );
|
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', 'yith-plugin-fw' ),
|
71 |
-
__( 'From now on, you can find all plugin options in
|
72 |
-
|
73 |
__( 'Discover all our plugins available on:', 'yith-plugin-fw' ),
|
74 |
__( 'and', 'yith-plugin-fw' )
|
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', 'yith-plugin-fw' ),
|
85 |
-
__( 'From now on, you can find
|
86 |
-
|
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
|
89 |
__( 'Discover all our plugins available on:', 'yith-plugin-fw' ),
|
90 |
__( 'and', 'yith-plugin-fw' )
|
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', 'yith-plugin-fw' ),
|
71 |
+
__( 'From now on, you can find all plugin options in YITH Plugins menu.
|
72 |
+
Plugin customization settings will be available as a new entry in YITH Plugins menu.', 'yith-plugin-fw' ),
|
73 |
__( 'Discover all our plugins available on:', 'yith-plugin-fw' ),
|
74 |
__( 'and', 'yith-plugin-fw' )
|
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', 'yith-plugin-fw' ),
|
85 |
+
__( 'From now on, you can find the option panel of YITH plugins in YITH Plugins menu.
|
86 |
+
Every time one of our plugins is added, 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 YITH Plugins tab.', 'yith-plugin-fw' ),
|
89 |
__( 'Discover all our plugins available on:', 'yith-plugin-fw' ),
|
90 |
__( 'and', 'yith-plugin-fw' )
|
91 |
),
|
plugin-fw/lib/yit-upgrade.php
CHANGED
@@ -93,7 +93,7 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
|
|
93 |
|
94 |
/* === HOOKS === */
|
95 |
if ( ! is_multisite() || is_plugin_active_for_network( $plugin_init ) ) {
|
96 |
-
add_action( '
|
97 |
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
|
98 |
} else if ( is_multisite() && current_user_can( 'update_plugins' ) ) {
|
99 |
$transient = 'yith_register_' . md5( $plugin_slug );
|
@@ -433,18 +433,27 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
|
|
433 |
$wp_list_table = _get_list_table( 'WP_MS_Themes_List_Table' );
|
434 |
|
435 |
if ( is_network_admin() || ! is_multisite() || true ) {
|
436 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
|
438 |
if ( ! current_user_can( 'update_plugins' ) ) {
|
439 |
-
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>.', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
|
440 |
} elseif ( is_plugin_active_for_network( $init ) ) {
|
441 |
-
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>', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
|
442 |
} elseif ( empty( $r->package ) ) {
|
443 |
-
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="License activation">activate</a> your copy of %6s.</em>', 'yith-plugin-fw' ), $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'] );
|
444 |
} else {
|
445 |
-
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> or <a href="%5$s">update now</a>.', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version, wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $init, 'upgrade-plugin_' . $init ) );
|
446 |
}
|
447 |
|
|
|
|
|
448 |
/**
|
449 |
* Fires at the end of the update message container in each
|
450 |
* row of the themes list table.
|
@@ -475,7 +484,7 @@ if ( ! class_exists( 'YIT_Upgrade' ) ) {
|
|
475 |
*/
|
476 |
public function remove_wp_plugin_update_row() {
|
477 |
foreach ( $this->_plugins as $init => $plugin ) {
|
478 |
-
remove_action( "after_plugin_row_{$init}", 'wp_plugin_update_row', 10
|
479 |
add_action( "after_plugin_row_{$init}", array( $this, 'plugin_update_row' ) );
|
480 |
add_action( "in_theme_update_message-{$init}", array( $this, 'in_theme_update_message' ), 10, 3 );
|
481 |
}
|
93 |
|
94 |
/* === HOOKS === */
|
95 |
if ( ! is_multisite() || is_plugin_active_for_network( $plugin_init ) ) {
|
96 |
+
add_action( 'load-plugins.php', array( $this, 'remove_wp_plugin_update_row' ), 25 );
|
97 |
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
|
98 |
} else if ( is_multisite() && current_user_can( 'update_plugins' ) ) {
|
99 |
$transient = 'yith_register_' . md5( $plugin_slug );
|
433 |
$wp_list_table = _get_list_table( 'WP_MS_Themes_List_Table' );
|
434 |
|
435 |
if ( is_network_admin() || ! is_multisite() || true ) {
|
436 |
+
global $wp_version;
|
437 |
+
$is_wp_4_6 = version_compare( $wp_version, '4.6', '>=' );
|
438 |
+
|
439 |
+
echo '<tr class="plugin-update-tr' . ( is_plugin_active( $init ) ? ' active' : '' ) . '"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">';
|
440 |
+
|
441 |
+
echo '<div class="update-message' . ( $is_wp_4_6 ? ' notice inline notice-warning notice-alt' : '' ) . '">';
|
442 |
+
|
443 |
+
echo( $is_wp_4_6 ? '<p>' : '' );
|
444 |
|
445 |
if ( ! current_user_can( 'update_plugins' ) ) {
|
446 |
+
printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button open-plugin-details-modal" title="%3$s">View version %4$s details</a>.', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
|
447 |
} elseif ( is_plugin_active_for_network( $init ) ) {
|
448 |
+
printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button open-plugin-details-modal" 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>', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version );
|
449 |
} elseif ( empty( $r->package ) ) {
|
450 |
+
printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button open-plugin-details-modal" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin, please <a href="%5$s" title="License activation">activate</a> your copy of %6s.</em>', 'yith-plugin-fw' ), $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'] );
|
451 |
} else {
|
452 |
+
printf( __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox yit-changelog-button open-plugin-details-modal" title="%3$s">View version %4$s details</a> or <a href="%5$s">update now</a>.', 'yith-plugin-fw' ), $this->_plugins[ $init ]['info']['Name'], esc_url( $details_url ), esc_attr( $this->_plugins[ $init ]['info']['Name'] ), $r->new_version, wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $init, 'upgrade-plugin_' . $init ) );
|
453 |
}
|
454 |
|
455 |
+
echo( $is_wp_4_6 ? '</p>' : '' );
|
456 |
+
|
457 |
/**
|
458 |
* Fires at the end of the update message container in each
|
459 |
* row of the themes list table.
|
484 |
*/
|
485 |
public function remove_wp_plugin_update_row() {
|
486 |
foreach ( $this->_plugins as $init => $plugin ) {
|
487 |
+
remove_action( "after_plugin_row_{$init}", 'wp_plugin_update_row', 10 );
|
488 |
add_action( "after_plugin_row_{$init}", array( $this, 'plugin_update_row' ) );
|
489 |
add_action( "in_theme_update_message-{$init}", array( $this, 'in_theme_update_message' ), 10, 3 );
|
490 |
}
|
plugin-fw/licence/lib/yit-licence.php
CHANGED
@@ -672,7 +672,7 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
|
|
672 |
'105' => __( 'Invalid security key', 'yith-plugin-fw' ),
|
673 |
'106' => __( 'License key has expired', 'yith-plugin-fw' ),
|
674 |
'107' => __( 'License key has been banned', 'yith-plugin-fw' ),
|
675 |
-
'108' => __( 'Current product is not included
|
676 |
'200' => sprintf( '<strong>%s</strong>! %s',__( 'Great', 'yith-plugin-fw' ), __( 'License successfully activated', 'yith-plugin-fw' ) ),
|
677 |
'deactivated' => sprintf( '%s <strong>%s</strong>', __( 'License key deactivated for website', 'woocommerce-software-add-on' ), isset( $instance ) ? $instance : '' )
|
678 |
);
|
@@ -691,7 +691,7 @@ if ( ! class_exists( 'YIT_Licence' ) ) {
|
|
691 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
692 |
*/
|
693 |
public function display_product_name( $product_name ){
|
694 |
-
return str_replace( array( 'YITH', 'WooCommerce', 'Premium', 'Theme' ), '', $product_name );
|
695 |
}
|
696 |
|
697 |
public function get_number_of_membership_products(){
|
672 |
'105' => __( 'Invalid security key', 'yith-plugin-fw' ),
|
673 |
'106' => __( 'License key has expired', 'yith-plugin-fw' ),
|
674 |
'107' => __( 'License key has been banned', 'yith-plugin-fw' ),
|
675 |
+
'108' => __( 'Current product is not included in your YITH Club Subscription key', 'yith-plugin-fw' ),
|
676 |
'200' => sprintf( '<strong>%s</strong>! %s',__( 'Great', 'yith-plugin-fw' ), __( 'License successfully activated', 'yith-plugin-fw' ) ),
|
677 |
'deactivated' => sprintf( '%s <strong>%s</strong>', __( 'License key deactivated for website', 'woocommerce-software-add-on' ), isset( $instance ) ? $instance : '' )
|
678 |
);
|
691 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
692 |
*/
|
693 |
public function display_product_name( $product_name ){
|
694 |
+
return str_replace( array( 'for WooCommerce', 'YITH', 'WooCommerce', 'Premium', 'Theme' ), '', $product_name );
|
695 |
}
|
696 |
|
697 |
public function get_number_of_membership_products(){
|
plugin-fw/licence/templates/panel/activation/activation-panel.php
CHANGED
@@ -94,7 +94,7 @@ $num_members_products_activate = $this->get_number_of_membership_products();
|
|
94 |
<?php if( $this->show_extra_info ) : ?>
|
95 |
<th><?php _e( 'Remaining', 'yith-plugin-fw' ) ?></th>
|
96 |
<?php if( $num_members_products_activate ) : ?>
|
97 |
-
<th><?php _e( '
|
98 |
<?php endif; ?>
|
99 |
<?php endif; ?>
|
100 |
|
@@ -143,7 +143,7 @@ $num_members_products_activate = $this->get_number_of_membership_products();
|
|
143 |
</a>
|
144 |
|
145 |
<?php if( ! $info['licence']['is_membership'] && $this->show_renew_button ) : ?>
|
146 |
-
<a class="button-licence licence-renew" href="<?php echo $this->get_renewing_uri( $info['licence']['licence_key'] ) ?>" target="_blank">
|
147 |
<?php _e( 'Renew', 'yith-plugin-fw' ) ?>
|
148 |
</a>
|
149 |
<?php endif; ?>
|
94 |
<?php if( $this->show_extra_info ) : ?>
|
95 |
<th><?php _e( 'Remaining', 'yith-plugin-fw' ) ?></th>
|
96 |
<?php if( $num_members_products_activate ) : ?>
|
97 |
+
<th><?php _e( 'Club Subscription', 'yith-plugin-fw' ) ?></th>
|
98 |
<?php endif; ?>
|
99 |
<?php endif; ?>
|
100 |
|
143 |
</a>
|
144 |
|
145 |
<?php if( ! $info['licence']['is_membership'] && $this->show_renew_button ) : ?>
|
146 |
+
<a class="button-licence licence-renew" href="<?php echo esc_url( $this->get_renewing_uri( $info['licence']['licence_key'] ) ) ?>" target="_blank">
|
147 |
<?php _e( 'Renew', 'yith-plugin-fw' ) ?>
|
148 |
</a>
|
149 |
<?php endif; ?>
|
plugin-fw/templates/panel/types/colorpicker.php
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* This file belongs to the YIT Plugin Framework.
|
4 |
+
*
|
5 |
+
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
|
6 |
+
* that is bundled with this package in the file LICENSE.txt.
|
7 |
+
* It is also available through the world-wide-web at this URL:
|
8 |
+
* http://www.gnu.org/licenses/gpl-3.0.txt
|
9 |
+
*/
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Text Plugin Admin View
|
13 |
+
*
|
14 |
+
* @package Yithemes
|
15 |
+
* @author Emanuela Castorina <emanuela.castorina@yithemes.it>
|
16 |
+
* @since 1.0.0
|
17 |
+
*/
|
18 |
+
|
19 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
20 |
+
exit;
|
21 |
+
} // Exit if accessed directly
|
22 |
+
|
23 |
+
wp_enqueue_style('wp-color-picker');
|
24 |
+
|
25 |
+
$id = $this->get_id_field( $option['id'] );
|
26 |
+
$name = $this->get_name_field( $option['id'] );
|
27 |
+
|
28 |
+
?>
|
29 |
+
<div id="<?php echo $id ?>-container" <?php if ( isset( $option['deps'] ) ): ?>data-field="<?php echo $id ?>" data-dep="<?php echo $this->get_id_field( $option['deps']['ids'] ) ?>" data-value="<?php echo $option['deps']['values'] ?>" <?php endif ?> class="yit_options rm_option rm_input rm_colorpicker">
|
30 |
+
<div class="option">
|
31 |
+
<input type="text" name="<?php echo $name ?>" id="<?php echo $id ?>" value="<?php echo esc_attr( $db_value ) ?>" <?php if( isset( $std ) ) : ?>data-default-color="<?php echo $std ?>"<?php endif ?> class="panel-colorpicker"/>
|
32 |
+
|
33 |
+
</div>
|
34 |
+
<span class="description"><?php echo $option['desc'] ?></span>
|
35 |
+
|
36 |
+
<div class="clear"></div>
|
37 |
+
</div>
|
38 |
+
|
plugin-fw/templates/panel/types/number.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* This file belongs to the YIT Plugin Framework.
|
4 |
+
*
|
5 |
+
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
|
6 |
+
* that is bundled with this package in the file LICENSE.txt.
|
7 |
+
* It is also available through the world-wide-web at this URL:
|
8 |
+
* http://www.gnu.org/licenses/gpl-3.0.txt
|
9 |
+
*/
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Number Plugin Admin View
|
13 |
+
*
|
14 |
+
* @package Yithemes
|
15 |
+
* @author Emanuela Castorina <emanuela.castorina@yithemes.it>
|
16 |
+
* @since 1.0.0
|
17 |
+
*/
|
18 |
+
|
19 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
20 |
+
exit;
|
21 |
+
} // Exit if accessed directly
|
22 |
+
|
23 |
+
$id = $this->get_id_field( $option['id'] );
|
24 |
+
$name = $this->get_name_field( $option['id'] );
|
25 |
+
|
26 |
+
?>
|
27 |
+
<div id="<?php echo $id ?>-container" <?php if ( isset( $option['deps'] ) ): ?>data-field="<?php echo $id ?>" data-dep="<?php echo $this->get_id_field( $option['deps']['ids'] ) ?>" data-value="<?php echo $option['deps']['values'] ?>" <?php endif ?> class="yit_options rm_option rm_input rm_text">
|
28 |
+
<div class="option">
|
29 |
+
<input type="number" name="<?php echo $name ?>" id="<?php echo $id ?>" value="<?php echo esc_attr( $db_value ) ?>" <?php echo $custom_attributes ?> />
|
30 |
+
</div>
|
31 |
+
<span class="description"><?php echo $option['desc'] ?></span>
|
32 |
+
|
33 |
+
<div class="clear"></div>
|
34 |
+
</div>
|
35 |
+
|
plugin-fw/templates/panel/types/upload.php
CHANGED
@@ -38,7 +38,7 @@ $name = $this->get_name_field( $option['id'] );
|
|
38 |
<?php
|
39 |
$file = $db_value;
|
40 |
if ( preg_match( '/(jpg|jpeg|png|gif|ico)$/', $file ) ) {
|
41 |
-
echo "<img src=\"" . $this->settings['plugin-url'] . "/plugin-fw/assets/images/sleep.png\" data-src=\"$file\" />";
|
42 |
}
|
43 |
?>
|
44 |
</div>
|
38 |
<?php
|
39 |
$file = $db_value;
|
40 |
if ( preg_match( '/(jpg|jpeg|png|gif|ico)$/', $file ) ) {
|
41 |
+
echo isset( $this->settings['plugin-url'] ) ? "<img src=\"" . $this->settings['plugin-url'] . "/plugin-fw/assets/images/sleep.png\" data-src=\"$file\" />" : '';
|
42 |
}
|
43 |
?>
|
44 |
</div>
|
plugin-fw/templates/panel/woocommerce/woocommerce-form.php
CHANGED
@@ -3,26 +3,28 @@ $hide_sidebar = $this->hide_sidebar();
|
|
3 |
$panel_content_class = !$hide_sidebar ? apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap' ) : 'yit-admin-panel-content-wrap-no-sidebar';
|
4 |
?>
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
</
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
3 |
$panel_content_class = !$hide_sidebar ? apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap' ) : 'yit-admin-panel-content-wrap-no-sidebar';
|
4 |
?>
|
5 |
|
6 |
+
<div id="<?php echo $this->settings[ 'page' ] ?>_<?php echo $this->get_current_tab() ?>" class="yit-admin-panel-container">
|
7 |
+
<?php do_action( 'yit_framework_before_print_wc_panel_content', $current_tab ); ?>
|
8 |
+
<div class="<?php echo $panel_content_class; ?>">
|
9 |
+
<form id="plugin-fw-wc" method="post">
|
10 |
+
<?php $this->add_fields() ?>
|
11 |
+
<?php wp_nonce_field( 'yit_panel_wc_options_' . $this->settings[ 'page' ], 'yit_panel_wc_options_nonce' ); ?>
|
12 |
+
<input style="float: left; margin-right: 10px;" class="button-primary" type="submit" value="<?php _e( 'Save Changes', 'yith-plugin-fw' ) ?>"/>
|
13 |
+
</form>
|
14 |
+
<form id="plugin-fw-wc-reset" method="post">
|
15 |
+
<?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) ?>
|
16 |
+
<input type="hidden" name="yit-action" value="wc-options-reset"/>
|
17 |
+
<?php wp_nonce_field( 'yith_wc_reset_options_' . $this->settings[ 'page' ], 'yith_wc_reset_options_nonce' ); ?>
|
18 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset Defaults', 'yith-plugin-fw' ) ?>"
|
19 |
+
onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yith-plugin-fw' ) ?>');"/>
|
20 |
+
</form>
|
21 |
+
</div>
|
22 |
+
<?php
|
23 |
+
/**
|
24 |
+
* Add panel Sidebar
|
25 |
+
*/
|
26 |
+
if ( !$hide_sidebar )
|
27 |
+
$this->print_panel_sidebar();
|
28 |
+
?>
|
29 |
+
<?php do_action( 'yit_framework_after_print_wc_panel_content', $current_tab ); ?>
|
30 |
+
</div>
|