Version Description
- Released on 24 June 2021 =
- New: support for WordPress 5.8
- New: support for WooCommerce 5.5
- Update: YITH plugin framework
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Ajax Search |
Version | 1.9.2 |
Comparing to | |
See all releases |
Code changes from version 1.9.1 to 1.9.2
- init.php +3 -3
- languages/yith-woocommerce-ajax-search.pot +2 -2
- plugin-fw/assets/css/scss/yith-plugin-ui/_variables.scss +1 -1
- plugin-fw/assets/css/scss/yith-plugin-ui/components/_buttons.scss +1 -0
- plugin-fw/assets/css/scss/yith-plugin-ui/components/_confirm.scss +1 -0
- plugin-fw/assets/css/scss/yith-plugin-ui/mixins/_buttons.scss +2 -0
- plugin-fw/assets/css/yit-plugin-panel.css +257 -0
- plugin-fw/assets/css/yith-fields.css +26 -4
- plugin-fw/assets/css/yith-icon.css +19 -7
- plugin-fw/assets/css/yith-plugin-ui.css +4 -1
- plugin-fw/assets/fonts/yith-icon.eot +0 -0
- plugin-fw/assets/fonts/yith-icon.ttf +0 -0
- plugin-fw/assets/fonts/yith-icon.woff2 +0 -0
- plugin-fw/assets/js/wp-pages.js +49 -9
- plugin-fw/assets/js/wp-pages.min.js +1 -1
- plugin-fw/assets/js/yith-fields.js +1 -1
- plugin-fw/assets/js/yith-fields.min.js +1 -1
- plugin-fw/assets/js/yith-ui.js +8 -4
- plugin-fw/assets/js/yith-ui.min.js +1 -1
- plugin-fw/includes/builders/elementor/class-yith-elementor.php +20 -15
- plugin-fw/includes/class-yit-ajax.php +10 -2
- plugin-fw/includes/class-yit-assets.php +21 -2
- plugin-fw/includes/class-yit-help-desk.php +187 -0
- plugin-fw/includes/class-yit-plugin-panel-woocommerce.php +4 -0
- plugin-fw/includes/class-yit-plugin-panel.php +117 -26
- plugin-fw/init.php +2 -2
- plugin-fw/languages/yith-plugin-fw-el.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-el.po +189 -72
- plugin-fw/languages/yith-plugin-fw-es_ES.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-es_ES.po +199 -74
- plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-it_IT.po +199 -75
- plugin-fw/languages/yith-plugin-fw-nl_NL.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-nl_NL.po +202 -75
- plugin-fw/languages/yith-plugin-fw.pot +187 -71
- plugin-fw/templates/fields/ajax-posts.php +23 -9
- plugin-fw/templates/fields/image-dimensions.php +27 -0
- plugin-fw/templates/fields/text-array.php +52 -22
- plugin-fw/templates/panel/help-tab.php +211 -0
- plugin-fw/yit-functions.php +143 -4
- plugin-fw/yit-plugin.php +3 -2
- readme.txt +7 -2
init.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Ajax Search
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-ajax-search/
|
5 |
* Description: <code><strong>YITH WooCommerce Ajax Search</strong></code> is the plugin that allows you to search for a specific product by inserting a few characters. Thanks to <strong>Ajax Search</strong>, users can quickly find the contents they are interested in without wasting time among site pages. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
-
* Version: 1.9.
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-ajax-search
|
10 |
* Domain Path: /languages/
|
11 |
* WC requires at least: 4.5.0
|
12 |
-
* WC tested up to: 5.
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Ajax Search
|
@@ -75,7 +75,7 @@ register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
|
|
75 |
if ( defined( 'YITH_WCAS_VERSION' ) ) {
|
76 |
return;
|
77 |
} else {
|
78 |
-
define( 'YITH_WCAS_VERSION', '1.9.
|
79 |
}
|
80 |
|
81 |
if ( ! defined( 'YITH_WCAS_FREE_INIT' ) ) {
|
3 |
* Plugin Name: YITH WooCommerce Ajax Search
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-ajax-search/
|
5 |
* Description: <code><strong>YITH WooCommerce Ajax Search</strong></code> is the plugin that allows you to search for a specific product by inserting a few characters. Thanks to <strong>Ajax Search</strong>, users can quickly find the contents they are interested in without wasting time among site pages. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
+
* Version: 1.9.2
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-ajax-search
|
10 |
* Domain Path: /languages/
|
11 |
* WC requires at least: 4.5.0
|
12 |
+
* WC tested up to: 5.5
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Ajax Search
|
75 |
if ( defined( 'YITH_WCAS_VERSION' ) ) {
|
76 |
return;
|
77 |
} else {
|
78 |
+
define( 'YITH_WCAS_VERSION', '1.9.2' );
|
79 |
}
|
80 |
|
81 |
if ( ! defined( 'YITH_WCAS_FREE_INIT' ) ) {
|
languages/yith-woocommerce-ajax-search.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Ajax Search package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: YITH WooCommerce Ajax Search 1.9.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/yith-woocommerce-ajax-search\n"
|
8 |
-
"POT-Creation-Date: 2021-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Ajax Search package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: YITH WooCommerce Ajax Search 1.9.2\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/yith-woocommerce-ajax-search\n"
|
8 |
+
"POT-Creation-Date: 2021-06-24 13:51:04+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
plugin-fw/assets/css/scss/yith-plugin-ui/_variables.scss
CHANGED
@@ -18,7 +18,7 @@ $delete_focus: #f0d2cd; // Text on delete buttons
|
|
18 |
// Outline is used to stylize Secondary buttons.
|
19 |
$outline_text: #0087b3; // outline button - text color
|
20 |
$outline_border: #0094c4; // outline button - border color
|
21 |
-
$outline_bg:
|
22 |
$outline_bg_hover: rgba(157, 198, 205, .2); // outline button - background color on hover
|
23 |
$outline_border_hover: #007ba3; // outline button - border color on hover
|
24 |
$outline_focus: #dfeef2; // Outline focus color, for buttons
|
18 |
// Outline is used to stylize Secondary buttons.
|
19 |
$outline_text: #0087b3; // outline button - text color
|
20 |
$outline_border: #0094c4; // outline button - border color
|
21 |
+
$outline_bg: rgba(255, 255, 255, 0); // outline button - background color
|
22 |
$outline_bg_hover: rgba(157, 198, 205, .2); // outline button - background color on hover
|
23 |
$outline_border_hover: #007ba3; // outline button - border color on hover
|
24 |
$outline_focus: #dfeef2; // Outline focus color, for buttons
|
plugin-fw/assets/css/scss/yith-plugin-ui/components/_buttons.scss
CHANGED
@@ -17,6 +17,7 @@
|
|
17 |
display: inline-block;
|
18 |
text-decoration: none;
|
19 |
cursor: pointer;
|
|
|
20 |
|
21 |
&:focus {
|
22 |
outline: none;
|
17 |
display: inline-block;
|
18 |
text-decoration: none;
|
19 |
cursor: pointer;
|
20 |
+
white-space: nowrap;
|
21 |
|
22 |
&:focus {
|
23 |
outline: none;
|
plugin-fw/assets/css/scss/yith-plugin-ui/components/_confirm.scss
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
cursor: pointer;
|
21 |
display: inline-block;
|
22 |
margin-right: 10px;
|
|
|
23 |
|
24 |
&:last-child {
|
25 |
margin-right: 0;
|
20 |
cursor: pointer;
|
21 |
display: inline-block;
|
22 |
margin-right: 10px;
|
23 |
+
white-space: nowrap;
|
24 |
|
25 |
&:last-child {
|
26 |
margin-right: 0;
|
plugin-fw/assets/css/scss/yith-plugin-ui/mixins/_buttons.scss
CHANGED
@@ -8,6 +8,8 @@
|
|
8 |
cursor: pointer;
|
9 |
transition: all .3s ease-in-out;
|
10 |
text-decoration: none;
|
|
|
|
|
11 |
&:focus {
|
12 |
outline: none;
|
13 |
box-shadow: none;
|
8 |
cursor: pointer;
|
9 |
transition: all .3s ease-in-out;
|
10 |
text-decoration: none;
|
11 |
+
white-space: nowrap;
|
12 |
+
|
13 |
&:focus {
|
14 |
outline: none;
|
15 |
box-shadow: none;
|
plugin-fw/assets/css/yit-plugin-panel.css
CHANGED
@@ -78,6 +78,242 @@
|
|
78 |
margin : 0;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
/**
|
83 |
Post type Edit
|
@@ -773,6 +1009,10 @@ button#yith-plugin-fw-float-save-button {
|
|
773 |
transition : 0.3s ease-in-out;
|
774 |
}
|
775 |
|
|
|
|
|
|
|
|
|
776 |
button#yith-plugin-fw-float-save-button.visible {
|
777 |
display : flex;
|
778 |
}
|
@@ -803,6 +1043,23 @@ button#yith-plugin-fw-float-save-button.green {
|
|
803 |
|
804 |
}
|
805 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
806 |
@media (min-width : 768px) and (max-width : 992px) {
|
807 |
}
|
808 |
|
78 |
margin : 0;
|
79 |
}
|
80 |
|
81 |
+
/**
|
82 |
+
Help tab
|
83 |
+
*/
|
84 |
+
|
85 |
+
.yith-plugin-fw-panel-help-tab-container {
|
86 |
+
background-color : #fff;
|
87 |
+
padding : 60px 25px;
|
88 |
+
}
|
89 |
+
|
90 |
+
.yith-plugin-fw-panel-help-tab-content {
|
91 |
+
background-color : #F4F4F4;
|
92 |
+
border-radius : 15px;
|
93 |
+
max-width : 1100px;
|
94 |
+
margin : 0 auto;
|
95 |
+
padding : 40px 40px 60px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.yith-plugin-fw-panel-help-tab-content p,
|
99 |
+
.yith-plugin-fw-panel-help-tab-content a{
|
100 |
+
font-size : 16px;
|
101 |
+
}
|
102 |
+
|
103 |
+
.yith-plugin-fw-panel-help-tab-content .row {
|
104 |
+
margin : 0 -15px 50px;
|
105 |
+
white-space : nowrap;
|
106 |
+
}
|
107 |
+
|
108 |
+
.yith-plugin-fw-panel-help-tab-content .row:last-child {
|
109 |
+
margin-bottom : 0;
|
110 |
+
}
|
111 |
+
|
112 |
+
.yith-plugin-fw-panel-help-tab-content .row .column-left,
|
113 |
+
.yith-plugin-fw-panel-help-tab-content .row .column-right {
|
114 |
+
display : inline-block;
|
115 |
+
padding : 0 15px;
|
116 |
+
vertical-align : top;
|
117 |
+
width : 66%;
|
118 |
+
}
|
119 |
+
|
120 |
+
.yith-plugin-fw-panel-help-tab-content .row .column-right {
|
121 |
+
width : 33%;
|
122 |
+
}
|
123 |
+
|
124 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video,
|
125 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-actions,
|
126 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles,
|
127 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
|
128 |
+
box-sizing : border-box;
|
129 |
+
white-space : normal;
|
130 |
+
}
|
131 |
+
|
132 |
+
.yith-plugin-fw-panel-help-tab-content h2.yith-plugin-fw-panel-help-tab-title {
|
133 |
+
background : none;
|
134 |
+
border : none;
|
135 |
+
font-size : 22px;
|
136 |
+
line-height : 1.5em;
|
137 |
+
padding : 0;
|
138 |
+
text-align : center;
|
139 |
+
}
|
140 |
+
|
141 |
+
.yith-plugin-fw-panel-help-tab-content h3 {
|
142 |
+
color : #03689F;
|
143 |
+
font-size : 15px;
|
144 |
+
}
|
145 |
+
|
146 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-panel-tab-description {
|
147 |
+
font-size : 18px;
|
148 |
+
text-align : center;
|
149 |
+
margin-bottom : 40px;
|
150 |
+
}
|
151 |
+
|
152 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video {
|
153 |
+
text-align: center;
|
154 |
+
}
|
155 |
+
|
156 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video p.video-description {
|
157 |
+
margin-bottom : 25px;
|
158 |
+
}
|
159 |
+
|
160 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-caption p {
|
161 |
+
margin : 5px 0;
|
162 |
+
}
|
163 |
+
|
164 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-container {
|
165 |
+
margin : 0 auto 50px;
|
166 |
+
overflow : hidden;
|
167 |
+
padding-top : 56.25%;
|
168 |
+
position : relative;
|
169 |
+
}
|
170 |
+
|
171 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-container iframe {
|
172 |
+
border : 0;
|
173 |
+
height : 100%;
|
174 |
+
left : 0;
|
175 |
+
position : absolute;
|
176 |
+
top : 0;
|
177 |
+
width : 100%;
|
178 |
+
}
|
179 |
+
|
180 |
+
.yith-plugin-fw-panel-help-tab-content .box-with-shadow {
|
181 |
+
display : block;
|
182 |
+
background-color : #fff;
|
183 |
+
border-radius : 5px;
|
184 |
+
box-shadow : 0 0 15px 5px rgba(174,201,207,0.3);
|
185 |
+
transition : all .2s ease;
|
186 |
+
}
|
187 |
+
|
188 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions,
|
189 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
|
190 |
+
margin : 0 auto;
|
191 |
+
max-width : 640px;
|
192 |
+
}
|
193 |
+
|
194 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions:not( .full-width ) {
|
195 |
+
padding-top : 65px!important;
|
196 |
+
}
|
197 |
+
|
198 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li {
|
199 |
+
margin-bottom : 20px;
|
200 |
+
}
|
201 |
+
|
202 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li > a {
|
203 |
+
display : block;
|
204 |
+
padding : 15px 20px 15px 75px!important;
|
205 |
+
text-decoration : none;
|
206 |
+
}
|
207 |
+
|
208 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li:hover {
|
209 |
+
box-shadow : 0 0 15px 5px rgba(177,220,228,0.6);
|
210 |
+
transform : scale(1.04);
|
211 |
+
}
|
212 |
+
|
213 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li a:before {
|
214 |
+
color : #03689F;
|
215 |
+
float : left;
|
216 |
+
font-family : 'yith-icon';
|
217 |
+
font-size : 36px;
|
218 |
+
line-height : 1;
|
219 |
+
margin-left : -50px;
|
220 |
+
-webkit-font-smoothing : antialiased;
|
221 |
+
-moz-osx-font-smoothing : grayscale;
|
222 |
+
}
|
223 |
+
|
224 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.read-documentation a:before {
|
225 |
+
content : '\f10d';
|
226 |
+
}
|
227 |
+
|
228 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.watch-videotutorials a:before {
|
229 |
+
content : '\f10e';
|
230 |
+
}
|
231 |
+
|
232 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.check-faqs a:before {
|
233 |
+
content : '\f10c';
|
234 |
+
}
|
235 |
+
|
236 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li h4 {
|
237 |
+
margin : 0 0 5px;
|
238 |
+
}
|
239 |
+
|
240 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li h4 a {
|
241 |
+
color : #03689F;
|
242 |
+
text-decoration : none;
|
243 |
+
}
|
244 |
+
|
245 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li .description {
|
246 |
+
margin : 0;
|
247 |
+
font-size : 14px;
|
248 |
+
}
|
249 |
+
|
250 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li .separator {
|
251 |
+
display : inline-block;
|
252 |
+
margin : 0 5px;
|
253 |
+
}
|
254 |
+
|
255 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles h3 {
|
256 |
+
font-size : 18px;
|
257 |
+
margin : 0;
|
258 |
+
padding : 10px 0;
|
259 |
+
position : relative;
|
260 |
+
|
261 |
+
}
|
262 |
+
|
263 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles h3:before {
|
264 |
+
content : '';
|
265 |
+
background : #03689F;
|
266 |
+
display : block;
|
267 |
+
height : 100%;
|
268 |
+
left : -40px;
|
269 |
+
position : absolute;
|
270 |
+
top : 0;
|
271 |
+
width : 15px;
|
272 |
+
|
273 |
+
}
|
274 |
+
|
275 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles a.button {
|
276 |
+
font-size: 16px;
|
277 |
+
}
|
278 |
+
|
279 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list {
|
280 |
+
margin : 15px 0 30px;
|
281 |
+
}
|
282 |
+
|
283 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list li {
|
284 |
+
display : block;
|
285 |
+
margin-bottom : 10px;
|
286 |
+
}
|
287 |
+
|
288 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list li:before {
|
289 |
+
content: '-';
|
290 |
+
}
|
291 |
+
|
292 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list a {
|
293 |
+
text-decoration : none;
|
294 |
+
}
|
295 |
+
|
296 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket > .box-with-shadow{
|
297 |
+
padding: 30px!important;
|
298 |
+
}
|
299 |
+
|
300 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket h3{
|
301 |
+
color : #B90A0A;
|
302 |
+
font-size : 18px;
|
303 |
+
margin : 0 0 15px;
|
304 |
+
}
|
305 |
+
|
306 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket p {
|
307 |
+
margin-bottom: 35px;
|
308 |
+
}
|
309 |
+
|
310 |
+
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket .button {
|
311 |
+
border-radius : 7px;
|
312 |
+
display : block;
|
313 |
+
font-size : 15px;
|
314 |
+
padding : 7px 15px;
|
315 |
+
text-align : center;
|
316 |
+
}
|
317 |
|
318 |
/**
|
319 |
Post type Edit
|
1009 |
transition : 0.3s ease-in-out;
|
1010 |
}
|
1011 |
|
1012 |
+
.ywtenv-is-sandbox button#yith-plugin-fw-float-save-button {
|
1013 |
+
bottom: 100px;
|
1014 |
+
}
|
1015 |
+
|
1016 |
button#yith-plugin-fw-float-save-button.visible {
|
1017 |
display : flex;
|
1018 |
}
|
1043 |
|
1044 |
}
|
1045 |
|
1046 |
+
@media (max-width: 992px) {
|
1047 |
+
.yith-plugin-fw-panel-help-tab-content .row {
|
1048 |
+
white-space: normal;
|
1049 |
+
margin-bottom: 0;
|
1050 |
+
}
|
1051 |
+
|
1052 |
+
.yith-plugin-fw-panel-help-tab-content .row .column-left,
|
1053 |
+
.yith-plugin-fw-panel-help-tab-content .row .column-right {
|
1054 |
+
width : 100%;
|
1055 |
+
margin-bottom: 50px;
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions {
|
1059 |
+
padding-top: 0!important;
|
1060 |
+
}
|
1061 |
+
}
|
1062 |
+
|
1063 |
@media (min-width : 768px) and (max-width : 992px) {
|
1064 |
}
|
1065 |
|
plugin-fw/assets/css/yith-fields.css
CHANGED
@@ -710,11 +710,11 @@ YITH UI
|
|
710 |
.yith-plugin-ui input[type=number],
|
711 |
.yith-plugin-ui.metaboxes-tab input[type=number],
|
712 |
.yith-plugin-ui input[type=text],
|
713 |
-
.yith-plugin-ui input[type=text],
|
714 |
.yith-plugin-ui input[type=email],
|
715 |
.yith-plugin-ui input[type=password],
|
716 |
.yith-plugin-ui .search-box input[name="s"],
|
717 |
.yith-plugin-fw.yith-plugin-ui input[type=text]:not(.select2-search__field),
|
|
|
718 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text]:not(.select2-search__field),
|
719 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
|
720 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area),
|
@@ -1811,21 +1811,24 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1811 |
border : 0;
|
1812 |
}
|
1813 |
|
1814 |
-
/** MULTI SELECT **/
|
1815 |
-
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select
|
|
|
1816 |
display : inline-block;
|
1817 |
width : 30%;
|
1818 |
margin-right : 3%;
|
1819 |
max-width : 400px;
|
1820 |
}
|
1821 |
|
1822 |
-
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select label
|
|
|
1823 |
display : block;
|
1824 |
font-size : 11px;
|
1825 |
font-weight : 600;
|
1826 |
margin : 0 0 10px 0;
|
1827 |
}
|
1828 |
|
|
|
1829 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select select,
|
1830 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select span.select2 {
|
1831 |
width : 100% !important;
|
@@ -1948,6 +1951,24 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1948 |
border-color : #007694;
|
1949 |
}
|
1950 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1951 |
/**
|
1952 |
* Copy to clipboard
|
1953 |
*/
|
@@ -1990,6 +2011,7 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1990 |
|
1991 |
.yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
1992 |
.yith-plugin-fw.yith-plugin-ui .yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
|
|
1993 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
1994 |
height : 38px;
|
1995 |
width : 100%;
|
710 |
.yith-plugin-ui input[type=number],
|
711 |
.yith-plugin-ui.metaboxes-tab input[type=number],
|
712 |
.yith-plugin-ui input[type=text],
|
|
|
713 |
.yith-plugin-ui input[type=email],
|
714 |
.yith-plugin-ui input[type=password],
|
715 |
.yith-plugin-ui .search-box input[name="s"],
|
716 |
.yith-plugin-fw.yith-plugin-ui input[type=text]:not(.select2-search__field),
|
717 |
+
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text],
|
718 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text]:not(.select2-search__field),
|
719 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
|
720 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area),
|
1811 |
border : 0;
|
1812 |
}
|
1813 |
|
1814 |
+
/** MULTI SELECT AND TEXT ARRAY INLINE STYLE **/
|
1815 |
+
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select,
|
1816 |
+
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text {
|
1817 |
display : inline-block;
|
1818 |
width : 30%;
|
1819 |
margin-right : 3%;
|
1820 |
max-width : 400px;
|
1821 |
}
|
1822 |
|
1823 |
+
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select label,
|
1824 |
+
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text label {
|
1825 |
display : block;
|
1826 |
font-size : 11px;
|
1827 |
font-weight : 600;
|
1828 |
margin : 0 0 10px 0;
|
1829 |
}
|
1830 |
|
1831 |
+
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text input,
|
1832 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select select,
|
1833 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select span.select2 {
|
1834 |
width : 100% !important;
|
1951 |
border-color : #007694;
|
1952 |
}
|
1953 |
|
1954 |
+
/**
|
1955 |
+
* Image dimensions
|
1956 |
+
*/
|
1957 |
+
.yith-plugin-ui .yith-plugin-fw-image-dimensions > div {
|
1958 |
+
display : inline-block;
|
1959 |
+
width : 30%;
|
1960 |
+
margin-right : 3%;
|
1961 |
+
max-width : 100px;
|
1962 |
+
}
|
1963 |
+
|
1964 |
+
.yith-plugin-ui .yith-plugin-fw-image-dimensions label {
|
1965 |
+
display : block;
|
1966 |
+
font-size : 11px;
|
1967 |
+
font-weight : 600;
|
1968 |
+
text-transform : uppercase;
|
1969 |
+
margin : 0 0 10px 0;
|
1970 |
+
}
|
1971 |
+
|
1972 |
/**
|
1973 |
* Copy to clipboard
|
1974 |
*/
|
2011 |
|
2012 |
.yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2013 |
.yith-plugin-fw.yith-plugin-ui .yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2014 |
+
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2015 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2016 |
height : 38px;
|
2017 |
width : 100%;
|
plugin-fw/assets/css/yith-icon.css
CHANGED
@@ -6,10 +6,10 @@
|
|
6 |
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
|
7 |
@font-face {
|
8 |
font-family: yith-icon;
|
9 |
-
src: url("../fonts/yith-icon.eot?
|
10 |
-
src: url("../fonts/yith-icon.eot?
|
11 |
-
url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
|
12 |
-
|
13 |
font-weight: 400;
|
14 |
font-style: normal;
|
15 |
}
|
@@ -123,6 +123,10 @@
|
|
123 |
content: "\e911";
|
124 |
}
|
125 |
|
|
|
|
|
|
|
|
|
126 |
.yith-icon-image:before {
|
127 |
content: "\f10a";
|
128 |
}
|
@@ -135,6 +139,10 @@
|
|
135 |
content: "\e90e";
|
136 |
}
|
137 |
|
|
|
|
|
|
|
|
|
138 |
.yith-icon-magnifier:before {
|
139 |
content: "\e908";
|
140 |
}
|
@@ -207,6 +215,10 @@
|
|
207 |
content: "\f108";
|
208 |
}
|
209 |
|
|
|
|
|
|
|
|
|
210 |
.yith-icon-warning-triangle:before {
|
211 |
content: "\e923";
|
212 |
}
|
@@ -225,7 +237,7 @@
|
|
225 |
|
226 |
/** Deprecated: use yith-icon-paypal instead */
|
227 |
.yith-icon-paypal-svgrepo-com:before {
|
228 |
-
|
229 |
}
|
230 |
|
231 |
/** Deprecated: use yith-icon-arrow-down instead */
|
@@ -290,10 +302,10 @@
|
|
290 |
|
291 |
/** Deprecated: use yith-icon-edit instead */
|
292 |
.yith-icon-pencil:before {
|
293 |
-
|
294 |
}
|
295 |
|
296 |
/** Deprecated: use yith-icon-reset instead */
|
297 |
.yith-icon-update:before {
|
298 |
-
|
299 |
}
|
6 |
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
|
7 |
@font-face {
|
8 |
font-family: yith-icon;
|
9 |
+
src: url("../fonts/yith-icon.eot?91e38b491fff50f72e9b5b51960fdee6");
|
10 |
+
src: url("../fonts/yith-icon.eot?91e38b491fff50f72e9b5b51960fdee6#iefix") format("embedded-opentype"),
|
11 |
+
url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
|
12 |
+
url("../fonts/yith-icon.ttf?91e38b491fff50f72e9b5b51960fdee6") format("truetype");
|
13 |
font-weight: 400;
|
14 |
font-style: normal;
|
15 |
}
|
123 |
content: "\e911";
|
124 |
}
|
125 |
|
126 |
+
.yith-icon-helping-hand:before {
|
127 |
+
content: "\f10c";
|
128 |
+
}
|
129 |
+
|
130 |
.yith-icon-image:before {
|
131 |
content: "\f10a";
|
132 |
}
|
139 |
content: "\e90e";
|
140 |
}
|
141 |
|
142 |
+
.yith-icon-list-search:before {
|
143 |
+
content: "\f10d";
|
144 |
+
}
|
145 |
+
|
146 |
.yith-icon-magnifier:before {
|
147 |
content: "\e908";
|
148 |
}
|
215 |
content: "\f108";
|
216 |
}
|
217 |
|
218 |
+
.yith-icon-video:before {
|
219 |
+
content: "\f10e";
|
220 |
+
}
|
221 |
+
|
222 |
.yith-icon-warning-triangle:before {
|
223 |
content: "\e923";
|
224 |
}
|
237 |
|
238 |
/** Deprecated: use yith-icon-paypal instead */
|
239 |
.yith-icon-paypal-svgrepo-com:before {
|
240 |
+
content: "\e91b";
|
241 |
}
|
242 |
|
243 |
/** Deprecated: use yith-icon-arrow-down instead */
|
302 |
|
303 |
/** Deprecated: use yith-icon-edit instead */
|
304 |
.yith-icon-pencil:before {
|
305 |
+
content: "\e907";
|
306 |
}
|
307 |
|
308 |
/** Deprecated: use yith-icon-reset instead */
|
309 |
.yith-icon-update:before {
|
310 |
+
content: "\e910";
|
311 |
}
|
plugin-fw/assets/css/yith-plugin-ui.css
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
--yith-update-focus: #e7eccc;
|
26 |
--yith-outline-text: #0087b3;
|
27 |
--yith-outline-border: #0094c4;
|
28 |
-
--yith-outline-bg:
|
29 |
--yith-outline-bg-hover: rgba(157, 198, 205, 0.2);
|
30 |
--yith-outline-border-hover: #007ba3;
|
31 |
--yith-outline-focus: #dfeef2;
|
@@ -268,6 +268,7 @@
|
|
268 |
display: inline-block;
|
269 |
text-decoration: none;
|
270 |
cursor: pointer;
|
|
|
271 |
}
|
272 |
|
273 |
.yith-plugin-ui .button-primary:focus, .yith-plugin-ui .button-secondary:focus, .wp-core-ui .yith-plugin-ui .button-primary:focus, .wp-core-ui .yith-plugin-ui .button-secondary:focus {
|
@@ -429,6 +430,7 @@
|
|
429 |
cursor: pointer;
|
430 |
transition: all .3s ease-in-out;
|
431 |
text-decoration: none;
|
|
|
432 |
}
|
433 |
|
434 |
.yith-plugin-ui .yith-plugin-fw__button:focus, .yith-plugin-ui [class^="yith-plugin-fw__button--"]:focus, .yith-plugin-ui [class*=" yith-plugin-fw__button--"]:focus,
|
@@ -838,6 +840,7 @@
|
|
838 |
cursor: pointer;
|
839 |
display: inline-block;
|
840 |
margin-right: 10px;
|
|
|
841 |
}
|
842 |
|
843 |
.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button:last-child {
|
25 |
--yith-update-focus: #e7eccc;
|
26 |
--yith-outline-text: #0087b3;
|
27 |
--yith-outline-border: #0094c4;
|
28 |
+
--yith-outline-bg: rgba(255, 255, 255, 0);
|
29 |
--yith-outline-bg-hover: rgba(157, 198, 205, 0.2);
|
30 |
--yith-outline-border-hover: #007ba3;
|
31 |
--yith-outline-focus: #dfeef2;
|
268 |
display: inline-block;
|
269 |
text-decoration: none;
|
270 |
cursor: pointer;
|
271 |
+
white-space: nowrap;
|
272 |
}
|
273 |
|
274 |
.yith-plugin-ui .button-primary:focus, .yith-plugin-ui .button-secondary:focus, .wp-core-ui .yith-plugin-ui .button-primary:focus, .wp-core-ui .yith-plugin-ui .button-secondary:focus {
|
430 |
cursor: pointer;
|
431 |
transition: all .3s ease-in-out;
|
432 |
text-decoration: none;
|
433 |
+
white-space: nowrap;
|
434 |
}
|
435 |
|
436 |
.yith-plugin-ui .yith-plugin-fw__button:focus, .yith-plugin-ui [class^="yith-plugin-fw__button--"]:focus, .yith-plugin-ui [class*=" yith-plugin-fw__button--"]:focus,
|
840 |
cursor: pointer;
|
841 |
display: inline-block;
|
842 |
margin-right: 10px;
|
843 |
+
white-space: nowrap;
|
844 |
}
|
845 |
|
846 |
.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button:last-child {
|
plugin-fw/assets/fonts/yith-icon.eot
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.ttf
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.woff2
CHANGED
Binary file
|
plugin-fw/assets/js/wp-pages.js
CHANGED
@@ -1,12 +1,4 @@
|
|
1 |
-
|
2 |
-
* This file belongs to the YIT Plugin Framework.
|
3 |
-
*
|
4 |
-
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
|
5 |
-
* that is bundled with this package in the file LICENSE.txt.
|
6 |
-
* It is also available through the world-wide-web at this URL:
|
7 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
8 |
-
*/
|
9 |
-
|
10 |
jQuery( function ( $ ) {
|
11 |
var wrap = $( '.yith-plugin-fw-wp-page-wrapper' ),
|
12 |
notices = $( 'div.updated, div.error, div.notice' ).not( '#message' ),
|
@@ -28,7 +20,55 @@ jQuery( function ( $ ) {
|
|
28 |
e.stopPropagation();
|
29 |
message.removeClass( 'yith-plugin-fw-animate__appear-from-top' ).slideUp( 200 );
|
30 |
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
|
|
|
|
32 |
}
|
33 |
|
34 |
} );
|
1 |
+
/* global yith_plugin_fw_wp_pages */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
jQuery( function ( $ ) {
|
3 |
var wrap = $( '.yith-plugin-fw-wp-page-wrapper' ),
|
4 |
notices = $( 'div.updated, div.error, div.notice' ).not( '#message' ),
|
20 |
e.stopPropagation();
|
21 |
message.removeClass( 'yith-plugin-fw-animate__appear-from-top' ).slideUp( 200 );
|
22 |
} )
|
23 |
+
}
|
24 |
+
|
25 |
+
// Confirmation window when deleting custom post types and custom terms through Bulk Actions.
|
26 |
+
if ( yith_plugin_fw_wp_pages.bulk_delete_confirmation_enabled ) {
|
27 |
+
var bulkDeleteConfirmed = false;
|
28 |
+
|
29 |
+
$( document ).on( 'click', '#doaction, #doaction2', function ( e ) {
|
30 |
+
var doActionButton = $( this ),
|
31 |
+
bulkActionSelector = doActionButton.siblings( '#bulk-action-selector-top, #bulk-action-selector-bottom' );
|
32 |
+
|
33 |
+
if ( 'yith' in window && 'ui' in yith ) {
|
34 |
+
if ( bulkDeleteConfirmed ) {
|
35 |
+
bulkDeleteConfirmed = false;
|
36 |
+
} else {
|
37 |
+
var confirmOptions = {},
|
38 |
+
selectedItems = $( '#the-list .check-column input[type=checkbox]:checked' );
|
39 |
+
|
40 |
+
if ( selectedItems.length ) {
|
41 |
+
switch ( bulkActionSelector.val() ) {
|
42 |
+
case 'trash':
|
43 |
+
confirmOptions.title = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_title;
|
44 |
+
confirmOptions.message = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_message;
|
45 |
+
confirmOptions.confirmButton = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_button;
|
46 |
+
confirmOptions.confirmButtonType = 'delete';
|
47 |
+
break;
|
48 |
+
case 'delete':
|
49 |
+
confirmOptions.title = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_title;
|
50 |
+
confirmOptions.message = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_message;
|
51 |
+
confirmOptions.confirmButton = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_button;
|
52 |
+
confirmOptions.confirmButtonType = 'delete';
|
53 |
+
break;
|
54 |
+
}
|
55 |
+
|
56 |
+
if ( !$.isEmptyObject( confirmOptions ) ) {
|
57 |
+
e.preventDefault();
|
58 |
+
|
59 |
+
confirmOptions.closeAfterConfirm = false;
|
60 |
+
confirmOptions.onConfirm = function () {
|
61 |
+
bulkDeleteConfirmed = true;
|
62 |
+
doActionButton.trigger( 'click' );
|
63 |
+
};
|
64 |
+
|
65 |
+
yith.ui.confirm( confirmOptions );
|
66 |
+
}
|
67 |
+
}
|
68 |
+
}
|
69 |
|
70 |
+
}
|
71 |
+
} );
|
72 |
}
|
73 |
|
74 |
} );
|
plugin-fw/assets/js/wp-pages.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(
|
1 |
+
jQuery(function(e){var i=e(".yith-plugin-fw-wp-page-wrapper"),t=e("div.updated, div.error, div.notice").not("#message"),n=e("div#message.updated");if(e(".yith-plugin-fw-wp-page-wrapper .woo-nav-tab-wrapper").removeClass("woo-nav-tab-wrapper").addClass("yith-nav-tab-wrapper"),t.addClass("inline"),i.length&&i.prepend(t),n.length&&(n.addClass("yith-plugin-fw-animate__appear-from-top").show(),n.on("click",".notice-dismiss",function(e){e.stopPropagation(),n.removeClass("yith-plugin-fw-animate__appear-from-top").slideUp(200)})),yith_plugin_fw_wp_pages.bulk_delete_confirmation_enabled){var a=!1;e(document).on("click","#doaction, #doaction2",function(i){var t=e(this),n=t.siblings("#bulk-action-selector-top, #bulk-action-selector-bottom");if("yith"in window&&"ui"in yith)if(a)a=!1;else{var o={};if(e("#the-list .check-column input[type=checkbox]:checked").length){switch(n.val()){case"trash":o.title=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_title,o.message=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_message,o.confirmButton=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_button,o.confirmButtonType="delete";break;case"delete":o.title=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_title,o.message=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_message,o.confirmButton=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_button,o.confirmButtonType="delete"}e.isEmptyObject(o)||(i.preventDefault(),o.closeAfterConfirm=!1,o.onConfirm=function(){a=!0,t.trigger("click")},yith.ui.confirm(o))}}})}});
|
plugin-fw/assets/js/yith-fields.js
CHANGED
@@ -732,7 +732,7 @@
|
|
732 |
|
733 |
$( document.body ).on( 'yith-plugin-fw-init-radio', function () {
|
734 |
$( '.yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)' ).each( function () {
|
735 |
-
$( this ).
|
736 |
$( this ).addClass( 'yith-plugin-fw-radio--initialized' );
|
737 |
} );
|
738 |
} ).trigger( 'yith-plugin-fw-init-radio' );
|
732 |
|
733 |
$( document.body ).on( 'yith-plugin-fw-init-radio', function () {
|
734 |
$( '.yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)' ).each( function () {
|
735 |
+
$( this ).find( 'input[type="radio"]' ).filter( '[value="' + $( this ).data( 'value' ) + '"]' ).click();
|
736 |
$( this ).addClass( 'yith-plugin-fw-radio--initialized' );
|
737 |
} );
|
738 |
} ).trigger( 'yith-plugin-fw-init-radio' );
|
plugin-fw/assets/js/yith-fields.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){e(document).on("yith_fields_init",function(){var t=e(".yith-plugin-fw-datepicker"),i=e(".yith-plugin-fw-colorpicker"),n={imgPreviewHandler:".yith-plugin-fw-upload-img-preview",uploadButtonHandler:".yith-plugin-fw-upload-button",imgUrlHandler:".yith-plugin-fw-upload-img-url",resetButtonHandler:".yith-plugin-fw-upload-button-reset",imgUrl:e(".yith-plugin-fw-upload-img-url")},a=e(".add_media"),l={rootSelector:".yith-plugin-fw-image-gallery",buttonSelector:".yith-plugin-fw-image-gallery .image-gallery-button",sliderWrapper:e(".yith-plugin-fw-image-gallery ul.slides-wrapper")},o=e(".yith-plugin-fw-sidebar-layout"),s=e(".yith-plugin-fw-slider-container .ui-slider-horizontal"),r=e(".yit-icons-manager-wrapper");e(".yith-plugin-ui td.forminp-checkbox");t.each(function(){var t=e(this),i=t.data(),n=t.next(".yith-icon-calendar");i.showAnim=!1,i.beforeShow=function(e,t){t.dpDiv.addClass("yith-plugin-fw-datepicker-div")},i.onClose=function(e,t){t.dpDiv.removeClass("yith-plugin-fw-datepicker-div")},t.datepicker(i),n&&n.on("click",function(){t.datepicker("show")})}),i.wpColorPicker({palettes:!1,width:200,mode:"hsl",clear:function(){var t=e(this);t.val(t.data("default-color")),t.change()}}),i.each(function(){var t=e(this).data("variations-label"),i=e(this).closest(".yith-plugin-fw-colorpicker-field-wrapper"),n=e(this).closest(".yith-single-colorpicker"),a=i.find(".wp-picker-input-wrap"),l=n.find(".wp-picker-input-wrap");if(a.length&&i.find("a.wp-color-result").attr("title",t),n.length&&n.find("a.wp-color-result").attr("title",t),!a.find(".wp-picker-default-custom").length){var o=e("<span/>").attr({"class":"wp-picker-default-custom"});a.find(".wp-picker-default").wrap(o)}l.find(".wp-picker-default-custom").length||(o=e("<span/>").attr({"class":"wp-picker-default-custom"}),l.find(".wp-picker-default").wrap(o))}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(n.imgUrl.change(function(){var t=e(this).val(),i=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)"),a=e(this).parent().find(n.imgPreviewHandler).first();a.length<1&&(a=e(this).parent().parent().find(n.imgPreviewHandler).first()),i.test(t)?a.html('<img src="'+t+'" style="max-width:100px; max-height:100px;" />'):a.html("")}).trigger("change"),e(document).on("click",n.uploadButtonHandler,function(t){t.preventDefault();var i,a=e(this).attr("id").replace(/-button$/,"").replace(/(\[|\])/g,"\\$1");if(i)i.open();else{var l=[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:l})).on("select",function(){var t=i.state().get("selection").first().toJSON();e("#"+a).val(t.url),e("#"+a+"-yith-attachment-id")&&e("#"+a+"-yith-attachment-id").val(t.id),n.imgUrl.trigger("change")}),i.open()}}),e(document).on("click",n.resetButtonHandler,function(t){var i=e(this),a=i.attr("id").replace(/(\[|\])/g,"\\$1"),l=i.attr("id").replace(/-button-reset$/,"").replace(/(\[|\])/g,"\\$1"),o=e("#"+a).data("default");e("#"+l).val(o),n.imgUrl.trigger("change")}));a.on("click",function(){}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(e(document).on("click",l.buttonSelector,function(t){var i=e(this),n=i.closest(l.rootSelector),a=n.find(".image_gallery_ids"),o=a.val(),s=n.find("ul.slides-wrapper"),r=wp.media.frames.image_gallery=wp.media({title:i.data("choose"),button:{text:i.data("update")},states:[new wp.media.controller.Library({title:i.data("choose"),filterable:"all",multiple:!0})]});r.on("select",function(){r.state().get("selection").map(function(e){(e=e.toJSON()).id&&(o=o?o+","+e.id:e.id,s.append('<li class="image" data-attachment_id="'+e.id+'"><img src="'+e.sizes.thumbnail.url+'"/><ul class="actions"><li><a href="#" class="delete" title="'+i.data("delete")+'">x</a></li></ul></li>'))}),a.val(o),a.trigger("change")}),r.open()}),l.sliderWrapper.each(function(){var t=e(this);t.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(i,n){var a="";t.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");a=a+t+","}),t.closest(l.rootSelector).find(".image_gallery_ids").val(a)}})}),l.sliderWrapper.on("click","a.delete",function(t){t.preventDefault();var i=e(this).closest(l.rootSelector),n=i.find("ul.slides-wrapper"),a=i.find(".image_gallery_ids"),o="";e(this).closest("li.image").remove(),n.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");o=o+t+","}),a.val(o)})),o.each(function(){e(this).find("img").on("click",function(){var t=e(this).closest(".yith-plugin-fw-sidebar-layout"),i=t.find(".yith-plugin-fw-sidebar-layout-sidebar-left-container"),n=t.find(".yith-plugin-fw-sidebar-layout-sidebar-right-container"),a=e(this).data("type");if(e(this).parent().children(":radio").attr("checked",!1),e(this).prev(":radio").attr("checked",!0),void 0!==a)switch(a){case"left":i.show(),n.hide();break;case"right":n.show(),i.hide();break;case"double":i.show(),n.show();break;default:i.hide(),n.hide()}})}),s.each(function(){var t=e(this).data("val"),i=e(this).data("min"),n=e(this).data("max"),a=e(this).data("step"),l=e(this).data("labels");e(this).slider({value:t,min:i,max:n,range:"min",step:a,create:function(){e(this).find(".ui-slider-handle").text(e(this).slider("value"))},slide:function(t,i){e(this).find("input").val(i.value).trigger("change"),e(this).find(".ui-slider-handle").text(i.value),e(this).siblings(".feedback").find("strong").text(i.value+l)}})}),e(function(){e(document).on("yith-plugin-fw-codemirror-init",function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.codeEditor&&e(".codemirror:not(.codemirror--initialized)").each(function(){var t=e(this).data("settings"),i=wp.codeEditor.initialize(e(this),t);e(this).addClass("codemirror--initialized"),e(this).data("codemirrorInstance",i)})}).trigger("yith-plugin-fw-codemirror-init")}),e(document).on("click",".yith-plugin-fw-select-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!0).trigger("change")}),e(document).on("click",".yith-plugin-fw-deselect-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!1).trigger("change")}),r.each(function(){var t=e(this),i=t.find(".yit-icons-manager-icon-preview").first(),n=t.find(".yit-icons-manager-icon-text");t.on("click",".yit-icons-manager-list li",function(a){var l=e(a.target).closest("li"),o=l.data("font"),s=l.data("icon"),r=l.data("key"),c=l.data("name");i.attr("data-font",o),i.attr("data-icon",s),i.attr("data-key",r),i.attr("data-name",c),n.val(o+":"+c),t.find(".yit-icons-manager-list li").removeClass("active"),l.addClass("active")}),t.on("click",".yit-icons-manager-action-set-default",function(){t.find(".yit-icons-manager-list li.default").trigger("click")})}),e(document).on("click",".yith-plugin-fw-select-images__item",function(){var t=e(this),i=t.data("key"),n=t.closest(".yith-plugin-fw-select-images__wrapper"),a=n.find(".yith-plugin-fw-select-images__item"),l=n.find("select").first();l.length&&(l.val(i).trigger("yith_select_images_value_changed").trigger("change"),a.removeClass("yith-plugin-fw-select-images__item--selected"),t.addClass("yith-plugin-fw-select-images__item--selected"))}),e(document.body).trigger("wc-enhanced-select-init"),e(document).find(".ui-sortable .yith-toggle-elements").sortable({cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",stop:function(t,i){var n=jQuery(".ui-sortable-handle"),a=0,l=new Array;for(a=0;a<n.length;a++)l[a]=e(n[a]).data("item_key");l.length>0&&e(this).closest(".toggle-element").saveToggleElement(null,l)}}),e(document.body).trigger("yith-framework-enhanced-select-init")}).trigger("yith_fields_init"),e(document).on("click",".yith-plugin-fw-onoff-container span",function(){var t=e(this).prev("input");t.prop("disabled")||t.trigger("click")}),e(document).on("click",".yith-plugin-fw-onoff-container input",function(t){e(this).is(":checked")?e(this).attr("value","yes").addClass("onoffchecked"):e(this).attr("value","no").removeClass("onoffchecked"),e(this).trigger("change")}),e.fn.saveToggleElement=function(t,i){var n=e(this),a="yith_plugin_fw_save_toggle_element",l=n.serializeToggleElement(),o=n.find(".yith-toggle_wrapper"),s=o.attr("id"),r=e.urlParam("tab");l.append("security",o.data("nonce")),void 0!==i&&i.length>0&&l.append("yith_toggle_elements_order_keys",i),n.closest(".metaboxes-tab.yith-plugin-ui").length?(a="yith_plugin_fw_save_toggle_element_metabox",post_id=e(this).closest("form#post").find("#post_ID").val(),yit_metaboxes_nonce=e(this).closest("form#post").find("#yit_metaboxes_nonce").val(),metabox_tab=e(this).closest(".tabs-panel").attr("id"),url=yith_framework_fw_fields.ajax_url+"?action="+a+"&post_ID="+post_id+"&yit_metaboxes_nonce="+yit_metaboxes_nonce+"&toggle_id="+s+"&metabox_tab="+metabox_tab):url=yith_framework_fw_fields.admin_url+"?action="+a+"&tab="+r+"&toggle_id="+s,e.ajax({type:"POST",url:url,data:l,contentType:!1,processData:!1,success:function(i){t&&t.removeClass("show"),e(document).trigger("yith_save_toggle_element_done",[i,n])}})},e.fn.serializeToggleElement=function(){var t=e(this),i=new FormData,n=e(t).find(":input").serializeArray();return e.each(n,function(e,t){el_name=t.name,i.append(t.name,t.value)}),i},e.fn.formatToggleTitle=function(){var t=e(this),i=t.find(":input"),n=t.find("span.title").data("title_format"),a=t.find(".subtitle").data("subtitle_format"),l=new RegExp("[^%%]+(?=[%%])","g");if(void 0!==n)var o=n.match(l);if(void 0!==a)var s=a.match(l);e.each(i,function(t,i){void 0!==e(i).attr("id")&&($field_id=e(i).attr("id"),$field_array=$field_id.split("_"),$field_array.pop(),$field_id=$field_array.join("_"),$field_val=e(i).val(),null!=o&&void 0!==o&&-1!==o.indexOf($field_id)&&(n=n.replace("%%"+$field_id+"%%",$field_val)),null!=s&&void 0!==s&&-1!==s.indexOf($field_id)&&(a=a.replace("%%"+$field_id+"%%",$field_val)))}),""!==n&&t.find("span.title").html(n),""!==a&&t.find(".subtitle").html(a),e(document).trigger("yith-toggle-element-item-title",[t])},e.urlParam=function(e){var t=new RegExp("[?&]"+e+"=([^&#]*)").exec(window.location.search);return null!==t&&(t[1]||0)},e(document).on("click",".yith-toggle-title",function(t){var i=e(t.target),n=i.closest(".yith-toggle-row"),a=n.find(".yith-toggle-content");if(i.hasClass("yith-plugin-fw-onoff")||i.hasClass("yith-icon-drag"))return!1;n.is(".yith-toggle-row-opened")?a.slideUp(400):a.slideDown(400),n.toggleClass("yith-toggle-row-opened")}),e(document).on("click",".yith-add-box-button",function(t){t.preventDefault();var i=e(this),n=i.data("box_id"),a=i.data("closed_label"),l=i.data("opened_label"),o=i.closest(".yith-toggle_wrapper").attr("id"),s=wp.template("yith-toggle-element-add-box-content-"+o);""!==n&&(e("#"+n).html(s({index:"box_id"})).slideToggle(),""!==a&&(i.html()===a?i.html(l).removeClass("closed"):i.html(a).addClass("closed")),e(document).trigger("yith_fields_init"),e(document).trigger("yith-add-box-button-toggle",[i]))}),e(document).on("click",".yith-add-box-buttons .yith-save-button",function(t){t.preventDefault();var i=e(this).parents(".yith-add-box"),n=e(this).closest(".yith-toggle_wrapper").attr("id"),a=i.find(".spinner"),l=e(this).parents(".toggle-element"),o=i.find(":input"),s=0,r=e('<input type="hidden">');l.find(".yith-toggle-row").each(function(){var t=parseInt(e(this).data("item_key"));s<=t&&(s=t+1)}),r.val(s),e(document).trigger("yith-toggle-change-counter",[r,i]),s=r.val();var c=wp.template("yith-toggle-element-item-"+n),d=e(c({index:s}));a.addClass("show"),e.each(o,function(t,i){if(void 0!==e(i).attr("id")){var n=e(i).attr("id"),a=e(i).val();n="radio"===e(i).attr("type")?(n=(n=e(i).closest(".yith-plugin-fw-radio").attr("id")).replace("new_","")+"_"+s)+"-"+a:n.replace("new_","")+"_"+s,e(i).is(":checked")&&e(d).find("#"+n).prop("checked",!0),(e(i).hasClass("yith-post-search")||e(i).hasClass("yith-term-search"))&&e(d).find("#"+n).html(e("#"+e(i).attr("id")).html()),e(d).find("#"+n).val(a)}}),e(d).formatToggleTitle();var u=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-add",[i,d,u]);setTimeout(function(){if("yes"===u.val()){e(l).find(".yith-toggle-elements").append(d),e(i).find(".yith-plugin-fw-datepicker").datepicker("destroy"),e(i).html(""),e(i).prev(".yith-add-box-button").trigger("click"),l.saveToggleElement();setTimeout(function(){e(l).find(".highlight").removeClass("highlight")},2e3),e(document).trigger("yith_fields_init")}},1e3)}),e(document).on("click",".yith-toggle-row .yith-save-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element"),n=e(this).closest(".yith-toggle-row"),a=n.find(".spinner");n.formatToggleTitle();var l=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-update",[i,n,l]),"yes"===l.val()&&(a.addClass("show"),i.saveToggleElement(a))}),e(document).on("click",".yith-toggle-row .yith-delete-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element");e(this).closest(".yith-toggle-row").remove(),i.saveToggleElement()}),e(document).on("click",".yith-toggle-onoff",function(t){t.preventDefault(),e(this).closest(".toggle-element").saveToggleElement()}),e(document).on("click",".yith-plugin-fw-radio input[type=radio]",function(){var t=e(this).closest(".yith-plugin-fw-radio"),i=e(this).val();t.val(i).data("value",i).trigger("change")}),e(document.body).on("yith-plugin-fw-init-radio",function(){e(".yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)").each(function(){e(this).val(e(this).data("value")),e(this).addClass("yith-plugin-fw-radio--initialized")})}).trigger("yith-plugin-fw-init-radio"),e(document).on("click",".yith-password-eye",function(){var t=e(this),i=e(this).closest(".yith-password-wrapper").find("input");"password"===i.attr("type")?(i.attr("type","text"),t.addClass("yith-password-eye-closed")):(i.attr("type","password"),t.removeClass("yith-password-eye-closed"))}),e(document).on("select2:open",function(t){e(t.target).closest(".yith-plugin-ui").length&&e(".select2-results").closest(".select2-container").addClass("yith-plugin-fw-select2-container")});var t={selectors:{wrapper:".yith-plugin-fw-dimensions",units:{wrapper:".yith-plugin-fw-dimensions__units",single:".yith-plugin-fw-dimensions__unit",value:".yith-plugin-fw-dimensions__unit__value",selectedClass:"yith-plugin-fw-dimensions__unit--selected"},linked:{button:".yith-plugin-fw-dimensions__linked",value:".yith-plugin-fw-dimensions__linked__value",wrapperActiveClass:"yith-plugin-fw-dimensions--linked-active"},dimensions:{number:".yith-plugin-fw-dimensions__dimension__number"}},init:function(){var i=t;e(document).on("click",i.selectors.units.single,i.unitChange),e(document).on("click",i.selectors.linked.button,i.linkedChange),e(document).on("change keyup",i.selectors.dimensions.number,i.numberChange)},unitChange:function(i){var n=e(this).closest(t.selectors.units.single),a=n.closest(t.selectors.units.wrapper),l=a.find(t.selectors.units.single),o=a.find(t.selectors.units.value).first(),s=n.data("value");l.removeClass(t.selectors.units.selectedClass),n.addClass(t.selectors.units.selectedClass),o.val(s).trigger("change")},linkedChange:function(){var i=e(this).closest(t.selectors.linked.button),n=i.closest(t.selectors.wrapper),a=i.find(t.selectors.linked.value);"yes"===a.val()?(n.removeClass(t.selectors.linked.wrapperActiveClass),a.val("no")):(n.addClass(t.selectors.linked.wrapperActiveClass),a.val("yes"),n.find(t.selectors.dimensions.number).first().trigger("change"))},numberChange:function(i){var n=e(this).closest(t.selectors.dimensions.number),a=n.closest(t.selectors.wrapper);a.hasClass(t.selectors.linked.wrapperActiveClass)&&a.find(t.selectors.dimensions.number).val(n.val())}};t.init();e(document).on("click",".yith-plugin-fw-copy-to-clipboard__copy",function(){var t,i=e(this).closest(".yith-plugin-fw-copy-to-clipboard"),n=i.find(".yith-plugin-fw-copy-to-clipboard__field"),a=i.find(".yith-plugin-fw-copy-to-clipboard__tip"),l=i.data("tip-timeout");l&&clearTimeout(l),n.select(),document.execCommand("copy"),(t="getSelection"in window&&window.getSelection())?"empty"in t?t.empty():"removeAllRanges"in t&&t.removeAllRanges():"selection"in document&&document.selection.empty(),a.fadeIn(400),l=setTimeout(function(){a.fadeOut(400)},1500),i.data("tip-timeout",l)});var i={init:function(){e(document).on("click",".yith-plugin-fw__action-button--has-menu",i.open),e(document).on("click",".yith-plugin-fw__action-button__menu",i.stopPropagation),e(document).on("click",i.closeAll)},closeAll:function(){e(".yith-plugin-fw__action-button--opened").removeClass("yith-plugin-fw__action-button--opened")},open:function(t){var n=e(this).closest(".yith-plugin-fw__action-button"),a=n.hasClass("yith-plugin-fw__action-button--opened");t.preventDefault(),t.stopPropagation(),i.closeAll(),a||n.addClass("yith-plugin-fw__action-button--opened")},stopPropagation:function(e){e.stopPropagation()}};i.init(),e(document).on("click","a.yith-plugin-fw__require-confirmation-link",function(t){var i=e(this).closest("a.yith-plugin-fw__require-confirmation-link"),n=i.attr("href");if(n&&"#"!==n&&(t.preventDefault(),t.stopPropagation(),"yith"in window&&"ui"in yith)){var a,l=["title","message","confirmButtonType","cancelButton","confirmButton"],o={};for(a in l){var s=l[a],r=i.data(s);void 0!==r&&(o[s]=r)}o.onConfirm=function(){window.location.href=n},o.closeAfterConfirm=!1,yith.ui.confirm(o)}}),e(document).on("yith-plugin-fw-tips-init",function(){e(".yith-plugin-fw__tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})}).trigger("yith-plugin-fw-tips-init")}(jQuery);
|
1 |
+
!function(e){e(document).on("yith_fields_init",function(){var t=e(".yith-plugin-fw-datepicker"),i=e(".yith-plugin-fw-colorpicker"),n={imgPreviewHandler:".yith-plugin-fw-upload-img-preview",uploadButtonHandler:".yith-plugin-fw-upload-button",imgUrlHandler:".yith-plugin-fw-upload-img-url",resetButtonHandler:".yith-plugin-fw-upload-button-reset",imgUrl:e(".yith-plugin-fw-upload-img-url")},a=e(".add_media"),l={rootSelector:".yith-plugin-fw-image-gallery",buttonSelector:".yith-plugin-fw-image-gallery .image-gallery-button",sliderWrapper:e(".yith-plugin-fw-image-gallery ul.slides-wrapper")},o=e(".yith-plugin-fw-sidebar-layout"),s=e(".yith-plugin-fw-slider-container .ui-slider-horizontal"),r=e(".yit-icons-manager-wrapper");e(".yith-plugin-ui td.forminp-checkbox");t.each(function(){var t=e(this),i=t.data(),n=t.next(".yith-icon-calendar");i.showAnim=!1,i.beforeShow=function(e,t){t.dpDiv.addClass("yith-plugin-fw-datepicker-div")},i.onClose=function(e,t){t.dpDiv.removeClass("yith-plugin-fw-datepicker-div")},t.datepicker(i),n&&n.on("click",function(){t.datepicker("show")})}),i.wpColorPicker({palettes:!1,width:200,mode:"hsl",clear:function(){var t=e(this);t.val(t.data("default-color")),t.change()}}),i.each(function(){var t=e(this).data("variations-label"),i=e(this).closest(".yith-plugin-fw-colorpicker-field-wrapper"),n=e(this).closest(".yith-single-colorpicker"),a=i.find(".wp-picker-input-wrap"),l=n.find(".wp-picker-input-wrap");if(a.length&&i.find("a.wp-color-result").attr("title",t),n.length&&n.find("a.wp-color-result").attr("title",t),!a.find(".wp-picker-default-custom").length){var o=e("<span/>").attr({"class":"wp-picker-default-custom"});a.find(".wp-picker-default").wrap(o)}l.find(".wp-picker-default-custom").length||(o=e("<span/>").attr({"class":"wp-picker-default-custom"}),l.find(".wp-picker-default").wrap(o))}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(n.imgUrl.change(function(){var t=e(this).val(),i=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)"),a=e(this).parent().find(n.imgPreviewHandler).first();a.length<1&&(a=e(this).parent().parent().find(n.imgPreviewHandler).first()),i.test(t)?a.html('<img src="'+t+'" style="max-width:100px; max-height:100px;" />'):a.html("")}).trigger("change"),e(document).on("click",n.uploadButtonHandler,function(t){t.preventDefault();var i,a=e(this).attr("id").replace(/-button$/,"").replace(/(\[|\])/g,"\\$1");if(i)i.open();else{var l=[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:l})).on("select",function(){var t=i.state().get("selection").first().toJSON();e("#"+a).val(t.url),e("#"+a+"-yith-attachment-id")&&e("#"+a+"-yith-attachment-id").val(t.id),n.imgUrl.trigger("change")}),i.open()}}),e(document).on("click",n.resetButtonHandler,function(t){var i=e(this),a=i.attr("id").replace(/(\[|\])/g,"\\$1"),l=i.attr("id").replace(/-button-reset$/,"").replace(/(\[|\])/g,"\\$1"),o=e("#"+a).data("default");e("#"+l).val(o),n.imgUrl.trigger("change")}));a.on("click",function(){}),"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(e(document).on("click",l.buttonSelector,function(t){var i=e(this),n=i.closest(l.rootSelector),a=n.find(".image_gallery_ids"),o=a.val(),s=n.find("ul.slides-wrapper"),r=wp.media.frames.image_gallery=wp.media({title:i.data("choose"),button:{text:i.data("update")},states:[new wp.media.controller.Library({title:i.data("choose"),filterable:"all",multiple:!0})]});r.on("select",function(){r.state().get("selection").map(function(e){(e=e.toJSON()).id&&(o=o?o+","+e.id:e.id,s.append('<li class="image" data-attachment_id="'+e.id+'"><img src="'+e.sizes.thumbnail.url+'"/><ul class="actions"><li><a href="#" class="delete" title="'+i.data("delete")+'">x</a></li></ul></li>'))}),a.val(o),a.trigger("change")}),r.open()}),l.sliderWrapper.each(function(){var t=e(this);t.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(i,n){var a="";t.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");a=a+t+","}),t.closest(l.rootSelector).find(".image_gallery_ids").val(a)}})}),l.sliderWrapper.on("click","a.delete",function(t){t.preventDefault();var i=e(this).closest(l.rootSelector),n=i.find("ul.slides-wrapper"),a=i.find(".image_gallery_ids"),o="";e(this).closest("li.image").remove(),n.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");o=o+t+","}),a.val(o)})),o.each(function(){e(this).find("img").on("click",function(){var t=e(this).closest(".yith-plugin-fw-sidebar-layout"),i=t.find(".yith-plugin-fw-sidebar-layout-sidebar-left-container"),n=t.find(".yith-plugin-fw-sidebar-layout-sidebar-right-container"),a=e(this).data("type");if(e(this).parent().children(":radio").attr("checked",!1),e(this).prev(":radio").attr("checked",!0),void 0!==a)switch(a){case"left":i.show(),n.hide();break;case"right":n.show(),i.hide();break;case"double":i.show(),n.show();break;default:i.hide(),n.hide()}})}),s.each(function(){var t=e(this).data("val"),i=e(this).data("min"),n=e(this).data("max"),a=e(this).data("step"),l=e(this).data("labels");e(this).slider({value:t,min:i,max:n,range:"min",step:a,create:function(){e(this).find(".ui-slider-handle").text(e(this).slider("value"))},slide:function(t,i){e(this).find("input").val(i.value).trigger("change"),e(this).find(".ui-slider-handle").text(i.value),e(this).siblings(".feedback").find("strong").text(i.value+l)}})}),e(function(){e(document).on("yith-plugin-fw-codemirror-init",function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.codeEditor&&e(".codemirror:not(.codemirror--initialized)").each(function(){var t=e(this).data("settings"),i=wp.codeEditor.initialize(e(this),t);e(this).addClass("codemirror--initialized"),e(this).data("codemirrorInstance",i)})}).trigger("yith-plugin-fw-codemirror-init")}),e(document).on("click",".yith-plugin-fw-select-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!0).trigger("change")}),e(document).on("click",".yith-plugin-fw-deselect-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!1).trigger("change")}),r.each(function(){var t=e(this),i=t.find(".yit-icons-manager-icon-preview").first(),n=t.find(".yit-icons-manager-icon-text");t.on("click",".yit-icons-manager-list li",function(a){var l=e(a.target).closest("li"),o=l.data("font"),s=l.data("icon"),r=l.data("key"),c=l.data("name");i.attr("data-font",o),i.attr("data-icon",s),i.attr("data-key",r),i.attr("data-name",c),n.val(o+":"+c),t.find(".yit-icons-manager-list li").removeClass("active"),l.addClass("active")}),t.on("click",".yit-icons-manager-action-set-default",function(){t.find(".yit-icons-manager-list li.default").trigger("click")})}),e(document).on("click",".yith-plugin-fw-select-images__item",function(){var t=e(this),i=t.data("key"),n=t.closest(".yith-plugin-fw-select-images__wrapper"),a=n.find(".yith-plugin-fw-select-images__item"),l=n.find("select").first();l.length&&(l.val(i).trigger("yith_select_images_value_changed").trigger("change"),a.removeClass("yith-plugin-fw-select-images__item--selected"),t.addClass("yith-plugin-fw-select-images__item--selected"))}),e(document.body).trigger("wc-enhanced-select-init"),e(document).find(".ui-sortable .yith-toggle-elements").sortable({cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",stop:function(t,i){var n=jQuery(".ui-sortable-handle"),a=0,l=new Array;for(a=0;a<n.length;a++)l[a]=e(n[a]).data("item_key");l.length>0&&e(this).closest(".toggle-element").saveToggleElement(null,l)}}),e(document.body).trigger("yith-framework-enhanced-select-init")}).trigger("yith_fields_init"),e(document).on("click",".yith-plugin-fw-onoff-container span",function(){var t=e(this).prev("input");t.prop("disabled")||t.trigger("click")}),e(document).on("click",".yith-plugin-fw-onoff-container input",function(t){e(this).is(":checked")?e(this).attr("value","yes").addClass("onoffchecked"):e(this).attr("value","no").removeClass("onoffchecked"),e(this).trigger("change")}),e.fn.saveToggleElement=function(t,i){var n=e(this),a="yith_plugin_fw_save_toggle_element",l=n.serializeToggleElement(),o=n.find(".yith-toggle_wrapper"),s=o.attr("id"),r=e.urlParam("tab");l.append("security",o.data("nonce")),void 0!==i&&i.length>0&&l.append("yith_toggle_elements_order_keys",i),n.closest(".metaboxes-tab.yith-plugin-ui").length?(a="yith_plugin_fw_save_toggle_element_metabox",post_id=e(this).closest("form#post").find("#post_ID").val(),yit_metaboxes_nonce=e(this).closest("form#post").find("#yit_metaboxes_nonce").val(),metabox_tab=e(this).closest(".tabs-panel").attr("id"),url=yith_framework_fw_fields.ajax_url+"?action="+a+"&post_ID="+post_id+"&yit_metaboxes_nonce="+yit_metaboxes_nonce+"&toggle_id="+s+"&metabox_tab="+metabox_tab):url=yith_framework_fw_fields.admin_url+"?action="+a+"&tab="+r+"&toggle_id="+s,e.ajax({type:"POST",url:url,data:l,contentType:!1,processData:!1,success:function(i){t&&t.removeClass("show"),e(document).trigger("yith_save_toggle_element_done",[i,n])}})},e.fn.serializeToggleElement=function(){var t=e(this),i=new FormData,n=e(t).find(":input").serializeArray();return e.each(n,function(e,t){el_name=t.name,i.append(t.name,t.value)}),i},e.fn.formatToggleTitle=function(){var t=e(this),i=t.find(":input"),n=t.find("span.title").data("title_format"),a=t.find(".subtitle").data("subtitle_format"),l=new RegExp("[^%%]+(?=[%%])","g");if(void 0!==n)var o=n.match(l);if(void 0!==a)var s=a.match(l);e.each(i,function(t,i){void 0!==e(i).attr("id")&&($field_id=e(i).attr("id"),$field_array=$field_id.split("_"),$field_array.pop(),$field_id=$field_array.join("_"),$field_val=e(i).val(),null!=o&&void 0!==o&&-1!==o.indexOf($field_id)&&(n=n.replace("%%"+$field_id+"%%",$field_val)),null!=s&&void 0!==s&&-1!==s.indexOf($field_id)&&(a=a.replace("%%"+$field_id+"%%",$field_val)))}),""!==n&&t.find("span.title").html(n),""!==a&&t.find(".subtitle").html(a),e(document).trigger("yith-toggle-element-item-title",[t])},e.urlParam=function(e){var t=new RegExp("[?&]"+e+"=([^&#]*)").exec(window.location.search);return null!==t&&(t[1]||0)},e(document).on("click",".yith-toggle-title",function(t){var i=e(t.target),n=i.closest(".yith-toggle-row"),a=n.find(".yith-toggle-content");if(i.hasClass("yith-plugin-fw-onoff")||i.hasClass("yith-icon-drag"))return!1;n.is(".yith-toggle-row-opened")?a.slideUp(400):a.slideDown(400),n.toggleClass("yith-toggle-row-opened")}),e(document).on("click",".yith-add-box-button",function(t){t.preventDefault();var i=e(this),n=i.data("box_id"),a=i.data("closed_label"),l=i.data("opened_label"),o=i.closest(".yith-toggle_wrapper").attr("id"),s=wp.template("yith-toggle-element-add-box-content-"+o);""!==n&&(e("#"+n).html(s({index:"box_id"})).slideToggle(),""!==a&&(i.html()===a?i.html(l).removeClass("closed"):i.html(a).addClass("closed")),e(document).trigger("yith_fields_init"),e(document).trigger("yith-add-box-button-toggle",[i]))}),e(document).on("click",".yith-add-box-buttons .yith-save-button",function(t){t.preventDefault();var i=e(this).parents(".yith-add-box"),n=e(this).closest(".yith-toggle_wrapper").attr("id"),a=i.find(".spinner"),l=e(this).parents(".toggle-element"),o=i.find(":input"),s=0,r=e('<input type="hidden">');l.find(".yith-toggle-row").each(function(){var t=parseInt(e(this).data("item_key"));s<=t&&(s=t+1)}),r.val(s),e(document).trigger("yith-toggle-change-counter",[r,i]),s=r.val();var c=wp.template("yith-toggle-element-item-"+n),d=e(c({index:s}));a.addClass("show"),e.each(o,function(t,i){if(void 0!==e(i).attr("id")){var n=e(i).attr("id"),a=e(i).val();n="radio"===e(i).attr("type")?(n=(n=e(i).closest(".yith-plugin-fw-radio").attr("id")).replace("new_","")+"_"+s)+"-"+a:n.replace("new_","")+"_"+s,e(i).is(":checked")&&e(d).find("#"+n).prop("checked",!0),(e(i).hasClass("yith-post-search")||e(i).hasClass("yith-term-search"))&&e(d).find("#"+n).html(e("#"+e(i).attr("id")).html()),e(d).find("#"+n).val(a)}}),e(d).formatToggleTitle();var u=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-add",[i,d,u]);setTimeout(function(){if("yes"===u.val()){e(l).find(".yith-toggle-elements").append(d),e(i).find(".yith-plugin-fw-datepicker").datepicker("destroy"),e(i).html(""),e(i).prev(".yith-add-box-button").trigger("click"),l.saveToggleElement();setTimeout(function(){e(l).find(".highlight").removeClass("highlight")},2e3),e(document).trigger("yith_fields_init")}},1e3)}),e(document).on("click",".yith-toggle-row .yith-save-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element"),n=e(this).closest(".yith-toggle-row"),a=n.find(".spinner");n.formatToggleTitle();var l=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-update",[i,n,l]),"yes"===l.val()&&(a.addClass("show"),i.saveToggleElement(a))}),e(document).on("click",".yith-toggle-row .yith-delete-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element");e(this).closest(".yith-toggle-row").remove(),i.saveToggleElement()}),e(document).on("click",".yith-toggle-onoff",function(t){t.preventDefault(),e(this).closest(".toggle-element").saveToggleElement()}),e(document).on("click",".yith-plugin-fw-radio input[type=radio]",function(){var t=e(this).closest(".yith-plugin-fw-radio"),i=e(this).val();t.val(i).data("value",i).trigger("change")}),e(document.body).on("yith-plugin-fw-init-radio",function(){e(".yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)").each(function(){e(this).find('input[type="radio"]').filter('[value="'+e(this).data("value")+'"]').click(),e(this).addClass("yith-plugin-fw-radio--initialized")})}).trigger("yith-plugin-fw-init-radio"),e(document).on("click",".yith-password-eye",function(){var t=e(this),i=e(this).closest(".yith-password-wrapper").find("input");"password"===i.attr("type")?(i.attr("type","text"),t.addClass("yith-password-eye-closed")):(i.attr("type","password"),t.removeClass("yith-password-eye-closed"))}),e(document).on("select2:open",function(t){e(t.target).closest(".yith-plugin-ui").length&&e(".select2-results").closest(".select2-container").addClass("yith-plugin-fw-select2-container")});var t={selectors:{wrapper:".yith-plugin-fw-dimensions",units:{wrapper:".yith-plugin-fw-dimensions__units",single:".yith-plugin-fw-dimensions__unit",value:".yith-plugin-fw-dimensions__unit__value",selectedClass:"yith-plugin-fw-dimensions__unit--selected"},linked:{button:".yith-plugin-fw-dimensions__linked",value:".yith-plugin-fw-dimensions__linked__value",wrapperActiveClass:"yith-plugin-fw-dimensions--linked-active"},dimensions:{number:".yith-plugin-fw-dimensions__dimension__number"}},init:function(){var i=t;e(document).on("click",i.selectors.units.single,i.unitChange),e(document).on("click",i.selectors.linked.button,i.linkedChange),e(document).on("change keyup",i.selectors.dimensions.number,i.numberChange)},unitChange:function(i){var n=e(this).closest(t.selectors.units.single),a=n.closest(t.selectors.units.wrapper),l=a.find(t.selectors.units.single),o=a.find(t.selectors.units.value).first(),s=n.data("value");l.removeClass(t.selectors.units.selectedClass),n.addClass(t.selectors.units.selectedClass),o.val(s).trigger("change")},linkedChange:function(){var i=e(this).closest(t.selectors.linked.button),n=i.closest(t.selectors.wrapper),a=i.find(t.selectors.linked.value);"yes"===a.val()?(n.removeClass(t.selectors.linked.wrapperActiveClass),a.val("no")):(n.addClass(t.selectors.linked.wrapperActiveClass),a.val("yes"),n.find(t.selectors.dimensions.number).first().trigger("change"))},numberChange:function(i){var n=e(this).closest(t.selectors.dimensions.number),a=n.closest(t.selectors.wrapper);a.hasClass(t.selectors.linked.wrapperActiveClass)&&a.find(t.selectors.dimensions.number).val(n.val())}};t.init();e(document).on("click",".yith-plugin-fw-copy-to-clipboard__copy",function(){var t,i=e(this).closest(".yith-plugin-fw-copy-to-clipboard"),n=i.find(".yith-plugin-fw-copy-to-clipboard__field"),a=i.find(".yith-plugin-fw-copy-to-clipboard__tip"),l=i.data("tip-timeout");l&&clearTimeout(l),n.select(),document.execCommand("copy"),(t="getSelection"in window&&window.getSelection())?"empty"in t?t.empty():"removeAllRanges"in t&&t.removeAllRanges():"selection"in document&&document.selection.empty(),a.fadeIn(400),l=setTimeout(function(){a.fadeOut(400)},1500),i.data("tip-timeout",l)});var i={init:function(){e(document).on("click",".yith-plugin-fw__action-button--has-menu",i.open),e(document).on("click",".yith-plugin-fw__action-button__menu",i.stopPropagation),e(document).on("click",i.closeAll)},closeAll:function(){e(".yith-plugin-fw__action-button--opened").removeClass("yith-plugin-fw__action-button--opened")},open:function(t){var n=e(this).closest(".yith-plugin-fw__action-button"),a=n.hasClass("yith-plugin-fw__action-button--opened");t.preventDefault(),t.stopPropagation(),i.closeAll(),a||n.addClass("yith-plugin-fw__action-button--opened")},stopPropagation:function(e){e.stopPropagation()}};i.init(),e(document).on("click","a.yith-plugin-fw__require-confirmation-link",function(t){var i=e(this).closest("a.yith-plugin-fw__require-confirmation-link"),n=i.attr("href");if(n&&"#"!==n&&(t.preventDefault(),t.stopPropagation(),"yith"in window&&"ui"in yith)){var a,l=["title","message","confirmButtonType","cancelButton","confirmButton"],o={};for(a in l){var s=l[a],r=i.data(s);void 0!==r&&(o[s]=r)}o.onConfirm=function(){window.location.href=n},o.closeAfterConfirm=!1,yith.ui.confirm(o)}}),e(document).on("yith-plugin-fw-tips-init",function(){e(".yith-plugin-fw__tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})}).trigger("yith-plugin-fw-tips-init")}(jQuery);
|
plugin-fw/assets/js/yith-ui.js
CHANGED
@@ -32,6 +32,7 @@ window.yith = window.yith || {};
|
|
32 |
var defaults = {
|
33 |
title : false,
|
34 |
message : false,
|
|
|
35 |
onConfirm : false,
|
36 |
onCancel : false,
|
37 |
onClose : false,
|
@@ -111,6 +112,7 @@ window.yith = window.yith || {};
|
|
111 |
allowWpMenu : options.allowWpMenu,
|
112 |
allowWpMenuInMobile : options.allowWpMenuInMobile,
|
113 |
showClose : options.showClose,
|
|
|
114 |
onClose : options.onClose,
|
115 |
closeWhenClickingOnOverlay: options.closeWhenClickingOnOverlay
|
116 |
}
|
@@ -170,6 +172,7 @@ window.yith = window.yith || {};
|
|
170 |
allowClosingWithEsc : true,
|
171 |
closeWhenClickingOnOverlay: false,
|
172 |
scrollContent : true,
|
|
|
173 |
onClose : false
|
174 |
},
|
175 |
self = {};
|
@@ -273,7 +276,9 @@ window.yith = window.yith || {};
|
|
273 |
container.addClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );
|
274 |
}
|
275 |
|
276 |
-
|
|
|
|
|
277 |
},
|
278 |
initEvents = function () {
|
279 |
dom.close.on( 'click', handleClose );
|
@@ -292,7 +297,7 @@ window.yith = window.yith || {};
|
|
292 |
if ( options.allowClosingWithEsc && event.keyCode === 27 ) {
|
293 |
handleClose();
|
294 |
}
|
295 |
-
}
|
296 |
|
297 |
initialize();
|
298 |
|
@@ -300,7 +305,6 @@ window.yith = window.yith || {};
|
|
300 |
self.close = handleClose;
|
301 |
|
302 |
return self;
|
303 |
-
|
304 |
-
}
|
305 |
|
306 |
} )( window.jQuery, window.yith );
|
32 |
var defaults = {
|
33 |
title : false,
|
34 |
message : false,
|
35 |
+
onCreate : false,
|
36 |
onConfirm : false,
|
37 |
onCancel : false,
|
38 |
onClose : false,
|
112 |
allowWpMenu : options.allowWpMenu,
|
113 |
allowWpMenuInMobile : options.allowWpMenuInMobile,
|
114 |
showClose : options.showClose,
|
115 |
+
onCreate : options.onCreate,
|
116 |
onClose : options.onClose,
|
117 |
closeWhenClickingOnOverlay: options.closeWhenClickingOnOverlay
|
118 |
}
|
172 |
allowClosingWithEsc : true,
|
173 |
closeWhenClickingOnOverlay: false,
|
174 |
scrollContent : true,
|
175 |
+
onCreate : false,
|
176 |
onClose : false
|
177 |
},
|
178 |
self = {};
|
276 |
container.addClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );
|
277 |
}
|
278 |
|
279 |
+
if ( typeof options.onCreate === 'function' ) {
|
280 |
+
options.onCreate();
|
281 |
+
}
|
282 |
},
|
283 |
initEvents = function () {
|
284 |
dom.close.on( 'click', handleClose );
|
297 |
if ( options.allowClosingWithEsc && event.keyCode === 27 ) {
|
298 |
handleClose();
|
299 |
}
|
300 |
+
};
|
301 |
|
302 |
initialize();
|
303 |
|
305 |
self.close = handleClose;
|
306 |
|
307 |
return self;
|
308 |
+
};
|
|
|
309 |
|
310 |
} )( window.jQuery, window.yith );
|
plugin-fw/assets/js/yith-ui.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.yith=window.yith||{},function(n,e){e.ui=e.ui||{};var o=function(n){if("string"==typeof n)return n;var e=[];for(var t of n)t&&e.indexOf(t)<0&&e.push(o(t));return e.join(" ")},t=function(n){n.stopPropagation()};e.ui.confirm=function(t){var l={title:!1,message:!1,onConfirm:!1,onCancel:!1,onClose:!1,classes:{wrap:"",content:"",title:"",message:"",footer:"",cancel:"",confirm:""},confirmButtonType:"confirm",cancelButton:yith_plugin_fw_ui.i18n.cancel,confirmButton:yith_plugin_fw_ui.i18n.confirm,width:350,closeAfterConfirm:!0,allowWpMenu:!1,allowWpMenuInMobile:!1,showClose:!0,closeWhenClickingOnOverlay:!1},i={};t=void 0!==t?t:{},(t=n.extend({},l,t)).classes=n.extend({},l.classes,t.classes);var s={wrap:o(["yith-plugin-fw__confirm__wrap",t.classes.wrap]),content:o(["yith-plugin-fw__confirm__content",t.classes.content]),title:o(["yith-plugin-fw__confirm__title",t.classes.title]),message:o(["yith-plugin-fw__confirm__message",t.classes.message]),footer:o(["yith-plugin-fw__confirm__footer",t.classes.footer]),cancel:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--cancel",t.classes.cancel]),confirm:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--"+t.confirmButtonType,t.classes.confirm])},c={message:!1,footer:!1,cancel:!1,confirm:!1},a=!1,r=function(){a&&a.close(),a=!1},f=function(){"function"==typeof t.onCancel&&t.onCancel(),r()},p=function(){"function"==typeof t.onConfirm&&t.onConfirm(),t.closeAfterConfirm&&r()},m=function(){c.cancel.on("click",f),c.confirm.on("click",p)};(function(){c.message=n('<div class="'+s.message+'">'),c.footer=n('<div class="'+s.footer+'">'),c.cancel=n('<span class="'+s.cancel+'">'+t.cancelButton+"</span>"),c.confirm=n('<span class="'+s.confirm+'">'+t.confirmButton+"</span>"),t.message&&c.message.html(t.message),c.footer.append(c.cancel),c.footer.append(c.confirm),a=e.ui.modal({classes:{wrap:s.wrap,title:s.title,content:s.content},title:t.title,content:[c.message,c.footer],width:t.width,allowWpMenu:t.allowWpMenu,allowWpMenuInMobile:t.allowWpMenuInMobile,showClose:t.showClose,onClose:t.onClose,closeWhenClickingOnOverlay:t.closeWhenClickingOnOverlay})})(),m(),i.elements=n.extend({},c),i.modal=n.extend({},a),i.close=r,i.cancel=f},e.ui.modal=function(e){var l={allowWpMenu:!0,allowWpMenuInMobile:!1,title:!1,content:!1,footer:!1,showClose:!0,closeSelector:!1,classes:{wrap:"",main:"",close:"",title:"",content:"",footer:""},width:500,allowClosingWithEsc:!0,closeWhenClickingOnOverlay:!1,scrollContent:!0,onClose:!1},i={};e=void 0!==e?e:{},(e=n.extend({},l,e)).classes=n.extend({},l.classes,e.classes);var s=n("#wpwrap"),c={wrap:["yith-plugin-ui","yith-plugin-fw__modal__wrap",e.classes.wrap],main:["yith-plugin-fw__modal__main",e.classes.main],close:["yith-plugin-fw__modal__close","yith-icon","yith-icon-close",e.classes.close],title:["yith-plugin-fw__modal__title",e.classes.title],content:["yith-plugin-fw__modal__content",e.classes.content],footer:["yith-plugin-fw__modal__footer",e.classes.footer]},a={wrap:!1,main:!1,close:!1,title:!1,content:!1,footer:!1},r=function(){n(".yith-plugin-fw__modal__wrap").remove(),s.removeClass("yith-plugin-fw__modal--opened"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onClose&&e.onClose()},f=function(){a.wrap=n('<div class="'+o(c.wrap)+'">'),a.main=n('<div class="'+o(c.main)+'">'),a.close=n('<span class="'+o(c.close)+'">'),a.title=n('<div class="'+o(c.title)+'">'),a.content=n('<div class="'+o(c.content)+'">'),a.footer=n('<div class="'+o(c.footer)+'">'),a.main.css({width:e.width}),e.title&&("string"==typeof e.title?a.title.html(e.title):a.title.append(e.title)),e.content&&("string"==typeof e.content?a.content.html(e.content):a.content.append(e.content)),e.showClose&&a.main.append(a.close),a.main.append(a.title),a.main.append(a.content),e.footer&&("string"==typeof e.footer?a.footer.html(e.footer):a.footer.append(e.footer),a.main.append(a.footer)),a.wrap.append(a.main),e.scrollContent&&a.wrap.addClass("yith-plugin-fw__modal__wrap--scroll-content"),s.append(a.wrap),s.addClass("yith-plugin-fw__modal--opened"),e.allowWpMenu&&s.addClass("yith-plugin-fw__modal--allow-wp-menu"),e.allowWpMenuInMobile&&s.addClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile")},p=function(){a.close.on("click",r),e.closeSelector&&s.on("click",e.closeSelector,r),e.closeWhenClickingOnOverlay&&(a.wrap.on("click",r),a.main.on("click",t)),n(document).on("keydown",m)},m=function(n){e.allowClosingWithEsc&&27===n.keyCode&&r()};return r(),f(),p(),i.elements=n.extend({},a),i.close=r,i}}(window.jQuery,window.yith);
|
1 |
+
window.yith=window.yith||{},function(n,e){e.ui=e.ui||{};var o=function(n){if("string"==typeof n)return n;var e=[];for(var t of n)t&&e.indexOf(t)<0&&e.push(o(t));return e.join(" ")},t=function(n){n.stopPropagation()};e.ui.confirm=function(t){var l={title:!1,message:!1,onCreate:!1,onConfirm:!1,onCancel:!1,onClose:!1,classes:{wrap:"",content:"",title:"",message:"",footer:"",cancel:"",confirm:""},confirmButtonType:"confirm",cancelButton:yith_plugin_fw_ui.i18n.cancel,confirmButton:yith_plugin_fw_ui.i18n.confirm,width:350,closeAfterConfirm:!0,allowWpMenu:!1,allowWpMenuInMobile:!1,showClose:!0,closeWhenClickingOnOverlay:!1},i={};t=void 0!==t?t:{},(t=n.extend({},l,t)).classes=n.extend({},l.classes,t.classes);var s={wrap:o(["yith-plugin-fw__confirm__wrap",t.classes.wrap]),content:o(["yith-plugin-fw__confirm__content",t.classes.content]),title:o(["yith-plugin-fw__confirm__title",t.classes.title]),message:o(["yith-plugin-fw__confirm__message",t.classes.message]),footer:o(["yith-plugin-fw__confirm__footer",t.classes.footer]),cancel:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--cancel",t.classes.cancel]),confirm:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--"+t.confirmButtonType,t.classes.confirm])},c={message:!1,footer:!1,cancel:!1,confirm:!1},a=!1,r=function(){a&&a.close(),a=!1},f=function(){"function"==typeof t.onCancel&&t.onCancel(),r()},p=function(){"function"==typeof t.onConfirm&&t.onConfirm(),t.closeAfterConfirm&&r()},m=function(){c.cancel.on("click",f),c.confirm.on("click",p)};(function(){c.message=n('<div class="'+s.message+'">'),c.footer=n('<div class="'+s.footer+'">'),c.cancel=n('<span class="'+s.cancel+'">'+t.cancelButton+"</span>"),c.confirm=n('<span class="'+s.confirm+'">'+t.confirmButton+"</span>"),t.message&&c.message.html(t.message),c.footer.append(c.cancel),c.footer.append(c.confirm),a=e.ui.modal({classes:{wrap:s.wrap,title:s.title,content:s.content},title:t.title,content:[c.message,c.footer],width:t.width,allowWpMenu:t.allowWpMenu,allowWpMenuInMobile:t.allowWpMenuInMobile,showClose:t.showClose,onCreate:t.onCreate,onClose:t.onClose,closeWhenClickingOnOverlay:t.closeWhenClickingOnOverlay})})(),m(),i.elements=n.extend({},c),i.modal=n.extend({},a),i.close=r,i.cancel=f},e.ui.modal=function(e){var l={allowWpMenu:!0,allowWpMenuInMobile:!1,title:!1,content:!1,footer:!1,showClose:!0,closeSelector:!1,classes:{wrap:"",main:"",close:"",title:"",content:"",footer:""},width:500,allowClosingWithEsc:!0,closeWhenClickingOnOverlay:!1,scrollContent:!0,onCreate:!1,onClose:!1},i={};e=void 0!==e?e:{},(e=n.extend({},l,e)).classes=n.extend({},l.classes,e.classes);var s=n("#wpwrap"),c={wrap:["yith-plugin-ui","yith-plugin-fw__modal__wrap",e.classes.wrap],main:["yith-plugin-fw__modal__main",e.classes.main],close:["yith-plugin-fw__modal__close","yith-icon","yith-icon-close",e.classes.close],title:["yith-plugin-fw__modal__title",e.classes.title],content:["yith-plugin-fw__modal__content",e.classes.content],footer:["yith-plugin-fw__modal__footer",e.classes.footer]},a={wrap:!1,main:!1,close:!1,title:!1,content:!1,footer:!1},r=function(){n(".yith-plugin-fw__modal__wrap").remove(),s.removeClass("yith-plugin-fw__modal--opened"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onClose&&e.onClose()},f=function(){a.wrap=n('<div class="'+o(c.wrap)+'">'),a.main=n('<div class="'+o(c.main)+'">'),a.close=n('<span class="'+o(c.close)+'">'),a.title=n('<div class="'+o(c.title)+'">'),a.content=n('<div class="'+o(c.content)+'">'),a.footer=n('<div class="'+o(c.footer)+'">'),a.main.css({width:e.width}),e.title&&("string"==typeof e.title?a.title.html(e.title):a.title.append(e.title)),e.content&&("string"==typeof e.content?a.content.html(e.content):a.content.append(e.content)),e.showClose&&a.main.append(a.close),a.main.append(a.title),a.main.append(a.content),e.footer&&("string"==typeof e.footer?a.footer.html(e.footer):a.footer.append(e.footer),a.main.append(a.footer)),a.wrap.append(a.main),e.scrollContent&&a.wrap.addClass("yith-plugin-fw__modal__wrap--scroll-content"),s.append(a.wrap),s.addClass("yith-plugin-fw__modal--opened"),e.allowWpMenu&&s.addClass("yith-plugin-fw__modal--allow-wp-menu"),e.allowWpMenuInMobile&&s.addClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onCreate&&e.onCreate()},p=function(){a.close.on("click",r),e.closeSelector&&s.on("click",e.closeSelector,r),e.closeWhenClickingOnOverlay&&(a.wrap.on("click",r),a.main.on("click",t)),n(document).on("keydown",m)},m=function(n){e.allowClosingWithEsc&&27===n.keyCode&&r()};return r(),f(),p(),i.elements=n.extend({},a),i.close=r,i}}(window.jQuery,window.yith);
|
plugin-fw/includes/builders/elementor/class-yith-elementor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @class YITH_Elementor
|
6 |
* @package YITH\PluginFramework\Classes
|
7 |
-
* @since
|
8 |
*/
|
9 |
|
10 |
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
@@ -29,7 +29,7 @@ if ( ! class_exists( 'YITH_Elementor' ) ) {
|
|
29 |
*
|
30 |
* @var array
|
31 |
*/
|
32 |
-
private $widgets;
|
33 |
|
34 |
/**
|
35 |
* Singleton implementation.
|
@@ -45,7 +45,11 @@ if ( ! class_exists( 'YITH_Elementor' ) ) {
|
|
45 |
*/
|
46 |
private function __construct() {
|
47 |
if ( defined( 'ELEMENTOR_VERSION' ) && version_compare( ELEMENTOR_VERSION, '3.0.0', '>=' ) ) {
|
48 |
-
add_action( '
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
}
|
51 |
|
@@ -64,16 +68,10 @@ if ( ! class_exists( 'YITH_Elementor' ) ) {
|
|
64 |
|
65 |
/**
|
66 |
* Let's start with Elementor
|
|
|
|
|
67 |
*/
|
68 |
public function init() {
|
69 |
-
if ( $this->widgets ) {
|
70 |
-
$this->load_files();
|
71 |
-
add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) );
|
72 |
-
add_action( 'elementor/elements/categories_registered', array( $this, 'add_yith_category' ) );
|
73 |
-
|
74 |
-
add_action( 'elementor/editor/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
|
75 |
-
add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
|
76 |
-
}
|
77 |
}
|
78 |
|
79 |
/**
|
@@ -87,17 +85,22 @@ if ( ! class_exists( 'YITH_Elementor' ) ) {
|
|
87 |
* Register Elementor Widgets
|
88 |
*/
|
89 |
public function register_widgets() {
|
|
|
|
|
|
|
|
|
90 |
foreach ( $this->widgets as $widget ) {
|
91 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new YITH_Elementor_Widget( array(), array( 'yith_data' => $widget ) ) );
|
92 |
}
|
93 |
}
|
94 |
|
95 |
/**
|
96 |
-
* Add "YITH"
|
97 |
*
|
98 |
* @param Elementor\Elements_Manager $elements_manager Elements Manager.
|
99 |
*/
|
100 |
public function add_yith_category( $elements_manager ) {
|
|
|
101 |
$elements_manager->add_category(
|
102 |
'yith',
|
103 |
array(
|
@@ -112,9 +115,11 @@ if ( ! class_exists( 'YITH_Elementor' ) ) {
|
|
112 |
* Enqueue styles in elementor
|
113 |
*/
|
114 |
public function enqueue_styles() {
|
115 |
-
if (
|
116 |
-
|
117 |
-
|
|
|
|
|
118 |
}
|
119 |
}
|
120 |
}
|
4 |
*
|
5 |
* @class YITH_Elementor
|
6 |
* @package YITH\PluginFramework\Classes
|
7 |
+
* @since 3.6.0
|
8 |
*/
|
9 |
|
10 |
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
29 |
*
|
30 |
* @var array
|
31 |
*/
|
32 |
+
private $widgets = array();
|
33 |
|
34 |
/**
|
35 |
* Singleton implementation.
|
45 |
*/
|
46 |
private function __construct() {
|
47 |
if ( defined( 'ELEMENTOR_VERSION' ) && version_compare( ELEMENTOR_VERSION, '3.0.0', '>=' ) ) {
|
48 |
+
add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) );
|
49 |
+
add_action( 'elementor/elements/categories_registered', array( $this, 'add_yith_category' ) );
|
50 |
+
|
51 |
+
add_action( 'elementor/editor/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
|
52 |
+
add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
|
53 |
}
|
54 |
}
|
55 |
|
68 |
|
69 |
/**
|
70 |
* Let's start with Elementor
|
71 |
+
*
|
72 |
+
* @deprecated 3.7.2
|
73 |
*/
|
74 |
public function init() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
|
77 |
/**
|
85 |
* Register Elementor Widgets
|
86 |
*/
|
87 |
public function register_widgets() {
|
88 |
+
if ( $this->widgets ) {
|
89 |
+
$this->load_files();
|
90 |
+
}
|
91 |
+
|
92 |
foreach ( $this->widgets as $widget ) {
|
93 |
\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new YITH_Elementor_Widget( array(), array( 'yith_data' => $widget ) ) );
|
94 |
}
|
95 |
}
|
96 |
|
97 |
/**
|
98 |
+
* Add "YITH" category for Elementor widgets
|
99 |
*
|
100 |
* @param Elementor\Elements_Manager $elements_manager Elements Manager.
|
101 |
*/
|
102 |
public function add_yith_category( $elements_manager ) {
|
103 |
+
// If the category is empty, it'll be automatically hidden by Elementor.
|
104 |
$elements_manager->add_category(
|
105 |
'yith',
|
106 |
array(
|
115 |
* Enqueue styles in elementor
|
116 |
*/
|
117 |
public function enqueue_styles() {
|
118 |
+
if ( $this->widgets ) {
|
119 |
+
if ( \Elementor\Plugin::$instance->preview->is_preview_mode() || \Elementor\Plugin::$instance->editor->is_edit_mode() ) {
|
120 |
+
wp_enqueue_style( 'yith-plugin-fw-icon-font' );
|
121 |
+
wp_enqueue_style( 'yith-plugin-fw-elementor' );
|
122 |
+
}
|
123 |
}
|
124 |
}
|
125 |
}
|
plugin-fw/includes/class-yit-ajax.php
CHANGED
@@ -105,8 +105,16 @@ if ( ! class_exists( 'YIT_Ajax' ) ) {
|
|
105 |
if ( ! current_user_can( 'read_post', $post_id ) ) {
|
106 |
continue;
|
107 |
}
|
108 |
-
|
109 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
}
|
112 |
|
105 |
if ( ! current_user_can( 'read_post', $post_id ) ) {
|
106 |
continue;
|
107 |
}
|
108 |
+
|
109 |
+
$the_title = yith_plugin_fw_get_post_formatted_name(
|
110 |
+
$post_id,
|
111 |
+
array(
|
112 |
+
'post-type' => $args['post_type'],
|
113 |
+
'show-id' => $show_id,
|
114 |
+
)
|
115 |
+
);
|
116 |
+
|
117 |
+
$found_posts[ $post_id ] = apply_filters( 'yith_plugin_fw_json_search_found_post_title', rawurldecode( wp_strip_all_tags( $the_title ) ), $post_id, $request );
|
118 |
}
|
119 |
}
|
120 |
|
plugin-fw/includes/class-yit-assets.php
CHANGED
@@ -63,9 +63,11 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
|
|
63 |
* Register styles and scripts
|
64 |
*/
|
65 |
public function register_styles_and_scripts() {
|
66 |
-
global $wp_scripts, $woocommerce, $wp_version;
|
67 |
|
68 |
-
$
|
|
|
|
|
69 |
|
70 |
// Register scripts.
|
71 |
wp_register_script( 'yith-ui', YIT_CORE_PLUGIN_URL . '/assets/js/yith-ui' . $suffix . '.js', array( 'jquery' ), $this->version, true );
|
@@ -111,6 +113,7 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
|
|
111 |
'search_posts_nonce' => wp_create_nonce( 'search-posts' ),
|
112 |
'search_terms_nonce' => wp_create_nonce( 'search-terms' ),
|
113 |
'search_customers_nonce' => wp_create_nonce( 'search-customers' ),
|
|
|
114 |
)
|
115 |
);
|
116 |
|
@@ -134,6 +137,22 @@ if ( ! class_exists( 'YIT_Assets' ) ) {
|
|
134 |
)
|
135 |
);
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
// Localize color-picker to avoid issues with WordPress 5.5.
|
138 |
if ( version_compare( $wp_version, '5.5-RC', '>=' ) ) {
|
139 |
wp_localize_script(
|
63 |
* Register styles and scripts
|
64 |
*/
|
65 |
public function register_styles_and_scripts() {
|
66 |
+
global $wp_scripts, $woocommerce, $wp_version, $pagenow;
|
67 |
|
68 |
+
$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
|
69 |
+
$screen_id = $screen && is_a( $screen, 'WP_Screen' ) ? $screen->id : '';
|
70 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
71 |
|
72 |
// Register scripts.
|
73 |
wp_register_script( 'yith-ui', YIT_CORE_PLUGIN_URL . '/assets/js/yith-ui' . $suffix . '.js', array( 'jquery' ), $this->version, true );
|
113 |
'search_posts_nonce' => wp_create_nonce( 'search-posts' ),
|
114 |
'search_terms_nonce' => wp_create_nonce( 'search-terms' ),
|
115 |
'search_customers_nonce' => wp_create_nonce( 'search-customers' ),
|
116 |
+
'search_pages_nonce' => wp_create_nonce( 'search-pages' ),
|
117 |
)
|
118 |
);
|
119 |
|
137 |
)
|
138 |
);
|
139 |
|
140 |
+
wp_localize_script(
|
141 |
+
'yith-plugin-fw-wp-pages',
|
142 |
+
'yith_plugin_fw_wp_pages',
|
143 |
+
array(
|
144 |
+
'bulk_delete_confirmation_enabled' => ! ! apply_filters( "yith_plugin_fw_{$screen_id}_bulk_delete_confirmation_enabled", in_array( $pagenow, array( 'edit.php', 'edit-tags.php' ), true ) ),
|
145 |
+
'i18n' => array(
|
146 |
+
'bulk_trash_confirm_title' => __( 'Confirm trash', 'yith-plugin-fw' ),
|
147 |
+
'bulk_trash_confirm_message' => __( 'Are you sure you want to trash the selected items?', 'yith-plugin-fw' ),
|
148 |
+
'bulk_trash_confirm_button' => _x( 'Yes, move to trash', 'Trash confirmation action', 'yith-plugin-fw' ),
|
149 |
+
'bulk_delete_confirm_title' => __( 'Confirm delete', 'yith-plugin-fw' ),
|
150 |
+
'bulk_delete_confirm_message' => __( 'Are you sure you want to delete the selected items?', 'yith-plugin-fw' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
|
151 |
+
'bulk_delete_confirm_button' => _x( 'Yes, delete permanently', 'Delete confirmation action', 'yith-plugin-fw' ),
|
152 |
+
),
|
153 |
+
)
|
154 |
+
);
|
155 |
+
|
156 |
// Localize color-picker to avoid issues with WordPress 5.5.
|
157 |
if ( version_compare( $wp_version, '5.5-RC', '>=' ) ) {
|
158 |
wp_localize_script(
|
plugin-fw/includes/class-yit-help-desk.php
ADDED
@@ -0,0 +1,187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* YITH Help Desk static Class.
|
4 |
+
*
|
5 |
+
* @class YIT_Plugin_Panel
|
6 |
+
* @package YITH\PluginFramework\Classes
|
7 |
+
*/
|
8 |
+
|
9 |
+
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
10 |
+
|
11 |
+
if ( ! class_exists( 'YIT_Help_Desk' ) ) {
|
12 |
+
/**
|
13 |
+
* Class YIT_Help_Desk
|
14 |
+
*
|
15 |
+
* Contains static utilities for help desk integrations
|
16 |
+
*/
|
17 |
+
class YIT_Help_Desk {
|
18 |
+
|
19 |
+
/**
|
20 |
+
* URL to contact to query zendesk API
|
21 |
+
* It can be overridden, by defining YIT_HELP_CENTER_DEBUG_URL constant
|
22 |
+
*
|
23 |
+
* @const string API url.
|
24 |
+
*/
|
25 |
+
const PRODUCTION_URL = 'https://support.yithemes.com/api/v2/help_center/en-us/';
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Retrieves latest articles flagged with a give set of labels (and featured)
|
29 |
+
*
|
30 |
+
* @param array $labels Array of labest to search; default to empty array (all featured articles will be retrieved).
|
31 |
+
*
|
32 |
+
* @return array Array of articles, formatted as follows:
|
33 |
+
* [
|
34 |
+
* [
|
35 |
+
* 'title' => 'Lorem ipsum dolor sit amet',
|
36 |
+
* 'url' => 'https://example.com/lorem-ipsum-dolor-sit-amet'
|
37 |
+
* ],
|
38 |
+
* ...
|
39 |
+
* ]
|
40 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
41 |
+
*/
|
42 |
+
public static function get_latest_articles( $labels = array() ) {
|
43 |
+
$latest_articles = get_site_transient( 'yith-plugin-fw-latest-hc-articles' );
|
44 |
+
$latest_articles = $latest_articles ? $latest_articles : array();
|
45 |
+
|
46 |
+
$labels = (array) $labels;
|
47 |
+
|
48 |
+
// add featured label.
|
49 |
+
if ( ! in_array( 'featured', $labels, true ) ) {
|
50 |
+
$labels[] = 'featured';
|
51 |
+
}
|
52 |
+
|
53 |
+
// format labels to a valid query string param.
|
54 |
+
$labels = implode( ',', array_map( 'sanitize_text_field', $labels ) );
|
55 |
+
|
56 |
+
if ( ! empty( $latest_articles[ $labels ] ) && ! isset( $_GET['yith_plugin_fw_reset_hc_articles'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
57 |
+
// if we can find articles in cache, return them.
|
58 |
+
return $latest_articles[ $labels ];
|
59 |
+
} else {
|
60 |
+
// otherwise try to retrieve them.
|
61 |
+
try {
|
62 |
+
$response = self::call(
|
63 |
+
'articles.json',
|
64 |
+
'GET',
|
65 |
+
array(
|
66 |
+
'label_names' => $labels,
|
67 |
+
'sort_by' => 'created_at',
|
68 |
+
'sort_order' => 'desc',
|
69 |
+
'per_page' => 5,
|
70 |
+
)
|
71 |
+
);
|
72 |
+
} catch ( Exception $e ) {
|
73 |
+
return array();
|
74 |
+
}
|
75 |
+
|
76 |
+
// invalid answer from Zendesk server.
|
77 |
+
if ( ! isset( $response['articles'] ) || ! is_array( $response['articles'] ) ) {
|
78 |
+
return array();
|
79 |
+
}
|
80 |
+
|
81 |
+
$formatted_articles = array();
|
82 |
+
|
83 |
+
foreach ( $response['articles'] as $article ) {
|
84 |
+
// invalid article from Zendesk server.
|
85 |
+
if ( ! isset( $article['html_url'] ) || ! isset( $article['title'] ) ) {
|
86 |
+
continue;
|
87 |
+
}
|
88 |
+
|
89 |
+
// add valid articles.
|
90 |
+
$formatted_articles[] = array(
|
91 |
+
'title' => $article['title'],
|
92 |
+
'url' => esc_url( $article['html_url'] ),
|
93 |
+
);
|
94 |
+
}
|
95 |
+
|
96 |
+
$latest_articles[ $labels ] = $formatted_articles;
|
97 |
+
|
98 |
+
// update cache.
|
99 |
+
set_site_transient( 'yith-plugin-fw-latest-hc-articles', $latest_articles, 15 * DAY_IN_SECONDS );
|
100 |
+
|
101 |
+
return $formatted_articles;
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Performs any API request to HC API
|
107 |
+
*
|
108 |
+
* @param string $request Endpoint to call.
|
109 |
+
* @param string $method HTTP method for the call.
|
110 |
+
* @param array $query Query string parameters to include with the request.
|
111 |
+
* @param array $body Parameters to send as json_encoded content of the request.
|
112 |
+
* @param array $args Array of parameters to pass to {wp_remote_request}.
|
113 |
+
*
|
114 |
+
* @return string Parsed body of the answer; if content is valid JSON string, it will be decoded before return.
|
115 |
+
* @throws Exception When an error occurs with API call; error contains more details about the type of problem.
|
116 |
+
*
|
117 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
118 |
+
*/
|
119 |
+
public static function call( $request, $method = 'GET', $query = array(), $body = array(), $args = array() ) {
|
120 |
+
$destination_url = self::get_url( $request );
|
121 |
+
|
122 |
+
if ( ! empty( $query ) ) {
|
123 |
+
$destination_url = add_query_arg( $query, $destination_url );
|
124 |
+
}
|
125 |
+
|
126 |
+
$body = 'GET' === $method ? $body : wp_json_encode( $body );
|
127 |
+
|
128 |
+
$args = array_merge(
|
129 |
+
array(
|
130 |
+
'timeout' => apply_filters( 'yit_plugin_fw_help_desk_request_timeout', 2 ),
|
131 |
+
'reject_unsafe_urls' => true,
|
132 |
+
'blocking' => true,
|
133 |
+
'sslverify' => true,
|
134 |
+
'attempts' => 0,
|
135 |
+
),
|
136 |
+
$args,
|
137 |
+
array(
|
138 |
+
'method' => $method,
|
139 |
+
'body' => $body,
|
140 |
+
)
|
141 |
+
);
|
142 |
+
|
143 |
+
$response = wp_remote_request( $destination_url, $args );
|
144 |
+
|
145 |
+
if ( is_wp_error( $response ) ) {
|
146 |
+
throw new Exception( $response->get_error_message(), 400 );
|
147 |
+
} else {
|
148 |
+
$resp_body = isset( $response['body'] ) ? @json_decode( $response['body'], true ) : ''; // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
|
149 |
+
$status = isset( $response['response'] ) ? absint( $response['response']['code'] ) : false;
|
150 |
+
|
151 |
+
if ( ! in_array( $status, apply_filters( 'yit_plugin_fw_help_desk_valid_response_statuses', array( 200 ) ), true ) ) {
|
152 |
+
throw new Exception( __( 'There was an error with your request; please try again later.', 'yith-plugin-fw' ), $status );
|
153 |
+
} else {
|
154 |
+
return $resp_body;
|
155 |
+
}
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* Get formatted url for API calls
|
161 |
+
*
|
162 |
+
* @param string $request Endpoint to call with url.
|
163 |
+
* @return string Formatted url.
|
164 |
+
*
|
165 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
166 |
+
*/
|
167 |
+
public static function get_url( $request = '' ) {
|
168 |
+
$base_url = self::PRODUCTION_URL;
|
169 |
+
|
170 |
+
if ( defined( 'YIT_HELP_CENTER_DEBUG_URL' ) ) {
|
171 |
+
$alternative_url = filter_var( YIT_HELP_CENTER_DEBUG_URL, FILTER_VALIDATE_URL );
|
172 |
+
$base_url = $alternative_url ? $alternative_url : $base_url;
|
173 |
+
}
|
174 |
+
|
175 |
+
if ( 0 !== strrpos( $base_url, '/' ) ) {
|
176 |
+
$base_url = trailingslashit( $base_url );
|
177 |
+
}
|
178 |
+
|
179 |
+
if ( $request ) {
|
180 |
+
$base_url .= $request;
|
181 |
+
}
|
182 |
+
|
183 |
+
return $base_url;
|
184 |
+
}
|
185 |
+
|
186 |
+
}
|
187 |
+
}
|
plugin-fw/includes/class-yit-plugin-panel-woocommerce.php
CHANGED
@@ -216,6 +216,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
216 |
|
217 |
if ( 'admin.php' === $pagenow && isset( $_REQUEST['tab'] ) && in_array( $_REQUEST['tab'], $tabs, true ) ) {
|
218 |
$tab = sanitize_key( wp_unslash( $_REQUEST['tab'] ) );
|
|
|
|
|
219 |
}
|
220 |
|
221 |
return apply_filters( 'yith_wc_plugin_panel_current_tab', $tab );
|
@@ -277,6 +279,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
277 |
|
278 |
if ( $custom_tab_options ) {
|
279 |
$this->print_custom_tab( $custom_tab_options );
|
|
|
|
|
280 |
} else {
|
281 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-form.php';
|
282 |
}
|
216 |
|
217 |
if ( 'admin.php' === $pagenow && isset( $_REQUEST['tab'] ) && in_array( $_REQUEST['tab'], $tabs, true ) ) {
|
218 |
$tab = sanitize_key( wp_unslash( $_REQUEST['tab'] ) );
|
219 |
+
} elseif ( isset( $_REQUEST['tab'] ) && 'help' === $_REQUEST['tab'] && ! empty( $this->settings['help_tab'] ) ) {
|
220 |
+
$tab = 'help';
|
221 |
}
|
222 |
|
223 |
return apply_filters( 'yith_wc_plugin_panel_current_tab', $tab );
|
279 |
|
280 |
if ( $custom_tab_options ) {
|
281 |
$this->print_custom_tab( $custom_tab_options );
|
282 |
+
} elseif ( $this->is_help_tab() ) {
|
283 |
+
$this->print_help_tab();
|
284 |
} else {
|
285 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-form.php';
|
286 |
}
|
plugin-fw/includes/class-yit-plugin-panel.php
CHANGED
@@ -475,37 +475,19 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
475 |
);
|
476 |
$args = wp_parse_args( $args, $defaults );
|
477 |
|
478 |
-
list ( $
|
479 |
|
480 |
$tabs = '<ul class="yith-plugin-fw-tabs">';
|
481 |
|
482 |
foreach ( $this->settings['admin-tabs'] as $tab => $tab_value ) {
|
483 |
-
$
|
484 |
-
|
485 |
-
$active_class .= ' ' . $premium_class;
|
486 |
-
}
|
487 |
-
$active_class = apply_filters( 'yith_plugin_fw_panel_active_tab_class', $active_class, $current_tab, $tab );
|
488 |
-
|
489 |
-
$first_sub_tab = $this->get_first_sub_tab_key( $tab );
|
490 |
-
$sub_tab = ! ! $first_sub_tab ? $first_sub_tab : '';
|
491 |
-
$sub_tabs = $this->get_sub_tabs( $tab );
|
492 |
-
$url = $this->get_nav_url( $page, $tab, $sub_tab, $parent_page );
|
493 |
-
$icon = ( $current_tab !== $tab && $sub_tabs ) ? '<i class="yith-icon yith-icon-arrow_down"></i>' : '';
|
494 |
-
|
495 |
-
$tabs .= '<li class="yith-plugin-fw-tab-element">';
|
496 |
-
$tabs .= '<a class="nav-tab' . esc_attr( $active_class ) . '" href="' . esc_url( $url ) . '">' . wp_kses_post( $tab_value ) . $icon . '</a>';
|
497 |
-
|
498 |
-
if ( $current_tab !== $tab && $sub_tabs ) {
|
499 |
-
$tabs .= '<div class="nav-subtab-wrap"><ul class="nav-subtab">';
|
500 |
-
foreach ( $sub_tabs as $_key => $_tab ) {
|
501 |
-
$url = $this->get_nav_url( $page, $tab, $_key );
|
502 |
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
}
|
507 |
-
$tabs .= '</li>';
|
508 |
}
|
|
|
509 |
$tabs .= '</ul>';
|
510 |
?>
|
511 |
<h2 class="<?php echo esc_attr( $wrapper_class ); ?>">
|
@@ -515,6 +497,52 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
515 |
$this->print_sub_tabs_nav( $args );
|
516 |
}
|
517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
/**
|
519 |
* Retrieve the Nav URL.
|
520 |
*
|
@@ -600,6 +628,10 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
600 |
if ( $custom_tab_options ) {
|
601 |
$this->print_custom_tab( $custom_tab_options );
|
602 |
|
|
|
|
|
|
|
|
|
603 |
return;
|
604 |
}
|
605 |
|
@@ -725,6 +757,64 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
725 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/custom-tab.php';
|
726 |
}
|
727 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
728 |
/**
|
729 |
* Add sections and fields to setting panel.
|
730 |
* Read all options and show sections and fields.
|
@@ -735,9 +825,10 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
735 |
$yit_options = $this->get_main_array_options();
|
736 |
$option_key = $this->get_current_option_key();
|
737 |
|
738 |
-
if ( ! $option_key ) {
|
739 |
return;
|
740 |
}
|
|
|
741 |
foreach ( $yit_options[ $option_key ] as $section => $data ) {
|
742 |
add_settings_section( "yit_settings_{$option_key}_{$section}", $this->get_section_title( $section ), $this->get_section_description( $section ), 'yit' );
|
743 |
foreach ( $data as $option ) {
|
475 |
);
|
476 |
$args = wp_parse_args( $args, $defaults );
|
477 |
|
478 |
+
list ( $wrapper_class ) = yith_plugin_fw_extract( $args, 'wrapper_class' );
|
479 |
|
480 |
$tabs = '<ul class="yith-plugin-fw-tabs">';
|
481 |
|
482 |
foreach ( $this->settings['admin-tabs'] as $tab => $tab_value ) {
|
483 |
+
$tabs .= $this->get_tab_nav( $tab, $tab_value, $args );
|
484 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
|
486 |
+
// help tab.
|
487 |
+
if ( $this->has_help_tab() ) {
|
488 |
+
$tabs .= $this->get_tab_nav( 'help', _x( 'Help', 'Help tab name', 'yith-plugin-fw' ), $args );
|
|
|
|
|
489 |
}
|
490 |
+
|
491 |
$tabs .= '</ul>';
|
492 |
?>
|
493 |
<h2 class="<?php echo esc_attr( $wrapper_class ); ?>">
|
497 |
$this->print_sub_tabs_nav( $args );
|
498 |
}
|
499 |
|
500 |
+
/**
|
501 |
+
* Get HTML for single tab in tabs navigation
|
502 |
+
*
|
503 |
+
* @param string $tab_slug Tab slug.
|
504 |
+
* @param string $tab_name Tab name.
|
505 |
+
* @param array $args Nav Arguments.
|
506 |
+
*
|
507 |
+
* @return string Tab HTML
|
508 |
+
*
|
509 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
510 |
+
* @since 3.4.0
|
511 |
+
*/
|
512 |
+
protected function get_tab_nav( $tab_slug, $tab_name, $args = array() ) {
|
513 |
+
list ( $current_tab, $premium_class, $page, $parent_page ) = yith_plugin_fw_extract( $args, 'current_tab', 'premium_class', 'page', 'parent_page' );
|
514 |
+
|
515 |
+
$active_class = $current_tab === $tab_slug ? ' nav-tab-active' : '';
|
516 |
+
|
517 |
+
if ( 'premium' === $tab_slug ) {
|
518 |
+
$active_class .= ' ' . $premium_class;
|
519 |
+
}
|
520 |
+
$active_class = apply_filters( 'yith_plugin_fw_panel_active_tab_class', $active_class, $current_tab, $tab_slug );
|
521 |
+
|
522 |
+
$first_sub_tab = $this->get_first_sub_tab_key( $tab_slug );
|
523 |
+
$sub_tab = ! ! $first_sub_tab ? $first_sub_tab : '';
|
524 |
+
$sub_tabs = $this->get_sub_tabs( $tab_slug );
|
525 |
+
$url = $this->get_nav_url( $page, $tab_slug, $sub_tab, $parent_page );
|
526 |
+
$icon = ( $current_tab !== $tab_slug && $sub_tabs ) ? '<i class="yith-icon yith-icon-arrow_down"></i>' : '';
|
527 |
+
|
528 |
+
$tab = '<li class="yith-plugin-fw-tab-element">';
|
529 |
+
|
530 |
+
$tab .= '<a class="nav-tab' . esc_attr( $active_class ) . '" href="' . esc_url( $url ) . '">' . wp_kses_post( $tab_name ) . $icon . '</a>';
|
531 |
+
|
532 |
+
if ( $current_tab !== $tab_slug && $sub_tabs ) {
|
533 |
+
$tab .= '<div class="nav-subtab-wrap"><ul class="nav-subtab">';
|
534 |
+
foreach ( $sub_tabs as $_key => $_tab ) {
|
535 |
+
$url = $this->get_nav_url( $page, $tab_slug, $_key );
|
536 |
+
|
537 |
+
$tab .= '<li class="nav-subtab-item"><a href="' . esc_url( $url ) . '">' . wp_kses_post( $_tab['title'] ) . '</a></li>';
|
538 |
+
}
|
539 |
+
$tab .= '</ul></div>';
|
540 |
+
}
|
541 |
+
$tab .= '</li>';
|
542 |
+
|
543 |
+
return $tab;
|
544 |
+
}
|
545 |
+
|
546 |
/**
|
547 |
* Retrieve the Nav URL.
|
548 |
*
|
628 |
if ( $custom_tab_options ) {
|
629 |
$this->print_custom_tab( $custom_tab_options );
|
630 |
|
631 |
+
return;
|
632 |
+
} elseif ( $this->is_help_tab() ) {
|
633 |
+
$this->print_help_tab();
|
634 |
+
|
635 |
return;
|
636 |
}
|
637 |
|
757 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/custom-tab.php';
|
758 |
}
|
759 |
|
760 |
+
/**
|
761 |
+
* Check if panel has help tab
|
762 |
+
*
|
763 |
+
* @return bool Whether panel has help tab or no.
|
764 |
+
*/
|
765 |
+
public function has_help_tab() {
|
766 |
+
return ! empty( $this->settings['help_tab'] ) && ( ! $this->is_free() || ! empty( $this->settings['help_tab']['show_on_free'] ) );
|
767 |
+
}
|
768 |
+
|
769 |
+
/**
|
770 |
+
* Checks whether current tab is special Help Tab
|
771 |
+
*
|
772 |
+
* @return bool Whether current tab is Help Tab
|
773 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
774 |
+
*/
|
775 |
+
public function is_help_tab() {
|
776 |
+
return 'help' === $this->get_current_tab();
|
777 |
+
}
|
778 |
+
|
779 |
+
/**
|
780 |
+
* Prints special Help Tab
|
781 |
+
*
|
782 |
+
* @return void
|
783 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
784 |
+
*/
|
785 |
+
public function print_help_tab() {
|
786 |
+
$options = isset( $this->settings['help_tab'] ) ? $this->settings['help_tab'] : array();
|
787 |
+
$plugin_title = isset( $this->settings['plugin_title'] ) ? $this->settings['plugin_title'] : $this->settings['page_title'];
|
788 |
+
|
789 |
+
if ( 0 !== strpos( $plugin_title, 'YITH' ) ) {
|
790 |
+
$plugin_title = "YITH {$plugin_title}";
|
791 |
+
}
|
792 |
+
|
793 |
+
// parse options.
|
794 |
+
$options = wp_parse_args(
|
795 |
+
$options,
|
796 |
+
array(
|
797 |
+
// translators: 1. Plugin name.
|
798 |
+
'title' => sprintf( _x( 'Thank you for purchasing %s!', 'Help tab default title', 'yith-plugin-fw' ), $plugin_title ),
|
799 |
+
'description' => _x( 'We want to help you to enjoy a wonderful experience with all our products.', 'Help tab default description', 'yith-plugin-fw' ),
|
800 |
+
'main_video' => false,
|
801 |
+
'playlists' => array(),
|
802 |
+
'hc_url' => 'https://support.yithemes.com/hc/',
|
803 |
+
'doc_url' => $this->settings['plugin_slug'] ? 'https://docs.yithemes.com/' . $this->settings['plugin_slug'] : '',
|
804 |
+
'submit_ticket_url' => 'https://yithemes.com/my-account/support/submit-a-ticket/',
|
805 |
+
'show_hc_articles' => true,
|
806 |
+
'show_submit_ticket' => true,
|
807 |
+
)
|
808 |
+
);
|
809 |
+
|
810 |
+
// set template variables.
|
811 |
+
$current_tab = $this->get_current_tab();
|
812 |
+
$current_sub_tab = $this->get_current_sub_tab();
|
813 |
+
$latest_articles = $this->settings['plugin_slug'] ? YIT_Help_Desk::get_latest_articles( $this->settings['plugin_slug'] ) : array();
|
814 |
+
|
815 |
+
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/help-tab.php';
|
816 |
+
}
|
817 |
+
|
818 |
/**
|
819 |
* Add sections and fields to setting panel.
|
820 |
* Read all options and show sections and fields.
|
825 |
$yit_options = $this->get_main_array_options();
|
826 |
$option_key = $this->get_current_option_key();
|
827 |
|
828 |
+
if ( ! $option_key || ! isset( $yit_options[ $option_key ] ) ) {
|
829 |
return;
|
830 |
}
|
831 |
+
|
832 |
foreach ( $yit_options[ $option_key ] as $section => $data ) {
|
833 |
add_settings_section( "yit_settings_{$option_key}_{$section}", $this->get_section_title( $section ), $this->get_section_description( $section ), 'yit' );
|
834 |
foreach ( $data as $option ) {
|
plugin-fw/init.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
-
* Version: 3.7.
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
-
* @version 3.7.
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
+
* Version: 3.7.2
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
+
* @version 3.7.2
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
plugin-fw/languages/yith-plugin-fw-el.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-el.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,31 +13,58 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
-
#: includes/class-yit-assets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Clear"
|
18 |
msgstr "Καθαρισμός"
|
19 |
|
20 |
-
#: includes/class-yit-assets.php:
|
21 |
msgid "Clear color"
|
22 |
msgstr "Καθαρισμός χρώματος"
|
23 |
|
24 |
-
#: includes/class-yit-assets.php:
|
25 |
msgid "Default"
|
26 |
msgstr "Προεπιλεγμένο"
|
27 |
|
28 |
-
#: includes/class-yit-assets.php:
|
29 |
msgid "Select default color"
|
30 |
msgstr "Επιλογή προεπιλεγμένου χρώματος"
|
31 |
|
32 |
-
#: includes/class-yit-assets.php:
|
33 |
msgid "Select Color"
|
34 |
msgstr "Επιλογή Χρώματος"
|
35 |
|
36 |
-
#: includes/class-yit-assets.php:
|
37 |
msgid "Color value"
|
38 |
msgstr "Αξία χρώματος"
|
39 |
|
40 |
-
#: includes/class-yit-
|
|
|
|
|
|
|
|
|
41 |
msgid "The changes you have made will be lost if you leave this page."
|
42 |
msgstr ""
|
43 |
"Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
|
@@ -55,12 +82,12 @@ msgstr "Ρυθμίσεις"
|
|
55 |
msgid "How to install premium version"
|
56 |
msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
|
57 |
|
58 |
-
#: includes/class-yit-plugin-panel.php:
|
59 |
#: includes/class-yit-plugin-subpanel.php:132
|
60 |
msgid "Save Changes"
|
61 |
msgstr "Αποθήκευση Αλλαγών"
|
62 |
|
63 |
-
#: includes/class-yit-plugin-panel.php:
|
64 |
#: includes/class-yit-plugin-subpanel.php:136
|
65 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
66 |
msgid ""
|
@@ -69,73 +96,73 @@ msgstr ""
|
|
69 |
"Αν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη "
|
70 |
"σελίδα."
|
71 |
|
72 |
-
#: includes/class-yit-plugin-panel.php:
|
73 |
#: includes/class-yit-plugin-subpanel.php:136
|
74 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
75 |
msgid "Are you sure?"
|
76 |
msgstr "Είστε σίγουρος;"
|
77 |
|
78 |
-
#: includes/class-yit-plugin-panel.php:
|
79 |
#: includes/class-yit-plugin-subpanel.php:139
|
80 |
msgid "Reset to default"
|
81 |
msgstr "Επαναφορά σε προεπιλεγμένο"
|
82 |
|
83 |
-
#: includes/class-yit-plugin-panel.php:
|
84 |
msgid ""
|
85 |
"The element you have entered already exists. Please, enter another name."
|
86 |
msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
|
87 |
|
88 |
-
#: includes/class-yit-plugin-panel.php:
|
89 |
msgid "Settings saved"
|
90 |
msgstr "Ρυθμίσεις αποθηκεύτηκαν"
|
91 |
|
92 |
-
#: includes/class-yit-plugin-panel.php:
|
93 |
msgid "Settings reset"
|
94 |
msgstr "Επαναφορά ρυθμίσεων"
|
95 |
|
96 |
-
#: includes/class-yit-plugin-panel.php:
|
97 |
msgid "Element deleted correctly."
|
98 |
msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
|
99 |
|
100 |
-
#: includes/class-yit-plugin-panel.php:
|
101 |
-
#: includes/class-yit-plugin-panel.php:
|
102 |
msgid "Element updated correctly."
|
103 |
msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
|
104 |
|
105 |
-
#: includes/class-yit-plugin-panel.php:
|
106 |
msgid "Database imported correctly."
|
107 |
msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
|
108 |
|
109 |
-
#: includes/class-yit-plugin-panel.php:
|
110 |
msgid "An error has occurred during import. Please try again."
|
111 |
msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
|
112 |
|
113 |
-
#: includes/class-yit-plugin-panel.php:
|
114 |
msgid "The added file is not valid."
|
115 |
msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
|
116 |
|
117 |
-
#: includes/class-yit-plugin-panel.php:
|
118 |
msgid "Sorry, import is disabled."
|
119 |
msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
|
120 |
|
121 |
-
#: includes/class-yit-plugin-panel.php:
|
122 |
msgid "Sorting successful."
|
123 |
msgstr "Διαλογή επιτυχής."
|
124 |
|
125 |
-
#: includes/class-yit-plugin-panel.php:
|
126 |
msgid "We need your support"
|
127 |
msgstr "Χρειαζόμαστε την υποστήριξή σας"
|
128 |
|
129 |
-
#: includes/class-yit-plugin-panel.php:
|
130 |
msgid "to keep updating and improving the plugin. Please,"
|
131 |
msgstr ""
|
132 |
"για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
|
133 |
|
134 |
-
#: includes/class-yit-plugin-panel.php:
|
135 |
msgid "help us by leaving a good review"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/class-yit-plugin-panel.php:
|
139 |
msgid ":) Thanks!"
|
140 |
msgstr ":) Ευχαριστώ!"
|
141 |
|
@@ -588,33 +615,20 @@ msgid "Plugins Requirements"
|
|
588 |
msgstr "Προϋποθέσεις Πρόσθετων"
|
589 |
|
590 |
#. translators: %s is the title of the post object.
|
591 |
-
#: yit-functions.php:
|
592 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
593 |
msgstr ""
|
594 |
|
595 |
#. translators: %s is the title of the post object.
|
596 |
-
#: yit-functions.php:
|
597 |
msgid "Are you sure you want to delete \"%s\"?"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: yit-functions.php:
|
601 |
-
msgid ""
|
602 |
-
"This action cannot be undone and you will be not able to recover this data."
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: yit-functions.php:1891
|
606 |
-
msgid "Confirm trash"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: yit-functions.php:1908 yit-functions.php:2035
|
610 |
-
msgid "Confirm delete"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: yit-functions.php:1921 yit-functions.php:1929 yit-functions.php:2046
|
614 |
msgid "Further actions"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: yit-plugin.php:
|
618 |
msgid "License"
|
619 |
msgstr "Άδεια χρήσης προϊόντος"
|
620 |
|
@@ -633,16 +647,48 @@ msgctxt "[gutenberg]: Category Name"
|
|
633 |
msgid "YITH"
|
634 |
msgstr "YITH"
|
635 |
|
636 |
-
#: includes/class-yit-assets.php:
|
637 |
msgctxt "Button text"
|
638 |
msgid "Confirm"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/class-yit-assets.php:
|
642 |
msgctxt "Button text"
|
643 |
msgid "Cancel"
|
644 |
msgstr ""
|
645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
#: includes/class-yith-dashboard.php:96
|
647 |
msgctxt "Plugin FW"
|
648 |
msgid "View Changelog"
|
@@ -737,6 +783,17 @@ msgctxt "Tooltip in the \"Dimensions\" field"
|
|
737 |
msgid "Link values together"
|
738 |
msgstr "Συνδέστε αξίες"
|
739 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
#: templates/fields/onoff.php:28
|
741 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
742 |
msgid "YES"
|
@@ -747,92 +804,152 @@ msgctxt "YES/NO button: use MAX 4 characters!"
|
|
747 |
msgid "NO"
|
748 |
msgstr "ΟΧΙ"
|
749 |
|
750 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
msgctxt "Post action"
|
752 |
msgid "Preview"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: yit-functions.php:
|
756 |
msgctxt "Post action"
|
757 |
msgid "View"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: yit-functions.php:
|
761 |
msgctxt "Post action"
|
762 |
msgid "Edit"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: yit-functions.php:
|
766 |
msgctxt "Post action"
|
767 |
msgid "Duplicate"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: yit-functions.php:
|
771 |
msgctxt "Post action"
|
772 |
msgid "Restore"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: yit-functions.php:
|
776 |
msgctxt "Post action"
|
777 |
msgid "Trash"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: yit-functions.php:
|
781 |
msgctxt "Post action"
|
782 |
msgid "Delete Permanently"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: yit-functions.php:
|
786 |
-
msgctxt "Trash confirmation action"
|
787 |
-
msgid "Yes, trash"
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: yit-functions.php:1910 yit-functions.php:2037
|
791 |
-
msgctxt "Delete confirmation action"
|
792 |
-
msgid "Yes, delete"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: yit-functions.php:1997
|
796 |
msgctxt "Term action"
|
797 |
msgid "View"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: yit-functions.php:
|
801 |
msgctxt "Term action"
|
802 |
msgid "Edit"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: yit-functions.php:
|
806 |
msgctxt "Term action"
|
807 |
msgid "Duplicate"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: yit-functions.php:
|
811 |
msgctxt "Term action"
|
812 |
msgid "Delete"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: yit-plugin.php:
|
816 |
msgctxt "Plugin Row Meta"
|
817 |
msgid "Live Demo"
|
818 |
msgstr "Live Demo"
|
819 |
|
820 |
-
#: yit-plugin.php:
|
821 |
msgctxt "Plugin Row Meta"
|
822 |
msgid "Documentation"
|
823 |
msgstr "Εγχειρίδιο χρήσης"
|
824 |
|
825 |
-
#: yit-plugin.php:
|
826 |
msgctxt "Plugin Row Meta"
|
827 |
msgid "Support"
|
828 |
msgstr "Υποστήριξη"
|
829 |
|
830 |
-
#: yit-plugin.php:
|
831 |
msgctxt "Plugin Row Meta"
|
832 |
msgid "Premium version"
|
833 |
msgstr "Premium έκδοση"
|
834 |
|
835 |
-
#: yit-plugin.php:
|
836 |
msgctxt "Action links"
|
837 |
msgid "Settings"
|
838 |
msgstr "Ρυθμίσεις"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-06-22 14:49:54+00:00\n"
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
+
#: includes/class-yit-assets.php:146 yit-functions.php:1962
|
17 |
+
msgid "Confirm trash"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: includes/class-yit-assets.php:147
|
21 |
+
msgid "Are you sure you want to trash the selected items?"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: includes/class-yit-assets.php:149 yit-functions.php:1979
|
25 |
+
#: yit-functions.php:2106
|
26 |
+
msgid "Confirm delete"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-yit-assets.php:150
|
30 |
+
msgid "Are you sure you want to delete the selected items?"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-yit-assets.php:150 yit-functions.php:1896
|
34 |
+
#: yit-functions.php:2054
|
35 |
+
msgid ""
|
36 |
+
"This action cannot be undone and you will not be able to recover this data."
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: includes/class-yit-assets.php:162
|
40 |
msgid "Clear"
|
41 |
msgstr "Καθαρισμός"
|
42 |
|
43 |
+
#: includes/class-yit-assets.php:163
|
44 |
msgid "Clear color"
|
45 |
msgstr "Καθαρισμός χρώματος"
|
46 |
|
47 |
+
#: includes/class-yit-assets.php:164
|
48 |
msgid "Default"
|
49 |
msgstr "Προεπιλεγμένο"
|
50 |
|
51 |
+
#: includes/class-yit-assets.php:165
|
52 |
msgid "Select default color"
|
53 |
msgstr "Επιλογή προεπιλεγμένου χρώματος"
|
54 |
|
55 |
+
#: includes/class-yit-assets.php:166
|
56 |
msgid "Select Color"
|
57 |
msgstr "Επιλογή Χρώματος"
|
58 |
|
59 |
+
#: includes/class-yit-assets.php:167
|
60 |
msgid "Color value"
|
61 |
msgstr "Αξία χρώματος"
|
62 |
|
63 |
+
#: includes/class-yit-help-desk.php:152
|
64 |
+
msgid "There was an error with your request; please try again later."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:423
|
68 |
msgid "The changes you have made will be lost if you leave this page."
|
69 |
msgstr ""
|
70 |
"Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
|
82 |
msgid "How to install premium version"
|
83 |
msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
|
84 |
|
85 |
+
#: includes/class-yit-plugin-panel.php:652
|
86 |
#: includes/class-yit-plugin-subpanel.php:132
|
87 |
msgid "Save Changes"
|
88 |
msgstr "Αποθήκευση Αλλαγών"
|
89 |
|
90 |
+
#: includes/class-yit-plugin-panel.php:657
|
91 |
#: includes/class-yit-plugin-subpanel.php:136
|
92 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
93 |
msgid ""
|
96 |
"Αν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη "
|
97 |
"σελίδα."
|
98 |
|
99 |
+
#: includes/class-yit-plugin-panel.php:657
|
100 |
#: includes/class-yit-plugin-subpanel.php:136
|
101 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
102 |
msgid "Are you sure?"
|
103 |
msgstr "Είστε σίγουρος;"
|
104 |
|
105 |
+
#: includes/class-yit-plugin-panel.php:661
|
106 |
#: includes/class-yit-plugin-subpanel.php:139
|
107 |
msgid "Reset to default"
|
108 |
msgstr "Επαναφορά σε προεπιλεγμένο"
|
109 |
|
110 |
+
#: includes/class-yit-plugin-panel.php:959
|
111 |
msgid ""
|
112 |
"The element you have entered already exists. Please, enter another name."
|
113 |
msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
|
114 |
|
115 |
+
#: includes/class-yit-plugin-panel.php:960
|
116 |
msgid "Settings saved"
|
117 |
msgstr "Ρυθμίσεις αποθηκεύτηκαν"
|
118 |
|
119 |
+
#: includes/class-yit-plugin-panel.php:961
|
120 |
msgid "Settings reset"
|
121 |
msgstr "Επαναφορά ρυθμίσεων"
|
122 |
|
123 |
+
#: includes/class-yit-plugin-panel.php:962
|
124 |
msgid "Element deleted correctly."
|
125 |
msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
|
126 |
|
127 |
+
#: includes/class-yit-plugin-panel.php:963
|
128 |
+
#: includes/class-yit-plugin-panel.php:964
|
129 |
msgid "Element updated correctly."
|
130 |
msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
|
131 |
|
132 |
+
#: includes/class-yit-plugin-panel.php:965
|
133 |
msgid "Database imported correctly."
|
134 |
msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
|
135 |
|
136 |
+
#: includes/class-yit-plugin-panel.php:966
|
137 |
msgid "An error has occurred during import. Please try again."
|
138 |
msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
|
139 |
|
140 |
+
#: includes/class-yit-plugin-panel.php:967
|
141 |
msgid "The added file is not valid."
|
142 |
msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
|
143 |
|
144 |
+
#: includes/class-yit-plugin-panel.php:968
|
145 |
msgid "Sorry, import is disabled."
|
146 |
msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
|
147 |
|
148 |
+
#: includes/class-yit-plugin-panel.php:969
|
149 |
msgid "Sorting successful."
|
150 |
msgstr "Διαλογή επιτυχής."
|
151 |
|
152 |
+
#: includes/class-yit-plugin-panel.php:1437
|
153 |
msgid "We need your support"
|
154 |
msgstr "Χρειαζόμαστε την υποστήριξή σας"
|
155 |
|
156 |
+
#: includes/class-yit-plugin-panel.php:1438
|
157 |
msgid "to keep updating and improving the plugin. Please,"
|
158 |
msgstr ""
|
159 |
"για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
|
160 |
|
161 |
+
#: includes/class-yit-plugin-panel.php:1440
|
162 |
msgid "help us by leaving a good review"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-yit-plugin-panel.php:1441
|
166 |
msgid ":) Thanks!"
|
167 |
msgstr ":) Ευχαριστώ!"
|
168 |
|
615 |
msgstr "Προϋποθέσεις Πρόσθετων"
|
616 |
|
617 |
#. translators: %s is the title of the post object.
|
618 |
+
#: yit-functions.php:1894
|
619 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
620 |
msgstr ""
|
621 |
|
622 |
#. translators: %s is the title of the post object.
|
623 |
+
#: yit-functions.php:1896 yit-functions.php:2054
|
624 |
msgid "Are you sure you want to delete \"%s\"?"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: yit-functions.php:1992 yit-functions.php:2000 yit-functions.php:2117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
msgid "Further actions"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: yit-plugin.php:204
|
632 |
msgid "License"
|
633 |
msgstr "Άδεια χρήσης προϊόντος"
|
634 |
|
647 |
msgid "YITH"
|
648 |
msgstr "YITH"
|
649 |
|
650 |
+
#: includes/class-yit-assets.php:134
|
651 |
msgctxt "Button text"
|
652 |
msgid "Confirm"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: includes/class-yit-assets.php:135
|
656 |
msgctxt "Button text"
|
657 |
msgid "Cancel"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/class-yit-assets.php:148 yit-functions.php:1964
|
661 |
+
msgctxt "Trash confirmation action"
|
662 |
+
msgid "Yes, move to trash"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: includes/class-yit-assets.php:151 yit-functions.php:1981
|
666 |
+
msgctxt "Delete confirmation action"
|
667 |
+
msgid "Yes, delete permanently"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: yit-functions.php:2108
|
671 |
+
msgctxt "Delete confirmation action"
|
672 |
+
msgid "Yes, delete"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/class-yit-plugin-panel.php:488
|
676 |
+
msgctxt "Help tab name"
|
677 |
+
msgid "Help"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#. translators: 1. Plugin name.
|
681 |
+
#: includes/class-yit-plugin-panel.php:798
|
682 |
+
msgctxt "Help tab default title"
|
683 |
+
msgid "Thank you for purchasing %s!"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: includes/class-yit-plugin-panel.php:799
|
687 |
+
msgctxt "Help tab default description"
|
688 |
+
msgid ""
|
689 |
+
"We want to help you to enjoy a wonderful experience with all our products."
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
#: includes/class-yith-dashboard.php:96
|
693 |
msgctxt "Plugin FW"
|
694 |
msgid "View Changelog"
|
783 |
msgid "Link values together"
|
784 |
msgstr "Συνδέστε αξίες"
|
785 |
|
786 |
+
#: templates/fields/image-dimensions.php:18
|
787 |
+
msgctxt "Image width field label"
|
788 |
+
msgid "Width"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: templates/fields/image-dimensions.php:23
|
792 |
+
#, fuzzy
|
793 |
+
msgctxt "Image height field label"
|
794 |
+
msgid "Height"
|
795 |
+
msgstr "Δεξιά"
|
796 |
+
|
797 |
#: templates/fields/onoff.php:28
|
798 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
799 |
msgid "YES"
|
804 |
msgid "NO"
|
805 |
msgstr "ΟΧΙ"
|
806 |
|
807 |
+
#. translators: 1. Url to EN playlist.
|
808 |
+
#: templates/panel/help-tab.php:87
|
809 |
+
msgctxt "Help tab view all video link"
|
810 |
+
msgid ""
|
811 |
+
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
|
812 |
+
"learn more >"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: templates/panel/help-tab.php:94
|
816 |
+
msgctxt "Help tab Watch Videotutorials link"
|
817 |
+
msgid "Videos are also available in:"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: templates/panel/help-tab.php:137
|
821 |
+
msgctxt "Help tab Watch Videotutorials link"
|
822 |
+
msgid "Watch our videotutorials"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: templates/panel/help-tab.php:140
|
826 |
+
msgctxt "Help tab Watch Videotutorials link"
|
827 |
+
msgid "We show you some use cases"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: templates/panel/help-tab.php:124
|
831 |
+
msgctxt "Help tab Read Documentation link"
|
832 |
+
msgid "Read the documentation"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: templates/panel/help-tab.php:127
|
836 |
+
msgctxt "Help tab Read Documentation link"
|
837 |
+
msgid "to learn from basics how it works"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: templates/panel/help-tab.php:150
|
841 |
+
msgctxt "Help tab view FAQs link"
|
842 |
+
msgid "Check the FAQs"
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: templates/panel/help-tab.php:153
|
846 |
+
msgctxt "Help tab view FAQs link"
|
847 |
+
msgid "to find answers to your doubts"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: templates/panel/help-tab.php:169
|
851 |
+
msgctxt "Help tab FAQ title"
|
852 |
+
msgid "Last FAQs in our Help Center"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: templates/panel/help-tab.php:183
|
856 |
+
msgctxt "Help tab FAQ link"
|
857 |
+
msgid "View all FAQs >"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: templates/panel/help-tab.php:192
|
861 |
+
msgctxt "Help tab submit ticket title"
|
862 |
+
msgid "Need help?"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: templates/panel/help-tab.php:195
|
866 |
+
msgctxt "Help tab submit ticket description"
|
867 |
+
msgid ""
|
868 |
+
"If you are experiencing some technical issue ask help to our developers. "
|
869 |
+
"Submit a ticket in our support desk and we will help you as soon as possible."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: templates/panel/help-tab.php:203
|
873 |
+
msgctxt "Help tab submit ticket button"
|
874 |
+
msgid "Submit a ticket"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: yit-functions.php:1908
|
878 |
msgctxt "Post action"
|
879 |
msgid "Preview"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: yit-functions.php:1917
|
883 |
msgctxt "Post action"
|
884 |
msgid "View"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: yit-functions.php:1928
|
888 |
msgctxt "Post action"
|
889 |
msgid "Edit"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: yit-functions.php:1936
|
893 |
msgctxt "Post action"
|
894 |
msgid "Duplicate"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: yit-functions.php:1948
|
898 |
msgctxt "Post action"
|
899 |
msgid "Restore"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: yit-functions.php:1956
|
903 |
msgctxt "Post action"
|
904 |
msgid "Trash"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: yit-functions.php:1972
|
908 |
msgctxt "Post action"
|
909 |
msgid "Delete Permanently"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: yit-functions.php:2068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
913 |
msgctxt "Term action"
|
914 |
msgid "View"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: yit-functions.php:2078
|
918 |
msgctxt "Term action"
|
919 |
msgid "Edit"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: yit-functions.php:2086
|
923 |
msgctxt "Term action"
|
924 |
msgid "Duplicate"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: yit-functions.php:2099
|
928 |
msgctxt "Term action"
|
929 |
msgid "Delete"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: yit-plugin.php:85
|
933 |
msgctxt "Plugin Row Meta"
|
934 |
msgid "Live Demo"
|
935 |
msgstr "Live Demo"
|
936 |
|
937 |
+
#: yit-plugin.php:89
|
938 |
msgctxt "Plugin Row Meta"
|
939 |
msgid "Documentation"
|
940 |
msgstr "Εγχειρίδιο χρήσης"
|
941 |
|
942 |
+
#: yit-plugin.php:93
|
943 |
msgctxt "Plugin Row Meta"
|
944 |
msgid "Support"
|
945 |
msgstr "Υποστήριξη"
|
946 |
|
947 |
+
#: yit-plugin.php:97
|
948 |
msgctxt "Plugin Row Meta"
|
949 |
msgid "Premium version"
|
950 |
msgstr "Premium έκδοση"
|
951 |
|
952 |
+
#: yit-plugin.php:200
|
953 |
msgctxt "Action links"
|
954 |
msgid "Settings"
|
955 |
msgstr "Ρυθμίσεις"
|
plugin-fw/languages/yith-plugin-fw-es_ES.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,31 +13,60 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
-
#: includes/class-yit-assets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Clear"
|
18 |
msgstr "Borrar"
|
19 |
|
20 |
-
#: includes/class-yit-assets.php:
|
21 |
msgid "Clear color"
|
22 |
msgstr "Borrar color"
|
23 |
|
24 |
-
#: includes/class-yit-assets.php:
|
25 |
msgid "Default"
|
26 |
msgstr "Predeterminado"
|
27 |
|
28 |
-
#: includes/class-yit-assets.php:
|
29 |
msgid "Select default color"
|
30 |
msgstr "Seleccionar color predeterminado"
|
31 |
|
32 |
-
#: includes/class-yit-assets.php:
|
33 |
msgid "Select Color"
|
34 |
msgstr "Seleccionar color"
|
35 |
|
36 |
-
#: includes/class-yit-assets.php:
|
37 |
msgid "Color value"
|
38 |
msgstr "Valor del color"
|
39 |
|
40 |
-
#: includes/class-yit-
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "The changes you have made will be lost if you leave this page."
|
42 |
msgstr "Los cambios que has hecho se perderán si abandonas esta página."
|
43 |
|
@@ -54,12 +83,12 @@ msgstr "Ajustes"
|
|
54 |
msgid "How to install premium version"
|
55 |
msgstr "Cómo instalar la versión premium"
|
56 |
|
57 |
-
#: includes/class-yit-plugin-panel.php:
|
58 |
#: includes/class-yit-plugin-subpanel.php:132
|
59 |
msgid "Save Changes"
|
60 |
msgstr "Guardar cambios"
|
61 |
|
62 |
-
#: includes/class-yit-plugin-panel.php:
|
63 |
#: includes/class-yit-plugin-subpanel.php:136
|
64 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
65 |
msgid ""
|
@@ -68,74 +97,74 @@ msgstr ""
|
|
68 |
"Si continúas con esta acción, restablecerás todas las opciones en esta "
|
69 |
"página."
|
70 |
|
71 |
-
#: includes/class-yit-plugin-panel.php:
|
72 |
#: includes/class-yit-plugin-subpanel.php:136
|
73 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
74 |
msgid "Are you sure?"
|
75 |
msgstr "¿Estás seguro?"
|
76 |
|
77 |
-
#: includes/class-yit-plugin-panel.php:
|
78 |
#: includes/class-yit-plugin-subpanel.php:139
|
79 |
msgid "Reset to default"
|
80 |
msgstr "Restablecer valores predeterminados"
|
81 |
|
82 |
-
#: includes/class-yit-plugin-panel.php:
|
83 |
msgid ""
|
84 |
"The element you have entered already exists. Please, enter another name."
|
85 |
msgstr ""
|
86 |
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."
|
87 |
|
88 |
-
#: includes/class-yit-plugin-panel.php:
|
89 |
msgid "Settings saved"
|
90 |
msgstr "Ajustes guardados"
|
91 |
|
92 |
-
#: includes/class-yit-plugin-panel.php:
|
93 |
msgid "Settings reset"
|
94 |
msgstr "Restablecer ajustes"
|
95 |
|
96 |
-
#: includes/class-yit-plugin-panel.php:
|
97 |
msgid "Element deleted correctly."
|
98 |
msgstr "Elemento eliminado correctamente."
|
99 |
|
100 |
-
#: includes/class-yit-plugin-panel.php:
|
101 |
-
#: includes/class-yit-plugin-panel.php:
|
102 |
msgid "Element updated correctly."
|
103 |
msgstr "Elemento actualizado correctamente."
|
104 |
|
105 |
-
#: includes/class-yit-plugin-panel.php:
|
106 |
msgid "Database imported correctly."
|
107 |
msgstr "Base de datos importada correctamente."
|
108 |
|
109 |
-
#: includes/class-yit-plugin-panel.php:
|
110 |
msgid "An error has occurred during import. Please try again."
|
111 |
msgstr ""
|
112 |
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
|
113 |
|
114 |
-
#: includes/class-yit-plugin-panel.php:
|
115 |
msgid "The added file is not valid."
|
116 |
msgstr "El archivo añadido no es válido."
|
117 |
|
118 |
-
#: includes/class-yit-plugin-panel.php:
|
119 |
msgid "Sorry, import is disabled."
|
120 |
msgstr "Lo siento, la importación está desactivada."
|
121 |
|
122 |
-
#: includes/class-yit-plugin-panel.php:
|
123 |
msgid "Sorting successful."
|
124 |
msgstr "Clasificación realizada con éxito"
|
125 |
|
126 |
-
#: includes/class-yit-plugin-panel.php:
|
127 |
msgid "We need your support"
|
128 |
msgstr "Necesitamos tu apoyo"
|
129 |
|
130 |
-
#: includes/class-yit-plugin-panel.php:
|
131 |
msgid "to keep updating and improving the plugin. Please,"
|
132 |
msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
|
133 |
|
134 |
-
#: includes/class-yit-plugin-panel.php:
|
135 |
msgid "help us by leaving a good review"
|
136 |
msgstr "ayúdanos dejando una buena valoración"
|
137 |
|
138 |
-
#: includes/class-yit-plugin-panel.php:
|
139 |
msgid ":) Thanks!"
|
140 |
msgstr ":) ¡Gracias!"
|
141 |
|
@@ -551,7 +580,7 @@ msgid ""
|
|
551 |
"file of your installation"
|
552 |
msgstr ""
|
553 |
"No hay archivo de registro disponible. Activa la depuración de WordPress "
|
554 |
-
"añadiendo
|
555 |
|
556 |
#: templates/sysinfo/tabs/error-log.php:105
|
557 |
msgid "Copied!"
|
@@ -594,33 +623,20 @@ msgid "Plugins Requirements"
|
|
594 |
msgstr "Requerimientos de los plugins"
|
595 |
|
596 |
#. translators: %s is the title of the post object.
|
597 |
-
#: yit-functions.php:
|
598 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
599 |
msgstr "¿Estás seguro de que quieres mover \"%s\" a la papelera?"
|
600 |
|
601 |
#. translators: %s is the title of the post object.
|
602 |
-
#: yit-functions.php:
|
603 |
msgid "Are you sure you want to delete \"%s\"?"
|
604 |
msgstr "¿Estás seguro de que quieres borrar \"%s\"?"
|
605 |
|
606 |
-
#: yit-functions.php:
|
607 |
-
msgid ""
|
608 |
-
"This action cannot be undone and you will be not able to recover this data."
|
609 |
-
msgstr "Esta acción no se puede revertir y no podrá recuperar estos datos."
|
610 |
-
|
611 |
-
#: yit-functions.php:1891
|
612 |
-
msgid "Confirm trash"
|
613 |
-
msgstr "Confirmar el traslado a la papelera"
|
614 |
-
|
615 |
-
#: yit-functions.php:1908 yit-functions.php:2035
|
616 |
-
msgid "Confirm delete"
|
617 |
-
msgstr "Confirmar el borrado"
|
618 |
-
|
619 |
-
#: yit-functions.php:1921 yit-functions.php:1929 yit-functions.php:2046
|
620 |
msgid "Further actions"
|
621 |
msgstr "Otras acciones"
|
622 |
|
623 |
-
#: yit-plugin.php:
|
624 |
msgid "License"
|
625 |
msgstr "Licencia"
|
626 |
|
@@ -639,16 +655,50 @@ msgctxt "[gutenberg]: Category Name"
|
|
639 |
msgid "YITH"
|
640 |
msgstr "YITH"
|
641 |
|
642 |
-
#: includes/class-yit-assets.php:
|
643 |
msgctxt "Button text"
|
644 |
msgid "Confirm"
|
645 |
msgstr "Confirmar"
|
646 |
|
647 |
-
#: includes/class-yit-assets.php:
|
648 |
msgctxt "Button text"
|
649 |
msgid "Cancel"
|
650 |
msgstr "Cancelar"
|
651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
#: includes/class-yith-dashboard.php:96
|
653 |
msgctxt "Plugin FW"
|
654 |
msgid "View Changelog"
|
@@ -741,6 +791,17 @@ msgctxt "Tooltip in the \"Dimensions\" field"
|
|
741 |
msgid "Link values together"
|
742 |
msgstr "Enlazar valores juntos"
|
743 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
744 |
#: templates/fields/onoff.php:28
|
745 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
746 |
msgid "YES"
|
@@ -751,92 +812,156 @@ msgctxt "YES/NO button: use MAX 4 characters!"
|
|
751 |
msgid "NO"
|
752 |
msgstr "NO"
|
753 |
|
754 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
755 |
msgctxt "Post action"
|
756 |
msgid "Preview"
|
757 |
msgstr "Previsualizar"
|
758 |
|
759 |
-
#: yit-functions.php:
|
760 |
msgctxt "Post action"
|
761 |
msgid "View"
|
762 |
msgstr "Ver"
|
763 |
|
764 |
-
#: yit-functions.php:
|
765 |
msgctxt "Post action"
|
766 |
msgid "Edit"
|
767 |
msgstr "Editar"
|
768 |
|
769 |
-
#: yit-functions.php:
|
770 |
msgctxt "Post action"
|
771 |
msgid "Duplicate"
|
772 |
msgstr "Duplicar"
|
773 |
|
774 |
-
#: yit-functions.php:
|
775 |
msgctxt "Post action"
|
776 |
msgid "Restore"
|
777 |
msgstr "Restaurar"
|
778 |
|
779 |
-
#: yit-functions.php:
|
780 |
msgctxt "Post action"
|
781 |
msgid "Trash"
|
782 |
msgstr "A la papelera"
|
783 |
|
784 |
-
#: yit-functions.php:
|
785 |
msgctxt "Post action"
|
786 |
msgid "Delete Permanently"
|
787 |
msgstr "Borrar permanentemente"
|
788 |
|
789 |
-
#: yit-functions.php:
|
790 |
-
msgctxt "Trash confirmation action"
|
791 |
-
msgid "Yes, trash"
|
792 |
-
msgstr "Si, a la papelera"
|
793 |
-
|
794 |
-
#: yit-functions.php:1910 yit-functions.php:2037
|
795 |
-
msgctxt "Delete confirmation action"
|
796 |
-
msgid "Yes, delete"
|
797 |
-
msgstr "Si, borrar"
|
798 |
-
|
799 |
-
#: yit-functions.php:1997
|
800 |
msgctxt "Term action"
|
801 |
msgid "View"
|
802 |
msgstr "Ver"
|
803 |
|
804 |
-
#: yit-functions.php:
|
805 |
msgctxt "Term action"
|
806 |
msgid "Edit"
|
807 |
msgstr "Editar"
|
808 |
|
809 |
-
#: yit-functions.php:
|
810 |
msgctxt "Term action"
|
811 |
msgid "Duplicate"
|
812 |
msgstr "Duplicar"
|
813 |
|
814 |
-
#: yit-functions.php:
|
815 |
msgctxt "Term action"
|
816 |
msgid "Delete"
|
817 |
msgstr "Borrar"
|
818 |
|
819 |
-
#: yit-plugin.php:
|
820 |
msgctxt "Plugin Row Meta"
|
821 |
msgid "Live Demo"
|
822 |
msgstr "Demostración en vivo"
|
823 |
|
824 |
-
#: yit-plugin.php:
|
825 |
msgctxt "Plugin Row Meta"
|
826 |
msgid "Documentation"
|
827 |
msgstr "Documentación"
|
828 |
|
829 |
-
#: yit-plugin.php:
|
830 |
msgctxt "Plugin Row Meta"
|
831 |
msgid "Support"
|
832 |
msgstr "Soporte"
|
833 |
|
834 |
-
#: yit-plugin.php:
|
835 |
msgctxt "Plugin Row Meta"
|
836 |
msgid "Premium version"
|
837 |
msgstr "Versión premium"
|
838 |
|
839 |
-
#: yit-plugin.php:
|
840 |
msgctxt "Action links"
|
841 |
msgid "Settings"
|
842 |
msgstr "Ajustes"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-06-22 14:49:54+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-06-08 11:44:05+0000\n"
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
+
#: includes/class-yit-assets.php:146 yit-functions.php:1962
|
17 |
+
msgid "Confirm trash"
|
18 |
+
msgstr "Confirmar el traslado a la papelera"
|
19 |
+
|
20 |
+
#: includes/class-yit-assets.php:147
|
21 |
+
msgid "Are you sure you want to trash the selected items?"
|
22 |
+
msgstr ""
|
23 |
+
"¿Estás seguro de que quieres mover a la papelera los elementos seleccionados?"
|
24 |
+
|
25 |
+
#: includes/class-yit-assets.php:149 yit-functions.php:1979
|
26 |
+
#: yit-functions.php:2106
|
27 |
+
msgid "Confirm delete"
|
28 |
+
msgstr "Confirmar el borrado"
|
29 |
+
|
30 |
+
#: includes/class-yit-assets.php:150
|
31 |
+
msgid "Are you sure you want to delete the selected items?"
|
32 |
+
msgstr "¿Estás seguro de que quieres borrar los elementos seleccionados?"
|
33 |
+
|
34 |
+
#: includes/class-yit-assets.php:150 yit-functions.php:1896
|
35 |
+
#: yit-functions.php:2054
|
36 |
+
msgid ""
|
37 |
+
"This action cannot be undone and you will not be able to recover this data."
|
38 |
+
msgstr "Esta acción no se puede revertir y no podrá recuperar estos datos."
|
39 |
+
|
40 |
+
#: includes/class-yit-assets.php:162
|
41 |
msgid "Clear"
|
42 |
msgstr "Borrar"
|
43 |
|
44 |
+
#: includes/class-yit-assets.php:163
|
45 |
msgid "Clear color"
|
46 |
msgstr "Borrar color"
|
47 |
|
48 |
+
#: includes/class-yit-assets.php:164
|
49 |
msgid "Default"
|
50 |
msgstr "Predeterminado"
|
51 |
|
52 |
+
#: includes/class-yit-assets.php:165
|
53 |
msgid "Select default color"
|
54 |
msgstr "Seleccionar color predeterminado"
|
55 |
|
56 |
+
#: includes/class-yit-assets.php:166
|
57 |
msgid "Select Color"
|
58 |
msgstr "Seleccionar color"
|
59 |
|
60 |
+
#: includes/class-yit-assets.php:167
|
61 |
msgid "Color value"
|
62 |
msgstr "Valor del color"
|
63 |
|
64 |
+
#: includes/class-yit-help-desk.php:152
|
65 |
+
msgid "There was an error with your request; please try again later."
|
66 |
+
msgstr ""
|
67 |
+
"Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."
|
68 |
+
|
69 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:423
|
70 |
msgid "The changes you have made will be lost if you leave this page."
|
71 |
msgstr "Los cambios que has hecho se perderán si abandonas esta página."
|
72 |
|
83 |
msgid "How to install premium version"
|
84 |
msgstr "Cómo instalar la versión premium"
|
85 |
|
86 |
+
#: includes/class-yit-plugin-panel.php:652
|
87 |
#: includes/class-yit-plugin-subpanel.php:132
|
88 |
msgid "Save Changes"
|
89 |
msgstr "Guardar cambios"
|
90 |
|
91 |
+
#: includes/class-yit-plugin-panel.php:657
|
92 |
#: includes/class-yit-plugin-subpanel.php:136
|
93 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
94 |
msgid ""
|
97 |
"Si continúas con esta acción, restablecerás todas las opciones en esta "
|
98 |
"página."
|
99 |
|
100 |
+
#: includes/class-yit-plugin-panel.php:657
|
101 |
#: includes/class-yit-plugin-subpanel.php:136
|
102 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
103 |
msgid "Are you sure?"
|
104 |
msgstr "¿Estás seguro?"
|
105 |
|
106 |
+
#: includes/class-yit-plugin-panel.php:661
|
107 |
#: includes/class-yit-plugin-subpanel.php:139
|
108 |
msgid "Reset to default"
|
109 |
msgstr "Restablecer valores predeterminados"
|
110 |
|
111 |
+
#: includes/class-yit-plugin-panel.php:959
|
112 |
msgid ""
|
113 |
"The element you have entered already exists. Please, enter another name."
|
114 |
msgstr ""
|
115 |
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."
|
116 |
|
117 |
+
#: includes/class-yit-plugin-panel.php:960
|
118 |
msgid "Settings saved"
|
119 |
msgstr "Ajustes guardados"
|
120 |
|
121 |
+
#: includes/class-yit-plugin-panel.php:961
|
122 |
msgid "Settings reset"
|
123 |
msgstr "Restablecer ajustes"
|
124 |
|
125 |
+
#: includes/class-yit-plugin-panel.php:962
|
126 |
msgid "Element deleted correctly."
|
127 |
msgstr "Elemento eliminado correctamente."
|
128 |
|
129 |
+
#: includes/class-yit-plugin-panel.php:963
|
130 |
+
#: includes/class-yit-plugin-panel.php:964
|
131 |
msgid "Element updated correctly."
|
132 |
msgstr "Elemento actualizado correctamente."
|
133 |
|
134 |
+
#: includes/class-yit-plugin-panel.php:965
|
135 |
msgid "Database imported correctly."
|
136 |
msgstr "Base de datos importada correctamente."
|
137 |
|
138 |
+
#: includes/class-yit-plugin-panel.php:966
|
139 |
msgid "An error has occurred during import. Please try again."
|
140 |
msgstr ""
|
141 |
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
|
142 |
|
143 |
+
#: includes/class-yit-plugin-panel.php:967
|
144 |
msgid "The added file is not valid."
|
145 |
msgstr "El archivo añadido no es válido."
|
146 |
|
147 |
+
#: includes/class-yit-plugin-panel.php:968
|
148 |
msgid "Sorry, import is disabled."
|
149 |
msgstr "Lo siento, la importación está desactivada."
|
150 |
|
151 |
+
#: includes/class-yit-plugin-panel.php:969
|
152 |
msgid "Sorting successful."
|
153 |
msgstr "Clasificación realizada con éxito"
|
154 |
|
155 |
+
#: includes/class-yit-plugin-panel.php:1437
|
156 |
msgid "We need your support"
|
157 |
msgstr "Necesitamos tu apoyo"
|
158 |
|
159 |
+
#: includes/class-yit-plugin-panel.php:1438
|
160 |
msgid "to keep updating and improving the plugin. Please,"
|
161 |
msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
|
162 |
|
163 |
+
#: includes/class-yit-plugin-panel.php:1440
|
164 |
msgid "help us by leaving a good review"
|
165 |
msgstr "ayúdanos dejando una buena valoración"
|
166 |
|
167 |
+
#: includes/class-yit-plugin-panel.php:1441
|
168 |
msgid ":) Thanks!"
|
169 |
msgstr ":) ¡Gracias!"
|
170 |
|
580 |
"file of your installation"
|
581 |
msgstr ""
|
582 |
"No hay archivo de registro disponible. Activa la depuración de WordPress "
|
583 |
+
"añadiendo este código en el archivo %s de tu instalación"
|
584 |
|
585 |
#: templates/sysinfo/tabs/error-log.php:105
|
586 |
msgid "Copied!"
|
623 |
msgstr "Requerimientos de los plugins"
|
624 |
|
625 |
#. translators: %s is the title of the post object.
|
626 |
+
#: yit-functions.php:1894
|
627 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
628 |
msgstr "¿Estás seguro de que quieres mover \"%s\" a la papelera?"
|
629 |
|
630 |
#. translators: %s is the title of the post object.
|
631 |
+
#: yit-functions.php:1896 yit-functions.php:2054
|
632 |
msgid "Are you sure you want to delete \"%s\"?"
|
633 |
msgstr "¿Estás seguro de que quieres borrar \"%s\"?"
|
634 |
|
635 |
+
#: yit-functions.php:1992 yit-functions.php:2000 yit-functions.php:2117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
msgid "Further actions"
|
637 |
msgstr "Otras acciones"
|
638 |
|
639 |
+
#: yit-plugin.php:204
|
640 |
msgid "License"
|
641 |
msgstr "Licencia"
|
642 |
|
655 |
msgid "YITH"
|
656 |
msgstr "YITH"
|
657 |
|
658 |
+
#: includes/class-yit-assets.php:134
|
659 |
msgctxt "Button text"
|
660 |
msgid "Confirm"
|
661 |
msgstr "Confirmar"
|
662 |
|
663 |
+
#: includes/class-yit-assets.php:135
|
664 |
msgctxt "Button text"
|
665 |
msgid "Cancel"
|
666 |
msgstr "Cancelar"
|
667 |
|
668 |
+
#: includes/class-yit-assets.php:148 yit-functions.php:1964
|
669 |
+
msgctxt "Trash confirmation action"
|
670 |
+
msgid "Yes, move to trash"
|
671 |
+
msgstr "Sí, mover a la papelera"
|
672 |
+
|
673 |
+
#: includes/class-yit-assets.php:151 yit-functions.php:1981
|
674 |
+
msgctxt "Delete confirmation action"
|
675 |
+
msgid "Yes, delete permanently"
|
676 |
+
msgstr "Sí, borrar permanentemente"
|
677 |
+
|
678 |
+
#: yit-functions.php:2108
|
679 |
+
msgctxt "Delete confirmation action"
|
680 |
+
msgid "Yes, delete"
|
681 |
+
msgstr "Si, borrar"
|
682 |
+
|
683 |
+
#: includes/class-yit-plugin-panel.php:488
|
684 |
+
msgctxt "Help tab name"
|
685 |
+
msgid "Help"
|
686 |
+
msgstr "Ayuda"
|
687 |
+
|
688 |
+
#. translators: 1. Plugin name.
|
689 |
+
#: includes/class-yit-plugin-panel.php:798
|
690 |
+
msgctxt "Help tab default title"
|
691 |
+
msgid "Thank you for purchasing %s!"
|
692 |
+
msgstr "¡Gracias por comprar %s!"
|
693 |
+
|
694 |
+
#: includes/class-yit-plugin-panel.php:799
|
695 |
+
msgctxt "Help tab default description"
|
696 |
+
msgid ""
|
697 |
+
"We want to help you to enjoy a wonderful experience with all our products."
|
698 |
+
msgstr ""
|
699 |
+
"Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
|
700 |
+
"nuestros productos."
|
701 |
+
|
702 |
#: includes/class-yith-dashboard.php:96
|
703 |
msgctxt "Plugin FW"
|
704 |
msgid "View Changelog"
|
791 |
msgid "Link values together"
|
792 |
msgstr "Enlazar valores juntos"
|
793 |
|
794 |
+
#: templates/fields/image-dimensions.php:18
|
795 |
+
msgctxt "Image width field label"
|
796 |
+
msgid "Width"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: templates/fields/image-dimensions.php:23
|
800 |
+
#, fuzzy
|
801 |
+
msgctxt "Image height field label"
|
802 |
+
msgid "Height"
|
803 |
+
msgstr "Derecha"
|
804 |
+
|
805 |
#: templates/fields/onoff.php:28
|
806 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
807 |
msgid "YES"
|
812 |
msgid "NO"
|
813 |
msgstr "NO"
|
814 |
|
815 |
+
#. translators: 1. Url to EN playlist.
|
816 |
+
#: templates/panel/help-tab.php:87
|
817 |
+
msgctxt "Help tab view all video link"
|
818 |
+
msgid ""
|
819 |
+
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
|
820 |
+
"learn more >"
|
821 |
+
msgstr ""
|
822 |
+
"Consulta la <a href=\"%s\" target=\"_blank\">Lista de reproducción en "
|
823 |
+
"Youtube</a> para saber más >"
|
824 |
+
|
825 |
+
#: templates/panel/help-tab.php:94
|
826 |
+
msgctxt "Help tab Watch Videotutorials link"
|
827 |
+
msgid "Videos are also available in:"
|
828 |
+
msgstr "Los vídeos también están disponibles en:"
|
829 |
+
|
830 |
+
#: templates/panel/help-tab.php:137
|
831 |
+
msgctxt "Help tab Watch Videotutorials link"
|
832 |
+
msgid "Watch our videotutorials"
|
833 |
+
msgstr "Vea nuestros videotutoriales"
|
834 |
+
|
835 |
+
#: templates/panel/help-tab.php:140
|
836 |
+
msgctxt "Help tab Watch Videotutorials link"
|
837 |
+
msgid "We show you some use cases"
|
838 |
+
msgstr "Te mostramos algunos ejemplos de uso"
|
839 |
+
|
840 |
+
#: templates/panel/help-tab.php:124
|
841 |
+
msgctxt "Help tab Read Documentation link"
|
842 |
+
msgid "Read the documentation"
|
843 |
+
msgstr "Lee la documentación"
|
844 |
+
|
845 |
+
#: templates/panel/help-tab.php:127
|
846 |
+
msgctxt "Help tab Read Documentation link"
|
847 |
+
msgid "to learn from basics how it works"
|
848 |
+
msgstr "para aprender desde lo más básico cómo funciona"
|
849 |
+
|
850 |
+
#: templates/panel/help-tab.php:150
|
851 |
+
msgctxt "Help tab view FAQs link"
|
852 |
+
msgid "Check the FAQs"
|
853 |
+
msgstr "Comprueba los FAQ"
|
854 |
+
|
855 |
+
#: templates/panel/help-tab.php:153
|
856 |
+
msgctxt "Help tab view FAQs link"
|
857 |
+
msgid "to find answers to your doubts"
|
858 |
+
msgstr "para encontrar respuestas a tus dudas"
|
859 |
+
|
860 |
+
#: templates/panel/help-tab.php:169
|
861 |
+
msgctxt "Help tab FAQ title"
|
862 |
+
msgid "Last FAQs in our Help Center"
|
863 |
+
msgstr "Últimos FAQs en nuestro Centro de Ayuda"
|
864 |
+
|
865 |
+
#: templates/panel/help-tab.php:183
|
866 |
+
msgctxt "Help tab FAQ link"
|
867 |
+
msgid "View all FAQs >"
|
868 |
+
msgstr "Ver todos los FAQs >"
|
869 |
+
|
870 |
+
#: templates/panel/help-tab.php:192
|
871 |
+
msgctxt "Help tab submit ticket title"
|
872 |
+
msgid "Need help?"
|
873 |
+
msgstr "¿Necesitas ayuda?"
|
874 |
+
|
875 |
+
#: templates/panel/help-tab.php:195
|
876 |
+
msgctxt "Help tab submit ticket description"
|
877 |
+
msgid ""
|
878 |
+
"If you are experiencing some technical issue ask help to our developers. "
|
879 |
+
"Submit a ticket in our support desk and we will help you as soon as possible."
|
880 |
+
msgstr ""
|
881 |
+
"Si tienes algún problema técnico, pide ayuda a nuestros desarrolladores. "
|
882 |
+
"Envía un ticket en nuestro panel de soporte y te ayudaremos lo antes posible."
|
883 |
+
|
884 |
+
#: templates/panel/help-tab.php:203
|
885 |
+
msgctxt "Help tab submit ticket button"
|
886 |
+
msgid "Submit a ticket"
|
887 |
+
msgstr "Enviar ticket"
|
888 |
+
|
889 |
+
#: yit-functions.php:1908
|
890 |
msgctxt "Post action"
|
891 |
msgid "Preview"
|
892 |
msgstr "Previsualizar"
|
893 |
|
894 |
+
#: yit-functions.php:1917
|
895 |
msgctxt "Post action"
|
896 |
msgid "View"
|
897 |
msgstr "Ver"
|
898 |
|
899 |
+
#: yit-functions.php:1928
|
900 |
msgctxt "Post action"
|
901 |
msgid "Edit"
|
902 |
msgstr "Editar"
|
903 |
|
904 |
+
#: yit-functions.php:1936
|
905 |
msgctxt "Post action"
|
906 |
msgid "Duplicate"
|
907 |
msgstr "Duplicar"
|
908 |
|
909 |
+
#: yit-functions.php:1948
|
910 |
msgctxt "Post action"
|
911 |
msgid "Restore"
|
912 |
msgstr "Restaurar"
|
913 |
|
914 |
+
#: yit-functions.php:1956
|
915 |
msgctxt "Post action"
|
916 |
msgid "Trash"
|
917 |
msgstr "A la papelera"
|
918 |
|
919 |
+
#: yit-functions.php:1972
|
920 |
msgctxt "Post action"
|
921 |
msgid "Delete Permanently"
|
922 |
msgstr "Borrar permanentemente"
|
923 |
|
924 |
+
#: yit-functions.php:2068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
msgctxt "Term action"
|
926 |
msgid "View"
|
927 |
msgstr "Ver"
|
928 |
|
929 |
+
#: yit-functions.php:2078
|
930 |
msgctxt "Term action"
|
931 |
msgid "Edit"
|
932 |
msgstr "Editar"
|
933 |
|
934 |
+
#: yit-functions.php:2086
|
935 |
msgctxt "Term action"
|
936 |
msgid "Duplicate"
|
937 |
msgstr "Duplicar"
|
938 |
|
939 |
+
#: yit-functions.php:2099
|
940 |
msgctxt "Term action"
|
941 |
msgid "Delete"
|
942 |
msgstr "Borrar"
|
943 |
|
944 |
+
#: yit-plugin.php:85
|
945 |
msgctxt "Plugin Row Meta"
|
946 |
msgid "Live Demo"
|
947 |
msgstr "Demostración en vivo"
|
948 |
|
949 |
+
#: yit-plugin.php:89
|
950 |
msgctxt "Plugin Row Meta"
|
951 |
msgid "Documentation"
|
952 |
msgstr "Documentación"
|
953 |
|
954 |
+
#: yit-plugin.php:93
|
955 |
msgctxt "Plugin Row Meta"
|
956 |
msgid "Support"
|
957 |
msgstr "Soporte"
|
958 |
|
959 |
+
#: yit-plugin.php:97
|
960 |
msgctxt "Plugin Row Meta"
|
961 |
msgid "Premium version"
|
962 |
msgstr "Versión premium"
|
963 |
|
964 |
+
#: yit-plugin.php:200
|
965 |
msgctxt "Action links"
|
966 |
msgid "Settings"
|
967 |
msgstr "Ajustes"
|
plugin-fw/languages/yith-plugin-fw-it_IT.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-it_IT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,31 +13,60 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
-
#: includes/class-yit-assets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Clear"
|
18 |
msgstr "Rimuovi"
|
19 |
|
20 |
-
#: includes/class-yit-assets.php:
|
21 |
msgid "Clear color"
|
22 |
msgstr "Rimuovi colore"
|
23 |
|
24 |
-
#: includes/class-yit-assets.php:
|
25 |
msgid "Default"
|
26 |
msgstr "Predefinito"
|
27 |
|
28 |
-
#: includes/class-yit-assets.php:
|
29 |
msgid "Select default color"
|
30 |
msgstr "Seleziona il colore predefinito"
|
31 |
|
32 |
-
#: includes/class-yit-assets.php:
|
33 |
msgid "Select Color"
|
34 |
msgstr "Seleziona il colore"
|
35 |
|
36 |
-
#: includes/class-yit-assets.php:
|
37 |
msgid "Color value"
|
38 |
msgstr "Valore del colore"
|
39 |
|
40 |
-
#: includes/class-yit-
|
|
|
|
|
|
|
|
|
41 |
msgid "The changes you have made will be lost if you leave this page."
|
42 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
43 |
|
@@ -54,12 +83,12 @@ msgstr "Impostazioni"
|
|
54 |
msgid "How to install premium version"
|
55 |
msgstr "Come installare la versione premium"
|
56 |
|
57 |
-
#: includes/class-yit-plugin-panel.php:
|
58 |
#: includes/class-yit-plugin-subpanel.php:132
|
59 |
msgid "Save Changes"
|
60 |
msgstr "Salva modifiche"
|
61 |
|
62 |
-
#: includes/class-yit-plugin-panel.php:
|
63 |
#: includes/class-yit-plugin-subpanel.php:136
|
64 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
65 |
msgid ""
|
@@ -68,72 +97,72 @@ msgstr ""
|
|
68 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
69 |
"reimpostate."
|
70 |
|
71 |
-
#: includes/class-yit-plugin-panel.php:
|
72 |
#: includes/class-yit-plugin-subpanel.php:136
|
73 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
74 |
msgid "Are you sure?"
|
75 |
msgstr "Sei sicuro?"
|
76 |
|
77 |
-
#: includes/class-yit-plugin-panel.php:
|
78 |
#: includes/class-yit-plugin-subpanel.php:139
|
79 |
msgid "Reset to default"
|
80 |
msgstr "Ripristina configurazione predefinita"
|
81 |
|
82 |
-
#: includes/class-yit-plugin-panel.php:
|
83 |
msgid ""
|
84 |
"The element you have entered already exists. Please, enter another name."
|
85 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
86 |
|
87 |
-
#: includes/class-yit-plugin-panel.php:
|
88 |
msgid "Settings saved"
|
89 |
msgstr "Impostazioni salvate"
|
90 |
|
91 |
-
#: includes/class-yit-plugin-panel.php:
|
92 |
msgid "Settings reset"
|
93 |
msgstr "Impostazioni azzerate"
|
94 |
|
95 |
-
#: includes/class-yit-plugin-panel.php:
|
96 |
msgid "Element deleted correctly."
|
97 |
msgstr "Elemento rimosso correttamente."
|
98 |
|
99 |
-
#: includes/class-yit-plugin-panel.php:
|
100 |
-
#: includes/class-yit-plugin-panel.php:
|
101 |
msgid "Element updated correctly."
|
102 |
msgstr "Elemento aggiornato correttamente."
|
103 |
|
104 |
-
#: includes/class-yit-plugin-panel.php:
|
105 |
msgid "Database imported correctly."
|
106 |
msgstr "Database importato correttamente."
|
107 |
|
108 |
-
#: includes/class-yit-plugin-panel.php:
|
109 |
msgid "An error has occurred during import. Please try again."
|
110 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
111 |
|
112 |
-
#: includes/class-yit-plugin-panel.php:
|
113 |
msgid "The added file is not valid."
|
114 |
msgstr "Il file aggiunto non è valido."
|
115 |
|
116 |
-
#: includes/class-yit-plugin-panel.php:
|
117 |
msgid "Sorry, import is disabled."
|
118 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
119 |
|
120 |
-
#: includes/class-yit-plugin-panel.php:
|
121 |
msgid "Sorting successful."
|
122 |
msgstr "Ordinamento effettuato con successo."
|
123 |
|
124 |
-
#: includes/class-yit-plugin-panel.php:
|
125 |
msgid "We need your support"
|
126 |
msgstr "Abbiamo bisogno del tuo sostegno"
|
127 |
|
128 |
-
#: includes/class-yit-plugin-panel.php:
|
129 |
msgid "to keep updating and improving the plugin. Please,"
|
130 |
msgstr "per poter continuare ad aggiornare e migliorare il plugin."
|
131 |
|
132 |
-
#: includes/class-yit-plugin-panel.php:
|
133 |
msgid "help us by leaving a good review"
|
134 |
msgstr "Puoi darci una mano lasciando una recensione positiva"
|
135 |
|
136 |
-
#: includes/class-yit-plugin-panel.php:
|
137 |
msgid ":) Thanks!"
|
138 |
msgstr ":) Grazie!"
|
139 |
|
@@ -594,35 +623,20 @@ msgid "Plugins Requirements"
|
|
594 |
msgstr "Requisiti plugin"
|
595 |
|
596 |
#. translators: %s is the title of the post object.
|
597 |
-
#: yit-functions.php:
|
598 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
599 |
msgstr "Sei sicuro di voler spostare \"%s\" nel cestino?"
|
600 |
|
601 |
#. translators: %s is the title of the post object.
|
602 |
-
#: yit-functions.php:
|
603 |
msgid "Are you sure you want to delete \"%s\"?"
|
604 |
msgstr "Sei sicuro di voler eliminare \"%s\"?"
|
605 |
|
606 |
-
#: yit-functions.php:
|
607 |
-
msgid ""
|
608 |
-
"This action cannot be undone and you will be not able to recover this data."
|
609 |
-
msgstr ""
|
610 |
-
"Quest'azione non può essere annullata e non sarà possibile recuperare questi "
|
611 |
-
"dati."
|
612 |
-
|
613 |
-
#: yit-functions.php:1891
|
614 |
-
msgid "Confirm trash"
|
615 |
-
msgstr "Conferma eliminazione"
|
616 |
-
|
617 |
-
#: yit-functions.php:1908 yit-functions.php:2035
|
618 |
-
msgid "Confirm delete"
|
619 |
-
msgstr "Conferma eliminazione"
|
620 |
-
|
621 |
-
#: yit-functions.php:1921 yit-functions.php:1929 yit-functions.php:2046
|
622 |
msgid "Further actions"
|
623 |
msgstr "Altre azioni"
|
624 |
|
625 |
-
#: yit-plugin.php:
|
626 |
msgid "License"
|
627 |
msgstr "Chiave di licenza"
|
628 |
|
@@ -641,16 +655,50 @@ msgctxt "[gutenberg]: Category Name"
|
|
641 |
msgid "YITH"
|
642 |
msgstr "YITH"
|
643 |
|
644 |
-
#: includes/class-yit-assets.php:
|
645 |
msgctxt "Button text"
|
646 |
msgid "Confirm"
|
647 |
msgstr "Conferma"
|
648 |
|
649 |
-
#: includes/class-yit-assets.php:
|
650 |
msgctxt "Button text"
|
651 |
msgid "Cancel"
|
652 |
msgstr "Annulla"
|
653 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
#: includes/class-yith-dashboard.php:96
|
655 |
msgctxt "Plugin FW"
|
656 |
msgid "View Changelog"
|
@@ -744,6 +792,17 @@ msgctxt "Tooltip in the \"Dimensions\" field"
|
|
744 |
msgid "Link values together"
|
745 |
msgstr "Collega i valori"
|
746 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
#: templates/fields/onoff.php:28
|
748 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
749 |
msgid "YES"
|
@@ -754,92 +813,157 @@ msgctxt "YES/NO button: use MAX 4 characters!"
|
|
754 |
msgid "NO"
|
755 |
msgstr "NO"
|
756 |
|
757 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
758 |
msgctxt "Post action"
|
759 |
msgid "Preview"
|
760 |
msgstr "Anteprima"
|
761 |
|
762 |
-
#: yit-functions.php:
|
763 |
msgctxt "Post action"
|
764 |
msgid "View"
|
765 |
msgstr "Visualizza"
|
766 |
|
767 |
-
#: yit-functions.php:
|
768 |
msgctxt "Post action"
|
769 |
msgid "Edit"
|
770 |
msgstr "Modifica"
|
771 |
|
772 |
-
#: yit-functions.php:
|
773 |
msgctxt "Post action"
|
774 |
msgid "Duplicate"
|
775 |
msgstr "Duplica"
|
776 |
|
777 |
-
#: yit-functions.php:
|
778 |
msgctxt "Post action"
|
779 |
msgid "Restore"
|
780 |
msgstr "Ripristina"
|
781 |
|
782 |
-
#: yit-functions.php:
|
783 |
msgctxt "Post action"
|
784 |
msgid "Trash"
|
785 |
msgstr "Cestina"
|
786 |
|
787 |
-
#: yit-functions.php:
|
788 |
msgctxt "Post action"
|
789 |
msgid "Delete Permanently"
|
790 |
msgstr "Cancella definitivamente"
|
791 |
|
792 |
-
#: yit-functions.php:
|
793 |
-
msgctxt "Trash confirmation action"
|
794 |
-
msgid "Yes, trash"
|
795 |
-
msgstr "Sì, cestina"
|
796 |
-
|
797 |
-
#: yit-functions.php:1910 yit-functions.php:2037
|
798 |
-
msgctxt "Delete confirmation action"
|
799 |
-
msgid "Yes, delete"
|
800 |
-
msgstr "Sì, elimina"
|
801 |
-
|
802 |
-
#: yit-functions.php:1997
|
803 |
msgctxt "Term action"
|
804 |
msgid "View"
|
805 |
msgstr "Visualizza"
|
806 |
|
807 |
-
#: yit-functions.php:
|
808 |
msgctxt "Term action"
|
809 |
msgid "Edit"
|
810 |
msgstr "Modifica"
|
811 |
|
812 |
-
#: yit-functions.php:
|
813 |
msgctxt "Term action"
|
814 |
msgid "Duplicate"
|
815 |
msgstr "Duplica"
|
816 |
|
817 |
-
#: yit-functions.php:
|
818 |
msgctxt "Term action"
|
819 |
msgid "Delete"
|
820 |
msgstr "Elimina"
|
821 |
|
822 |
-
#: yit-plugin.php:
|
823 |
msgctxt "Plugin Row Meta"
|
824 |
msgid "Live Demo"
|
825 |
msgstr "Live Demo"
|
826 |
|
827 |
-
#: yit-plugin.php:
|
828 |
msgctxt "Plugin Row Meta"
|
829 |
msgid "Documentation"
|
830 |
msgstr "Documentazione"
|
831 |
|
832 |
-
#: yit-plugin.php:
|
833 |
msgctxt "Plugin Row Meta"
|
834 |
msgid "Support"
|
835 |
msgstr "Assistenza"
|
836 |
|
837 |
-
#: yit-plugin.php:
|
838 |
msgctxt "Plugin Row Meta"
|
839 |
msgid "Premium version"
|
840 |
msgstr "Versione premium"
|
841 |
|
842 |
-
#: yit-plugin.php:
|
843 |
msgctxt "Action links"
|
844 |
msgid "Settings"
|
845 |
msgstr "Impostazioni"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-06-22 14:49:54+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-06-08 08:19:01+0000\n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
+
#: includes/class-yit-assets.php:146 yit-functions.php:1962
|
17 |
+
msgid "Confirm trash"
|
18 |
+
msgstr "Conferma eliminazione"
|
19 |
+
|
20 |
+
#: includes/class-yit-assets.php:147
|
21 |
+
msgid "Are you sure you want to trash the selected items?"
|
22 |
+
msgstr "Se sicuro di voler spostare nel cestino gli elementi selezionati?"
|
23 |
+
|
24 |
+
#: includes/class-yit-assets.php:149 yit-functions.php:1979
|
25 |
+
#: yit-functions.php:2106
|
26 |
+
msgid "Confirm delete"
|
27 |
+
msgstr "Conferma eliminazione"
|
28 |
+
|
29 |
+
#: includes/class-yit-assets.php:150
|
30 |
+
msgid "Are you sure you want to delete the selected items?"
|
31 |
+
msgstr "Se sicuro di voler eliminare gli elementi selezionati?"
|
32 |
+
|
33 |
+
#: includes/class-yit-assets.php:150 yit-functions.php:1896
|
34 |
+
#: yit-functions.php:2054
|
35 |
+
msgid ""
|
36 |
+
"This action cannot be undone and you will not be able to recover this data."
|
37 |
+
msgstr ""
|
38 |
+
"Quest'azione non può essere annullata e non sarà possibile recuperare questi "
|
39 |
+
"dati."
|
40 |
+
|
41 |
+
#: includes/class-yit-assets.php:162
|
42 |
msgid "Clear"
|
43 |
msgstr "Rimuovi"
|
44 |
|
45 |
+
#: includes/class-yit-assets.php:163
|
46 |
msgid "Clear color"
|
47 |
msgstr "Rimuovi colore"
|
48 |
|
49 |
+
#: includes/class-yit-assets.php:164
|
50 |
msgid "Default"
|
51 |
msgstr "Predefinito"
|
52 |
|
53 |
+
#: includes/class-yit-assets.php:165
|
54 |
msgid "Select default color"
|
55 |
msgstr "Seleziona il colore predefinito"
|
56 |
|
57 |
+
#: includes/class-yit-assets.php:166
|
58 |
msgid "Select Color"
|
59 |
msgstr "Seleziona il colore"
|
60 |
|
61 |
+
#: includes/class-yit-assets.php:167
|
62 |
msgid "Color value"
|
63 |
msgstr "Valore del colore"
|
64 |
|
65 |
+
#: includes/class-yit-help-desk.php:152
|
66 |
+
msgid "There was an error with your request; please try again later."
|
67 |
+
msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."
|
68 |
+
|
69 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:423
|
70 |
msgid "The changes you have made will be lost if you leave this page."
|
71 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
72 |
|
83 |
msgid "How to install premium version"
|
84 |
msgstr "Come installare la versione premium"
|
85 |
|
86 |
+
#: includes/class-yit-plugin-panel.php:652
|
87 |
#: includes/class-yit-plugin-subpanel.php:132
|
88 |
msgid "Save Changes"
|
89 |
msgstr "Salva modifiche"
|
90 |
|
91 |
+
#: includes/class-yit-plugin-panel.php:657
|
92 |
#: includes/class-yit-plugin-subpanel.php:136
|
93 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
94 |
msgid ""
|
97 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
98 |
"reimpostate."
|
99 |
|
100 |
+
#: includes/class-yit-plugin-panel.php:657
|
101 |
#: includes/class-yit-plugin-subpanel.php:136
|
102 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
103 |
msgid "Are you sure?"
|
104 |
msgstr "Sei sicuro?"
|
105 |
|
106 |
+
#: includes/class-yit-plugin-panel.php:661
|
107 |
#: includes/class-yit-plugin-subpanel.php:139
|
108 |
msgid "Reset to default"
|
109 |
msgstr "Ripristina configurazione predefinita"
|
110 |
|
111 |
+
#: includes/class-yit-plugin-panel.php:959
|
112 |
msgid ""
|
113 |
"The element you have entered already exists. Please, enter another name."
|
114 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
115 |
|
116 |
+
#: includes/class-yit-plugin-panel.php:960
|
117 |
msgid "Settings saved"
|
118 |
msgstr "Impostazioni salvate"
|
119 |
|
120 |
+
#: includes/class-yit-plugin-panel.php:961
|
121 |
msgid "Settings reset"
|
122 |
msgstr "Impostazioni azzerate"
|
123 |
|
124 |
+
#: includes/class-yit-plugin-panel.php:962
|
125 |
msgid "Element deleted correctly."
|
126 |
msgstr "Elemento rimosso correttamente."
|
127 |
|
128 |
+
#: includes/class-yit-plugin-panel.php:963
|
129 |
+
#: includes/class-yit-plugin-panel.php:964
|
130 |
msgid "Element updated correctly."
|
131 |
msgstr "Elemento aggiornato correttamente."
|
132 |
|
133 |
+
#: includes/class-yit-plugin-panel.php:965
|
134 |
msgid "Database imported correctly."
|
135 |
msgstr "Database importato correttamente."
|
136 |
|
137 |
+
#: includes/class-yit-plugin-panel.php:966
|
138 |
msgid "An error has occurred during import. Please try again."
|
139 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
140 |
|
141 |
+
#: includes/class-yit-plugin-panel.php:967
|
142 |
msgid "The added file is not valid."
|
143 |
msgstr "Il file aggiunto non è valido."
|
144 |
|
145 |
+
#: includes/class-yit-plugin-panel.php:968
|
146 |
msgid "Sorry, import is disabled."
|
147 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
148 |
|
149 |
+
#: includes/class-yit-plugin-panel.php:969
|
150 |
msgid "Sorting successful."
|
151 |
msgstr "Ordinamento effettuato con successo."
|
152 |
|
153 |
+
#: includes/class-yit-plugin-panel.php:1437
|
154 |
msgid "We need your support"
|
155 |
msgstr "Abbiamo bisogno del tuo sostegno"
|
156 |
|
157 |
+
#: includes/class-yit-plugin-panel.php:1438
|
158 |
msgid "to keep updating and improving the plugin. Please,"
|
159 |
msgstr "per poter continuare ad aggiornare e migliorare il plugin."
|
160 |
|
161 |
+
#: includes/class-yit-plugin-panel.php:1440
|
162 |
msgid "help us by leaving a good review"
|
163 |
msgstr "Puoi darci una mano lasciando una recensione positiva"
|
164 |
|
165 |
+
#: includes/class-yit-plugin-panel.php:1441
|
166 |
msgid ":) Thanks!"
|
167 |
msgstr ":) Grazie!"
|
168 |
|
623 |
msgstr "Requisiti plugin"
|
624 |
|
625 |
#. translators: %s is the title of the post object.
|
626 |
+
#: yit-functions.php:1894
|
627 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
628 |
msgstr "Sei sicuro di voler spostare \"%s\" nel cestino?"
|
629 |
|
630 |
#. translators: %s is the title of the post object.
|
631 |
+
#: yit-functions.php:1896 yit-functions.php:2054
|
632 |
msgid "Are you sure you want to delete \"%s\"?"
|
633 |
msgstr "Sei sicuro di voler eliminare \"%s\"?"
|
634 |
|
635 |
+
#: yit-functions.php:1992 yit-functions.php:2000 yit-functions.php:2117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
msgid "Further actions"
|
637 |
msgstr "Altre azioni"
|
638 |
|
639 |
+
#: yit-plugin.php:204
|
640 |
msgid "License"
|
641 |
msgstr "Chiave di licenza"
|
642 |
|
655 |
msgid "YITH"
|
656 |
msgstr "YITH"
|
657 |
|
658 |
+
#: includes/class-yit-assets.php:134
|
659 |
msgctxt "Button text"
|
660 |
msgid "Confirm"
|
661 |
msgstr "Conferma"
|
662 |
|
663 |
+
#: includes/class-yit-assets.php:135
|
664 |
msgctxt "Button text"
|
665 |
msgid "Cancel"
|
666 |
msgstr "Annulla"
|
667 |
|
668 |
+
#: includes/class-yit-assets.php:148 yit-functions.php:1964
|
669 |
+
msgctxt "Trash confirmation action"
|
670 |
+
msgid "Yes, move to trash"
|
671 |
+
msgstr "Sì, sposta nel cestino"
|
672 |
+
|
673 |
+
#: includes/class-yit-assets.php:151 yit-functions.php:1981
|
674 |
+
msgctxt "Delete confirmation action"
|
675 |
+
msgid "Yes, delete permanently"
|
676 |
+
msgstr "Sì, elimina definitivamente"
|
677 |
+
|
678 |
+
#: yit-functions.php:2108
|
679 |
+
msgctxt "Delete confirmation action"
|
680 |
+
msgid "Yes, delete"
|
681 |
+
msgstr "Sì, elimina"
|
682 |
+
|
683 |
+
#: includes/class-yit-plugin-panel.php:488
|
684 |
+
msgctxt "Help tab name"
|
685 |
+
msgid "Help"
|
686 |
+
msgstr "Help"
|
687 |
+
|
688 |
+
#. translators: 1. Plugin name.
|
689 |
+
#: includes/class-yit-plugin-panel.php:798
|
690 |
+
msgctxt "Help tab default title"
|
691 |
+
msgid "Thank you for purchasing %s!"
|
692 |
+
msgstr "Grazie per aver acquistato %s!"
|
693 |
+
|
694 |
+
#: includes/class-yit-plugin-panel.php:799
|
695 |
+
msgctxt "Help tab default description"
|
696 |
+
msgid ""
|
697 |
+
"We want to help you to enjoy a wonderful experience with all our products."
|
698 |
+
msgstr ""
|
699 |
+
"Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
|
700 |
+
"prodotti."
|
701 |
+
|
702 |
#: includes/class-yith-dashboard.php:96
|
703 |
msgctxt "Plugin FW"
|
704 |
msgid "View Changelog"
|
792 |
msgid "Link values together"
|
793 |
msgstr "Collega i valori"
|
794 |
|
795 |
+
#: templates/fields/image-dimensions.php:18
|
796 |
+
msgctxt "Image width field label"
|
797 |
+
msgid "Width"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: templates/fields/image-dimensions.php:23
|
801 |
+
#, fuzzy
|
802 |
+
msgctxt "Image height field label"
|
803 |
+
msgid "Height"
|
804 |
+
msgstr "A destra"
|
805 |
+
|
806 |
#: templates/fields/onoff.php:28
|
807 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
808 |
msgid "YES"
|
813 |
msgid "NO"
|
814 |
msgstr "NO"
|
815 |
|
816 |
+
#. translators: 1. Url to EN playlist.
|
817 |
+
#: templates/panel/help-tab.php:87
|
818 |
+
msgctxt "Help tab view all video link"
|
819 |
+
msgid ""
|
820 |
+
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
|
821 |
+
"learn more >"
|
822 |
+
msgstr ""
|
823 |
+
"Per saperne di più, vedi la <a href=\"%s\" target=\"_blank\">Playlist "
|
824 |
+
"completa su Youtube</a>>"
|
825 |
+
|
826 |
+
#: templates/panel/help-tab.php:94
|
827 |
+
msgctxt "Help tab Watch Videotutorials link"
|
828 |
+
msgid "Videos are also available in:"
|
829 |
+
msgstr "I video sono disponibili anche in:"
|
830 |
+
|
831 |
+
#: templates/panel/help-tab.php:137
|
832 |
+
msgctxt "Help tab Watch Videotutorials link"
|
833 |
+
msgid "Watch our videotutorials"
|
834 |
+
msgstr "Guarda i nostri video tutorial"
|
835 |
+
|
836 |
+
#: templates/panel/help-tab.php:140
|
837 |
+
msgctxt "Help tab Watch Videotutorials link"
|
838 |
+
msgid "We show you some use cases"
|
839 |
+
msgstr "Ti mostriamo alcuni casi d'uso"
|
840 |
+
|
841 |
+
#: templates/panel/help-tab.php:124
|
842 |
+
msgctxt "Help tab Read Documentation link"
|
843 |
+
msgid "Read the documentation"
|
844 |
+
msgstr "Consulta la documentazione"
|
845 |
+
|
846 |
+
#: templates/panel/help-tab.php:127
|
847 |
+
msgctxt "Help tab Read Documentation link"
|
848 |
+
msgid "to learn from basics how it works"
|
849 |
+
msgstr "per imparare dalle basi come funziona"
|
850 |
+
|
851 |
+
#: templates/panel/help-tab.php:150
|
852 |
+
msgctxt "Help tab view FAQs link"
|
853 |
+
msgid "Check the FAQs"
|
854 |
+
msgstr "Controlla le FAQ"
|
855 |
+
|
856 |
+
#: templates/panel/help-tab.php:153
|
857 |
+
msgctxt "Help tab view FAQs link"
|
858 |
+
msgid "to find answers to your doubts"
|
859 |
+
msgstr "per trovare le risposte ai tuoi dubbi"
|
860 |
+
|
861 |
+
#: templates/panel/help-tab.php:169
|
862 |
+
msgctxt "Help tab FAQ title"
|
863 |
+
msgid "Last FAQs in our Help Center"
|
864 |
+
msgstr "Ultime FAQ nel nostro Centro Assistenza"
|
865 |
+
|
866 |
+
#: templates/panel/help-tab.php:183
|
867 |
+
msgctxt "Help tab FAQ link"
|
868 |
+
msgid "View all FAQs >"
|
869 |
+
msgstr "Vedi tutte le FAQ"
|
870 |
+
|
871 |
+
#: templates/panel/help-tab.php:192
|
872 |
+
msgctxt "Help tab submit ticket title"
|
873 |
+
msgid "Need help?"
|
874 |
+
msgstr "Ti serve aiuto?"
|
875 |
+
|
876 |
+
#: templates/panel/help-tab.php:195
|
877 |
+
msgctxt "Help tab submit ticket description"
|
878 |
+
msgid ""
|
879 |
+
"If you are experiencing some technical issue ask help to our developers. "
|
880 |
+
"Submit a ticket in our support desk and we will help you as soon as possible."
|
881 |
+
msgstr ""
|
882 |
+
"Se stai riscontrando problemi tecnici chiedi aiuto ai nostri sviluppatori. "
|
883 |
+
"Invia un ticket dalla nostra piattaforma di supporto e ti daremo assistenza "
|
884 |
+
"il più presto possibile."
|
885 |
+
|
886 |
+
#: templates/panel/help-tab.php:203
|
887 |
+
msgctxt "Help tab submit ticket button"
|
888 |
+
msgid "Submit a ticket"
|
889 |
+
msgstr "Invia un ticket"
|
890 |
+
|
891 |
+
#: yit-functions.php:1908
|
892 |
msgctxt "Post action"
|
893 |
msgid "Preview"
|
894 |
msgstr "Anteprima"
|
895 |
|
896 |
+
#: yit-functions.php:1917
|
897 |
msgctxt "Post action"
|
898 |
msgid "View"
|
899 |
msgstr "Visualizza"
|
900 |
|
901 |
+
#: yit-functions.php:1928
|
902 |
msgctxt "Post action"
|
903 |
msgid "Edit"
|
904 |
msgstr "Modifica"
|
905 |
|
906 |
+
#: yit-functions.php:1936
|
907 |
msgctxt "Post action"
|
908 |
msgid "Duplicate"
|
909 |
msgstr "Duplica"
|
910 |
|
911 |
+
#: yit-functions.php:1948
|
912 |
msgctxt "Post action"
|
913 |
msgid "Restore"
|
914 |
msgstr "Ripristina"
|
915 |
|
916 |
+
#: yit-functions.php:1956
|
917 |
msgctxt "Post action"
|
918 |
msgid "Trash"
|
919 |
msgstr "Cestina"
|
920 |
|
921 |
+
#: yit-functions.php:1972
|
922 |
msgctxt "Post action"
|
923 |
msgid "Delete Permanently"
|
924 |
msgstr "Cancella definitivamente"
|
925 |
|
926 |
+
#: yit-functions.php:2068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
927 |
msgctxt "Term action"
|
928 |
msgid "View"
|
929 |
msgstr "Visualizza"
|
930 |
|
931 |
+
#: yit-functions.php:2078
|
932 |
msgctxt "Term action"
|
933 |
msgid "Edit"
|
934 |
msgstr "Modifica"
|
935 |
|
936 |
+
#: yit-functions.php:2086
|
937 |
msgctxt "Term action"
|
938 |
msgid "Duplicate"
|
939 |
msgstr "Duplica"
|
940 |
|
941 |
+
#: yit-functions.php:2099
|
942 |
msgctxt "Term action"
|
943 |
msgid "Delete"
|
944 |
msgstr "Elimina"
|
945 |
|
946 |
+
#: yit-plugin.php:85
|
947 |
msgctxt "Plugin Row Meta"
|
948 |
msgid "Live Demo"
|
949 |
msgstr "Live Demo"
|
950 |
|
951 |
+
#: yit-plugin.php:89
|
952 |
msgctxt "Plugin Row Meta"
|
953 |
msgid "Documentation"
|
954 |
msgstr "Documentazione"
|
955 |
|
956 |
+
#: yit-plugin.php:93
|
957 |
msgctxt "Plugin Row Meta"
|
958 |
msgid "Support"
|
959 |
msgstr "Assistenza"
|
960 |
|
961 |
+
#: yit-plugin.php:97
|
962 |
msgctxt "Plugin Row Meta"
|
963 |
msgid "Premium version"
|
964 |
msgstr "Versione premium"
|
965 |
|
966 |
+
#: yit-plugin.php:200
|
967 |
msgctxt "Action links"
|
968 |
msgid "Settings"
|
969 |
msgstr "Impostazioni"
|
plugin-fw/languages/yith-plugin-fw-nl_NL.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-nl_NL.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -13,31 +13,63 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
-
#: includes/class-yit-assets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Clear"
|
18 |
msgstr "Wissen"
|
19 |
|
20 |
-
#: includes/class-yit-assets.php:
|
21 |
msgid "Clear color"
|
22 |
msgstr "Kleur wissen"
|
23 |
|
24 |
-
#: includes/class-yit-assets.php:
|
25 |
msgid "Default"
|
26 |
msgstr "Standaard"
|
27 |
|
28 |
-
#: includes/class-yit-assets.php:
|
29 |
msgid "Select default color"
|
30 |
msgstr "Standaardkleur selecteren"
|
31 |
|
32 |
-
#: includes/class-yit-assets.php:
|
33 |
msgid "Select Color"
|
34 |
msgstr "Kleur selecteren"
|
35 |
|
36 |
-
#: includes/class-yit-assets.php:
|
37 |
msgid "Color value"
|
38 |
msgstr "Kleurwaarde"
|
39 |
|
40 |
-
#: includes/class-yit-
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid "The changes you have made will be lost if you leave this page."
|
42 |
msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
|
43 |
|
@@ -54,12 +86,12 @@ msgstr "Instellingen"
|
|
54 |
msgid "How to install premium version"
|
55 |
msgstr "Hoe installeer ik de premium versie"
|
56 |
|
57 |
-
#: includes/class-yit-plugin-panel.php:
|
58 |
#: includes/class-yit-plugin-subpanel.php:132
|
59 |
msgid "Save Changes"
|
60 |
msgstr "Wijzigingen opslaan"
|
61 |
|
62 |
-
#: includes/class-yit-plugin-panel.php:
|
63 |
#: includes/class-yit-plugin-subpanel.php:136
|
64 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
65 |
msgid ""
|
@@ -67,72 +99,72 @@ msgid ""
|
|
67 |
msgstr ""
|
68 |
"Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
|
69 |
|
70 |
-
#: includes/class-yit-plugin-panel.php:
|
71 |
#: includes/class-yit-plugin-subpanel.php:136
|
72 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
73 |
msgid "Are you sure?"
|
74 |
msgstr "Weet je het zeker?"
|
75 |
|
76 |
-
#: includes/class-yit-plugin-panel.php:
|
77 |
#: includes/class-yit-plugin-subpanel.php:139
|
78 |
msgid "Reset to default"
|
79 |
msgstr "Resetten naar standaard"
|
80 |
|
81 |
-
#: includes/class-yit-plugin-panel.php:
|
82 |
msgid ""
|
83 |
"The element you have entered already exists. Please, enter another name."
|
84 |
msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
|
85 |
|
86 |
-
#: includes/class-yit-plugin-panel.php:
|
87 |
msgid "Settings saved"
|
88 |
msgstr "Instellingen opgeslagen"
|
89 |
|
90 |
-
#: includes/class-yit-plugin-panel.php:
|
91 |
msgid "Settings reset"
|
92 |
msgstr "Instellingen resetten"
|
93 |
|
94 |
-
#: includes/class-yit-plugin-panel.php:
|
95 |
msgid "Element deleted correctly."
|
96 |
msgstr "Element juist verwijderd."
|
97 |
|
98 |
-
#: includes/class-yit-plugin-panel.php:
|
99 |
-
#: includes/class-yit-plugin-panel.php:
|
100 |
msgid "Element updated correctly."
|
101 |
msgstr "Element juist geüpdatet."
|
102 |
|
103 |
-
#: includes/class-yit-plugin-panel.php:
|
104 |
msgid "Database imported correctly."
|
105 |
msgstr "Database juist geïmporteerd."
|
106 |
|
107 |
-
#: includes/class-yit-plugin-panel.php:
|
108 |
msgid "An error has occurred during import. Please try again."
|
109 |
msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
|
110 |
|
111 |
-
#: includes/class-yit-plugin-panel.php:
|
112 |
msgid "The added file is not valid."
|
113 |
msgstr "Het toegevoegde bestand is niet geldig."
|
114 |
|
115 |
-
#: includes/class-yit-plugin-panel.php:
|
116 |
msgid "Sorry, import is disabled."
|
117 |
msgstr "Sorry, importeren is uitgeschakeld."
|
118 |
|
119 |
-
#: includes/class-yit-plugin-panel.php:
|
120 |
msgid "Sorting successful."
|
121 |
msgstr "Succesvol gesorteerd."
|
122 |
|
123 |
-
#: includes/class-yit-plugin-panel.php:
|
124 |
msgid "We need your support"
|
125 |
msgstr "We hebben je hulp nodig"
|
126 |
|
127 |
-
#: includes/class-yit-plugin-panel.php:
|
128 |
msgid "to keep updating and improving the plugin. Please,"
|
129 |
msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
|
130 |
|
131 |
-
#: includes/class-yit-plugin-panel.php:
|
132 |
msgid "help us by leaving a good review"
|
133 |
msgstr "help ons door een goede beoordeling achter te laten"
|
134 |
|
135 |
-
#: includes/class-yit-plugin-panel.php:
|
136 |
msgid ":) Thanks!"
|
137 |
msgstr ":) Bedankt!"
|
138 |
|
@@ -591,35 +623,20 @@ msgid "Plugins Requirements"
|
|
591 |
msgstr "Plugin benodigdheden"
|
592 |
|
593 |
#. translators: %s is the title of the post object.
|
594 |
-
#: yit-functions.php:
|
595 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
596 |
msgstr "Weet je zeker dat je \"%s\" naar de prullenbak wilt verplaatsen?"
|
597 |
|
598 |
#. translators: %s is the title of the post object.
|
599 |
-
#: yit-functions.php:
|
600 |
msgid "Are you sure you want to delete \"%s\"?"
|
601 |
msgstr "Weet je zeker dat je \"%s\" wilt verwijderen?"
|
602 |
|
603 |
-
#: yit-functions.php:
|
604 |
-
msgid ""
|
605 |
-
"This action cannot be undone and you will be not able to recover this data."
|
606 |
-
msgstr ""
|
607 |
-
"Deze actie kan niet ongedaan gemaakt worden and je zult deze gegevens niet "
|
608 |
-
"kunnen herstellen."
|
609 |
-
|
610 |
-
#: yit-functions.php:1891
|
611 |
-
msgid "Confirm trash"
|
612 |
-
msgstr "Verplaatsen naar prullenbak bevestigen"
|
613 |
-
|
614 |
-
#: yit-functions.php:1908 yit-functions.php:2035
|
615 |
-
msgid "Confirm delete"
|
616 |
-
msgstr "Verwijderen bevestigen"
|
617 |
-
|
618 |
-
#: yit-functions.php:1921 yit-functions.php:1929 yit-functions.php:2046
|
619 |
msgid "Further actions"
|
620 |
msgstr "Verdere acties"
|
621 |
|
622 |
-
#: yit-plugin.php:
|
623 |
msgid "License"
|
624 |
msgstr "Licentie"
|
625 |
|
@@ -638,16 +655,50 @@ msgctxt "[gutenberg]: Category Name"
|
|
638 |
msgid "YITH"
|
639 |
msgstr "YITH"
|
640 |
|
641 |
-
#: includes/class-yit-assets.php:
|
642 |
msgctxt "Button text"
|
643 |
msgid "Confirm"
|
644 |
msgstr "Bevestigen"
|
645 |
|
646 |
-
#: includes/class-yit-assets.php:
|
647 |
msgctxt "Button text"
|
648 |
msgid "Cancel"
|
649 |
msgstr "Annuleren"
|
650 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
#: includes/class-yith-dashboard.php:96
|
652 |
msgctxt "Plugin FW"
|
653 |
msgid "View Changelog"
|
@@ -740,6 +791,17 @@ msgctxt "Tooltip in the \"Dimensions\" field"
|
|
740 |
msgid "Link values together"
|
741 |
msgstr "Waarden aan elkaar koppelen"
|
742 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
#: templates/fields/onoff.php:28
|
744 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
745 |
msgid "YES"
|
@@ -750,92 +812,157 @@ msgctxt "YES/NO button: use MAX 4 characters!"
|
|
750 |
msgid "NO"
|
751 |
msgstr "NEE"
|
752 |
|
753 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
msgctxt "Post action"
|
755 |
msgid "Preview"
|
756 |
msgstr "Voorbeeld"
|
757 |
|
758 |
-
#: yit-functions.php:
|
759 |
msgctxt "Post action"
|
760 |
msgid "View"
|
761 |
msgstr "Bekijken"
|
762 |
|
763 |
-
#: yit-functions.php:
|
764 |
msgctxt "Post action"
|
765 |
msgid "Edit"
|
766 |
msgstr "Bewerken"
|
767 |
|
768 |
-
#: yit-functions.php:
|
769 |
msgctxt "Post action"
|
770 |
msgid "Duplicate"
|
771 |
msgstr "Dupliceren"
|
772 |
|
773 |
-
#: yit-functions.php:
|
774 |
msgctxt "Post action"
|
775 |
msgid "Restore"
|
776 |
msgstr "Herstellen"
|
777 |
|
778 |
-
#: yit-functions.php:
|
779 |
msgctxt "Post action"
|
780 |
msgid "Trash"
|
781 |
msgstr "Prullenbak"
|
782 |
|
783 |
-
#: yit-functions.php:
|
784 |
msgctxt "Post action"
|
785 |
msgid "Delete Permanently"
|
786 |
msgstr "Permanent verijwderen"
|
787 |
|
788 |
-
#: yit-functions.php:
|
789 |
-
msgctxt "Trash confirmation action"
|
790 |
-
msgid "Yes, trash"
|
791 |
-
msgstr "Ja, verplaatsen naar prullenbak"
|
792 |
-
|
793 |
-
#: yit-functions.php:1910 yit-functions.php:2037
|
794 |
-
msgctxt "Delete confirmation action"
|
795 |
-
msgid "Yes, delete"
|
796 |
-
msgstr "Ja, verwijderen"
|
797 |
-
|
798 |
-
#: yit-functions.php:1997
|
799 |
msgctxt "Term action"
|
800 |
msgid "View"
|
801 |
msgstr "Bekijken"
|
802 |
|
803 |
-
#: yit-functions.php:
|
804 |
msgctxt "Term action"
|
805 |
msgid "Edit"
|
806 |
msgstr "Bewerken"
|
807 |
|
808 |
-
#: yit-functions.php:
|
809 |
msgctxt "Term action"
|
810 |
msgid "Duplicate"
|
811 |
msgstr "Dupliceren"
|
812 |
|
813 |
-
#: yit-functions.php:
|
814 |
msgctxt "Term action"
|
815 |
msgid "Delete"
|
816 |
msgstr "Verwijderen"
|
817 |
|
818 |
-
#: yit-plugin.php:
|
819 |
msgctxt "Plugin Row Meta"
|
820 |
msgid "Live Demo"
|
821 |
msgstr "Live Demo"
|
822 |
|
823 |
-
#: yit-plugin.php:
|
824 |
msgctxt "Plugin Row Meta"
|
825 |
msgid "Documentation"
|
826 |
msgstr "Documentatie"
|
827 |
|
828 |
-
#: yit-plugin.php:
|
829 |
msgctxt "Plugin Row Meta"
|
830 |
msgid "Support"
|
831 |
msgstr "Ondersteuning"
|
832 |
|
833 |
-
#: yit-plugin.php:
|
834 |
msgctxt "Plugin Row Meta"
|
835 |
msgid "Premium version"
|
836 |
msgstr "Premium versie"
|
837 |
|
838 |
-
#: yit-plugin.php:
|
839 |
msgctxt "Action links"
|
840 |
msgid "Settings"
|
841 |
msgstr "Instellingen"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-06-22 14:49:54+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-06-08 08:45:36+0000\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
15 |
|
16 |
+
#: includes/class-yit-assets.php:146 yit-functions.php:1962
|
17 |
+
msgid "Confirm trash"
|
18 |
+
msgstr "Verplaatsen naar prullenbak bevestigen"
|
19 |
+
|
20 |
+
#: includes/class-yit-assets.php:147
|
21 |
+
msgid "Are you sure you want to trash the selected items?"
|
22 |
+
msgstr ""
|
23 |
+
"Weet je zeker dat je het geselecteerde item naar de prullenbak wilt "
|
24 |
+
"verplaatsen?"
|
25 |
+
|
26 |
+
#: includes/class-yit-assets.php:149 yit-functions.php:1979
|
27 |
+
#: yit-functions.php:2106
|
28 |
+
msgid "Confirm delete"
|
29 |
+
msgstr "Verwijderen bevestigen"
|
30 |
+
|
31 |
+
#: includes/class-yit-assets.php:150
|
32 |
+
msgid "Are you sure you want to delete the selected items?"
|
33 |
+
msgstr "Weet je zeker dat je de geselecteerde items wilt verwijderen?"
|
34 |
+
|
35 |
+
#: includes/class-yit-assets.php:150 yit-functions.php:1896
|
36 |
+
#: yit-functions.php:2054
|
37 |
+
msgid ""
|
38 |
+
"This action cannot be undone and you will not be able to recover this data."
|
39 |
+
msgstr ""
|
40 |
+
"Deze actie kan niet ongedaan gemaakt worden en je zult deze gegevens niet "
|
41 |
+
"kunnen herstellen."
|
42 |
+
|
43 |
+
#: includes/class-yit-assets.php:162
|
44 |
msgid "Clear"
|
45 |
msgstr "Wissen"
|
46 |
|
47 |
+
#: includes/class-yit-assets.php:163
|
48 |
msgid "Clear color"
|
49 |
msgstr "Kleur wissen"
|
50 |
|
51 |
+
#: includes/class-yit-assets.php:164
|
52 |
msgid "Default"
|
53 |
msgstr "Standaard"
|
54 |
|
55 |
+
#: includes/class-yit-assets.php:165
|
56 |
msgid "Select default color"
|
57 |
msgstr "Standaardkleur selecteren"
|
58 |
|
59 |
+
#: includes/class-yit-assets.php:166
|
60 |
msgid "Select Color"
|
61 |
msgstr "Kleur selecteren"
|
62 |
|
63 |
+
#: includes/class-yit-assets.php:167
|
64 |
msgid "Color value"
|
65 |
msgstr "Kleurwaarde"
|
66 |
|
67 |
+
#: includes/class-yit-help-desk.php:152
|
68 |
+
msgid "There was an error with your request; please try again later."
|
69 |
+
msgstr ""
|
70 |
+
"Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."
|
71 |
+
|
72 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:423
|
73 |
msgid "The changes you have made will be lost if you leave this page."
|
74 |
msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
|
75 |
|
86 |
msgid "How to install premium version"
|
87 |
msgstr "Hoe installeer ik de premium versie"
|
88 |
|
89 |
+
#: includes/class-yit-plugin-panel.php:652
|
90 |
#: includes/class-yit-plugin-subpanel.php:132
|
91 |
msgid "Save Changes"
|
92 |
msgstr "Wijzigingen opslaan"
|
93 |
|
94 |
+
#: includes/class-yit-plugin-panel.php:657
|
95 |
#: includes/class-yit-plugin-subpanel.php:136
|
96 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
97 |
msgid ""
|
99 |
msgstr ""
|
100 |
"Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
|
101 |
|
102 |
+
#: includes/class-yit-plugin-panel.php:657
|
103 |
#: includes/class-yit-plugin-subpanel.php:136
|
104 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
105 |
msgid "Are you sure?"
|
106 |
msgstr "Weet je het zeker?"
|
107 |
|
108 |
+
#: includes/class-yit-plugin-panel.php:661
|
109 |
#: includes/class-yit-plugin-subpanel.php:139
|
110 |
msgid "Reset to default"
|
111 |
msgstr "Resetten naar standaard"
|
112 |
|
113 |
+
#: includes/class-yit-plugin-panel.php:959
|
114 |
msgid ""
|
115 |
"The element you have entered already exists. Please, enter another name."
|
116 |
msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
|
117 |
|
118 |
+
#: includes/class-yit-plugin-panel.php:960
|
119 |
msgid "Settings saved"
|
120 |
msgstr "Instellingen opgeslagen"
|
121 |
|
122 |
+
#: includes/class-yit-plugin-panel.php:961
|
123 |
msgid "Settings reset"
|
124 |
msgstr "Instellingen resetten"
|
125 |
|
126 |
+
#: includes/class-yit-plugin-panel.php:962
|
127 |
msgid "Element deleted correctly."
|
128 |
msgstr "Element juist verwijderd."
|
129 |
|
130 |
+
#: includes/class-yit-plugin-panel.php:963
|
131 |
+
#: includes/class-yit-plugin-panel.php:964
|
132 |
msgid "Element updated correctly."
|
133 |
msgstr "Element juist geüpdatet."
|
134 |
|
135 |
+
#: includes/class-yit-plugin-panel.php:965
|
136 |
msgid "Database imported correctly."
|
137 |
msgstr "Database juist geïmporteerd."
|
138 |
|
139 |
+
#: includes/class-yit-plugin-panel.php:966
|
140 |
msgid "An error has occurred during import. Please try again."
|
141 |
msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
|
142 |
|
143 |
+
#: includes/class-yit-plugin-panel.php:967
|
144 |
msgid "The added file is not valid."
|
145 |
msgstr "Het toegevoegde bestand is niet geldig."
|
146 |
|
147 |
+
#: includes/class-yit-plugin-panel.php:968
|
148 |
msgid "Sorry, import is disabled."
|
149 |
msgstr "Sorry, importeren is uitgeschakeld."
|
150 |
|
151 |
+
#: includes/class-yit-plugin-panel.php:969
|
152 |
msgid "Sorting successful."
|
153 |
msgstr "Succesvol gesorteerd."
|
154 |
|
155 |
+
#: includes/class-yit-plugin-panel.php:1437
|
156 |
msgid "We need your support"
|
157 |
msgstr "We hebben je hulp nodig"
|
158 |
|
159 |
+
#: includes/class-yit-plugin-panel.php:1438
|
160 |
msgid "to keep updating and improving the plugin. Please,"
|
161 |
msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
|
162 |
|
163 |
+
#: includes/class-yit-plugin-panel.php:1440
|
164 |
msgid "help us by leaving a good review"
|
165 |
msgstr "help ons door een goede beoordeling achter te laten"
|
166 |
|
167 |
+
#: includes/class-yit-plugin-panel.php:1441
|
168 |
msgid ":) Thanks!"
|
169 |
msgstr ":) Bedankt!"
|
170 |
|
623 |
msgstr "Plugin benodigdheden"
|
624 |
|
625 |
#. translators: %s is the title of the post object.
|
626 |
+
#: yit-functions.php:1894
|
627 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
628 |
msgstr "Weet je zeker dat je \"%s\" naar de prullenbak wilt verplaatsen?"
|
629 |
|
630 |
#. translators: %s is the title of the post object.
|
631 |
+
#: yit-functions.php:1896 yit-functions.php:2054
|
632 |
msgid "Are you sure you want to delete \"%s\"?"
|
633 |
msgstr "Weet je zeker dat je \"%s\" wilt verwijderen?"
|
634 |
|
635 |
+
#: yit-functions.php:1992 yit-functions.php:2000 yit-functions.php:2117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
msgid "Further actions"
|
637 |
msgstr "Verdere acties"
|
638 |
|
639 |
+
#: yit-plugin.php:204
|
640 |
msgid "License"
|
641 |
msgstr "Licentie"
|
642 |
|
655 |
msgid "YITH"
|
656 |
msgstr "YITH"
|
657 |
|
658 |
+
#: includes/class-yit-assets.php:134
|
659 |
msgctxt "Button text"
|
660 |
msgid "Confirm"
|
661 |
msgstr "Bevestigen"
|
662 |
|
663 |
+
#: includes/class-yit-assets.php:135
|
664 |
msgctxt "Button text"
|
665 |
msgid "Cancel"
|
666 |
msgstr "Annuleren"
|
667 |
|
668 |
+
#: includes/class-yit-assets.php:148 yit-functions.php:1964
|
669 |
+
msgctxt "Trash confirmation action"
|
670 |
+
msgid "Yes, move to trash"
|
671 |
+
msgstr "Ja, verplaatsen naar prullenbak"
|
672 |
+
|
673 |
+
#: includes/class-yit-assets.php:151 yit-functions.php:1981
|
674 |
+
msgctxt "Delete confirmation action"
|
675 |
+
msgid "Yes, delete permanently"
|
676 |
+
msgstr "Ja, permanent verwijderen"
|
677 |
+
|
678 |
+
#: yit-functions.php:2108
|
679 |
+
msgctxt "Delete confirmation action"
|
680 |
+
msgid "Yes, delete"
|
681 |
+
msgstr "Ja, verwijderen"
|
682 |
+
|
683 |
+
#: includes/class-yit-plugin-panel.php:488
|
684 |
+
msgctxt "Help tab name"
|
685 |
+
msgid "Help"
|
686 |
+
msgstr "Help"
|
687 |
+
|
688 |
+
#. translators: 1. Plugin name.
|
689 |
+
#: includes/class-yit-plugin-panel.php:798
|
690 |
+
msgctxt "Help tab default title"
|
691 |
+
msgid "Thank you for purchasing %s!"
|
692 |
+
msgstr "Bedankt voor het kopen van %s!"
|
693 |
+
|
694 |
+
#: includes/class-yit-plugin-panel.php:799
|
695 |
+
msgctxt "Help tab default description"
|
696 |
+
msgid ""
|
697 |
+
"We want to help you to enjoy a wonderful experience with all our products."
|
698 |
+
msgstr ""
|
699 |
+
"We willen je helpen om te genieten van de geweldige ervaringen met al onze "
|
700 |
+
"producten."
|
701 |
+
|
702 |
#: includes/class-yith-dashboard.php:96
|
703 |
msgctxt "Plugin FW"
|
704 |
msgid "View Changelog"
|
791 |
msgid "Link values together"
|
792 |
msgstr "Waarden aan elkaar koppelen"
|
793 |
|
794 |
+
#: templates/fields/image-dimensions.php:18
|
795 |
+
msgctxt "Image width field label"
|
796 |
+
msgid "Width"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: templates/fields/image-dimensions.php:23
|
800 |
+
#, fuzzy
|
801 |
+
msgctxt "Image height field label"
|
802 |
+
msgid "Height"
|
803 |
+
msgstr "Rechts"
|
804 |
+
|
805 |
#: templates/fields/onoff.php:28
|
806 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
807 |
msgid "YES"
|
812 |
msgid "NO"
|
813 |
msgstr "NEE"
|
814 |
|
815 |
+
#. translators: 1. Url to EN playlist.
|
816 |
+
#: templates/panel/help-tab.php:87
|
817 |
+
msgctxt "Help tab view all video link"
|
818 |
+
msgid ""
|
819 |
+
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
|
820 |
+
"learn more >"
|
821 |
+
msgstr ""
|
822 |
+
"Bekijk de volledige <a href=\"%s\" target=\"_blank\">Playlist op Youtube</a> "
|
823 |
+
"om meer te weten te komen >"
|
824 |
+
|
825 |
+
#: templates/panel/help-tab.php:94
|
826 |
+
msgctxt "Help tab Watch Videotutorials link"
|
827 |
+
msgid "Videos are also available in:"
|
828 |
+
msgstr "Videos zijn ook beschikbaar in:"
|
829 |
+
|
830 |
+
#: templates/panel/help-tab.php:137
|
831 |
+
msgctxt "Help tab Watch Videotutorials link"
|
832 |
+
msgid "Watch our videotutorials"
|
833 |
+
msgstr "Bekijk onze video uitleg"
|
834 |
+
|
835 |
+
#: templates/panel/help-tab.php:140
|
836 |
+
msgctxt "Help tab Watch Videotutorials link"
|
837 |
+
msgid "We show you some use cases"
|
838 |
+
msgstr "We tonen je enkele gebruikscasussen"
|
839 |
+
|
840 |
+
#: templates/panel/help-tab.php:124
|
841 |
+
msgctxt "Help tab Read Documentation link"
|
842 |
+
msgid "Read the documentation"
|
843 |
+
msgstr "Lees de documentatie"
|
844 |
+
|
845 |
+
#: templates/panel/help-tab.php:127
|
846 |
+
msgctxt "Help tab Read Documentation link"
|
847 |
+
msgid "to learn from basics how it works"
|
848 |
+
msgstr "om vanaf de basis te leren hoe het werkt"
|
849 |
+
|
850 |
+
#: templates/panel/help-tab.php:150
|
851 |
+
msgctxt "Help tab view FAQs link"
|
852 |
+
msgid "Check the FAQs"
|
853 |
+
msgstr "Check de FAQs"
|
854 |
+
|
855 |
+
#: templates/panel/help-tab.php:153
|
856 |
+
msgctxt "Help tab view FAQs link"
|
857 |
+
msgid "to find answers to your doubts"
|
858 |
+
msgstr "om je twijfels te beantwoorden"
|
859 |
+
|
860 |
+
#: templates/panel/help-tab.php:169
|
861 |
+
msgctxt "Help tab FAQ title"
|
862 |
+
msgid "Last FAQs in our Help Center"
|
863 |
+
msgstr "Laatste FAQs in ons Help Center"
|
864 |
+
|
865 |
+
#: templates/panel/help-tab.php:183
|
866 |
+
msgctxt "Help tab FAQ link"
|
867 |
+
msgid "View all FAQs >"
|
868 |
+
msgstr "Bekijk alle FAQs >"
|
869 |
+
|
870 |
+
#: templates/panel/help-tab.php:192
|
871 |
+
msgctxt "Help tab submit ticket title"
|
872 |
+
msgid "Need help?"
|
873 |
+
msgstr "Hulp nodig?"
|
874 |
+
|
875 |
+
#: templates/panel/help-tab.php:195
|
876 |
+
msgctxt "Help tab submit ticket description"
|
877 |
+
msgid ""
|
878 |
+
"If you are experiencing some technical issue ask help to our developers. "
|
879 |
+
"Submit a ticket in our support desk and we will help you as soon as possible."
|
880 |
+
msgstr ""
|
881 |
+
"Als je een technisch probleem ondervindt, vraag dan hulp aan onze "
|
882 |
+
"developers. Je kunt een ticket indienen bij onze supportdesk en we helpen je "
|
883 |
+
"zo snel mogelijk verder."
|
884 |
+
|
885 |
+
#: templates/panel/help-tab.php:203
|
886 |
+
msgctxt "Help tab submit ticket button"
|
887 |
+
msgid "Submit a ticket"
|
888 |
+
msgstr "Verstuur een ticket"
|
889 |
+
|
890 |
+
#: yit-functions.php:1908
|
891 |
msgctxt "Post action"
|
892 |
msgid "Preview"
|
893 |
msgstr "Voorbeeld"
|
894 |
|
895 |
+
#: yit-functions.php:1917
|
896 |
msgctxt "Post action"
|
897 |
msgid "View"
|
898 |
msgstr "Bekijken"
|
899 |
|
900 |
+
#: yit-functions.php:1928
|
901 |
msgctxt "Post action"
|
902 |
msgid "Edit"
|
903 |
msgstr "Bewerken"
|
904 |
|
905 |
+
#: yit-functions.php:1936
|
906 |
msgctxt "Post action"
|
907 |
msgid "Duplicate"
|
908 |
msgstr "Dupliceren"
|
909 |
|
910 |
+
#: yit-functions.php:1948
|
911 |
msgctxt "Post action"
|
912 |
msgid "Restore"
|
913 |
msgstr "Herstellen"
|
914 |
|
915 |
+
#: yit-functions.php:1956
|
916 |
msgctxt "Post action"
|
917 |
msgid "Trash"
|
918 |
msgstr "Prullenbak"
|
919 |
|
920 |
+
#: yit-functions.php:1972
|
921 |
msgctxt "Post action"
|
922 |
msgid "Delete Permanently"
|
923 |
msgstr "Permanent verijwderen"
|
924 |
|
925 |
+
#: yit-functions.php:2068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
926 |
msgctxt "Term action"
|
927 |
msgid "View"
|
928 |
msgstr "Bekijken"
|
929 |
|
930 |
+
#: yit-functions.php:2078
|
931 |
msgctxt "Term action"
|
932 |
msgid "Edit"
|
933 |
msgstr "Bewerken"
|
934 |
|
935 |
+
#: yit-functions.php:2086
|
936 |
msgctxt "Term action"
|
937 |
msgid "Duplicate"
|
938 |
msgstr "Dupliceren"
|
939 |
|
940 |
+
#: yit-functions.php:2099
|
941 |
msgctxt "Term action"
|
942 |
msgid "Delete"
|
943 |
msgstr "Verwijderen"
|
944 |
|
945 |
+
#: yit-plugin.php:85
|
946 |
msgctxt "Plugin Row Meta"
|
947 |
msgid "Live Demo"
|
948 |
msgstr "Live Demo"
|
949 |
|
950 |
+
#: yit-plugin.php:89
|
951 |
msgctxt "Plugin Row Meta"
|
952 |
msgid "Documentation"
|
953 |
msgstr "Documentatie"
|
954 |
|
955 |
+
#: yit-plugin.php:93
|
956 |
msgctxt "Plugin Row Meta"
|
957 |
msgid "Support"
|
958 |
msgstr "Ondersteuning"
|
959 |
|
960 |
+
#: yit-plugin.php:97
|
961 |
msgctxt "Plugin Row Meta"
|
962 |
msgid "Premium version"
|
963 |
msgstr "Premium versie"
|
964 |
|
965 |
+
#: yit-plugin.php:200
|
966 |
msgctxt "Action links"
|
967 |
msgid "Settings"
|
968 |
msgstr "Instellingen"
|
plugin-fw/languages/yith-plugin-fw.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -24,31 +24,57 @@ msgstr ""
|
|
24 |
"X-Textdomain-Support: yes\n"
|
25 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
26 |
|
27 |
-
#: includes/class-yit-assets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
msgid "Clear"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/class-yit-assets.php:
|
32 |
msgid "Clear color"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/class-yit-assets.php:
|
36 |
msgid "Default"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/class-yit-assets.php:
|
40 |
msgid "Select default color"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/class-yit-assets.php:
|
44 |
msgid "Select Color"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/class-yit-assets.php:
|
48 |
msgid "Color value"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/class-yit-
|
|
|
|
|
|
|
|
|
52 |
msgid "The changes you have made will be lost if you leave this page."
|
53 |
msgstr ""
|
54 |
|
@@ -65,82 +91,82 @@ msgstr ""
|
|
65 |
msgid "How to install premium version"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-yit-plugin-panel.php:
|
69 |
#: includes/class-yit-plugin-subpanel.php:132
|
70 |
msgid "Save Changes"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/class-yit-plugin-panel.php:
|
74 |
#: includes/class-yit-plugin-subpanel.php:136
|
75 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
76 |
msgid "If you continue with this action, you will reset all options in this page."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/class-yit-plugin-panel.php:
|
80 |
#: includes/class-yit-plugin-subpanel.php:136
|
81 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
82 |
msgid "Are you sure?"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/class-yit-plugin-panel.php:
|
86 |
#: includes/class-yit-plugin-subpanel.php:139
|
87 |
msgid "Reset to default"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/class-yit-plugin-panel.php:
|
91 |
msgid "The element you have entered already exists. Please, enter another name."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/class-yit-plugin-panel.php:
|
95 |
msgid "Settings saved"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/class-yit-plugin-panel.php:
|
99 |
msgid "Settings reset"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-yit-plugin-panel.php:
|
103 |
msgid "Element deleted correctly."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/class-yit-plugin-panel.php:
|
107 |
-
#: includes/class-yit-plugin-panel.php:
|
108 |
msgid "Element updated correctly."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-yit-plugin-panel.php:
|
112 |
msgid "Database imported correctly."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/class-yit-plugin-panel.php:
|
116 |
msgid "An error has occurred during import. Please try again."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-yit-plugin-panel.php:
|
120 |
msgid "The added file is not valid."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: includes/class-yit-plugin-panel.php:
|
124 |
msgid "Sorry, import is disabled."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-yit-plugin-panel.php:
|
128 |
msgid "Sorting successful."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-yit-plugin-panel.php:
|
132 |
msgid "We need your support"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-yit-plugin-panel.php:
|
136 |
msgid "to keep updating and improving the plugin. Please,"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-yit-plugin-panel.php:
|
140 |
msgid "help us by leaving a good review"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-yit-plugin-panel.php:
|
144 |
msgid ":) Thanks!"
|
145 |
msgstr ""
|
146 |
|
@@ -573,33 +599,21 @@ msgstr ""
|
|
573 |
msgid "Plugins Requirements"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: yit-functions.php:
|
577 |
#. translators: %s is the title of the post object.
|
578 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: yit-functions.php:
|
582 |
#. translators: %s is the title of the post object.
|
583 |
msgid "Are you sure you want to delete \"%s\"?"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: yit-functions.php:
|
587 |
-
msgid "This action cannot be undone and you will be not able to recover this data."
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: yit-functions.php:1891
|
591 |
-
msgid "Confirm trash"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: yit-functions.php:1908 yit-functions.php:2035
|
595 |
-
msgid "Confirm delete"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: yit-functions.php:1921 yit-functions.php:1929 yit-functions.php:2046
|
599 |
msgid "Further actions"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: yit-plugin.php:
|
603 |
msgid "License"
|
604 |
msgstr ""
|
605 |
|
@@ -618,16 +632,47 @@ msgctxt "[gutenberg]: Category Name"
|
|
618 |
msgid "YITH"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-yit-assets.php:
|
622 |
msgctxt "Button text"
|
623 |
msgid "Confirm"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: includes/class-yit-assets.php:
|
627 |
msgctxt "Button text"
|
628 |
msgid "Cancel"
|
629 |
msgstr ""
|
630 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
#: includes/class-yith-dashboard.php:96
|
632 |
msgctxt "Plugin FW"
|
633 |
msgid "View Changelog"
|
@@ -714,6 +759,16 @@ msgctxt "Tooltip in the \"Dimensions\" field"
|
|
714 |
msgid "Link values together"
|
715 |
msgstr ""
|
716 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
717 |
#: templates/fields/onoff.php:28
|
718 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
719 |
msgid "YES"
|
@@ -724,92 +779,153 @@ msgctxt "YES/NO button: use MAX 4 characters!"
|
|
724 |
msgid "NO"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
728 |
msgctxt "Post action"
|
729 |
msgid "Preview"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: yit-functions.php:
|
733 |
msgctxt "Post action"
|
734 |
msgid "View"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: yit-functions.php:
|
738 |
msgctxt "Post action"
|
739 |
msgid "Edit"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: yit-functions.php:
|
743 |
msgctxt "Post action"
|
744 |
msgid "Duplicate"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: yit-functions.php:
|
748 |
msgctxt "Post action"
|
749 |
msgid "Restore"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: yit-functions.php:
|
753 |
msgctxt "Post action"
|
754 |
msgid "Trash"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: yit-functions.php:
|
758 |
msgctxt "Post action"
|
759 |
msgid "Delete Permanently"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: yit-functions.php:
|
763 |
-
msgctxt "Trash confirmation action"
|
764 |
-
msgid "Yes, trash"
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: yit-functions.php:1910 yit-functions.php:2037
|
768 |
-
msgctxt "Delete confirmation action"
|
769 |
-
msgid "Yes, delete"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: yit-functions.php:1997
|
773 |
msgctxt "Term action"
|
774 |
msgid "View"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: yit-functions.php:
|
778 |
msgctxt "Term action"
|
779 |
msgid "Edit"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: yit-functions.php:
|
783 |
msgctxt "Term action"
|
784 |
msgid "Duplicate"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: yit-functions.php:
|
788 |
msgctxt "Term action"
|
789 |
msgid "Delete"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: yit-plugin.php:
|
793 |
msgctxt "Plugin Row Meta"
|
794 |
msgid "Live Demo"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: yit-plugin.php:
|
798 |
msgctxt "Plugin Row Meta"
|
799 |
msgid "Documentation"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: yit-plugin.php:
|
803 |
msgctxt "Plugin Row Meta"
|
804 |
msgid "Support"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: yit-plugin.php:
|
808 |
msgctxt "Plugin Row Meta"
|
809 |
msgid "Premium version"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: yit-plugin.php:
|
813 |
msgctxt "Action links"
|
814 |
msgid "Settings"
|
815 |
msgstr ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-06-22 14:49:54+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
24 |
"X-Textdomain-Support: yes\n"
|
25 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
26 |
|
27 |
+
#: includes/class-yit-assets.php:146 yit-functions.php:1962
|
28 |
+
msgid "Confirm trash"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: includes/class-yit-assets.php:147
|
32 |
+
msgid "Are you sure you want to trash the selected items?"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/class-yit-assets.php:149 yit-functions.php:1979
|
36 |
+
#: yit-functions.php:2106
|
37 |
+
msgid "Confirm delete"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: includes/class-yit-assets.php:150
|
41 |
+
msgid "Are you sure you want to delete the selected items?"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: includes/class-yit-assets.php:150 yit-functions.php:1896
|
45 |
+
#: yit-functions.php:2054
|
46 |
+
msgid "This action cannot be undone and you will not be able to recover this data."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-yit-assets.php:162
|
50 |
msgid "Clear"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: includes/class-yit-assets.php:163
|
54 |
msgid "Clear color"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/class-yit-assets.php:164
|
58 |
msgid "Default"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/class-yit-assets.php:165
|
62 |
msgid "Select default color"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/class-yit-assets.php:166
|
66 |
msgid "Select Color"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/class-yit-assets.php:167
|
70 |
msgid "Color value"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/class-yit-help-desk.php:152
|
74 |
+
msgid "There was an error with your request; please try again later."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:423
|
78 |
msgid "The changes you have made will be lost if you leave this page."
|
79 |
msgstr ""
|
80 |
|
91 |
msgid "How to install premium version"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/class-yit-plugin-panel.php:652
|
95 |
#: includes/class-yit-plugin-subpanel.php:132
|
96 |
msgid "Save Changes"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/class-yit-plugin-panel.php:657
|
100 |
#: includes/class-yit-plugin-subpanel.php:136
|
101 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
102 |
msgid "If you continue with this action, you will reset all options in this page."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/class-yit-plugin-panel.php:657
|
106 |
#: includes/class-yit-plugin-subpanel.php:136
|
107 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
108 |
msgid "Are you sure?"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-yit-plugin-panel.php:661
|
112 |
#: includes/class-yit-plugin-subpanel.php:139
|
113 |
msgid "Reset to default"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/class-yit-plugin-panel.php:959
|
117 |
msgid "The element you have entered already exists. Please, enter another name."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/class-yit-plugin-panel.php:960
|
121 |
msgid "Settings saved"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/class-yit-plugin-panel.php:961
|
125 |
msgid "Settings reset"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: includes/class-yit-plugin-panel.php:962
|
129 |
msgid "Element deleted correctly."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: includes/class-yit-plugin-panel.php:963
|
133 |
+
#: includes/class-yit-plugin-panel.php:964
|
134 |
msgid "Element updated correctly."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/class-yit-plugin-panel.php:965
|
138 |
msgid "Database imported correctly."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/class-yit-plugin-panel.php:966
|
142 |
msgid "An error has occurred during import. Please try again."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/class-yit-plugin-panel.php:967
|
146 |
msgid "The added file is not valid."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/class-yit-plugin-panel.php:968
|
150 |
msgid "Sorry, import is disabled."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/class-yit-plugin-panel.php:969
|
154 |
msgid "Sorting successful."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/class-yit-plugin-panel.php:1437
|
158 |
msgid "We need your support"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/class-yit-plugin-panel.php:1438
|
162 |
msgid "to keep updating and improving the plugin. Please,"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-yit-plugin-panel.php:1440
|
166 |
msgid "help us by leaving a good review"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/class-yit-plugin-panel.php:1441
|
170 |
msgid ":) Thanks!"
|
171 |
msgstr ""
|
172 |
|
599 |
msgid "Plugins Requirements"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: yit-functions.php:1894
|
603 |
#. translators: %s is the title of the post object.
|
604 |
msgid "Are you sure you want to move \"%s\" to trash?"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: yit-functions.php:1896 yit-functions.php:2054
|
608 |
#. translators: %s is the title of the post object.
|
609 |
msgid "Are you sure you want to delete \"%s\"?"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: yit-functions.php:1992 yit-functions.php:2000 yit-functions.php:2117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
msgid "Further actions"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: yit-plugin.php:204
|
617 |
msgid "License"
|
618 |
msgstr ""
|
619 |
|
632 |
msgid "YITH"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/class-yit-assets.php:134
|
636 |
msgctxt "Button text"
|
637 |
msgid "Confirm"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/class-yit-assets.php:135
|
641 |
msgctxt "Button text"
|
642 |
msgid "Cancel"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: includes/class-yit-assets.php:148 yit-functions.php:1964
|
646 |
+
msgctxt "Trash confirmation action"
|
647 |
+
msgid "Yes, move to trash"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/class-yit-assets.php:151 yit-functions.php:1981
|
651 |
+
msgctxt "Delete confirmation action"
|
652 |
+
msgid "Yes, delete permanently"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: yit-functions.php:2108
|
656 |
+
msgctxt "Delete confirmation action"
|
657 |
+
msgid "Yes, delete"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: includes/class-yit-plugin-panel.php:488
|
661 |
+
msgctxt "Help tab name"
|
662 |
+
msgid "Help"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: includes/class-yit-plugin-panel.php:798
|
666 |
+
#. translators: 1. Plugin name.
|
667 |
+
msgctxt "Help tab default title"
|
668 |
+
msgid "Thank you for purchasing %s!"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/class-yit-plugin-panel.php:799
|
672 |
+
msgctxt "Help tab default description"
|
673 |
+
msgid "We want to help you to enjoy a wonderful experience with all our products."
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
#: includes/class-yith-dashboard.php:96
|
677 |
msgctxt "Plugin FW"
|
678 |
msgid "View Changelog"
|
759 |
msgid "Link values together"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: templates/fields/image-dimensions.php:18
|
763 |
+
msgctxt "Image width field label"
|
764 |
+
msgid "Width"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: templates/fields/image-dimensions.php:23
|
768 |
+
msgctxt "Image height field label"
|
769 |
+
msgid "Height"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
#: templates/fields/onoff.php:28
|
773 |
msgctxt "YES/NO button: use MAX 4 characters!"
|
774 |
msgid "YES"
|
779 |
msgid "NO"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: templates/panel/help-tab.php:87
|
783 |
+
#. translators: 1. Url to EN playlist.
|
784 |
+
msgctxt "Help tab view all video link"
|
785 |
+
msgid ""
|
786 |
+
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
|
787 |
+
"learn more >"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: templates/panel/help-tab.php:94
|
791 |
+
msgctxt "Help tab Watch Videotutorials link"
|
792 |
+
msgid "Videos are also available in:"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: templates/panel/help-tab.php:137
|
796 |
+
msgctxt "Help tab Watch Videotutorials link"
|
797 |
+
msgid "Watch our videotutorials"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: templates/panel/help-tab.php:140
|
801 |
+
msgctxt "Help tab Watch Videotutorials link"
|
802 |
+
msgid "We show you some use cases"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: templates/panel/help-tab.php:124
|
806 |
+
msgctxt "Help tab Read Documentation link"
|
807 |
+
msgid "Read the documentation"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: templates/panel/help-tab.php:127
|
811 |
+
msgctxt "Help tab Read Documentation link"
|
812 |
+
msgid "to learn from basics how it works"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: templates/panel/help-tab.php:150
|
816 |
+
msgctxt "Help tab view FAQs link"
|
817 |
+
msgid "Check the FAQs"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: templates/panel/help-tab.php:153
|
821 |
+
msgctxt "Help tab view FAQs link"
|
822 |
+
msgid "to find answers to your doubts"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: templates/panel/help-tab.php:169
|
826 |
+
msgctxt "Help tab FAQ title"
|
827 |
+
msgid "Last FAQs in our Help Center"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: templates/panel/help-tab.php:183
|
831 |
+
msgctxt "Help tab FAQ link"
|
832 |
+
msgid "View all FAQs >"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: templates/panel/help-tab.php:192
|
836 |
+
msgctxt "Help tab submit ticket title"
|
837 |
+
msgid "Need help?"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: templates/panel/help-tab.php:195
|
841 |
+
msgctxt "Help tab submit ticket description"
|
842 |
+
msgid ""
|
843 |
+
"If you are experiencing some technical issue ask help to our developers. "
|
844 |
+
"Submit a ticket in our support desk and we will help you as soon as "
|
845 |
+
"possible."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: templates/panel/help-tab.php:203
|
849 |
+
msgctxt "Help tab submit ticket button"
|
850 |
+
msgid "Submit a ticket"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: yit-functions.php:1908
|
854 |
msgctxt "Post action"
|
855 |
msgid "Preview"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: yit-functions.php:1917
|
859 |
msgctxt "Post action"
|
860 |
msgid "View"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: yit-functions.php:1928
|
864 |
msgctxt "Post action"
|
865 |
msgid "Edit"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: yit-functions.php:1936
|
869 |
msgctxt "Post action"
|
870 |
msgid "Duplicate"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: yit-functions.php:1948
|
874 |
msgctxt "Post action"
|
875 |
msgid "Restore"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: yit-functions.php:1956
|
879 |
msgctxt "Post action"
|
880 |
msgid "Trash"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: yit-functions.php:1972
|
884 |
msgctxt "Post action"
|
885 |
msgid "Delete Permanently"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: yit-functions.php:2068
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
889 |
msgctxt "Term action"
|
890 |
msgid "View"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: yit-functions.php:2078
|
894 |
msgctxt "Term action"
|
895 |
msgid "Edit"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: yit-functions.php:2086
|
899 |
msgctxt "Term action"
|
900 |
msgid "Duplicate"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: yit-functions.php:2099
|
904 |
msgctxt "Term action"
|
905 |
msgid "Delete"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: yit-plugin.php:85
|
909 |
msgctxt "Plugin Row Meta"
|
910 |
msgid "Live Demo"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: yit-plugin.php:89
|
914 |
msgctxt "Plugin Row Meta"
|
915 |
msgid "Documentation"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: yit-plugin.php:93
|
919 |
msgctxt "Plugin Row Meta"
|
920 |
msgid "Support"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: yit-plugin.php:97
|
924 |
msgctxt "Plugin Row Meta"
|
925 |
msgid "Premium version"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: yit-plugin.php:200
|
929 |
msgctxt "Action links"
|
930 |
msgid "Settings"
|
931 |
msgstr ""
|
plugin-fw/templates/fields/ajax-posts.php
CHANGED
@@ -36,13 +36,18 @@ if ( $no_value ) {
|
|
36 |
$value = array();
|
37 |
}
|
38 |
|
39 |
-
$default_data
|
40 |
'action' => 'yith_plugin_fw_json_search_posts',
|
41 |
'placeholder' => __( 'Search Posts', 'yith-plugin-fw' ),
|
42 |
'allow_clear' => false,
|
43 |
);
|
44 |
-
$data
|
45 |
-
$show_id
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
// Separate select2 needed data and other data.
|
48 |
$select2_custom_attributes = array();
|
@@ -60,13 +65,22 @@ foreach ( $data as $d_key => $d_value ) {
|
|
60 |
$data_selected = array();
|
61 |
if ( ! empty( $value ) ) {
|
62 |
if ( $multiple ) {
|
63 |
-
$value
|
64 |
-
|
65 |
-
$data_selected[ $_post_id ] = get_the_title( $_post_id ) . ( $show_id ? " (#{$_post_id})" : '' );
|
66 |
-
}
|
67 |
} else {
|
68 |
-
$
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
}
|
72 |
|
36 |
$value = array();
|
37 |
}
|
38 |
|
39 |
+
$default_data = array(
|
40 |
'action' => 'yith_plugin_fw_json_search_posts',
|
41 |
'placeholder' => __( 'Search Posts', 'yith-plugin-fw' ),
|
42 |
'allow_clear' => false,
|
43 |
);
|
44 |
+
$data = wp_parse_args( $data, $default_data );
|
45 |
+
$show_id = isset( $data['show_id'] ) && $data['show_id'];
|
46 |
+
$the_post_type = isset( $data['post_type'] ) ? $data['post_type'] : 'post';
|
47 |
+
|
48 |
+
if ( ! isset( $data['show_id'] ) && in_array( $data['action'], array( 'woocommerce_json_search_products', 'woocommerce_json_search_products_and_variations' ), true ) ) {
|
49 |
+
$show_id = true; // Set show_id to true by default if this is a WC product search, since it includes the product ID by default.
|
50 |
+
}
|
51 |
|
52 |
// Separate select2 needed data and other data.
|
53 |
$select2_custom_attributes = array();
|
65 |
$data_selected = array();
|
66 |
if ( ! empty( $value ) ) {
|
67 |
if ( $multiple ) {
|
68 |
+
$value = is_array( $value ) ? $value : explode( ',', $value );
|
69 |
+
$selected_ids = array_filter( array_map( 'absint', $value ) );
|
|
|
|
|
70 |
} else {
|
71 |
+
$selected_ids = array( absint( $value ) );
|
72 |
+
}
|
73 |
+
|
74 |
+
foreach ( $selected_ids as $selected_id ) {
|
75 |
+
$the_title = yith_plugin_fw_get_post_formatted_name(
|
76 |
+
$selected_id,
|
77 |
+
array(
|
78 |
+
'post-type' => $the_post_type,
|
79 |
+
'show-id' => $show_id,
|
80 |
+
)
|
81 |
+
);
|
82 |
+
|
83 |
+
$data_selected[ $selected_id ] = wp_strip_all_tags( $the_title );
|
84 |
}
|
85 |
}
|
86 |
|
plugin-fw/templates/fields/image-dimensions.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Template for displaying the image-dimensions field
|
4 |
+
*
|
5 |
+
* @var array $field The field.
|
6 |
+
* @package YITH\PluginFramework\Templates\Fields
|
7 |
+
*/
|
8 |
+
|
9 |
+
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
10 |
+
|
11 |
+
list ( $field_id, $class, $name, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value' );
|
12 |
+
|
13 |
+
$value = isset( $value ) && is_array( $value ) ? $value : array();
|
14 |
+
|
15 |
+
?>
|
16 |
+
<div class="yith-plugin-fw-image-dimensions" id="<?php echo esc_attr( $field_id ); ?>">
|
17 |
+
<div class="yith-image-width">
|
18 |
+
<label for="<?php echo esc_attr( $name . '_width' ); ?>"><?php echo esc_html_x( 'Width', 'Image width field label', 'yith-plugin-fw' ); ?></label>
|
19 |
+
<input type="number" id="<?php echo esc_attr( $name . '_width' ); ?>" name="<?php echo esc_attr( $name . '[width]' ); ?>"
|
20 |
+
value="<?php echo isset( $value['width'] ) ? absint( $value['width'] ) : 0; ?>" step="1" min="0" />
|
21 |
+
</div>
|
22 |
+
<div class="yith-image-height">
|
23 |
+
<label for="<?php echo esc_attr( $name . '_height' ); ?>"><?php echo esc_html_x( 'Height', 'Image height field label', 'yith-plugin-fw' ); ?></label>
|
24 |
+
<input type="number" id="<?php echo esc_attr( $name . '_height' ); ?>" name="<?php echo esc_attr( $name . '[height]' ); ?>"
|
25 |
+
value="<?php echo isset( $value['height'] ) ? absint( $value['height'] ) : 0; ?>" step="1" min="0" />
|
26 |
+
</div>
|
27 |
+
</div>
|
plugin-fw/templates/fields/text-array.php
CHANGED
@@ -8,28 +8,58 @@
|
|
8 |
|
9 |
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
10 |
|
11 |
-
list ( $field_id, $name, $value, $fields, $size ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value', 'fields', 'size' );
|
|
|
|
|
|
|
|
|
12 |
|
13 |
$value = isset( $value ) && is_array( $value ) ? $value : array();
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
/>
|
32 |
-
</
|
33 |
-
|
34 |
-
|
35 |
-
|
|
8 |
|
9 |
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
10 |
|
11 |
+
list ( $field_id, $name, $value, $fields, $size, $inline ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value', 'fields', 'size', 'inline' );
|
12 |
+
|
13 |
+
if ( empty( $fields ) ) {
|
14 |
+
return;
|
15 |
+
}
|
16 |
|
17 |
$value = isset( $value ) && is_array( $value ) ? $value : array();
|
18 |
+
|
19 |
+
// Let's build the text array!
|
20 |
+
$text_array = array();
|
21 |
+
foreach ( $fields as $field_name => $single_field ) {
|
22 |
+
$text_array[ $field_name ]['label'] = $single_field;
|
23 |
+
$text_array[ $field_name ]['name'] = "{$name}[{$field_name}]";
|
24 |
+
$text_array[ $field_name ]['id'] = "{$field_id}_{$field_name}";
|
25 |
+
$text_array[ $field_name ]['value'] = isset( $value[ $field_name ] ) ? $value[ $field_name ] : '';
|
26 |
+
}
|
27 |
+
|
28 |
+
if ( empty( $inline ) ) : ?>
|
29 |
+
|
30 |
+
<table class="yith-plugin-fw-text-array-table">
|
31 |
+
<?php foreach ( $text_array as $key => $single ) : ?>
|
32 |
+
<tr>
|
33 |
+
<td><?php echo esc_html( $single['label'] ); ?></td>
|
34 |
+
<td>
|
35 |
+
<input type="text" id="<?php echo esc_attr( $single['id'] ); ?>"
|
36 |
+
name="<?php echo esc_attr( $single['name'] ); ?>"
|
37 |
+
value="<?php echo esc_attr( $single['value'] ); ?>"
|
38 |
+
<?php if ( isset( $size ) ) : ?>
|
39 |
+
style="width: <?php echo absint( $size ); ?>px"
|
40 |
+
<?php endif; ?>
|
41 |
+
/>
|
42 |
+
</td>
|
43 |
+
</tr>
|
44 |
+
<?php endforeach ?>
|
45 |
+
</table>
|
46 |
+
|
47 |
+
<?php else : ?>
|
48 |
+
|
49 |
+
<div class="yith-plugin-fw-text-array-inline">
|
50 |
+
<?php foreach ( $text_array as $key => $single ) : ?>
|
51 |
+
<div class="yith-single-text"
|
52 |
+
<?php if ( isset( $size ) ) : ?>
|
53 |
+
style="width: <?php echo absint( $size ); ?>px"
|
54 |
+
<?php endif; ?>
|
55 |
+
>
|
56 |
+
<label for="<?php echo esc_attr( $single['id'] ); ?>"><?php echo esc_html( $single['label'] ); ?></label>
|
57 |
+
<input type="text" id="<?php echo esc_attr( $single['id'] ); ?>"
|
58 |
+
name="<?php echo esc_attr( $single['name'] ); ?>"
|
59 |
+
value="<?php echo esc_attr( $single['value'] ); ?>"
|
60 |
/>
|
61 |
+
</div>
|
62 |
+
<?php endforeach ?>
|
63 |
+
</div>
|
64 |
+
|
65 |
+
<?php endif; ?>
|
plugin-fw/templates/panel/help-tab.php
ADDED
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The Template for displaying the Help tab.
|
4 |
+
*
|
5 |
+
* @var array $options Array of options.
|
6 |
+
* @var string $current_tab The current tab.
|
7 |
+
* @var string $current_sub_tab The current sub-tab.
|
8 |
+
* @var array $latest_articles Latest HC articles.
|
9 |
+
*
|
10 |
+
* @package YITH\PluginFramework\Templates
|
11 |
+
*/
|
12 |
+
|
13 |
+
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
14 |
+
|
15 |
+
$current_locale = substr( get_user_locale(), 0, 2 );
|
16 |
+
$the_title = $options['title'];
|
17 |
+
$the_description = $options['description'];
|
18 |
+
$show_articles = $options['show_hc_articles'] && ! empty( $latest_articles );
|
19 |
+
$show_submit_ticket = $options['show_submit_ticket'] && $options['submit_ticket_url'];
|
20 |
+
$has_video = $options['main_video'] && ! empty( $options['main_video']['url'] );
|
21 |
+
$show_view_all_faq = ! ! $options['hc_url'];
|
22 |
+
$has_any_playlist = ! ! $options['playlists'];
|
23 |
+
$has_additional_links = $has_any_playlist || ! ! $options['doc_url'] || $show_view_all_faq;
|
24 |
+
$has_default_playlist = $options['playlists'] && ! empty( $options['playlists'] );
|
25 |
+
|
26 |
+
// search for correct video url.
|
27 |
+
$video_url = false;
|
28 |
+
|
29 |
+
if ( $has_video ) {
|
30 |
+
if ( is_array( $options['main_video']['url'] ) ) {
|
31 |
+
if ( ! empty( $options['main_video']['url'][ $current_locale ] ) ) {
|
32 |
+
$video_url = $options['main_video']['url'][ $current_locale ];
|
33 |
+
} elseif ( ! empty( $options['main_video']['url']['en'] ) ) {
|
34 |
+
$video_url = $options['main_video']['url']['en'];
|
35 |
+
}
|
36 |
+
} else {
|
37 |
+
$video_url = $options['main_video']['url'];
|
38 |
+
}
|
39 |
+
}
|
40 |
+
|
41 |
+
// search for correct playlist.
|
42 |
+
$default_playlist = false;
|
43 |
+
|
44 |
+
if ( $has_default_playlist ) {
|
45 |
+
if ( is_array( $options['playlists'] ) ) {
|
46 |
+
if ( ! empty( $options['playlists'][ $current_locale ] ) ) {
|
47 |
+
$default_playlist = $options['playlists'][ $current_locale ];
|
48 |
+
} elseif ( ! empty( $options['playlists']['en'] ) ) {
|
49 |
+
$default_playlist = $options['playlists']['en'];
|
50 |
+
}
|
51 |
+
} else {
|
52 |
+
$default_playlist = $options['playlists'];
|
53 |
+
}
|
54 |
+
}
|
55 |
+
?>
|
56 |
+
|
57 |
+
<div id='yith_plugin_fw_panel_help_tab' class='yith-plugin-fw-panel-help-tab-container'>
|
58 |
+
<div class="yith-plugin-fw-panel-help-tab-content">
|
59 |
+
<?php if ( $the_title ) : ?>
|
60 |
+
<h2 class="yith-plugin-fw-panel-help-tab-title"><?php echo wp_kses_post( $the_title ); ?></h2>
|
61 |
+
<?php endif; ?>
|
62 |
+
|
63 |
+
<?php if ( $the_description ) : ?>
|
64 |
+
<p class="yith-plugin-fw-panel-tab-description">
|
65 |
+
<?php echo wp_kses_post( $the_description ); ?>
|
66 |
+
</p>
|
67 |
+
<?php endif; ?>
|
68 |
+
|
69 |
+
<?php if ( $has_video || $has_additional_links ) : ?>
|
70 |
+
<div class="row">
|
71 |
+
<?php if ( $video_url ) : ?>
|
72 |
+
<div class="yith-plugin-fw-help-tab-video <?php echo $has_additional_links ? 'column-left' : 'full-width'; ?>">
|
73 |
+
<?php if ( isset( $options['main_video']['desc'] ) ) : ?>
|
74 |
+
<p class="video-description"><?php echo wp_kses_post( $options['main_video']['desc'] ); ?></p>
|
75 |
+
<?php endif; ?>
|
76 |
+
|
77 |
+
<div class="video-container">
|
78 |
+
<iframe src="<?php echo esc_url( $video_url ); ?>"></iframe>
|
79 |
+
</div>
|
80 |
+
|
81 |
+
<?php if ( $has_any_playlist ) : ?>
|
82 |
+
<div class="video-caption">
|
83 |
+
<?php if ( $default_playlist ) : ?>
|
84 |
+
<p>
|
85 |
+
<?php
|
86 |
+
// translators: 1. Url to EN playlist.
|
87 |
+
echo wp_kses_post( sprintf( _x( 'Check the full <a href="%s" target="_blank">Playlist on Youtube</a> to learn more >', 'Help tab view all video link', 'yith-plugin-fw' ), $default_playlist ) );
|
88 |
+
?>
|
89 |
+
</p>
|
90 |
+
<?php endif; ?>
|
91 |
+
|
92 |
+
<p>
|
93 |
+
<b>
|
94 |
+
<?php echo esc_html_x( 'Videos are also available in:', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
|
95 |
+
</b>
|
96 |
+
<?php $first = true; ?>
|
97 |
+
<?php foreach ( $options['playlists'] as $lang => $url ) : ?>
|
98 |
+
<?php
|
99 |
+
if ( $url === $default_playlist ) {
|
100 |
+
continue;
|
101 |
+
}
|
102 |
+
?>
|
103 |
+
<?php if ( ! $first ) : ?>
|
104 |
+
<span class="separator">|</span>
|
105 |
+
<?php endif; ?>
|
106 |
+
|
107 |
+
<a target="_blank" href="<?php echo esc_url( $url ); ?>"><?php echo esc_html( yit_get_language_from_locale( $lang, true ) ); ?></a>
|
108 |
+
|
109 |
+
<?php $first = false; ?>
|
110 |
+
<?php endforeach; ?>
|
111 |
+
</p>
|
112 |
+
</div>
|
113 |
+
<?php endif; ?>
|
114 |
+
</div>
|
115 |
+
<?php endif; ?>
|
116 |
+
|
117 |
+
<?php if ( $has_additional_links ) : ?>
|
118 |
+
<ul class="yith-plugin-fw-help-tab-actions <?php echo $video_url ? 'column-right' : 'full-width'; ?>">
|
119 |
+
|
120 |
+
<?php if ( $options['doc_url'] ) : ?>
|
121 |
+
<li class="read-documentation box-with-shadow">
|
122 |
+
<a target="_blank" href="<?php echo esc_url( $options['doc_url'] ); ?>">
|
123 |
+
<h4>
|
124 |
+
<?php echo esc_html_x( 'Read the documentation', 'Help tab Read Documentation link', 'yith-plugin-fw' ); ?>
|
125 |
+
</h4>
|
126 |
+
<p class="description">
|
127 |
+
<?php echo esc_html_x( 'to learn from basics how it works', 'Help tab Read Documentation link', 'yith-plugin-fw' ); ?>
|
128 |
+
</p>
|
129 |
+
</a>
|
130 |
+
</li>
|
131 |
+
<?php endif; ?>
|
132 |
+
|
133 |
+
<?php if ( $default_playlist ) : ?>
|
134 |
+
<li class="watch-videotutorials box-with-shadow">
|
135 |
+
<a target="_blank" href="<?php echo esc_url( $default_playlist ); ?>">
|
136 |
+
<h4>
|
137 |
+
<?php echo esc_html_x( 'Watch our videotutorials', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
|
138 |
+
</h4>
|
139 |
+
<p class="description">
|
140 |
+
<?php echo esc_html_x( 'We show you some use cases', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
|
141 |
+
</p>
|
142 |
+
</a>
|
143 |
+
</li>
|
144 |
+
<?php endif; ?>
|
145 |
+
|
146 |
+
<?php if ( $show_view_all_faq ) : ?>
|
147 |
+
<li class="check-faqs box-with-shadow">
|
148 |
+
<a target="_blank" href="<?php echo esc_url( $options['hc_url'] ); ?>">
|
149 |
+
<h4>
|
150 |
+
<?php echo esc_html_x( 'Check the FAQs', 'Help tab view FAQs link', 'yith-plugin-fw' ); ?>
|
151 |
+
</h4>
|
152 |
+
<p class="description">
|
153 |
+
<?php echo esc_html_x( 'to find answers to your doubts', 'Help tab view FAQs link', 'yith-plugin-fw' ); ?>
|
154 |
+
</p>
|
155 |
+
</a>
|
156 |
+
</li>
|
157 |
+
<?php endif; ?>
|
158 |
+
|
159 |
+
</ul>
|
160 |
+
<?php endif; ?>
|
161 |
+
</div>
|
162 |
+
<?php endif; ?>
|
163 |
+
|
164 |
+
|
165 |
+
<?php if ( $show_articles || $show_submit_ticket ) : ?>
|
166 |
+
<div class="row">
|
167 |
+
<?php if ( $show_articles ) : ?>
|
168 |
+
<div class="yith-plugin-fw-hc-articles <?php echo $show_submit_ticket ? 'column-left' : 'full-width'; ?>">
|
169 |
+
<h3 class="yith-plugin-fw-hc-articles-title"><?php echo esc_html_x( 'Last FAQs in our Help Center', 'Help tab FAQ title', 'yith-plugin-fw' ); ?></h3>
|
170 |
+
|
171 |
+
<ul class="yith-plugin-fw-hc-articles-list">
|
172 |
+
<?php foreach ( $latest_articles as $article ) : ?>
|
173 |
+
<li>
|
174 |
+
<a target="_blank" href="<?php echo esc_url( $article['url'] ); ?>">
|
175 |
+
<?php echo esc_html( $article['title'] ); ?>
|
176 |
+
</a>
|
177 |
+
</li>
|
178 |
+
<?php endforeach; ?>
|
179 |
+
</ul>
|
180 |
+
|
181 |
+
<?php if ( $show_view_all_faq ) : ?>
|
182 |
+
<a target="_blank" class="button button-secondary" href="<?php echo esc_url( $options['hc_url'] ); ?>">
|
183 |
+
<?php echo esc_html_x( 'View all FAQs >', 'Help tab FAQ link', 'yith-plugin-fw' ); ?>
|
184 |
+
</a>
|
185 |
+
<?php endif; ?>
|
186 |
+
</div>
|
187 |
+
<?php endif; ?>
|
188 |
+
|
189 |
+
<?php if ( $show_submit_ticket ) : ?>
|
190 |
+
<div class="yith-plugin-fw-submit-ticket <?php echo $show_articles ? 'column-right' : 'full-width'; ?>">
|
191 |
+
<div class="box-with-shadow">
|
192 |
+
<h3><?php echo esc_html_x( 'Need help?', 'Help tab submit ticket title', 'yith-plugin-fw' ); ?></h3>
|
193 |
+
<p>
|
194 |
+
<?php
|
195 |
+
echo esc_html_x(
|
196 |
+
'If you are experiencing some technical issue ask help to our developers. Submit a ticket in our support desk and we will help you as soon as possible.',
|
197 |
+
'Help tab submit ticket description',
|
198 |
+
'yith-plugin-fw'
|
199 |
+
);
|
200 |
+
?>
|
201 |
+
</p>
|
202 |
+
<a target="_blank" href="<?php echo esc_url( $options['submit_ticket_url'] ); ?>" class="yit-plugin-fw-submit-ticket-button button button-primary">
|
203 |
+
<?php echo esc_html_x( 'Submit a ticket', 'Help tab submit ticket button', 'yith-plugin-fw' ); ?>
|
204 |
+
</a>
|
205 |
+
</div>
|
206 |
+
</div>
|
207 |
+
<?php endif; ?>
|
208 |
+
<?php endif; ?>
|
209 |
+
</div>
|
210 |
+
</div>
|
211 |
+
</div>
|
plugin-fw/yit-functions.php
CHANGED
@@ -905,6 +905,77 @@ if ( ! function_exists( 'yit_wpml_object_id' ) ) {
|
|
905 |
}
|
906 |
}
|
907 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
if ( ! function_exists( 'yith_get_formatted_price' ) ) {
|
909 |
/**
|
910 |
* Format the price with a currency symbol.
|
@@ -1822,7 +1893,7 @@ if ( ! function_exists( 'yith_plugin_fw_get_default_post_actions' ) ) {
|
|
1822 |
// translators: %s is the title of the post object.
|
1823 |
'confirm-trash-message' => sprintf( __( 'Are you sure you want to move "%s" to trash?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ),
|
1824 |
// translators: %s is the title of the post object.
|
1825 |
-
'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will be
|
1826 |
);
|
1827 |
|
1828 |
$args = wp_parse_args( $args, $defaults );
|
@@ -1890,7 +1961,7 @@ if ( ! function_exists( 'yith_plugin_fw_get_default_post_actions' ) ) {
|
|
1890 |
$actions['trash']['confirm_data'] = array(
|
1891 |
'title' => __( 'Confirm trash', 'yith-plugin-fw' ),
|
1892 |
'message' => $args['confirm-trash-message'],
|
1893 |
-
'confirm-button' => _x( 'Yes, trash', 'Trash confirmation action', 'yith-plugin-fw' ),
|
1894 |
'confirm-button-type' => 'delete',
|
1895 |
);
|
1896 |
}
|
@@ -1907,7 +1978,7 @@ if ( ! function_exists( 'yith_plugin_fw_get_default_post_actions' ) ) {
|
|
1907 |
$actions['delete']['confirm_data'] = array(
|
1908 |
'title' => __( 'Confirm delete', 'yith-plugin-fw' ),
|
1909 |
'message' => $args['confirm-delete-message'],
|
1910 |
-
'confirm-button' => _x( 'Yes, delete', 'Delete confirmation action', 'yith-plugin-fw' ),
|
1911 |
'confirm-button-type' => 'delete',
|
1912 |
);
|
1913 |
}
|
@@ -1980,7 +2051,7 @@ if ( ! function_exists( 'yith_plugin_fw_get_default_term_actions' ) ) {
|
|
1980 |
'more-menu' => array(),
|
1981 |
'duplicate-url' => false,
|
1982 |
// translators: %s is the title of the post object.
|
1983 |
-
'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will be
|
1984 |
);
|
1985 |
|
1986 |
$args = wp_parse_args( $args, $defaults );
|
@@ -2077,3 +2148,71 @@ if ( ! function_exists( 'yith_plugin_fw_get_action_buttons' ) ) {
|
|
2077 |
return $actions_html;
|
2078 |
}
|
2079 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
}
|
906 |
}
|
907 |
|
908 |
+
if ( ! function_exists( 'yit_get_language_from_locale' ) ) {
|
909 |
+
/**
|
910 |
+
* Returns language name from locale code
|
911 |
+
*
|
912 |
+
* @param string $locale Locale to search for.
|
913 |
+
* @param bool $show_native Whether to return native language instead of english one.
|
914 |
+
*
|
915 |
+
* @return string Language name for passed locale; if can't find any, local itself is returned.
|
916 |
+
* @since 3.7.1
|
917 |
+
* @author Antonio La Rocca <antonio.larocca@yithemes.com>
|
918 |
+
*/
|
919 |
+
function yit_get_language_from_locale( $locale, $show_native = false ) {
|
920 |
+
require_once ABSPATH . 'wp-admin/includes/translation-install.php';
|
921 |
+
$translations = wp_get_available_translations();
|
922 |
+
|
923 |
+
if ( in_array( $locale, array( 'en', 'en_US' ), true ) ) {
|
924 |
+
/**
|
925 |
+
* English (United States) is not included in translations array
|
926 |
+
* We return fixed, non-localized string, as WordPress does
|
927 |
+
*
|
928 |
+
* @see {wp_dropdown_languages}
|
929 |
+
*/
|
930 |
+
return 'English';
|
931 |
+
}
|
932 |
+
|
933 |
+
if ( empty( $translations ) ) {
|
934 |
+
return $locale;
|
935 |
+
}
|
936 |
+
|
937 |
+
// perfect match.
|
938 |
+
$translation = isset( $translations[ $locale ] ) ? $translations[ $locale ] : false;
|
939 |
+
|
940 |
+
// check for no-dialect.
|
941 |
+
if ( 2 === strlen( $locale ) ) {
|
942 |
+
|
943 |
+
// first check for common occurrences.
|
944 |
+
if ( 'it' === $locale && isset( $translations['it_IT'] ) ) {
|
945 |
+
$translation = $translations['it_IT'];
|
946 |
+
} elseif ( 'es' === $locale && isset( $translations['es_ES'] ) ) {
|
947 |
+
$translation = $translations['es_ES'];
|
948 |
+
} elseif ( 'de' === $locale && isset( $translations['de_DE'] ) ) {
|
949 |
+
$translation = $translations['de_DE'];
|
950 |
+
} else {
|
951 |
+
foreach ( $translations as $translation_locale => $translation_details ) {
|
952 |
+
$no_dialect_locale = isset( $translation_details['iso'][1] ) ? $translation_details['iso'][1] : substr( $translation_locale, 0, 2 );
|
953 |
+
|
954 |
+
if ( $locale !== $no_dialect_locale ) {
|
955 |
+
continue;
|
956 |
+
}
|
957 |
+
|
958 |
+
$translation = $translation_details;
|
959 |
+
|
960 |
+
// remove dialect from names.
|
961 |
+
$translation['english_name'] = preg_replace( '/(.+) \(.*\)/', '$1', $translation['english_name'] );
|
962 |
+
|
963 |
+
// we found what we were looking for; break.
|
964 |
+
break;
|
965 |
+
}
|
966 |
+
}
|
967 |
+
}
|
968 |
+
|
969 |
+
if ( ! $translation ) {
|
970 |
+
return $locale;
|
971 |
+
}
|
972 |
+
|
973 |
+
$language_name = $show_native ? $translation['native_name'] : $translation['english_name'];
|
974 |
+
|
975 |
+
return $language_name;
|
976 |
+
}
|
977 |
+
}
|
978 |
+
|
979 |
if ( ! function_exists( 'yith_get_formatted_price' ) ) {
|
980 |
/**
|
981 |
* Format the price with a currency symbol.
|
1893 |
// translators: %s is the title of the post object.
|
1894 |
'confirm-trash-message' => sprintf( __( 'Are you sure you want to move "%s" to trash?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ),
|
1895 |
// translators: %s is the title of the post object.
|
1896 |
+
'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
|
1897 |
);
|
1898 |
|
1899 |
$args = wp_parse_args( $args, $defaults );
|
1961 |
$actions['trash']['confirm_data'] = array(
|
1962 |
'title' => __( 'Confirm trash', 'yith-plugin-fw' ),
|
1963 |
'message' => $args['confirm-trash-message'],
|
1964 |
+
'confirm-button' => _x( 'Yes, move to trash', 'Trash confirmation action', 'yith-plugin-fw' ),
|
1965 |
'confirm-button-type' => 'delete',
|
1966 |
);
|
1967 |
}
|
1978 |
$actions['delete']['confirm_data'] = array(
|
1979 |
'title' => __( 'Confirm delete', 'yith-plugin-fw' ),
|
1980 |
'message' => $args['confirm-delete-message'],
|
1981 |
+
'confirm-button' => _x( 'Yes, delete permanently', 'Delete confirmation action', 'yith-plugin-fw' ),
|
1982 |
'confirm-button-type' => 'delete',
|
1983 |
);
|
1984 |
}
|
2051 |
'more-menu' => array(),
|
2052 |
'duplicate-url' => false,
|
2053 |
// translators: %s is the title of the post object.
|
2054 |
+
'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
|
2055 |
);
|
2056 |
|
2057 |
$args = wp_parse_args( $args, $defaults );
|
2148 |
return $actions_html;
|
2149 |
}
|
2150 |
}
|
2151 |
+
|
2152 |
+
if ( ! function_exists( 'yith_plugin_fw_get_post_formatted_name' ) ) {
|
2153 |
+
/**
|
2154 |
+
* Get the formatted name for posts/products
|
2155 |
+
*
|
2156 |
+
* @param int|WP_Post|WC_Product $post The post ID, the post object, or the product object.
|
2157 |
+
* @param array $args Arguments.
|
2158 |
+
*
|
2159 |
+
* @return string
|
2160 |
+
* @since 3.7.2
|
2161 |
+
*/
|
2162 |
+
function yith_plugin_fw_get_post_formatted_name( $post, $args = array() ) {
|
2163 |
+
$defaults = array(
|
2164 |
+
'show-id' => false,
|
2165 |
+
'post-type' => false,
|
2166 |
+
);
|
2167 |
+
$args = wp_parse_args( $args, $defaults );
|
2168 |
+
$post_type = $args['post-type'];
|
2169 |
+
$show_id = $args['show-id'];
|
2170 |
+
|
2171 |
+
if ( is_a( $post, 'WP_Post' ) ) {
|
2172 |
+
$post_id = $post->ID;
|
2173 |
+
} elseif ( class_exists( 'WC_Product' ) && is_a( $post, 'WC_Product' ) ) {
|
2174 |
+
$post_id = $post->get_id();
|
2175 |
+
if ( false === $post_type ) {
|
2176 |
+
$post_type = is_a( $post, 'WC_Product_Variation' ) ? 'product_variation' : 'product';
|
2177 |
+
}
|
2178 |
+
} else {
|
2179 |
+
$post_id = absint( $post );
|
2180 |
+
}
|
2181 |
+
|
2182 |
+
if ( ! $post_type ) {
|
2183 |
+
$post_type = get_post_type( $post_id );
|
2184 |
+
}
|
2185 |
+
|
2186 |
+
$name = null;
|
2187 |
+
|
2188 |
+
switch ( $post_type ) {
|
2189 |
+
case 'product':
|
2190 |
+
case 'product_variation':
|
2191 |
+
$product = wc_get_product( $post );
|
2192 |
+
if ( $product ) {
|
2193 |
+
$name = $product->get_formatted_name();
|
2194 |
+
|
2195 |
+
if ( ! $show_id ) {
|
2196 |
+
|
2197 |
+
if ( $product->get_sku() ) {
|
2198 |
+
$identifier = $product->get_sku();
|
2199 |
+
} else {
|
2200 |
+
$identifier = '#' . $product->get_id();
|
2201 |
+
}
|
2202 |
+
|
2203 |
+
// Use normal replacing instead of regex since the identifier could be also the product SKU.
|
2204 |
+
$name = str_replace( "({$identifier})", '', $name );
|
2205 |
+
}
|
2206 |
+
}
|
2207 |
+
}
|
2208 |
+
|
2209 |
+
if ( is_null( $name ) ) {
|
2210 |
+
$name = get_the_title( $post_id );
|
2211 |
+
if ( $show_id ) {
|
2212 |
+
$name .= " (#{$post_id})";
|
2213 |
+
}
|
2214 |
+
}
|
2215 |
+
|
2216 |
+
return $name;
|
2217 |
+
}
|
2218 |
+
}
|
plugin-fw/yit-plugin.php
CHANGED
@@ -25,6 +25,7 @@ require_once 'includes/class-yit-plugin-common.php';
|
|
25 |
require_once 'includes/class-yit-gradients.php';
|
26 |
require_once 'includes/class-yit-plugin-licence.php';
|
27 |
require_once 'includes/class-yit-theme-licence.php';
|
|
|
28 |
require_once 'includes/class-yit-video.php';
|
29 |
require_once 'includes/class-yit-upgrade.php';
|
30 |
require_once 'includes/class-yit-pointers.php';
|
@@ -46,9 +47,9 @@ if ( class_exists( 'WP_Block_Type_Registry' ) ) {
|
|
46 |
require_once 'includes/builders/elementor/class-yith-elementor.php';
|
47 |
|
48 |
// load from theme folder...
|
49 |
-
load_textdomain( 'yith-plugin-fw', get_template_directory() . '/core/plugin-fw/yith-plugin-fw-' . apply_filters( 'plugin_locale',
|
50 |
// ...or from plugin folder.
|
51 |
-
load_textdomain( 'yith-plugin-fw', dirname( __FILE__ ) . '/languages/yith-plugin-fw-' . apply_filters( 'plugin_locale',
|
52 |
|
53 |
add_filter( 'plugin_row_meta', 'yit_plugin_fw_row_meta', 20, 4 );
|
54 |
|
25 |
require_once 'includes/class-yit-gradients.php';
|
26 |
require_once 'includes/class-yit-plugin-licence.php';
|
27 |
require_once 'includes/class-yit-theme-licence.php';
|
28 |
+
require_once 'includes/class-yit-help-desk.php';
|
29 |
require_once 'includes/class-yit-video.php';
|
30 |
require_once 'includes/class-yit-upgrade.php';
|
31 |
require_once 'includes/class-yit-pointers.php';
|
47 |
require_once 'includes/builders/elementor/class-yith-elementor.php';
|
48 |
|
49 |
// load from theme folder...
|
50 |
+
load_textdomain( 'yith-plugin-fw', get_template_directory() . '/core/plugin-fw/yith-plugin-fw-' . apply_filters( 'plugin_locale', determine_locale(), 'yith-plugin-fw' ) . '.mo' ) ||
|
51 |
// ...or from plugin folder.
|
52 |
+
load_textdomain( 'yith-plugin-fw', dirname( __FILE__ ) . '/languages/yith-plugin-fw-' . apply_filters( 'plugin_locale', determine_locale(), 'yith-plugin-fw' ) . '.mo' );
|
53 |
|
54 |
add_filter( 'plugin_row_meta', 'yit_plugin_fw_row_meta', 20, 4 );
|
55 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce search by sku, woocommerce search results, woocommerce search shortcode, woocommerce search page, woocommerce search form, woocommerce search filter, woocommerce search products, woocommerce search content, woocommerce search autocomplete, woocommerce advanced search, woocommerce search category, woocommerce search product attributes, woocommerce search by tag, woocommerce search by brand, woocommerce predictive, woocommerce live search, woocommerce single product search, woocommerce site search, woocommerce search tex, tajax, search, woocommerce, products, themes, yit, e-commerce, shop, yith, ajax search, instant search, premium, yithemes, autocomplete, autosuggest, better search, category search, custom search, highlight terms, Live Search, Predictive Search, product search, relevant search, search highlight, search product, suggest, typeahead, WooCommerce Plugin, woocommerce product search, woocommerce search, wordpress ecommerce
|
5 |
Requires at least: 5.4.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -138,6 +138,11 @@ If you have created your own language pack for YITH WooCommerce Ajax Search, or
|
|
138 |
2. YITH WooCommerce Ajax Search in operation displaying WooCommerce search results
|
139 |
|
140 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
141 |
= 1.9.1 - Released on 27 May 2021 =
|
142 |
* New: support for WooCommerce 5.4
|
143 |
* Update: YITH plugin framework
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce search by sku, woocommerce search results, woocommerce search shortcode, woocommerce search page, woocommerce search form, woocommerce search filter, woocommerce search products, woocommerce search content, woocommerce search autocomplete, woocommerce advanced search, woocommerce search category, woocommerce search product attributes, woocommerce search by tag, woocommerce search by brand, woocommerce predictive, woocommerce live search, woocommerce single product search, woocommerce site search, woocommerce search tex, tajax, search, woocommerce, products, themes, yit, e-commerce, shop, yith, ajax search, instant search, premium, yithemes, autocomplete, autosuggest, better search, category search, custom search, highlight terms, Live Search, Predictive Search, product search, relevant search, search highlight, search product, suggest, typeahead, WooCommerce Plugin, woocommerce product search, woocommerce search, wordpress ecommerce
|
5 |
Requires at least: 5.4.0
|
6 |
+
Tested up to: 5.8
|
7 |
+
Stable tag: 1.9.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
138 |
2. YITH WooCommerce Ajax Search in operation displaying WooCommerce search results
|
139 |
|
140 |
== Changelog ==
|
141 |
+
= 1.9.2 - Released on 24 June 2021 =
|
142 |
+
* New: support for WordPress 5.8
|
143 |
+
* New: support for WooCommerce 5.5
|
144 |
+
* Update: YITH plugin framework
|
145 |
+
|
146 |
= 1.9.1 - Released on 27 May 2021 =
|
147 |
* New: support for WooCommerce 5.4
|
148 |
* Update: YITH plugin framework
|