Version Description
- Updated language file
- Fixed: YITH WooCommerce Quick View compatibility
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Catalog Mode |
Version | 1.0.8 |
Comparing to | |
See all releases |
Code changes from version 1.0.7 to 1.0.8
- class.yith-woocommerce-catalog-mode.php +46 -9
- init.php +3 -3
- languages/default.po +0 -1054
- languages/ywctm.pot +50 -956
- plugin-fw/assets/css/yit-plugin-panel.css +1 -0
- plugin-fw/lib/yit-cpt-unlimited.php +1 -1
- plugin-fw/lib/yit-plugin-common.php +1 -1
- plugin-fw/lib/yit-plugin-panel.php +1 -1
- plugin-fw/lib/yit-plugin-subpanel.php +1 -1
- plugin-fw/templates/metaboxes/types/icon-list.php +2 -2
- readme.txt +7 -2
class.yith-woocommerce-catalog-mode.php
CHANGED
@@ -71,7 +71,7 @@ class YITH_WC_Catalog_Mode {
|
|
71 |
|
72 |
if ( $this->check_user_admin_enable() ){
|
73 |
|
74 |
-
if ( ! is_admin() ) {
|
75 |
if( get_option( 'ywctm_hide_cart_header' ) == 'yes' ){
|
76 |
|
77 |
$priority = has_action( 'wp_loaded', array( 'WC_Form_Handler', 'add_to_cart_action' ) );
|
@@ -128,11 +128,11 @@ class YITH_WC_Catalog_Mode {
|
|
128 |
* @author Alberto Ruggiero
|
129 |
* @return void
|
130 |
*/
|
131 |
-
public function hide_add_to_cart_single() {
|
132 |
|
133 |
global $product;
|
134 |
|
135 |
-
$priority = has_action(
|
136 |
|
137 |
if ( $this->check_add_to_cart_single( $priority ) ) {
|
138 |
|
@@ -146,9 +146,6 @@ class YITH_WC_Catalog_Mode {
|
|
146 |
$( '.single_variation_wrap .variations_button' ).hide();
|
147 |
});
|
148 |
";
|
149 |
-
|
150 |
-
wc_enqueue_js( $inline_js );
|
151 |
-
|
152 |
} else {
|
153 |
|
154 |
//remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', $priority );
|
@@ -159,15 +156,42 @@ class YITH_WC_Catalog_Mode {
|
|
159 |
|
160 |
$inline_js .= "$( 'form.cart .quantity' ).hide();";
|
161 |
}
|
162 |
-
|
163 |
-
wc_enqueue_js( $inline_js );
|
164 |
-
|
165 |
}
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
|
169 |
}
|
170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
/**
|
172 |
* Check if price is hidden to hide add to cart button
|
173 |
*
|
@@ -674,4 +698,17 @@ class YITH_WC_Catalog_Mode {
|
|
674 |
return $plugin_meta;
|
675 |
}
|
676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
}
|
71 |
|
72 |
if ( $this->check_user_admin_enable() ){
|
73 |
|
74 |
+
if ( ! is_admin() || $this->is_quick_view() ) {
|
75 |
if( get_option( 'ywctm_hide_cart_header' ) == 'yes' ){
|
76 |
|
77 |
$priority = has_action( 'wp_loaded', array( 'WC_Form_Handler', 'add_to_cart_action' ) );
|
128 |
* @author Alberto Ruggiero
|
129 |
* @return void
|
130 |
*/
|
131 |
+
public function hide_add_to_cart_single( $action = 'woocommerce_single_product_summary' ) {
|
132 |
|
133 |
global $product;
|
134 |
|
135 |
+
$priority = has_action( $action, 'woocommerce_template_single_add_to_cart' );
|
136 |
|
137 |
if ( $this->check_add_to_cart_single( $priority ) ) {
|
138 |
|
146 |
$( '.single_variation_wrap .variations_button' ).hide();
|
147 |
});
|
148 |
";
|
|
|
|
|
|
|
149 |
} else {
|
150 |
|
151 |
//remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', $priority );
|
156 |
|
157 |
$inline_js .= "$( 'form.cart .quantity' ).hide();";
|
158 |
}
|
|
|
|
|
|
|
159 |
}
|
160 |
|
161 |
+
if( $this->is_quick_view() ) {
|
162 |
+
add_action( 'woocommerce_before_add_to_cart_button', array( $this, 'hide_add_to_cart_quick_view' ) );
|
163 |
+
}
|
164 |
+
else {
|
165 |
+
wc_enqueue_js( $inline_js );
|
166 |
+
}
|
167 |
+
|
168 |
}
|
169 |
|
170 |
}
|
171 |
|
172 |
+
|
173 |
+
/**
|
174 |
+
* Hide add to cart button in quick view
|
175 |
+
*
|
176 |
+
*/
|
177 |
+
public function hide_add_to_cart_quick_view() {
|
178 |
+
ob_start();
|
179 |
+
?>
|
180 |
+
<style>
|
181 |
+
form.cart button.single_add_to_cart_button,
|
182 |
+
.single_variation_wrap .variations_button {
|
183 |
+
display: none !important;
|
184 |
+
}
|
185 |
+
<?php if( ! class_exists( 'YITH_YWRAQ_Frontend' ) ) : ?>
|
186 |
+
form.cart .quantity {
|
187 |
+
display: none !important;
|
188 |
+
}
|
189 |
+
<?php endif; ?>
|
190 |
+
</style>
|
191 |
+
<?php
|
192 |
+
echo ob_get_clean();
|
193 |
+
}
|
194 |
+
|
195 |
/**
|
196 |
* Check if price is hidden to hide add to cart button
|
197 |
*
|
698 |
return $plugin_meta;
|
699 |
}
|
700 |
|
701 |
+
/**
|
702 |
+
*
|
703 |
+
* say if the code is execute by quick view
|
704 |
+
|
705 |
+
*
|
706 |
+
* @return bool
|
707 |
+
* @since 1.0.7
|
708 |
+
* @author Andrea Frascaspata <andrea.frascaspata@yithemes.com>
|
709 |
+
*/
|
710 |
+
public function is_quick_view() {
|
711 |
+
return defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $_REQUEST[ 'action' ] ) && ( $_REQUEST[ 'action' ] == 'yith_load_product_quick_view' || $_REQUEST[ 'action' ] == 'yit_load_product_quick_view' );
|
712 |
+
}
|
713 |
+
|
714 |
}
|
init.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://yithemes.com/themes/plugins/yith-woocommerce-catalog-mode/
|
|
5 |
Description: YITH Woocommerce Catalog Mode allows you to disable shop functions.
|
6 |
Author: Yithemes
|
7 |
Text Domain: ywctm
|
8 |
-
Version: 1.0.
|
9 |
Author URI: http://yithemes.com/
|
10 |
*/
|
11 |
|
@@ -20,7 +20,7 @@ if ( ! function_exists( 'is_plugin_active' ) ) {
|
|
20 |
function ywctm_install_woocommerce_admin_notice() {
|
21 |
?>
|
22 |
<div class="error">
|
23 |
-
<p><?php _e( 'YITH WooCommerce Catalog Mode is enabled but not effective. It requires
|
24 |
</div>
|
25 |
<?php
|
26 |
}
|
@@ -34,7 +34,7 @@ function ywctm_install_free_admin_notice() {
|
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'YWCTM_VERSION' ) ) {
|
37 |
-
define( 'YWCTM_VERSION', '1.0.
|
38 |
}
|
39 |
|
40 |
if ( ! defined( 'YWCTM_FREE_INIT' ) ) {
|
5 |
Description: YITH Woocommerce Catalog Mode allows you to disable shop functions.
|
6 |
Author: Yithemes
|
7 |
Text Domain: ywctm
|
8 |
+
Version: 1.0.8
|
9 |
Author URI: http://yithemes.com/
|
10 |
*/
|
11 |
|
20 |
function ywctm_install_woocommerce_admin_notice() {
|
21 |
?>
|
22 |
<div class="error">
|
23 |
+
<p><?php _e( 'YITH WooCommerce Catalog Mode is enabled but not effective. It requires WooCommerce in order to work.', 'ywctm' ); ?></p>
|
24 |
</div>
|
25 |
<?php
|
26 |
}
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'YWCTM_VERSION' ) ) {
|
37 |
+
define( 'YWCTM_VERSION', '1.0.8' );
|
38 |
}
|
39 |
|
40 |
if ( ! defined( 'YWCTM_FREE_INIT' ) ) {
|
languages/default.po
DELETED
@@ -1,1054 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: YIT WooCommerce Catalog Mode\n"
|
4 |
-
"POT-Creation-Date: 2015-03-02 13:57+0100\n"
|
5 |
-
"PO-Revision-Date: 2015-03-02 13:57+0100\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.5.5\n"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
-
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
-
"_nx_noop:4c,1,2\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
18 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../class.yith-woocommerce-catalog-mode.php:236
|
22 |
-
#: ../class.yith-woocommerce-catalog-mode.php:293
|
23 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
24 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
25 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
26 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
27 |
-
msgid "Settings"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: ../class.yith-woocommerce-catalog-mode.php:240
|
31 |
-
msgid "Premium Settings"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../class.yith-woocommerce-catalog-mode.php:241
|
35 |
-
msgid "Exclusion List"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../class.yith-woocommerce-catalog-mode.php:243
|
39 |
-
#: ../class.yith-woocommerce-catalog-mode.php:296
|
40 |
-
msgid "Premium Version"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: ../class.yith-woocommerce-catalog-mode.php:249
|
44 |
-
#: ../class.yith-woocommerce-catalog-mode.php:250
|
45 |
-
msgid "Catalog Mode"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: ../class.yith-woocommerce-catalog-mode.php:322
|
49 |
-
msgid "Plugin Documentation"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../class.yith-woocommerce-catalog-mode.php:336
|
53 |
-
msgid ""
|
54 |
-
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
55 |
-
"with many new options, discover it now."
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: ../class.yith-woocommerce-catalog-mode.php:337
|
59 |
-
msgid "Premium version"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../class.yith-woocommerce-catalog-mode.php:344
|
63 |
-
#: ../plugin-options/settings-options.php:19
|
64 |
-
#: ../plugin-options/settings-options.php:25
|
65 |
-
msgid "YITH WooCommerce Catalog Mode"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: ../class.yith-woocommerce-catalog-mode.php:345
|
69 |
-
msgid ""
|
70 |
-
"In YIT Plugins tab you can find YITH WooCommerce Catalog Mode options. From "
|
71 |
-
"this menu you can access all settings of YITH plugins activated."
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: ../init.php:23
|
75 |
-
msgid ""
|
76 |
-
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
77 |
-
"Woocommerce in order to work."
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: ../init.php:31
|
81 |
-
msgid ""
|
82 |
-
"You can't activate the free version of YITH WooCommerce Catalog Mode while "
|
83 |
-
"you are using the premium one."
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:460
|
87 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:574
|
88 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:719
|
89 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1632
|
90 |
-
#, php-format
|
91 |
-
msgid "Add %s"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:461
|
95 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:575
|
96 |
-
#, php-format
|
97 |
-
msgid "Add New %s"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:462
|
101 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:576
|
102 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1267
|
103 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1304
|
104 |
-
#, php-format
|
105 |
-
msgid "Edit %s"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:463
|
109 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:577
|
110 |
-
#, php-format
|
111 |
-
msgid "New %s"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:464
|
115 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:578
|
116 |
-
#, php-format
|
117 |
-
msgid "All %s"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:465
|
121 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:579
|
122 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1251
|
123 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1305
|
124 |
-
#, php-format
|
125 |
-
msgid "View %s"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:466
|
129 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:580
|
130 |
-
#, php-format
|
131 |
-
msgid "Search %s"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:467
|
135 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:581
|
136 |
-
#, php-format
|
137 |
-
msgid "No %s found"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:468
|
141 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:582
|
142 |
-
#, php-format
|
143 |
-
msgid "No %s found in Trash"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:625
|
147 |
-
#, php-format
|
148 |
-
msgctxt "taxonomy general name"
|
149 |
-
msgid "%s Categories"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:626
|
153 |
-
msgctxt "taxonomy singular name"
|
154 |
-
msgid "Category"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:627
|
158 |
-
msgid "Search Categories"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:628
|
162 |
-
msgid "All Categories"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:629
|
166 |
-
msgid "Parent Category"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:630
|
170 |
-
msgid "Parent Category:"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:631
|
174 |
-
msgid "Edit Category"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:632
|
178 |
-
msgid "Update Category"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:633
|
182 |
-
msgid "Add New Category"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:634
|
186 |
-
msgid "New Category Name"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:635
|
190 |
-
msgid "Category"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:724
|
194 |
-
msgid "Categories"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1042
|
198 |
-
#, php-format
|
199 |
-
msgid "%s Settings"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1051
|
203 |
-
msgid "Type"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
207 |
-
msgid "Layout for this "
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
211 |
-
msgid "Rewrite"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
215 |
-
msgid ""
|
216 |
-
"Univocal identification name in the URL for each product (slug from post if "
|
217 |
-
"empty)"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
221 |
-
msgid "Label in Singular"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
225 |
-
msgid "Set a label in singular (title of portfolio if empty)"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
229 |
-
msgid "Label in Plural"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
233 |
-
msgid "Set a label in plural (title of portfolio if empty)"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
237 |
-
msgid "Taxonomy"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
241 |
-
msgid ""
|
242 |
-
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
243 |
-
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
244 |
-
"not be more than 32 characters long (database structure restriction)."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
248 |
-
msgid "Taxonomy Rewrite"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
252 |
-
msgid "Set univocal name for each category page URL."
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
256 |
-
msgid "Single layout"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
260 |
-
msgid "Layout for single page of this portfolio"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
264 |
-
msgid "layout settings"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1222
|
268 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1235
|
269 |
-
msgid "Quick links"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
273 |
-
#, php-format
|
274 |
-
msgid "Show frontend of the %s"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
278 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:46
|
279 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:90
|
280 |
-
msgid "Name"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
284 |
-
#, php-format
|
285 |
-
msgid "Add %s from images"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
289 |
-
msgid "Add with multiupload"
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:345
|
293 |
-
msgid "The changes you have made will be lost if you leave this page."
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
297 |
-
msgid "Plugin Settings"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:92
|
301 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:101
|
302 |
-
msgid "YIT Plugins"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:271
|
306 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:142
|
307 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
|
308 |
-
msgid "Save Changes"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
312 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
313 |
-
msgid ""
|
314 |
-
"If you continue with this action, you will reset all options in this page."
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
318 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
319 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
320 |
-
msgid "Reset Defaults"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
324 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
325 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
326 |
-
msgid "Are you sure?"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
330 |
-
msgid ""
|
331 |
-
"The element you have entered already exists. Please, enter another name."
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
335 |
-
msgid "Settings saved"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:412
|
339 |
-
msgid "Settings reset"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:413
|
343 |
-
msgid "Element deleted correctly."
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:414
|
347 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:415
|
348 |
-
msgid "Element updated correctly."
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:416
|
352 |
-
msgid "Database imported correctly."
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
356 |
-
msgid "An error has occurred during import. Please try again."
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
360 |
-
msgid "The added file is not valid."
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
364 |
-
msgid "Sorry, import is disabled."
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
368 |
-
msgid "Sorting successful."
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
372 |
-
msgid ""
|
373 |
-
"If you continue with this action, you will reset all the options in this "
|
374 |
-
"page."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../plugin-fw/lib/yit-pointers.php:70
|
378 |
-
msgid "Plugins Activated"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../plugin-fw/lib/yit-pointers.php:71
|
382 |
-
msgid ""
|
383 |
-
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
384 |
-
" For each plugin installed, "
|
385 |
-
"customization settings will be available as a new entry in YIT Plugin menu."
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
389 |
-
msgid "Discover all our plugins available on:"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../plugin-fw/lib/yit-pointers.php:74 ../plugin-fw/lib/yit-pointers.php:90
|
393 |
-
msgid "and"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../plugin-fw/lib/yit-pointers.php:84
|
397 |
-
msgid "Plugins Upgraded"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../plugin-fw/lib/yit-pointers.php:85
|
401 |
-
msgid ""
|
402 |
-
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
403 |
-
" Any time one of our plugins is updated, "
|
404 |
-
"a new entry will be added to this menu.\n"
|
405 |
-
" For example, after the update, plugin "
|
406 |
-
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
407 |
-
"Search, etc.)\n"
|
408 |
-
" will be moved from previous location to "
|
409 |
-
"YIT Plugin tab."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: ../plugin-fw/lib/yit-upgrade.php:119
|
413 |
-
msgid "There is a new version of %plugin_name% available."
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: ../plugin-fw/lib/yit-upgrade.php:120
|
417 |
-
msgid "View version %latest% details."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: ../plugin-fw/lib/yit-upgrade.php:121
|
421 |
-
msgid "Automatic update is unavailable for this plugin,"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: ../plugin-fw/lib/yit-upgrade.php:122
|
425 |
-
msgid ""
|
426 |
-
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: ../plugin-fw/lib/yit-upgrade.php:123
|
430 |
-
msgid "Update now."
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: ../plugin-fw/lib/yit-upgrade.php:226
|
434 |
-
msgid "Yithemes Repository"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: ../plugin-fw/lib/yit-upgrade.php:260
|
438 |
-
msgid "Invalid URL Provided."
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: ../plugin-fw/lib/yit-upgrade.php:273
|
442 |
-
msgid "Could not create Temporary file."
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: ../plugin-fw/lib/yit-upgrade.php:414
|
446 |
-
#, php-format
|
447 |
-
msgid ""
|
448 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
449 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: ../plugin-fw/lib/yit-upgrade.php:416
|
453 |
-
#, php-format
|
454 |
-
msgid ""
|
455 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
456 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
457 |
-
"have to activate the plugin on a single site of the network to benefit from "
|
458 |
-
"automatic updates.</em>"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: ../plugin-fw/lib/yit-upgrade.php:418
|
462 |
-
#, php-format
|
463 |
-
msgid ""
|
464 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
465 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
|
466 |
-
"<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
|
467 |
-
"title=\"Licence activation\">activate</a> your copy of %6s.</em>"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../plugin-fw/lib/yit-upgrade.php:420
|
471 |
-
#, php-format
|
472 |
-
msgid ""
|
473 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
474 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a "
|
475 |
-
"href=\"%5$s\">update now</a>."
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../plugin-fw/lib/yit-upgrade.php:493
|
479 |
-
msgid "You can't update the plugins for this site."
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: ../plugin-fw/lib/yit-upgrade.php:497
|
483 |
-
msgid ""
|
484 |
-
"You do not have sufficient permissions to update the plugins for this site."
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: ../plugin-fw/lib/yit-upgrade.php:504
|
488 |
-
msgid "Update Plugin"
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
492 |
-
#, php-format
|
493 |
-
msgid "%field% field cannot be empty"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
497 |
-
msgid "%field_1% and %field_2% fields cannot be empty"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
501 |
-
msgid "Unable to contact the remote server, please try again later. Thanks!"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:529
|
505 |
-
msgid "Invalid Request"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:530
|
509 |
-
msgid "Invalid licence key"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
513 |
-
msgid "Software has been deactivated"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
517 |
-
msgid "Maximum number of activations exceeded"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
521 |
-
msgid "Invalid instance ID"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:534
|
525 |
-
msgid "Invalid security key"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:535
|
529 |
-
msgid "Licence key has expired"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
533 |
-
msgid "Licence key has been banned"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
537 |
-
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:64
|
538 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:63
|
539 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:64
|
540 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:106
|
541 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:107
|
542 |
-
msgid "Licence Activation"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:114
|
546 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:115
|
547 |
-
#, php-format
|
548 |
-
msgid "%s"
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
|
552 |
-
msgid "Yithemes Licence Activation"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
|
556 |
-
msgid ""
|
557 |
-
"Have you updated your licenses? Have you asked for an extension? Update "
|
558 |
-
"information concerning your products."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
|
562 |
-
msgid "Update licence information"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
566 |
-
msgid "Products to be activated"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
570 |
-
msgid "Activate"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
|
574 |
-
msgid "Activated"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
578 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
|
579 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
|
580 |
-
msgid "Product Name"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
584 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
|
585 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
|
586 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
587 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
588 |
-
msgid "Email"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
592 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
|
593 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
|
594 |
-
msgid "Licence Key"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
598 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
|
599 |
-
msgid "Expires"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
|
603 |
-
msgid "Remaining"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
607 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
608 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
|
609 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
|
610 |
-
msgid "Renew"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
|
614 |
-
#, php-format
|
615 |
-
msgid "%1s out of %2s"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
|
619 |
-
msgid "Banned"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
|
623 |
-
msgid "Expired"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
|
627 |
-
msgid "Search for a product"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: ../plugin-fw/templates/metaboxes/types/categories.php:36
|
631 |
-
msgid "No categories."
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: ../plugin-fw/templates/metaboxes/types/categories.php:42
|
635 |
-
msgid "+ Add New Category"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:5
|
639 |
-
msgid "Text Input"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:6
|
643 |
-
msgid "Checkbox"
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:7
|
647 |
-
msgid "Select"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:8
|
651 |
-
msgid "Textarea"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:9
|
655 |
-
msgid "Radio Input"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:10
|
659 |
-
msgid "Password Field"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:11
|
663 |
-
msgid "File Upload"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:45
|
667 |
-
msgid "Theme Icon"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:46
|
671 |
-
msgid "Custom Icon"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:47
|
675 |
-
#: ../plugin-fw/templates/metaboxes/types/responsivesliders.php:24
|
676 |
-
msgid "None"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:57
|
680 |
-
msgid "Add field"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:66
|
684 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:258
|
685 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:37
|
686 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:82
|
687 |
-
msgid "Remove"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:67
|
691 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:259
|
692 |
-
msgid "Click to toggle"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:74
|
696 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:266
|
697 |
-
msgid "Title Field"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
701 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
702 |
-
msgid "Insert the title for the field."
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
706 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:275
|
707 |
-
msgid "Data Name"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
711 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
712 |
-
msgid ""
|
713 |
-
"REQUIRED: Field identification name to be entered into email body. "
|
714 |
-
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
718 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:284
|
719 |
-
msgid "Type field"
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
723 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
724 |
-
msgid "Select the type for this field."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
728 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:297
|
729 |
-
msgid "Checked"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
733 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
734 |
-
msgid "Select this option if you want this field appears as already checked."
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
738 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:306
|
739 |
-
msgid "Add options "
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:115
|
743 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:307
|
744 |
-
msgid "Add option"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:118
|
748 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:310
|
749 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:432
|
750 |
-
msgid "Selected"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:121
|
754 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:313
|
755 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:432
|
756 |
-
msgid "Delete option"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
760 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
761 |
-
msgid "Error Message"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
765 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:323
|
766 |
-
msgid "Insert the error message for validation."
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:136
|
770 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:328
|
771 |
-
msgid "Required"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
775 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
776 |
-
msgid "Select this option if it must be required."
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
780 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
781 |
-
msgid "Select this option if the email must be valid."
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
785 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:346
|
786 |
-
msgid "Reply To"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
790 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
791 |
-
msgid "Select this if it is the email you can reply to."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
795 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:355
|
796 |
-
msgid "Class"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
800 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
801 |
-
msgid ""
|
802 |
-
"Insert additional class(es) (separated by commas) for more personalization."
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
806 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:364
|
807 |
-
msgid "Icon"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:200
|
811 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:388
|
812 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:69
|
813 |
-
#: ../plugin-fw/templates/metaboxes/types/select-icon.php:33
|
814 |
-
#: ../plugin-fw/templates/metaboxes/types/upload.php:21
|
815 |
-
#: ../plugin-fw/templates/panel/types/upload.php:31
|
816 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-upload.php:35
|
817 |
-
msgid "Upload"
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:206
|
821 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:394
|
822 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:75
|
823 |
-
#: ../plugin-fw/templates/metaboxes/types/select-icon.php:39
|
824 |
-
msgid "Image preview"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:214
|
828 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:402
|
829 |
-
msgid "Insert an icon for more personalization."
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:219
|
833 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:406
|
834 |
-
msgid "Width"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
838 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
839 |
-
msgid "Set field length."
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
843 |
-
msgid "Close all"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
847 |
-
msgid "Expand all"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:52
|
851 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:95
|
852 |
-
msgid "Value"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
856 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
857 |
-
msgid "Content of the tab. (HTML is supported)"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
861 |
-
msgid "Add custom product tab"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:107
|
865 |
-
msgid "Do you want to remove the custom tab?"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:89
|
869 |
-
#, php-format
|
870 |
-
msgid "(Default: %s <img src=\"%s\"/>)"
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:91
|
874 |
-
#, php-format
|
875 |
-
msgid "(Default: <i %s></i> )"
|
876 |
-
msgstr ""
|
877 |
-
|
878 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:35
|
879 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
880 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:33
|
881 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:59
|
882 |
-
msgid "Delete image"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
886 |
-
msgid "Add Images to Gallery"
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
890 |
-
msgid "Add to gallery"
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
894 |
-
msgid "Add images"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
898 |
-
msgid "Delete"
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:37
|
902 |
-
msgid "Upload new images"
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:70
|
906 |
-
msgid "Are you sure you want to remove this image?"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:25
|
910 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:36
|
911 |
-
msgid "Left sidebar"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
|
915 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:42
|
916 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:45
|
917 |
-
msgid "No sidebar"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
921 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
922 |
-
msgid "Right sidebar"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:34
|
926 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:53
|
927 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:64
|
928 |
-
msgid "Choose a sidebar"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
932 |
-
msgid "Left Sidebar"
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
936 |
-
msgid "Right Sidebar"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
940 |
-
msgid "px"
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:43
|
944 |
-
msgid "em"
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:44
|
948 |
-
msgid "pt"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:45
|
952 |
-
msgid "rem"
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:59
|
956 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:153
|
957 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:217
|
958 |
-
msgid "Web fonts"
|
959 |
-
msgstr ""
|
960 |
-
|
961 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:71
|
962 |
-
msgid "Google fonts"
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:96
|
966 |
-
msgid "Regular"
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:97
|
970 |
-
msgid "Bold"
|
971 |
-
msgstr ""
|
972 |
-
|
973 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:98
|
974 |
-
msgid "Extra bold"
|
975 |
-
msgstr ""
|
976 |
-
|
977 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:99
|
978 |
-
msgid "Italic"
|
979 |
-
msgstr ""
|
980 |
-
|
981 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:100
|
982 |
-
msgid "Italic bold"
|
983 |
-
msgstr ""
|
984 |
-
|
985 |
-
#: ../plugin-options/settings-options.php:16
|
986 |
-
msgid "Upgrade to the PREMIUM VERSION"
|
987 |
-
msgstr ""
|
988 |
-
|
989 |
-
#: ../plugin-options/settings-options.php:20
|
990 |
-
msgid "Discover the Advanced Features"
|
991 |
-
msgstr ""
|
992 |
-
|
993 |
-
#: ../plugin-options/settings-options.php:21
|
994 |
-
msgid ""
|
995 |
-
"Upgrade to the PREMIUM VERSION of YITH WooCommerce Catalog Mode to benefit "
|
996 |
-
"from all features!"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: ../plugin-options/settings-options.php:27
|
1000 |
-
msgid "Get Support and Pro Features"
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: ../plugin-options/settings-options.php:28
|
1004 |
-
msgid ""
|
1005 |
-
"By purchasing the premium version of the plugin, you will take advantage of "
|
1006 |
-
"the advanced features of the product and you will get one year of free "
|
1007 |
-
"updates and support through our platform available 24h/24."
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: ../plugin-options/settings-options.php:38
|
1011 |
-
#: ../plugin-options/settings-options.php:80
|
1012 |
-
#: ../plugin-options/settings-options.php:88
|
1013 |
-
msgid "\"Add to cart\" button"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: ../plugin-options/settings-options.php:40
|
1017 |
-
msgid "Exclude selected products (See \"Exclusions\" tab)"
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: ../plugin-options/settings-options.php:50
|
1021 |
-
msgid "General Settings"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: ../plugin-options/settings-options.php:56
|
1025 |
-
msgid "Enable YITH Woocommerce Catalog Mode"
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: ../plugin-options/settings-options.php:63
|
1029 |
-
msgid "Admin View"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
#: ../plugin-options/settings-options.php:65
|
1033 |
-
msgid "Enable Catalog Mode also for administrators"
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: ../plugin-options/settings-options.php:74
|
1037 |
-
msgid "Catalog Mode Settings"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: ../plugin-options/settings-options.php:82
|
1041 |
-
msgid "Hide in product details page"
|
1042 |
-
msgstr ""
|
1043 |
-
|
1044 |
-
#: ../plugin-options/settings-options.php:90
|
1045 |
-
msgid "Hide in other pages"
|
1046 |
-
msgstr ""
|
1047 |
-
|
1048 |
-
#: ../plugin-options/settings-options.php:97
|
1049 |
-
msgid "\"Cart\" and \"Checkout\" pages"
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: ../plugin-options/settings-options.php:99
|
1053 |
-
msgid "Hide"
|
1054 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/ywctm.pot
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
@@ -17,64 +17,39 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
|
|
20 |
|
21 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
22 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
23 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1048
|
24 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1196
|
25 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1202
|
26 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:62
|
27 |
msgid "Settings"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
31 |
msgid "Premium Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
35 |
msgid "Exclusion List"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
39 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
40 |
msgid "Premium Version"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
44 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
45 |
msgid "Catalog Mode"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../class.yith-woocommerce-catalog-mode.php:
|
49 |
msgid "Plugin Documentation"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../class.yith-woocommerce-catalog-mode.php:336
|
53 |
-
msgid ""
|
54 |
-
"YITH WooCommerce Catalog Mode is available in an outstanding PREMIUM version "
|
55 |
-
"with many new options, discover it now."
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: ../class.yith-woocommerce-catalog-mode.php:337
|
59 |
-
msgid "Premium version"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../class.yith-woocommerce-catalog-mode.php:344
|
63 |
-
#: ../plugin-options/settings-options.php:19
|
64 |
-
#: ../plugin-options/settings-options.php:25
|
65 |
-
msgid "YITH WooCommerce Catalog Mode"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: ../class.yith-woocommerce-catalog-mode.php:345
|
69 |
-
msgid ""
|
70 |
-
"In YIT Plugins tab you can find YITH WooCommerce Catalog Mode options. From "
|
71 |
-
"this menu you can access all settings of YITH plugins activated."
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
#: ../init.php:23
|
75 |
msgid ""
|
76 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
77 |
-
"
|
78 |
msgstr ""
|
79 |
|
80 |
#: ../init.php:31
|
@@ -83,972 +58,91 @@ msgid ""
|
|
83 |
"you are using the premium one."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../plugin-
|
87 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:574
|
88 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:719
|
89 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1632
|
90 |
-
#, php-format
|
91 |
-
msgid "Add %s"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:461
|
95 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:575
|
96 |
-
#, php-format
|
97 |
-
msgid "Add New %s"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:462
|
101 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:576
|
102 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1267
|
103 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1304
|
104 |
-
#, php-format
|
105 |
-
msgid "Edit %s"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:463
|
109 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:577
|
110 |
-
#, php-format
|
111 |
-
msgid "New %s"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:464
|
115 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:578
|
116 |
-
#, php-format
|
117 |
-
msgid "All %s"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:465
|
121 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:579
|
122 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1251
|
123 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1305
|
124 |
-
#, php-format
|
125 |
-
msgid "View %s"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:466
|
129 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:580
|
130 |
-
#, php-format
|
131 |
-
msgid "Search %s"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:467
|
135 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:581
|
136 |
-
#, php-format
|
137 |
-
msgid "No %s found"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:468
|
141 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:582
|
142 |
-
#, php-format
|
143 |
-
msgid "No %s found in Trash"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:625
|
147 |
-
#, php-format
|
148 |
-
msgctxt "taxonomy general name"
|
149 |
-
msgid "%s Categories"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:626
|
153 |
-
msgctxt "taxonomy singular name"
|
154 |
-
msgid "Category"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:627
|
158 |
-
msgid "Search Categories"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:628
|
162 |
-
msgid "All Categories"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:629
|
166 |
-
msgid "Parent Category"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:630
|
170 |
-
msgid "Parent Category:"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:631
|
174 |
-
msgid "Edit Category"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:632
|
178 |
-
msgid "Update Category"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:633
|
182 |
-
msgid "Add New Category"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:634
|
186 |
-
msgid "New Category Name"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:635
|
190 |
-
msgid "Category"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:724
|
194 |
-
msgid "Categories"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1042
|
198 |
-
#, php-format
|
199 |
-
msgid "%s Settings"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1051
|
203 |
-
msgid "Type"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1052
|
207 |
-
msgid "Layout for this "
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1058
|
211 |
-
msgid "Rewrite"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1059
|
215 |
-
msgid ""
|
216 |
-
"Univocal identification name in the URL for each product (slug from post if "
|
217 |
-
"empty)"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1064
|
221 |
-
msgid "Label in Singular"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1065
|
225 |
-
msgid "Set a label in singular (title of portfolio if empty)"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1070
|
229 |
-
msgid "Label in Plural"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1071
|
233 |
-
msgid "Set a label in plural (title of portfolio if empty)"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1076
|
237 |
-
msgid "Taxonomy"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1077
|
241 |
-
msgid ""
|
242 |
-
"If you want to use categories in the portfolio, set a name for taxonomy. "
|
243 |
-
"Name should be a slug (must not contain capital letters nor spaces) and must "
|
244 |
-
"not be more than 32 characters long (database structure restriction)."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1082
|
248 |
-
msgid "Taxonomy Rewrite"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1083
|
252 |
-
msgid "Set univocal name for each category page URL."
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1088
|
256 |
-
msgid "Single layout"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1089
|
260 |
-
msgid "Layout for single page of this portfolio"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1130
|
264 |
-
msgid "layout settings"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1222
|
268 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1235
|
269 |
-
msgid "Quick links"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1475
|
273 |
-
#, php-format
|
274 |
-
msgid "Show frontend of the %s"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1482
|
278 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:46
|
279 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:90
|
280 |
-
msgid "Name"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1631
|
284 |
-
#, php-format
|
285 |
-
msgid "Add %s from images"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../plugin-fw/lib/yit-cpt-unlimited.php:1633
|
289 |
-
msgid "Add with multiupload"
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: ../plugin-fw/lib/yit-plugin-panel-wc.php:345
|
293 |
-
msgid "The changes you have made will be lost if you leave this page."
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:61
|
297 |
-
msgid "Plugin Settings"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:92
|
301 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:101
|
302 |
-
msgid "YIT Plugins"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:271
|
306 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:142
|
307 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:5
|
308 |
-
msgid "Save Changes"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:274
|
312 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:8
|
313 |
-
msgid ""
|
314 |
-
"If you continue with this action, you will reset all options in this page."
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
318 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
319 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
320 |
-
msgid "Reset Defaults"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:276
|
324 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:147
|
325 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-form.php:10
|
326 |
-
msgid "Are you sure?"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:410
|
330 |
-
msgid ""
|
331 |
-
"The element you have entered already exists. Please, enter another name."
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:411
|
335 |
-
msgid "Settings saved"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:412
|
339 |
-
msgid "Settings reset"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:413
|
343 |
-
msgid "Element deleted correctly."
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:414
|
347 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:415
|
348 |
-
msgid "Element updated correctly."
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:416
|
352 |
-
msgid "Database imported correctly."
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:417
|
356 |
-
msgid "An error has occurred during import. Please try again."
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:418
|
360 |
-
msgid "The added file is not valid."
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:419
|
364 |
-
msgid "Sorry, import is disabled."
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: ../plugin-fw/lib/yit-plugin-panel.php:420
|
368 |
-
msgid "Sorting successful."
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: ../plugin-fw/lib/yit-plugin-subpanel.php:145
|
372 |
-
msgid ""
|
373 |
-
"If you continue with this action, you will reset all the options in this "
|
374 |
-
"page."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../plugin-fw/lib/yit-pointers.php:70
|
378 |
-
msgid "Plugins Activated"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../plugin-fw/lib/yit-pointers.php:71
|
382 |
-
msgid ""
|
383 |
-
"From now on, you can find all plugin options in YIT Plugin menu.\n"
|
384 |
-
" For each plugin installed, "
|
385 |
-
"customization settings will be available as a new entry in YIT Plugin menu."
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../plugin-fw/lib/yit-pointers.php:73 ../plugin-fw/lib/yit-pointers.php:89
|
389 |
-
msgid "Discover all our plugins available on:"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../plugin-fw/lib/yit-pointers.php:74 ../plugin-fw/lib/yit-pointers.php:90
|
393 |
-
msgid "and"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../plugin-fw/lib/yit-pointers.php:84
|
397 |
-
msgid "Plugins Upgraded"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../plugin-fw/lib/yit-pointers.php:85
|
401 |
-
msgid ""
|
402 |
-
"From now on, you can find all options of your plugins in YIT Plugin menu.\n"
|
403 |
-
" Any time one of our plugins is updated, "
|
404 |
-
"a new entry will be added to this menu.\n"
|
405 |
-
" For example, after the update, plugin "
|
406 |
-
"options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax "
|
407 |
-
"Search, etc.)\n"
|
408 |
-
" will be moved from previous location to "
|
409 |
-
"YIT Plugin tab."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: ../plugin-fw/lib/yit-upgrade.php:119
|
413 |
-
msgid "There is a new version of %plugin_name% available."
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: ../plugin-fw/lib/yit-upgrade.php:120
|
417 |
-
msgid "View version %latest% details."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: ../plugin-fw/lib/yit-upgrade.php:121
|
421 |
-
msgid "Automatic update is unavailable for this plugin,"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: ../plugin-fw/lib/yit-upgrade.php:122
|
425 |
-
msgid ""
|
426 |
-
"please <a href=\"%activate_link%\">activate</a> your copy of %plugin_name%."
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: ../plugin-fw/lib/yit-upgrade.php:123
|
430 |
-
msgid "Update now."
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: ../plugin-fw/lib/yit-upgrade.php:226
|
434 |
-
msgid "Yithemes Repository"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: ../plugin-fw/lib/yit-upgrade.php:260
|
438 |
-
msgid "Invalid URL Provided."
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: ../plugin-fw/lib/yit-upgrade.php:273
|
442 |
-
msgid "Could not create Temporary file."
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: ../plugin-fw/lib/yit-upgrade.php:414
|
446 |
-
#, php-format
|
447 |
-
msgid ""
|
448 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
449 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>."
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: ../plugin-fw/lib/yit-upgrade.php:416
|
453 |
-
#, php-format
|
454 |
-
msgid ""
|
455 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
456 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. <em>You "
|
457 |
-
"have to activate the plugin on a single site of the network to benefit from "
|
458 |
-
"automatic updates.</em>"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: ../plugin-fw/lib/yit-upgrade.php:418
|
462 |
-
#, php-format
|
463 |
-
msgid ""
|
464 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
465 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a>. "
|
466 |
-
"<em>Automatic update is unavailable for this plugin, please <a href=\"%5$s\" "
|
467 |
-
"title=\"Licence activation\">activate</a> your copy of %6s.</em>"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../plugin-fw/lib/yit-upgrade.php:420
|
471 |
-
#, php-format
|
472 |
-
msgid ""
|
473 |
-
"There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox "
|
474 |
-
"yit-changelog-button\" title=\"%3$s\">View version %4$s details</a> or <a "
|
475 |
-
"href=\"%5$s\">update now</a>."
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../plugin-fw/lib/yit-upgrade.php:493
|
479 |
-
msgid "You can't update the plugins for this site."
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: ../plugin-fw/lib/yit-upgrade.php:497
|
483 |
-
msgid ""
|
484 |
-
"You do not have sufficient permissions to update the plugins for this site."
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: ../plugin-fw/lib/yit-upgrade.php:504
|
488 |
-
msgid "Update Plugin"
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:148
|
492 |
-
#, php-format
|
493 |
-
msgid "%field% field cannot be empty"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:149
|
497 |
-
msgid "%field_1% and %field_2% fields cannot be empty"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:150
|
501 |
-
msgid "Unable to contact the remote server, please try again later. Thanks!"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:529
|
505 |
-
msgid "Invalid Request"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:530
|
509 |
-
msgid "Invalid licence key"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:531
|
513 |
-
msgid "Software has been deactivated"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:532
|
517 |
-
msgid "Maximum number of activations exceeded"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:533
|
521 |
-
msgid "Invalid instance ID"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:534
|
525 |
-
msgid "Invalid security key"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:535
|
529 |
-
msgid "Licence key has expired"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../plugin-fw/licence/lib/yit-licence.php:536
|
533 |
-
msgid "Licence key has been banned"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:63
|
537 |
-
#: ../plugin-fw/licence/lib/yit-plugin-licence.php:64
|
538 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:63
|
539 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:64
|
540 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:106
|
541 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:107
|
542 |
-
msgid "Licence Activation"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:114
|
546 |
-
#: ../plugin-fw/licence/lib/yit-theme-licence.php:115
|
547 |
-
#, php-format
|
548 |
-
msgid "%s"
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:19
|
552 |
-
msgid "Yithemes Licence Activation"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:23
|
556 |
-
msgid ""
|
557 |
-
"Have you updated your licenses? Have you asked for an extension? Update "
|
558 |
-
"information concerning your products."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:25
|
562 |
-
msgid "Update licence information"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:35
|
566 |
-
msgid "Products to be activated"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:54
|
570 |
-
msgid "Activate"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:73
|
574 |
-
msgid "Activated"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:77
|
578 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:109
|
579 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:133
|
580 |
-
msgid "Product Name"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:78
|
584 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:110
|
585 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:134
|
586 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:145
|
587 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:337
|
588 |
-
msgid "Email"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:79
|
592 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:111
|
593 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:135
|
594 |
-
msgid "Licence Key"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:80
|
598 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:136
|
599 |
-
msgid "Expires"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:81
|
603 |
-
msgid "Remaining"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:82
|
607 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:95
|
608 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:137
|
609 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:147
|
610 |
-
msgid "Renew"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:93
|
614 |
-
#, php-format
|
615 |
-
msgid "%1s out of %2s"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:105
|
619 |
-
msgid "Banned"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: ../plugin-fw/licence/templates/panel/activation/activation-panel.php:129
|
623 |
-
msgid "Expired"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: ../plugin-fw/templates/metaboxes/types/ajax-products.php:23
|
627 |
-
msgid "Search for a product"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: ../plugin-fw/templates/metaboxes/types/categories.php:36
|
631 |
-
msgid "No categories."
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: ../plugin-fw/templates/metaboxes/types/categories.php:42
|
635 |
-
msgid "+ Add New Category"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:5
|
639 |
-
msgid "Text Input"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:6
|
643 |
-
msgid "Checkbox"
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:7
|
647 |
-
msgid "Select"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:8
|
651 |
-
msgid "Textarea"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:9
|
655 |
-
msgid "Radio Input"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:10
|
659 |
-
msgid "Password Field"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:11
|
663 |
-
msgid "File Upload"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:45
|
667 |
-
msgid "Theme Icon"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:46
|
671 |
-
msgid "Custom Icon"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:47
|
675 |
-
#: ../plugin-fw/templates/metaboxes/types/responsivesliders.php:24
|
676 |
-
msgid "None"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:57
|
680 |
-
msgid "Add field"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:66
|
684 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:258
|
685 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:37
|
686 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:82
|
687 |
-
msgid "Remove"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:67
|
691 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:259
|
692 |
-
msgid "Click to toggle"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:74
|
696 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:266
|
697 |
-
msgid "Title Field"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:78
|
701 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:270
|
702 |
-
msgid "Insert the title for the field."
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:83
|
706 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:275
|
707 |
-
msgid "Data Name"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:87
|
711 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:279
|
712 |
-
msgid ""
|
713 |
-
"REQUIRED: Field identification name to be entered into email body. "
|
714 |
-
"<strong>Note:</strong>Use only lowercase characters and underscores."
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:92
|
718 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:284
|
719 |
-
msgid "Type field"
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:100
|
723 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:292
|
724 |
-
msgid "Select the type for this field."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:105
|
728 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:297
|
729 |
-
msgid "Checked"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:109
|
733 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:301
|
734 |
-
msgid "Select this option if you want this field appears as already checked."
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:114
|
738 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:306
|
739 |
-
msgid "Add options "
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:115
|
743 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:307
|
744 |
-
msgid "Add option"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:118
|
748 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:310
|
749 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:432
|
750 |
-
msgid "Selected"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:121
|
754 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:313
|
755 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:432
|
756 |
-
msgid "Delete option"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:127
|
760 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:319
|
761 |
-
msgid "Error Message"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:131
|
765 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:323
|
766 |
-
msgid "Insert the error message for validation."
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:136
|
770 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:328
|
771 |
-
msgid "Required"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:140
|
775 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:332
|
776 |
-
msgid "Select this option if it must be required."
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:149
|
780 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:341
|
781 |
-
msgid "Select this option if the email must be valid."
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:154
|
785 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:346
|
786 |
-
msgid "Reply To"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:158
|
790 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:350
|
791 |
-
msgid "Select this if it is the email you can reply to."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:163
|
795 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:355
|
796 |
-
msgid "Class"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:167
|
800 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:359
|
801 |
-
msgid ""
|
802 |
-
"Insert additional class(es) (separated by commas) for more personalization."
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:172
|
806 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:364
|
807 |
-
msgid "Icon"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:200
|
811 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:388
|
812 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:69
|
813 |
-
#: ../plugin-fw/templates/metaboxes/types/select-icon.php:33
|
814 |
-
#: ../plugin-fw/templates/metaboxes/types/upload.php:21
|
815 |
-
#: ../plugin-fw/templates/panel/types/upload.php:31
|
816 |
-
#: ../plugin-fw/templates/panel/woocommerce/woocommerce-upload.php:35
|
817 |
-
msgid "Upload"
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:206
|
821 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:394
|
822 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:75
|
823 |
-
#: ../plugin-fw/templates/metaboxes/types/select-icon.php:39
|
824 |
-
msgid "Image preview"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:214
|
828 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:402
|
829 |
-
msgid "Insert an icon for more personalization."
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:219
|
833 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:406
|
834 |
-
msgid "Width"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:244
|
838 |
-
#: ../plugin-fw/templates/metaboxes/types/contactform.php:418
|
839 |
-
msgid "Set field length."
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
843 |
-
msgid "Close all"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:28
|
847 |
-
msgid "Expand all"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:52
|
851 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:95
|
852 |
-
msgid "Value"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:53
|
856 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:96
|
857 |
-
msgid "Content of the tab. (HTML is supported)"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:65
|
861 |
-
msgid "Add custom product tab"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: ../plugin-fw/templates/metaboxes/types/customtabs.php:107
|
865 |
-
msgid "Do you want to remove the custom tab?"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:89
|
869 |
-
#, php-format
|
870 |
-
msgid "(Default: %s <img src=\"%s\"/>)"
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
#: ../plugin-fw/templates/metaboxes/types/icon-list.php:91
|
874 |
-
#, php-format
|
875 |
-
msgid "(Default: <i %s></i> )"
|
876 |
-
msgstr ""
|
877 |
-
|
878 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:35
|
879 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
880 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:33
|
881 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:59
|
882 |
-
msgid "Delete image"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
886 |
-
msgid "Add Images to Gallery"
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
890 |
-
msgid "Add to gallery"
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
894 |
-
msgid "Add images"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: ../plugin-fw/templates/metaboxes/types/image-gallery.php:40
|
898 |
-
msgid "Delete"
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:37
|
902 |
-
msgid "Upload new images"
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
#: ../plugin-fw/templates/metaboxes/types/images.php:70
|
906 |
-
msgid "Are you sure you want to remove this image?"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:25
|
910 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:36
|
911 |
-
msgid "Left sidebar"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:28
|
915 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:42
|
916 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:45
|
917 |
-
msgid "No sidebar"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:31
|
921 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:39
|
922 |
-
msgid "Right sidebar"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebar-layout.php:34
|
926 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:53
|
927 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:64
|
928 |
-
msgid "Choose a sidebar"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:51
|
932 |
-
msgid "Left Sidebar"
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: ../plugin-fw/templates/metaboxes/types/sidebars.php:62
|
936 |
-
msgid "Right Sidebar"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:42
|
940 |
-
msgid "px"
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:43
|
944 |
-
msgid "em"
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:44
|
948 |
-
msgid "pt"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:45
|
952 |
-
msgid "rem"
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:59
|
956 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:153
|
957 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:217
|
958 |
-
msgid "Web fonts"
|
959 |
-
msgstr ""
|
960 |
-
|
961 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:71
|
962 |
-
msgid "Google fonts"
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:96
|
966 |
-
msgid "Regular"
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:97
|
970 |
-
msgid "Bold"
|
971 |
-
msgstr ""
|
972 |
-
|
973 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:98
|
974 |
-
msgid "Extra bold"
|
975 |
-
msgstr ""
|
976 |
-
|
977 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:99
|
978 |
-
msgid "Italic"
|
979 |
-
msgstr ""
|
980 |
-
|
981 |
-
#: ../plugin-fw/templates/metaboxes/types/typography.php:100
|
982 |
-
msgid "Italic bold"
|
983 |
-
msgstr ""
|
984 |
-
|
985 |
-
#: ../plugin-options/settings-options.php:16
|
986 |
msgid "Upgrade to the PREMIUM VERSION"
|
987 |
msgstr ""
|
988 |
|
989 |
#: ../plugin-options/settings-options.php:20
|
990 |
-
|
|
|
991 |
msgstr ""
|
992 |
|
993 |
#: ../plugin-options/settings-options.php:21
|
|
|
|
|
|
|
|
|
994 |
msgid ""
|
995 |
"Upgrade to the PREMIUM VERSION of YITH WooCommerce Catalog Mode to benefit "
|
996 |
"from all features!"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../plugin-options/settings-options.php:
|
1000 |
msgid "Get Support and Pro Features"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../plugin-options/settings-options.php:
|
1004 |
msgid ""
|
1005 |
"By purchasing the premium version of the plugin, you will take advantage of "
|
1006 |
"the advanced features of the product and you will get one year of free "
|
1007 |
"updates and support through our platform available 24h/24."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: ../plugin-options/settings-options.php:
|
1011 |
-
#: ../plugin-options/settings-options.php:
|
1012 |
-
#: ../plugin-options/settings-options.php:
|
|
|
1013 |
msgid "\"Add to cart\" button"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: ../plugin-options/settings-options.php:
|
1017 |
msgid "Exclude selected products (See \"Exclusions\" tab)"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: ../plugin-options/settings-options.php:50
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1021 |
msgid "General Settings"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../plugin-options/settings-options.php:
|
1025 |
msgid "Enable YITH Woocommerce Catalog Mode"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../plugin-options/settings-options.php:
|
1029 |
msgid "Admin View"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: ../plugin-options/settings-options.php:
|
1033 |
msgid "Enable Catalog Mode also for administrators"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: ../plugin-options/settings-options.php:
|
1037 |
msgid "Catalog Mode Settings"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: ../plugin-options/settings-options.php:
|
1041 |
msgid "Hide in product details page"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: ../plugin-options/settings-options.php:
|
1045 |
msgid "Hide in other pages"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: ../plugin-options/settings-options.php:
|
1049 |
msgid "\"Cart\" and \"Checkout\" pages"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: ../plugin-options/settings-options.php:
|
1053 |
-
msgid "Hide"
|
1054 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: YITH WooCommerce Catalog Mode\n"
|
4 |
+
"POT-Creation-Date: 2015-07-09 12:20+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-07-09 12:20+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
14 |
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
15 |
"_nx_noop:4c,1,2\n"
|
17 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
21 |
|
22 |
+
#: ../class.yith-woocommerce-catalog-mode.php:598
|
23 |
+
#: ../class.yith-woocommerce-catalog-mode.php:666
|
|
|
|
|
|
|
|
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../class.yith-woocommerce-catalog-mode.php:602
|
28 |
msgid "Premium Settings"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../class.yith-woocommerce-catalog-mode.php:603
|
32 |
msgid "Exclusion List"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../class.yith-woocommerce-catalog-mode.php:605
|
36 |
+
#: ../class.yith-woocommerce-catalog-mode.php:669
|
37 |
msgid "Premium Version"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../class.yith-woocommerce-catalog-mode.php:611
|
41 |
+
#: ../class.yith-woocommerce-catalog-mode.php:612
|
42 |
msgid "Catalog Mode"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../class.yith-woocommerce-catalog-mode.php:695
|
46 |
msgid "Plugin Documentation"
|
47 |
msgstr ""
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
#: ../init.php:23
|
50 |
msgid ""
|
51 |
"YITH WooCommerce Catalog Mode is enabled but not effective. It requires "
|
52 |
+
"WooCommerce in order to work."
|
53 |
msgstr ""
|
54 |
|
55 |
#: ../init.php:31
|
58 |
"you are using the premium one."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../plugin-options/settings-options.php:17
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "Upgrade to the PREMIUM VERSION"
|
63 |
msgstr ""
|
64 |
|
65 |
#: ../plugin-options/settings-options.php:20
|
66 |
+
#: ../plugin-options/settings-options.php:26
|
67 |
+
msgid "YITH WooCommerce Catalog Mode"
|
68 |
msgstr ""
|
69 |
|
70 |
#: ../plugin-options/settings-options.php:21
|
71 |
+
msgid "Discover the Advanced Features"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: ../plugin-options/settings-options.php:22
|
75 |
msgid ""
|
76 |
"Upgrade to the PREMIUM VERSION of YITH WooCommerce Catalog Mode to benefit "
|
77 |
"from all features!"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../plugin-options/settings-options.php:28
|
81 |
msgid "Get Support and Pro Features"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../plugin-options/settings-options.php:29
|
85 |
msgid ""
|
86 |
"By purchasing the premium version of the plugin, you will take advantage of "
|
87 |
"the advanced features of the product and you will get one year of free "
|
88 |
"updates and support through our platform available 24h/24."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../plugin-options/settings-options.php:39
|
92 |
+
#: ../plugin-options/settings-options.php:48
|
93 |
+
#: ../plugin-options/settings-options.php:99
|
94 |
+
#: ../plugin-options/settings-options.php:107
|
95 |
msgid "\"Add to cart\" button"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../plugin-options/settings-options.php:41
|
99 |
msgid "Exclude selected products (See \"Exclusions\" tab)"
|
100 |
msgstr ""
|
101 |
|
102 |
#: ../plugin-options/settings-options.php:50
|
103 |
+
msgid "Reverse Exclusion List (Restrict Catalog Mode to selected items only)"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../plugin-options/settings-options.php:57
|
107 |
+
msgid "Variable products"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: ../plugin-options/settings-options.php:59
|
111 |
+
msgid "Hide product variations"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../plugin-options/settings-options.php:69
|
115 |
msgid "General Settings"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../plugin-options/settings-options.php:75
|
119 |
msgid "Enable YITH Woocommerce Catalog Mode"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: ../plugin-options/settings-options.php:82
|
123 |
msgid "Admin View"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../plugin-options/settings-options.php:84
|
127 |
msgid "Enable Catalog Mode also for administrators"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../plugin-options/settings-options.php:93
|
131 |
msgid "Catalog Mode Settings"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../plugin-options/settings-options.php:101
|
135 |
msgid "Hide in product details page"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../plugin-options/settings-options.php:109
|
139 |
msgid "Hide in other pages"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../plugin-options/settings-options.php:118
|
143 |
msgid "\"Cart\" and \"Checkout\" pages"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../plugin-options/settings-options.php:120
|
147 |
+
msgid "Hide and disable all shop features"
|
148 |
msgstr ""
|
plugin-fw/assets/css/yit-plugin-panel.css
CHANGED
@@ -169,6 +169,7 @@
|
|
169 |
padding-left: 6px;
|
170 |
position: absolute;
|
171 |
z-index: 2;
|
|
|
172 |
}
|
173 |
.ie8 .yit_options select,
|
174 |
.ie8 .yit-options select {
|
169 |
padding-left: 6px;
|
170 |
position: absolute;
|
171 |
z-index: 2;
|
172 |
+
overflow: hidden;
|
173 |
}
|
174 |
.ie8 .yit_options select,
|
175 |
.ie8 .yit-options select {
|
plugin-fw/lib/yit-cpt-unlimited.php
CHANGED
@@ -1630,7 +1630,7 @@ class YIT_CPT_Unlimited {
|
|
1630 |
class: 'multi-uploader add-new-h2',
|
1631 |
'data-uploader_title': '<?php printf( __( 'Add %s from images', 'yith-plugin-fw' ), $label_plural ) ?>',
|
1632 |
'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yith-plugin-fw' ), $label_plural ) ?>'
|
1633 |
-
}).text('<?php _e( '
|
1634 |
|
1635 |
var spinner = $('<span />', {
|
1636 |
class: 'spinner',
|
1630 |
class: 'multi-uploader add-new-h2',
|
1631 |
'data-uploader_title': '<?php printf( __( 'Add %s from images', 'yith-plugin-fw' ), $label_plural ) ?>',
|
1632 |
'data-uploader_button_text': '<?php printf( __( 'Add %s', 'yith-plugin-fw' ), $label_plural ) ?>'
|
1633 |
+
}).text('<?php _e( 'Upload multiple files', 'yith-plugin-fw' ) ?>');
|
1634 |
|
1635 |
var spinner = $('<span />', {
|
1636 |
class: 'spinner',
|
plugin-fw/lib/yit-plugin-common.php
CHANGED
@@ -27,7 +27,7 @@ class YIT_Plugin_Common {
|
|
27 |
|
28 |
|
29 |
'awesome_icons' => array(
|
30 |
-
'' => '
|
31 |
'f042' => 'adjust',
|
32 |
'f170' => 'adn',
|
33 |
'f037' => 'align-center',
|
27 |
|
28 |
|
29 |
'awesome_icons' => array(
|
30 |
+
'' => 'no-icon',
|
31 |
'f042' => 'adjust',
|
32 |
'f170' => 'adn',
|
33 |
'f037' => 'align-center',
|
plugin-fw/lib/yit-plugin-panel.php
CHANGED
@@ -295,7 +295,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
295 |
<form method="post">
|
296 |
<?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) ?>
|
297 |
<input type="hidden" name="yit-action" value="reset" />
|
298 |
-
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset to
|
299 |
</form>
|
300 |
<p> </p>
|
301 |
<?php endif ?>
|
295 |
<form method="post">
|
296 |
<?php $warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) ?>
|
297 |
<input type="hidden" name="yit-action" value="reset" />
|
298 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset to default', 'yith-plugin-fw' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yith-plugin-fw' ) ?>');" />
|
299 |
</form>
|
300 |
<p> </p>
|
301 |
<?php endif ?>
|
plugin-fw/lib/yit-plugin-subpanel.php
CHANGED
@@ -145,7 +145,7 @@ if ( ! class_exists( 'YIT_Plugin_SubPanel' ) ) {
|
|
145 |
<form method="post">
|
146 |
<?php $warning = __( 'If you continue with this action, you will reset all the options in this page.', 'yith-plugin-fw' ) ?>
|
147 |
<input type="hidden" name="yit-action" value="reset" />
|
148 |
-
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset to
|
149 |
</form>
|
150 |
<p> </p>
|
151 |
<?php endif ?>
|
145 |
<form method="post">
|
146 |
<?php $warning = __( 'If you continue with this action, you will reset all the options in this page.', 'yith-plugin-fw' ) ?>
|
147 |
<input type="hidden" name="yit-action" value="reset" />
|
148 |
+
<input type="submit" name="yit-reset" class="button-secondary" value="<?php _e( 'Reset to default', 'yith-plugin-fw' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yith-plugin-fw' ) ?>');" />
|
149 |
</form>
|
150 |
<p> </p>
|
151 |
<?php endif ?>
|
plugin-fw/templates/metaboxes/types/icon-list.php
CHANGED
@@ -23,7 +23,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
23 |
|
24 |
$current_options = wp_parse_args( $args['value'], $args['std'] );
|
25 |
$current_icon = YIT_Icon()->get_icon_data( $current_options['icon'] );
|
26 |
-
$
|
27 |
|
28 |
$options['icon'] = YIT_Plugin_Common::get_icon_list();
|
29 |
|
@@ -88,7 +88,7 @@ $options['icon'] = YIT_Plugin_Common::get_icon_list();
|
|
88 |
<?php if( $std['select'] == 'custom' ) : ?>
|
89 |
<?php printf( __( '(Default: %s <img src="%s"/>)', 'yith-plugin-fw' ), $options['select']['custom'], $std['custom'] ) ?>
|
90 |
<?php else: ?>
|
91 |
-
<?php printf( __( '(Default: <i %s></i> )', 'yith-plugin-fw' ), $
|
92 |
<?php endif; ?>
|
93 |
</div>
|
94 |
|
23 |
|
24 |
$current_options = wp_parse_args( $args['value'], $args['std'] );
|
25 |
$current_icon = YIT_Icon()->get_icon_data( $current_options['icon'] );
|
26 |
+
$std_icon = YIT_Icon()->get_icon_data( $std['icon'] );
|
27 |
|
28 |
$options['icon'] = YIT_Plugin_Common::get_icon_list();
|
29 |
|
88 |
<?php if( $std['select'] == 'custom' ) : ?>
|
89 |
<?php printf( __( '(Default: %s <img src="%s"/>)', 'yith-plugin-fw' ), $options['select']['custom'], $std['custom'] ) ?>
|
90 |
<?php else: ?>
|
91 |
+
<?php printf( __( '(Default: <i %s></i> )', 'yith-plugin-fw' ), $std_icon ) ?>
|
92 |
<?php endif; ?>
|
93 |
</div>
|
94 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
|
|
4 |
Tags: woocommerce, products, themes, yit, yith, e-commerce, shop, catalog mode, catalogue mode, remove add to cart, ask for price, ask price, asking for price, asking price, button remove, call, call for price, call me, call us, contact, email, hide add to cart, hide price
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -48,6 +48,11 @@ YITH WooCommerce Catalog Mode will add a new tab called "Catalog Mode" inside th
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
|
|
|
|
51 |
= 1.0.7 =
|
52 |
|
53 |
* Fixed: Added functions for themes and plugins compatibility
|
@@ -83,7 +88,7 @@ YITH WooCommerce Catalog Mode will add a new tab called "Catalog Mode" inside th
|
|
83 |
|
84 |
== Upgrade Notice ==
|
85 |
|
86 |
-
Last Stable Tag 1.0.
|
87 |
|
88 |
== Suggestions ==
|
89 |
|
4 |
Tags: woocommerce, products, themes, yit, yith, e-commerce, shop, catalog mode, catalogue mode, remove add to cart, ask for price, ask price, asking for price, asking price, button remove, call, call for price, call me, call us, contact, email, hide add to cart, hide price
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 1.0.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.0.8 =
|
52 |
+
|
53 |
+
* Updated language file
|
54 |
+
* Fixed: YITH WooCommerce Quick View compatibility
|
55 |
+
|
56 |
= 1.0.7 =
|
57 |
|
58 |
* Fixed: Added functions for themes and plugins compatibility
|
88 |
|
89 |
== Upgrade Notice ==
|
90 |
|
91 |
+
Last Stable Tag 1.0.8
|
92 |
|
93 |
== Suggestions ==
|
94 |
|