YITH WooCommerce Zoom Magnifier - Version 1.2.5

Version Description

Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Zoom Magnifier
Version 1.2.5
Comparing to
See all releases

Code changes from version 1.2.4 to 1.2.5

README.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
4
  Tags: zoom, magnifier, woocommerce, product image, themes, yit, e-commerce, shop, thumbnail, thumbnail slider, zoom image, carousel, image carousel
5
  Requires at least: 3.5.1
6
  Tested up to: 4.2.2
7
- Stable tag: 1.2.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -59,6 +59,10 @@ The size of the Zoom Image is automatically setted. If you want to change these
59
 
60
  == Changelog ==
61
 
 
 
 
 
62
  = Version 1.2.4 - RELEASED: JUN 26, 2015 =
63
 
64
  * Added: support to srcset and src-orig attributes.
4
  Tags: zoom, magnifier, woocommerce, product image, themes, yit, e-commerce, shop, thumbnail, thumbnail slider, zoom image, carousel, image carousel
5
  Requires at least: 3.5.1
6
  Tested up to: 4.2.2
7
+ Stable tag: 1.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
59
 
60
  == Changelog ==
61
 
62
+ = Version 1.2.5 - RELEASED: JUL 23, 2015 =
63
+
64
+ * Added: italian language.
65
+
66
  = Version 1.2.4 - RELEASED: JUN 26, 2015 =
67
 
68
  * Added: support to srcset and src-orig attributes.
class.yith-woocommerce-zoom-magnifier.php DELETED
@@ -1,92 +0,0 @@
1
- <?php
2
- /**
3
- * Main class
4
- *
5
- * @author Your Inspiration Themes
6
- * @package YITH WooCommerce Zoom Magnifier
7
- * @version 1.1.2
8
- */
9
-
10
- if ( ! defined( 'YITH_WCMG' ) ) {
11
- exit;
12
- } // Exit if accessed directly
13
-
14
- if ( ! class_exists( 'YITH_WCMG' ) ) {
15
- /**
16
- * WooCommerce Magnifier
17
- *
18
- * @since 1.0.0
19
- */
20
- class YITH_WooCommerce_Zoom_Magnifier {
21
- /**
22
- * Plugin version
23
- *
24
- * @var string
25
- * @since 1.0.0
26
- */
27
- public $version = '1.1.5';
28
-
29
- /**
30
- * Plugin object
31
- *
32
- * @var string
33
- * @since 1.0.0
34
- */
35
- public $obj = null;
36
-
37
- /**
38
- * Constructor
39
- *
40
- * @return mixed|YITH_WCMG_Admin|YITH_WCMG_Frontend
41
- * @since 1.0.0
42
- */
43
- public function __construct() {
44
- /** Stop the plugin on mobile devices */
45
- if ( ( 'yes' != get_option( 'yith_wcmg_enable_mobile' ) ) && wp_is_mobile() ) {
46
- return;
47
- }
48
-
49
- // actions
50
- add_action( 'init', array( $this, 'init' ) );
51
-
52
- if ( is_admin() ) {
53
- $this->obj = new YITH_WCMG_Admin( $this->version );
54
- } else {
55
- $this->obj = new YITH_WCMG_Frontend( $this->version );
56
- }
57
-
58
- return $this->obj;
59
- }
60
-
61
-
62
- /**
63
- * Init method:
64
- * - default options
65
- *
66
- * @access public
67
- * @since 1.0.0
68
- */
69
- public function init() {
70
- $this->_image_sizes();
71
- }
72
-
73
-
74
- /**
75
- * Add image sizes
76
- *
77
- * Init images
78
- *
79
- * @access protected
80
- * @return void
81
- * @since 1.0.0
82
- */
83
- protected function _image_sizes() {
84
- $size = get_option( 'woocommerce_magnifier_image' );
85
- $width = $size['width'];
86
- $height = $size['height'];
87
- $crop = isset( $size['crop'] ) ? true : false;
88
-
89
- add_image_size( 'shop_magnifier', $width, $height, $crop );
90
- }
91
- }
92
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: YITH WooCommerce Zoom Magnifier
4
  * Plugin URI: http://yithemes.com/themes/plugins/yith-woocommerce-zoom-magnifier/
5
  * Description: YITH WooCommerce Zoom Magnifier enables you to add a zoom effect to product images and a thumbnail slider for the product image gallery.
6
- * Version: 1.2.4
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: ywzm
@@ -11,7 +11,7 @@
11
  *
12
  * @author Your Inspiration Themes
13
  * @package YITH WooCommerce Magnifier
14
- * @version 1.2.4
15
  */
16
  /* Copyright 2013-2015 Your Inspiration Themes (email : plugins@yithemes.com)
17
 
@@ -40,7 +40,7 @@ if ( ! function_exists( 'is_plugin_active' ) ) {
40
  function yith_ywzm_install_woocommerce_admin_notice() {
41
  ?>
42
  <div class="error">
43
- <p><?php _e( 'YITH WooCommerce Zoom Magnifier is enabled but not effective. It requires Woocommerce in order to work.', 'ywzm' ); ?></p>
44
  </div>
45
  <?php
46
  }
@@ -65,7 +65,7 @@ if ( ! defined( 'YITH_YWZM_FREE_INIT' ) ) {
65
  }
66
 
67
  if ( ! defined( 'YITH_YWZM_VERSION' ) ) {
68
- define( 'YITH_YWZM_VERSION', '1.2.4' );
69
  }
70
 
71
  if ( ! defined( 'YITH_YWZM_FILE' ) ) {
3
  * Plugin Name: YITH WooCommerce Zoom Magnifier
4
  * Plugin URI: http://yithemes.com/themes/plugins/yith-woocommerce-zoom-magnifier/
5
  * Description: YITH WooCommerce Zoom Magnifier enables you to add a zoom effect to product images and a thumbnail slider for the product image gallery.
6
+ * Version: 1.2.5
7
  * Author: Yithemes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: ywzm
11
  *
12
  * @author Your Inspiration Themes
13
  * @package YITH WooCommerce Magnifier
14
+ * @version 1.2.5
15
  */
16
  /* Copyright 2013-2015 Your Inspiration Themes (email : plugins@yithemes.com)
17
 
40
  function yith_ywzm_install_woocommerce_admin_notice() {
41
  ?>
42
  <div class="error">
43
+ <p><?php _e( 'YITH WooCommerce Zoom Magnifier is enabled but not effective. It requires WooCommerce in order to work.', 'ywzm' ); ?></p>
44
  </div>
45
  <?php
46
  }
65
  }
66
 
67
  if ( ! defined( 'YITH_YWZM_VERSION' ) ) {
68
+ define( 'YITH_YWZM_VERSION', '1.2.5' );
69
  }
70
 
71
  if ( ! defined( 'YITH_YWZM_FILE' ) ) {
languages/ywzm-it_IT.mo ADDED
Binary file
languages/ywzm-it_IT.po ADDED
@@ -0,0 +1,443 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: YITH WooCommerce Zoom Magnifier\n"
4
+ "POT-Creation-Date: 2015-07-23 15:49+0200\n"
5
+ "PO-Revision-Date: 2015-07-23 15:49+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
8
+ "Language: it_IT\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n!=1;\n"
15
+ "X-Poedit-KeywordsList: __ ;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPathExcluded-0: plugin-fw\n"
20
+
21
+ #: class.yith-wcmg-admin.php:91
22
+ msgid "Image Size"
23
+ msgstr "Dimensioni Immagine"
24
+
25
+ #: class.yith-wcmg-admin.php:92 plugin-options/general-options.php:17
26
+ msgid "The size of the images used within the magnifier box"
27
+ msgstr "La dimensione delle immagini utilizzata nel riquadro di zoom"
28
+
29
+ #: init.php:43
30
+ msgid ""
31
+ "YITH WooCommerce Zoom Magnifier is enabled but not effective. It requires "
32
+ "WooCommerce in order to work."
33
+ msgstr ""
34
+ "YITH WooCommerce Zoom Magnifier è attivo ma non funzionante. Il plugin "
35
+ "richiede WooCommerce per funzionare correttamente."
36
+
37
+ #: init.php:52
38
+ msgid ""
39
+ "You can't activate the free version of YITH WooCommerce Zoom Magnifier while "
40
+ "you are using the premium one."
41
+ msgstr ""
42
+ "Non è possibile attivare la versione gratuita di YITH WooCommerce Zoom "
43
+ "Magnifier mentre si utilizza quella premium."
44
+
45
+ #: lib/class.yith-ywzm-custom-types.php:179
46
+ msgid "Do you want to hard crop the image?"
47
+ msgstr "Vuoi ritagliare l'immagine?"
48
+
49
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:124
50
+ msgid "General"
51
+ msgstr "Generale"
52
+
53
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:127
54
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:191
55
+ msgid "Premium Version"
56
+ msgstr "Versione Premium"
57
+
58
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:129
59
+ msgid "Product exclusion list"
60
+ msgstr "Elenco esclusioni prodotti"
61
+
62
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:188
63
+ msgid "Settings"
64
+ msgstr "Impostazioni"
65
+
66
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:216
67
+ msgid "Plugin Documentation"
68
+ msgstr "Documentazione Plugin"
69
+
70
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:229
71
+ msgid ""
72
+ "YITH WooCommerce Zoom Magnifier is available in an outstanding PREMIUM "
73
+ "version with many new options, discover it now."
74
+ msgstr ""
75
+ "YITH WooCommerce Zoom Magnifier è disponibile in una straordinaria versione "
76
+ "PREMIUM con molte nuove opzioni, scoprila subito."
77
+
78
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:230
79
+ msgid "Premium version"
80
+ msgstr "Versione premium"
81
+
82
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:237
83
+ #: plugin-options/general-options.php:214
84
+ msgid "YITH WooCommerce Zoom Magnifier"
85
+ msgstr "YITH WooCommerce Zoom Magnifier"
86
+
87
+ #: lib/class.yith-ywzm-plugin-fw-loader.php:238
88
+ msgid ""
89
+ "In YIT Plugins tab you can find YITH WooCommerce Zoom Magnifier options."
90
+ "<br> From this menu you can access all settings of the YITH plugins "
91
+ "activated."
92
+ msgstr ""
93
+ "Nella tab YIT Plugins puoi trovare le optioni di YITH WooCommerce Zoom "
94
+ "Magnifier.<br> Da questo menu puoi accedere a tutte le impostazioni dei "
95
+ "plugin YITH attivati."
96
+
97
+ #: plugin-options/general-options.php:16
98
+ msgid "Image size"
99
+ msgstr "Dimensione immagine"
100
+
101
+ #: plugin-options/general-options.php:36
102
+ msgid "General Settings"
103
+ msgstr "Impostazioni generali"
104
+
105
+ #: plugin-options/general-options.php:42
106
+ msgid "Activate YITH Magnifier"
107
+ msgstr "Attiva YITH Magnifier"
108
+
109
+ #: plugin-options/general-options.php:43
110
+ msgid "Activate the plugin or use the WooCommerce default product image."
111
+ msgstr "Attiva il plugin o usa le immagini prodotto di default di WooCommerce."
112
+
113
+ #: plugin-options/general-options.php:50
114
+ msgid "Activate the plugin on mobile device"
115
+ msgstr "Attiva il plugin su dispositivi mobili"
116
+
117
+ #: plugin-options/general-options.php:57
118
+ msgid "Forced Image Size"
119
+ msgstr "Dimensioni Immagini Forzate"
120
+
121
+ #: plugin-options/general-options.php:58
122
+ msgid ""
123
+ "If disabled, you will able to customize the sizes of the zoomed images. "
124
+ "Disable it at your own risk; the magnifier could not properly work with "
125
+ "images out of proportion."
126
+ msgstr ""
127
+ "Se disabilitata, questa opzione permette di personalizzare la dimensione "
128
+ "delle immagini zoomate. Disabilitare a proprio rischio: lo zoom potrebbe non "
129
+ "funzionare correttamente con immagini sproporzionate."
130
+
131
+ #: plugin-options/general-options.php:72
132
+ msgid "Magnifier Settings"
133
+ msgstr "Impostazioni Zoom"
134
+
135
+ #: plugin-options/general-options.php:78
136
+ msgid "Zoom Box Width"
137
+ msgstr "Larghezza Riquadro Zoom"
138
+
139
+ #: plugin-options/general-options.php:79
140
+ msgid "The width of the magnifier box (default: auto)"
141
+ msgstr "La larghezza del riquadro di zoom (default: auto)"
142
+
143
+ #: plugin-options/general-options.php:86
144
+ msgid "Zoom Box Height"
145
+ msgstr "Altezza Riquadro Zoom"
146
+
147
+ #: plugin-options/general-options.php:87
148
+ msgid "The height of the magnifier box (default: auto)"
149
+ msgstr "L'altezza del riquadro di zoom (default: auto)"
150
+
151
+ #: plugin-options/general-options.php:95
152
+ msgid "Zoom Box Position"
153
+ msgstr "Posizione Riquadro Zoom"
154
+
155
+ #: plugin-options/general-options.php:96
156
+ msgid "The magnifier position"
157
+ msgstr "Dove apparirà la finestra di zoom"
158
+
159
+ #: plugin-options/general-options.php:102
160
+ msgid "Right"
161
+ msgstr "Destra"
162
+
163
+ #: plugin-options/general-options.php:103
164
+ #: plugin-options/general-options.php:115
165
+ msgid "Inside"
166
+ msgstr "Interno"
167
+
168
+ #: plugin-options/general-options.php:107
169
+ msgid "Zoom Box Position for mobile devices"
170
+ msgstr "Posizione Riquadro Zoom su dispositivi mobili"
171
+
172
+ #: plugin-options/general-options.php:108
173
+ msgid "The magnifier position for the mobile devices (iPhone, Android, etc.)"
174
+ msgstr ""
175
+ "Dove apparirà la finestra di zoom sui dispositivi mobili (iPhone, Android, "
176
+ "etc.)"
177
+
178
+ #: plugin-options/general-options.php:114
179
+ msgid "Default"
180
+ msgstr "Default"
181
+
182
+ #: plugin-options/general-options.php:116
183
+ msgid "Disable"
184
+ msgstr "Disattiva"
185
+
186
+ #: plugin-options/general-options.php:120
187
+ msgid "Loading label"
188
+ msgstr "Etichetta di caricamento"
189
+
190
+ #: plugin-options/general-options.php:123
191
+ #: plugin-options/general-options.php:124
192
+ msgid "Loading..."
193
+ msgstr "Caricamento..."
194
+
195
+ #: plugin-options/general-options.php:128
196
+ msgid "Lens Opacity"
197
+ msgstr "Opacità Lenti"
198
+
199
+ #: plugin-options/general-options.php:139
200
+ msgid "Blur"
201
+ msgstr "Sfocatura"
202
+
203
+ #: plugin-options/general-options.php:140
204
+ msgid "Add a blur effect to the small image on mouse hover."
205
+ msgstr ""
206
+ "Aggiungi un effetto di sfocatura all'immagine piccola al passaggio del mouse."
207
+
208
+ #: plugin-options/general-options.php:151
209
+ msgid "Slider Settings"
210
+ msgstr "Impostazioni Slider"
211
+
212
+ #: plugin-options/general-options.php:157
213
+ msgid "Activate Slider"
214
+ msgstr "Attiva Slider"
215
+
216
+ #: plugin-options/general-options.php:158
217
+ msgid "Activate Thumbnail Slider."
218
+ msgstr "Attiva lo slider con anteprime."
219
+
220
+ #: plugin-options/general-options.php:165
221
+ msgid "Activate Responsive Slider"
222
+ msgstr "Attiva Slider Responsive"
223
+
224
+ #: plugin-options/general-options.php:166
225
+ msgid ""
226
+ "This option fits the thumbnails within the available space. Disable it if "
227
+ "you want to manage freely the thumbnails (eg. add margins, paddings, etc.)"
228
+ msgstr ""
229
+ "Questa opzione adatta le anteprime allo spazio disponibile. Disabilitala se "
230
+ "vuoi gestire liberamente le anteprime (per esempio aggiungere margini, "
231
+ "padding, ecc.)"
232
+
233
+ #: plugin-options/general-options.php:173
234
+ msgid "Items"
235
+ msgstr "Elementi"
236
+
237
+ #: plugin-options/general-options.php:174
238
+ msgid "Number of items to show"
239
+ msgstr "Numero di elementi da mostrare"
240
+
241
+ #: plugin-options/general-options.php:184
242
+ msgid "Circular carousel"
243
+ msgstr "Carosello circolare"
244
+
245
+ #: plugin-options/general-options.php:185
246
+ msgid "It defines whether the carousel should be circular."
247
+ msgstr "Imposta se il carosello deve essere circolare."
248
+
249
+ #: plugin-options/general-options.php:192
250
+ msgid "Infinite carousel"
251
+ msgstr "Carosello infinito"
252
+
253
+ #: plugin-options/general-options.php:193
254
+ msgid ""
255
+ "It defines whether the carousel should be infinite. Note: It is possible to "
256
+ "create a non-circular, infinite carousel, but it is not possible to create a "
257
+ "circular, non-infinite carousel."
258
+ msgstr ""
259
+ "Imposta se il carosello deve essere infinito. Attenzione: è possibile creare "
260
+ "un carosello infinito non circolare, ma non puoi creare un carosello "
261
+ "circolare non infinito."
262
+
263
+ #: plugin-options/general-options.php:211
264
+ msgid "Upgrade to the PREMIUM VERSION"
265
+ msgstr "Aggiorna alla VERSIONE PREMIUM"
266
+
267
+ #: plugin-options/general-options.php:215
268
+ msgid "Discover The Advanced Features"
269
+ msgstr "Scopri le caratteristiche avanzate"
270
+
271
+ #: plugin-options/general-options.php:216
272
+ msgid ""
273
+ "Upgrade to the PREMIUM VERSION of YITH WOOCOMMERCE ZOOM MAGNIFIER to benefit "
274
+ "from all features!"
275
+ msgstr ""
276
+ "Aggiorna alla VERSIONE PREMIUM di YITH WOOCOMMERCE ZOOM MAGNIFIER per "
277
+ "usufruire di tutte le caratteristiche!"
278
+
279
+ #: plugin-options/general-options.php:220
280
+ msgid ""
281
+ "See YITH WooCommerce Zoom Magnifier plugin with full premium features in "
282
+ "action"
283
+ msgstr ""
284
+ "Guarda il plugin YITH WooCommerce Zoom Magnifier con tutte le "
285
+ "caratteristiche premium in azione"
286
+
287
+ #: plugin-options/general-options.php:222
288
+ msgid "Get Support and Pro Features"
289
+ msgstr "Ottieni il supporto e le caratteristiche premium"
290
+
291
+ #: plugin-options/general-options.php:223
292
+ msgid ""
293
+ "Purchasing the premium version of the plugin, you will take advantage of the "
294
+ "advanced features of the product and you will get one year of free updates "
295
+ "and support through our platform available 24h/24."
296
+ msgstr ""
297
+ "Acquistando la versione premium del plugin potrai usufruire delle "
298
+ "caratteristiche avanzate del prodotto, oltre a ottenere un anno di "
299
+ "aggiornamenti gratuiti e di supporto attraverso la nostra piattaforma "
300
+ "disponibile 24h/24."
301
+
302
+ #: yit-common/yith-panel.php:424
303
+ msgid "Select a date"
304
+ msgstr "Scegli una data"
305
+
306
+ #: yit-common/yith-panel.php:425
307
+ msgid "Hours"
308
+ msgstr "Ore"
309
+
310
+ #: yit-common/yith-panel.php:426 yit-common/yith-panel.php:427
311
+ msgid "Minutes"
312
+ msgstr "Minuti"
313
+
314
+ #: yit-common/yith-panel.php:435
315
+ msgid "Upload"
316
+ msgstr "Carica"
317
+
318
+ #: yit-common/yith-panel.php:472
319
+ msgid "px"
320
+ msgstr "px"
321
+
322
+ #: yit-common/yith-panel.php:474
323
+ msgid "em"
324
+ msgstr "em"
325
+
326
+ #: yit-common/yith-panel.php:476
327
+ msgid "pt"
328
+ msgstr "pt"
329
+
330
+ #: yit-common/yith-panel.php:478
331
+ msgid "rem"
332
+ msgstr "rem"
333
+
334
+ #: yit-common/yith-panel.php:490
335
+ msgid "Select a font family"
336
+ msgstr "Scegli una famiglia di caratteri"
337
+
338
+ #: yit-common/yith-panel.php:500
339
+ msgid "Regular"
340
+ msgstr "Normale"
341
+
342
+ #: yit-common/yith-panel.php:502
343
+ msgid "Bold"
344
+ msgstr "Grassetto"
345
+
346
+ #: yit-common/yith-panel.php:504
347
+ msgid "Extra bold"
348
+ msgstr "Grassetto extra"
349
+
350
+ #: yit-common/yith-panel.php:506
351
+ msgid "Italic"
352
+ msgstr "Corsivo"
353
+
354
+ #: yit-common/yith-panel.php:508
355
+ msgid "Italic bold"
356
+ msgstr "Corsivo E Grassetto"
357
+
358
+ #: yit-common/yith-panel.php:524
359
+ msgid "Click to preview"
360
+ msgstr "Premi per visualizzare l'anteprima"
361
+
362
+ #~ msgid "product"
363
+ #~ msgstr "prodotto"
364
+
365
+ #~ msgid "products"
366
+ #~ msgstr "prodotti"
367
+
368
+ #~ msgid "Product"
369
+ #~ msgstr "Prodotto"
370
+
371
+ #~ msgid "Remove from exclusions"
372
+ #~ msgstr "Rimuovi dalle esclusioni"
373
+
374
+ #~ msgid "Edit product"
375
+ #~ msgstr "Modifica prodotto"
376
+
377
+ #~ msgid "Remove from list"
378
+ #~ msgstr "Elimina dalla lista"
379
+
380
+ #~ msgid "%s product removed successfully"
381
+ #~ msgid_plural "%s products removed successfully"
382
+ #~ msgstr[0] "%s prodotto rimosso correttamente"
383
+ #~ msgstr[1] "%s prodotti rimossi correttamente"
384
+
385
+ #~ msgid "%s product added successfully"
386
+ #~ msgid_plural "%s products added successfully"
387
+ #~ msgstr[0] "%s prodotto aggiunto correttamente"
388
+ #~ msgstr[1] "%s prodotti aggiunti correttamente"
389
+
390
+ #~ msgid "Product updated successfully"
391
+ #~ msgstr "Prodotto aggiornato correttamente"
392
+
393
+ #~ msgid "Single Product Exclusion List"
394
+ #~ msgstr "Elenco Esclusioni Prodotti"
395
+
396
+ #~ msgid "Add Products"
397
+ #~ msgstr "Aggiungi Prodotto"
398
+
399
+ #~ msgid "Products to exclude"
400
+ #~ msgstr "Prodotti da escludere"
401
+
402
+ #~ msgid "Add product exclusion"
403
+ #~ msgstr "Aggiungi esclusione prodotto"
404
+
405
+ #~ msgid "Return to exclusion list"
406
+ #~ msgstr "Torno all'elenco esclusioni"
407
+
408
+ #~ msgid "Select at least one product"
409
+ #~ msgstr "Seleziona almeno un prodotto"
410
+
411
+ #~ msgid "Exclude product categories"
412
+ #~ msgstr "Escludi categorie di prodotti"
413
+
414
+ #~ msgid "Top"
415
+ #~ msgstr "Sopra"
416
+
417
+ #~ msgid "Bottom"
418
+ #~ msgstr "Sotto"
419
+
420
+ #~ msgid "Left"
421
+ #~ msgstr "Sinistra"
422
+
423
+ #~ msgid "Activate YITH WooCommerce Zoom Magnifier"
424
+ #~ msgstr "Attiva YITH WooCommerce Zoom Magnifier"
425
+
426
+ #~ msgid "Activate on mobile device"
427
+ #~ msgstr "Attiva su dispositivi mobili"
428
+
429
+ #~ msgid ""
430
+ #~ "Set if zoom and slider functionalities should be shown also on mobile "
431
+ #~ "devices."
432
+ #~ msgstr ""
433
+ #~ "Decidi se mostrare lo zoom e lo slider anche sui dispositivi mobili."
434
+
435
+ #~ msgid ""
436
+ #~ "Purchasing the premium version of the plugin, you will take advantage of "
437
+ #~ "the advanced features of the product, and you will get one year of free "
438
+ #~ "updates and support through our platform available 24h/24."
439
+ #~ msgstr ""
440
+ #~ "Acquistando la versione premium del plugin potrai usufruire delle "
441
+ #~ "caratteristiche avanzate del prodotto, oltre a ottenere un anno di "
442
+ #~ "aggiornamenti gratuiti e di supporto attraverso la nostra piattaforma "
443
+ #~ "disponibile 24h/24."
lib/class.yith-woocommerce-zoom-magnifier.php CHANGED
@@ -7,7 +7,9 @@
7
  * @version 1.1.2
8
  */
9
 
10
- if ( !defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
 
 
11
 
12
 
13
  if ( ! class_exists( 'YITH_WooCommerce_Zoom_Magnifier' ) ) {
7
  * @version 1.1.2
8
  */
9
 
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit;
12
+ } // Exit if accessed directly
13
 
14
 
15
  if ( ! class_exists( 'YITH_WooCommerce_Zoom_Magnifier' ) ) {
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( 'Add with multiupload', 'yith-plugin-fw' ) ?>');
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-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 Default', 'yith-plugin-fw' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yith-plugin-fw' ) ?>');" />
299
  </form>
300
  <p>&nbsp;</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>&nbsp;</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 Default', 'yith-plugin-fw' ) ?>" onclick="return confirm('<?php echo $warning . '\n' . __( 'Are you sure?', 'yith-plugin-fw' ) ?>');" />
149
  </form>
150
  <p>&nbsp;</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>&nbsp;</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
- $current_icon = YIT_Icon()->get_icon_data( $std['icon'] );
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' ), $current_icon ) ?>
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