Version Description
- Added: Support to WC 2.2.2
- Updated: Plugin Core Framework
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Zoom Magnifier |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- README.txt +8 -3
- class.yith-wcmg-admin.php +42 -1
- class.yith-wcmg.php +2 -3
- init.php +1 -1
- languages/default.po +46 -42
- languages/yit-it_IT.mo +0 -0
- languages/yit-it_IT.po +46 -42
- languages/yit-tr_TR.mo +0 -0
- languages/yit-tr_TR.po +293 -0
- languages/yit.pot +109 -43
- yit-common/yit-functions.php +5 -3
README.txt
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Contributors: yithemes
|
4 |
Tags: zoom, magnifier, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
YITH WooCommerce Zoom Magnifier is a Wordpress plugins that enables you to add a zoom effect to product images.
|
12 |
-
WooCommerce 2.
|
13 |
|
14 |
== Description ==
|
15 |
|
@@ -70,6 +70,11 @@ The size of the Zoom Image is automatically setted. If you want to change these
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
|
|
|
|
73 |
= 1.1.2 =
|
74 |
|
75 |
* Restored: Image size options on WC 2.1.x
|
3 |
Contributors: yithemes
|
4 |
Tags: zoom, magnifier, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.0
|
7 |
+
Stable tag: 1.1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
YITH WooCommerce Zoom Magnifier is a Wordpress plugins that enables you to add a zoom effect to product images.
|
12 |
+
WooCommerce 2.2.x Compatible.
|
13 |
|
14 |
== Description ==
|
15 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 1.1.3 =
|
74 |
+
|
75 |
+
* Added: Support to WC 2.2.2
|
76 |
+
* Updated: Plugin Core Framework
|
77 |
+
|
78 |
= 1.1.2 =
|
79 |
|
80 |
* Restored: Image size options on WC 2.1.x
|
class.yith-wcmg-admin.php
CHANGED
@@ -70,6 +70,9 @@ if ( ! class_exists( 'YITH_WCMG_Admin' ) ) {
|
|
70 |
if ( ! has_action( 'woocommerce_admin_field_picker' ) ) {
|
71 |
add_action( 'woocommerce_admin_field_picker', array( $this, 'admin_fields_picker' ) );
|
72 |
}
|
|
|
|
|
|
|
73 |
add_action( 'woocommerce_admin_field_banner', array( $this, 'admin_fields_banner' ) );
|
74 |
add_action( 'admin_print_footer_scripts', array( $this, 'admin_fields_image_deps' ) );
|
75 |
|
@@ -212,15 +215,24 @@ if ( ! class_exists( 'YITH_WCMG_Admin' ) ) {
|
|
212 |
* @since 1.0.0
|
213 |
*/
|
214 |
protected function _initOptions() {
|
|
|
215 |
$image_size = array();
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
if ( function_exists( 'WC' ) ) {
|
218 |
$image_size = array(
|
219 |
'name' => __( 'Catalog Zoom Images', 'yit' ),
|
220 |
'desc' => __( 'The size of images used within the magnifier box', 'yit' ),
|
221 |
'id' => 'woocommerce_magnifier_image',
|
222 |
'css' => '',
|
223 |
-
'type' =>
|
224 |
'default' => array(
|
225 |
'width' => 600,
|
226 |
'height' => 600,
|
@@ -654,5 +666,34 @@ if ( ! class_exists( 'YITH_WCMG_Admin' ) ) {
|
|
654 |
|
655 |
return array_merge( $plugin_links, $links );
|
656 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
}
|
658 |
}
|
70 |
if ( ! has_action( 'woocommerce_admin_field_picker' ) ) {
|
71 |
add_action( 'woocommerce_admin_field_picker', array( $this, 'admin_fields_picker' ) );
|
72 |
}
|
73 |
+
if ( !has_action('woocommerce_admin_field_yit_wc_image_width')) {
|
74 |
+
add_action( 'woocommerce_admin_field_yit_wc_image_width', array( $this, 'admin_fields_yit_wc_image_width' ) );
|
75 |
+
}
|
76 |
add_action( 'woocommerce_admin_field_banner', array( $this, 'admin_fields_banner' ) );
|
77 |
add_action( 'admin_print_footer_scripts', array( $this, 'admin_fields_image_deps' ) );
|
78 |
|
215 |
* @since 1.0.0
|
216 |
*/
|
217 |
protected function _initOptions() {
|
218 |
+
global $woocommerce;
|
219 |
$image_size = array();
|
220 |
|
221 |
+
if ( version_compare( preg_replace( '/-beta-([0-9]+)/', '', $woocommerce->version ), '2.2', '<' ) ) {
|
222 |
+
$image_width_type = 'image_width';
|
223 |
+
}
|
224 |
+
else {
|
225 |
+
$image_width_type = 'yit_wc_image_width';
|
226 |
+
}
|
227 |
+
|
228 |
+
|
229 |
if ( function_exists( 'WC' ) ) {
|
230 |
$image_size = array(
|
231 |
'name' => __( 'Catalog Zoom Images', 'yit' ),
|
232 |
'desc' => __( 'The size of images used within the magnifier box', 'yit' ),
|
233 |
'id' => 'woocommerce_magnifier_image',
|
234 |
'css' => '',
|
235 |
+
'type' => $image_width_type,
|
236 |
'default' => array(
|
237 |
'width' => 600,
|
238 |
'height' => 600,
|
666 |
|
667 |
return array_merge( $plugin_links, $links );
|
668 |
}
|
669 |
+
|
670 |
+
/**
|
671 |
+
* Create new Woocommerce admin field: yit_wc_image_width
|
672 |
+
*
|
673 |
+
* @access public
|
674 |
+
* @param array $value
|
675 |
+
* @return void
|
676 |
+
* @since 1.1.3
|
677 |
+
*/
|
678 |
+
public function admin_fields_yit_wc_image_width( $value ){
|
679 |
+
|
680 |
+
$width = WC_Admin_Settings::get_option( $value['id'] . '[width]', $value['default']['width'] );
|
681 |
+
$height = WC_Admin_Settings::get_option( $value['id'] . '[height]', $value['default']['height'] );
|
682 |
+
$crop = WC_Admin_Settings::get_option( $value['id'] . '[crop]' );
|
683 |
+
$crop = ( $crop == 'on' || $crop == '1' ) ? 1 : 0;
|
684 |
+
$crop = checked( 1, $crop, false );
|
685 |
+
|
686 |
+
?><tr valign="top">
|
687 |
+
<th scope="row" class="titledesc"><?php echo esc_html( $value['title'] ) ?> <?php echo $value['desc'] ?></th>
|
688 |
+
<td class="forminp image_width_settings">
|
689 |
+
|
690 |
+
<input name="<?php echo esc_attr( $value['id'] ); ?>[width]" id="<?php echo esc_attr( $value['id'] ); ?>-width" type="text" size="3" value="<?php echo $width; ?>" /> × <input name="<?php echo esc_attr( $value['id'] ); ?>[height]" id="<?php echo esc_attr( $value['id'] ); ?>-height" type="text" size="3" value="<?php echo $height; ?>" />px
|
691 |
+
|
692 |
+
<label><input name="<?php echo esc_attr( $value['id'] ); ?>[crop]" id="<?php echo esc_attr( $value['id'] ); ?>-crop" type="checkbox" <?php echo $crop; ?> /> <?php _e( 'Hard Crop?', 'woocommerce' ); ?></label>
|
693 |
+
|
694 |
+
</td>
|
695 |
+
</tr><?php
|
696 |
+
|
697 |
+
}
|
698 |
}
|
699 |
}
|
class.yith-wcmg.php
CHANGED
@@ -22,7 +22,7 @@ if( !class_exists( 'YITH_WCMG' ) ) {
|
|
22 |
* @var string
|
23 |
* @since 1.0.0
|
24 |
*/
|
25 |
-
public $version = '1.1.
|
26 |
|
27 |
/**
|
28 |
* Plugin object
|
@@ -78,10 +78,9 @@ if( !class_exists( 'YITH_WCMG' ) ) {
|
|
78 |
$size = get_option('woocommerce_magnifier_image');
|
79 |
$width = $size['width'];
|
80 |
$height = $size['height'];
|
81 |
-
$crop = $size['crop'];
|
82 |
|
83 |
add_image_size( 'shop_magnifier', $width, $height, $crop );
|
84 |
}
|
85 |
-
|
86 |
}
|
87 |
}
|
22 |
* @var string
|
23 |
* @since 1.0.0
|
24 |
*/
|
25 |
+
public $version = '1.1.3';
|
26 |
|
27 |
/**
|
28 |
* Plugin object
|
78 |
$size = get_option('woocommerce_magnifier_image');
|
79 |
$width = $size['width'];
|
80 |
$height = $size['height'];
|
81 |
+
$crop = isset( $size['crop'] ) ? true : false;
|
82 |
|
83 |
add_image_size( 'shop_magnifier', $width, $height, $crop );
|
84 |
}
|
|
|
85 |
}
|
86 |
}
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Zoom Magnifier
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Zoom Magnifier enables you to add a zoom effect to product images.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
3 |
* Plugin Name: YITH WooCommerce Zoom Magnifier
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Zoom Magnifier enables you to add a zoom effect to product images.
|
6 |
+
* Version: 1.1.3
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
languages/default.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_US\n"
|
@@ -20,47 +20,47 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ yit
|
23 |
-
#: class.yith-wcmg-admin.php:
|
24 |
msgid "Magnifier"
|
25 |
msgstr ""
|
26 |
|
27 |
# @ yit
|
28 |
-
#: class.yith-wcmg-admin.php:
|
29 |
msgid "Catalog Zoom Images"
|
30 |
msgstr ""
|
31 |
|
32 |
# @ yit
|
33 |
-
#: class.yith-wcmg-admin.php:
|
34 |
msgid "The size of images used within the magnifier box"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ yit
|
38 |
-
#: class.yith-wcmg-admin.php:
|
39 |
msgid "General Settings"
|
40 |
msgstr ""
|
41 |
|
42 |
# @ yit
|
43 |
-
#: class.yith-wcmg-admin.php:
|
44 |
msgid "Slider"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ yit
|
48 |
-
#: class.yith-wcmg-admin.php:
|
49 |
msgid "Enable YITH Magnifier"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ yit
|
53 |
-
#: class.yith-wcmg-admin.php:
|
54 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ yit
|
58 |
-
#: class.yith-wcmg-admin.php:
|
59 |
msgid "Forcing Zoom Image sizes"
|
60 |
msgstr ""
|
61 |
|
62 |
# @ yit
|
63 |
-
#: class.yith-wcmg-admin.php:
|
64 |
msgid ""
|
65 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
66 |
"disable at your own risk; the magnifier should not properly work with "
|
@@ -68,159 +68,163 @@ msgid ""
|
|
68 |
msgstr ""
|
69 |
|
70 |
# @ yit
|
71 |
-
#: class.yith-wcmg-admin.php:
|
72 |
msgid "Magnifier Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
# @ yit
|
76 |
-
#: class.yith-wcmg-admin.php:
|
77 |
msgid "Zoom Area Width"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: class.yith-wcmg-admin.php:
|
81 |
msgid "The width of magnifier box (default: auto)"
|
82 |
msgstr ""
|
83 |
|
84 |
# @ yit
|
85 |
-
#: class.yith-wcmg-admin.php:
|
86 |
msgid "Zoom Area Height"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: class.yith-wcmg-admin.php:
|
90 |
msgid "The height of magnifier box (default: auto)"
|
91 |
msgstr ""
|
92 |
|
93 |
# @ yit
|
94 |
-
#: class.yith-wcmg-admin.php:
|
95 |
msgid "Zoom Area Position"
|
96 |
msgstr ""
|
97 |
|
98 |
# @ yit
|
99 |
-
#: class.yith-wcmg-admin.php:
|
100 |
msgid "The magnifier position"
|
101 |
msgstr ""
|
102 |
|
103 |
# @ yit
|
104 |
-
#: class.yith-wcmg-admin.php:
|
105 |
msgid "Right"
|
106 |
msgstr ""
|
107 |
|
108 |
# @ yit
|
109 |
-
#: class.yith-wcmg-admin.php:
|
110 |
msgid "Inside"
|
111 |
msgstr ""
|
112 |
|
113 |
# @ yit
|
114 |
-
#: class.yith-wcmg-admin.php:
|
115 |
msgid "Zoom Area Mobile Position"
|
116 |
msgstr ""
|
117 |
|
118 |
# @ yit
|
119 |
-
#: class.yith-wcmg-admin.php:
|
120 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
121 |
msgstr ""
|
122 |
|
123 |
# @ yit
|
124 |
-
#: class.yith-wcmg-admin.php:
|
125 |
msgid "Default"
|
126 |
msgstr ""
|
127 |
|
128 |
# @ yit
|
129 |
-
#: class.yith-wcmg-admin.php:
|
130 |
msgid "Disable"
|
131 |
msgstr ""
|
132 |
|
133 |
# @ yit
|
134 |
-
#: class.yith-wcmg-admin.php:
|
135 |
msgid "Loading label"
|
136 |
msgstr ""
|
137 |
|
138 |
# @ yit
|
139 |
-
#: class.yith-wcmg-admin.php:
|
140 |
msgid "Loading..."
|
141 |
msgstr ""
|
142 |
|
143 |
# @ yit
|
144 |
-
#: class.yith-wcmg-admin.php:
|
145 |
msgid "Lens Opacity"
|
146 |
msgstr ""
|
147 |
|
148 |
# @ yit
|
149 |
-
#: class.yith-wcmg-admin.php:
|
150 |
msgid "Blur"
|
151 |
msgstr ""
|
152 |
|
153 |
# @ yit
|
154 |
-
#: class.yith-wcmg-admin.php:
|
155 |
msgid "Add a blur effect to the small image on mouse hover."
|
156 |
msgstr ""
|
157 |
|
158 |
# @ yit
|
159 |
-
#: class.yith-wcmg-admin.php:
|
160 |
msgid "Slider Settings"
|
161 |
msgstr ""
|
162 |
|
163 |
# @ yit
|
164 |
-
#: class.yith-wcmg-admin.php:
|
165 |
msgid "Enable Slider"
|
166 |
msgstr ""
|
167 |
|
168 |
# @ yit
|
169 |
-
#: class.yith-wcmg-admin.php:
|
170 |
msgid "Enable Thumbnail slider."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: class.yith-wcmg-admin.php:
|
174 |
msgid "Enable Slider Responsive"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: class.yith-wcmg-admin.php:
|
178 |
msgid ""
|
179 |
"The option fits the thumbnails within the available space. Disable it if you "
|
180 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
181 |
msgstr ""
|
182 |
|
183 |
# @ yit
|
184 |
-
#: class.yith-wcmg-admin.php:
|
185 |
msgid "Items"
|
186 |
msgstr ""
|
187 |
|
188 |
# @ yit
|
189 |
-
#: class.yith-wcmg-admin.php:
|
190 |
msgid "Number of items to show"
|
191 |
msgstr ""
|
192 |
|
193 |
# @ yit
|
194 |
-
#: class.yith-wcmg-admin.php:
|
195 |
msgid "Circular carousel"
|
196 |
msgstr ""
|
197 |
|
198 |
# @ yit
|
199 |
-
#: class.yith-wcmg-admin.php:
|
200 |
msgid "Determines whether the carousel should be circular."
|
201 |
msgstr ""
|
202 |
|
203 |
# @ yit
|
204 |
-
#: class.yith-wcmg-admin.php:
|
205 |
msgid "Infinite carousel"
|
206 |
msgstr ""
|
207 |
|
208 |
# @ yit
|
209 |
-
#: class.yith-wcmg-admin.php:
|
210 |
msgid ""
|
211 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
212 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
213 |
"circular, non-infinite carousel."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: class.yith-wcmg-admin.php:
|
217 |
msgid "Settings"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: class.yith-wcmg-admin.php:
|
221 |
msgid "Docs"
|
222 |
msgstr ""
|
223 |
|
|
|
|
|
|
|
|
|
224 |
#: yit-common/yith-panel.php:406
|
225 |
msgid "Select a date"
|
226 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-16 16:24+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-16 16:24+0100\n"
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_US\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ yit
|
23 |
+
#: class.yith-wcmg-admin.php:131 class.yith-wcmg-admin.php:182
|
24 |
msgid "Magnifier"
|
25 |
msgstr ""
|
26 |
|
27 |
# @ yit
|
28 |
+
#: class.yith-wcmg-admin.php:151 class.yith-wcmg-admin.php:231
|
29 |
msgid "Catalog Zoom Images"
|
30 |
msgstr ""
|
31 |
|
32 |
# @ yit
|
33 |
+
#: class.yith-wcmg-admin.php:152 class.yith-wcmg-admin.php:232
|
34 |
msgid "The size of images used within the magnifier box"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ yit
|
38 |
+
#: class.yith-wcmg-admin.php:181 class.yith-wcmg-admin.php:253
|
39 |
msgid "General Settings"
|
40 |
msgstr ""
|
41 |
|
42 |
# @ yit
|
43 |
+
#: class.yith-wcmg-admin.php:183
|
44 |
msgid "Slider"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ yit
|
48 |
+
#: class.yith-wcmg-admin.php:260
|
49 |
msgid "Enable YITH Magnifier"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ yit
|
53 |
+
#: class.yith-wcmg-admin.php:261
|
54 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ yit
|
58 |
+
#: class.yith-wcmg-admin.php:269
|
59 |
msgid "Forcing Zoom Image sizes"
|
60 |
msgstr ""
|
61 |
|
62 |
# @ yit
|
63 |
+
#: class.yith-wcmg-admin.php:270
|
64 |
msgid ""
|
65 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
66 |
"disable at your own risk; the magnifier should not properly work with "
|
68 |
msgstr ""
|
69 |
|
70 |
# @ yit
|
71 |
+
#: class.yith-wcmg-admin.php:281
|
72 |
msgid "Magnifier Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
# @ yit
|
76 |
+
#: class.yith-wcmg-admin.php:288
|
77 |
msgid "Zoom Area Width"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: class.yith-wcmg-admin.php:289
|
81 |
msgid "The width of magnifier box (default: auto)"
|
82 |
msgstr ""
|
83 |
|
84 |
# @ yit
|
85 |
+
#: class.yith-wcmg-admin.php:297
|
86 |
msgid "Zoom Area Height"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: class.yith-wcmg-admin.php:298
|
90 |
msgid "The height of magnifier box (default: auto)"
|
91 |
msgstr ""
|
92 |
|
93 |
# @ yit
|
94 |
+
#: class.yith-wcmg-admin.php:308
|
95 |
msgid "Zoom Area Position"
|
96 |
msgstr ""
|
97 |
|
98 |
# @ yit
|
99 |
+
#: class.yith-wcmg-admin.php:309
|
100 |
msgid "The magnifier position"
|
101 |
msgstr ""
|
102 |
|
103 |
# @ yit
|
104 |
+
#: class.yith-wcmg-admin.php:315
|
105 |
msgid "Right"
|
106 |
msgstr ""
|
107 |
|
108 |
# @ yit
|
109 |
+
#: class.yith-wcmg-admin.php:316 class.yith-wcmg-admin.php:329
|
110 |
msgid "Inside"
|
111 |
msgstr ""
|
112 |
|
113 |
# @ yit
|
114 |
+
#: class.yith-wcmg-admin.php:321
|
115 |
msgid "Zoom Area Mobile Position"
|
116 |
msgstr ""
|
117 |
|
118 |
# @ yit
|
119 |
+
#: class.yith-wcmg-admin.php:322
|
120 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
121 |
msgstr ""
|
122 |
|
123 |
# @ yit
|
124 |
+
#: class.yith-wcmg-admin.php:328
|
125 |
msgid "Default"
|
126 |
msgstr ""
|
127 |
|
128 |
# @ yit
|
129 |
+
#: class.yith-wcmg-admin.php:330
|
130 |
msgid "Disable"
|
131 |
msgstr ""
|
132 |
|
133 |
# @ yit
|
134 |
+
#: class.yith-wcmg-admin.php:335
|
135 |
msgid "Loading label"
|
136 |
msgstr ""
|
137 |
|
138 |
# @ yit
|
139 |
+
#: class.yith-wcmg-admin.php:338 class.yith-wcmg-admin.php:339
|
140 |
msgid "Loading..."
|
141 |
msgstr ""
|
142 |
|
143 |
# @ yit
|
144 |
+
#: class.yith-wcmg-admin.php:344
|
145 |
msgid "Lens Opacity"
|
146 |
msgstr ""
|
147 |
|
148 |
# @ yit
|
149 |
+
#: class.yith-wcmg-admin.php:356
|
150 |
msgid "Blur"
|
151 |
msgstr ""
|
152 |
|
153 |
# @ yit
|
154 |
+
#: class.yith-wcmg-admin.php:357
|
155 |
msgid "Add a blur effect to the small image on mouse hover."
|
156 |
msgstr ""
|
157 |
|
158 |
# @ yit
|
159 |
+
#: class.yith-wcmg-admin.php:368
|
160 |
msgid "Slider Settings"
|
161 |
msgstr ""
|
162 |
|
163 |
# @ yit
|
164 |
+
#: class.yith-wcmg-admin.php:375
|
165 |
msgid "Enable Slider"
|
166 |
msgstr ""
|
167 |
|
168 |
# @ yit
|
169 |
+
#: class.yith-wcmg-admin.php:376
|
170 |
msgid "Enable Thumbnail slider."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: class.yith-wcmg-admin.php:384
|
174 |
msgid "Enable Slider Responsive"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: class.yith-wcmg-admin.php:385
|
178 |
msgid ""
|
179 |
"The option fits the thumbnails within the available space. Disable it if you "
|
180 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
181 |
msgstr ""
|
182 |
|
183 |
# @ yit
|
184 |
+
#: class.yith-wcmg-admin.php:393
|
185 |
msgid "Items"
|
186 |
msgstr ""
|
187 |
|
188 |
# @ yit
|
189 |
+
#: class.yith-wcmg-admin.php:394
|
190 |
msgid "Number of items to show"
|
191 |
msgstr ""
|
192 |
|
193 |
# @ yit
|
194 |
+
#: class.yith-wcmg-admin.php:405
|
195 |
msgid "Circular carousel"
|
196 |
msgstr ""
|
197 |
|
198 |
# @ yit
|
199 |
+
#: class.yith-wcmg-admin.php:406
|
200 |
msgid "Determines whether the carousel should be circular."
|
201 |
msgstr ""
|
202 |
|
203 |
# @ yit
|
204 |
+
#: class.yith-wcmg-admin.php:414
|
205 |
msgid "Infinite carousel"
|
206 |
msgstr ""
|
207 |
|
208 |
# @ yit
|
209 |
+
#: class.yith-wcmg-admin.php:415
|
210 |
msgid ""
|
211 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
212 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
213 |
"circular, non-infinite carousel."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: class.yith-wcmg-admin.php:663
|
217 |
msgid "Settings"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: class.yith-wcmg-admin.php:664
|
221 |
msgid "Docs"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: class.yith-wcmg-admin.php:692
|
225 |
+
msgid "Hard Crop?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
#: yit-common/yith-panel.php:406
|
229 |
msgid "Select a date"
|
230 |
msgstr ""
|
languages/yit-it_IT.mo
CHANGED
Binary file
|
languages/yit-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
@@ -20,48 +20,48 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ yit
|
23 |
-
#: class.yith-wcmg-admin.php:
|
24 |
msgid "Magnifier"
|
25 |
msgstr "Magnifier"
|
26 |
|
27 |
# @ yit
|
28 |
-
#: class.yith-wcmg-admin.php:
|
29 |
msgid "Catalog Zoom Images"
|
30 |
msgstr "Immagini Zoom"
|
31 |
|
32 |
# @ yit
|
33 |
-
#: class.yith-wcmg-admin.php:
|
34 |
msgid "The size of images used within the magnifier box"
|
35 |
msgstr "La dimensione dell'immagine usata all'interno del box dello zoom"
|
36 |
|
37 |
# @ yit
|
38 |
-
#: class.yith-wcmg-admin.php:
|
39 |
msgid "General Settings"
|
40 |
msgstr "Impostazioni Generali"
|
41 |
|
42 |
# @ yit
|
43 |
-
#: class.yith-wcmg-admin.php:
|
44 |
msgid "Slider"
|
45 |
msgstr "Slider"
|
46 |
|
47 |
# @ yit
|
48 |
-
#: class.yith-wcmg-admin.php:
|
49 |
msgid "Enable YITH Magnifier"
|
50 |
msgstr "Abilita YITH Magnifier"
|
51 |
|
52 |
# @ yit
|
53 |
-
#: class.yith-wcmg-admin.php:
|
54 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
msgstr ""
|
56 |
"Abilita il plugin oppure utilizza l'immagine di default di Woocommerce."
|
57 |
|
58 |
# @ yit
|
59 |
-
#: class.yith-wcmg-admin.php:
|
60 |
msgid "Forcing Zoom Image sizes"
|
61 |
msgstr "Forza le dimensioni delle immagini di Zoom"
|
62 |
|
63 |
# @ yit
|
64 |
-
#: class.yith-wcmg-admin.php:
|
65 |
msgid ""
|
66 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
67 |
"disable at your own risk; the magnifier should not properly work with "
|
@@ -72,116 +72,116 @@ msgstr ""
|
|
72 |
"correttamente con immagini di dimensioni non proporzionali tra di loro."
|
73 |
|
74 |
# @ yit
|
75 |
-
#: class.yith-wcmg-admin.php:
|
76 |
msgid "Magnifier Settings"
|
77 |
msgstr "Impostazioni Magnifier"
|
78 |
|
79 |
# @ yit
|
80 |
-
#: class.yith-wcmg-admin.php:
|
81 |
msgid "Zoom Area Width"
|
82 |
msgstr "Larghezza area di zoom"
|
83 |
|
84 |
# @ yit
|
85 |
-
#: class.yith-wcmg-admin.php:
|
86 |
msgid "The width of magnifier box (default: auto)"
|
87 |
msgstr "Larghezza del box di zoom (default: auto)"
|
88 |
|
89 |
# @ yit
|
90 |
-
#: class.yith-wcmg-admin.php:
|
91 |
msgid "Zoom Area Height"
|
92 |
msgstr "Altezza area di zoom"
|
93 |
|
94 |
# @ yit
|
95 |
-
#: class.yith-wcmg-admin.php:
|
96 |
msgid "The height of magnifier box (default: auto)"
|
97 |
msgstr "Larghezza del box di zoom (default: auto)"
|
98 |
|
99 |
# @ yit
|
100 |
-
#: class.yith-wcmg-admin.php:
|
101 |
msgid "Zoom Area Position"
|
102 |
msgstr "Posizione area di zoom"
|
103 |
|
104 |
# @ yit
|
105 |
-
#: class.yith-wcmg-admin.php:
|
106 |
msgid "The magnifier position"
|
107 |
msgstr "Posizione del Magnifier"
|
108 |
|
109 |
# @ yit
|
110 |
-
#: class.yith-wcmg-admin.php:
|
111 |
msgid "Right"
|
112 |
msgstr "Destra"
|
113 |
|
114 |
# @ yit
|
115 |
-
#: class.yith-wcmg-admin.php:
|
116 |
msgid "Inside"
|
117 |
msgstr "Interno"
|
118 |
|
119 |
# @ yit
|
120 |
-
#: class.yith-wcmg-admin.php:
|
121 |
msgid "Zoom Area Mobile Position"
|
122 |
msgstr "Posizione area di zoom nei dispositivi mobili"
|
123 |
|
124 |
# @ yit
|
125 |
-
#: class.yith-wcmg-admin.php:
|
126 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
127 |
msgstr "Posizione area di zoom nei dispositivi mobili (iPhone, Android, ecc.)"
|
128 |
|
129 |
# @ yit
|
130 |
-
#: class.yith-wcmg-admin.php:
|
131 |
msgid "Default"
|
132 |
msgstr "Default"
|
133 |
|
134 |
# @ yit
|
135 |
-
#: class.yith-wcmg-admin.php:
|
136 |
msgid "Disable"
|
137 |
msgstr "Disabilitato"
|
138 |
|
139 |
# @ yit
|
140 |
-
#: class.yith-wcmg-admin.php:
|
141 |
msgid "Loading label"
|
142 |
msgstr "Messaggio Caricamento"
|
143 |
|
144 |
# @ yit
|
145 |
-
#: class.yith-wcmg-admin.php:
|
146 |
msgid "Loading..."
|
147 |
msgstr "Caricamento..."
|
148 |
|
149 |
# @ yit
|
150 |
-
#: class.yith-wcmg-admin.php:
|
151 |
msgid "Lens Opacity"
|
152 |
msgstr "Opacità lente"
|
153 |
|
154 |
# @ yit
|
155 |
-
#: class.yith-wcmg-admin.php:
|
156 |
msgid "Blur"
|
157 |
msgstr "Sfocatura"
|
158 |
|
159 |
# @ yit
|
160 |
-
#: class.yith-wcmg-admin.php:
|
161 |
msgid "Add a blur effect to the small image on mouse hover."
|
162 |
msgstr "Aggiungi un effetto sfocatura all'immagine al movimento del mouse."
|
163 |
|
164 |
# @ yit
|
165 |
-
#: class.yith-wcmg-admin.php:
|
166 |
msgid "Slider Settings"
|
167 |
msgstr "Impostazioni Slider"
|
168 |
|
169 |
# @ yit
|
170 |
-
#: class.yith-wcmg-admin.php:
|
171 |
msgid "Enable Slider"
|
172 |
msgstr "Abilita Slider"
|
173 |
|
174 |
# @ yit
|
175 |
-
#: class.yith-wcmg-admin.php:
|
176 |
msgid "Enable Thumbnail slider."
|
177 |
msgstr "Abilita lo sliding delle thumbnail."
|
178 |
|
179 |
# @ yit
|
180 |
-
#: class.yith-wcmg-admin.php:
|
181 |
msgid "Enable Slider Responsive"
|
182 |
msgstr "Abilita Responsive Slider"
|
183 |
|
184 |
-
#: class.yith-wcmg-admin.php:
|
185 |
msgid ""
|
186 |
"The option fits the thumbnails within the available space. Disable it if you "
|
187 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
@@ -192,32 +192,32 @@ msgstr ""
|
|
192 |
"margini, padding, ecc.)"
|
193 |
|
194 |
# @ yit
|
195 |
-
#: class.yith-wcmg-admin.php:
|
196 |
msgid "Items"
|
197 |
msgstr "Elementi"
|
198 |
|
199 |
# @ yit
|
200 |
-
#: class.yith-wcmg-admin.php:
|
201 |
msgid "Number of items to show"
|
202 |
msgstr "Numero di elementi da mostrare"
|
203 |
|
204 |
# @ yit
|
205 |
-
#: class.yith-wcmg-admin.php:
|
206 |
msgid "Circular carousel"
|
207 |
msgstr "Slider circolare"
|
208 |
|
209 |
# @ yit
|
210 |
-
#: class.yith-wcmg-admin.php:
|
211 |
msgid "Determines whether the carousel should be circular."
|
212 |
msgstr "Selezionare se impostare lo slider circolare."
|
213 |
|
214 |
# @ yit
|
215 |
-
#: class.yith-wcmg-admin.php:
|
216 |
msgid "Infinite carousel"
|
217 |
msgstr "Slider infinito"
|
218 |
|
219 |
# @ yit
|
220 |
-
#: class.yith-wcmg-admin.php:
|
221 |
msgid ""
|
222 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
223 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
@@ -227,14 +227,18 @@ msgstr ""
|
|
227 |
"creare uno slider infinito non circolare ma non è possibile il contrario."
|
228 |
|
229 |
# @ yit
|
230 |
-
#: class.yith-wcmg-admin.php:
|
231 |
msgid "Settings"
|
232 |
msgstr "Impostazioni"
|
233 |
|
234 |
-
#: class.yith-wcmg-admin.php:
|
235 |
msgid "Docs"
|
236 |
msgstr "Docs"
|
237 |
|
|
|
|
|
|
|
|
|
238 |
#: yit-common/yith-panel.php:406
|
239 |
msgid "Select a date"
|
240 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-16 16:24+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-16 16:24+0100\n"
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ yit
|
23 |
+
#: class.yith-wcmg-admin.php:131 class.yith-wcmg-admin.php:182
|
24 |
msgid "Magnifier"
|
25 |
msgstr "Magnifier"
|
26 |
|
27 |
# @ yit
|
28 |
+
#: class.yith-wcmg-admin.php:151 class.yith-wcmg-admin.php:231
|
29 |
msgid "Catalog Zoom Images"
|
30 |
msgstr "Immagini Zoom"
|
31 |
|
32 |
# @ yit
|
33 |
+
#: class.yith-wcmg-admin.php:152 class.yith-wcmg-admin.php:232
|
34 |
msgid "The size of images used within the magnifier box"
|
35 |
msgstr "La dimensione dell'immagine usata all'interno del box dello zoom"
|
36 |
|
37 |
# @ yit
|
38 |
+
#: class.yith-wcmg-admin.php:181 class.yith-wcmg-admin.php:253
|
39 |
msgid "General Settings"
|
40 |
msgstr "Impostazioni Generali"
|
41 |
|
42 |
# @ yit
|
43 |
+
#: class.yith-wcmg-admin.php:183
|
44 |
msgid "Slider"
|
45 |
msgstr "Slider"
|
46 |
|
47 |
# @ yit
|
48 |
+
#: class.yith-wcmg-admin.php:260
|
49 |
msgid "Enable YITH Magnifier"
|
50 |
msgstr "Abilita YITH Magnifier"
|
51 |
|
52 |
# @ yit
|
53 |
+
#: class.yith-wcmg-admin.php:261
|
54 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
msgstr ""
|
56 |
"Abilita il plugin oppure utilizza l'immagine di default di Woocommerce."
|
57 |
|
58 |
# @ yit
|
59 |
+
#: class.yith-wcmg-admin.php:269
|
60 |
msgid "Forcing Zoom Image sizes"
|
61 |
msgstr "Forza le dimensioni delle immagini di Zoom"
|
62 |
|
63 |
# @ yit
|
64 |
+
#: class.yith-wcmg-admin.php:270
|
65 |
msgid ""
|
66 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
67 |
"disable at your own risk; the magnifier should not properly work with "
|
72 |
"correttamente con immagini di dimensioni non proporzionali tra di loro."
|
73 |
|
74 |
# @ yit
|
75 |
+
#: class.yith-wcmg-admin.php:281
|
76 |
msgid "Magnifier Settings"
|
77 |
msgstr "Impostazioni Magnifier"
|
78 |
|
79 |
# @ yit
|
80 |
+
#: class.yith-wcmg-admin.php:288
|
81 |
msgid "Zoom Area Width"
|
82 |
msgstr "Larghezza area di zoom"
|
83 |
|
84 |
# @ yit
|
85 |
+
#: class.yith-wcmg-admin.php:289
|
86 |
msgid "The width of magnifier box (default: auto)"
|
87 |
msgstr "Larghezza del box di zoom (default: auto)"
|
88 |
|
89 |
# @ yit
|
90 |
+
#: class.yith-wcmg-admin.php:297
|
91 |
msgid "Zoom Area Height"
|
92 |
msgstr "Altezza area di zoom"
|
93 |
|
94 |
# @ yit
|
95 |
+
#: class.yith-wcmg-admin.php:298
|
96 |
msgid "The height of magnifier box (default: auto)"
|
97 |
msgstr "Larghezza del box di zoom (default: auto)"
|
98 |
|
99 |
# @ yit
|
100 |
+
#: class.yith-wcmg-admin.php:308
|
101 |
msgid "Zoom Area Position"
|
102 |
msgstr "Posizione area di zoom"
|
103 |
|
104 |
# @ yit
|
105 |
+
#: class.yith-wcmg-admin.php:309
|
106 |
msgid "The magnifier position"
|
107 |
msgstr "Posizione del Magnifier"
|
108 |
|
109 |
# @ yit
|
110 |
+
#: class.yith-wcmg-admin.php:315
|
111 |
msgid "Right"
|
112 |
msgstr "Destra"
|
113 |
|
114 |
# @ yit
|
115 |
+
#: class.yith-wcmg-admin.php:316 class.yith-wcmg-admin.php:329
|
116 |
msgid "Inside"
|
117 |
msgstr "Interno"
|
118 |
|
119 |
# @ yit
|
120 |
+
#: class.yith-wcmg-admin.php:321
|
121 |
msgid "Zoom Area Mobile Position"
|
122 |
msgstr "Posizione area di zoom nei dispositivi mobili"
|
123 |
|
124 |
# @ yit
|
125 |
+
#: class.yith-wcmg-admin.php:322
|
126 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
127 |
msgstr "Posizione area di zoom nei dispositivi mobili (iPhone, Android, ecc.)"
|
128 |
|
129 |
# @ yit
|
130 |
+
#: class.yith-wcmg-admin.php:328
|
131 |
msgid "Default"
|
132 |
msgstr "Default"
|
133 |
|
134 |
# @ yit
|
135 |
+
#: class.yith-wcmg-admin.php:330
|
136 |
msgid "Disable"
|
137 |
msgstr "Disabilitato"
|
138 |
|
139 |
# @ yit
|
140 |
+
#: class.yith-wcmg-admin.php:335
|
141 |
msgid "Loading label"
|
142 |
msgstr "Messaggio Caricamento"
|
143 |
|
144 |
# @ yit
|
145 |
+
#: class.yith-wcmg-admin.php:338 class.yith-wcmg-admin.php:339
|
146 |
msgid "Loading..."
|
147 |
msgstr "Caricamento..."
|
148 |
|
149 |
# @ yit
|
150 |
+
#: class.yith-wcmg-admin.php:344
|
151 |
msgid "Lens Opacity"
|
152 |
msgstr "Opacità lente"
|
153 |
|
154 |
# @ yit
|
155 |
+
#: class.yith-wcmg-admin.php:356
|
156 |
msgid "Blur"
|
157 |
msgstr "Sfocatura"
|
158 |
|
159 |
# @ yit
|
160 |
+
#: class.yith-wcmg-admin.php:357
|
161 |
msgid "Add a blur effect to the small image on mouse hover."
|
162 |
msgstr "Aggiungi un effetto sfocatura all'immagine al movimento del mouse."
|
163 |
|
164 |
# @ yit
|
165 |
+
#: class.yith-wcmg-admin.php:368
|
166 |
msgid "Slider Settings"
|
167 |
msgstr "Impostazioni Slider"
|
168 |
|
169 |
# @ yit
|
170 |
+
#: class.yith-wcmg-admin.php:375
|
171 |
msgid "Enable Slider"
|
172 |
msgstr "Abilita Slider"
|
173 |
|
174 |
# @ yit
|
175 |
+
#: class.yith-wcmg-admin.php:376
|
176 |
msgid "Enable Thumbnail slider."
|
177 |
msgstr "Abilita lo sliding delle thumbnail."
|
178 |
|
179 |
# @ yit
|
180 |
+
#: class.yith-wcmg-admin.php:384
|
181 |
msgid "Enable Slider Responsive"
|
182 |
msgstr "Abilita Responsive Slider"
|
183 |
|
184 |
+
#: class.yith-wcmg-admin.php:385
|
185 |
msgid ""
|
186 |
"The option fits the thumbnails within the available space. Disable it if you "
|
187 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
192 |
"margini, padding, ecc.)"
|
193 |
|
194 |
# @ yit
|
195 |
+
#: class.yith-wcmg-admin.php:393
|
196 |
msgid "Items"
|
197 |
msgstr "Elementi"
|
198 |
|
199 |
# @ yit
|
200 |
+
#: class.yith-wcmg-admin.php:394
|
201 |
msgid "Number of items to show"
|
202 |
msgstr "Numero di elementi da mostrare"
|
203 |
|
204 |
# @ yit
|
205 |
+
#: class.yith-wcmg-admin.php:405
|
206 |
msgid "Circular carousel"
|
207 |
msgstr "Slider circolare"
|
208 |
|
209 |
# @ yit
|
210 |
+
#: class.yith-wcmg-admin.php:406
|
211 |
msgid "Determines whether the carousel should be circular."
|
212 |
msgstr "Selezionare se impostare lo slider circolare."
|
213 |
|
214 |
# @ yit
|
215 |
+
#: class.yith-wcmg-admin.php:414
|
216 |
msgid "Infinite carousel"
|
217 |
msgstr "Slider infinito"
|
218 |
|
219 |
# @ yit
|
220 |
+
#: class.yith-wcmg-admin.php:415
|
221 |
msgid ""
|
222 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
223 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
227 |
"creare uno slider infinito non circolare ma non è possibile il contrario."
|
228 |
|
229 |
# @ yit
|
230 |
+
#: class.yith-wcmg-admin.php:663
|
231 |
msgid "Settings"
|
232 |
msgstr "Impostazioni"
|
233 |
|
234 |
+
#: class.yith-wcmg-admin.php:664
|
235 |
msgid "Docs"
|
236 |
msgstr "Docs"
|
237 |
|
238 |
+
#: class.yith-wcmg-admin.php:692
|
239 |
+
msgid "Hard Crop?"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
#: yit-common/yith-panel.php:406
|
243 |
msgid "Select a date"
|
244 |
msgstr ""
|
languages/yit-tr_TR.mo
ADDED
Binary file
|
languages/yit-tr_TR.po
ADDED
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-16 16:24+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-16 16:25+0100\n"
|
7 |
+
"Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
|
8 |
+
"Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>\n"
|
9 |
+
"Language: tr_TR\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_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"
|
18 |
+
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Textdomain-Support: yes\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
# @ yit
|
23 |
+
#: class.yith-wcmg-admin.php:131 class.yith-wcmg-admin.php:182
|
24 |
+
msgid "Magnifier"
|
25 |
+
msgstr "Büyüteç"
|
26 |
+
|
27 |
+
# @ yit
|
28 |
+
#: class.yith-wcmg-admin.php:151 class.yith-wcmg-admin.php:231
|
29 |
+
msgid "Catalog Zoom Images"
|
30 |
+
msgstr "Katalog Resim Yakınlaştırma"
|
31 |
+
|
32 |
+
# @ yit
|
33 |
+
#: class.yith-wcmg-admin.php:152 class.yith-wcmg-admin.php:232
|
34 |
+
msgid "The size of images used within the magnifier box"
|
35 |
+
msgstr "Büyüteç kutusu içinde kullanılan resimlerin boyutları"
|
36 |
+
|
37 |
+
# @ yit
|
38 |
+
#: class.yith-wcmg-admin.php:181 class.yith-wcmg-admin.php:253
|
39 |
+
msgid "General Settings"
|
40 |
+
msgstr "Genel Ayarlar"
|
41 |
+
|
42 |
+
# @ yit
|
43 |
+
#: class.yith-wcmg-admin.php:183
|
44 |
+
msgid "Slider"
|
45 |
+
msgstr "Slider"
|
46 |
+
|
47 |
+
# @ yit
|
48 |
+
#: class.yith-wcmg-admin.php:260
|
49 |
+
msgid "Enable YITH Magnifier"
|
50 |
+
msgstr "YITH Büyüteç Etkin"
|
51 |
+
|
52 |
+
# @ yit
|
53 |
+
#: class.yith-wcmg-admin.php:261
|
54 |
+
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
+
msgstr "Eklentiyi etkinleştir veya Wocommerce varsayılan ürün resmini kullan."
|
56 |
+
|
57 |
+
# @ yit
|
58 |
+
#: class.yith-wcmg-admin.php:269
|
59 |
+
msgid "Forcing Zoom Image sizes"
|
60 |
+
msgstr "Resim Yakınlaştırma Boyutlarını Zorla"
|
61 |
+
|
62 |
+
# @ yit
|
63 |
+
#: class.yith-wcmg-admin.php:270
|
64 |
+
msgid ""
|
65 |
+
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
66 |
+
"disable at your own risk; the magnifier should not properly work with "
|
67 |
+
"unproportioned image sizes."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
# @ yit
|
71 |
+
#: class.yith-wcmg-admin.php:281
|
72 |
+
msgid "Magnifier Settings"
|
73 |
+
msgstr "Büyüteç Ayarları"
|
74 |
+
|
75 |
+
# @ yit
|
76 |
+
#: class.yith-wcmg-admin.php:288
|
77 |
+
msgid "Zoom Area Width"
|
78 |
+
msgstr "Yakınlaştırma Alanı Genişliği"
|
79 |
+
|
80 |
+
# @ yit
|
81 |
+
#: class.yith-wcmg-admin.php:289
|
82 |
+
msgid "The width of magnifier box (default: auto)"
|
83 |
+
msgstr "Büyüteç kutusu genişliği (varsayılan: otomatik)"
|
84 |
+
|
85 |
+
# @ yit
|
86 |
+
#: class.yith-wcmg-admin.php:297
|
87 |
+
msgid "Zoom Area Height"
|
88 |
+
msgstr "Yakınlaştırma Alanı Yüksekliği"
|
89 |
+
|
90 |
+
# @ yit
|
91 |
+
#: class.yith-wcmg-admin.php:298
|
92 |
+
msgid "The height of magnifier box (default: auto)"
|
93 |
+
msgstr "Büyüteç kutusu yüksekliği (varsayılan: otomatik)"
|
94 |
+
|
95 |
+
# @ yit
|
96 |
+
#: class.yith-wcmg-admin.php:308
|
97 |
+
msgid "Zoom Area Position"
|
98 |
+
msgstr "Yakınlaştırma Alanı Pozisyonu"
|
99 |
+
|
100 |
+
# @ yit
|
101 |
+
#: class.yith-wcmg-admin.php:309
|
102 |
+
msgid "The magnifier position"
|
103 |
+
msgstr "Büyüteç pozisyonu"
|
104 |
+
|
105 |
+
# @ yit
|
106 |
+
#: class.yith-wcmg-admin.php:315
|
107 |
+
msgid "Right"
|
108 |
+
msgstr "Sağ"
|
109 |
+
|
110 |
+
# @ yit
|
111 |
+
#: class.yith-wcmg-admin.php:316 class.yith-wcmg-admin.php:329
|
112 |
+
msgid "Inside"
|
113 |
+
msgstr "İçinde"
|
114 |
+
|
115 |
+
# @ yit
|
116 |
+
#: class.yith-wcmg-admin.php:321
|
117 |
+
msgid "Zoom Area Mobile Position"
|
118 |
+
msgstr "Mobil İçin Yakınlaştırma Alanı Pozisyonu"
|
119 |
+
|
120 |
+
# @ yit
|
121 |
+
#: class.yith-wcmg-admin.php:322
|
122 |
+
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
123 |
+
msgstr "Mobil cihazlar için büyüteç pozisyonu (iPhone, Android, vb.)"
|
124 |
+
|
125 |
+
# @ yit
|
126 |
+
#: class.yith-wcmg-admin.php:328
|
127 |
+
msgid "Default"
|
128 |
+
msgstr "Varsayılan"
|
129 |
+
|
130 |
+
# @ yit
|
131 |
+
#: class.yith-wcmg-admin.php:330
|
132 |
+
msgid "Disable"
|
133 |
+
msgstr "Devredışı"
|
134 |
+
|
135 |
+
# @ yit
|
136 |
+
#: class.yith-wcmg-admin.php:335
|
137 |
+
msgid "Loading label"
|
138 |
+
msgstr "Yükleniyor metni"
|
139 |
+
|
140 |
+
# @ yit
|
141 |
+
#: class.yith-wcmg-admin.php:338 class.yith-wcmg-admin.php:339
|
142 |
+
msgid "Loading..."
|
143 |
+
msgstr "Yükleniyor..."
|
144 |
+
|
145 |
+
# @ yit
|
146 |
+
#: class.yith-wcmg-admin.php:344
|
147 |
+
msgid "Lens Opacity"
|
148 |
+
msgstr "Lens Saydamlığı"
|
149 |
+
|
150 |
+
# @ yit
|
151 |
+
#: class.yith-wcmg-admin.php:356
|
152 |
+
msgid "Blur"
|
153 |
+
msgstr "Bulanıklık"
|
154 |
+
|
155 |
+
# @ yit
|
156 |
+
#: class.yith-wcmg-admin.php:357
|
157 |
+
msgid "Add a blur effect to the small image on mouse hover."
|
158 |
+
msgstr "Küçük resmin üzerine gelindiğinde bulanıklık efekti ekle."
|
159 |
+
|
160 |
+
# @ yit
|
161 |
+
#: class.yith-wcmg-admin.php:368
|
162 |
+
msgid "Slider Settings"
|
163 |
+
msgstr "Slider Ayarları"
|
164 |
+
|
165 |
+
# @ yit
|
166 |
+
#: class.yith-wcmg-admin.php:375
|
167 |
+
msgid "Enable Slider"
|
168 |
+
msgstr "Sliderı Etkinleştir"
|
169 |
+
|
170 |
+
# @ yit
|
171 |
+
#: class.yith-wcmg-admin.php:376
|
172 |
+
msgid "Enable Thumbnail slider."
|
173 |
+
msgstr "Küçük resim sliderı etkin"
|
174 |
+
|
175 |
+
# @ yit
|
176 |
+
#: class.yith-wcmg-admin.php:384
|
177 |
+
msgid "Enable Slider Responsive"
|
178 |
+
msgstr "Responsive Slider Etkin"
|
179 |
+
|
180 |
+
#: class.yith-wcmg-admin.php:385
|
181 |
+
msgid ""
|
182 |
+
"The option fits the thumbnails within the available space. Disable it if you "
|
183 |
+
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
# @ yit
|
187 |
+
#: class.yith-wcmg-admin.php:393
|
188 |
+
msgid "Items"
|
189 |
+
msgstr "Öğeler"
|
190 |
+
|
191 |
+
# @ yit
|
192 |
+
#: class.yith-wcmg-admin.php:394
|
193 |
+
msgid "Number of items to show"
|
194 |
+
msgstr "Görüntülenecek öğe adedi"
|
195 |
+
|
196 |
+
# @ yit
|
197 |
+
#: class.yith-wcmg-admin.php:405
|
198 |
+
msgid "Circular carousel"
|
199 |
+
msgstr "Dairesel karosel"
|
200 |
+
|
201 |
+
# @ yit
|
202 |
+
#: class.yith-wcmg-admin.php:406
|
203 |
+
msgid "Determines whether the carousel should be circular."
|
204 |
+
msgstr "Karoselin dairesel olması gerektiğini belirtir."
|
205 |
+
|
206 |
+
# @ yit
|
207 |
+
#: class.yith-wcmg-admin.php:414
|
208 |
+
msgid "Infinite carousel"
|
209 |
+
msgstr "Sonsuz karosel"
|
210 |
+
|
211 |
+
# @ yit
|
212 |
+
#: class.yith-wcmg-admin.php:415
|
213 |
+
msgid ""
|
214 |
+
"Determines whether the carousel should be infinite. Note: It is possible to "
|
215 |
+
"create a non-circular, infinite carousel, but it is not possible to create a "
|
216 |
+
"circular, non-infinite carousel."
|
217 |
+
msgstr ""
|
218 |
+
"Karoselin sonsuz bir döngü ile çalışması gerektiğini belirtir. Not: Dairesel "
|
219 |
+
"olmayan sonsuz karosel oluşturmak mümkündür ancak dairesel ve sonsuz olmayan "
|
220 |
+
"karosel oluşturulamaz."
|
221 |
+
|
222 |
+
# @ yit
|
223 |
+
#: class.yith-wcmg-admin.php:663
|
224 |
+
msgid "Settings"
|
225 |
+
msgstr "Ayarlar"
|
226 |
+
|
227 |
+
#: class.yith-wcmg-admin.php:664
|
228 |
+
msgid "Docs"
|
229 |
+
msgstr "Dökümanlar"
|
230 |
+
|
231 |
+
#: class.yith-wcmg-admin.php:692
|
232 |
+
msgid "Hard Crop?"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: yit-common/yith-panel.php:406
|
236 |
+
msgid "Select a date"
|
237 |
+
msgstr "Bir tarih seçin"
|
238 |
+
|
239 |
+
#: yit-common/yith-panel.php:407
|
240 |
+
msgid "Hours"
|
241 |
+
msgstr "Saatler"
|
242 |
+
|
243 |
+
#: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
|
244 |
+
msgid "Minutes"
|
245 |
+
msgstr "Dakikalar"
|
246 |
+
|
247 |
+
#: yit-common/yith-panel.php:417
|
248 |
+
msgid "Upload"
|
249 |
+
msgstr "Yükle"
|
250 |
+
|
251 |
+
#: yit-common/yith-panel.php:444
|
252 |
+
msgid "px"
|
253 |
+
msgstr "px"
|
254 |
+
|
255 |
+
#: yit-common/yith-panel.php:445
|
256 |
+
msgid "em"
|
257 |
+
msgstr "em"
|
258 |
+
|
259 |
+
#: yit-common/yith-panel.php:446
|
260 |
+
msgid "pt"
|
261 |
+
msgstr "pt"
|
262 |
+
|
263 |
+
#: yit-common/yith-panel.php:447
|
264 |
+
msgid "rem"
|
265 |
+
msgstr "rem"
|
266 |
+
|
267 |
+
#: yit-common/yith-panel.php:457
|
268 |
+
msgid "Select a font family"
|
269 |
+
msgstr "Font ailesi seçin"
|
270 |
+
|
271 |
+
#: yit-common/yith-panel.php:465
|
272 |
+
msgid "Regular"
|
273 |
+
msgstr "Normal"
|
274 |
+
|
275 |
+
#: yit-common/yith-panel.php:466
|
276 |
+
msgid "Bold"
|
277 |
+
msgstr "Kalın"
|
278 |
+
|
279 |
+
#: yit-common/yith-panel.php:467
|
280 |
+
msgid "Extra bold"
|
281 |
+
msgstr "Ekstra kalın"
|
282 |
+
|
283 |
+
#: yit-common/yith-panel.php:468
|
284 |
+
msgid "Italic"
|
285 |
+
msgstr "İtalik"
|
286 |
+
|
287 |
+
#: yit-common/yith-panel.php:469
|
288 |
+
msgid "Italic bold"
|
289 |
+
msgstr "İtalik kalın"
|
290 |
+
|
291 |
+
#: yit-common/yith-panel.php:481
|
292 |
+
msgid "Click to preview"
|
293 |
+
msgstr "Önizleme için tıklayın"
|
languages/yit.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_US\n"
|
@@ -12,53 +12,55 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: Poedit 1.5.5\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_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"
|
|
|
18 |
"X-Textdomain-Support: yes\n"
|
|
|
19 |
|
20 |
# @ yit
|
21 |
-
#: class.yith-wcmg-admin.php:
|
22 |
msgid "Magnifier"
|
23 |
msgstr ""
|
24 |
|
25 |
# @ yit
|
26 |
-
#: class.yith-wcmg-admin.php:
|
27 |
msgid "Catalog Zoom Images"
|
28 |
msgstr ""
|
29 |
|
30 |
# @ yit
|
31 |
-
#: class.yith-wcmg-admin.php:
|
32 |
msgid "The size of images used within the magnifier box"
|
33 |
msgstr ""
|
34 |
|
35 |
# @ yit
|
36 |
-
#: class.yith-wcmg-admin.php:
|
37 |
msgid "General Settings"
|
38 |
msgstr ""
|
39 |
|
40 |
# @ yit
|
41 |
-
#: class.yith-wcmg-admin.php:
|
42 |
msgid "Slider"
|
43 |
msgstr ""
|
44 |
|
45 |
# @ yit
|
46 |
-
#: class.yith-wcmg-admin.php:
|
47 |
msgid "Enable YITH Magnifier"
|
48 |
msgstr ""
|
49 |
|
50 |
# @ yit
|
51 |
-
#: class.yith-wcmg-admin.php:
|
52 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
53 |
msgstr ""
|
54 |
|
55 |
# @ yit
|
56 |
-
#: class.yith-wcmg-admin.php:
|
57 |
msgid "Forcing Zoom Image sizes"
|
58 |
msgstr ""
|
59 |
|
60 |
# @ yit
|
61 |
-
#: class.yith-wcmg-admin.php:
|
62 |
msgid ""
|
63 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
64 |
"disable at your own risk; the magnifier should not properly work with "
|
@@ -66,155 +68,219 @@ msgid ""
|
|
66 |
msgstr ""
|
67 |
|
68 |
# @ yit
|
69 |
-
#: class.yith-wcmg-admin.php:
|
70 |
msgid "Magnifier Settings"
|
71 |
msgstr ""
|
72 |
|
73 |
# @ yit
|
74 |
-
#: class.yith-wcmg-admin.php:
|
75 |
msgid "Zoom Area Width"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: class.yith-wcmg-admin.php:
|
79 |
msgid "The width of magnifier box (default: auto)"
|
80 |
msgstr ""
|
81 |
|
82 |
# @ yit
|
83 |
-
#: class.yith-wcmg-admin.php:
|
84 |
msgid "Zoom Area Height"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: class.yith-wcmg-admin.php:
|
88 |
msgid "The height of magnifier box (default: auto)"
|
89 |
msgstr ""
|
90 |
|
91 |
# @ yit
|
92 |
-
#: class.yith-wcmg-admin.php:
|
93 |
msgid "Zoom Area Position"
|
94 |
msgstr ""
|
95 |
|
96 |
# @ yit
|
97 |
-
#: class.yith-wcmg-admin.php:
|
98 |
msgid "The magnifier position"
|
99 |
msgstr ""
|
100 |
|
101 |
# @ yit
|
102 |
-
#: class.yith-wcmg-admin.php:
|
103 |
msgid "Right"
|
104 |
msgstr ""
|
105 |
|
106 |
# @ yit
|
107 |
-
#: class.yith-wcmg-admin.php:
|
108 |
msgid "Inside"
|
109 |
msgstr ""
|
110 |
|
111 |
# @ yit
|
112 |
-
#: class.yith-wcmg-admin.php:
|
113 |
msgid "Zoom Area Mobile Position"
|
114 |
msgstr ""
|
115 |
|
116 |
# @ yit
|
117 |
-
#: class.yith-wcmg-admin.php:
|
118 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
119 |
msgstr ""
|
120 |
|
121 |
# @ yit
|
122 |
-
#: class.yith-wcmg-admin.php:
|
123 |
msgid "Default"
|
124 |
msgstr ""
|
125 |
|
126 |
# @ yit
|
127 |
-
#: class.yith-wcmg-admin.php:
|
128 |
msgid "Disable"
|
129 |
msgstr ""
|
130 |
|
131 |
# @ yit
|
132 |
-
#: class.yith-wcmg-admin.php:
|
133 |
msgid "Loading label"
|
134 |
msgstr ""
|
135 |
|
136 |
# @ yit
|
137 |
-
#: class.yith-wcmg-admin.php:
|
138 |
msgid "Loading..."
|
139 |
msgstr ""
|
140 |
|
141 |
# @ yit
|
142 |
-
#: class.yith-wcmg-admin.php:
|
143 |
msgid "Lens Opacity"
|
144 |
msgstr ""
|
145 |
|
146 |
# @ yit
|
147 |
-
#: class.yith-wcmg-admin.php:
|
148 |
msgid "Blur"
|
149 |
msgstr ""
|
150 |
|
151 |
# @ yit
|
152 |
-
#: class.yith-wcmg-admin.php:
|
153 |
msgid "Add a blur effect to the small image on mouse hover."
|
154 |
msgstr ""
|
155 |
|
156 |
# @ yit
|
157 |
-
#: class.yith-wcmg-admin.php:
|
158 |
msgid "Slider Settings"
|
159 |
msgstr ""
|
160 |
|
161 |
# @ yit
|
162 |
-
#: class.yith-wcmg-admin.php:
|
163 |
msgid "Enable Slider"
|
164 |
msgstr ""
|
165 |
|
166 |
# @ yit
|
167 |
-
#: class.yith-wcmg-admin.php:
|
168 |
msgid "Enable Thumbnail slider."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: class.yith-wcmg-admin.php:
|
172 |
msgid "Enable Slider Responsive"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: class.yith-wcmg-admin.php:
|
176 |
msgid ""
|
177 |
"The option fits the thumbnails within the available space. Disable it if you "
|
178 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
179 |
msgstr ""
|
180 |
|
181 |
# @ yit
|
182 |
-
#: class.yith-wcmg-admin.php:
|
183 |
msgid "Items"
|
184 |
msgstr ""
|
185 |
|
186 |
# @ yit
|
187 |
-
#: class.yith-wcmg-admin.php:
|
188 |
msgid "Number of items to show"
|
189 |
msgstr ""
|
190 |
|
191 |
# @ yit
|
192 |
-
#: class.yith-wcmg-admin.php:
|
193 |
msgid "Circular carousel"
|
194 |
msgstr ""
|
195 |
|
196 |
# @ yit
|
197 |
-
#: class.yith-wcmg-admin.php:
|
198 |
msgid "Determines whether the carousel should be circular."
|
199 |
msgstr ""
|
200 |
|
201 |
# @ yit
|
202 |
-
#: class.yith-wcmg-admin.php:
|
203 |
msgid "Infinite carousel"
|
204 |
msgstr ""
|
205 |
|
206 |
# @ yit
|
207 |
-
#: class.yith-wcmg-admin.php:
|
208 |
msgid ""
|
209 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
210 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
211 |
"circular, non-infinite carousel."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: class.yith-wcmg-admin.php:
|
215 |
msgid "Settings"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: class.yith-wcmg-admin.php:
|
219 |
msgid "Docs"
|
220 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Magnifier v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-09-16 16:24+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-09-16 16:24+0100\n"
|
7 |
"Last-Translator: Your Inspiration Themes <plugins@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_US\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_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"
|
18 |
+
"X-Poedit-Basepath: ../\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
# @ yit
|
23 |
+
#: class.yith-wcmg-admin.php:131 class.yith-wcmg-admin.php:182
|
24 |
msgid "Magnifier"
|
25 |
msgstr ""
|
26 |
|
27 |
# @ yit
|
28 |
+
#: class.yith-wcmg-admin.php:151 class.yith-wcmg-admin.php:231
|
29 |
msgid "Catalog Zoom Images"
|
30 |
msgstr ""
|
31 |
|
32 |
# @ yit
|
33 |
+
#: class.yith-wcmg-admin.php:152 class.yith-wcmg-admin.php:232
|
34 |
msgid "The size of images used within the magnifier box"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ yit
|
38 |
+
#: class.yith-wcmg-admin.php:181 class.yith-wcmg-admin.php:253
|
39 |
msgid "General Settings"
|
40 |
msgstr ""
|
41 |
|
42 |
# @ yit
|
43 |
+
#: class.yith-wcmg-admin.php:183
|
44 |
msgid "Slider"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ yit
|
48 |
+
#: class.yith-wcmg-admin.php:260
|
49 |
msgid "Enable YITH Magnifier"
|
50 |
msgstr ""
|
51 |
|
52 |
# @ yit
|
53 |
+
#: class.yith-wcmg-admin.php:261
|
54 |
msgid "Enable the plugin or use the Woocommerce default product image."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ yit
|
58 |
+
#: class.yith-wcmg-admin.php:269
|
59 |
msgid "Forcing Zoom Image sizes"
|
60 |
msgstr ""
|
61 |
|
62 |
# @ yit
|
63 |
+
#: class.yith-wcmg-admin.php:270
|
64 |
msgid ""
|
65 |
"If disabled, you will able to customize the sizes of Zoom Images. Please "
|
66 |
"disable at your own risk; the magnifier should not properly work with "
|
68 |
msgstr ""
|
69 |
|
70 |
# @ yit
|
71 |
+
#: class.yith-wcmg-admin.php:281
|
72 |
msgid "Magnifier Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
# @ yit
|
76 |
+
#: class.yith-wcmg-admin.php:288
|
77 |
msgid "Zoom Area Width"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: class.yith-wcmg-admin.php:289
|
81 |
msgid "The width of magnifier box (default: auto)"
|
82 |
msgstr ""
|
83 |
|
84 |
# @ yit
|
85 |
+
#: class.yith-wcmg-admin.php:297
|
86 |
msgid "Zoom Area Height"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: class.yith-wcmg-admin.php:298
|
90 |
msgid "The height of magnifier box (default: auto)"
|
91 |
msgstr ""
|
92 |
|
93 |
# @ yit
|
94 |
+
#: class.yith-wcmg-admin.php:308
|
95 |
msgid "Zoom Area Position"
|
96 |
msgstr ""
|
97 |
|
98 |
# @ yit
|
99 |
+
#: class.yith-wcmg-admin.php:309
|
100 |
msgid "The magnifier position"
|
101 |
msgstr ""
|
102 |
|
103 |
# @ yit
|
104 |
+
#: class.yith-wcmg-admin.php:315
|
105 |
msgid "Right"
|
106 |
msgstr ""
|
107 |
|
108 |
# @ yit
|
109 |
+
#: class.yith-wcmg-admin.php:316 class.yith-wcmg-admin.php:329
|
110 |
msgid "Inside"
|
111 |
msgstr ""
|
112 |
|
113 |
# @ yit
|
114 |
+
#: class.yith-wcmg-admin.php:321
|
115 |
msgid "Zoom Area Mobile Position"
|
116 |
msgstr ""
|
117 |
|
118 |
# @ yit
|
119 |
+
#: class.yith-wcmg-admin.php:322
|
120 |
msgid "The magnifier position with mobile devices (iPhone, Android, etc.)"
|
121 |
msgstr ""
|
122 |
|
123 |
# @ yit
|
124 |
+
#: class.yith-wcmg-admin.php:328
|
125 |
msgid "Default"
|
126 |
msgstr ""
|
127 |
|
128 |
# @ yit
|
129 |
+
#: class.yith-wcmg-admin.php:330
|
130 |
msgid "Disable"
|
131 |
msgstr ""
|
132 |
|
133 |
# @ yit
|
134 |
+
#: class.yith-wcmg-admin.php:335
|
135 |
msgid "Loading label"
|
136 |
msgstr ""
|
137 |
|
138 |
# @ yit
|
139 |
+
#: class.yith-wcmg-admin.php:338 class.yith-wcmg-admin.php:339
|
140 |
msgid "Loading..."
|
141 |
msgstr ""
|
142 |
|
143 |
# @ yit
|
144 |
+
#: class.yith-wcmg-admin.php:344
|
145 |
msgid "Lens Opacity"
|
146 |
msgstr ""
|
147 |
|
148 |
# @ yit
|
149 |
+
#: class.yith-wcmg-admin.php:356
|
150 |
msgid "Blur"
|
151 |
msgstr ""
|
152 |
|
153 |
# @ yit
|
154 |
+
#: class.yith-wcmg-admin.php:357
|
155 |
msgid "Add a blur effect to the small image on mouse hover."
|
156 |
msgstr ""
|
157 |
|
158 |
# @ yit
|
159 |
+
#: class.yith-wcmg-admin.php:368
|
160 |
msgid "Slider Settings"
|
161 |
msgstr ""
|
162 |
|
163 |
# @ yit
|
164 |
+
#: class.yith-wcmg-admin.php:375
|
165 |
msgid "Enable Slider"
|
166 |
msgstr ""
|
167 |
|
168 |
# @ yit
|
169 |
+
#: class.yith-wcmg-admin.php:376
|
170 |
msgid "Enable Thumbnail slider."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: class.yith-wcmg-admin.php:384
|
174 |
msgid "Enable Slider Responsive"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: class.yith-wcmg-admin.php:385
|
178 |
msgid ""
|
179 |
"The option fits the thumbnails within the available space. Disable it if you "
|
180 |
"want to manage by yourself the thumbnails (eg. add margins, paddings, etc.)"
|
181 |
msgstr ""
|
182 |
|
183 |
# @ yit
|
184 |
+
#: class.yith-wcmg-admin.php:393
|
185 |
msgid "Items"
|
186 |
msgstr ""
|
187 |
|
188 |
# @ yit
|
189 |
+
#: class.yith-wcmg-admin.php:394
|
190 |
msgid "Number of items to show"
|
191 |
msgstr ""
|
192 |
|
193 |
# @ yit
|
194 |
+
#: class.yith-wcmg-admin.php:405
|
195 |
msgid "Circular carousel"
|
196 |
msgstr ""
|
197 |
|
198 |
# @ yit
|
199 |
+
#: class.yith-wcmg-admin.php:406
|
200 |
msgid "Determines whether the carousel should be circular."
|
201 |
msgstr ""
|
202 |
|
203 |
# @ yit
|
204 |
+
#: class.yith-wcmg-admin.php:414
|
205 |
msgid "Infinite carousel"
|
206 |
msgstr ""
|
207 |
|
208 |
# @ yit
|
209 |
+
#: class.yith-wcmg-admin.php:415
|
210 |
msgid ""
|
211 |
"Determines whether the carousel should be infinite. Note: It is possible to "
|
212 |
"create a non-circular, infinite carousel, but it is not possible to create a "
|
213 |
"circular, non-infinite carousel."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: class.yith-wcmg-admin.php:663
|
217 |
msgid "Settings"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: class.yith-wcmg-admin.php:664
|
221 |
msgid "Docs"
|
222 |
msgstr ""
|
223 |
+
|
224 |
+
#: class.yith-wcmg-admin.php:692
|
225 |
+
msgid "Hard Crop?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: yit-common/yith-panel.php:406
|
229 |
+
msgid "Select a date"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: yit-common/yith-panel.php:407
|
233 |
+
msgid "Hours"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
|
237 |
+
msgid "Minutes"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: yit-common/yith-panel.php:417
|
241 |
+
msgid "Upload"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: yit-common/yith-panel.php:444
|
245 |
+
msgid "px"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: yit-common/yith-panel.php:445
|
249 |
+
msgid "em"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: yit-common/yith-panel.php:446
|
253 |
+
msgid "pt"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: yit-common/yith-panel.php:447
|
257 |
+
msgid "rem"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: yit-common/yith-panel.php:457
|
261 |
+
msgid "Select a font family"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: yit-common/yith-panel.php:465
|
265 |
+
msgid "Regular"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: yit-common/yith-panel.php:466
|
269 |
+
msgid "Bold"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: yit-common/yith-panel.php:467
|
273 |
+
msgid "Extra bold"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: yit-common/yith-panel.php:468
|
277 |
+
msgid "Italic"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: yit-common/yith-panel.php:469
|
281 |
+
msgid "Italic bold"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: yit-common/yith-panel.php:481
|
285 |
+
msgid "Click to preview"
|
286 |
+
msgstr ""
|
yit-common/yit-functions.php
CHANGED
@@ -6,9 +6,11 @@
|
|
6 |
* @version 0.0.1
|
7 |
*/
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
|
13 |
if ( ! function_exists( 'yit_is_woocommerce_active' ) ) {
|
14 |
/**
|
6 |
* @version 0.0.1
|
7 |
*/
|
8 |
|
9 |
+
define( 'YITH_FUNCTIONS', true);
|
10 |
+
|
11 |
+
/* === Include Common Framework File === */
|
12 |
+
require_once( 'google_fonts.php' );
|
13 |
+
require_once( 'yith-panel.php' );
|
14 |
|
15 |
if ( ! function_exists( 'yit_is_woocommerce_active' ) ) {
|
16 |
/**
|