Easy FancyBox - Version 1.3.4.9

Version Description

Metadata and image map support. Opening speed bugfix. New iFrame/HTML5 embed code for Youtube, Vimeo and Dailymotion. Frame color and opacity options. Media options simplification.

=

Download this release

Release Info

Developer RavanH
Plugin Icon 128x128 Easy FancyBox
Version 1.3.4.9
Comparing to
See all releases

Code changes from version 1.5.6 to 1.3.4.9

Files changed (54) hide show
  1. easy-fancybox-admin.php +0 -0
  2. easy-fancybox-class.php +0 -644
  3. languages/easy-fancybox-es_ES.mo → easy-fancybox-es_ES.mo +0 -0
  4. easy-fancybox-fr_FR.mo +0 -0
  5. languages/easy-fancybox-hi_IN.mo → easy-fancybox-hi_IN.mo +0 -0
  6. easy-fancybox-id_ID.mo +0 -0
  7. languages/easy-fancybox-lt_LT.mo → easy-fancybox-lt_LT.mo +0 -0
  8. languages/easy-fancybox-pl_PL.mo → easy-fancybox-pl_PL.mo +0 -0
  9. languages/easy-fancybox.ro_RO.mo → easy-fancybox-ro_RO.mo +0 -0
  10. easy-fancybox-settings.php +561 -954
  11. easy-fancybox-tr_TR.mo +0 -0
  12. languages/easy-fancybox-ua_UA.mo → easy-fancybox-ua_UA.mo +0 -0
  13. easy-fancybox.css.php +33 -0
  14. easy-fancybox.php +446 -43
  15. languages/easy-fancybox_sk_SK.po → easy-fancybox.pot +89 -138
  16. languages/easy-fancybox_sk_SK.mo → easy-fancybox_sk_SK.mo +0 -0
  17. fancybox/jquery.easing-1.3.pack.js +72 -0
  18. fancybox/{jquery.fancybox-1.3.6.css → jquery.fancybox-1.3.4.css} +46 -26
  19. fancybox/{jquery.fancybox-1.3.6.js → jquery.fancybox-1.3.4.js} +47 -77
  20. fancybox/jquery.fancybox-1.3.4.pack.js +46 -0
  21. fancybox/jquery.fancybox-1.3.6.pack.css +0 -43
  22. fancybox/jquery.fancybox-1.3.6.pack.js +0 -25
  23. fancybox/jquery.mousewheel-3.0.4.pack.js +14 -0
  24. jquery.easing.js +0 -205
  25. jquery.easing.pack.js +0 -14
  26. jquery.metadata.pack.js +0 -21
  27. jquery.mousewheel.js +0 -117
  28. jquery.mousewheel.pack.js +0 -8
  29. languages/easy-fancybox-cs_CZ.mo +0 -0
  30. languages/easy-fancybox-cs_CZ.po +0 -1022
  31. languages/easy-fancybox-es_ES.po +0 -526
  32. languages/easy-fancybox-fa_IR.mo +0 -0
  33. languages/easy-fancybox-fa_IR.po +0 -1032
  34. languages/easy-fancybox-fr_FR.mo +0 -0
  35. languages/easy-fancybox-fr_FR.po +0 -856
  36. languages/easy-fancybox-hi_IN.po +0 -525
  37. languages/easy-fancybox-id_ID.mo +0 -0
  38. languages/easy-fancybox-id_ID.po +0 -980
  39. languages/easy-fancybox-lt_LT.po +0 -523
  40. languages/easy-fancybox-nl_NL.mo +0 -0
  41. languages/easy-fancybox-nl_NL.po +0 -1067
  42. languages/easy-fancybox-pl_PL.po +0 -526
  43. languages/easy-fancybox-ro_RO.po +0 -522
  44. languages/easy-fancybox-sr_RS.mo +0 -0
  45. languages/easy-fancybox-sr_RS.po +0 -1029
  46. languages/easy-fancybox-tr_TR.mo +0 -0
  47. languages/easy-fancybox-tr_TR.po +0 -1073
  48. languages/easy-fancybox-ua_UA.po +0 -560
  49. languages/easy-fancybox-xx_XX.po +0 -906
  50. languages/easy-fancybox.pot +0 -908
  51. languages/easy-fancybox_Gu_IN.mo +0 -0
  52. languages/easy-fancybox_Gu_IN.po +0 -983
  53. languages/instructions.txt +0 -28
  54. readme.txt +71 -215
easy-fancybox-admin.php DELETED
File without changes
easy-fancybox-class.php DELETED
@@ -1,644 +0,0 @@
1
- <?php
2
- /**
3
- * Easy FancyBox Class
4
- */
5
- class easyFancyBox {
6
-
7
- public static $pagehook;
8
-
9
- public static $add_scripts = false;
10
-
11
- public static $options = array();
12
-
13
-
14
- /**********************
15
- MAIN SCRIPT OUTPUT
16
- **********************/
17
-
18
- public static function main_script() {
19
-
20
- echo '
21
- <!-- Easy FancyBox ' . EASY_FANCYBOX_VERSION . ' using FancyBox ' . FANCYBOX_VERSION . ' - RavanH (http://status301.net/wordpress-plugins/easy-fancybox/) -->';
22
-
23
- // check for any enabled sections
24
- //if(!empty(self::$options['Global']['options']['Enable']['options']))
25
- foreach (self::$options['Global']['options']['Enable']['options'] as $value) {
26
- // anything enabled?
27
- if ( isset($value['id']) && '1' == get_option($value['id'],$value['default']) ) {
28
- self::$add_scripts = true;
29
- break;
30
- }
31
- }
32
- // and abort when none are active
33
- if (!self::$add_scripts) {
34
- echo '
35
- <!-- Nothing enabled under Settings > Media > FancyBox. -->
36
-
37
- ';
38
- return;
39
- }
40
-
41
- // begin output FancyBox settings
42
- echo '
43
- <script type="text/javascript">
44
- /* <![CDATA[ */
45
- var fb_timeout = null;';
46
-
47
- /*
48
- * Global settings routine
49
- */
50
- $more=0;
51
- echo '
52
- var fb_opts = {';
53
- foreach (self::$options['Global']['options'] as $globals) {
54
- foreach ($globals['options'] as $_key => $_value) {
55
- if ( isset($_value['id']) )
56
- if ( isset($_value['default']) )
57
- $parm = get_option($_value['id'], $_value['default']);
58
- else
59
- $parm = get_option($_value['id']);
60
- elseif ( isset($_value['default']) )
61
- $parm = $_value['default'];
62
- else
63
- $parm = '';
64
-
65
- if ( isset($_value['input']) && 'checkbox'==$_value['input'] )
66
- $parm = ( '1' == $parm ) ? 'true' : 'false';
67
-
68
- if( !isset($_value['hide']) && $parm!='' ) {
69
- $quote = (is_numeric($parm) || (isset($_value['noquotes']) && $_value['noquotes'] == true) ) ? '' : '\'';
70
- if ($more>0)
71
- echo ',';
72
- echo ' \''.$_key.'\' : ';
73
- echo $quote.$parm.$quote;
74
- $more++;
75
- } else {
76
- $$_key = $parm;
77
- }
78
- }
79
- }
80
- echo ' };
81
- var easy_fancybox_handler = function(){';
82
-
83
- foreach (self::$options as $key => $value) {
84
- // check if not enabled or hide=true then skip
85
- if ( isset($value['hide']) || !get_option(self::$options['Global']['options']['Enable']['options'][$key]['id'], self::$options['Global']['options']['Enable']['options'][$key]['default']) )
86
- continue;
87
-
88
- echo '
89
- /* ' . $key . ' */';
90
- /*
91
- * Auto-detection routines (2x)
92
- */
93
- $autoAttribute = (isset($value['options']['autoAttribute'])) ? get_option( $value['options']['autoAttribute']['id'], $value['options']['autoAttribute']['default'] ) : "";
94
- // update from previous version:
95
- if($attributeLimit == '.not(\':empty\')')
96
- $attributeLimit = ':not(:empty)';
97
- elseif($attributeLimit == '.has(\'img\')')
98
- $attributeLimit = ':has(img)';
99
-
100
- if(!empty($autoAttribute)) {
101
- if(is_numeric($autoAttribute)) {
102
- echo '
103
- jQuery(\'a['.$value['options']['autoAttribute']['selector'].']:not(.nofancybox)'.$attributeLimit.', area['.$value['options']['autoAttribute']['selector'].']:not(.nofancybox)'.$attributeLimit.'\')';
104
- //if ( isset($value['options']['autoAttribute']['href-replace']) )
105
- // echo '.attr(\'href\', function(index, attr){'.$value['options']['autoAttribute']['href-replace'].'})';
106
- echo '.addClass(\''.$value['options']['class']['default'].'\');';
107
- } else {
108
- // set selectors
109
- $file_types = array_filter( explode( ' ', str_replace( ',', ' ', $autoAttribute ) ) );
110
- $more=0;
111
- echo '
112
- var fb_'.$key.'_select = \'';
113
- foreach ($file_types as $type) {
114
- if ($type == "jpg" || $type == "jpeg" || $type == "png" || $type == "gif")
115
- $type = '.'.$type;
116
- if ($more>0)
117
- echo ', ';
118
- echo 'a['.$value['options']['autoAttribute']['selector'].'"'.$type.'"]:not(.nofancybox)'.$attributeLimit.', area['.$value['options']['autoAttribute']['selector'].'"'.$type.'"]:not(.nofancybox)'.$attributeLimit;
119
- $more++;
120
- }
121
- echo '\';';
122
-
123
- // class and rel depending on settings
124
- if( '1' == get_option($value['options']['autoAttributeLimit']['id'],$value['options']['autoAttributeLimit']['default']) ) {
125
- // add class
126
- echo '
127
- var fb_'.$key.'_sections = jQuery(\''.get_option($value['options']['autoSelector']['id'],$value['options']['autoSelector']['default']).'\');
128
- fb_'.$key.'_sections.each(function() { jQuery(this).find(fb_'.$key.'_select).addClass(\''.$value['options']['class']['default'].'\')';
129
- // and set rel
130
- switch( get_option($value['options']['autoGallery']['id'],$value['options']['autoGallery']['default']) ) {
131
- case '':
132
- default :
133
- echo '; });';
134
- break;
135
- case '1':
136
- echo '.attr(\'rel\', \'gallery-\' + fb_'.$key.'_sections.index(this)); });';
137
- break;
138
- case '2':
139
- echo '.attr(\'rel\', \'gallery\'); });';
140
- }
141
- } else {
142
- // add class
143
- echo '
144
- jQuery(fb_'.$key.'_select).addClass(\''.$value['options']['class']['default'].'\')';
145
- // set rel
146
- switch( get_option($value['options']['autoGallery']['id'],$value['options']['autoGallery']['default']) ) {
147
- case '':
148
- default :
149
- echo ';';
150
- break;
151
- case '1':
152
- echo ';
153
- var fb_'.$key.'_sections = jQuery(\''.get_option($value['options']['autoSelector']['id'],$value['options']['autoSelector']['default']).'\');
154
- fb_'.$key.'_sections.each(function() { jQuery(this).find(fb_'.$key.'_select).attr(\'rel\', \'gallery-\' + fb_'.$key.'_sections.index(this)); });';
155
- break;
156
- case '2':
157
- echo '.attr(\'rel\', \'gallery\');';
158
- }
159
- }
160
-
161
- }
162
- }
163
-
164
- $autoAttributeAlt = ( isset($value['options']['autoAttributeAlt']) ) ? get_option( $value['options']['autoAttributeAlt']['id'], $value['options']['autoAttributeAlt']['default'] ) : "";
165
- if(!empty($autoAttributeAlt) && is_numeric($autoAttributeAlt)) {
166
- echo '
167
- jQuery(\'a['.$value['options']['autoAttributeAlt']['selector'].']:not(.nofancybox)'.$attributeLimit.', area['.$value['options']['autoAttributeAlt']['selector'].']:not(.nofancybox)'.$attributeLimit.'\')';
168
- //if (!empty($value['options']['autoAttributeAlt']['href-replace']))
169
- // echo '.attr(\'href\', function(index, attr){'.$value['options']['autoAttributeAlt']['href-replace']. '})';
170
- echo '.addClass(\''.$value['options']['class']['default'].'\');';
171
- }
172
-
173
- /*
174
- * Generate .fancybox() bind
175
- */
176
- $trigger='';
177
- if( $key == $autoClick )
178
- $trigger = '.filter(\':first\').trigger(\'click\')';
179
-
180
- echo '
181
- jQuery(\'' . $value['options']['tag']['default']. '\')';
182
-
183
- // use each() to allow different metadata values per instance; fix by Elron. Thanks!
184
- if ( '1' == get_option(self::$options['Global']['options']['Links']['options']['metaData']['id'],self::$options['Global']['options']['Links']['options']['metaData']['default']) )
185
- echo '.each(function() { jQuery(this)';
186
-
187
- echo '.fancybox( jQuery.extend({}, fb_opts, {';
188
- $more=0;
189
- foreach ($value['options'] as $_key => $_value) {
190
- if (isset($_value['id']) || isset($_value['default']))
191
- $parm = (isset($_value['id']))? get_option($_value['id'], $_value['default']) : $_value['default'];
192
- else
193
- $parm = '';
194
-
195
- if( isset($_value['input']) && 'checkbox'==$_value['input'] )
196
- $parm = ( '1' == $parm ) ? 'true' : 'false';
197
-
198
- if( !isset($_value['hide']) && $parm!='' ) {
199
- $quote = (is_numeric($parm) || (isset($_value['noquotes']) && $_value['noquotes'] == true) ) ? '' : '\'';
200
- if ($more>0)
201
- echo ',';
202
- echo ' \''.$_key.'\' : ';
203
- echo $quote.$parm.$quote;
204
- $more++;
205
- }
206
- }
207
- echo ' }) ';
208
-
209
- // use each() to allow different metadata values per instance; fix by Elron. Thanks!
210
- if ( '1' == get_option(self::$options['Global']['options']['Links']['options']['metaData']['id'],self::$options['Global']['options']['Links']['options']['metaData']['default']) )
211
- echo ');} ';
212
-
213
- echo ')'.$trigger.';';
214
-
215
- }
216
-
217
- switch( $autoClick ) {
218
- case '':
219
- default :
220
- break;
221
- case '1':
222
- echo '
223
- /* Auto-click */
224
- jQuery(\'#fancybox-auto\').trigger(\'click\');';
225
- break;
226
- case '99':
227
- echo '
228
- /* Auto-load */
229
- jQuery(\'a[class*="fancybox"]\').filter(\':first\').trigger(\'click\');';
230
- break;
231
- }
232
- echo '
233
- }
234
- /* ]]> */
235
- </script>
236
- <style type="text/css">
237
- .fancybox-hidden{display:none}.rtl #fancybox-left{left:auto;right:0px}.rtl #fancybox-right{left:0px;right:auto}.rtl #fancybox-right-ico{background-position:-40px -30px}.rtl #fancybox-left-ico{background-position:-40px -60px}.rtl .fancybox-title-over{text-align:right}.rtl #fancybox-left-ico,.rtl #fancybox-right-ico{right:-9999px}.rtl #fancybox-right:hover span{right:auto;left:20px}.rtl #fancybox-left:hover span{right:20px}#fancybox-img{max-width:none;max-height:none}';
238
-
239
- if ('true' == $overlaySpotlight)
240
- echo '
241
- #fancybox-overlay{background-attachment:fixed;background-image:url("' . EASY_FANCYBOX_PLUGINURL . 'light-mask.png");background-position:center;background-repeat:no-repeat;background-size:cover;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'light-mask.png",sizingMethod="scale");-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' . EASY_FANCYBOX_PLUGINURL . 'light-mask.png\',sizingMethod=\'scale\')";}';
242
- if ( !empty($borderRadius) )
243
- echo '
244
- #fancybox-bg-n,#fancybox-bg-ne,#fancybox-bg-e,#fancybox-bg-se,#fancybox-bg-s,#fancybox-bg-sw,#fancybox-bg-w,#fancybox-bg-nw{background-image:none}#fancybox-outer,#fancybox-content{border-radius:'.$borderRadius.'px}#fancybox-outer{-moz-box-shadow:0 0 12px #1111;-webkit-box-shadow:0 0 12px #111;box-shadow:0 0 12px #111}';
245
- if ('' != $backgroundColor)
246
- echo '
247
- #fancybox-outer{background-color:'.$backgroundColor.'}';
248
- if ('' != $paddingColor)
249
- echo '
250
- #fancybox-content{border-color:'.$paddingColor.'}';
251
- if ('' != $textColor)
252
- echo '
253
- #fancybox-content{color:'.$textColor.'}';
254
- if ('' != $frameOpacity && '1' != $frameOpacity) {
255
- $frameOpacity_percent = (int)$frameOpacity*100;
256
- echo '
257
- #fancybox-outer{filter:alpha(opacity='.$frameOpacity_percent.');-moz-opacity:'.$frameOpacity.';opacity:'.$frameOpacity.'}';
258
- }
259
- echo '
260
- </style>';
261
-
262
- // running our IE alphaimageloader relative path styles here
263
- echo '
264
- <!--[if lt IE 8]>
265
- <style type="text/css">
266
- .fancybox-ie6 #fancybox-close{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_close.png",sizingMethod="scale")}
267
- .fancybox-ie6 #fancybox-left-ico{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_nav_left.png",sizingMethod="scale")}
268
- .fancybox-ie6 #fancybox-right-ico{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_nav_right.png",sizingMethod="scale")}
269
- .fancybox-ie6 #fancybox-title-over{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_title_over.png",sizingMethod="scale");zoom:1}
270
- .fancybox-ie6 #fancybox-title-float-left{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_title_left.png",sizingMethod="scale")}
271
- .fancybox-ie6 #fancybox-title-float-main{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_title_main.png",sizingMethod="scale")}
272
- .fancybox-ie6 #fancybox-title-float-right{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_title_right.png",sizingMethod="scale")}
273
- .fancybox-ie6 #fancybox-bg-w,.fancybox-ie6 #fancybox-bg-e,.fancybox-ie6 #fancybox-left,.fancybox-ie6 #fancybox-right,#fancybox-hide-sel-frame{height:expression(this.parentNode.clientHeight+"px")}
274
- #fancybox-loading.fancybox-ie6{position:absolute;margin-top:0;top:expression((-20+(document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2)+(ignoreMe=document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+"px")}
275
- #fancybox-loading.fancybox-ie6 div{background:transparent;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_loading.png", sizingMethod="scale")}
276
- .fancybox-ie #fancybox-bg-n{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_n.png",sizingMethod="scale")}
277
- .fancybox-ie #fancybox-bg-ne{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_ne.png",sizingMethod="scale")}
278
- .fancybox-ie #fancybox-bg-e{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_e.png",sizingMethod="scale")}
279
- .fancybox-ie #fancybox-bg-se{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_se.png",sizingMethod="scale")}
280
- .fancybox-ie #fancybox-bg-s{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_s.png",sizingMethod="scale")}
281
- .fancybox-ie #fancybox-bg-sw{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_sw.png",sizingMethod="scale")}
282
- .fancybox-ie #fancybox-bg-w{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_w.png",sizingMethod="scale")}
283
- .fancybox-ie #fancybox-bg-nw{filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_nw.png",sizingMethod="scale")}
284
- </style>
285
- <![endif]-->
286
- <!--[if IE 8]>
287
- <style type="text/css">
288
- .fancybox-ie #fancybox-bg-n{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_n.png",sizingMethod="scale")\'}
289
- .fancybox-ie #fancybox-bg-ne{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_ne.png",sizingMethod="scale")\'}
290
- .fancybox-ie #fancybox-bg-e{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_e.png",sizingMethod="scale")\'}
291
- .fancybox-ie #fancybox-bg-se{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_se.png",sizingMethod="scale")\'}
292
- .fancybox-ie #fancybox-bg-s{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_s.png",sizingMethod="scale")\'}
293
- .fancybox-ie #fancybox-bg-sw{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_sw.png",sizingMethod="scale")\'}
294
- .fancybox-ie #fancybox-bg-w{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_w.png",sizingMethod="scale")\'}
295
- .fancybox-ie #fancybox-bg-nw{-ms-filter:\'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' . EASY_FANCYBOX_PLUGINURL . 'fancybox/fancy_shadow_nw.png",sizingMethod="scale")\'}
296
- </style>
297
- <![endif]-->
298
- ';
299
- }
300
-
301
-
302
- /***********************
303
- ADMIN FUNCTIONS
304
- ***********************/
305
-
306
- public static function register_settings($args = array()) {
307
- foreach ($args as $key => $value) {
308
- // check to see if the section is enabled, else skip to next
309
- if ( array_key_exists($key, self::$options['Global']['options']['Enable']['options']) && !get_option( self::$options['Global']['options']['Enable']['options'][$key]['id'], self::$options['Global']['options']['Enable']['options'][$key]['default']) )
310
- continue;
311
-
312
- switch($value['input']) {
313
- case 'deep':
314
- // go deeper by looping back on itself
315
- self::register_settings($value['options']);
316
- break;
317
- case 'multiple':
318
- add_settings_field( 'fancybox_'.$key, '<a name="'.$value['title'].'"></a>'.$value['title'], array(__CLASS__, 'settings_fields'), 'media', 'fancybox_section', $value);
319
- foreach ( $value['options'] as $_value ) {
320
- if ( !isset($_value['sanitize_callback']) )
321
- $sanitize_callback = '';
322
- else
323
- $sanitize_callback = array(__CLASS__, $_value['sanitize_callback']);
324
- if ( isset($_value['id']) )
325
- register_setting( 'media', $_value['id'], $sanitize_callback );
326
- }
327
- break;
328
- default:
329
- if ( !isset($value['sanitize_callback']) )
330
- $sanitize_callback = '';
331
- else
332
- $sanitize_callback = array(__CLASS__, $value['sanitize_callback']);
333
- if ( isset($value['id']) )
334
- register_setting( 'media', 'fancybox_'.$key, $sanitize_callback );
335
- }
336
- }
337
- }
338
-
339
- // add our FancyBox Media Settings Section on Settings > Media admin page
340
- public static function settings_section() {
341
- echo '<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox&item_number='.EASY_FANCYBOX_VERSION.'&no_shipping=0&tax=0&charset=UTF%2d8&currency_code=EUR" title="'.__('Donate to keep the Easy FancyBox plugin development going!','easy-fancybox').'"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" style="border:none;float:right;margin:5px 0 0 10px" alt="'.__('Donate to keep the Easy FancyBox plugin development going!','easy-fancybox').'" width="92" height="26" /></a>'.sprintf(__('The options in this section are provided by the plugin %s and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by %s.','easy-fancybox'),'<strong><a href="http://status301.net/wordpress-plugins/easy-fancybox/">'.__('Easy FancyBox','easy-fancybox').'</a></strong>','<strong><a href="http://fancybox.net/">'.__('FancyBox','easy-fancybox').'</a></strong>').'</p><p>'.__('First enable each sub-section that you need. Then save and come back to adjust its specific settings.','easy-fancybox').' '.__('Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site.','easy-fancybox').' '.__('Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability.','easy-fancybox').'</p>';
342
- }
343
-
344
- // add our FancyBox Media Settings Fields
345
- public static function settings_fields($args){
346
- $disabled = (isset($args['status']) && 'disabled' == $args['status']) ? ' disabled="disabled"' : '';
347
- if (isset($args['input']))
348
- switch($args['input']) {
349
- case 'multiple':
350
- case 'deep':
351
- foreach ($args['options'] as $options)
352
- self::settings_fields($options);
353
- if (isset($args['description'])) echo $args['description'];
354
- break;
355
- case 'select':
356
- if( !empty($args['label_for']) )
357
- echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
358
- else
359
- echo $args['title'];
360
- echo '
361
- <select name="'.$args['id'].'" id="'.$args['id'].'">';
362
- foreach ($args['options'] as $optionkey => $optionvalue) {
363
- $selected = (get_option($args['id'], $args['default']) == $optionkey) ? ' selected="selected"' : '';
364
- echo '
365
- <option value="'.esc_attr($optionkey).'"'.$selected.' '.$disabled.' >'.$optionvalue.'</option>';
366
- }
367
- echo '
368
- </select> ';
369
- if( empty($args['label_for']) )
370
- echo '<label for="'.$args['id'].'">'.$args['description'].'</label> ';
371
- else
372
- if (isset($args['description'])) echo $args['description'];
373
- break;
374
- case 'checkbox':
375
- if( !empty($args['label_for']) )
376
- echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
377
- else
378
- if (isset($args['title'])) echo $args['title'];
379
- $value = esc_attr( get_option($args['id'], $args['default']) );
380
- if ($value == "1")
381
- $checked = ' checked="checked"';
382
- else
383
- $checked = '';
384
- if ($args['default'] == "1")
385
- $default = __('Checked','easy-fancybox');
386
- else
387
- $default = __('Unchecked','easy-fancybox');
388
- if( empty($args['label_for']) )
389
- echo '
390
- <label><input type="checkbox" name="'.$args['id'].'" id="'.$args['id'].'" value="1" '.$checked.' '.$disabled.' /> '.$args['description'].'</label><br />';
391
- else
392
- echo '
393
- <input type="checkbox" name="'.$args['id'].'" id="'.$args['id'].'" value="1" '.$checked.' '.$disabled.' /> '.$args['description'].'<br />';
394
- break;
395
- case 'text':
396
- if( !empty($args['label_for']) )
397
- echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
398
- else
399
- echo $args['title'];
400
- echo '
401
- <input type="text" name="'.$args['id'].'" id="'.$args['id'].'" value="'.esc_attr( get_option($args['id'], $args['default']) ).'" class="'.$args['class'].'"'.$disabled.' /> ';
402
- if( empty($args['label_for']) )
403
- echo '<label for="'.$args['id'].'">'.$args['description'].'</label> ';
404
- else
405
- if (isset($args['description'])) echo $args['description'];
406
- break;
407
- case 'number':
408
- if( !empty($args['label_for']) )
409
- echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
410
- else
411
- echo $args['title'];
412
- echo '
413
- <input type="number" step="'.$args['step'].'" min="'.$args['min'].'" max="'.$args['max'].'" name="'.$args['id'].'" id="'.$args['id'].'" value="'.esc_attr( get_option($args['id'], $args['default']) ).'" class="'.$args['class'].'"'.$disabled.' /> ';
414
- if( empty($args['label_for']) )
415
- echo '<label for="'.$args['id'].'">'.$args['description'].'</label> ';
416
- else
417
- if (isset($args['description'])) echo $args['description'];
418
- break;
419
- case 'hidden':
420
- echo '
421
- <input type="hidden" name="'.$args['id'].'" id="'.$args['id'].'" value="'.esc_attr( get_option($args['id'], $args['default']) ).'" /> ';
422
- break;
423
- default:
424
- if (isset($args['description'])) echo $args['description'];
425
- }
426
- else
427
- if (isset($args['description'])) echo $args['description'];
428
- }
429
-
430
- /**
431
- * Adds an action link to the Plugins page
432
- */
433
- public static function add_action_link( $links ) {
434
- $settings_link = '<a href="' . admin_url('options-media.php') . '">' . translate('Settings') . '</a>';
435
- array_unshift( $links, $settings_link );
436
- return $links;
437
- }
438
-
439
- public static function intval($setting = '') {
440
- if ($setting == '')
441
- return '';
442
-
443
- if (substr($setting, -1) == '%') {
444
- $val = intval(substr($setting, 0, -1));
445
- $prc = '%';
446
- } else {
447
- $val = intval($setting);
448
- $prc = '';
449
- }
450
-
451
- return ( $val != 0 ) ? $val.$prc : 0;
452
- }
453
-
454
-
455
- /***********************
456
- ACTIONS & FILTERS
457
- ***********************/
458
-
459
- public static function register_scripts() {
460
-
461
- if ( !is_admin() ) {
462
- // ENQUEUE
463
- // first get rid of previously registered variants of jquery.fancybox by other plugins or theme
464
- wp_deregister_script('fancybox');
465
- wp_deregister_script('jquery.fancybox');
466
- wp_deregister_script('jquery_fancybox');
467
- wp_deregister_script('jquery-fancybox');
468
- // register main fancybox script
469
- wp_register_script('jquery-fancybox', EASY_FANCYBOX_PLUGINURL.'fancybox/jquery.fancybox-'.FANCYBOX_VERSION.'.pack.js', array('jquery'), EASY_FANCYBOX_VERSION, true);
470
-
471
- // easing in IMG settings?
472
- if ( ( '' == get_option( self::$options['IMG']['options']['easingIn']['id'], self::$options['IMG']['options']['easingIn']['default']) || 'linear' == get_option( self::$options['IMG']['options']['easingIn']['id'], self::$options['IMG']['options']['easingIn']['default']) ) && ( '' == get_option( self::$options['IMG']['options']['easingOut']['id'], self::$options['IMG']['options']['easingOut']['default']) || 'linear' == get_option( self::$options['IMG']['options']['easingOut']['id'], self::$options['IMG']['options']['easingOut']['default']) ) ) {
473
- // do nothing
474
- } else {
475
- if ( 'elastic' == get_option( self::$options['IMG']['options']['transitionIn']['id'], self::$options['IMG']['options']['transitionIn']['default']) || 'elastic' == get_option( self::$options['IMG']['options']['transitionOut']['id'], self::$options['IMG']['options']['transitionOut']['default']) ) {
476
- wp_deregister_script('jquery-easing');
477
- wp_register_script('jquery-easing', EASY_FANCYBOX_PLUGINURL.'jquery.easing.pack.js', array('jquery'), EASING_VERSION, true);
478
- }
479
- }
480
-
481
- // mousewheel in IMG settings?
482
- if ( '1' == get_option( self::$options['IMG']['options']['mouseWheel']['id'], self::$options['IMG']['options']['mouseWheel']['default']) ) {
483
- wp_deregister_script('jquery-mousewheel');
484
- wp_register_script('jquery-mousewheel', EASY_FANCYBOX_PLUGINURL.'jquery.mousewheel.pack.js', array('jquery'), MOUSEWHEEL_VERSION, true);
485
- }
486
-
487
- // metadata in Link settings?
488
- if ('1' == get_option( self::$options['Global']['options']['Links']['options']['metaData']['id'], self::$options['Global']['options']['Links']['options']['metaData']['default']) ) {
489
- wp_deregister_script('jquery-metadata');
490
- wp_register_script('jquery-metadata',EASY_FANCYBOX_PLUGINURL.'jquery.metadata.pack.js', array('jquery'), METADATA_VERSION, true);
491
- }
492
- }
493
- }
494
-
495
- public static function enqueue_styles() {
496
- // register style
497
- wp_dequeue_style('fancybox');
498
- wp_enqueue_style('fancybox', EASY_FANCYBOX_PLUGINURL.'fancybox/jquery.fancybox-'.FANCYBOX_VERSION.'.pack.css', false, EASY_FANCYBOX_VERSION, 'screen');
499
- }
500
-
501
- public static function enqueue_footer_scripts() {
502
- if (!self::$add_scripts)
503
- return;
504
-
505
- wp_enqueue_script('jquery-fancybox');
506
- wp_enqueue_script('jquery-easing');
507
- wp_enqueue_script('jquery-mousewheel');
508
- wp_enqueue_script('jquery-metadata');
509
- }
510
-
511
- public static function on_ready() {
512
- if (!self::$add_scripts) // abort mission, there is no need for any script files
513
- return;
514
-
515
- // 'gform_post_render' for gForms content triggers an error... Why?
516
- // 'post-load' is for Infinite Scroll by JetPack
517
- echo '
518
- <script type="text/javascript">
519
- jQuery(document).on(\'ready post-load\', easy_fancybox_handler );
520
- </script>
521
- ';
522
- }
523
-
524
- public static function admin_init(){
525
-
526
- add_filter('plugin_action_links_' . EASY_FANCYBOX_PLUGINBASENAME, array(__CLASS__, 'add_action_link') );
527
-
528
- // in preparation of dedicated admin page move:
529
- //add_action('admin_menu', array(__CLASS__, 'add_menu'));
530
-
531
- add_settings_section('fancybox_section', __('FancyBox','easy-fancybox'), array(__CLASS__, 'settings_section'), 'media');
532
-
533
- self::register_settings( self::$options );
534
-
535
- // TODO : fix?? media_upload_max_image_resize() does not exist anymore...
536
- //add_action( 'pre-upload-ui', 'media_upload_max_image_resize' );
537
- }
538
-
539
- // Hack to fix missing wmode in Youtube oEmbed code based on David C's code in the comments on
540
- // http://www.mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html
541
- public static function add_video_wmode_opaque($html, $url, $attr) {
542
- if (strpos($html, "<embed src=" ) !== false) {
543
- $html = str_replace('</param><embed', '</param><param name="wmode" value="opaque"></param><embed wmode="opaque"', $html);
544
- } elseif (strpos($html, 'youtube' ) !== false && strpos($html, 'wmode' ) == false ) {
545
- $html = str_replace('feature=oembed', 'feature=oembed&wmode=opaque', $html);
546
- } elseif ( strpos($html, "vimeo" ) !== false && strpos($html, 'wmode' ) == false ) {
547
- $html = str_replace('" width', '?theme=none&wmode=opaque" width', $html);
548
- } elseif ( strpos($html, "dailymotion" ) !== false && strpos($html, 'wmode' ) == false ) {
549
- $html = str_replace('" width', '?wmode=opaque" width', $html);
550
- }
551
- return $html;
552
- }
553
-
554
- public static function init() {
555
- require_once(EASY_FANCYBOX_PLUGINDIR . 'easy-fancybox-settings.php');
556
-
557
- add_filter('embed_oembed_html', array(__CLASS__, 'add_video_wmode_opaque'), 10, 3);
558
- }
559
-
560
- public static function textdomain() {
561
- if ( is_admin() ) {
562
- load_plugin_textdomain('easy-fancybox', false, dirname( EASY_FANCYBOX_PLUGINBASENAME ) . '/languages/');
563
- }
564
- }
565
- /**********************
566
- ADMIN
567
- **********************/
568
-
569
- public static function add_menu() {
570
- /* Register our plugin page */
571
- self::$pagehook = add_submenu_page( 'themes.php', __('Easy FancyBox Settings', 'easy-fancybox'), __('FancyBox', 'easy-fancybox'), 'manage_options', 'easy-fancybox', array(__CLASS__, 'admin') );
572
- /* Using registered $page handle to hook script load */
573
- add_action('load-' . self::$pagehook, array(__CLASS__, 'admin_scripts'));
574
- }
575
-
576
- public static function admin() {
577
-
578
- add_filter( 'get_user_option_closedpostboxes_'.self::$pagehook, array(__CLASS__, 'closed_meta_boxes') );
579
-
580
- add_meta_box('submitdiv', __('Sections','easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_submit'), self::$pagehook, 'side', 'high');
581
- add_meta_box('globaldiv', __('Global settings', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_global'), self::$pagehook, 'normal', 'high');
582
- add_meta_box('imgdiv', __('Images', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_img'), self::$pagehook, 'normal', 'normal');
583
- add_meta_box('inlinediv', __('Inline content', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_inline'), self::$pagehook, 'normal', 'normal');
584
- add_meta_box('pdfdiv', __('PDF', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_pdf'), self::$pagehook, 'normal', 'normal');
585
- add_meta_box('swfdiv', __('SWF', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_swf'), self::$pagehook, 'normal', 'normal');
586
- add_meta_box('youtubediv', __('YouTube', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_youtube'), self::$pagehook, 'normal', 'normal');
587
- add_meta_box('vimeodiv', __('Vimeo', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_vimeo'), self::$pagehook, 'normal', 'normal');
588
- add_meta_box('dailymotiondiv', __('Dailymotion', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_dailymotion'), self::$pagehook, 'normal', 'normal');
589
- add_meta_box('iframediv', __('iFrames', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_iframe'), self::$pagehook, 'normal', 'normal');
590
-
591
- //load admin page
592
- include(EASY_FANCYBOX_PLUGINDIR . '/easy-fancybox-admin.php');
593
- }
594
-
595
- public function closed_meta_boxes( $closed ) {
596
-
597
- if ( false === $closed )
598
- // set default closed metaboxes
599
- $closed = array( 'advanceddiv', 'supportdiv', 'creditsdiv', 'resourcesdiv' );
600
- else
601
- // remove closed setting of some metaboxes
602
- $closed = array_diff ( $closed , array ( 'submitdiv' ) );
603
-
604
- return $closed;
605
- }
606
-
607
- public static function admin_scripts($hook) {
608
-
609
- // needed javascripts to allow drag/drop, expand/collapse and hide/show of boxes
610
- wp_enqueue_script('common');
611
- wp_enqueue_script('wp-list');
612
- wp_enqueue_script('postbox');
613
-
614
- //add several metaboxes now, all metaboxes registered during load page can be switched off/on at "Screen Options" automatically, nothing special to do therefore
615
- //add_meta_box('advanceddiv', __('Advanced Options', 'easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_advanced'), self::$pagehook, 'normal', 'core');
616
-
617
- add_meta_box('supportdiv', __('Support','easy-fancybox'), array(__CLASS__.'_Admin', 'meta_box_support'), self::$pagehook, 'side', 'core');
618
- add_meta_box('resourcesdiv', __('Resources','skype-online-status'), array(__CLASS__.'_Admin', 'meta_box_resources'), self::$pagehook, 'side', 'low');
619
- add_meta_box('discussiondiv', translate('Discussion'), array(__CLASS__.'_Admin', 'meta_box_discussion'), self::$pagehook, 'normal', 'low');
620
- add_meta_box('creditsdiv', __('Credits','skype-online-status'), array(__CLASS__.'_Admin', 'meta_box_credits'), self::$pagehook, 'side', 'default');
621
-
622
- }
623
-
624
- /**********************
625
- RUN
626
- **********************/
627
-
628
- static function run() {
629
-
630
- // HOOKS //
631
- add_action('plugins_loaded', array(__CLASS__, 'textdomain'));
632
-
633
- add_action('admin_init', array(__CLASS__, 'admin_init'));
634
-
635
- add_action('init', array(__CLASS__, 'init'));
636
- add_action('wp_enqueue_scripts', array(__CLASS__, 'enqueue_styles'), 999);
637
- add_action('wp_head', array(__CLASS__, 'main_script'), 999);
638
- add_action('wp_print_scripts', array(__CLASS__, 'register_scripts'), 999);
639
- add_action('wp_footer', array(__CLASS__, 'enqueue_footer_scripts'));
640
- add_action('wp_footer', array(__CLASS__, 'on_ready'), 999);
641
- }
642
-
643
- }
644
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-es_ES.mo → easy-fancybox-es_ES.mo RENAMED
File without changes
easy-fancybox-fr_FR.mo ADDED
Binary file
languages/easy-fancybox-hi_IN.mo → easy-fancybox-hi_IN.mo RENAMED
File without changes
easy-fancybox-id_ID.mo ADDED
Binary file
languages/easy-fancybox-lt_LT.mo → easy-fancybox-lt_LT.mo RENAMED
File without changes
languages/easy-fancybox-pl_PL.mo → easy-fancybox-pl_PL.mo RENAMED
File without changes
languages/easy-fancybox.ro_RO.mo → easy-fancybox-ro_RO.mo RENAMED
File without changes
easy-fancybox-settings.php CHANGED
@@ -1,37 +1,27 @@
1
  <?php
2
- class easyFancyBox_Options extends easyFancyBox {
3
-
4
- static function go() {
5
-
6
- parent::$options = array (
7
 
 
8
  'Global' => array(
9
  'title' => __('Global settings','easy-fancybox'),
10
  'input' => 'deep',
11
  'hide' => true,
12
  'options' => array(
 
 
 
 
13
  'Enable' => array (
14
- 'title' => __('Media','easy-fancybox'),
15
  'input' => 'multiple',
16
  'hide' => true,
17
  'options' => array(
18
- 'p1' => array (
19
- 'hide' => true,
20
- 'description' => __('Enable FancyBox for','easy-fancybox') . '<br />'
21
- ),
22
  'IMG' => array (
23
  'id' => 'fancybox_enableImg',
24
  'input' => 'checkbox',
25
  'hide' => true,
26
- 'default' => ( function_exists('is_plugin_active_for_network') && is_plugin_active_for_network( plugin_basename( __FILE__ ) ) ) ? '' : '1',
27
- 'description' => '<strong>' . __('Images','easy-fancybox') . '</strong>'
28
- ),
29
- 'Inline' => array (
30
- 'id' => 'fancybox_enableInline',
31
- 'input' => 'checkbox',
32
- 'hide' => true,
33
- 'default' => '',
34
- 'description' => '<strong>' . __('Inline content','easy-fancybox') . '</strong>'
35
  ),
36
  'PDF' => array (
37
  'id' => 'fancybox_enablePDF',
@@ -47,13 +37,6 @@ class easyFancyBox_Options extends easyFancyBox {
47
  'default' => '',
48
  'description' => '<strong>' . __('SWF','easy-fancybox') . '</strong>'
49
  ),
50
- 'SVG' => array (
51
- 'id' => 'fancybox_enableSVG',
52
- 'input' => 'checkbox',
53
- 'hide' => true,
54
- 'default' => '',
55
- 'description' => '<strong>' . __('SVG','easy-fancybox') . '</strong>'
56
- ),
57
  'YouTube' => array (
58
  'id' => 'fancybox_enableYoutube',
59
  'input' => 'checkbox',
@@ -82,14 +65,17 @@ class easyFancyBox_Options extends easyFancyBox {
82
  'default' => '',
83
  'description' => '<strong>' . __('iFrames','easy-fancybox') . '</strong>'
84
  )
85
- ),
86
- 'description' => '<a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/"><strong><em>' . __('For advanced options and support, please get the Easy FancyBox - Pro extension.','easy-fancybox') . '</strong></a>'
87
  ),
88
  'Links' => array(
89
- 'title' => translate('Links'),
90
  'input' => 'multiple',
91
  'hide' => true,
92
  'options' => array(
 
 
 
 
93
  'attributeLimit' => array (
94
  'id' => 'fancybox_attributeLimit',
95
  'title' => __('Exclude','easy-fancybox'),
@@ -97,7 +83,7 @@ class easyFancyBox_Options extends easyFancyBox {
97
  'hide' => true,
98
  'input' => 'select',
99
  'options' => array(
100
- '' => translate('None'),
101
  ':not(:empty)' => __('Empty (hidden) links','easy-fancybox'),
102
  ':has(img)' => __('Without thumbnail image','easy-fancybox')
103
  ),
@@ -106,23 +92,24 @@ class easyFancyBox_Options extends easyFancyBox {
106
  ),
107
  'autoClick' => array (
108
  'id' => 'fancybox_autoClick',
109
- 'title' => __('Open on page load','easy-fancybox'),
110
  'label_for' => 'fancybox_autoClick',
111
  'hide' => true,
112
  'input' => 'select',
113
  'options' => array(
114
- '' => translate('None'),
115
  '1' => __('Link with ID "fancybox-auto"','easy-fancybox'),
 
 
 
 
 
 
 
 
116
  ),
117
  'default' => '1',
118
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />'
119
- ),
120
- 'metaData' => array (
121
- 'id' => 'fancybox_metaData',
122
- 'hide' => true,
123
- 'input' => 'checkbox',
124
- 'default' => '',
125
- 'description' => __('Include the Metadata jQuery extension script to allow passing custom parameters via link class.','easy-fancybox')
126
  )
127
  )
128
  ),
@@ -134,25 +121,21 @@ class easyFancyBox_Options extends easyFancyBox {
134
  'overlayShow' => array (
135
  'id' => 'fancybox_overlayShow',
136
  'input' => 'checkbox',
137
- 'noquotes' => true,
138
  'default' => '1',
139
  'description' => __('Show the overlay around content opened in FancyBox.','easy-fancybox')
140
  ),
141
- 'hideOnOverlayClick' => array (
142
- 'id' => 'fancybox_hideOnOverlayClick',
143
  'input' => 'checkbox',
144
- 'noquotes' => true,
145
- 'default' => '1',
146
- 'description' => __('Close FancyBox when overlay is clicked.','easy-fancybox')
147
  ),
148
  'overlayOpacity' => array (
149
  'id' => 'fancybox_overlayOpacity',
150
  'title' => __('Opacity','easy-fancybox'),
151
  'label_for' => 'fancybox_overlayOpacity',
152
- 'input' => 'number',
153
- 'step' => '0.1',
154
- 'min' => '0',
155
- 'max' => '1',
156
  'class' => 'small-text',
157
  'default' => '',
158
  'description' => __('Value between 0 and 1. ','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' 0.7</em><br />'
@@ -165,17 +148,10 @@ class easyFancyBox_Options extends easyFancyBox {
165
  'class' => 'small-text',
166
  'default' => '',
167
  'description' => __('Enter an HTML color value.','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' #777</em><br />'
168
- ),
169
- 'overlaySpotlight' => array (
170
- 'id' => 'fancybox_overlaySpotlight',
171
- 'input' => 'checkbox',
172
- 'hide' => true,
173
- //'status' => 'disabled',
174
- 'default' => '',
175
- 'description' => __('Spotlight effect','easy-fancybox') //. '. <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em>'
176
  )
177
  )
178
  ),
 
179
  'Window' => array (
180
  'title' => __('Window','easy-fancybox'),
181
  'input' => 'multiple',
@@ -183,21 +159,44 @@ class easyFancyBox_Options extends easyFancyBox {
183
  'options' => array(
184
  'p1' => array (
185
  'hide' => true,
186
- 'description' => '<strong>' . __('Appearance','easy-fancybox') . '</strong><br />'
187
  ),
188
- 'showCloseButton' => array (
189
- 'id' => 'fancybox_showCloseButton',
190
- 'input' => 'checkbox',
191
- 'noquotes' => true,
192
- 'default' => '1',
193
- 'description' => __('Show the (X) close button','easy-fancybox')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  ),
195
  'backgroundColor' => array (
196
  'id' => 'fancybox_backgroundColor',
197
  'hide' => true,
198
- 'title' => __('Background color','easy-fancybox'),
 
199
  'input' => 'text',
200
- 'status' => 'disabled',
201
  'class' => 'small-text',
202
  'default' => '',
203
  'description' => ''
@@ -205,9 +204,9 @@ class easyFancyBox_Options extends easyFancyBox {
205
  'paddingColor' => array (
206
  'id' => 'fancybox_paddingColor',
207
  'hide' => true,
208
- 'title' => __('Border color','easy-fancybox'),
 
209
  'input' => 'text',
210
- 'status' => 'disabled',
211
  'class' => 'small-text',
212
  'default' => '',
213
  'description' => ''
@@ -215,111 +214,54 @@ class easyFancyBox_Options extends easyFancyBox {
215
  'textColor' => array (
216
  'id' => 'fancybox_textColor',
217
  'hide' => true,
218
- 'title' => __('Text color','easy-fancybox'),
 
219
  'input' => 'text',
220
- 'status' => 'disabled',
221
  'class' => 'small-text',
222
  'default' => '',
223
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em><br />'
224
  ),
225
  'frameOpacity' => array (
226
  'id' => 'fancybox_frameOpacity',
227
  'hide' => true,
228
  'title' => __('Opacity','easy-fancybox'),
229
- 'input' => 'number',
230
- 'step' => '0.1',
231
- 'min' => '0',
232
- 'max' => '1',
233
- 'status' => 'disabled',
234
- 'class' => 'small-text',
235
- 'default' => '',
236
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em><br />'
237
- ),
238
- 'borderRadius' => array (
239
- 'id' => 'fancybox_borderRadius',
240
- 'hide' => true,
241
- 'title' => __('Border radius','easy-fancybox'),
242
- 'input' => 'number',
243
- 'step' => '1',
244
- 'min' => '0',
245
- 'max' => '99',
246
- 'status' => 'disabled',
247
- 'class' => 'small-text',
248
- 'default' => '',
249
- 'description' => __('Set a border radius to create rounded corners. Higher is rounder.','easy-fancybox') . ' <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em><br />'
250
- ),
251
-
252
- 'p11' => array (
253
- 'hide' => true,
254
- 'description' => '<br /><strong>' . __('Dimensions','easy-fancybox') . '</strong><br />'
255
- ),
256
- 'width' => array (
257
- 'id' => 'fancybox_width',
258
- 'title' => translate('Width'),
259
- 'label_for' => 'fancybox_width',
260
- 'input' => 'text',
261
- 'sanitize_callback' => 'intval',
262
- 'class' => 'small-text',
263
- 'default' => '',
264
- 'description' => ' '
265
- ),
266
- 'height' => array (
267
- 'id' => 'fancybox_height',
268
- 'title' => translate('Height'),
269
- 'label_for' => 'fancybox_height',
270
  'input' => 'text',
271
- 'sanitize_callback' => 'intval',
272
- 'class' => 'small-text',
273
- 'default' => ''
274
- ),
275
- 'padding' => array (
276
- 'id' => 'fancybox_padding',
277
- 'title' => translate('Border'),
278
- 'label_for' => 'fancybox_padding',
279
- 'input' => 'number',
280
- 'step' => '1',
281
- 'min' => '0',
282
- 'max' => '100',
283
- 'sanitize_callback' => 'intval',
284
  'class' => 'small-text',
285
  'default' => '',
286
- 'description' => '<em>' . __('Default:','easy-fancybox') . ' 560 x 340 x 10</em><br />' . __('If content size is not set or cannot be determined automatically, these default dimensions will be used.','easy-fancybox') . '<br />'
287
  ),
288
-
289
- 'p2' => array (
290
  'hide' => true,
291
  'description' => '<br /><strong>' . __('Behavior','easy-fancybox') . '</strong><br />'
292
  ),
293
  'centerOnScroll' => array (
294
  'id' => 'fancybox_centerOnScroll',
295
  'input' => 'checkbox',
296
- 'noquotes' => true,
297
  'default' => '1',
298
  'description' => __('Center while scrolling','easy-fancybox')
299
  ),
300
- 'enableEscapeButton' => array (
301
- 'id' => 'fancybox_enableEscapeButton',
302
  'input' => 'checkbox',
303
- 'noquotes' => true,
304
  'default' => '1',
305
- 'description' => __('Esc key stroke closes FancyBox','easy-fancybox')
306
  ),
307
- 'autoScale' => array (
308
- 'id' => 'fancybox_autoScale',
309
  'input' => 'checkbox',
310
- 'noquotes' => true,
311
  'default' => '1',
312
- 'description' => __('Scale large content down to fit in the browser viewport.','easy-fancybox')
 
 
 
 
313
  ),
314
  'speedIn' => array (
315
  'id' => 'fancybox_speedIn',
316
  'title' => __('Opening speed','easy-fancybox'),
317
  'label_for' => 'fancybox_speedIn',
318
- 'input' => 'number',
319
- 'step' => '1',
320
- 'min' => '0',
321
- 'max' => '6000',
322
- 'sanitize_callback' => 'intval',
323
  'class' => 'small-text',
324
  'default' => '',
325
  ),
@@ -327,100 +269,118 @@ class easyFancyBox_Options extends easyFancyBox {
327
  'id' => 'fancybox_speedOut',
328
  'title' => __('Closing speed','easy-fancybox'),
329
  'label_for' => 'fancybox_speedOut',
330
- 'input' => 'number',
331
- 'step' => '1',
332
- 'min' => '0',
333
- 'max' => '6000',
334
- 'sanitize_callback' => 'intval',
 
 
 
 
335
  'class' => 'small-text',
336
  'default' => '',
337
  'description' => '<br />' . __('Duration in milliseconds. Higher is slower.','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' 300</em><br />'
338
  ),
339
- 'bgColor' => array (
340
- 'id' => 'fancybox_backgroundColor',
341
  'hide' => true,
342
- 'input' => 'hidden',
343
- 'default' => '#fff',
344
  ),
345
- 'pColor' => array (
346
- 'id' => 'fancybox_paddingColor',
347
- 'hide' => true,
348
- 'input' => 'hidden',
349
- 'default' => '#fff'
350
- ),
351
- 'tColor' => array (
352
- 'id' => 'fancybox_textColor',
353
- 'hide' => true,
354
- 'input' => 'hidden',
355
- 'default' => 'inherit'
 
 
 
 
 
356
  ),
357
- 'fOpacity' => array (
358
- 'id' => 'fancybox_frameOpacity',
359
- 'hide' => true,
360
- 'input' => 'hidden',
361
- 'default' => '1.0'
362
  )
363
  )
364
  )
365
 
366
  )
367
  ),
368
-
369
  'IMG' => array(
370
- 'title' => __('Images','easy-fancybox'),
371
  'input' => 'multiple',
372
  'options' => array(
373
  'intro' => array (
374
- 'hide' => true,
375
- 'description' => __('To make images open in an overlay, add their extension to the Autodetect field or use the class "fancybox" for its link. Clear field to switch off all autodetection.','easy-fancybox') . '<br />'
376
- ),
377
- 'tag' => array (
378
- 'hide' => true,
379
- 'default' => 'a.fancybox, area.fancybox, li.fancybox a:not(li.nofancybox a)'
380
  ),
381
- 'class' => array (
382
- 'hide' => true,
383
- 'default' => 'fancybox'
384
- ),
385
- /* 'type' => array (
386
- 'default' => 'image'
387
- ),*/
388
  'autoAttribute' => array (
389
- 'id' => 'fancybox_autoAttribute',
390
- 'title' => __('Autodetect','easy-fancybox'),
391
- 'label_for' => 'fancybox_autoAttribute',
392
- 'input' => 'text',
393
- 'class' => 'regular-text',
394
- 'hide' => true,
395
- 'default' => '.jpg .jpeg .png',
396
- 'selector' => 'href*=',
397
- 'description' => ' <em>' . __('Example:','easy-fancybox') . ' .jpg .jpeg .png .gif</em><br />'
398
  ),
399
  'autoAttributeLimit' => array (
400
- 'id' => 'fancybox_autoAttributeLimit',
401
- 'title' => __('Apply to','easy-fancybox'),
402
- 'label_for' => 'fancybox_autoAttributeLimit',
403
- 'hide' => true,
404
- 'input' => 'select',
405
- 'options' => array(
406
- '' => __('All image links', 'easy-fancybox')
407
- ),
408
- 'default' => '',
409
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />'
 
410
  ),
411
- 'p2' => array (
412
- 'hide' => true,
413
- 'description' => '<br /><strong>' . __('Behavior','easy-fancybox') . '</strong><br />'
 
 
 
 
 
 
 
 
 
 
414
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  'transitionIn' => array (
416
  'id' => 'fancybox_transitionIn',
417
  'title' => __('Transition In','easy-fancybox'),
418
  'label_for' => 'fancybox_transitionIn',
419
  'input' => 'select',
420
  'options' => array(
421
- 'none' => translate('None'),
422
  '' => __('Fade','easy-fancybox'),
423
  'elastic' => __('Elastic','easy-fancybox'),
 
424
  ),
425
  'default' => 'elastic',
426
  'description' => ' '
@@ -433,11 +393,12 @@ class easyFancyBox_Options extends easyFancyBox {
433
  'options' => array(
434
  'linear' => __('Linear','easy-fancybox'),
435
  '' => __('Swing','easy-fancybox'),
436
- 'easeInBack' => __('easeInBack','easy-fancybox'),
437
- 'easeOutBack' => __('easeOutBack','easy-fancybox')
 
438
  ),
439
  'default' => 'easeOutBack',
440
- 'description' => ' <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />'
441
  ),
442
  'transitionOut' => array (
443
  'id' => 'fancybox_transitionOut',
@@ -445,9 +406,9 @@ class easyFancyBox_Options extends easyFancyBox {
445
  'label_for' => 'fancybox_transitionOut',
446
  'input' => 'select',
447
  'options' => array(
448
- 'none' => translate('None'),
449
  '' => __('Fade','easy-fancybox'),
450
  'elastic' => __('Elastic','easy-fancybox'),
 
451
  ),
452
  'default' => 'elastic',
453
  'description' => ' '
@@ -460,34 +421,22 @@ class easyFancyBox_Options extends easyFancyBox {
460
  'options' => array(
461
  'linear' => __('Linear','easy-fancybox'),
462
  '' => __('Swing','easy-fancybox'),
463
- 'easeInBack' => __('easeInBack','easy-fancybox'),
464
- 'easeOutBack' => __('easeOutBack','easy-fancybox')
 
465
  ),
466
  'default' => 'easeInBack',
467
- 'description' => ' <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />' . __('Note:','easy-fancybox') . ' ' . __('Easing effects only apply when Transition is set to Elastic. ','easy-fancybox') . '<br /><br />'
468
  ),
469
  'opacity' => array (
470
  'id' => 'fancybox_opacity',
471
  'input' => 'checkbox',
472
- 'noquotes' => true,
473
- 'default' => '',
474
- 'description' => __('Transparency fade during elastic transition. CAUTION: Use only when at least Transition In is set to Elastic!','easy-fancybox')
475
- ),
476
- 'hideOnContentClick' => array (
477
- 'id' => 'fancybox_hideOnContentClick',
478
- 'input' => 'checkbox',
479
- 'noquotes' => true,
480
  'default' => '',
481
- 'description' => __('Close FancyBox when content is clicked','easy-fancybox')
482
- ),
483
- 'p1' => array (
484
- 'hide' => true,
485
- 'description' => '<br /><strong>' . __('Appearance','easy-fancybox') . '</strong><br />'
486
  ),
487
  'titleShow' => array (
488
  'id' => 'fancybox_titleShow',
489
  'input' => 'checkbox',
490
- 'noquotes' => true,
491
  'default' => '1',
492
  'description' => __('Show title','easy-fancybox')
493
  ),
@@ -497,7 +446,7 @@ class easyFancyBox_Options extends easyFancyBox {
497
  'label_for' => 'fancybox_titlePosition',
498
  'input' => 'select',
499
  'options' => array(
500
- '' => __('Float','easy-fancybox'),
501
  'outside' => __('Outside','easy-fancybox'),
502
  'inside' => __('Inside','easy-fancybox'),
503
  'over' => __('Overlay','easy-fancybox')
@@ -508,111 +457,10 @@ class easyFancyBox_Options extends easyFancyBox {
508
  'titleFromAlt' => array (
509
  'id' => 'fancybox_titleFromAlt',
510
  'input' => 'checkbox',
511
- 'noquotes' => true,
512
  'default' => '1',
513
  'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
514
  ),
515
- 'onStart' => array (
516
- 'id' => '',
517
- 'title' => __('Advanced','easy-fancybox'),
518
- 'input' => 'select',
519
- 'status' => 'disabled',
520
- 'options' => array(
521
- '' => __('Hide/show title on mouse hover action','easy-fancybox')
522
- ),
523
- 'default' => '',
524
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em><br />'
525
- ),
526
- 'p3' => array (
527
- 'hide' => true,
528
- 'description' => '<br /><strong>' . __('Gallery','easy-fancybox') . '</strong><br />'
529
- ),
530
- 'autoGallery' => array (
531
- 'id' => 'fancybox_autoGallery',
532
- 'title' => __('Autogallery','easy-fancybox'),
533
- 'label_for' => 'fancybox_autoGallery',
534
- 'hide' => true,
535
- 'input' => 'select',
536
- 'options' => array(
537
- '' => translate('Disabled'),
538
- '1' => __('WordPress galleries only','easy-fancybox'),
539
- '2' => __('All in one gallery','easy-fancybox')
540
- ),
541
- 'default' => '1',
542
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />' . __('Note:','easy-fancybox') . ' ' . __('When disabled, you can use the rel attribute to manually group image links together.','easy-fancybox') . '<br /><br />'
543
- ),
544
- 'showNavArrows' => array (
545
- 'id' => 'fancybox_showNavArrows',
546
- 'input' => 'checkbox',
547
- 'noquotes' => true,
548
- 'default' => '1',
549
- 'description' => __('Show the gallery navigation arrows','easy-fancybox')
550
- ),
551
- 'enableKeyboardNav' => array (
552
- 'id' => 'fancybox_enableKeyboardNav',
553
- 'input' => 'checkbox',
554
- 'noquotes' => true,
555
- 'default' => '1',
556
- 'description' => __('Arrow key strokes browse the gallery','easy-fancybox')
557
- ),
558
- 'mouseWheel' => array (
559
- 'id' => 'fancybox_mouseWheel',
560
- 'hide' => true,
561
- 'input' => 'checkbox',
562
- 'default' => '1',
563
- 'description' => __('Include the Mousewheel jQuery extension script to allow gallery browsing by mousewheel action.','easy-fancybox')
564
- ),
565
- 'cyclic' => array (
566
- 'id' => 'fancybox_cyclic',
567
- 'input' => 'checkbox',
568
- 'noquotes' => true,
569
- 'default' => '',
570
- 'description' => __('Make galleries cyclic, allowing you to keep pressing next/back.','easy-fancybox')
571
- ),
572
- 'changeSpeed' => array (
573
- 'id' => 'fancybox_changeSpeed',
574
- 'title' => __('Change speed','easy-fancybox'),
575
- 'label_for' => 'fancybox_changeSpeed',
576
- 'input' => 'number',
577
- 'step' => '1',
578
- 'min' => '0',
579
- 'max' => '6000',
580
- 'sanitize_callback' => 'intval',
581
- 'class' => 'small-text',
582
- 'default' => '',
583
- ),
584
- 'changeFade' => array (
585
- 'id' => 'fancybox_changeFade',
586
- 'title' => __('Fade speed','easy-fancybox'),
587
- 'label_for' => 'fancybox_changeFade',
588
- 'input' => 'number',
589
- 'step' => '1',
590
- 'min' => '0',
591
- 'max' => '6000',
592
- 'sanitize_callback' => 'intval',
593
- 'class' => 'small-text',
594
- 'default' => '',
595
- 'description' => '<br />' . __('Duration in milliseconds. Higher is slower.','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' 300</em><br /><br />'
596
- ),
597
- 'autoSelector' => array (
598
- 'id' => 'fancybox_autoSelector',
599
- 'hide' => true,
600
- 'input' => 'hidden',
601
- 'default' => 'div.gallery ', // add div.tiled-gallery for Tiled Galleries support
602
- 'translations' => __('Galleries per Section (below)','easy-fancybox') . __('This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme.','easy-fancybox') . __('Examples: If your theme wraps post content in a div with class post, change this value to "div.post". If you only want to group images in a WordPress gallery together, use "div.gallery". If you want to include images in a sidebar with ID primary, add ", #primary".','easy-fancybox') . __('Hide/show title on mouse hover action works best with Overlay title position.','easy-fancybox') . __('Auto-rotation uses a fixed 3, 6, 9 or 12 second pause per image.','easy-fancybox') . __('(3 seconds)','easy-fancybox') . __('(6 seconds)','easy-fancybox') . __('(9 seconds)','easy-fancybox') . __('(12 seconds)','easy-fancybox')
603
- ),
604
- 'onComplete' => array (
605
- 'id' => '',
606
- 'title' => __('Advanced','easy-fancybox'),
607
- 'input' => 'select',
608
- 'status' => 'disabled',
609
- 'options' => array(
610
- '' => __('Slideshow','easy-fancybox')
611
- ),
612
- 'default' => '',
613
- 'description' => '<em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('Make available &raquo;','easy-fancybox') . '</a></em>'
614
- ),
615
- /* 'titleFormat' => array (
616
  'id' => 'fancybox_titleFormat',
617
  'title' => __('Title format','easy-fancybox'),
618
  'label_for' => 'fancybox_titleFormat',
@@ -626,115 +474,13 @@ class easyFancyBox_Options extends easyFancyBox {
626
  'default' => '',
627
  'description' => '<br />' . __('To improve Lightbox2 style disable Show close button and set titleposition to Inside or Outside','easy-fancybox') . '<br />'
628
  ),*/
629
- )
630
- ),
631
-
632
- 'Inline' => array(
633
- 'title' => __('Inline content','easy-fancybox'),
634
- 'input' => 'multiple',
635
- 'options' => array(
636
- 'intro' => array (
637
- 'hide' => true,
638
- 'description' => __('To make inline content open in an overlay, wrap that content in a div with a unique ID, create a link with target "#uniqueID" and give it a class "fancybox-inline" attribute.','easy-fancybox') . '<br /><br />'
639
- ),
640
  'tag' => array (
641
- 'hide' => true,
642
- 'default' => 'a.fancybox-inline, area.fancybox-inline, li.fancybox-inline a:not(li.nofancybox-inline a)'
643
  ),
644
  'class' => array (
645
- 'hide' => true,
646
- 'default' => 'fancybox-inline'
647
- ),
648
- 'type' => array (
649
- 'default' => 'inline'
650
- ),
651
- 'autoDimensions' => array (
652
- 'id' => 'fancybox_autoDimensions',
653
- 'input' => 'checkbox',
654
- 'noquotes' => true,
655
- 'default' => '1',
656
- 'description' => __('Try to adjust size to inline/html content. If unchecked or size cannot be determined, the default dimensions will be used.','easy-fancybox') . ''
657
- ),
658
- 'scrolling' => array (
659
- 'id' => 'fancybox_InlineScrolling',
660
- 'title' => __('Scrolling','easy-fancybox'),
661
- 'label_for' => 'fancybox_InlineScrolling',
662
- 'input' => 'select',
663
- 'options' => array(
664
- 'auto' => __('Auto','easy-fancybox'),
665
- 'yes' => __('Always','easy-fancybox'),
666
- 'no' => __('Never','easy-fancybox')
667
- ),
668
- 'default' => 'no',
669
- 'description' => __('Define scrolling and scrollbar visibility.','easy-fancybox') . '<br /><br />'
670
- ),
671
- 'transitionIn' => array (
672
- 'id' => 'fancybox_transitionInInline',
673
- 'title' => __('Transition In','easy-fancybox'),
674
- 'label_for' => 'fancybox_transitionInInline',
675
- 'input' => 'select',
676
- 'options' => array(
677
- 'none' => translate('None'),
678
- '' => __('Fade','easy-fancybox'),
679
- 'elastic' => __('Elastic','easy-fancybox'),
680
- ),
681
- 'default' => '',
682
- 'description' => ' '
683
- ),
684
- 'easingIn' => array (
685
- 'id' => 'fancybox_easingInInline',
686
- 'title' => __('Easing In','easy-fancybox'),
687
- 'label_for' => 'fancybox_easingInInline',
688
- 'input' => 'select',
689
- 'options' => array(
690
- 'linear' => __('Linear','easy-fancybox'),
691
- '' => __('Swing','easy-fancybox'),
692
- 'easeInBack' => __('easeInBack','easy-fancybox'),
693
- 'easeOutBack' => __('easeOutBack','easy-fancybox')
694
- ),
695
- 'default' => 'easeOutBack',
696
- 'description' => ' <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />'
697
- ),
698
- 'transitionOut' => array (
699
- 'id' => 'fancybox_transitionOutInline',
700
- 'title' => __('Transition Out','easy-fancybox'),
701
- 'label_for' => 'fancybox_transitionOutInline',
702
- 'input' => 'select',
703
- 'options' => array(
704
- 'none' => translate('None'),
705
- '' => __('Fade','easy-fancybox'),
706
- 'elastic' => __('Elastic','easy-fancybox'),
707
- ),
708
- 'default' => '',
709
- 'description' => ' '
710
- ),
711
- 'easingOut' => array (
712
- 'id' => 'fancybox_easingOutInline',
713
- 'title' => __('Easing Out','easy-fancybox'),
714
- 'label_for' => 'fancybox_easingOutInline',
715
- 'input' => 'select',
716
- 'options' => array(
717
- 'linear' => __('Linear','easy-fancybox'),
718
- '' => __('Swing','easy-fancybox'),
719
- 'easeInBack' => __('easeInBack','easy-fancybox'),
720
- 'easeOutBack' => __('easeOutBack','easy-fancybox')
721
- ),
722
- 'default' => 'easeInBack',
723
- 'description' => ' <em><a href="http://status301.net/wordpress-plugins/easy-fancybox-pro/">' . __('More options &raquo;','easy-fancybox') . '</a></em><br />' . __('Note:','easy-fancybox') . ' ' . __('Easing effects only apply when Transition is set to Elastic. ','easy-fancybox') . '<br /><br />'
724
- ),
725
- 'opacity' => array (
726
- 'id' => 'fancybox_opacityInline',
727
- 'input' => 'checkbox',
728
- 'noquotes' => true,
729
- 'default' => '',
730
- 'description' => __('Transparency fade during elastic transition. CAUTION: Use only when at least Transition In is set to Elastic!','easy-fancybox')
731
- ),
732
- 'hideOnContentClick' => array (
733
- 'id' => 'fancybox_hideOnContentClickInline',
734
- 'input' => 'checkbox',
735
- 'noquotes' => true,
736
- 'default' => '',
737
- 'description' => __('Close FancyBox when content is clicked','easy-fancybox')
738
  )
739
  )
740
  ),
@@ -744,122 +490,114 @@ class easyFancyBox_Options extends easyFancyBox {
744
  'input' => 'multiple',
745
  'options' => array(
746
  'intro' => array (
747
- 'hide' => true,
748
- 'description' => __('To make any PDF document file open in an overlay, switch on Autodetect or use the class "fancybox-pdf" for its link.','easy-fancybox') . '<br />'
749
  ),
750
  'autoAttribute' => array (
751
- 'id' => 'fancybox_autoAttributePDF',
752
- 'input' => 'checkbox',
753
- 'hide' => true,
754
- 'default' => '1',
755
- 'selector' => 'href*=".pdf"',
756
- 'description' => __('Autodetect','easy-fancybox') . '<br />'
757
  ),
758
  'tag' => array (
759
- 'hide' => true,
760
- 'default' => 'a.fancybox-pdf, area.fancybox-pdf, li.fancybox-pdf a:not(li.nofancybox a)'
761
  ),
762
  'class' => array (
763
- 'hide' => true,
764
- 'default' => 'fancybox-pdf'
765
  ),
766
  'type' => array (
767
- 'default' => 'html'
768
  ),
769
  'width' => array (
770
- 'id' => 'fancybox_PDFwidth',
771
- 'title' => translate('Width'),
772
- 'label_for' => 'fancybox_PDFwidth',
773
- 'input' => 'text',
774
- 'sanitize_callback' => 'intval',
775
- 'class' => 'small-text',
776
- 'default' => '90%',
777
- 'description' => ' '
778
  ),
779
  'height' => array (
780
- 'id' => 'fancybox_PDFheight',
781
- 'title' => translate('Height'),
782
- 'label_for' => 'fancybox_PDFheight',
783
- 'input' => 'text',
784
- 'sanitize_callback' => 'intval',
785
- 'class' => 'small-text',
786
- 'default' => '90%'
787
  ),
788
  'padding' => array (
789
- 'id' => 'fancybox_PDFpadding',
790
- 'title' => translate('Border'),
791
- 'label_for' => 'fancybox_PDFpadding',
792
- 'input' => 'number',
793
- 'step' => '1',
794
- 'min' => '0',
795
- 'max' => '100',
796
- 'sanitize_callback' => 'intval',
797
- 'class' => 'small-text',
798
- 'default' => '10',
799
- 'description' => '<br /><br />'
800
  ),
801
- /* 'autoScale' => array (
802
- 'noquotes' => true,
803
- 'default' => 'false'
804
- ),*/
805
  'titleShow' => array (
806
- 'id' => 'fancybox_PDFtitleShow',
807
- 'input' => 'checkbox',
808
- 'noquotes' => true,
809
- 'default' => '',
810
- 'description' => __('Show title','easy-fancybox')
811
  ),
812
  'titlePosition' => array (
813
- 'id' => 'fancybox_PDFtitlePosition',
814
- 'title' => __('Title Position','easy-fancybox'),
815
- 'label_for' => 'fancybox_PDFtitlePosition',
816
- 'input' => 'select',
817
- 'options' => array(
818
- 'float' => __('Float','easy-fancybox'),
819
- 'outside' => __('Outside','easy-fancybox'),
820
- 'inside' => __('Inside','easy-fancybox')
821
- ),
822
- 'default' => 'float',
 
823
  ),
824
  'titleFromAlt' => array (
825
- 'id' => 'fancybox_PDFtitleFromAlt',
826
- 'input' => 'checkbox',
827
- 'noquotes' => true,
828
- 'default' => '1',
829
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
830
  ),
831
  /* 'transitionOut' => array (
832
- 'id' => 'fancybox_PDFtransitionOut',
833
- 'title' => __('Transition Out','easy-fancybox'),
834
- 'label_for' => 'fancybox_PDFtransitionOut',
835
- 'input' => 'select',
836
- 'class' => '',
837
- 'options' => array(
838
- 'fade' => __('Fade','easy-fancybox'),
839
- //'elastic' => __('Elastic','easy-fancybox'),
840
- 'none' => translate('None')
841
- ),
842
- 'default' => 'fade',
843
  ),
844
  'easingIn' => array (
845
- 'default' => 'swing'
846
  ),*/
847
  'autoDimensions' => array (
848
- 'noquotes' => true,
849
- 'default' => 'false'
850
  ),
851
  'scrolling' => array (
852
- 'default' => 'no',
853
  ),
854
  'onStart' => array (
855
- 'noquotes' => true,
856
- // 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = \'<embed src="\' + selectedArray[selectedIndex].href + \'#nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%" />\' }'
857
- // 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = \'<object data="\' + selectedArray[selectedIndex].href + \'#toolbar=1&navpanes=0&nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%"><param name="src" value="\' + selectedArray[selectedIndex].href + \'#toolbar=1&navpanes=0&nameddest=self&page=1&view=FitH,0&zoom=80,0,0" /><embed src="\' + selectedArray[selectedIndex].href + \'#toolbar=1&navpanes=0&nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%" /><a href="\' + selectedArray[selectedIndex].href + \'" style="display:block;font-size:18px;position:absolute;top:50%;width:100%;text-align:center">\' + jQuery(selectedArray[selectedIndex]).html() + \'</a></object>\' }'
858
- 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = \'<embed src="\' + selectedArray[selectedIndex].href + \'#toolbar=1&navpanes=0&nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%" />\' }'
859
  ),
860
  /* 'onClosed' => array (
861
- 'noquotes' => true,
862
- 'default' => 'function() { $("#fancybox-content").empty(); }'
863
  )*/
864
  )
865
  ),
@@ -869,186 +607,88 @@ class easyFancyBox_Options extends easyFancyBox {
869
  'input' => 'multiple',
870
  'options' => array(
871
  'intro' => array (
872
- 'hide' => true,
873
- 'description' => __('To make any Flash (.swf) file open in an overlay, switch on Autodetect or use the class "fancybox-swf" for its link.','easy-fancybox') . '<br />'
874
  ),
875
  'autoAttribute' => array (
876
- 'id' => 'fancybox_autoAttributeSWF',
877
- 'input' => 'checkbox',
878
- 'hide' => true,
879
- 'default' => '1',
880
- 'selector' => 'href*=".swf"',
881
- 'description' => __('Autodetect','easy-fancybox') . '<br />'
882
  ),
883
  'tag' => array (
884
- 'hide' => true,
885
- 'default' => 'a.fancybox-swf, area.fancybox-swf, li.fancybox-swf a:not(li.nofancybox a)'
886
  ),
887
  'class' => array (
888
- 'hide' => true,
889
- 'default' => 'fancybox-swf'
890
  ),
891
  'type' => array(
892
- 'default' => 'swf'
893
  ),
894
  'width' => array (
895
- 'id' => 'fancybox_SWFWidth',
896
- 'title' => translate('Width'),
897
- 'label_for' => 'fancybox_SWFWidth',
898
- 'input' => 'text',
899
- 'sanitize_callback' => 'intval',
900
- 'class' => 'small-text',
901
- 'options' => array(),
902
- 'default' => '680',
903
- 'description' => ' '
904
  ),
905
  'height' => array (
906
- 'id' => 'fancybox_SWFHeight',
907
- 'title' => translate('Height'),
908
- 'label_for' => 'fancybox_SWFHeight',
909
- 'input' => 'text',
910
- 'sanitize_callback' => 'intval',
911
- 'class' => 'small-text',
912
- 'options' => array(),
913
- 'default' => '495',
914
  ),
915
  'padding' => array (
916
- 'id' => 'fancybox_SWFpadding',
917
- 'title' => translate('Border'),
918
- 'label_for' => 'fancybox_SWFpadding',
919
- 'input' => 'number',
920
- 'step' => '1',
921
- 'min' => '0',
922
- 'max' => '100',
923
- 'sanitize_callback' => 'intval',
924
- 'class' => 'small-text',
925
- 'default' => '0',
926
- 'description' => '<br /><br />'
927
  ),
928
  'titleShow' => array (
929
- 'id' => 'fancybox_SWFtitleShow',
930
- 'input' => 'checkbox',
931
- 'noquotes' => true,
932
- 'default' => '',
933
- 'description' => __('Show title','easy-fancybox')
934
  ),
935
  'titlePosition' => array (
936
- 'id' => 'fancybox_SWFtitlePosition',
937
- 'title' => __('Title Position','easy-fancybox'),
938
- 'label_for' => 'fancybox_SWFtitlePosition',
939
- 'input' => 'select',
940
- 'options' => array(
941
- 'float' => __('Float','easy-fancybox'),
942
- 'outside' => __('Outside','easy-fancybox'),
943
- 'inside' => __('Inside','easy-fancybox')
944
- ),
945
- 'default' => 'float',
 
946
  ),
947
  'titleFromAlt' => array (
948
- 'id' => 'fancybox_SWFtitleFromAlt',
949
- 'input' => 'checkbox',
950
- 'noquotes' => true,
951
- 'default' => '1',
952
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
953
  ),
954
  'swf' => array (
955
- 'noquotes' => true,
956
- 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
957
- )
958
- )
959
- ),
960
-
961
- 'SVG' => array(
962
- 'title' => __('SVG','easy-fancybox'),
963
- 'input' => 'multiple',
964
- 'options' => array(
965
- 'intro' => array (
966
- 'hide' => true,
967
- 'description' => __('To make any SVG (.svg) file open in an overlay, switch on Autodetect or use the class "fancybox-svg" for its link.','easy-fancybox') . '<br />'
968
- ),
969
- 'autoAttribute' => array (
970
- 'id' => 'fancybox_autoAttributeSVG',
971
- 'input' => 'checkbox',
972
- 'hide' => true,
973
- 'default' => '1',
974
- 'selector' => 'href$=".svg"',
975
- 'description' => __('Autodetect','easy-fancybox') . '<br />'
976
- ),
977
- 'tag' => array (
978
- 'hide' => true,
979
- 'default' => 'a.fancybox-svg, area.fancybox-svg, li.fancybox-svg a:not(li.nofancybox a)'
980
- ),
981
- 'class' => array (
982
- 'hide' => true,
983
- 'default' => 'fancybox-svg'
984
- ),
985
- 'type' => array(
986
- 'default' => 'svg'
987
- ),
988
- 'width' => array (
989
- 'id' => 'fancybox_SVGWidth',
990
- 'title' => translate('Width'),
991
- 'label_for' => 'fancybox_SVGWidth',
992
- 'input' => 'text',
993
- 'sanitize_callback' => 'intval',
994
- 'class' => 'small-text',
995
- 'options' => array(),
996
- 'default' => '680',
997
- 'description' => ' '
998
- ),
999
- 'height' => array (
1000
- 'id' => 'fancybox_SVGHeight',
1001
- 'title' => translate('Height'),
1002
- 'label_for' => 'fancybox_SVGHeight',
1003
- 'input' => 'text',
1004
- 'sanitize_callback' => 'intval',
1005
- 'class' => 'small-text',
1006
- 'options' => array(),
1007
- 'default' => '495',
1008
- ),
1009
- 'padding' => array (
1010
- 'id' => 'fancybox_SVGpadding',
1011
- 'title' => translate('Border'),
1012
- 'label_for' => 'fancybox_SVGpadding',
1013
- 'input' => 'number',
1014
- 'step' => '1',
1015
- 'min' => '0',
1016
- 'max' => '100',
1017
- 'sanitize_callback' => 'intval',
1018
- 'class' => 'small-text',
1019
- 'default' => '0',
1020
- 'description' => '<br /><br />'
1021
- ),
1022
- 'titleShow' => array (
1023
- 'id' => 'fancybox_SVGtitleShow',
1024
- 'input' => 'checkbox',
1025
- 'noquotes' => true,
1026
- 'default' => '',
1027
- 'description' => __('Show title','easy-fancybox')
1028
- ),
1029
- 'titlePosition' => array (
1030
- 'id' => 'fancybox_SVGtitlePosition',
1031
- 'title' => __('Title Position','easy-fancybox'),
1032
- 'label_for' => 'fancybox_SVGtitlePosition',
1033
- 'input' => 'select',
1034
- 'options' => array(
1035
- 'float' => __('Float','easy-fancybox'),
1036
- 'outside' => __('Outside','easy-fancybox'),
1037
- 'inside' => __('Inside','easy-fancybox')
1038
- //,'over' => __('Overlay','easy-fancybox')
1039
- ),
1040
- 'default' => 'float',
1041
- ),
1042
- 'titleFromAlt' => array (
1043
- 'id' => 'fancybox_SVGtitleFromAlt',
1044
- 'input' => 'checkbox',
1045
- 'noquotes' => true,
1046
- 'default' => '1',
1047
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
1048
- ),
1049
- 'svg' => array (
1050
- 'noquotes' => true,
1051
- 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
1052
  )
1053
  )
1054
  ),
@@ -1058,105 +698,100 @@ class easyFancyBox_Options extends easyFancyBox {
1058
  'input' => 'multiple',
1059
  'options' => array(
1060
  'intro' => array (
1061
- 'hide' => true,
1062
- 'description' => __('To make any YouTube movie open in an overlay, switch on Autodetect or use the class "fancybox-youtube" for its link.','easy-fancybox') . '<br />'
1063
  ),
1064
  'autoAttribute' => array (
1065
- 'id' => 'fancybox_autoAttributeYoutube',
1066
- 'input' => 'checkbox',
1067
- 'hide' => true,
1068
- 'default' => '1',
1069
- 'selector' => 'href*="youtube.com/watch"',
1070
- //'href-replace' => "return attr.replace(new RegExp('watch\\\?v=', 'i'), 'v/')",
1071
- 'description' => __('Autodetect','easy-fancybox')
1072
  ),
1073
  'autoAttributeAlt' => array (
1074
- 'id' => 'fancybox_autoAttributeYoutubeShortURL',
1075
- 'input' => 'checkbox',
1076
- 'hide' => true,
1077
- 'default' => '1',
1078
- 'selector' => 'href*="youtu.be/"',
1079
- //'href-replace' => "return attr.replace(new RegExp('youtu.be', 'i'), 'www.youtube.com/v')",
1080
- 'description' => __('Autodetect Short links','easy-fancybox') . '<br />'
1081
  ),
1082
  'tag' => array (
1083
- 'hide' => true,
1084
- 'default' => 'a.fancybox-youtube, area.fancybox-youtube, li.fancybox-youtube a:not(li.nofancybox a)'
1085
  ),
1086
  'class' => array (
1087
- 'hide' => true,
1088
- 'default' => 'fancybox-youtube'
1089
  ),
1090
  'type' => array(
1091
- 'default' => 'iframe'
1092
  ),
1093
  'width' => array (
1094
- 'id' => 'fancybox_YoutubeWidth',
1095
- 'title' => translate('Width'),
1096
- 'label_for' => 'fancybox_YoutubeWidth',
1097
- 'input' => 'number',
1098
- 'step' => '1',
1099
- 'min' => '420',
1100
- 'max' => '1500',
1101
- 'sanitize_callback' => 'intval',
1102
- 'class' => 'small-text',
1103
- 'default' => '640',
1104
- 'description' => ' '
1105
  ),
1106
  'height' => array (
1107
- 'id' => 'fancybox_YoutubeHeight',
1108
- 'title' => translate('Height'),
1109
- 'label_for' => 'fancybox_YoutubeHeight',
1110
- 'input' => 'number',
1111
- 'step' => '1',
1112
- 'min' => '315',
1113
- 'max' => '900',
1114
- 'sanitize_callback' => 'intval',
1115
- 'class' => 'small-text',
1116
- 'default' => '360',
1117
  ),
1118
  'padding' => array (
1119
- 'id' => 'fancybox_Youtubepadding',
1120
- 'title' => translate('Border'),
1121
- 'label_for' => 'fancybox_Youtubepadding',
1122
- 'input' => 'number',
1123
- 'step' => '1',
1124
- 'min' => '0',
1125
- 'max' => '100',
1126
- 'sanitize_callback' => 'intval',
1127
- 'class' => 'small-text',
1128
- 'default' => '0',
1129
- 'description' => '<br /><br />'
1130
  ),
1131
  'titleShow' => array (
1132
- 'id' => 'fancybox_YoutubetitleShow',
1133
- 'input' => 'checkbox',
1134
- 'noquotes' => true,
1135
- 'default' => '',
1136
- 'description' => __('Show title','easy-fancybox')
1137
  ),
1138
  'titlePosition' => array (
1139
- 'id' => 'fancybox_YoutubetitlePosition',
1140
- 'title' => __('Title Position','easy-fancybox'),
1141
- 'label_for' => 'fancybox_YoutubetitlePosition',
1142
- 'input' => 'select',
1143
- 'options' => array(
1144
- 'float' => __('Float','easy-fancybox'),
1145
- 'outside' => __('Outside','easy-fancybox'),
1146
- 'inside' => __('Inside','easy-fancybox')
1147
- ),
1148
- 'default' => 'float',
 
1149
  ),
1150
  'titleFromAlt' => array (
1151
- 'id' => 'fancybox_YoutubetitleFromAlt',
1152
- 'input' => 'checkbox',
1153
- 'noquotes' => true,
1154
- 'default' => '1',
1155
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
1156
- ),
 
 
 
1157
  'onStart' => array (
1158
- 'noquotes' => true,
1159
- 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'youtu.be\', \'i\'), \'www.youtube.com/embed\').replace(new RegExp(\'watch\\\?(.*)v=([a-z0-9\_\-]+)(&|\\\?)?(.*)\', \'i\'), \'embed/$2?$1$4\') }'
1160
  )
1161
  )
1162
  ),
@@ -1166,96 +801,91 @@ class easyFancyBox_Options extends easyFancyBox {
1166
  'input' => 'multiple',
1167
  'options' => array(
1168
  'intro' => array (
1169
- 'hide' => true,
1170
- 'description' => __('To make any Vimeo movie open in an overlay, switch on Autodetect or use the class "fancybox-vimeo" for its link.','easy-fancybox') . '<br />'
1171
  ),
1172
  'autoAttribute' => array (
1173
- 'id' => 'fancybox_autoAttributeVimeo',
1174
- 'input' => 'checkbox',
1175
- 'hide' => true,
1176
- 'default' => '1',
1177
- 'selector' => 'href*="vimeo.com/"',
1178
- //'href-replace' => "return attr.replace(new RegExp('/([0-9])', 'i'), '/moogaloop.swf?clip_id=$1')",
1179
- 'description' => __('Autodetect','easy-fancybox') . '<br />'
1180
  ),
1181
  'tag' => array (
1182
- 'hide' => true,
1183
- 'default' => 'a.fancybox-vimeo, area.fancybox-vimeo, li.fancybox-vimeo a:not(li.nofancybox a)'
1184
  ),
1185
  'class' => array (
1186
- 'hide' => true,
1187
- 'default' => 'fancybox-vimeo'
1188
  ),
1189
  'type' => array(
1190
- 'default' => 'iframe'
1191
  ),
1192
  'width' => array (
1193
  'id' => 'fancybox_VimeoWidth',
1194
- 'title' => translate('Width'),
1195
  'label_for' => 'fancybox_VimeoWidth',
1196
- 'input' => 'number',
1197
- 'step' => '1',
1198
- 'min' => '400',
1199
- 'max' => '1500',
1200
- 'sanitize_callback' => 'intval',
1201
  'class' => 'small-text',
1202
- 'default' => '500',
1203
  'description' => ' '
1204
  ),
1205
  'height' => array (
1206
- 'id' => 'fancybox_VimeoHeight',
1207
- 'title' => translate('Height'),
1208
- 'label_for' => 'fancybox_VimeoHeight',
1209
- 'input' => 'number',
1210
- 'step' => '1',
1211
- 'min' => '225',
1212
- 'max' => '900',
1213
- 'sanitize_callback' => 'intval',
1214
- 'class' => 'small-text',
1215
- 'default' => '281'
1216
  ),
1217
  'padding' => array (
1218
- 'id' => 'fancybox_Vimeopadding',
1219
- 'title' => translate('Border'),
1220
- 'label_for' => 'fancybox_Vimeopadding',
1221
- 'input' => 'number',
1222
- 'step' => '1',
1223
- 'min' => '0',
1224
- 'max' => '100',
1225
- 'sanitize_callback' => 'intval',
1226
- 'class' => 'small-text',
1227
- 'default' => '0',
1228
- 'description' => '<br /><br />'
1229
  ),
1230
  'titleShow' => array (
1231
- 'id' => 'fancybox_VimeotitleShow',
1232
- 'input' => 'checkbox',
1233
- 'noquotes' => true,
1234
- 'default' => '',
1235
- 'description' => __('Show title','easy-fancybox')
1236
  ),
1237
  'titlePosition' => array (
1238
- 'id' => 'fancybox_VimeotitlePosition',
1239
- 'title' => __('Title Position','easy-fancybox'),
1240
- 'label_for' => 'fancybox_VimeotitlePosition',
1241
- 'input' => 'select',
1242
- 'options' => array(
1243
- 'float' => __('Float','easy-fancybox'),
1244
- 'outside' => __('Outside','easy-fancybox'),
1245
- 'inside' => __('Inside','easy-fancybox')
1246
- ),
1247
- 'default' => 'float',
 
1248
  ),
1249
  'titleFromAlt' => array (
1250
- 'id' => 'fancybox_VimeotitleFromAlt',
1251
- 'input' => 'checkbox',
1252
- 'noquotes' => true,
1253
- 'default' => '1',
1254
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
1255
- ),
 
 
 
1256
  'onStart' => array (
1257
- 'noquotes' => true,
1258
- 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'http://(www\\.)?vimeo\\.com/([0-9]+)(&|\\\?)?(.*)\', \'i\'), \'http://player.vimeo.com/video/$2?$4\') }'
1259
  )
1260
  )
1261
  ),
@@ -1266,96 +896,91 @@ class easyFancyBox_Options extends easyFancyBox {
1266
  'input' => 'multiple',
1267
  'options' => array(
1268
  'intro' => array (
1269
- 'hide' => true,
1270
- 'description' => __('To make any Dailymotion movie open in an overlay, switch on Autodetect or use the class "fancybox-dailymotion" for its link.','easy-fancybox') . '<br />'
1271
  ),
1272
  'autoAttribute' => array (
1273
- 'id' => 'fancybox_autoAttributeDailymotion',
1274
- 'input' => 'checkbox',
1275
- 'hide' => true,
1276
- 'default' => '1',
1277
- 'selector' => 'href*="dailymotion.com/"',
1278
- //'href-replace' => "return attr.replace(new RegExp('/video/', 'i'), '/swf/')",
1279
- 'description' => __('Autodetect','easy-fancybox') . '<br />'
1280
  ),
1281
  'tag' => array (
1282
- 'hide' => true,
1283
- 'default' => 'a.fancybox-dailymotion, area.fancybox-dailymotion, li.fancybox-dailymotion a:not(li.nofancybox a)'
1284
  ),
1285
  'class' => array (
1286
- 'hide' => true,
1287
- 'default' => 'fancybox-dailymotion'
1288
  ),
1289
  'type' => array(
1290
- 'default' => 'iframe'
1291
  ),
1292
  'width' => array (
1293
  'id' => 'fancybox_DailymotionWidth',
1294
- 'title' => translate('Width'),
1295
  'label_for' => 'fancybox_DailymotionWidth',
1296
- 'input' => 'number',
1297
- 'step' => '1',
1298
- 'min' => '320',
1299
- 'max' => '1500',
1300
- 'sanitize_callback' => 'intval',
1301
  'class' => 'small-text',
1302
  'default' => '560',
1303
  'description' => ' '
1304
  ),
1305
  'height' => array (
1306
- 'id' => 'fancybox_DailymotionHeight',
1307
- 'title' => translate('Height'),
1308
- 'label_for' => 'fancybox_DailymotionHeight',
1309
- 'input' => 'number',
1310
- 'step' => '1',
1311
- 'min' => '180',
1312
- 'max' => '900',
1313
- 'sanitize_callback' => 'intval',
1314
- 'class' => 'small-text',
1315
- 'default' => '315'
1316
  ),
1317
  'padding' => array (
1318
- 'id' => 'fancybox_DailymotionPadding',
1319
- 'title' => translate('Border'),
1320
- 'label_for' => 'fancybox_DailymotionPadding',
1321
- 'input' => 'number',
1322
- 'step' => '1',
1323
- 'min' => '0',
1324
- 'max' => '100',
1325
- 'sanitize_callback' => 'intval',
1326
- 'class' => 'small-text',
1327
- 'default' => '0',
1328
- 'description' => '<br /><br />'
1329
  ),
1330
  'titleShow' => array (
1331
- 'id' => 'fancybox_DailymotiontitleShow',
1332
- 'input' => 'checkbox',
1333
- 'noquotes' => true,
1334
- 'default' => '',
1335
- 'description' => __('Show title','easy-fancybox')
1336
  ),
1337
  'titlePosition' => array (
1338
- 'id' => 'fancybox_DailymotiontitlePosition',
1339
- 'title' => __('Title Position','easy-fancybox'),
1340
- 'label_for' => 'fancybox_DailymotiontitlePosition',
1341
- 'input' => 'select',
1342
- 'options' => array(
1343
- 'float' => __('Float','easy-fancybox'),
1344
- 'outside' => __('Outside','easy-fancybox'),
1345
- 'inside' => __('Inside','easy-fancybox')
1346
- ),
1347
- 'default' => 'float',
 
1348
  ),
1349
  'titleFromAlt' => array (
1350
- 'id' => 'fancybox_DailymotiontitleFromAlt',
1351
- 'input' => 'checkbox',
1352
- 'noquotes' => true,
1353
- 'default' => '1',
1354
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
1355
- ),
 
 
 
1356
  'onStart' => array (
1357
- 'noquotes' => true,
1358
- 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'/video/(.*)\', \'i\'), \'/embed/video/$1\') }'
1359
  )
1360
  )
1361
  ),
@@ -1392,98 +1017,80 @@ http://static.animoto.com/swf/w.swf?w=swf/vp1&f=Kf9POzQMSOGWyu41gtOtsw&i=m
1392
  'input' => 'multiple',
1393
  'options' => array(
1394
  'intro' => array (
1395
- 'hide' => true,
1396
- 'description' => __('To make a website or HTML document open in an overlay, use the class "fancybox-iframe" for its link.','easy-fancybox') . '<br /><br />'
1397
  ),
1398
  'tag' => array (
1399
- 'hide' => true,
1400
- 'default' => 'a.fancybox-iframe, area.fancybox-iframe, li.fancybox-iframe a:not(li.nofancybox a)'
1401
  ),
1402
  'class' => array (
1403
- 'hide' => true,
1404
- 'default' => 'fancybox-iframe'
1405
  ),
1406
  'type' => array (
1407
- 'default' => 'iframe'
1408
- ),
1409
- 'scrolling' => array (
1410
- 'id' => 'fancybox_iFrameScrolling',
1411
- 'title' => __('Scrolling','easy-fancybox'),
1412
- 'label_for' => 'fancybox_iFrameScrolling',
1413
- 'input' => 'select',
1414
- 'options' => array(
1415
- 'auto' => __('Auto','easy-fancybox'),
1416
- 'yes' => __('Always','easy-fancybox'),
1417
- 'no' => __('Never','easy-fancybox')
1418
- ),
1419
- 'default' => 'auto',
1420
- 'description' => __('Define scrolling and scrollbar visibility.','easy-fancybox') . '<br />'
1421
  ),
1422
  'width' => array (
1423
- 'id' => 'fancybox_iFramewidth',
1424
- 'title' => translate('Width'),
1425
- 'label_for' => 'fancybox_iFramewidth',
1426
- 'input' => 'text',
1427
- 'sanitize_callback' => 'intval',
1428
- 'class' => 'small-text',
1429
- 'default' => '70%',
1430
- 'description' => ' '
1431
  ),
1432
  'height' => array (
1433
- 'id' => 'fancybox_iFrameheight',
1434
- 'title' => translate('Height'),
1435
- 'label_for' => 'fancybox_iFrameheight',
1436
- 'input' => 'text',
1437
- 'sanitize_callback' => 'intval',
1438
- 'class' => 'small-text',
1439
- 'default' => '90%',
1440
  ),
1441
  'padding' => array (
1442
- 'id' => 'fancybox_iFramepadding',
1443
- 'title' => translate('Border'),
1444
- 'label_for' => 'fancybox_iFramepadding',
1445
- 'input' => 'number',
1446
- 'step' => '1',
1447
- 'min' => '0',
1448
- 'max' => '100',
1449
- 'sanitize_callback' => 'intval',
1450
- 'class' => 'small-text',
1451
- 'default' => '0',
1452
- 'description' => '<br /><br />'
 
 
 
1453
  ),
1454
  'titleShow' => array (
1455
- 'id' => 'fancybox_iFrametitleShow',
1456
- 'input' => 'checkbox',
1457
- 'noquotes' => true,
1458
- 'default' => '',
1459
- 'description' => __('Show title','easy-fancybox')
1460
  ),
1461
  'titlePosition' => array (
1462
- 'id' => 'fancybox_iFrametitlePosition',
1463
- 'title' => __('Title Position','easy-fancybox'),
1464
- 'label_for' => 'fancybox_iFrametitlePosition',
1465
- 'input' => 'select',
1466
- 'options' => array(
1467
- 'float' => __('Float','easy-fancybox'),
1468
- 'outside' => __('Outside','easy-fancybox'),
1469
- 'inside' => __('Inside','easy-fancybox')
1470
- ),
1471
- 'default' => 'float',
 
1472
  ),
1473
  'titleFromAlt' => array (
1474
- 'id' => 'fancybox_iFrametitleFromAlt',
1475
- 'input' => 'checkbox',
1476
- 'noquotes' => true,
1477
- 'default' => '1',
1478
- 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
1479
  )
1480
  )
1481
  )
1482
 
1483
  );
1484
-
1485
- }
1486
-
1487
  }
1488
-
1489
- easyFancyBox_Options::go();
1
  <?php
2
+ function easy_fancybox_settings(){
 
 
 
 
3
 
4
+ return array (
5
  'Global' => array(
6
  'title' => __('Global settings','easy-fancybox'),
7
  'input' => 'deep',
8
  'hide' => true,
9
  'options' => array(
10
+ /*'intro' => array (
11
+ 'hide' => true,
12
+ 'description' => __('These settings determine the global overlay appearance and behaviour controlled by FancyBox.','easy-fancybox') . '<br />'
13
+ ),*/
14
  'Enable' => array (
15
+ 'title' => __('Enable FancyBox for','easy-fancybox'),
16
  'input' => 'multiple',
17
  'hide' => true,
18
  'options' => array(
 
 
 
 
19
  'IMG' => array (
20
  'id' => 'fancybox_enableImg',
21
  'input' => 'checkbox',
22
  'hide' => true,
23
+ 'default' => ( function_exists('is_plugin_active_for_network') && is_plugin_active_for_network(plugin_basename( __FILE__ )) ) ? '' : '1',
24
+ 'description' => '<strong>' . __('Images & Inline content','easy-fancybox') . '</strong>'
 
 
 
 
 
 
 
25
  ),
26
  'PDF' => array (
27
  'id' => 'fancybox_enablePDF',
37
  'default' => '',
38
  'description' => '<strong>' . __('SWF','easy-fancybox') . '</strong>'
39
  ),
 
 
 
 
 
 
 
40
  'YouTube' => array (
41
  'id' => 'fancybox_enableYoutube',
42
  'input' => 'checkbox',
65
  'default' => '',
66
  'description' => '<strong>' . __('iFrames','easy-fancybox') . '</strong>'
67
  )
68
+ )
 
69
  ),
70
  'Links' => array(
71
+ 'title' => __('Links'),
72
  'input' => 'multiple',
73
  'hide' => true,
74
  'options' => array(
75
+ /*'p1' => array (
76
+ 'hide' => true,
77
+ 'description' => '<br />'
78
+ ),*/
79
  'attributeLimit' => array (
80
  'id' => 'fancybox_attributeLimit',
81
  'title' => __('Exclude','easy-fancybox'),
83
  'hide' => true,
84
  'input' => 'select',
85
  'options' => array(
86
+ '' => __('None'),
87
  ':not(:empty)' => __('Empty (hidden) links','easy-fancybox'),
88
  ':has(img)' => __('Without thumbnail image','easy-fancybox')
89
  ),
92
  ),
93
  'autoClick' => array (
94
  'id' => 'fancybox_autoClick',
95
+ 'title' => __('Auto-open','easy-fancybox'),
96
  'label_for' => 'fancybox_autoClick',
97
  'hide' => true,
98
  'input' => 'select',
99
  'options' => array(
100
+ '' => __('None'),
101
  '1' => __('Link with ID "fancybox-auto"','easy-fancybox'),
102
+ 'IMG' => __('First Image link','easy-fancybox'),
103
+ 'PDF' => __('First PDF link','easy-fancybox'),
104
+ 'SWF' => __('First SWF link','easy-fancybox'),
105
+ 'YouTube' => __('First YouTube link ','easy-fancybox'),
106
+ 'Vimeo' => __('First Vimeo link ','easy-fancybox'),
107
+ 'Dailymotion' => __('First Dailymotion link ','easy-fancybox'),
108
+ 'iFrame' => __('First iFrame link','easy-fancybox'),
109
+ '99' => __('First of any link','easy-fancybox'),
110
  ),
111
  'default' => '1',
112
+ 'description' => '<br />'
 
 
 
 
 
 
 
113
  )
114
  )
115
  ),
121
  'overlayShow' => array (
122
  'id' => 'fancybox_overlayShow',
123
  'input' => 'checkbox',
 
124
  'default' => '1',
125
  'description' => __('Show the overlay around content opened in FancyBox.','easy-fancybox')
126
  ),
127
+ 'overlaySpotlight' => array (
128
+ 'id' => 'fancybox_overlaySpotlight',
129
  'input' => 'checkbox',
130
+ 'hide' => true,
131
+ 'default' => '',
132
+ 'description' => __('Spotlight effect.','easy-fancybox')
133
  ),
134
  'overlayOpacity' => array (
135
  'id' => 'fancybox_overlayOpacity',
136
  'title' => __('Opacity','easy-fancybox'),
137
  'label_for' => 'fancybox_overlayOpacity',
138
+ 'input' => 'text',
 
 
 
139
  'class' => 'small-text',
140
  'default' => '',
141
  'description' => __('Value between 0 and 1. ','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' 0.7</em><br />'
148
  'class' => 'small-text',
149
  'default' => '',
150
  'description' => __('Enter an HTML color value.','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' #777</em><br />'
 
 
 
 
 
 
 
 
151
  )
152
  )
153
  ),
154
+
155
  'Window' => array (
156
  'title' => __('Window','easy-fancybox'),
157
  'input' => 'multiple',
159
  'options' => array(
160
  'p1' => array (
161
  'hide' => true,
162
+ 'description' => '<strong>' . __('Size') . '</strong><br />'
163
  ),
164
+ 'width' => array (
165
+ 'id' => 'fancybox_width',
166
+ 'title' => __('Width'),
167
+ 'label_for' => 'fancybox_width',
168
+ 'input' => 'text',
169
+ 'class' => 'small-text',
170
+ 'default' => '',
171
+ 'description' => ' '
172
+ ),
173
+ 'height' => array (
174
+ 'id' => 'fancybox_height',
175
+ 'title' => __('Height'),
176
+ 'label_for' => 'fancybox_height',
177
+ 'input' => 'text',
178
+ 'class' => 'small-text',
179
+ 'default' => ''
180
+ ),
181
+ 'padding' => array (
182
+ 'id' => 'fancybox_padding',
183
+ 'title' => __('Border'),
184
+ 'label_for' => 'fancybox_padding',
185
+ 'input' => 'text',
186
+ 'class' => 'small-text',
187
+ 'default' => '',
188
+ 'description' => '<em>' . __('Default:','easy-fancybox') . ' 560 x 340 x 10</em><br />'
189
+ ),
190
+ 'p2' => array (
191
+ 'hide' => true,
192
+ 'description' => '<br /><strong>' . __('Color','easy-fancybox') . '</strong><br />'
193
  ),
194
  'backgroundColor' => array (
195
  'id' => 'fancybox_backgroundColor',
196
  'hide' => true,
197
+ 'title' => __('Background'),
198
+ 'label_for' => 'fancybox_backgroundColor',
199
  'input' => 'text',
 
200
  'class' => 'small-text',
201
  'default' => '',
202
  'description' => ''
204
  'paddingColor' => array (
205
  'id' => 'fancybox_paddingColor',
206
  'hide' => true,
207
+ 'title' => __('Border'),
208
+ 'label_for' => 'fancybox_paddingColor',
209
  'input' => 'text',
 
210
  'class' => 'small-text',
211
  'default' => '',
212
  'description' => ''
214
  'textColor' => array (
215
  'id' => 'fancybox_textColor',
216
  'hide' => true,
217
+ 'title' => __('Text'),
218
+ 'label_for' => 'fancybox_textColor',
219
  'input' => 'text',
 
220
  'class' => 'small-text',
221
  'default' => '',
222
+ 'description' => ''
223
  ),
224
  'frameOpacity' => array (
225
  'id' => 'fancybox_frameOpacity',
226
  'hide' => true,
227
  'title' => __('Opacity','easy-fancybox'),
228
+ 'label_for' => 'fancybox_frameOpacity',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  'input' => 'text',
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  'class' => 'small-text',
231
  'default' => '',
232
+ 'description' => '<br /><em>' . __('Default:','easy-fancybox') . ' #fff x #fff x inherit x 1.0</em><br />'
233
  ),
234
+ 'p3' => array (
 
235
  'hide' => true,
236
  'description' => '<br /><strong>' . __('Behavior','easy-fancybox') . '</strong><br />'
237
  ),
238
  'centerOnScroll' => array (
239
  'id' => 'fancybox_centerOnScroll',
240
  'input' => 'checkbox',
 
241
  'default' => '1',
242
  'description' => __('Center while scrolling','easy-fancybox')
243
  ),
244
+ 'showCloseButton' => array (
245
+ 'id' => 'fancybox_showCloseButton',
246
  'input' => 'checkbox',
 
247
  'default' => '1',
248
+ 'description' => __('Show the (X) close button','easy-fancybox')
249
  ),
250
+ 'showNavArrows' => array (
251
+ 'id' => 'fancybox_showNavArrows',
252
  'input' => 'checkbox',
 
253
  'default' => '1',
254
+ 'description' => __('Show the gallery navigation arrows','easy-fancybox')
255
+ ),
256
+ 'p4' => array (
257
+ 'hide' => true,
258
+ 'description' => '<br />'
259
  ),
260
  'speedIn' => array (
261
  'id' => 'fancybox_speedIn',
262
  'title' => __('Opening speed','easy-fancybox'),
263
  'label_for' => 'fancybox_speedIn',
264
+ 'input' => 'text',
 
 
 
 
265
  'class' => 'small-text',
266
  'default' => '',
267
  ),
269
  'id' => 'fancybox_speedOut',
270
  'title' => __('Closing speed','easy-fancybox'),
271
  'label_for' => 'fancybox_speedOut',
272
+ 'input' => 'text',
273
+ 'class' => 'small-text',
274
+ 'default' => '',
275
+ ),
276
+ 'changeFade' => array (
277
+ 'id' => 'fancybox_changeFade',
278
+ 'title' => __('Fade speed','easy-fancybox'),
279
+ 'label_for' => 'fancybox_changeFade',
280
+ 'input' => 'text',
281
  'class' => 'small-text',
282
  'default' => '',
283
  'description' => '<br />' . __('Duration in milliseconds. Higher is slower.','easy-fancybox') . ' <em>' . __('Default:','easy-fancybox') . ' 300</em><br />'
284
  ),
285
+ 'p5' => array (
 
286
  'hide' => true,
287
+ 'description' => '<br />'
 
288
  ),
289
+ 'onComplete' => array (
290
+ 'id' => 'fancybox_onComplete',
291
+ 'title' => __('Advanced','easy-fancybox'),
292
+ 'label_for' => 'fancybox_onComplete',
293
+ 'input' => 'select',
294
+ 'options' => array(
295
+ '' => __('None','easy-fancybox'), // no extra's
296
+ 'function() { $(\'#fancybox-title\').hide(); $(\'#fancybox-wrap\').hover(function() { $(\'#fancybox-title\').show(); }, function() { $(\'#fancybox-title\').hide(); }); }' => __('Hide/show title on mouse hover action','easy-fancybox'),
297
+ 'function() { fb_timeout = setTimeout(function(){jQuery.fancybox.next();}, 5000); $(\'#fancybox-wrap\').hover(function() { if(fb_timeout) clearTimeout(fb_timeout); }, function() { if(!fb_timeout) var fb_timeout = setTimeout(function(){jQuery.fancybox.next();}, 5000); }); }' => __('Gallery Auto-rotation','easy-fancybox')
298
+ ), // \'jQuery("#fancybox-right").trigger("click")\'
299
+ // \'jQuery.event.trigger("fancybox-next")\'
300
+ // \'jQuery.fancybox.next()\'
301
+ // function(){jQuery.fancybox.next();}
302
+ 'noquotes' => true,
303
+ 'default' => '',
304
+ 'description' => '<br />' . __('Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image.','easy-fancybox') . '<br />'
305
  ),
306
+ 'onCleanup' => array (
307
+ 'noquotes' => true,
308
+ 'default' => 'function() { if(fb_timeout) { window.clearTimeout(fb_timeout); fb_timeout = null; } }'
 
 
309
  )
310
  )
311
  )
312
 
313
  )
314
  ),
 
315
  'IMG' => array(
316
+ 'title' => __('Images & Inline content','easy-fancybox'),
317
  'input' => 'multiple',
318
  'options' => array(
319
  'intro' => array (
320
+ 'hide' => true,
321
+ 'description' => __('To make images open in an overlay, add their extension to the auto-detect field or use the class "fancybox" for its link. Clear field to switch off auto-enabling.','easy-fancybox') . '<br />'
 
 
 
 
322
  ),
 
 
 
 
 
 
 
323
  'autoAttribute' => array (
324
+ 'id' => 'fancybox_autoAttribute',
325
+ 'title' => __('Auto-detect','easy-fancybox'),
326
+ 'label_for' => 'fancybox_autoAttribute',
327
+ 'input' => 'text',
328
+ 'class' => 'regular-text',
329
+ 'hide' => true,
330
+ 'default' => 'jpg gif png',
331
+ 'selector' => 'href$=',
332
+ 'description' => ' <em>' . __('Default:','easy-fancybox') . ' jpg gif png</em><br /><br />'
333
  ),
334
  'autoAttributeLimit' => array (
335
+ 'id' => 'fancybox_autoAttributeLimit',
336
+ 'title' => __('Apply to','easy-fancybox'),
337
+ 'label_for' => 'fancybox_autoAttributeLimit',
338
+ 'hide' => true,
339
+ 'input' => 'select',
340
+ 'options' => array(
341
+ '' => __('All image links', 'easy-fancybox'),
342
+ '1' => __('Links inside Section(s) only (below)','easy-fancybox')
343
+ ),
344
+ 'default' => '',
345
+ 'description' => '<em>' . __('Default:','easy-fancybox') . ' ' . 'All image links' . '</em><br />'
346
  ),
347
+ 'autoGallery' => array (
348
+ 'id' => 'fancybox_autoGallery',
349
+ 'title' => __('Auto-gallery','easy-fancybox'),
350
+ 'label_for' => 'fancybox_autoGallery',
351
+ 'hide' => true,
352
+ 'input' => 'select',
353
+ 'options' => array(
354
+ '' => __('Disabled'),
355
+ '1' => __('Galleries per Section (below)','easy-fancybox'),
356
+ '2' => __('All in one gallery','easy-fancybox')
357
+ ),
358
+ 'default' => '2',
359
+ 'description' => '<br />&nbsp; ' . __('When disabled, you can use the rel attribute to manually group image links together.','easy-fancybox') . '<br />'
360
  ),
361
+ 'autoSelector' => array (
362
+ 'id' => 'fancybox_autoGallerySelector',
363
+ 'title' => __('Section(s)','easy-fancybox'),
364
+ 'label_for' => 'fancybox_autoGallerySelector',
365
+ 'hide' => true,
366
+ 'input' => 'text',
367
+ 'class' => 'regular-text',
368
+ 'default' => 'article, div.hentry',
369
+ 'description' => ' <em>' . __('Default:','easy-fancybox') . ' ' . 'article, div.hentry' . '</em><br />' . __('This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme.','easy-fancybox') . '<br />' . __('Examples: If your theme wraps post content in a div with class post, change this value to "div.post". If you want to include images in a sidebar with ID primary, add ", div#primary" or "aside#primary" for html5 themes.','easy-fancybox') . '<br /><br />'
370
+ ),
371
+ /* 'onStart' => array (
372
+ 'noquotes' => true,
373
+ 'default' => 'function() { window.clearTimeout(fb_timeout); }'
374
+ ),*/
375
  'transitionIn' => array (
376
  'id' => 'fancybox_transitionIn',
377
  'title' => __('Transition In','easy-fancybox'),
378
  'label_for' => 'fancybox_transitionIn',
379
  'input' => 'select',
380
  'options' => array(
 
381
  '' => __('Fade','easy-fancybox'),
382
  'elastic' => __('Elastic','easy-fancybox'),
383
+ 'none' => __('None','easy-fancybox')
384
  ),
385
  'default' => 'elastic',
386
  'description' => ' '
393
  'options' => array(
394
  'linear' => __('Linear','easy-fancybox'),
395
  '' => __('Swing','easy-fancybox'),
396
+ 'easeOutBack' => __('Back','easy-fancybox'),
397
+ 'easeOutQuad' => __('Quad','easy-fancybox'),
398
+ 'easeOutExpo' => __('Expo','easy-fancybox'),
399
  ),
400
  'default' => 'easeOutBack',
401
+ 'description' => '<br />'
402
  ),
403
  'transitionOut' => array (
404
  'id' => 'fancybox_transitionOut',
406
  'label_for' => 'fancybox_transitionOut',
407
  'input' => 'select',
408
  'options' => array(
 
409
  '' => __('Fade','easy-fancybox'),
410
  'elastic' => __('Elastic','easy-fancybox'),
411
+ 'none' => __('None','easy-fancybox')
412
  ),
413
  'default' => 'elastic',
414
  'description' => ' '
421
  'options' => array(
422
  'linear' => __('Linear','easy-fancybox'),
423
  '' => __('Swing','easy-fancybox'),
424
+ 'easeInBack' => __('Back','easy-fancybox'),
425
+ 'easeInQuad' => __('Quad','easy-fancybox'),
426
+ 'easeInExpo' => __('Expo','easy-fancybox'),
427
  ),
428
  'default' => 'easeInBack',
429
+ 'description' => '<br />' . __('Easing effects only apply when Transition is set to Elastic. ','easy-fancybox') . '<br />'
430
  ),
431
  'opacity' => array (
432
  'id' => 'fancybox_opacity',
433
  'input' => 'checkbox',
 
 
 
 
 
 
 
 
434
  'default' => '',
435
+ 'description' => __('Transparency fade during elastic transition.','easy-fancybox') . '<br />'
 
 
 
 
436
  ),
437
  'titleShow' => array (
438
  'id' => 'fancybox_titleShow',
439
  'input' => 'checkbox',
 
440
  'default' => '1',
441
  'description' => __('Show title','easy-fancybox')
442
  ),
446
  'label_for' => 'fancybox_titlePosition',
447
  'input' => 'select',
448
  'options' => array(
449
+ '' => __('Float','easy-fancybox'), // same as 'float'
450
  'outside' => __('Outside','easy-fancybox'),
451
  'inside' => __('Inside','easy-fancybox'),
452
  'over' => __('Overlay','easy-fancybox')
457
  'titleFromAlt' => array (
458
  'id' => 'fancybox_titleFromAlt',
459
  'input' => 'checkbox',
 
460
  'default' => '1',
461
  'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
462
  ),
463
+ /* 'titleFormat' => array (
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  'id' => 'fancybox_titleFormat',
465
  'title' => __('Title format','easy-fancybox'),
466
  'label_for' => 'fancybox_titleFormat',
474
  'default' => '',
475
  'description' => '<br />' . __('To improve Lightbox2 style disable Show close button and set titleposition to Inside or Outside','easy-fancybox') . '<br />'
476
  ),*/
 
 
 
 
 
 
 
 
 
 
 
477
  'tag' => array (
478
+ 'hide' => true,
479
+ 'default' => 'a, area'
480
  ),
481
  'class' => array (
482
+ 'hide' => true,
483
+ 'default' => 'fancybox'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  )
485
  )
486
  ),
490
  'input' => 'multiple',
491
  'options' => array(
492
  'intro' => array (
493
+ 'hide' => true,
494
+ 'description' => __('To make any PDF document file open in an overlay, switch on auto-detect or use the class "fancybox-pdf" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br />'
495
  ),
496
  'autoAttribute' => array (
497
+ 'id' => 'fancybox_autoAttributePDF',
498
+ 'input' => 'checkbox',
499
+ 'hide' => true,
500
+ 'default' => '1',
501
+ 'selector' => 'href$=".pdf"',
502
+ 'description' => __('Auto-detect','easy-fancybox') . '<br />'
503
  ),
504
  'tag' => array (
505
+ 'hide' => true,
506
+ 'default' => 'a, area'
507
  ),
508
  'class' => array (
509
+ 'hide' => true,
510
+ 'default' => 'fancybox-pdf'
511
  ),
512
  'type' => array (
513
+ 'default' => 'html'
514
  ),
515
  'width' => array (
516
+ 'id' => 'fancybox_PDFwidth',
517
+ 'title' => __('Width'),
518
+ 'label_for' => 'fancybox_PDFwidth',
519
+ 'input' => 'text',
520
+ 'class' => 'small-text',
521
+ 'default' => '90%',
522
+ 'description' => ' '
 
523
  ),
524
  'height' => array (
525
+ 'id' => 'fancybox_PDFheight',
526
+ 'title' => __('Height'),
527
+ 'label_for' => 'fancybox_PDFheight',
528
+ 'input' => 'text',
529
+ 'class' => 'small-text',
530
+ 'default' => '90%'
 
531
  ),
532
  'padding' => array (
533
+ 'id' => 'fancybox_PDFpadding',
534
+ 'title' => __('Border'),
535
+ 'label_for' => 'fancybox_PDFpadding',
536
+ 'input' => 'text',
537
+ 'class' => 'small-text',
538
+ 'default' => '10',
539
+ 'description' => '<br /><br />'
540
+ ),
541
+ 'autoScale' => array (
542
+ 'noquotes' => true,
543
+ 'default' => 'false'
544
  ),
 
 
 
 
545
  'titleShow' => array (
546
+ 'id' => 'fancybox_PDFtitleShow',
547
+ 'input' => 'checkbox',
548
+ 'default' => '',
549
+ 'description' => __('Show title','easy-fancybox')
 
550
  ),
551
  'titlePosition' => array (
552
+ 'id' => 'fancybox_PDFtitlePosition',
553
+ 'title' => __('Title Position','easy-fancybox'),
554
+ 'label_for' => 'fancybox_PDFtitlePosition',
555
+ 'input' => 'select',
556
+ 'options' => array(
557
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
558
+ 'outside' => __('Outside','easy-fancybox'),
559
+ 'inside' => __('Inside','easy-fancybox')
560
+ //,'over' => __('Overlay','easy-fancybox')
561
+ ),
562
+ 'default' => 'float',
563
  ),
564
  'titleFromAlt' => array (
565
+ 'id' => 'fancybox_PDFtitleFromAlt',
566
+ 'input' => 'checkbox',
567
+ 'default' => '1',
568
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
 
569
  ),
570
  /* 'transitionOut' => array (
571
+ 'id' => 'fancybox_PDFtransitionOut',
572
+ 'title' => __('Transition Out','easy-fancybox'),
573
+ 'label_for' => 'fancybox_PDFtransitionOut',
574
+ 'input' => 'select',
575
+ 'class' => '',
576
+ 'options' => array(
577
+ 'fade' => __('Fade','easy-fancybox'),
578
+ //'elastic' => __('Elastic','easy-fancybox'),
579
+ 'none' => __('None','easy-fancybox')
580
+ ),
581
+ 'default' => 'fade',
582
  ),
583
  'easingIn' => array (
584
+ 'default' => 'swing'
585
  ),*/
586
  'autoDimensions' => array (
587
+ 'noquotes' => true,
588
+ 'default' => 'false'
589
  ),
590
  'scrolling' => array (
591
+ 'default' => 'no',
592
  ),
593
  'onStart' => array (
594
+ 'noquotes' => true,
595
+ // 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = \'<embed src="\' + selectedArray[selectedIndex].href + \'#nameddest=self&page=1&view=FitH,0&zoom=80,0,0" type="application/pdf" height="100%" width="100%" />\' }'
596
+ 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.content = \'<object data="\' + selectedArray[selectedIndex].href + \'#toolbar=1&amp;navpanes=0&amp;nameddest=self&amp;page=1&amp;view=FitH,0&amp;zoom=80,0,0" type="application/pdf" height="100%" width="100%"><param name="src" value="\' + selectedArray[selectedIndex].href + \'#toolbar=1&amp;navpanes=0&amp;nameddest=self&amp;page=1&amp;view=FitH,0&amp;zoom=80,0,0" /><embed src="\' + selectedArray[selectedIndex].href + \'#toolbar=1&amp;navpanes=0&amp;nameddest=self&amp;page=1&amp;view=FitH,0&amp;zoom=80,0,0" type="application/pdf" height="100%" width="100%" /><a href="\' + selectedArray[selectedIndex].href + \'" style="display:block;font-size:18px;height:20px;position:absolute;top:50%;margin:-10px auto 0 auto">\' + $(selectedArray[selectedIndex]).html() + \'</a></object>\' }'
 
597
  ),
598
  /* 'onClosed' => array (
599
+ 'noquotes' => true,
600
+ 'default' => 'function() { $("#fancybox-content").empty(); }'
601
  )*/
602
  )
603
  ),
607
  'input' => 'multiple',
608
  'options' => array(
609
  'intro' => array (
610
+ 'hide' => true,
611
+ 'description' => __('To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class "fancybox-swf" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br />'
612
  ),
613
  'autoAttribute' => array (
614
+ 'id' => 'fancybox_autoAttributeSWF',
615
+ 'input' => 'checkbox',
616
+ 'hide' => true,
617
+ 'default' => '1',
618
+ 'selector' => 'href$=".swf"',
619
+ 'description' => __('Auto-detect','easy-fancybox') . '<br />'
620
  ),
621
  'tag' => array (
622
+ 'hide' => true,
623
+ 'default' => 'a, area'
624
  ),
625
  'class' => array (
626
+ 'hide' => true,
627
+ 'default' => 'fancybox-swf'
628
  ),
629
  'type' => array(
630
+ 'default' => 'swf'
631
  ),
632
  'width' => array (
633
+ 'id' => 'fancybox_SWFWidth',
634
+ 'title' => __('Width'),
635
+ 'label_for' => 'fancybox_SWFWidth',
636
+ 'input' => 'text',
637
+ 'class' => 'small-text',
638
+ 'options' => array(),
639
+ 'default' => '680',
640
+ 'description' => ' '
 
641
  ),
642
  'height' => array (
643
+ 'id' => 'fancybox_SWFHeight',
644
+ 'title' => __('Height'),
645
+ 'label_for' => 'fancybox_SWFHeight',
646
+ 'input' => 'text',
647
+ 'class' => 'small-text',
648
+ 'options' => array(),
649
+ 'default' => '495',
 
650
  ),
651
  'padding' => array (
652
+ 'id' => 'fancybox_SWFpadding',
653
+ 'title' => __('Border'),
654
+ 'label_for' => 'fancybox_SWFpadding',
655
+ 'input' => 'text',
656
+ 'class' => 'small-text',
657
+ 'default' => '0',
658
+ 'description' => '<br /><br />'
659
+ ),
660
+ 'autoScale' => array (
661
+ 'noquotes' => true,
662
+ 'default' => 'false'
663
  ),
664
  'titleShow' => array (
665
+ 'id' => 'fancybox_SWFtitleShow',
666
+ 'input' => 'checkbox',
667
+ 'default' => '',
668
+ 'description' => __('Show title','easy-fancybox')
 
669
  ),
670
  'titlePosition' => array (
671
+ 'id' => 'fancybox_SWFtitlePosition',
672
+ 'title' => __('Title Position','easy-fancybox'),
673
+ 'label_for' => 'fancybox_SWFtitlePosition',
674
+ 'input' => 'select',
675
+ 'options' => array(
676
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
677
+ 'outside' => __('Outside','easy-fancybox'),
678
+ 'inside' => __('Inside','easy-fancybox')
679
+ //,'over' => __('Overlay','easy-fancybox')
680
+ ),
681
+ 'default' => 'float',
682
  ),
683
  'titleFromAlt' => array (
684
+ 'id' => 'fancybox_SWFtitleFromAlt',
685
+ 'input' => 'checkbox',
686
+ 'default' => '1',
687
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
 
688
  ),
689
  'swf' => array (
690
+ 'noquotes' => true,
691
+ 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  )
693
  )
694
  ),
698
  'input' => 'multiple',
699
  'options' => array(
700
  'intro' => array (
701
+ 'hide' => true,
702
+ 'description' => __('To make any YouTube movie open in an overlay, switch on auto-detect or use the class "fancybox-youtube" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br />'
703
  ),
704
  'autoAttribute' => array (
705
+ 'id' => 'fancybox_autoAttributeYoutube',
706
+ 'input' => 'checkbox',
707
+ 'hide' => true,
708
+ 'default' => '1',
709
+ 'selector' => 'href*="youtube.com/"',
710
+ //'href-replace' => "return attr.replace(new RegExp('watch\\\?v=', 'i'), 'v/')",
711
+ 'description' => __('Auto-detect','easy-fancybox')
712
  ),
713
  'autoAttributeAlt' => array (
714
+ 'id' => 'fancybox_autoAttributeYoutubeShortURL',
715
+ 'input' => 'checkbox',
716
+ 'hide' => true,
717
+ 'default' => '1',
718
+ 'selector' => 'href*="youtu.be/"',
719
+ //'href-replace' => "return attr.replace(new RegExp('youtu.be', 'i'), 'www.youtube.com/v')",
720
+ 'description' => __('Auto-detect Short links','easy-fancybox') . '<br />'
721
  ),
722
  'tag' => array (
723
+ 'hide' => true,
724
+ 'default' => 'a, area'
725
  ),
726
  'class' => array (
727
+ 'hide' => true,
728
+ 'default' => 'fancybox-youtube'
729
  ),
730
  'type' => array(
731
+ 'default' => 'iframe'
732
  ),
733
  'width' => array (
734
+ 'id' => 'fancybox_YoutubeWidth',
735
+ 'title' => __('Width'),
736
+ 'label_for' => 'fancybox_YoutubeWidth',
737
+ 'input' => 'text',
738
+ 'class' => 'small-text',
739
+ 'default' => '640',
740
+ 'description' => ' '
 
 
 
 
741
  ),
742
  'height' => array (
743
+ 'id' => 'fancybox_YoutubeHeight',
744
+ 'title' => __('Height'),
745
+ 'label_for' => 'fancybox_YoutubeHeight',
746
+ 'input' => 'text',
747
+ 'class' => 'small-text',
748
+ 'default' => '390',
 
 
 
 
749
  ),
750
  'padding' => array (
751
+ 'id' => 'fancybox_Youtubepadding',
752
+ 'title' => __('Border'),
753
+ 'label_for' => 'fancybox_Youtubepadding',
754
+ 'input' => 'text',
755
+ 'class' => 'small-text',
756
+ 'default' => '0',
757
+ 'description' => '<br /><br />'
758
+ ),
759
+ 'autoScale' => array (
760
+ 'noquotes' => true,
761
+ 'default' => 'false'
762
  ),
763
  'titleShow' => array (
764
+ 'id' => 'fancybox_YoutubetitleShow',
765
+ 'input' => 'checkbox',
766
+ 'default' => '',
767
+ 'description' => __('Show title','easy-fancybox')
 
768
  ),
769
  'titlePosition' => array (
770
+ 'id' => 'fancybox_YoutubetitlePosition',
771
+ 'title' => __('Title Position','easy-fancybox'),
772
+ 'label_for' => 'fancybox_YoutubetitlePosition',
773
+ 'input' => 'select',
774
+ 'options' => array(
775
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
776
+ 'outside' => __('Outside','easy-fancybox'),
777
+ 'inside' => __('Inside','easy-fancybox')
778
+ //,'over' => __('Overlay','easy-fancybox')
779
+ ),
780
+ 'default' => 'float',
781
  ),
782
  'titleFromAlt' => array (
783
+ 'id' => 'fancybox_YoutubetitleFromAlt',
784
+ 'input' => 'checkbox',
785
+ 'default' => '1',
786
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
787
+ ),
788
+ /* 'swf' => array (
789
+ 'noquotes' => true,
790
+ 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
791
+ ), */
792
  'onStart' => array (
793
+ 'noquotes' => true,
794
+ 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'youtu.be\', \'i\'), \'www.youtube.com/embed\').replace(new RegExp(\'watch\\\?v=([a-z0-9\_\-]+)(&|\\\?)?(.*)\', \'i\'), \'embed/$1?version=3&$3\') }'
795
  )
796
  )
797
  ),
801
  'input' => 'multiple',
802
  'options' => array(
803
  'intro' => array (
804
+ 'hide' => true,
805
+ 'description' => __('To make any Vimeo movie open in an overlay, switch on auto-detect or use the class "fancybox-vimeo" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br />'
806
  ),
807
  'autoAttribute' => array (
808
+ 'id' => 'fancybox_autoAttributeVimeo',
809
+ 'input' => 'checkbox',
810
+ 'hide' => true,
811
+ 'default' => '1',
812
+ 'selector' => 'href*="vimeo.com/"',
813
+ //'href-replace' => "return attr.replace(new RegExp('/([0-9])', 'i'), '/moogaloop.swf?clip_id=$1')",
814
+ 'description' => __('Auto-detect','easy-fancybox') . '<br />'
815
  ),
816
  'tag' => array (
817
+ 'hide' => true,
818
+ 'default' => 'a, area'
819
  ),
820
  'class' => array (
821
+ 'hide' => true,
822
+ 'default' => 'fancybox-vimeo'
823
  ),
824
  'type' => array(
825
+ 'default' => 'iframe'
826
  ),
827
  'width' => array (
828
  'id' => 'fancybox_VimeoWidth',
829
+ 'title' => __('Width'),
830
  'label_for' => 'fancybox_VimeoWidth',
831
+ 'input' => 'text',
 
 
 
 
832
  'class' => 'small-text',
833
+ 'default' => '640',
834
  'description' => ' '
835
  ),
836
  'height' => array (
837
+ 'id' => 'fancybox_VimeoHeight',
838
+ 'title' => __('Height'),
839
+ 'label_for' => 'fancybox_VimeoHeight',
840
+ 'input' => 'text',
841
+ 'class' => 'small-text',
842
+ 'default' => '360'
 
 
 
 
843
  ),
844
  'padding' => array (
845
+ 'id' => 'fancybox_Vimeopadding',
846
+ 'title' => __('Border'),
847
+ 'label_for' => 'fancybox_Vimeopadding',
848
+ 'input' => 'text',
849
+ 'class' => 'small-text',
850
+ 'default' => '0',
851
+ 'description' => '<br /><br />'
852
+ ),
853
+ 'autoScale' => array (
854
+ 'noquotes' => true,
855
+ 'default' => 'false'
856
  ),
857
  'titleShow' => array (
858
+ 'id' => 'fancybox_VimeotitleShow',
859
+ 'input' => 'checkbox',
860
+ 'default' => '',
861
+ 'description' => __('Show title','easy-fancybox')
 
862
  ),
863
  'titlePosition' => array (
864
+ 'id' => 'fancybox_VimeotitlePosition',
865
+ 'title' => __('Title Position','easy-fancybox'),
866
+ 'label_for' => 'fancybox_VimeotitlePosition',
867
+ 'input' => 'select',
868
+ 'options' => array(
869
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
870
+ 'outside' => __('Outside','easy-fancybox'),
871
+ 'inside' => __('Inside','easy-fancybox')
872
+ //,'over' => __('Overlay','easy-fancybox')
873
+ ),
874
+ 'default' => 'float',
875
  ),
876
  'titleFromAlt' => array (
877
+ 'id' => 'fancybox_VimeotitleFromAlt',
878
+ 'input' => 'checkbox',
879
+ 'default' => '1',
880
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
881
+ ),
882
+ /* 'swf' => array (
883
+ 'noquotes' => true,
884
+ 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
885
+ ),*/
886
  'onStart' => array (
887
+ 'noquotes' => true,
888
+ 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'http://(www\\.)?vimeo\\.com/([0-9]+)(&|\\\?)?(.*)\', \'i\'), \'http://player.vimeo.com/video/$2?$4\') }'
889
  )
890
  )
891
  ),
896
  'input' => 'multiple',
897
  'options' => array(
898
  'intro' => array (
899
+ 'hide' => true,
900
+ 'description' => __('To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class "fancybox-dailymotion" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br />'
901
  ),
902
  'autoAttribute' => array (
903
+ 'id' => 'fancybox_autoAttributeDailymotion',
904
+ 'input' => 'checkbox',
905
+ 'hide' => true,
906
+ 'default' => '1',
907
+ 'selector' => 'href*="dailymotion.com/"',
908
+ //'href-replace' => "return attr.replace(new RegExp('/video/', 'i'), '/swf/')",
909
+ 'description' => __('Auto-detect','easy-fancybox') . '<br />'
910
  ),
911
  'tag' => array (
912
+ 'hide' => true,
913
+ 'default' => 'a, area'
914
  ),
915
  'class' => array (
916
+ 'hide' => true,
917
+ 'default' => 'fancybox-dailymotion'
918
  ),
919
  'type' => array(
920
+ 'default' => 'iframe'
921
  ),
922
  'width' => array (
923
  'id' => 'fancybox_DailymotionWidth',
924
+ 'title' => __('Width'),
925
  'label_for' => 'fancybox_DailymotionWidth',
926
+ 'input' => 'text',
 
 
 
 
927
  'class' => 'small-text',
928
  'default' => '560',
929
  'description' => ' '
930
  ),
931
  'height' => array (
932
+ 'id' => 'fancybox_DailymotionHeight',
933
+ 'title' => __('Height'),
934
+ 'label_for' => 'fancybox_DailymotionHeight',
935
+ 'input' => 'text',
936
+ 'class' => 'small-text',
937
+ 'default' => '315'
 
 
 
 
938
  ),
939
  'padding' => array (
940
+ 'id' => 'fancybox_DailymotionPadding',
941
+ 'title' => __('Border'),
942
+ 'label_for' => 'fancybox_DailymotionPadding',
943
+ 'input' => 'text',
944
+ 'class' => 'small-text',
945
+ 'default' => '0',
946
+ 'description' => '<br /><br />'
947
+ ),
948
+ 'autoScale' => array (
949
+ 'noquotes' => true,
950
+ 'default' => 'false'
951
  ),
952
  'titleShow' => array (
953
+ 'id' => 'fancybox_DailymotiontitleShow',
954
+ 'input' => 'checkbox',
955
+ 'default' => '',
956
+ 'description' => __('Show title','easy-fancybox')
 
957
  ),
958
  'titlePosition' => array (
959
+ 'id' => 'fancybox_DailymotiontitlePosition',
960
+ 'title' => __('Title Position','easy-fancybox'),
961
+ 'label_for' => 'fancybox_DailymotiontitlePosition',
962
+ 'input' => 'select',
963
+ 'options' => array(
964
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
965
+ 'outside' => __('Outside','easy-fancybox'),
966
+ 'inside' => __('Inside','easy-fancybox')
967
+ //,'over' => __('Overlay','easy-fancybox')
968
+ ),
969
+ 'default' => 'float',
970
  ),
971
  'titleFromAlt' => array (
972
+ 'id' => 'fancybox_DailymotiontitleFromAlt',
973
+ 'input' => 'checkbox',
974
+ 'default' => '1',
975
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
976
+ ),
977
+ /* 'swf' => array (
978
+ 'noquotes' => true,
979
+ 'default' => '{\'wmode\':\'opaque\',\'allowfullscreen\':true}'
980
+ ),*/
981
  'onStart' => array (
982
+ 'noquotes' => true,
983
+ 'default' => 'function(selectedArray, selectedIndex, selectedOpts) { selectedOpts.href = selectedArray[selectedIndex].href.replace(new RegExp(\'/video/(.*)\', \'i\'), \'/embed/video/$1\') }'
984
  )
985
  )
986
  ),
1017
  'input' => 'multiple',
1018
  'options' => array(
1019
  'intro' => array (
1020
+ 'hide' => true,
1021
+ 'description' => __('To make a website or HTML document open in an overlay, use the class "fancybox-iframe" for its link.','easy-fancybox') . ' ' . __('Adjust its specific settings below.','easy-fancybox') . '<br /><br />'
1022
  ),
1023
  'tag' => array (
1024
+ 'hide' => true,
1025
+ 'default' => 'a, area'
1026
  ),
1027
  'class' => array (
1028
+ 'hide' => true,
1029
+ 'default' => 'fancybox-iframe, li.fancybox-iframe a'
1030
  ),
1031
  'type' => array (
1032
+ 'default' => 'iframe'
 
 
 
 
 
 
 
 
 
 
 
 
 
1033
  ),
1034
  'width' => array (
1035
+ 'id' => 'fancybox_iFramewidth',
1036
+ 'title' => __('Width'),
1037
+ 'label_for' => 'fancybox_iFramewidth',
1038
+ 'input' => 'text',
1039
+ 'class' => 'small-text',
1040
+ 'default' => '70%',
1041
+ 'description' => ' '
 
1042
  ),
1043
  'height' => array (
1044
+ 'id' => 'fancybox_iFrameheight',
1045
+ 'title' => __('Height'),
1046
+ 'label_for' => 'fancybox_iFrameheight',
1047
+ 'input' => 'text',
1048
+ 'class' => 'small-text',
1049
+ 'default' => '90%',
 
1050
  ),
1051
  'padding' => array (
1052
+ 'id' => 'fancybox_iFramepadding',
1053
+ 'title' => __('Border'),
1054
+ 'label_for' => 'fancybox_iFramepadding',
1055
+ 'input' => 'text',
1056
+ 'class' => 'small-text',
1057
+ 'default' => '0',
1058
+ 'description' => '<br /><br />'
1059
+ ),
1060
+ 'scrolling' => array (
1061
+ 'default' => 'auto'
1062
+ ),
1063
+ 'autoScale' => array (
1064
+ 'noquotes' => true,
1065
+ 'default' => 'false'
1066
  ),
1067
  'titleShow' => array (
1068
+ 'id' => 'fancybox_iFrametitleShow',
1069
+ 'input' => 'checkbox',
1070
+ 'default' => '',
1071
+ 'description' => __('Show title','easy-fancybox')
 
1072
  ),
1073
  'titlePosition' => array (
1074
+ 'id' => 'fancybox_iFrametitlePosition',
1075
+ 'title' => __('Title Position','easy-fancybox'),
1076
+ 'label_for' => 'fancybox_iFrametitlePosition',
1077
+ 'input' => 'select',
1078
+ 'options' => array(
1079
+ 'float' => __('Float','easy-fancybox'), // same as 'float'
1080
+ 'outside' => __('Outside','easy-fancybox'),
1081
+ 'inside' => __('Inside','easy-fancybox')
1082
+ //,'over' => __('Overlay','easy-fancybox')
1083
+ ),
1084
+ 'default' => 'float',
1085
  ),
1086
  'titleFromAlt' => array (
1087
+ 'id' => 'fancybox_iFrametitleFromAlt',
1088
+ 'input' => 'checkbox',
1089
+ 'default' => '1',
1090
+ 'description' => __('Allow title from thumbnail alt tag','easy-fancybox')
 
1091
  )
1092
  )
1093
  )
1094
 
1095
  );
 
 
 
1096
  }
 
 
easy-fancybox-tr_TR.mo ADDED
Binary file
languages/easy-fancybox-ua_UA.mo → easy-fancybox-ua_UA.mo RENAMED
File without changes
easy-fancybox.css.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* -------------------------------------
3
+ Easy Fancybox Styleheet Conversion
4
+ ------------------------------------- */
5
+
6
+ header('Content-type: text/css; charset=utf-8', true);
7
+ ob_start("iepathfix_compress");
8
+
9
+ function iepathfix_compress($buffer) {
10
+ global $url;
11
+ /* Relative path fix : add 'fancybox/'
12
+ * IE6 path fix : replace relative with full path */
13
+ $buffer = str_replace(array("url('", "AlphaImageLoader(src='fancybox/"), array("url('fancybox/", "AlphaImageLoader(src='" . $url . "/fancybox/" ), $buffer);
14
+ /* remove comments */
15
+ $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
16
+ /* remove tabs and newlines */
17
+ $buffer = str_replace(array("\r", "\n", "\t"), '', $buffer);
18
+ /* and squeeze some more */
19
+ $buffer = str_replace(array(", ", ": ", " {", "{ ", " }", "} ", "; ", " 0;"), array(",", ":", "{", "{", "}", "}", ";", ";"), $buffer);
20
+ return $buffer;
21
+ }
22
+
23
+ $url = ( ( isset($_SERVER['HTTPS']) ) ? "https://" : "http://" ) . htmlspecialchars( $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']), ENT_QUOTES);
24
+
25
+ /* the css file */
26
+ $version = preg_match( '`^\d{1,2}\.\d{1,2}(\.\d{1,2})?$`' , $_GET['ver'] ) ? $_GET['ver'] : '';
27
+ include( dirname(__FILE__) . '/fancybox/jquery.fancybox-' . htmlspecialchars( $version , ENT_QUOTES) . '.css' );
28
+
29
+ /* extra styles */
30
+ //echo '.fancybox-hidden{display:none}';
31
+
32
+ ob_end_flush();
33
+ ?>
easy-fancybox.php CHANGED
@@ -4,64 +4,467 @@ Plugin Name: Easy FancyBox
4
  Plugin URI: http://status301.net/wordpress-plugins/easy-fancybox/
5
  Description: Easily enable the <a href="http://fancybox.net/">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content.
6
  Text Domain: easy-fancybox
7
- Domain Path: languages
8
- Version: 1.5.6
9
  Author: RavanH
10
  Author URI: http://status301.net/
11
  */
12
 
13
- /* Copyright 2013 RavanH (email : ravanhagen@gmail.com)
14
 
15
- This program is free software; you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation; either version 2 of the License, or
18
- (at your option) any later version.
19
-
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
-
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
- */
29
-
30
- /*
31
- For Installation instructions, usage, revision history and other info: see readme.txt included in this package
32
- */
33
-
34
-
35
- /**************
36
- * CONSTANTS
37
- **************/
38
-
39
- define( 'EASY_FANCYBOX_VERSION', '1.5.6' );
40
- define( 'FANCYBOX_VERSION', '1.3.6' );
41
- //define( 'FANCYBOX2_VERSION', '2.0.6' );
42
- define( 'MOUSEWHEEL_VERSION', '3.1.3' );
43
  define( 'EASING_VERSION', '1.3' );
44
  define( 'METADATA_VERSION', '2.1' );
45
- define( 'EASY_FANCYBOX_PLUGINBASENAME', plugin_basename(__FILE__) );
46
- define( 'EASY_FANCYBOX_PLUGINFILE', basename(__FILE__) );
47
 
48
  // Check if easy-fancybox.php is moved one dir up like in WPMU's /mu-plugins/
49
  // or if plugins_url() returns the main plugins dir location as it does on
50
  // a Debian repository install.
51
  // NOTE: WP_PLUGIN_URL causes problems when installed in /mu-plugins/
52
- if( !stristr( plugins_url( '', __FILE__ ), '/easy-fancybox' ) )
53
- define( 'EASY_FANCYBOX_SUBDIR', 'easy-fancybox/' );
 
 
 
 
 
 
54
  else
55
- define( 'EASY_FANCYBOX_SUBDIR', '' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
- define( 'EASY_FANCYBOX_PLUGINDIR', dirname(__FILE__) . '/' . EASY_FANCYBOX_SUBDIR );
58
- define( 'EASY_FANCYBOX_PLUGINURL', plugins_url( '/' . EASY_FANCYBOX_SUBDIR, __FILE__ ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
 
60
 
61
- /**************
62
- * CLASS
63
- **************/
64
- require_once(EASY_FANCYBOX_PLUGINDIR . 'easy-fancybox-class.php');
65
 
66
- easyFancyBox::run();
 
 
67
 
4
  Plugin URI: http://status301.net/wordpress-plugins/easy-fancybox/
5
  Description: Easily enable the <a href="http://fancybox.net/">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content.
6
  Text Domain: easy-fancybox
7
+ Version: 1.3.4.9
 
8
  Author: RavanH
9
  Author URI: http://status301.net/
10
  */
11
 
12
+ // DEF
13
 
14
+ define( 'EASY_FANCYBOX_VERSION', '1.3.4.9' );
15
+ define( 'FANCYBOX_VERSION', '1.3.4' );
16
+ define( 'MOUSEWHEEL_VERSION', '3.0.4' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  define( 'EASING_VERSION', '1.3' );
18
  define( 'METADATA_VERSION', '2.1' );
 
 
19
 
20
  // Check if easy-fancybox.php is moved one dir up like in WPMU's /mu-plugins/
21
  // or if plugins_url() returns the main plugins dir location as it does on
22
  // a Debian repository install.
23
  // NOTE: WP_PLUGIN_URL causes problems when installed in /mu-plugins/
24
+ if(!stristr(plugins_url('', __FILE__),'/easy-fancybox'))
25
+ define( 'FANCYBOX_SUBDIR', '/easy-fancybox' );
26
+ else
27
+ define( 'FANCYBOX_SUBDIR', '' );
28
+
29
+ /* CHECK FOR NETWORK ACTIVATION
30
+ if (function_exists('is_plugin_active_for_network') && is_plugin_active_for_network(plugin_basename( __FILE__ )))
31
+ $no_network_activate = '';
32
  else
33
+ $no_network_activate = '1';
34
+ */
35
+
36
+ $easy_fancybox_array = array();
37
+
38
+ // FUNCTIONS //
39
+
40
+ function easy_fancybox() {
41
+ global $easy_fancybox_array;
42
+
43
+ echo '
44
+ <!-- Easy FancyBox ' . EASY_FANCYBOX_VERSION . ' using FancyBox ' . FANCYBOX_VERSION . ' - RavanH (http://4visions.nl/en/wordpress-plugins/easy-fancybox/) -->';
45
+
46
+ // check for any enabled sections
47
+ $do_fancybox = false;
48
+ foreach ($easy_fancybox_array['Global']['options']['Enable']['options'] as $value) {
49
+ // anything enabled?
50
+ if ( '1' == get_option($value['id'],$value['default']) ) {
51
+ $do_fancybox = true;
52
+ break;
53
+ }
54
+ }
55
+ // and break off when none are active
56
+ if (!$do_fancybox) {
57
+ echo '
58
+ <!-- No sections enabled under Settings > Media > FancyBox -->
59
+
60
+ ';
61
+ return;
62
+ }
63
+
64
+ // begin output FancyBox settings
65
+ echo '
66
+ <script type="text/javascript">
67
+ /* <![CDATA[ */
68
+ jQuery(document).ready(function($){
69
+ var fb_timeout = null;';
70
+
71
+ /*
72
+ * Global settings routine
73
+ */
74
+ $more=0;
75
+ echo '
76
+ var fb_opts = {';
77
+ foreach ($easy_fancybox_array['Global']['options'] as $globals) {
78
+ foreach ($globals['options'] as $_key => $_value) {
79
+ $parm = ($_value['id']) ? get_option($_value['id'], $_value['default']) : $_value['default'];
80
+ $parm = ('checkbox'==$_value['input'] && ''==$parm) ? '0' : $parm;
81
+ if(!$_value['hide'] && $parm!='') {
82
+ $quote = (is_numeric($parm) || $_value['noquotes']) ? '' : '\'';
83
+ if ($more>0)
84
+ echo ',';
85
+ echo ' \''.$_key.'\' : ';
86
+ if ('checkbox'==$_value['input'])
87
+ echo ( '1' == $parm ) ? 'true' : 'false';
88
+ else
89
+ echo $quote.$parm.$quote;
90
+ $more++;
91
+ } else {
92
+ $$_key = $parm;
93
+ }
94
+ }
95
+ }
96
+ echo ' };';
97
+
98
+ foreach ($easy_fancybox_array as $key => $value) {
99
+ // check if not enabled or hide=true then skip
100
+ if ( $value['hide'] || !get_option($easy_fancybox_array['Global']['options']['Enable']['options'][$key]['id'], $easy_fancybox_array['Global']['options']['Enable']['options'][$key]['default']) )
101
+ continue;
102
+
103
+ echo '
104
+ /* ' . $key . ' */';
105
+ /*
106
+ * Auto-detection routines (2x)
107
+ */
108
+ $autoAttribute = get_option( $value['options']['autoAttribute']['id'], $value['options']['autoAttribute']['default'] );
109
+ // update from previous version:
110
+ if($attributeLimit == '.not(\':empty\')')
111
+ $attributeLimit = ':not(:empty)';
112
+ elseif($attributeLimit == '.has(\'img\')')
113
+ $attributeLimit = ':has(img)';
114
+
115
+ if(!empty($autoAttribute)) {
116
+ if(is_numeric($autoAttribute)) {
117
+ echo '
118
+ $(\'a['.$value['options']['autoAttribute']['selector'].']:not(.nofancybox)'.$attributeLimit.'\')';
119
+ if ($value['options']['autoAttribute']['href-replace'])
120
+ echo '.attr(\'href\', function(index, attr){'.$value['options']['autoAttribute']['href-replace'].'})';
121
+ echo '.addClass(\''.$value['options']['class']['default'].'\');';
122
+ } else {
123
+ // set selectors
124
+ $file_types = array_filter( explode( ' ', str_replace( ',', ' ', $autoAttribute ) ) );
125
+ $more=0;
126
+ echo '
127
+ var fb_'.$key.'_select = \'';
128
+ foreach ($file_types as $type) {
129
+ if ($more>0)
130
+ echo ',';
131
+ echo 'a['.$value['options']['autoAttribute']['selector'].'".'.$type.'"]:not(.nofancybox)'.$attributeLimit.',a['.$value['options']['autoAttribute']['selector'].'".'.strtoupper($type).'"]:not(.nofancybox)'.$attributeLimit;
132
+ $more++;
133
+ }
134
+ echo '\';';
135
+
136
+ // class and rel depending on settings
137
+ if( '1' == get_option($value['options']['autoAttributeLimit']['id'],$value['options']['autoAttributeLimit']['default']) ) {
138
+ // add class
139
+ echo '
140
+ var fb_'.$key.'_sections = jQuery(\''.get_option($value['options']['autoSelector']['id'],$value['options']['autoSelector']['default']).'\');
141
+ fb_'.$key.'_sections.each(function() { jQuery(this).find(fb_'.$key.'_select).addClass(\''.$value['options']['class']['default'].'\')';
142
+ // and set rel
143
+ switch( get_option($value['options']['autoGallery']['id'],$value['options']['autoGallery']['default']) ) {
144
+ case '':
145
+ default :
146
+ echo '; });';
147
+ break;
148
+ case '1':
149
+ echo '.attr(\'rel\', \'gallery-\' + fb_'.$key.'_sections.index(this)); });';
150
+ break;
151
+ case '2':
152
+ echo '.attr(\'rel\', \'gallery\'); });';
153
+ }
154
+ } else {
155
+ // add class
156
+ echo '
157
+ $(fb_'.$key.'_select).addClass(\''.$value['options']['class']['default'].'\')';
158
+ // set rel
159
+ switch( get_option($value['options']['autoGallery']['id'],$value['options']['autoGallery']['default']) ) {
160
+ case '':
161
+ default :
162
+ echo ';';
163
+ break;
164
+ case '1':
165
+ echo ';
166
+ var fb_'.$key.'_sections = jQuery(\''.get_option($value['options']['autoSelector']['id'],$value['options']['autoSelector']['default']).'\');
167
+ fb_'.$key.'_sections.each(function() { jQuery(this).find(fb_'.$key.'_select).attr(\'rel\', \'gallery-\' + fb_'.$key.'_sections.index(this)); });';
168
+ break;
169
+ case '2':
170
+ echo '.attr(\'rel\', \'gallery\');';
171
+ }
172
+ }
173
+
174
+ }
175
+ }
176
+
177
+ $autoAttributeAlt = get_option( $value['options']['autoAttributeAlt']['id'], $value['options']['autoAttributeAlt']['default'] );
178
+ if(!empty($autoAttributeAlt) && is_numeric($autoAttributeAlt)) {
179
+ echo '
180
+ $(\'a['.$value['options']['autoAttributeAlt']['selector'].']:not(.nofancybox)'.$attributeLimit.'\')';
181
+ if ($value['options']['autoAttributeAlt']['href-replace'])
182
+ echo '.attr(\'href\', function(index, attr){'.$value['options']['autoAttributeAlt']['href-replace']. '})';
183
+ echo '.addClass(\''.$value['options']['class']['default'].'\');';
184
+ }
185
+
186
+ /*
187
+ * Append .fancybox() function
188
+ */
189
+ $trigger='';
190
+ if( $key == $autoClick )
191
+ $trigger = '.filter(\':first\').trigger(\'click\')';
192
+
193
+ echo '
194
+ $(\'';
195
+ $tags = array_filter( explode( ',' , $value['options']['tag']['default'] ));
196
+ $more=0;
197
+ foreach ($tags as $_tag) {
198
+ if ($more>0)
199
+ echo ',';
200
+ echo $_tag.'.'.$value['options']['class']['default'];
201
+ $more++;
202
+ }
203
+ echo '\').fancybox( $.extend({}, fb_opts, {';
204
+ $more=0;
205
+ foreach ($value['options'] as $_key => $_values) {
206
+ $parm = ($_values['id']) ? get_option($_values['id'], $_values['default']) : $_values['default'];
207
+ $parm = ('checkbox'==$_values['input'] && ''==$parm) ? '0' : $parm;
208
+ if(!$_values['hide'] && $parm!='') {
209
+ $quote = (is_numeric($parm) || $_values['noquotes']) ? '' : '\'';
210
+ if ($more>0)
211
+ echo ',';
212
+ echo ' \''.$_key.'\' : ';
213
+ if ('checkbox'==$_values['input'])
214
+ echo ( '1' == $parm ) ? 'true' : 'false';
215
+ else
216
+ echo $quote.$parm.$quote;
217
+ $more++;
218
+ }
219
+ }
220
+ echo ' }) )'.$trigger.';';
221
+
222
+ }
223
+
224
+ switch( $autoClick ) {
225
+ case '':
226
+ default :
227
+ break;
228
+ case '1':
229
+ echo '
230
+ /* Auto-click */
231
+ $(\'#fancybox-auto\').trigger(\'click\');';
232
+ break;
233
+ case '99':
234
+ echo '
235
+ /* Auto-load */
236
+ $(\'a[class*="fancybox"]\').filter(\':first\').trigger(\'click\');';
237
+ break;
238
+ }
239
+ echo '
240
+ });
241
+ /* ]]> */
242
+ </script>
243
+ <style type="text/css">.fancybox-hidden{display:none}';
244
+
245
+ if ('1' == $overlaySpotlight)
246
+ echo '#fancybox-overlay{background-image:url("'. plugins_url(FANCYBOX_SUBDIR.'/light-mask.png', __FILE__) . '");background-position:50% -3%;background-repeat:no-repeat;-o-background-size:100%;-webkit-background-size:100%;-moz-background-size:100%;-khtml-background-size:100%;background-size:100%;position:fixed}';
247
+ if ('' != $backgroundColor)
248
+ echo '#fancybox-outer{background-color:'.$backgroundColor.'}';
249
+ if ('' != $paddingColor)
250
+ echo '#fancybox-content{border-color:'.$paddingColor.'}';
251
+ if ('' != $textColor)
252
+ echo '#fancybox-content{color:'.$textColor.'}';
253
+ if ('' != $frameOpacity) {
254
+ $frameOpacity_percent = (int)$frameOpacity*100;
255
+ echo '#fancybox-outer{filter:alpha(opacity='.$frameOpacity_percent.');-moz-opacity:'.$frameOpacity.';opacity:'.$frameOpacity.'}';
256
+ }
257
+ echo '</style>
258
+ ';
259
+
260
+ }
261
+
262
+ // FancyBox Media Settings Section on Settings > Media admin page
263
+ function easy_fancybox_settings_section() {
264
+ echo '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox&item_number='.EASY_FANCYBOX_VERSION.'&no_shipping=0&tax=0&charset=UTF%2d8&currency_code=EUR" title="'.__('Donate to Easy FancyBox plugin development with PayPal - it\'s fast, free and secure!','easy-fancybox').'"><img src="https://www.paypal.com/en_US/i/btn/x-click-but7.gif" style="border:none;float:right;margin:0 0 10px 10px" alt="'.__('Donate to Easy FancyBox plugin development with PayPal - it\'s fast, free and secure!','easy-fancybox').'" width="72" height="29" /></a><p>'.__('The options in this section are provided by the plugin <strong><a href="http://4visions.nl/en/wordpress-plugins/easy-fancybox/">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href="http://fancybox.net/">FancyBox</a></strong>.','easy-fancybox').' '.__('First enable each sub-section that you need. Then save and come back to adjust its specific settings.','easy-fancybox').'</p><p>'.__('Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site.','easy-fancybox').' '.__('Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability.','easy-fancybox').'</p>';
265
+ }
266
+
267
+ // FancyBox Media Settings Fields
268
+ function easy_fancybox_settings_fields($args){
269
+ switch($args['input']) {
270
+ case 'multiple':
271
+ case 'deep':
272
+ foreach ($args['options'] as $options)
273
+ easy_fancybox_settings_fields($options);
274
+ echo $args['description'];
275
+ break;
276
+ case 'select':
277
+ if( !empty($args['label_for']) )
278
+ echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
279
+ else
280
+ echo $args['title'];
281
+ echo '
282
+ <select name="'.$args['id'].'" id="'.$args['id'].'">';
283
+ foreach ($args['options'] as $optionkey => $optionvalue) {
284
+ $selected = (get_option($args['id'], $args['default']) == $optionkey) ? ' selected="selected"' : '';
285
+ echo '
286
+ <option value="'.esc_attr($optionkey).'"'.$selected.'>'.$optionvalue.'</option>';
287
+ }
288
+ echo '
289
+ </select> ';
290
+ if( empty($args['label_for']) )
291
+ echo '<label for="'.$args['id'].'">'.$args['description'].'</label> ';
292
+ else
293
+ echo $args['description'];
294
+ break;
295
+ case 'checkbox':
296
+ if( !empty($args['label_for']) )
297
+ echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
298
+ else
299
+ echo $args['title'];
300
+ $value = esc_attr( get_option($args['id'], $args['default']) );
301
+ if ($value == "1")
302
+ $checked = ' checked="checked"';
303
+ else
304
+ $checked = '';
305
+ if ($args['default'] == "1")
306
+ $default = __('Checked','easy-fancybox');
307
+ else
308
+ $default = __('Unchecked','easy-fancybox');
309
+ if( empty($args['label_for']) )
310
+ echo '
311
+ <label><input type="checkbox" name="'.$args['id'].'" id="'.$args['id'].'" value="1" '.$checked.'/> '.$args['description'].'</label><br />';
312
+ else
313
+ echo '
314
+ <input type="checkbox" name="'.$args['id'].'" id="'.$args['id'].'" value="1" '.$checked.'/> '.$args['description'].'<br />';
315
+ break;
316
+ case 'text':
317
+ if( !empty($args['label_for']) )
318
+ echo '<label for="'.$args['label_for'].'">'.$args['title'].'</label> ';
319
+ else
320
+ echo $args['title'];
321
+ echo '
322
+ <input type="text" name="'.$args['id'].'" id="'.$args['id'].'" value="'.esc_attr( get_option($args['id'], $args['default']) ).'" class="'.$args['class'].'"/> ';
323
+ if( empty($args['label_for']) )
324
+ echo '<label for="'.$args['id'].'">'.$args['description'].'</label> ';
325
+ else
326
+ echo $args['description'];
327
+ break;
328
+ default:
329
+ echo $args['description'];
330
+ }
331
+ }
332
+
333
+
334
+ function easy_fancybox_register_settings($args){
335
+ global $easy_fancybox_array;
336
+ foreach ($args as $key => $value) {
337
+ // check to see if the section is enabled, else skip to next
338
+ if ( array_key_exists($key, $easy_fancybox_array['Global']['options']['Enable']['options']) && !get_option($easy_fancybox_array['Global']['options']['Enable']['options'][$key]['id'], $easy_fancybox_array['Global']['options']['Enable']['options'][$key]['default']) )
339
+ continue;
340
+
341
+ switch($value['input']) {
342
+ case 'deep':
343
+ // go deeper and loop back on itself
344
+ easy_fancybox_register_settings($value['options']);
345
+ break;
346
+ case 'multiple':
347
+ add_settings_field( 'fancybox_'.$key, $value['title'], 'easy_fancybox_settings_fields', 'media', 'fancybox_section', $value);
348
+ foreach ($value['options'] as $_value)
349
+ if ($_value['id']) register_setting( 'media', $_value['id'] );
350
+ break;
351
+ default:
352
+ if ($value['id']) register_setting( 'media', 'fancybox_'.$key );
353
+ }
354
+ }
355
+ }
356
+
357
+ function easy_fancybox_init(){
358
+ global $easy_fancybox_array;
359
+ require_once(dirname(__FILE__) . FANCYBOX_SUBDIR . '/easy-fancybox-settings.php');
360
+
361
+ $easy_fancybox_array = easy_fancybox_settings();
362
+ }
363
+
364
+ function easy_fancybox_admin_init(){
365
+ add_settings_section('fancybox_section', __('FancyBox','easy-fancybox'), 'easy_fancybox_settings_section', 'media');
366
+
367
+ global $easy_fancybox_array;
368
+ easy_fancybox_register_settings($easy_fancybox_array);
369
+ }
370
+
371
+ function easy_fancybox_textdomain(){
372
+ if ( is_admin() ) {
373
+ load_plugin_textdomain('easy-fancybox', false, dirname(plugin_basename( __FILE__ )));
374
+ }
375
+ }
376
+
377
+ function easy_fancybox_enqueue_scripts() {
378
+ global $easy_fancybox_array;
379
+
380
+ // check for any enabled sections plus the need for easing script
381
+ $do_fancybox = false;
382
+ $easing = false;
383
+
384
+ foreach ($easy_fancybox_array['Global']['options']['Enable']['options'] as $value) {
385
+ // anything enabled?
386
+ if ( '1' == get_option($value['id'],$value['default']) ) {
387
+ $do_fancybox = true;
388
+ break;
389
+ }
390
+ }
391
+
392
+ // break off if there is no need for any script files
393
+ if (!$do_fancybox)
394
+ return;
395
+
396
+ // ENQUEUE
397
+ // first get rid of previously registered variants of jquery.fancybox by other plugins or theme
398
+ wp_deregister_script('jquery.fancybox');
399
+ wp_deregister_script('fancybox');
400
+ wp_deregister_script('jquery-fancybox');
401
+ // register main fancybox script
402
+ wp_enqueue_script('jquery.fancybox', plugins_url(FANCYBOX_SUBDIR.'/fancybox/jquery.fancybox-'.FANCYBOX_VERSION.'.pack.js', __FILE__), array('jquery'), FANCYBOX_VERSION);
403
+
404
+ // easing in IMG settings?
405
+ if ( ( 'elastic' == get_option($easy_fancybox_array['IMG']['options']['transitionIn']['id'],$easy_fancybox_array['IMG']['options']['transitionIn']['default']) ||
406
+ 'elastic' == get_option($easy_fancybox_array['IMG']['options']['transitionOut']['id'],$easy_fancybox_array['IMG']['options']['transitionOut']['default']) )
407
+ &&
408
+ ( '' != get_option($easy_fancybox_array['IMG']['options']['easingIn']['id'],$easy_fancybox_array['IMG']['options']['easingIn']['default']) ||
409
+ '' != get_option($easy_fancybox_array['IMG']['options']['easingOut']['id'],$easy_fancybox_array['IMG']['options']['easingOut']['default']) ) ) {
410
+ // first get rid of previously registered variants of jquery.easing by other plugins or theme
411
+ wp_deregister_script('jquery.easing');
412
+ wp_deregister_script('jqueryeasing');
413
+ wp_deregister_script('jquery-easing');
414
+ wp_deregister_script('easing');
415
+ // then register our version
416
+ wp_enqueue_script('jquery.easing', plugins_url(FANCYBOX_SUBDIR.'/fancybox/jquery.easing-'.EASING_VERSION.'.pack.js', __FILE__), array('jquery'), EASING_VERSION, true);
417
+ }
418
+
419
+ // first get rid of previously registered variants of jquery.mousewheel (by other plugins)
420
+ wp_deregister_script('jquery.mousewheel');
421
+ wp_deregister_script('jquerymousewheel');
422
+ wp_deregister_script('jquery-mousewheel');
423
+ wp_deregister_script('mousewheel');
424
+ // then register our version
425
+ wp_enqueue_script('jquery.mousewheel', plugins_url(FANCYBOX_SUBDIR.'/fancybox/jquery.mousewheel-'.MOUSEWHEEL_VERSION.'.pack.js', __FILE__), array('jquery'), MOUSEWHEEL_VERSION, true);
426
+
427
+ // first get rid of previously registered variants of jquery.metadata (by other plugins)
428
+ wp_deregister_script('jquery.metadata');
429
+ wp_deregister_script('jquerymetadata');
430
+ wp_deregister_script('jquery-metadata');
431
+ wp_deregister_script('metadata');
432
+ // then register our version
433
+ wp_enqueue_script('jquery.metadata',plugins_url(FANCYBOX_SUBDIR.'/jquery.metadata.js', __FILE__), array('jquery'), METADATA_VERSION, true);
434
+ }
435
+
436
+ function easy_fancybox_enqueue_styles() {
437
+ // register style
438
+ wp_enqueue_style('easy-fancybox.css', plugins_url(FANCYBOX_SUBDIR.'/easy-fancybox.css.php', __FILE__), false, FANCYBOX_VERSION, 'screen');
439
+ }
440
 
441
+ // Hack to fix missing wmode in (auto)embed code based on Crantea Mihaita's work-around on
442
+ // http://www.mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html
443
+ // + own hack for dailymotion iframe embed...
444
+ if(!function_exists('add_video_wmode_opaque')) {
445
+ function add_video_wmode_opaque($html, $url, $attr) {
446
+ if ( strpos($html, "<embed src=" ) !== false ) {
447
+ return str_replace('</param><embed', '</param><param name="wmode" value="opaque"></param><embed wmode="opaque" ', $html);
448
+ } elseif ( strpos($html, 'youtube' ) !== false && strpos($html, 'wmode' ) == false ) {
449
+ return str_replace('feature=oembed', 'feature=oembed&wmode=opaque', $html);
450
+ } elseif ( strpos($html, "vimeo" ) !== false && strpos($html, 'wmode' ) == false ) {
451
+ return str_replace('" width', '?theme=none&wmode=opaque" width', $html);
452
+ } elseif ( strpos($html, "dailymotion" ) !== false && strpos($html, 'wmode' ) == false ) {
453
+ return str_replace('" width', '?wmode=opaque" width', $html);
454
+ } else {
455
+ return $html;
456
+ }
457
+ }
458
+ }
459
 
460
+ // HOOKS //
461
 
462
+ add_filter('embed_oembed_html', 'add_video_wmode_opaque', 10, 3);
463
+ add_action('wp_print_styles', 'easy_fancybox_enqueue_styles', 999);
464
+ add_action('wp_enqueue_scripts', 'easy_fancybox_enqueue_scripts', 999);
465
+ add_action('wp_head', 'easy_fancybox', 999);
466
 
467
+ add_action('plugins_loaded','easy_fancybox_textdomain');
468
+ add_action('init','easy_fancybox_init');
469
+ add_action('admin_init','easy_fancybox_admin_init');
470
 
languages/easy-fancybox_sk_SK.po → easy-fancybox.pot RENAMED
@@ -1,3 +1,4 @@
 
1
  # This file is distributed under the same license as the Easy FancyBox package.
2
  msgid ""
3
  msgstr ""
@@ -7,18 +8,15 @@ msgstr ""
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "PO-Revision-Date: 2012-12-05 14:14+0300\n"
11
- "Last-Translator: Branco <br.radenovich@gmail.com>\n"
12
  "Language-Team: LANGUAGE <LL@li.org>\n"
13
- "X-Generator: Poedit 1.5.4\n"
14
 
15
  #: easy-fancybox.php:266
16
  msgid ""
17
  "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and "
18
  "secure!"
19
  msgstr ""
20
- "Prispejte Easy rozvoju FancyBox plugin cez PayPal - je to rýchle, bezplatné "
21
- "a bezpečné!"
22
 
23
  #: easy-fancybox.php:266
24
  msgid ""
@@ -28,19 +26,12 @@ msgid ""
28
  "appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/"
29
  "\">FancyBox</a></strong>."
30
  msgstr ""
31
- "Možnosti v tejto časti sú poskytované plugin <strong> <a href="
32
- "\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\"> Easy FancyBox </ "
33
- "a> </ strong> a určiť <strong> Media lightbox </ strong> prekrytie vzhľad a "
34
- "správanie riadené <strong> <a href=\"http://fancybox.net/\"> FancyBox </ a> "
35
- "</ strong>."
36
 
37
  #: easy-fancybox.php:266
38
  msgid ""
39
  "First enable each sub-section that you need. Then save and come back to "
40
  "adjust its specific settings."
41
  msgstr ""
42
- "Prvý umožniť každému sub-sekcie, ktoré budete potrebovať. Potom uložiť a "
43
- "vrátiť sa k úprave svoje špecifické nastavenia"
44
 
45
  #: easy-fancybox.php:266
46
  msgid ""
@@ -49,255 +40,244 @@ msgid ""
49
  "will have some extra impact on client-side page speed. Enable only those sub-"
50
  "sections and options that you actually need on your site."
51
  msgstr ""
52
- "Poznámka: Každá ďalšia sub-sekcie a funkcie ako <em> Auto-detekcia </ em>, "
53
- "<em> elastické prechodov </ em> a všetko <em> Zmiernenie účinky </ em> "
54
- "(okrem Swing) bude mať nejaké extra vplyv na strane klienta stránku "
55
- "rýchlosti. Povoliť iba tie sub-sekcie a možnosti, ktoré ste skutočne "
56
- "potrebujete na vašom webe."
57
 
58
  #: easy-fancybox.php:266
59
  msgid ""
60
  "Some setting like Transition options are unavailable for SWF video, PDF and "
61
  "iFrame content to ensure browser compatibility and readability."
62
  msgstr ""
63
- "Niektoré nastavenia ako tranzitívne možnosti sú k dispozícii pre SWF videa, "
64
- "PDF a iFrame obsahu s cieľom zabezpečiť kompatibilitu prehliadača a "
65
- "čitateľnosť."
66
 
67
  #: easy-fancybox.php:308
68
  msgid "Checked"
69
- msgstr "Skontrolovať"
70
 
71
  #: easy-fancybox.php:310
72
  msgid "Unchecked"
73
- msgstr "Nekontrolovaná"
74
 
75
  #: easy-fancybox.php:362
76
  msgid "FancyBox"
77
- msgstr "FancyBox"
78
 
79
  #: easy-fancybox-settings.php:6
80
  msgid "Global settings"
81
- msgstr "Globálne nastavenia"
82
 
83
  #: easy-fancybox-settings.php:15
84
  msgid "Enable FancyBox for"
85
- msgstr "Povoliť FancyBox pre"
86
 
87
  #: easy-fancybox-settings.php:24 easy-fancybox-settings.php:316
88
  msgid "Images & Inline content"
89
- msgstr "Obrázky & Inline obsah"
90
 
91
  #: easy-fancybox-settings.php:31 easy-fancybox-settings.php:489
92
  msgid "PDF"
93
- msgstr "PDF"
94
 
95
  #: easy-fancybox-settings.php:38 easy-fancybox-settings.php:606
96
  msgid "SWF"
97
- msgstr "SWF"
98
 
99
  #: easy-fancybox-settings.php:45 easy-fancybox-settings.php:697
100
  msgid "YouTube"
101
- msgstr "YouTube"
102
 
103
  #: easy-fancybox-settings.php:52 easy-fancybox-settings.php:800
104
  msgid "Vimeo"
105
- msgstr "Vime"
106
 
107
  #: easy-fancybox-settings.php:59 easy-fancybox-settings.php:895
108
  msgid "Dailymotion"
109
- msgstr "Dailymotion"
110
 
111
  #: easy-fancybox-settings.php:66 easy-fancybox-settings.php:1016
112
  msgid "iFrames"
113
- msgstr "Iframe"
114
 
115
  #: easy-fancybox-settings.php:71
116
  msgid "Links"
117
- msgstr "Odkazy"
118
 
119
  #: easy-fancybox-settings.php:81
120
  msgid "Exclude"
121
- msgstr "Vylúčiť"
122
 
123
  #: easy-fancybox-settings.php:86 easy-fancybox-settings.php:100
124
  #: easy-fancybox-settings.php:295 easy-fancybox-settings.php:383
125
  #: easy-fancybox-settings.php:411
126
  msgid "None"
127
- msgstr "Žiadny"
128
 
129
  #: easy-fancybox-settings.php:87
130
  msgid "Empty (hidden) links"
131
- msgstr "Prázdne (skryté) Odkazy"
132
 
133
  #: easy-fancybox-settings.php:88
134
  msgid "Without thumbnail image"
135
- msgstr "Bez miniatúru"
136
 
137
  #: easy-fancybox-settings.php:95
138
  msgid "Auto-open"
139
- msgstr "Auto-otvorený"
140
 
141
  #: easy-fancybox-settings.php:101
142
  msgid "Link with ID \"fancybox-auto\""
143
- msgstr "Link s ID \"fancybox-auto\""
144
 
145
  #: easy-fancybox-settings.php:102
146
  msgid "First Image link"
147
- msgstr "Prvý obrázok odkaz"
148
 
149
  #: easy-fancybox-settings.php:103
150
  msgid "First PDF link"
151
- msgstr "Prvý odkaz na PDF"
152
 
153
  #: easy-fancybox-settings.php:104
154
  msgid "First SWF link"
155
- msgstr "Prvý odkaz SWF"
156
 
157
  #: easy-fancybox-settings.php:105
158
  msgid "First YouTube link "
159
- msgstr "Prvý odkaz YouTube "
160
 
161
  #: easy-fancybox-settings.php:106
162
  msgid "First Vimeo link "
163
- msgstr "Prvý odkaz Vime "
164
 
165
  #: easy-fancybox-settings.php:107
166
  msgid "First Dailymotion link "
167
- msgstr "Prvý odkaz Dailymotion "
168
 
169
  #: easy-fancybox-settings.php:108
170
  msgid "First iFrame link"
171
- msgstr "Prvý odkaz iFrame"
172
 
173
  #: easy-fancybox-settings.php:109
174
  msgid "First of any link"
175
- msgstr "Prvý z akéhokoľvek odkazu"
176
 
177
  #: easy-fancybox-settings.php:117 easy-fancybox-settings.php:452
178
  msgid "Overlay"
179
- msgstr "Prekrytie"
180
 
181
  #: easy-fancybox-settings.php:125
182
  msgid "Show the overlay around content opened in FancyBox."
183
- msgstr "Zobraziť overlay okolo obsahu verejn FancyBox."
184
 
185
  #: easy-fancybox-settings.php:132
186
  msgid "Spotlight effect."
187
- msgstr "Reflektor efekt."
188
 
189
  #: easy-fancybox-settings.php:136 easy-fancybox-settings.php:227
190
  msgid "Opacity"
191
- msgstr "Nepriehľadnosť"
192
 
193
  #: easy-fancybox-settings.php:141
194
  msgid "Value between 0 and 1. "
195
- msgstr "Hodnota medzi 0 a 1. "
196
 
197
  #: easy-fancybox-settings.php:141 easy-fancybox-settings.php:150
198
  #: easy-fancybox-settings.php:188 easy-fancybox-settings.php:232
199
  #: easy-fancybox-settings.php:283 easy-fancybox-settings.php:332
200
  #: easy-fancybox-settings.php:345 easy-fancybox-settings.php:369
201
  msgid "Default:"
202
- msgstr "Predvolené:"
203
 
204
  #: easy-fancybox-settings.php:145 easy-fancybox-settings.php:192
205
  msgid "Color"
206
- msgstr "Farba"
207
 
208
  #: easy-fancybox-settings.php:150
209
  msgid "Enter an HTML color value."
210
- msgstr "Zadajte hodnotu farby HTML."
211
 
212
  #: easy-fancybox-settings.php:156
213
  msgid "Window"
214
- msgstr "Okno"
215
 
216
  #: easy-fancybox-settings.php:162
217
  msgid "Size"
218
- msgstr "Veľkosť"
219
 
220
  #: easy-fancybox-settings.php:166 easy-fancybox-settings.php:517
221
  #: easy-fancybox-settings.php:634 easy-fancybox-settings.php:735
222
  #: easy-fancybox-settings.php:829 easy-fancybox-settings.php:924
223
  #: easy-fancybox-settings.php:1036
224
  msgid "Width"
225
- msgstr "Šírka"
226
 
227
  #: easy-fancybox-settings.php:175 easy-fancybox-settings.php:526
228
  #: easy-fancybox-settings.php:644 easy-fancybox-settings.php:744
229
  #: easy-fancybox-settings.php:838 easy-fancybox-settings.php:933
230
  #: easy-fancybox-settings.php:1045
231
  msgid "Height"
232
- msgstr "Výška"
233
 
234
  #: easy-fancybox-settings.php:183 easy-fancybox-settings.php:207
235
  #: easy-fancybox-settings.php:534 easy-fancybox-settings.php:653
236
  #: easy-fancybox-settings.php:752 easy-fancybox-settings.php:846
237
  #: easy-fancybox-settings.php:941 easy-fancybox-settings.php:1053
238
  msgid "Border"
239
- msgstr "Orámovanie"
240
 
241
  #: easy-fancybox-settings.php:197
242
  msgid "Background"
243
- msgstr "Pozadie"
244
 
245
  #: easy-fancybox-settings.php:217
246
  msgid "Text"
247
- msgstr "Text"
248
 
249
  #: easy-fancybox-settings.php:236
250
  msgid "Behavior"
251
- msgstr "Správanie"
252
 
253
  #: easy-fancybox-settings.php:242
254
  msgid "Center while scrolling"
255
- msgstr "Centrum počas posúvania"
256
 
257
  #: easy-fancybox-settings.php:248
258
  msgid "Show the (X) close button"
259
- msgstr "Zobraziť tlačidlo zatvorenia (X)"
260
 
261
  #: easy-fancybox-settings.php:254
262
  msgid "Show the gallery navigation arrows"
263
- msgstr "Zobraziť galérie navigačné šípky"
264
 
265
  #: easy-fancybox-settings.php:262
266
  msgid "Opening speed"
267
- msgstr "Otvorenie rýchlosť"
268
 
269
  #: easy-fancybox-settings.php:270
270
  msgid "Closing speed"
271
- msgstr "Rýchlosť zatvárania"
272
 
273
  #: easy-fancybox-settings.php:278
274
  msgid "Fade speed"
275
- msgstr "Fade rýchlosť"
276
 
277
  #: easy-fancybox-settings.php:283
278
  msgid "Duration in milliseconds. Higher is slower."
279
- msgstr "Trvanie v milisekundách. Vyššia je pomalší."
280
 
281
  #: easy-fancybox-settings.php:291
282
  msgid "Advanced"
283
- msgstr "Pokročilé"
284
 
285
  #: easy-fancybox-settings.php:296
286
  msgid "Hide/show title on mouse hover action"
287
- msgstr "Skryť alebo zobraziť názov na hover akcia myši"
288
 
289
  #: easy-fancybox-settings.php:297
290
  msgid "Gallery Auto-rotation"
291
- msgstr "Galéria Auto-rotácie"
292
 
293
  #: easy-fancybox-settings.php:304
294
  msgid ""
295
  "Note: Hide/show title on mouse hover action works best with Overlay title "
296
  "position. Auto-rotation uses a fixed 5 second pause per image."
297
  msgstr ""
298
- "Poznámka: Skryť / zobraziť titul na myši akcii hover funguje najlepšie s "
299
- "postojom názvom Overlay. Auto-rotácie používa pevnú 5 sekúnd pauza na "
300
- "obrázok."
301
 
302
  #: easy-fancybox-settings.php:321
303
  msgid ""
@@ -305,55 +285,50 @@ msgid ""
305
  "field or use the class \"fancybox\" for its link. Clear field to switch off "
306
  "auto-enabling."
307
  msgstr ""
308
- "Ak chcete snímky otvorená v prekrytím, pridajte ich rozširovanie na auto-"
309
- "detekcia poľa alebo použiť triedu \"fancybox \" pre jeho väzby. Clear pole "
310
- "vypnúť automatické Povolenie."
311
 
312
  #: easy-fancybox-settings.php:325 easy-fancybox-settings.php:502
313
  #: easy-fancybox-settings.php:619 easy-fancybox-settings.php:711
314
  #: easy-fancybox-settings.php:814 easy-fancybox-settings.php:909
315
  msgid "Auto-detect"
316
- msgstr "Auto-detect"
317
 
318
  #: easy-fancybox-settings.php:336
319
  msgid "Apply to"
320
- msgstr "Uplatňovať na"
321
 
322
  #: easy-fancybox-settings.php:341
323
  msgid "All image links"
324
- msgstr "Všetky image Odkazy"
325
 
326
  #: easy-fancybox-settings.php:342
327
  msgid "Links inside Section(s) only (below)"
328
- msgstr "Odkazy vnútri sekcií iba (nižšie)"
329
 
330
  #: easy-fancybox-settings.php:349
331
  msgid "Auto-gallery"
332
- msgstr "Auto-Galéria"
333
 
334
  #: easy-fancybox-settings.php:354
335
  msgid "Disabled"
336
- msgstr "So zdravotným postihnutím"
337
 
338
  #: easy-fancybox-settings.php:355
339
  msgid "Galleries per Section (below)"
340
- msgstr "Galéria per sekcii (dole)"
341
 
342
  #: easy-fancybox-settings.php:356
343
  msgid "All in one gallery"
344
- msgstr "Všetko v jednej galérii"
345
 
346
  #: easy-fancybox-settings.php:359
347
  msgid ""
348
  "When disabled, you can use the rel attribute to manually group image links "
349
  "together."
350
  msgstr ""
351
- "Pri vypnutej, môžete použiť rel atribútu ručne odkazy skupina obrazových "
352
- "spoločne."
353
 
354
  #: easy-fancybox-settings.php:363
355
  msgid "Section(s)"
356
- msgstr "Sekcií"
357
 
358
  #: easy-fancybox-settings.php:369
359
  msgid ""
@@ -361,9 +336,6 @@ msgid ""
361
  "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
362
  "it to conform with your theme."
363
  msgstr ""
364
- "To platí v prípade <em> Použiť </ em> je nastavená na <em> obmedzeným § </ "
365
- "em> a / alebo <em> Auto-galéria </ em> je nastavená na <em> Galéria na § </ "
366
- "em >. Prispôsobiť ju v súlade so svojím témou."
367
 
368
  #: easy-fancybox-settings.php:369
369
  msgid ""
@@ -371,172 +343,154 @@ msgid ""
371
  "this value to \"div.post\". If you want to include images in a sidebar with "
372
  "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
373
  msgstr ""
374
- "Príklady: Ak váš motív zábaly príspevok obsah v div s triedou príspevku, "
375
- "túto hodnotu zmeniť na \"div.post \". Ak chcete zahrnúť obrazy v bočnom "
376
- "paneli s identifikačným primárnej, pridajte \",div #primárne \" alebo "
377
- "\"stranou # primárne \" pre témy HTML5."
378
 
379
  #: easy-fancybox-settings.php:377
380
  msgid "Transition In"
381
- msgstr "Prechod v"
382
 
383
  #: easy-fancybox-settings.php:381 easy-fancybox-settings.php:409
384
  msgid "Fade"
385
- msgstr "Fade"
386
 
387
  #: easy-fancybox-settings.php:382 easy-fancybox-settings.php:410
388
  msgid "Elastic"
389
- msgstr "Elastické"
390
 
391
  #: easy-fancybox-settings.php:390
392
  msgid "Easing In"
393
- msgstr "Zmiernenie v"
394
 
395
  #: easy-fancybox-settings.php:394 easy-fancybox-settings.php:422
396
  msgid "Linear"
397
- msgstr "Lineárne"
398
 
399
  #: easy-fancybox-settings.php:395 easy-fancybox-settings.php:423
400
  msgid "Swing"
401
- msgstr "Hojdačka"
402
 
403
  #: easy-fancybox-settings.php:396 easy-fancybox-settings.php:424
404
  msgid "Back"
405
- msgstr "Späť"
406
 
407
  #: easy-fancybox-settings.php:397 easy-fancybox-settings.php:425
408
  msgid "Quad"
409
- msgstr "Quad"
410
 
411
  #: easy-fancybox-settings.php:398 easy-fancybox-settings.php:426
412
  msgid "Expo"
413
- msgstr "Expo"
414
 
415
  #: easy-fancybox-settings.php:405
416
  msgid "Transition Out"
417
- msgstr "Prechod z"
418
 
419
  #: easy-fancybox-settings.php:418
420
  msgid "Easing Out"
421
- msgstr "Uvoľnenie z"
422
 
423
  #: easy-fancybox-settings.php:429
424
  msgid "Easing effects only apply when Transition is set to Elastic. "
425
  msgstr ""
426
- "Uvoľnenie účinky platné len v prípade prechodu je nastavená na elastické. "
427
 
428
  #: easy-fancybox-settings.php:435
429
  msgid "Transparency fade during elastic transition."
430
- msgstr "Transparentnosť slabnúť počas elastické prechodu."
431
 
432
  #: easy-fancybox-settings.php:441 easy-fancybox-settings.php:549
433
  #: easy-fancybox-settings.php:668 easy-fancybox-settings.php:767
434
  #: easy-fancybox-settings.php:861 easy-fancybox-settings.php:956
435
  #: easy-fancybox-settings.php:1071
436
  msgid "Show title"
437
- msgstr "Zobraziť Nadpis"
438
 
439
  #: easy-fancybox-settings.php:445 easy-fancybox-settings.php:553
440
  #: easy-fancybox-settings.php:672 easy-fancybox-settings.php:771
441
  #: easy-fancybox-settings.php:865 easy-fancybox-settings.php:960
442
  #: easy-fancybox-settings.php:1075
443
  msgid "Title Position"
444
- msgstr "Názov pozície"
445
 
446
  #: easy-fancybox-settings.php:449 easy-fancybox-settings.php:557
447
  #: easy-fancybox-settings.php:676 easy-fancybox-settings.php:775
448
  #: easy-fancybox-settings.php:869 easy-fancybox-settings.php:964
449
  #: easy-fancybox-settings.php:1079
450
  msgid "Float"
451
- msgstr "Plavák"
452
 
453
  #: easy-fancybox-settings.php:450 easy-fancybox-settings.php:558
454
  #: easy-fancybox-settings.php:677 easy-fancybox-settings.php:776
455
  #: easy-fancybox-settings.php:870 easy-fancybox-settings.php:965
456
  #: easy-fancybox-settings.php:1080
457
  msgid "Outside"
458
- msgstr "Vonku"
459
 
460
  #: easy-fancybox-settings.php:451 easy-fancybox-settings.php:559
461
  #: easy-fancybox-settings.php:678 easy-fancybox-settings.php:777
462
  #: easy-fancybox-settings.php:871 easy-fancybox-settings.php:966
463
  #: easy-fancybox-settings.php:1081
464
  msgid "Inside"
465
- msgstr "Vnútri"
466
 
467
  #: easy-fancybox-settings.php:461 easy-fancybox-settings.php:568
468
  #: easy-fancybox-settings.php:687 easy-fancybox-settings.php:786
469
  #: easy-fancybox-settings.php:880 easy-fancybox-settings.php:975
470
  #: easy-fancybox-settings.php:1090
471
  msgid "Allow title from thumbnail alt tag"
472
- msgstr "Povoliť titul z miniatúr alt tag"
473
 
474
  #: easy-fancybox-settings.php:494
475
  msgid ""
476
  "To make any PDF document file open in an overlay, switch on auto-detect or "
477
  "use the class \"fancybox-pdf\" for its link."
478
  msgstr ""
479
- "Ak chcete akýkoľvek dokument PDF súbor otvoriť v prekrytím, zapnite "
480
- "automatickú detekciu alebo použite triedu \"fancybox-pdf \" pre jeho väzby."
481
 
482
  #: easy-fancybox-settings.php:494 easy-fancybox-settings.php:611
483
  #: easy-fancybox-settings.php:702 easy-fancybox-settings.php:805
484
  #: easy-fancybox-settings.php:900 easy-fancybox-settings.php:1021
485
  msgid "Adjust its specific settings below."
486
- msgstr "Upraviť jeho špecifické nastavenia nižšie."
487
 
488
  #: easy-fancybox-settings.php:611
489
  msgid ""
490
  "To make any Flash (.swf) file open in an overlay, switch on auto-detect or "
491
  "use the class \"fancybox-swf\" for its link."
492
  msgstr ""
493
- "Ak chcete niektorý Flash (. Swf) otvoriť súbor v prekrytím, zapnite "
494
- "automatickej detekcie alebo použite triedu \"fancybox-swf \" pre jeho odkazu."
495
 
496
  #: easy-fancybox-settings.php:702
497
  msgid ""
498
  "To make any YouTube movie open in an overlay, switch on auto-detect or use "
499
  "the class \"fancybox-youtube\" for its link."
500
  msgstr ""
501
- "Ak chcete akýkoľvek film YouTube otvorená v prekrytím, zapnite automatickej "
502
- "detekcie alebo použite triedu \"fancybox-youtube \" pre jeho odkazu."
503
 
504
  #: easy-fancybox-settings.php:720
505
  msgid "Auto-detect Short links"
506
- msgstr "Auto-detect krátke Odkazy"
507
 
508
  #: easy-fancybox-settings.php:805
509
  msgid ""
510
  "To make any Vimeo movie open in an overlay, switch on auto-detect or use the "
511
  "class \"fancybox-vimeo\" for its link."
512
  msgstr ""
513
- "Ak chcete akýkoľvek film Vimeo otvorená v prekrytím, zapnite automatickej "
514
- "detekcie alebo použite triedu \"fancybox-Vimeo \" pre jeho odkazu."
515
 
516
  #: easy-fancybox-settings.php:900
517
  msgid ""
518
  "To make any Dailymotion movie open in an overlay, switch on auto-detect or "
519
  "use the class \"fancybox-dailymotion\" for its link."
520
  msgstr ""
521
- "Ak chcete niektorý Dailymotion film otvorená v prekrytím, zapnite "
522
- "automatickej detekcie alebo použite triedu \"fancybox-Dailymotion \" pre "
523
- "jeho väzby."
524
 
525
  #: easy-fancybox-settings.php:1021
526
  msgid ""
527
  "To make a website or HTML document open in an overlay, use the class "
528
  "\"fancybox-iframe\" for its link."
529
  msgstr ""
530
- "Ak chcete webové stránky alebo HTML dokument otvorený v prekrytím, použite "
531
- "triedu \"fancybox-iframe \" pre jeho odkazu."
532
 
533
  #. Plugin Name of the plugin/theme
534
  msgid "Easy FancyBox"
535
- msgstr "Jednoduché FancyBox"
536
 
537
  #. Plugin URI of the plugin/theme
538
  msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
539
- msgstr "http://4visions.nl/en/WordPress-plugins/Easy-FancyBox/"
540
 
541
  #. Description of the plugin/theme
542
  msgid ""
@@ -544,14 +498,11 @@ msgid ""
544
  "extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. "
545
  "Also supports iFrame and inline content."
546
  msgstr ""
547
- "Ľahko povoliť <a href=\"http://fancybox.net/\"> FancyBox jQuery predĺženie "
548
- "</ a> na všetky image, SWF, PDF, YouTube, Dailymotion a Vimeo odkazy. Tiež "
549
- "podporuje iFrame a inline obsah."
550
 
551
  #. Author of the plugin/theme
552
  msgid "RavanH"
553
- msgstr "RavanH"
554
 
555
  #. Author URI of the plugin/theme
556
  msgid "http://4visions.nl/"
557
- msgstr "http://4visions.nl/"
1
+ # Copyright (C) 2010 Easy FancyBox
2
  # This file is distributed under the same license as the Easy FancyBox package.
3
  msgid ""
4
  msgstr ""
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
 
14
 
15
  #: easy-fancybox.php:266
16
  msgid ""
17
  "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and "
18
  "secure!"
19
  msgstr ""
 
 
20
 
21
  #: easy-fancybox.php:266
22
  msgid ""
26
  "appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/"
27
  "\">FancyBox</a></strong>."
28
  msgstr ""
 
 
 
 
 
29
 
30
  #: easy-fancybox.php:266
31
  msgid ""
32
  "First enable each sub-section that you need. Then save and come back to "
33
  "adjust its specific settings."
34
  msgstr ""
 
 
35
 
36
  #: easy-fancybox.php:266
37
  msgid ""
40
  "will have some extra impact on client-side page speed. Enable only those sub-"
41
  "sections and options that you actually need on your site."
42
  msgstr ""
 
 
 
 
 
43
 
44
  #: easy-fancybox.php:266
45
  msgid ""
46
  "Some setting like Transition options are unavailable for SWF video, PDF and "
47
  "iFrame content to ensure browser compatibility and readability."
48
  msgstr ""
 
 
 
49
 
50
  #: easy-fancybox.php:308
51
  msgid "Checked"
52
+ msgstr ""
53
 
54
  #: easy-fancybox.php:310
55
  msgid "Unchecked"
56
+ msgstr ""
57
 
58
  #: easy-fancybox.php:362
59
  msgid "FancyBox"
60
+ msgstr ""
61
 
62
  #: easy-fancybox-settings.php:6
63
  msgid "Global settings"
64
+ msgstr ""
65
 
66
  #: easy-fancybox-settings.php:15
67
  msgid "Enable FancyBox for"
68
+ msgstr ""
69
 
70
  #: easy-fancybox-settings.php:24 easy-fancybox-settings.php:316
71
  msgid "Images & Inline content"
72
+ msgstr ""
73
 
74
  #: easy-fancybox-settings.php:31 easy-fancybox-settings.php:489
75
  msgid "PDF"
76
+ msgstr ""
77
 
78
  #: easy-fancybox-settings.php:38 easy-fancybox-settings.php:606
79
  msgid "SWF"
80
+ msgstr ""
81
 
82
  #: easy-fancybox-settings.php:45 easy-fancybox-settings.php:697
83
  msgid "YouTube"
84
+ msgstr ""
85
 
86
  #: easy-fancybox-settings.php:52 easy-fancybox-settings.php:800
87
  msgid "Vimeo"
88
+ msgstr ""
89
 
90
  #: easy-fancybox-settings.php:59 easy-fancybox-settings.php:895
91
  msgid "Dailymotion"
92
+ msgstr ""
93
 
94
  #: easy-fancybox-settings.php:66 easy-fancybox-settings.php:1016
95
  msgid "iFrames"
96
+ msgstr ""
97
 
98
  #: easy-fancybox-settings.php:71
99
  msgid "Links"
100
+ msgstr ""
101
 
102
  #: easy-fancybox-settings.php:81
103
  msgid "Exclude"
104
+ msgstr ""
105
 
106
  #: easy-fancybox-settings.php:86 easy-fancybox-settings.php:100
107
  #: easy-fancybox-settings.php:295 easy-fancybox-settings.php:383
108
  #: easy-fancybox-settings.php:411
109
  msgid "None"
110
+ msgstr ""
111
 
112
  #: easy-fancybox-settings.php:87
113
  msgid "Empty (hidden) links"
114
+ msgstr ""
115
 
116
  #: easy-fancybox-settings.php:88
117
  msgid "Without thumbnail image"
118
+ msgstr ""
119
 
120
  #: easy-fancybox-settings.php:95
121
  msgid "Auto-open"
122
+ msgstr ""
123
 
124
  #: easy-fancybox-settings.php:101
125
  msgid "Link with ID \"fancybox-auto\""
126
+ msgstr ""
127
 
128
  #: easy-fancybox-settings.php:102
129
  msgid "First Image link"
130
+ msgstr ""
131
 
132
  #: easy-fancybox-settings.php:103
133
  msgid "First PDF link"
134
+ msgstr ""
135
 
136
  #: easy-fancybox-settings.php:104
137
  msgid "First SWF link"
138
+ msgstr ""
139
 
140
  #: easy-fancybox-settings.php:105
141
  msgid "First YouTube link "
142
+ msgstr ""
143
 
144
  #: easy-fancybox-settings.php:106
145
  msgid "First Vimeo link "
146
+ msgstr ""
147
 
148
  #: easy-fancybox-settings.php:107
149
  msgid "First Dailymotion link "
150
+ msgstr ""
151
 
152
  #: easy-fancybox-settings.php:108
153
  msgid "First iFrame link"
154
+ msgstr ""
155
 
156
  #: easy-fancybox-settings.php:109
157
  msgid "First of any link"
158
+ msgstr ""
159
 
160
  #: easy-fancybox-settings.php:117 easy-fancybox-settings.php:452
161
  msgid "Overlay"
162
+ msgstr ""
163
 
164
  #: easy-fancybox-settings.php:125
165
  msgid "Show the overlay around content opened in FancyBox."
166
+ msgstr ""
167
 
168
  #: easy-fancybox-settings.php:132
169
  msgid "Spotlight effect."
170
+ msgstr ""
171
 
172
  #: easy-fancybox-settings.php:136 easy-fancybox-settings.php:227
173
  msgid "Opacity"
174
+ msgstr ""
175
 
176
  #: easy-fancybox-settings.php:141
177
  msgid "Value between 0 and 1. "
178
+ msgstr ""
179
 
180
  #: easy-fancybox-settings.php:141 easy-fancybox-settings.php:150
181
  #: easy-fancybox-settings.php:188 easy-fancybox-settings.php:232
182
  #: easy-fancybox-settings.php:283 easy-fancybox-settings.php:332
183
  #: easy-fancybox-settings.php:345 easy-fancybox-settings.php:369
184
  msgid "Default:"
185
+ msgstr ""
186
 
187
  #: easy-fancybox-settings.php:145 easy-fancybox-settings.php:192
188
  msgid "Color"
189
+ msgstr ""
190
 
191
  #: easy-fancybox-settings.php:150
192
  msgid "Enter an HTML color value."
193
+ msgstr ""
194
 
195
  #: easy-fancybox-settings.php:156
196
  msgid "Window"
197
+ msgstr ""
198
 
199
  #: easy-fancybox-settings.php:162
200
  msgid "Size"
201
+ msgstr ""
202
 
203
  #: easy-fancybox-settings.php:166 easy-fancybox-settings.php:517
204
  #: easy-fancybox-settings.php:634 easy-fancybox-settings.php:735
205
  #: easy-fancybox-settings.php:829 easy-fancybox-settings.php:924
206
  #: easy-fancybox-settings.php:1036
207
  msgid "Width"
208
+ msgstr ""
209
 
210
  #: easy-fancybox-settings.php:175 easy-fancybox-settings.php:526
211
  #: easy-fancybox-settings.php:644 easy-fancybox-settings.php:744
212
  #: easy-fancybox-settings.php:838 easy-fancybox-settings.php:933
213
  #: easy-fancybox-settings.php:1045
214
  msgid "Height"
215
+ msgstr ""
216
 
217
  #: easy-fancybox-settings.php:183 easy-fancybox-settings.php:207
218
  #: easy-fancybox-settings.php:534 easy-fancybox-settings.php:653
219
  #: easy-fancybox-settings.php:752 easy-fancybox-settings.php:846
220
  #: easy-fancybox-settings.php:941 easy-fancybox-settings.php:1053
221
  msgid "Border"
222
+ msgstr ""
223
 
224
  #: easy-fancybox-settings.php:197
225
  msgid "Background"
226
+ msgstr ""
227
 
228
  #: easy-fancybox-settings.php:217
229
  msgid "Text"
230
+ msgstr ""
231
 
232
  #: easy-fancybox-settings.php:236
233
  msgid "Behavior"
234
+ msgstr ""
235
 
236
  #: easy-fancybox-settings.php:242
237
  msgid "Center while scrolling"
238
+ msgstr ""
239
 
240
  #: easy-fancybox-settings.php:248
241
  msgid "Show the (X) close button"
242
+ msgstr ""
243
 
244
  #: easy-fancybox-settings.php:254
245
  msgid "Show the gallery navigation arrows"
246
+ msgstr ""
247
 
248
  #: easy-fancybox-settings.php:262
249
  msgid "Opening speed"
250
+ msgstr ""
251
 
252
  #: easy-fancybox-settings.php:270
253
  msgid "Closing speed"
254
+ msgstr ""
255
 
256
  #: easy-fancybox-settings.php:278
257
  msgid "Fade speed"
258
+ msgstr ""
259
 
260
  #: easy-fancybox-settings.php:283
261
  msgid "Duration in milliseconds. Higher is slower."
262
+ msgstr ""
263
 
264
  #: easy-fancybox-settings.php:291
265
  msgid "Advanced"
266
+ msgstr ""
267
 
268
  #: easy-fancybox-settings.php:296
269
  msgid "Hide/show title on mouse hover action"
270
+ msgstr ""
271
 
272
  #: easy-fancybox-settings.php:297
273
  msgid "Gallery Auto-rotation"
274
+ msgstr ""
275
 
276
  #: easy-fancybox-settings.php:304
277
  msgid ""
278
  "Note: Hide/show title on mouse hover action works best with Overlay title "
279
  "position. Auto-rotation uses a fixed 5 second pause per image."
280
  msgstr ""
 
 
 
281
 
282
  #: easy-fancybox-settings.php:321
283
  msgid ""
285
  "field or use the class \"fancybox\" for its link. Clear field to switch off "
286
  "auto-enabling."
287
  msgstr ""
 
 
 
288
 
289
  #: easy-fancybox-settings.php:325 easy-fancybox-settings.php:502
290
  #: easy-fancybox-settings.php:619 easy-fancybox-settings.php:711
291
  #: easy-fancybox-settings.php:814 easy-fancybox-settings.php:909
292
  msgid "Auto-detect"
293
+ msgstr ""
294
 
295
  #: easy-fancybox-settings.php:336
296
  msgid "Apply to"
297
+ msgstr ""
298
 
299
  #: easy-fancybox-settings.php:341
300
  msgid "All image links"
301
+ msgstr ""
302
 
303
  #: easy-fancybox-settings.php:342
304
  msgid "Links inside Section(s) only (below)"
305
+ msgstr ""
306
 
307
  #: easy-fancybox-settings.php:349
308
  msgid "Auto-gallery"
309
+ msgstr ""
310
 
311
  #: easy-fancybox-settings.php:354
312
  msgid "Disabled"
313
+ msgstr ""
314
 
315
  #: easy-fancybox-settings.php:355
316
  msgid "Galleries per Section (below)"
317
+ msgstr ""
318
 
319
  #: easy-fancybox-settings.php:356
320
  msgid "All in one gallery"
321
+ msgstr ""
322
 
323
  #: easy-fancybox-settings.php:359
324
  msgid ""
325
  "When disabled, you can use the rel attribute to manually group image links "
326
  "together."
327
  msgstr ""
 
 
328
 
329
  #: easy-fancybox-settings.php:363
330
  msgid "Section(s)"
331
+ msgstr ""
332
 
333
  #: easy-fancybox-settings.php:369
334
  msgid ""
336
  "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
337
  "it to conform with your theme."
338
  msgstr ""
 
 
 
339
 
340
  #: easy-fancybox-settings.php:369
341
  msgid ""
343
  "this value to \"div.post\". If you want to include images in a sidebar with "
344
  "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
345
  msgstr ""
 
 
 
 
346
 
347
  #: easy-fancybox-settings.php:377
348
  msgid "Transition In"
349
+ msgstr ""
350
 
351
  #: easy-fancybox-settings.php:381 easy-fancybox-settings.php:409
352
  msgid "Fade"
353
+ msgstr ""
354
 
355
  #: easy-fancybox-settings.php:382 easy-fancybox-settings.php:410
356
  msgid "Elastic"
357
+ msgstr ""
358
 
359
  #: easy-fancybox-settings.php:390
360
  msgid "Easing In"
361
+ msgstr ""
362
 
363
  #: easy-fancybox-settings.php:394 easy-fancybox-settings.php:422
364
  msgid "Linear"
365
+ msgstr ""
366
 
367
  #: easy-fancybox-settings.php:395 easy-fancybox-settings.php:423
368
  msgid "Swing"
369
+ msgstr ""
370
 
371
  #: easy-fancybox-settings.php:396 easy-fancybox-settings.php:424
372
  msgid "Back"
373
+ msgstr ""
374
 
375
  #: easy-fancybox-settings.php:397 easy-fancybox-settings.php:425
376
  msgid "Quad"
377
+ msgstr ""
378
 
379
  #: easy-fancybox-settings.php:398 easy-fancybox-settings.php:426
380
  msgid "Expo"
381
+ msgstr ""
382
 
383
  #: easy-fancybox-settings.php:405
384
  msgid "Transition Out"
385
+ msgstr ""
386
 
387
  #: easy-fancybox-settings.php:418
388
  msgid "Easing Out"
389
+ msgstr ""
390
 
391
  #: easy-fancybox-settings.php:429
392
  msgid "Easing effects only apply when Transition is set to Elastic. "
393
  msgstr ""
 
394
 
395
  #: easy-fancybox-settings.php:435
396
  msgid "Transparency fade during elastic transition."
397
+ msgstr ""
398
 
399
  #: easy-fancybox-settings.php:441 easy-fancybox-settings.php:549
400
  #: easy-fancybox-settings.php:668 easy-fancybox-settings.php:767
401
  #: easy-fancybox-settings.php:861 easy-fancybox-settings.php:956
402
  #: easy-fancybox-settings.php:1071
403
  msgid "Show title"
404
+ msgstr ""
405
 
406
  #: easy-fancybox-settings.php:445 easy-fancybox-settings.php:553
407
  #: easy-fancybox-settings.php:672 easy-fancybox-settings.php:771
408
  #: easy-fancybox-settings.php:865 easy-fancybox-settings.php:960
409
  #: easy-fancybox-settings.php:1075
410
  msgid "Title Position"
411
+ msgstr ""
412
 
413
  #: easy-fancybox-settings.php:449 easy-fancybox-settings.php:557
414
  #: easy-fancybox-settings.php:676 easy-fancybox-settings.php:775
415
  #: easy-fancybox-settings.php:869 easy-fancybox-settings.php:964
416
  #: easy-fancybox-settings.php:1079
417
  msgid "Float"
418
+ msgstr ""
419
 
420
  #: easy-fancybox-settings.php:450 easy-fancybox-settings.php:558
421
  #: easy-fancybox-settings.php:677 easy-fancybox-settings.php:776
422
  #: easy-fancybox-settings.php:870 easy-fancybox-settings.php:965
423
  #: easy-fancybox-settings.php:1080
424
  msgid "Outside"
425
+ msgstr ""
426
 
427
  #: easy-fancybox-settings.php:451 easy-fancybox-settings.php:559
428
  #: easy-fancybox-settings.php:678 easy-fancybox-settings.php:777
429
  #: easy-fancybox-settings.php:871 easy-fancybox-settings.php:966
430
  #: easy-fancybox-settings.php:1081
431
  msgid "Inside"
432
+ msgstr ""
433
 
434
  #: easy-fancybox-settings.php:461 easy-fancybox-settings.php:568
435
  #: easy-fancybox-settings.php:687 easy-fancybox-settings.php:786
436
  #: easy-fancybox-settings.php:880 easy-fancybox-settings.php:975
437
  #: easy-fancybox-settings.php:1090
438
  msgid "Allow title from thumbnail alt tag"
439
+ msgstr ""
440
 
441
  #: easy-fancybox-settings.php:494
442
  msgid ""
443
  "To make any PDF document file open in an overlay, switch on auto-detect or "
444
  "use the class \"fancybox-pdf\" for its link."
445
  msgstr ""
 
 
446
 
447
  #: easy-fancybox-settings.php:494 easy-fancybox-settings.php:611
448
  #: easy-fancybox-settings.php:702 easy-fancybox-settings.php:805
449
  #: easy-fancybox-settings.php:900 easy-fancybox-settings.php:1021
450
  msgid "Adjust its specific settings below."
451
+ msgstr ""
452
 
453
  #: easy-fancybox-settings.php:611
454
  msgid ""
455
  "To make any Flash (.swf) file open in an overlay, switch on auto-detect or "
456
  "use the class \"fancybox-swf\" for its link."
457
  msgstr ""
 
 
458
 
459
  #: easy-fancybox-settings.php:702
460
  msgid ""
461
  "To make any YouTube movie open in an overlay, switch on auto-detect or use "
462
  "the class \"fancybox-youtube\" for its link."
463
  msgstr ""
 
 
464
 
465
  #: easy-fancybox-settings.php:720
466
  msgid "Auto-detect Short links"
467
+ msgstr ""
468
 
469
  #: easy-fancybox-settings.php:805
470
  msgid ""
471
  "To make any Vimeo movie open in an overlay, switch on auto-detect or use the "
472
  "class \"fancybox-vimeo\" for its link."
473
  msgstr ""
 
 
474
 
475
  #: easy-fancybox-settings.php:900
476
  msgid ""
477
  "To make any Dailymotion movie open in an overlay, switch on auto-detect or "
478
  "use the class \"fancybox-dailymotion\" for its link."
479
  msgstr ""
 
 
 
480
 
481
  #: easy-fancybox-settings.php:1021
482
  msgid ""
483
  "To make a website or HTML document open in an overlay, use the class "
484
  "\"fancybox-iframe\" for its link."
485
  msgstr ""
 
 
486
 
487
  #. Plugin Name of the plugin/theme
488
  msgid "Easy FancyBox"
489
+ msgstr ""
490
 
491
  #. Plugin URI of the plugin/theme
492
  msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
493
+ msgstr ""
494
 
495
  #. Description of the plugin/theme
496
  msgid ""
498
  "extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. "
499
  "Also supports iFrame and inline content."
500
  msgstr ""
 
 
 
501
 
502
  #. Author of the plugin/theme
503
  msgid "RavanH"
504
+ msgstr ""
505
 
506
  #. Author URI of the plugin/theme
507
  msgid "http://4visions.nl/"
508
+ msgstr ""
languages/easy-fancybox_sk_SK.mo → easy-fancybox_sk_SK.mo RENAMED
File without changes
fancybox/jquery.easing-1.3.pack.js ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
+ *
4
+ * Uses the built in easing capabilities added In jQuery 1.1
5
+ * to offer multiple easing options
6
+ *
7
+ * TERMS OF USE - jQuery Easing
8
+ *
9
+ * Open source under the BSD License.
10
+ *
11
+ * Copyright © 2008 George McGinley Smith
12
+ * All rights reserved.
13
+ *
14
+ * Redistribution and use in source and binary forms, with or without modification,
15
+ * are permitted provided that the following conditions are met:
16
+ *
17
+ * Redistributions of source code must retain the above copyright notice, this list of
18
+ * conditions and the following disclaimer.
19
+ * Redistributions in binary form must reproduce the above copyright notice, this list
20
+ * of conditions and the following disclaimer in the documentation and/or other materials
21
+ * provided with the distribution.
22
+ *
23
+ * Neither the name of the author nor the names of contributors may be used to endorse
24
+ * or promote products derived from this software without specific prior written permission.
25
+ *
26
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
35
+ *
36
+ */
37
+
38
+ // t: current time, b: begInnIng value, c: change In value, d: duration
39
+ eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h.i[\'1a\']=h.i[\'z\'];h.O(h.i,{y:\'D\',z:9(x,t,b,c,d){6 h.i[h.i.y](x,t,b,c,d)},17:9(x,t,b,c,d){6 c*(t/=d)*t+b},D:9(x,t,b,c,d){6-c*(t/=d)*(t-2)+b},13:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t+b;6-c/2*((--t)*(t-2)-1)+b},X:9(x,t,b,c,d){6 c*(t/=d)*t*t+b},U:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t+1)+b},R:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t+b;6 c/2*((t-=2)*t*t+2)+b},N:9(x,t,b,c,d){6 c*(t/=d)*t*t*t+b},M:9(x,t,b,c,d){6-c*((t=t/d-1)*t*t*t-1)+b},L:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t+b;6-c/2*((t-=2)*t*t*t-2)+b},K:9(x,t,b,c,d){6 c*(t/=d)*t*t*t*t+b},J:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t*t*t+1)+b},I:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t*t+b;6 c/2*((t-=2)*t*t*t*t+2)+b},G:9(x,t,b,c,d){6-c*8.C(t/d*(8.g/2))+c+b},15:9(x,t,b,c,d){6 c*8.n(t/d*(8.g/2))+b},12:9(x,t,b,c,d){6-c/2*(8.C(8.g*t/d)-1)+b},Z:9(x,t,b,c,d){6(t==0)?b:c*8.j(2,10*(t/d-1))+b},Y:9(x,t,b,c,d){6(t==d)?b+c:c*(-8.j(2,-10*t/d)+1)+b},W:9(x,t,b,c,d){e(t==0)6 b;e(t==d)6 b+c;e((t/=d/2)<1)6 c/2*8.j(2,10*(t-1))+b;6 c/2*(-8.j(2,-10*--t)+2)+b},V:9(x,t,b,c,d){6-c*(8.o(1-(t/=d)*t)-1)+b},S:9(x,t,b,c,d){6 c*8.o(1-(t=t/d-1)*t)+b},Q:9(x,t,b,c,d){e((t/=d/2)<1)6-c/2*(8.o(1-t*t)-1)+b;6 c/2*(8.o(1-(t-=2)*t)+1)+b},P:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6-(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b},H:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6 a*8.j(2,-10*t)*8.n((t*d-s)*(2*8.g)/p)+c+b},T:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d/2)==2)6 b+c;e(!p)p=d*(.3*1.5);e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);e(t<1)6-.5*(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b;6 a*8.j(2,-10*(t-=1))*8.n((t*d-s)*(2*8.g)/p)*.5+c+b},F:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*(t/=d)*t*((s+1)*t-s)+b},E:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},16:9(x,t,b,c,d,s){e(s==u)s=1.l;e((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.B))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.B))+1)*t+s)+2)+b},A:9(x,t,b,c,d){6 c-h.i.v(x,d-t,0,c,d)+b},v:9(x,t,b,c,d){e((t/=d)<(1/2.k)){6 c*(7.q*t*t)+b}m e(t<(2/2.k)){6 c*(7.q*(t-=(1.5/2.k))*t+.k)+b}m e(t<(2.5/2.k)){6 c*(7.q*(t-=(2.14/2.k))*t+.11)+b}m{6 c*(7.q*(t-=(2.18/2.k))*t+.19)+b}},1b:9(x,t,b,c,d){e(t<d/2)6 h.i.A(x,t*2,0,c,d)*.5+b;6 h.i.v(x,t*2-d,0,c,d)*.5+c*.5+b}});',62,74,'||||||return||Math|function|||||if|var|PI|jQuery|easing|pow|75|70158|else|sin|sqrt||5625|asin|||undefined|easeOutBounce|abs||def|swing|easeInBounce|525|cos|easeOutQuad|easeOutBack|easeInBack|easeInSine|easeOutElastic|easeInOutQuint|easeOutQuint|easeInQuint|easeInOutQuart|easeOutQuart|easeInQuart|extend|easeInElastic|easeInOutCirc|easeInOutCubic|easeOutCirc|easeInOutElastic|easeOutCubic|easeInCirc|easeInOutExpo|easeInCubic|easeOutExpo|easeInExpo||9375|easeInOutSine|easeInOutQuad|25|easeOutSine|easeInOutBack|easeInQuad|625|984375|jswing|easeInOutBounce'.split('|'),0,{}))
40
+
41
+ /*
42
+ *
43
+ * TERMS OF USE - EASING EQUATIONS
44
+ *
45
+ * Open source under the BSD License.
46
+ *
47
+ * Copyright © 2001 Robert Penner
48
+ * All rights reserved.
49
+ *
50
+ * Redistribution and use in source and binary forms, with or without modification,
51
+ * are permitted provided that the following conditions are met:
52
+ *
53
+ * Redistributions of source code must retain the above copyright notice, this list of
54
+ * conditions and the following disclaimer.
55
+ * Redistributions in binary form must reproduce the above copyright notice, this list
56
+ * of conditions and the following disclaimer in the documentation and/or other materials
57
+ * provided with the distribution.
58
+ *
59
+ * Neither the name of the author nor the names of contributors may be used to endorse
60
+ * or promote products derived from this software without specific prior written permission.
61
+ *
62
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
63
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
64
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
65
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
66
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
67
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
68
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
69
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
70
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
71
+ *
72
+ */
fancybox/{jquery.fancybox-1.3.6.css → jquery.fancybox-1.3.4.css} RENAMED
@@ -7,7 +7,7 @@
7
  * Copyright (c) 2008 - 2010 Janis Skarnelis
8
  * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
  *
10
- * Version: 1.3.4 (11/11/2010) patched : box-sizing: content-box;
11
  * Requires: jQuery v1.3+
12
  *
13
  * Dual licensed under the MIT and GPL licenses:
@@ -25,10 +25,8 @@
25
  margin-left: -20px;
26
  cursor: pointer;
27
  overflow: hidden;
28
- z-index:11104;
29
  display: none;
30
- box-sizing: content-box;
31
- -moz-box-sizing: content-box;
32
  }
33
 
34
  #fancybox-loading div {
@@ -38,8 +36,6 @@
38
  width: 40px;
39
  height: 480px;
40
  background-image: url('fancybox.png');
41
- box-sizing: content-box;
42
- -moz-box-sizing: content-box;
43
  }
44
 
45
  #fancybox-overlay {
@@ -47,10 +43,8 @@
47
  top: 0;
48
  left: 0;
49
  width: 100%;
50
- z-index:11100;
51
  display: none;
52
- box-sizing: content-box;
53
- -moz-box-sizing: content-box;
54
  }
55
 
56
  #fancybox-tmp {
@@ -66,16 +60,9 @@
66
  top: 0;
67
  left: 0;
68
  padding: 20px;
69
- z-index:11101;
70
  outline: none;
71
  display: none;
72
- box-sizing: content-box;
73
- -moz-box-sizing: content-box;
74
- }
75
-
76
- #fancybox-wrap div {
77
- box-sizing: content-box;
78
- -moz-box-sizing: content-box;
79
  }
80
 
81
  #fancybox-outer {
@@ -92,7 +79,7 @@
92
  outline: none;
93
  position: relative;
94
  overflow: hidden;
95
- z-index:11102;
96
  border: 0px solid #fff;
97
  }
98
 
@@ -103,7 +90,7 @@
103
  width: 100%;
104
  height: 100%;
105
  background: transparent;
106
- z-index:11101;
107
  }
108
 
109
  #fancybox-close {
@@ -114,7 +101,7 @@
114
  height: 30px;
115
  background: transparent url('fancybox.png') -40px 0px;
116
  cursor: pointer;
117
- z-index:11103;
118
  display: none;
119
  }
120
 
@@ -151,7 +138,7 @@
151
  cursor: pointer;
152
  outline: none;
153
  background: transparent url('blank.gif');
154
- z-index:11102;
155
  display: none;
156
  }
157
 
@@ -171,7 +158,7 @@
171
  height: 30px;
172
  margin-top: -15px;
173
  cursor: pointer;
174
- z-index:11102;
175
  display: block;
176
  }
177
 
@@ -205,7 +192,7 @@
205
  border: 0;
206
  width: 20px;
207
  height: 20px;
208
- z-index:11001;
209
  }
210
 
211
  #fancybox-bg-n {
@@ -269,7 +256,7 @@
269
  #fancybox-title {
270
  font-family: Helvetica;
271
  font-size: 12px;
272
- z-index:11102;
273
  }
274
 
275
  .fancybox-title-inside {
@@ -335,5 +322,38 @@
335
  background: url('fancybox.png') -55px -90px no-repeat;
336
  }
337
 
338
- /* IE */
339
- .fancybox-ie .fancybox-bg{background:transparent !important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  * Copyright (c) 2008 - 2010 Janis Skarnelis
8
  * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
  *
10
+ * Version: 1.3.4 (11/11/2010)
11
  * Requires: jQuery v1.3+
12
  *
13
  * Dual licensed under the MIT and GPL licenses:
25
  margin-left: -20px;
26
  cursor: pointer;
27
  overflow: hidden;
28
+ z-index: 1104;
29
  display: none;
 
 
30
  }
31
 
32
  #fancybox-loading div {
36
  width: 40px;
37
  height: 480px;
38
  background-image: url('fancybox.png');
 
 
39
  }
40
 
41
  #fancybox-overlay {
43
  top: 0;
44
  left: 0;
45
  width: 100%;
46
+ z-index: 1100;
47
  display: none;
 
 
48
  }
49
 
50
  #fancybox-tmp {
60
  top: 0;
61
  left: 0;
62
  padding: 20px;
63
+ z-index: 1101;
64
  outline: none;
65
  display: none;
 
 
 
 
 
 
 
66
  }
67
 
68
  #fancybox-outer {
79
  outline: none;
80
  position: relative;
81
  overflow: hidden;
82
+ z-index: 1102;
83
  border: 0px solid #fff;
84
  }
85
 
90
  width: 100%;
91
  height: 100%;
92
  background: transparent;
93
+ z-index: 1101;
94
  }
95
 
96
  #fancybox-close {
101
  height: 30px;
102
  background: transparent url('fancybox.png') -40px 0px;
103
  cursor: pointer;
104
+ z-index: 1103;
105
  display: none;
106
  }
107
 
138
  cursor: pointer;
139
  outline: none;
140
  background: transparent url('blank.gif');
141
+ z-index: 1102;
142
  display: none;
143
  }
144
 
158
  height: 30px;
159
  margin-top: -15px;
160
  cursor: pointer;
161
+ z-index: 1102;
162
  display: block;
163
  }
164
 
192
  border: 0;
193
  width: 20px;
194
  height: 20px;
195
+ z-index: 1001;
196
  }
197
 
198
  #fancybox-bg-n {
256
  #fancybox-title {
257
  font-family: Helvetica;
258
  font-size: 12px;
259
+ z-index: 1102;
260
  }
261
 
262
  .fancybox-title-inside {
322
  background: url('fancybox.png') -55px -90px no-repeat;
323
  }
324
 
325
+ /* IE6 */
326
+
327
+ .fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }
328
+
329
+ .fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
330
+ .fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }
331
+
332
+ .fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
333
+ .fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
334
+ .fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
335
+ .fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }
336
+
337
+ .fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
338
+ height: expression(this.parentNode.clientHeight + "px");
339
+ }
340
+
341
+ #fancybox-loading.fancybox-ie6 {
342
+ position: absolute; margin-top: 0;
343
+ top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
344
+ }
345
+
346
+ #fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }
347
+
348
+ /* IE6, IE7, IE8 */
349
+
350
+ .fancybox-ie .fancybox-bg { background: transparent !important; }
351
+
352
+ .fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
353
+ .fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
354
+ .fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
355
+ .fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
356
+ .fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
357
+ .fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
358
+ .fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
359
+ .fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
fancybox/{jquery.fancybox-1.3.6.js → jquery.fancybox-1.3.4.js} RENAMED
@@ -7,37 +7,26 @@
7
  * Copyright (c) 2008 - 2010 Janis Skarnelis
8
  * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
  *
10
- * Version: 1.3.4 (11/11/2010) patched and appended
11
- * Requires: jQuery v1.7+
12
  *
13
  * Dual licensed under the MIT and GPL licenses:
14
  * http://www.opensource.org/licenses/mit-license.php
15
  * http://www.gnu.org/licenses/gpl.html
16
- *
17
- * Patches applied:
18
- *
19
- * Line 307, 712: patches for better centering on ipad etc.
20
- * Line 643: Check type = image for mousewheel
21
- * Line 818: qouted attribute selector, RavanH ravanhagen@gmail.com
22
- * Line 39, 620 and 1123: added isTouch variable and autoResize parameter, RavanH ravanhagen@gmail.com
23
- * Patched for jQuery 1.9+ compat by Sabel http://sabel.bluegfx.de/wordpress/wp-content/uploads/2013/03/jquery.fancybox-1.3.4.js
24
- *
25
- * Added SVG support by Simon Maillard simon@ogesta.fr
26
  */
 
27
  ;(function($) {
28
  var tmp, loading, overlay, wrap, outer, content, close, title, nav_left, nav_right,
29
 
30
  selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],
31
 
32
- ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i, svgRegExp = /[^\.]\.(svg)\s*$/i,
33
 
34
  loadingTimer, loadingFrame = 1,
35
 
36
  titleHeight = 0, titleStr = '', start_pos, final_pos, busy = false, fx = $.extend($('<div/>')[0], { prop: 0 }),
37
 
38
- isIE6 = navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequest,
39
-
40
- isTouch = document.createTouch !== undefined,
41
 
42
  /*
43
  * Private methods
@@ -127,9 +116,6 @@
127
  } else if (href.match(swfRegExp)) {
128
  type = 'swf';
129
 
130
- } else if (href.match(svgRegExp)) {
131
- type = 'svg';
132
-
133
  } else if ($(obj).hasClass("iframe")) {
134
  type = 'iframe';
135
 
@@ -177,7 +163,7 @@
177
 
178
  tmp.css('padding', (selectedOpts.padding + selectedOpts.margin));
179
 
180
- $('.fancybox-inline-tmp').off('fancybox-cancel').on('fancybox-change', function() {
181
  $(this).replaceWith(content.children());
182
  });
183
 
@@ -196,9 +182,9 @@
196
  $('<div class="fancybox-inline-tmp" />')
197
  .hide()
198
  .insertBefore( $(obj) )
199
- .on('fancybox-cleanup', function() {
200
  $(this).replaceWith(content.children());
201
- }).on('fancybox-cancel', function() {
202
  $(this).replaceWith(tmp.children());
203
  });
204
 
@@ -247,16 +233,6 @@
247
  _process_inline();
248
  break;
249
 
250
- case 'svg':
251
- selectedOpts.scrolling = 'no';
252
-
253
- str = '<object width="' + selectedOpts.width + '" height="' + selectedOpts.height + '" data="' + href + '"></object>';
254
-
255
- tmp.html(str);
256
-
257
- _process_inline();
258
- break;
259
-
260
  case 'ajax':
261
  busy = false;
262
 
@@ -303,19 +279,17 @@
303
  _process_inline = function() {
304
  var
305
  w = selectedOpts.width,
306
- h = selectedOpts.height,
307
- ww = $(window).width() == 0 ? window.innerWidth : $(window).width(),
308
- wh = $(window).height() == 0 ? window.innerHeight : $(window).height();
309
 
310
  if (w.toString().indexOf('%') > -1) {
311
- w = parseInt( (ww - (selectedOpts.margin * 2)) * parseFloat(w) / 100, 10) + 'px';
312
 
313
  } else {
314
  w = w == 'auto' ? 'auto' : w + 'px';
315
  }
316
 
317
  if (h.toString().indexOf('%') > -1) {
318
- h = parseInt( (wh - (selectedOpts.margin * 2)) * parseFloat(h) / 100, 10) + 'px';
319
 
320
  } else {
321
  h = h == 'auto' ? 'auto' : h + 'px';
@@ -348,7 +322,7 @@
348
  loading.hide();
349
 
350
  if (wrap.is(":visible") && false === currentOpts.onCleanup(currentArray, currentIndex, currentOpts)) {
351
- $('.fancybox-inline-tmp').trigger('fancybox-cancel');
352
 
353
  busy = false;
354
  return;
@@ -356,10 +330,10 @@
356
 
357
  busy = true;
358
 
359
- $(content.add( overlay )).off();
360
 
361
- $(window).off("resize.fb scroll.fb");
362
- $(document).off('keydown.fb');
363
 
364
  if (wrap.is(":visible") && currentOpts.titlePosition !== 'outside') {
365
  wrap.css('height', wrap.height());
@@ -415,7 +389,7 @@
415
  content.html( tmp.contents() ).fadeTo(currentOpts.changeFade, 1, _finish);
416
  };
417
 
418
- $('.fancybox-inline-tmp').trigger('fancybox-change');
419
 
420
  content
421
  .empty()
@@ -574,7 +548,7 @@
574
 
575
  _set_navigation = function() {
576
  if (currentOpts.enableEscapeButton || currentOpts.enableKeyboardNav) {
577
- $(document).on('keydown.fb', function(e) {
578
  if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
579
  e.preventDefault();
580
  $.fancybox.close();
@@ -624,34 +598,21 @@
624
  _set_navigation();
625
 
626
  if (currentOpts.hideOnContentClick) {
627
- content.on('click', $.fancybox.close);
628
  }
629
 
630
  if (currentOpts.hideOnOverlayClick) {
631
- overlay.on('click', $.fancybox.close);
632
  }
633
 
634
- if (currentOpts.autoResize) {
635
- $(window).on("resize.fb", $.fancybox.resize);
636
- }
637
 
638
  if (currentOpts.centerOnScroll) {
639
- $(window).on("scroll.fb", $.fancybox.center);
640
- }
641
-
642
- if ($.fn.mousewheel) {
643
- wrap.on('mousewheel.fb', function(e, delta) {
644
- if (busy) {
645
- e.preventDefault();
646
- } else if ( currentOpts.type == 'image' && ( $(e.target).get(0).clientHeight == 0 || $(e.target).get(0).scrollHeight === $(e.target).get(0).clientHeight ) ) {
647
- e.preventDefault();
648
- $.fancybox[ delta > 0 ? 'prev' : 'next']();
649
- }
650
- });
651
  }
652
 
653
  if (currentOpts.type == 'iframe') {
654
- $('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" ' + (navigator.userAgent.match(/msie [6]/i) ? 'allowtransparency="true""' : '') + ' scrolling="' + selectedOpts.scrolling + '" src="' + currentOpts.href + '"></iframe>').appendTo(content);
655
  }
656
 
657
  wrap.show();
@@ -711,8 +672,8 @@
711
 
712
  _get_viewport = function() {
713
  return [
714
- $(window).width() == 0 ? window.innerWidth : $(window).width() - (currentOpts.margin * 2),
715
- $(window).height() == 0 ? window.innerHeight : $(window).height() - (currentOpts.margin * 2),
716
  $(document).scrollLeft() + currentOpts.margin,
717
  $(document).scrollTop() + currentOpts.margin
718
  ];
@@ -738,7 +699,7 @@
738
  }
739
 
740
  if (resize && (to.width > view[0] || to.height > view[1])) {
741
- if (selectedOpts.type == 'image' || selectedOpts.type == 'svg'|| selectedOpts.type == 'swf') {
742
  ratio = (currentOpts.width ) / (currentOpts.height );
743
 
744
  if ((to.width ) > view[0]) {
@@ -830,8 +791,8 @@
830
 
831
  $(this)
832
  .data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
833
- .off('click.fb')
834
- .on('click.fb', function(e) {
835
  e.preventDefault();
836
 
837
  if (busy) {
@@ -851,7 +812,7 @@
851
  selectedArray.push(this);
852
 
853
  } else {
854
- selectedArray = $('a[rel="' + rel + '"], area[rel="' + rel + '"]');
855
  selectedIndex = selectedArray.index( this );
856
  }
857
 
@@ -951,7 +912,7 @@
951
 
952
  busy = true;
953
 
954
- $('.fancybox-inline-tmp').trigger('fancybox-cancel');
955
 
956
  _abort();
957
 
@@ -977,12 +938,12 @@
977
 
978
  $(close.add( nav_left ).add( nav_right )).hide();
979
 
980
- $(content.add( overlay )).off();
981
 
982
- $(window).off("resize.fb scroll.fb mousewheel.fb");
983
- $(document).off('keydown.fb');
984
 
985
- content.find('iframe#fancybox-frame').attr('src', isIE6 && /^https/i.test(window.location.href || '') ? 'javascript:void(false)' : 'about:blank');
986
 
987
  if (currentOpts.titlePosition !== 'inside') {
988
  title.empty();
@@ -996,7 +957,7 @@
996
  title.empty().hide();
997
  wrap.hide();
998
 
999
- $('.fancybox-inline-tmp').trigger('fancybox-cleanup');
1000
 
1001
  content.empty();
1002
 
@@ -1109,6 +1070,18 @@
1109
  $.fancybox.next();
1110
  });
1111
 
 
 
 
 
 
 
 
 
 
 
 
 
1112
  if (!$.support.opacity) {
1113
  wrap.addClass('fancybox-ie');
1114
  }
@@ -1134,12 +1107,10 @@
1134
 
1135
  autoScale : true,
1136
  autoDimensions : true,
1137
- centerOnScroll : !isTouch,
1138
- autoResize : true, //!isTouch
1139
 
1140
  ajax : {},
1141
  swf : { wmode: 'transparent' },
1142
- svg : { wmode: 'transparent' },
1143
 
1144
  hideOnOverlayClick : true,
1145
  hideOnContentClick : false,
@@ -1183,4 +1154,3 @@
1183
  });
1184
 
1185
  })(jQuery);
1186
-
7
  * Copyright (c) 2008 - 2010 Janis Skarnelis
8
  * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
  *
10
+ * Version: 1.3.4 (11/11/2010)
11
+ * Requires: jQuery v1.3+
12
  *
13
  * Dual licensed under the MIT and GPL licenses:
14
  * http://www.opensource.org/licenses/mit-license.php
15
  * http://www.gnu.org/licenses/gpl.html
 
 
 
 
 
 
 
 
 
 
16
  */
17
+
18
  ;(function($) {
19
  var tmp, loading, overlay, wrap, outer, content, close, title, nav_left, nav_right,
20
 
21
  selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],
22
 
23
+ ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,
24
 
25
  loadingTimer, loadingFrame = 1,
26
 
27
  titleHeight = 0, titleStr = '', start_pos, final_pos, busy = false, fx = $.extend($('<div/>')[0], { prop: 0 }),
28
 
29
+ isIE6 = $.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest,
 
 
30
 
31
  /*
32
  * Private methods
116
  } else if (href.match(swfRegExp)) {
117
  type = 'swf';
118
 
 
 
 
119
  } else if ($(obj).hasClass("iframe")) {
120
  type = 'iframe';
121
 
163
 
164
  tmp.css('padding', (selectedOpts.padding + selectedOpts.margin));
165
 
166
+ $('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
167
  $(this).replaceWith(content.children());
168
  });
169
 
182
  $('<div class="fancybox-inline-tmp" />')
183
  .hide()
184
  .insertBefore( $(obj) )
185
+ .bind('fancybox-cleanup', function() {
186
  $(this).replaceWith(content.children());
187
+ }).bind('fancybox-cancel', function() {
188
  $(this).replaceWith(tmp.children());
189
  });
190
 
233
  _process_inline();
234
  break;
235
 
 
 
 
 
 
 
 
 
 
 
236
  case 'ajax':
237
  busy = false;
238
 
279
  _process_inline = function() {
280
  var
281
  w = selectedOpts.width,
282
+ h = selectedOpts.height;
 
 
283
 
284
  if (w.toString().indexOf('%') > -1) {
285
+ w = parseInt( ($(window).width() - (selectedOpts.margin * 2)) * parseFloat(w) / 100, 10) + 'px';
286
 
287
  } else {
288
  w = w == 'auto' ? 'auto' : w + 'px';
289
  }
290
 
291
  if (h.toString().indexOf('%') > -1) {
292
+ h = parseInt( ($(window).height() - (selectedOpts.margin * 2)) * parseFloat(h) / 100, 10) + 'px';
293
 
294
  } else {
295
  h = h == 'auto' ? 'auto' : h + 'px';
322
  loading.hide();
323
 
324
  if (wrap.is(":visible") && false === currentOpts.onCleanup(currentArray, currentIndex, currentOpts)) {
325
+ $.event.trigger('fancybox-cancel');
326
 
327
  busy = false;
328
  return;
330
 
331
  busy = true;
332
 
333
+ $(content.add( overlay )).unbind();
334
 
335
+ $(window).unbind("resize.fb scroll.fb");
336
+ $(document).unbind('keydown.fb');
337
 
338
  if (wrap.is(":visible") && currentOpts.titlePosition !== 'outside') {
339
  wrap.css('height', wrap.height());
389
  content.html( tmp.contents() ).fadeTo(currentOpts.changeFade, 1, _finish);
390
  };
391
 
392
+ $.event.trigger('fancybox-change');
393
 
394
  content
395
  .empty()
548
 
549
  _set_navigation = function() {
550
  if (currentOpts.enableEscapeButton || currentOpts.enableKeyboardNav) {
551
+ $(document).bind('keydown.fb', function(e) {
552
  if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
553
  e.preventDefault();
554
  $.fancybox.close();
598
  _set_navigation();
599
 
600
  if (currentOpts.hideOnContentClick) {
601
+ content.bind('click', $.fancybox.close);
602
  }
603
 
604
  if (currentOpts.hideOnOverlayClick) {
605
+ overlay.bind('click', $.fancybox.close);
606
  }
607
 
608
+ $(window).bind("resize.fb", $.fancybox.resize);
 
 
609
 
610
  if (currentOpts.centerOnScroll) {
611
+ $(window).bind("scroll.fb", $.fancybox.center);
 
 
 
 
 
 
 
 
 
 
 
612
  }
613
 
614
  if (currentOpts.type == 'iframe') {
615
+ $('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" ' + ($.browser.msie ? 'allowtransparency="true""' : '') + ' scrolling="' + selectedOpts.scrolling + '" src="' + currentOpts.href + '"></iframe>').appendTo(content);
616
  }
617
 
618
  wrap.show();
672
 
673
  _get_viewport = function() {
674
  return [
675
+ $(window).width() - (currentOpts.margin * 2),
676
+ $(window).height() - (currentOpts.margin * 2),
677
  $(document).scrollLeft() + currentOpts.margin,
678
  $(document).scrollTop() + currentOpts.margin
679
  ];
699
  }
700
 
701
  if (resize && (to.width > view[0] || to.height > view[1])) {
702
+ if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
703
  ratio = (currentOpts.width ) / (currentOpts.height );
704
 
705
  if ((to.width ) > view[0]) {
791
 
792
  $(this)
793
  .data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
794
+ .unbind('click.fb')
795
+ .bind('click.fb', function(e) {
796
  e.preventDefault();
797
 
798
  if (busy) {
812
  selectedArray.push(this);
813
 
814
  } else {
815
+ selectedArray = $("a[rel=" + rel + "], area[rel=" + rel + "]");
816
  selectedIndex = selectedArray.index( this );
817
  }
818
 
912
 
913
  busy = true;
914
 
915
+ $.event.trigger('fancybox-cancel');
916
 
917
  _abort();
918
 
938
 
939
  $(close.add( nav_left ).add( nav_right )).hide();
940
 
941
+ $(content.add( overlay )).unbind();
942
 
943
+ $(window).unbind("resize.fb scroll.fb");
944
+ $(document).unbind('keydown.fb');
945
 
946
+ content.find('iframe').attr('src', isIE6 && /^https/i.test(window.location.href || '') ? 'javascript:void(false)' : 'about:blank');
947
 
948
  if (currentOpts.titlePosition !== 'inside') {
949
  title.empty();
957
  title.empty().hide();
958
  wrap.hide();
959
 
960
+ $.event.trigger('fancybox-cleanup');
961
 
962
  content.empty();
963
 
1070
  $.fancybox.next();
1071
  });
1072
 
1073
+ if ($.fn.mousewheel) {
1074
+ wrap.bind('mousewheel.fb', function(e, delta) {
1075
+ if (busy) {
1076
+ e.preventDefault();
1077
+
1078
+ } else if ($(e.target).get(0).clientHeight == 0 || $(e.target).get(0).scrollHeight === $(e.target).get(0).clientHeight) {
1079
+ e.preventDefault();
1080
+ $.fancybox[ delta > 0 ? 'prev' : 'next']();
1081
+ }
1082
+ });
1083
+ }
1084
+
1085
  if (!$.support.opacity) {
1086
  wrap.addClass('fancybox-ie');
1087
  }
1107
 
1108
  autoScale : true,
1109
  autoDimensions : true,
1110
+ centerOnScroll : false,
 
1111
 
1112
  ajax : {},
1113
  swf : { wmode: 'transparent' },
 
1114
 
1115
  hideOnOverlayClick : true,
1116
  hideOnContentClick : false,
1154
  });
1155
 
1156
  })(jQuery);
 
fancybox/jquery.fancybox-1.3.4.pack.js ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * FancyBox - jQuery Plugin
3
+ * Simple and fancy lightbox alternative
4
+ *
5
+ * Examples and documentation at: http://fancybox.net
6
+ *
7
+ * Copyright (c) 2008 - 2010 Janis Skarnelis
8
+ * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
+ *
10
+ * Version: 1.3.4 (11/11/2010)
11
+ * Requires: jQuery v1.3+
12
+ *
13
+ * Dual licensed under the MIT and GPL licenses:
14
+ * http://www.opensource.org/licenses/mit-license.php
15
+ * http://www.gnu.org/licenses/gpl.html
16
+ */
17
+
18
+ ;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=b.browser.msie&&b.browser.version<7&&!window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
19
+ F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
20
+ c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
21
+ false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
22
+ function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();v=new Image;v.onerror=function(){O()};v.onload=function(){h=true;v.onerror=v.onload=null;e.width=v.width;e.height=v.height;b("<img />").attr({id:"fancybox-img",src:v.src,alt:e.title}).appendTo(m);Q()};v.src=c;break;case "swf":e.scrolling="no";C='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+c+
23
+ '"></param>';P="";b.each(e.swf,function(x,H){C+='<param name="'+x+'" value="'+H+'"></param>';P+=" "+x+'="'+H+'"'});C+='<embed src="'+c+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+P+"></embed></object>";m.html(C);F();break;case "ajax":h=false;b.fancybox.showActivity();e.ajax.win=e.ajax.success;G=b.ajax(b.extend({},e.ajax,{url:c,data:e.ajax.data||{},error:function(x){x.status>0&&O()},success:function(x,H,R){if((typeof R=="object"?R:G).status==200){if(typeof e.ajax.win==
24
+ "function"){w=e.ajax.win(c,x,H,R);if(w===false){t.hide();return}else if(typeof w=="string"||typeof w=="object")x=w}m.html(x);F()}}}));break;case "iframe":Q()}}else O()}},F=function(){var a=e.width,c=e.height;a=a.toString().indexOf("%")>-1?parseInt((b(window).width()-e.margin*2)*parseFloat(a)/100,10)+"px":a=="auto"?"auto":a+"px";c=c.toString().indexOf("%")>-1?parseInt((b(window).height()-e.margin*2)*parseFloat(c)/100,10)+"px":c=="auto"?"auto":c+"px";m.wrapInner('<div style="width:'+a+";height:"+c+
25
+ ";overflow: "+(e.scrolling=="auto"?"auto":e.scrolling=="yes"?"scroll":"hidden")+';position:relative;"></div>');e.width=m.width();e.height=m.height();Q()},Q=function(){var a,c;t.hide();if(f.is(":visible")&&false===d.onCleanup(l,p,d)){b.event.trigger("fancybox-cancel");h=false}else{h=true;b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");f.is(":visible")&&d.titlePosition!=="outside"&&f.css("height",f.height());l=o;p=q;d=e;if(d.overlayShow){u.css({"background-color":d.overlayColor,
26
+ opacity:d.overlayOpacity,cursor:d.hideOnOverlayClick?"pointer":"auto",height:b(document).height()});if(!u.is(":visible")){M&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});u.show()}}else u.hide();i=X();s=d.title||"";y=0;n.empty().removeAttr("style").removeClass();if(d.titleShow!==false){if(b.isFunction(d.titleFormat))a=d.titleFormat(s,l,p,d);else a=s&&s.length?
27
+ d.titlePosition=="float"?'<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'+s+'</td><td id="fancybox-title-float-right"></td></tr></table>':'<div id="fancybox-title-'+d.titlePosition+'">'+s+"</div>":false;s=a;if(!(!s||s==="")){n.addClass("fancybox-title-"+d.titlePosition).html(s).appendTo("body").show();switch(d.titlePosition){case "inside":n.css({width:i.width-d.padding*2,marginLeft:d.padding,marginRight:d.padding});
28
+ y=n.outerHeight(true);n.appendTo(D);i.height+=y;break;case "over":n.css({marginLeft:d.padding,width:i.width-d.padding*2,bottom:d.padding}).appendTo(D);break;case "float":n.css("left",parseInt((n.width()-i.width-40)/2,10)*-1).appendTo(f);break;default:n.css({width:i.width-d.padding*2,paddingLeft:d.padding,paddingRight:d.padding}).appendTo(f)}}}n.hide();if(f.is(":visible")){b(E.add(z).add(A)).hide();a=f.position();r={top:a.top,left:a.left,width:f.width(),height:f.height()};c=r.width==i.width&&r.height==
29
+ i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
30
+ f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
31
+ 37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
32
+ s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(b.browser.msie?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
33
+ f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
34
+ j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
35
+ "image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
36
+ 10)||0;c.left+=parseInt(a.css("paddingLeft"),10)||0;c.top+=parseInt(a.css("border-top-width"),10)||0;c.left+=parseInt(a.css("border-left-width"),10)||0;c.width=a.width();c.height=a.height();c={width:c.width+d.padding*2,height:c.height+d.padding*2,top:c.top-d.padding-20,left:c.left-d.padding-20}}else{a=U();c={width:d.padding*2,height:d.padding*2,top:parseInt(a[3]+a[1]*0.5,10),left:parseInt(a[2]+a[0]*0.5,10)}}return c},Z=function(){if(t.is(":visible")){b("div",t).css("top",L*-40+"px");L=(L+1)%12}else clearInterval(K)};
37
+ b.fn.fancybox=function(a){if(!b(this).length)return this;b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(c){c.preventDefault();if(!h){h=true;b(this).blur();o=[];q=0;c=b(this).attr("rel")||"";if(!c||c==""||c==="nofollow")o.push(this);else{o=b("a[rel="+c+"], area[rel="+c+"]");q=o.index(this)}I()}});return this};b.fancybox=function(a,c){var g;if(!h){h=true;g=typeof c!=="undefined"?c:{};o=[];q=parseInt(g.index,10)||0;if(b.isArray(a)){for(var k=
38
+ 0,C=a.length;k<C;k++)if(typeof a[k]=="object")b(a[k]).data("fancybox",b.extend({},g,a[k]));else a[k]=b({}).data("fancybox",b.extend({content:a[k]},g));o=jQuery.merge(o,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},g,a));else a=b({}).data("fancybox",b.extend({content:a},g));o.push(a)}if(q>o.length||q<0)q=0;I()}};b.fancybox.showActivity=function(){clearInterval(K);t.show();K=setInterval(Z,66)};b.fancybox.hideActivity=function(){t.hide()};b.fancybox.next=function(){return b.fancybox.pos(p+
39
+ 1)};b.fancybox.prev=function(){return b.fancybox.pos(p-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);o=l;if(a>-1&&a<l.length){q=a;I()}else if(d.cyclic&&l.length>1){q=a>=l.length?0:l.length-1;I()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");N();e.onCancel(o,q,e);h=false}};b.fancybox.close=function(){function a(){u.fadeOut("fast");n.empty().hide();f.hide();b.event.trigger("fancybox-cleanup");j.empty();d.onClosed(l,p,d);l=e=[];p=q=0;d=e={};h=false}if(!(h||f.is(":hidden"))){h=
40
+ true;if(d&&false===d.onCleanup(l,p,d))h=false;else{N();b(E.add(z).add(A)).hide();b(j.add(u)).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");j.find("iframe").attr("src",M&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank");d.titlePosition!=="inside"&&n.empty();f.stop();if(d.transitionOut=="elastic"){r=V();var c=f.position();i={top:c.top,left:c.left,width:f.width(),height:f.height()};if(d.opacity)i.opacity=1;n.empty().hide();B.prop=1;
41
+ b(B).animate({prop:0},{duration:d.speedOut,easing:d.easingOut,step:T,complete:a})}else f.fadeOut(d.transitionOut=="none"?0:d.speedOut,a)}}};b.fancybox.resize=function(){u.is(":visible")&&u.css("height",b(document).height());b.fancybox.center(true)};b.fancybox.center=function(a){var c,g;if(!h){g=a===true?1:0;c=U();!g&&(f.width()>c[0]||f.height()>c[1])||f.stop().animate({top:parseInt(Math.max(c[3]-20,c[3]+(c[1]-j.height()-40)*0.5-d.padding)),left:parseInt(Math.max(c[2]-20,c[2]+(c[0]-j.width()-40)*0.5-
42
+ d.padding))},typeof a=="number"?a:200)}};b.fancybox.init=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),t=b('<div id="fancybox-loading"><div></div></div>'),u=b('<div id="fancybox-overlay"></div>'),f=b('<div id="fancybox-wrap"></div>'));D=b('<div id="fancybox-outer"></div>').append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>').appendTo(f);
43
+ D.append(j=b('<div id="fancybox-content"></div>'),E=b('<a id="fancybox-close"></a>'),n=b('<div id="fancybox-title"></div>'),z=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),A=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));E.click(b.fancybox.close);t.click(b.fancybox.cancel);z.click(function(a){a.preventDefault();b.fancybox.prev()});A.click(function(a){a.preventDefault();b.fancybox.next()});
44
+ b.fn.mousewheel&&f.bind("mousewheel.fb",function(a,c){if(h)a.preventDefault();else if(b(a.target).get(0).clientHeight==0||b(a.target).get(0).scrollHeight===b(a.target).get(0).clientHeight){a.preventDefault();b.fancybox[c>0?"prev":"next"]()}});b.support.opacity||f.addClass("fancybox-ie");if(M){t.addClass("fancybox-ie6");f.addClass("fancybox-ie6");b('<iframe id="fancybox-hide-sel-frame" src="'+(/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank")+'" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(D)}}};
45
+ b.fn.fancybox.defaults={padding:10,margin:40,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.7,overlayColor:"#777",titleShow:true,titlePosition:"float",titleFormat:null,titleFromAlt:false,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",
46
+ easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,enableKeyboardNav:true,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}};b(document).ready(function(){b.fancybox.init()})})(jQuery);
fancybox/jquery.fancybox-1.3.6.pack.css DELETED
@@ -1,43 +0,0 @@
1
- #fancybox-loading{position:fixed;top:50%;left:50%;width:40px;height:40px;margin-top:-20px;margin-left:-20px;cursor:pointer;overflow:hidden;z-index:11104;display:none;box-sizing:content-box;-moz-box-sizing: content-box}
2
- #fancybox-loading div{position:absolute;top:0;left:0;width:40px;height:480px;background-image:url(fancybox.png);box-sizing:content-box;-moz-box-sizing: content-box}
3
- #fancybox-overlay{position:absolute;top:0;left:0;width:100%;z-index:11100;display:none;box-sizing:content-box;-moz-box-sizing: content-box}
4
- #fancybox-tmp{border:0;overflow:auto;display:none;margin:0;padding:0}
5
- #fancybox-wrap{position:absolute;top:0;left:0;z-index:11101;outline:none;display:none;padding:20px;box-sizing:content-box;-moz-box-sizing: content-box}
6
- #fancybox-wrap div{box-sizing:content-box;-moz-box-sizing: content-box}
7
- #fancybox-outer{position:relative;width:100%;height:100%;background:#fff}
8
- #fancybox-content{width:0;height:0;outline:none;position:relative;overflow:hidden;z-index:11102;border:0 solid #fff;padding:0}
9
- #fancybox-hide-sel-frame{position:absolute;top:0;left:0;width:100%;height:100%;background:transparent;z-index:11101}
10
- #fancybox-close{position:absolute;top:-15px;right:-15px;width:30px;height:30px;background:transparent url(fancybox.png) -40px 0;cursor:pointer;z-index:11103;display:none}
11
- #fancybox-error{color:#444;font:normal 12px/20px Arial;margin:0;padding:14px}
12
- #fancybox-img{width:100%;height:100%;border:none;outline:none;line-height:0;vertical-align:top;margin:0;padding:0}
13
- #fancybox-frame{width:100%;height:100%;border:none;display:block}
14
- #fancybox-left,#fancybox-right{position:absolute;bottom:0;height:100%;width:35%;cursor:pointer;outline:none;background:transparent url(blank.gif);z-index:11102;display:none}
15
- #fancybox-left{left:0}
16
- #fancybox-right{right:0}
17
- #fancybox-left-ico,#fancybox-right-ico{position:absolute;top:50%;left:-9999px;width:30px;height:30px;margin-top:-15px;cursor:pointer;z-index:11102;display:block}
18
- #fancybox-left-ico{background-image:url(fancybox.png);background-position:-40px -30px}
19
- #fancybox-right-ico{background-image:url(fancybox.png);background-position:-40px -60px}
20
- #fancybox-left:hover,#fancybox-right:hover{visibility:visible}
21
- #fancybox-left:hover span{left:20px}
22
- #fancybox-right:hover span{left:auto;right:20px}
23
- .fancybox-bg{position:absolute;border:0;width:20px;height:20px;z-index:11001;margin:0;padding:0}
24
- #fancybox-bg-n{top:-20px;left:0;width:100%;background-image:url(fancybox-x.png)}
25
- #fancybox-bg-ne{top:-20px;right:-20px;background-image:url(fancybox.png);background-position:-40px -162px}
26
- #fancybox-bg-e{top:0;right:-20px;height:100%;background-image:url(fancybox-y.png);background-position:-20px 0}
27
- #fancybox-bg-se{bottom:-20px;right:-20px;background-image:url(fancybox.png);background-position:-40px -182px}
28
- #fancybox-bg-s{bottom:-20px;left:0;width:100%;background-image:url(fancybox-x.png);background-position:0 -20px}
29
- #fancybox-bg-sw{bottom:-20px;left:-20px;background-image:url(fancybox.png);background-position:-40px -142px}
30
- #fancybox-bg-w{top:0;left:-20px;height:100%;background-image:url(fancybox-y.png)}
31
- #fancybox-bg-nw{top:-20px;left:-20px;background-image:url(fancybox.png);background-position:-40px -122px}
32
- #fancybox-title{font-family:Helvetica;font-size:12px;z-index:11102}
33
- .fancybox-title-inside{padding-bottom:10px;text-align:center;color:#333;background:#fff;position:relative}
34
- .fancybox-title-outside{padding-top:10px;color:#fff}
35
- .fancybox-title-over{position:absolute;bottom:0;left:0;color:#FFF;text-align:left}
36
- #fancybox-title-over{background-image:url(fancy_title_over.png);display:block;padding:10px}
37
- .fancybox-title-float{position:absolute;left:0;bottom:-20px;height:32px}
38
- #fancybox-title-float-wrap{border:none;border-collapse:collapse;width:auto}
39
- #fancybox-title-float-wrap td{border:none;white-space:nowrap}
40
- #fancybox-title-float-left{background:url(fancybox.png) -40px -90px no-repeat;padding:0 0 0 15px}
41
- #fancybox-title-float-main{color:#FFF;line-height:29px;font-weight:700;background:url(fancybox-x.png) 0 -40px;padding:0 0 3px}
42
- #fancybox-title-float-right{background:url(fancybox.png) -55px -90px no-repeat;padding:0 0 0 15px}
43
- .fancybox-ie .fancybox-bg{background:transparent !important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fancybox/jquery.fancybox-1.3.6.pack.js DELETED
@@ -1,25 +0,0 @@
1
- /*
2
- * FancyBox - jQuery Plugin
3
- * Simple and fancy lightbox alternative
4
- *
5
- * Examples and documentation at: http://fancybox.net
6
- *
7
- * Copyright (c) 2008 - 2010 Janis Skarnelis
8
- * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
9
- *
10
- * Version: 1.3.4 (11/11/2010) patched and appended
11
- * Requires: jQuery v1.7+
12
- *
13
- * Dual licensed under the MIT and GPL licenses:
14
- * http://www.opensource.org/licenses/mit-license.php
15
- * http://www.gnu.org/licenses/gpl.html
16
- *
17
- * Patches applied for Easy FancyBox WordPress plugin integration:
18
- * Check for type = image for mousewheel
19
- * Better centering on ipad, RavanH ravanhagen@gmail.com
20
- * Quoted attribute selector, RavanH ravanhagen@gmail.com
21
- * Added isTouch variable and autoResize parameter, RavanH ravanhagen@gmail.com
22
- * jQuery 1.9+ compat. by Sabel http://sabel.bluegfx.de/wordpress/wp-content/uploads/2013/03/jquery.fancybox-1.3.4.js
23
- * Added SVG support by Simon Maillard simon@ogesta.fr
24
- */
25
- !function(a){var b,c,d,e,f,g,h,i,j,k,w,A,B,l=0,m={},n=[],o=0,p={},q=[],r=null,s=new Image,t=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,u=/[^\.]\.(swf)\s*$/i,v=/[^\.]\.(svg)\s*$/i,x=1,y=0,z="",C=!1,D=a.extend(a("<div/>")[0],{prop:0}),E=navigator.userAgent.match(/msie [6]/i)&&!window.XMLHttpRequest,F=void 0!==document.createTouch,G=function(){c.hide(),s.onerror=s.onload=null,r&&r.abort(),b.empty()},H=function(){return!1===m.onError(n,l,m)?(c.hide(),C=!1,void 0):(m.titleShow=!1,m.width="auto",m.height="auto",b.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>'),J(),void 0)},I=function(){var e,f,h,i,j,k,d=n[l];if(G(),m=a.extend({},a.fn.fancybox.defaults,"undefined"==typeof a(d).data("fancybox")?m:a(d).data("fancybox")),k=m.onStart(n,l,m),k===!1)return C=!1,void 0;if("object"==typeof k&&(m=a.extend(m,k)),h=m.title||(d.nodeName?a(d).attr("title"):d.title)||"",d.nodeName&&!m.orig&&(m.orig=a(d).children("img:first").length?a(d).children("img:first"):a(d)),""===h&&m.orig&&m.titleFromAlt&&(h=m.orig.attr("alt")),e=m.href||(d.nodeName?a(d).attr("href"):d.href)||null,(/^(?:javascript)/i.test(e)||"#"==e)&&(e=null),m.type?(f=m.type,e||(e=m.content)):m.content?f="html":e&&(f=e.match(t)?"image":e.match(u)?"swf":e.match(v)?"svg":a(d).hasClass("iframe")?"iframe":0===e.indexOf("#")?"inline":"ajax"),!f)return H(),void 0;switch("inline"==f&&(d=e.substr(e.indexOf("#")),f=a(d).length>0?"inline":"ajax"),m.type=f,m.href=e,m.title=h,m.autoDimensions&&("html"==m.type||"inline"==m.type||"ajax"==m.type?(m.width="auto",m.height="auto"):m.autoDimensions=!1),m.modal&&(m.overlayShow=!0,m.hideOnOverlayClick=!1,m.hideOnContentClick=!1,m.enableEscapeButton=!1,m.showCloseButton=!1),m.padding=parseInt(m.padding,10),m.margin=parseInt(m.margin,10),b.css("padding",m.padding+m.margin),a(".fancybox-inline-tmp").off("fancybox-cancel").on("fancybox-change",function(){a(this).replaceWith(g.children())}),f){case"html":b.html(m.content),J();break;case"inline":if(a(d).parent().is("#fancybox-content")===!0)return C=!1,void 0;a('<div class="fancybox-inline-tmp" />').hide().insertBefore(a(d)).on("fancybox-cleanup",function(){a(this).replaceWith(g.children())}).on("fancybox-cancel",function(){a(this).replaceWith(b.children())}),a(d).appendTo(b),J();break;case"image":C=!1,a.fancybox.showActivity(),s=new Image,s.onerror=function(){H()},s.onload=function(){C=!0,s.onerror=s.onload=null,K()},s.src=e;break;case"swf":m.scrolling="no",i='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+m.width+'" height="'+m.height+'"><param name="movie" value="'+e+'"></param>',j="",a.each(m.swf,function(a,b){i+='<param name="'+a+'" value="'+b+'"></param>',j+=" "+a+'="'+b+'"'}),i+='<embed src="'+e+'" type="application/x-shockwave-flash" width="'+m.width+'" height="'+m.height+'"'+j+"></embed></object>",b.html(i),J();break;case"svg":m.scrolling="no",i='<object width="'+m.width+'" height="'+m.height+'" data="'+e+'"></object>',b.html(i),J();break;case"ajax":C=!1,a.fancybox.showActivity(),m.ajax.win=m.ajax.success,r=a.ajax(a.extend({},m.ajax,{url:e,data:m.ajax.data||{},error:function(a){a.status>0&&H()},success:function(a,d,f){var g="object"==typeof f?f:r;if(200==g.status){if("function"==typeof m.ajax.win){if(k=m.ajax.win(e,a,d,f),k===!1)return c.hide(),void 0;("string"==typeof k||"object"==typeof k)&&(a=k)}b.html(a),J()}}}));break;case"iframe":L()}},J=function(){var c=m.width,d=m.height,e=0==a(window).width()?window.innerWidth:a(window).width(),f=0==a(window).height()?window.innerHeight:a(window).height();c=c.toString().indexOf("%")>-1?parseInt((e-2*m.margin)*parseFloat(c)/100,10)+"px":"auto"==c?"auto":c+"px",d=d.toString().indexOf("%")>-1?parseInt((f-2*m.margin)*parseFloat(d)/100,10)+"px":"auto"==d?"auto":d+"px",b.wrapInner('<div style="width:'+c+";height:"+d+";overflow: "+("auto"==m.scrolling?"auto":"yes"==m.scrolling?"scroll":"hidden")+';position:relative;"></div>'),m.width=b.width(),m.height=b.height(),L()},K=function(){m.width=s.width,m.height=s.height,a("<img />").attr({id:"fancybox-img",src:s.src,alt:m.title}).appendTo(b),L()},L=function(){var f,r;return c.hide(),e.is(":visible")&&!1===p.onCleanup(q,o,p)?(a(".fancybox-inline-tmp").trigger("fancybox-cancel"),C=!1,void 0):(C=!0,a(g.add(d)).off(),a(window).off("resize.fb scroll.fb"),a(document).off("keydown.fb"),e.is(":visible")&&"outside"!==p.titlePosition&&e.css("height",e.height()),q=n,o=l,p=m,p.overlayShow?(d.css({"background-color":p.overlayColor,opacity:p.overlayOpacity,cursor:p.hideOnOverlayClick?"pointer":"auto",height:a(document).height()}),d.is(":visible")||(E&&a("select:not(#fancybox-tmp select)").filter(function(){return"hidden"!==this.style.visibility}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"}),d.show())):d.hide(),B=T(),N(),e.is(":visible")?(a(h.add(j).add(k)).hide(),f=e.position(),A={top:f.top,left:f.left,width:e.width(),height:e.height()},r=A.width==B.width&&A.height==B.height,g.fadeTo(p.changeFade,.3,function(){var c=function(){g.html(b.contents()).fadeTo(p.changeFade,1,P)};a(".fancybox-inline-tmp").trigger("fancybox-change"),g.empty().removeAttr("filter").css({"border-width":p.padding,width:B.width-2*p.padding,height:m.autoDimensions?"auto":B.height-y-2*p.padding}),r?c():(D.prop=0,a(D).animate({prop:1},{duration:p.changeSpeed,easing:p.easingChange,step:R,complete:c}))}),void 0):(e.removeAttr("style"),g.css("border-width",p.padding),"elastic"==p.transitionIn?(A=V(),g.html(b.contents()),e.show(),p.opacity&&(B.opacity=0),D.prop=0,a(D).animate({prop:1},{duration:p.speedIn,easing:p.easingIn,step:R,complete:P}),void 0):("inside"==p.titlePosition&&y>0&&i.show(),g.css({width:B.width-2*p.padding,height:m.autoDimensions?"auto":B.height-y-2*p.padding}).html(b.contents()),e.css(B).fadeIn("none"==p.transitionIn?0:p.speedIn,P),void 0)))},M=function(a){return a&&a.length?"float"==p.titlePosition?'<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">'+a+'</td><td id="fancybox-title-float-right"></td></tr></table>':'<div id="fancybox-title-'+p.titlePosition+'">'+a+"</div>":!1},N=function(){if(z=p.title||"",y=0,i.empty().removeAttr("style").removeClass(),p.titleShow===!1)return i.hide(),void 0;if(z=a.isFunction(p.titleFormat)?p.titleFormat(z,q,o,p):M(z),!z||""===z)return i.hide(),void 0;switch(i.addClass("fancybox-title-"+p.titlePosition).html(z).appendTo("body").show(),p.titlePosition){case"inside":i.css({width:B.width-2*p.padding,marginLeft:p.padding,marginRight:p.padding}),y=i.outerHeight(!0),i.appendTo(f),B.height+=y;break;case"over":i.css({marginLeft:p.padding,width:B.width-2*p.padding,bottom:p.padding}).appendTo(f);break;case"float":i.css("left",-1*parseInt((i.width()-B.width-40)/2,10)).appendTo(e);break;default:i.css({width:B.width-2*p.padding,paddingLeft:p.padding,paddingRight:p.padding}).appendTo(e)}i.hide()},O=function(){return(p.enableEscapeButton||p.enableKeyboardNav)&&a(document).on("keydown.fb",function(b){27==b.keyCode&&p.enableEscapeButton?(b.preventDefault(),a.fancybox.close()):37!=b.keyCode&&39!=b.keyCode||!p.enableKeyboardNav||"INPUT"===b.target.tagName||"TEXTAREA"===b.target.tagName||"SELECT"===b.target.tagName||(b.preventDefault(),a.fancybox[37==b.keyCode?"prev":"next"]())}),p.showNavArrows?((p.cyclic&&q.length>1||0!==o)&&j.show(),(p.cyclic&&q.length>1||o!=q.length-1)&&k.show(),void 0):(j.hide(),k.hide(),void 0)},P=function(){a.support.opacity||(g.get(0).style.removeAttribute("filter"),e.get(0).style.removeAttribute("filter")),m.autoDimensions&&g.css("height","auto"),e.css("height","auto"),z&&z.length&&i.show(),p.showCloseButton&&h.show(),O(),p.hideOnContentClick&&g.on("click",a.fancybox.close),p.hideOnOverlayClick&&d.on("click",a.fancybox.close),p.autoResize&&a(window).on("resize.fb",a.fancybox.resize),p.centerOnScroll&&a(window).on("scroll.fb",a.fancybox.center),a.fn.mousewheel&&e.on("mousewheel.fb",function(b,c){C?b.preventDefault():"image"!=p.type||0!=a(b.target).get(0).clientHeight&&a(b.target).get(0).scrollHeight!==a(b.target).get(0).clientHeight||(b.preventDefault(),a.fancybox[c>0?"prev":"next"]())}),"iframe"==p.type&&a('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(navigator.userAgent.match(/msie [6]/i)?'allowtransparency="true""':"")+' scrolling="'+m.scrolling+'" src="'+p.href+'"></iframe>').appendTo(g),e.show(),C=!1,a.fancybox.center(),p.onComplete(q,o,p),Q()},Q=function(){var a,b;q.length-1>o&&(a=q[o+1].href,"undefined"!=typeof a&&a.match(t)&&(b=new Image,b.src=a)),o>0&&(a=q[o-1].href,"undefined"!=typeof a&&a.match(t)&&(b=new Image,b.src=a))},R=function(a){var b={width:parseInt(A.width+(B.width-A.width)*a,10),height:parseInt(A.height+(B.height-A.height)*a,10),top:parseInt(A.top+(B.top-A.top)*a,10),left:parseInt(A.left+(B.left-A.left)*a,10)};"undefined"!=typeof B.opacity&&(b.opacity=.5>a?.5:a),e.css(b),g.css({width:b.width-2*p.padding,height:b.height-y*a-2*p.padding})},S=function(){return[0==a(window).width()?window.innerWidth:a(window).width()-2*p.margin,0==a(window).height()?window.innerHeight:a(window).height()-2*p.margin,a(document).scrollLeft()+p.margin,a(document).scrollTop()+p.margin]},T=function(){var e,a=S(),b={},c=p.autoScale,d=2*p.padding;return b.width=p.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(p.width)/100,10):p.width+d,b.height=p.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(p.height)/100,10):p.height+d,c&&(b.width>a[0]||b.height>a[1])&&("image"==m.type||"svg"==m.type||"swf"==m.type?(e=p.width/p.height,b.width>a[0]&&(b.width=a[0],b.height=parseInt((b.width-d)/e+d,10)),b.height>a[1]&&(b.height=a[1],b.width=parseInt((b.height-d)*e+d,10))):(b.width=Math.min(b.width,a[0]),b.height=Math.min(b.height,a[1]))),b.top=parseInt(Math.max(a[3]-20,a[3]+.5*(a[1]-b.height-40)),10),b.left=parseInt(Math.max(a[2]-20,a[2]+.5*(a[0]-b.width-40)),10),b},U=function(a){var b=a.offset();return b.top+=parseInt(a.css("paddingTop"),10)||0,b.left+=parseInt(a.css("paddingLeft"),10)||0,b.top+=parseInt(a.css("border-top-width"),10)||0,b.left+=parseInt(a.css("border-left-width"),10)||0,b.width=a.width(),b.height=a.height(),b},V=function(){var d,e,b=m.orig?a(m.orig):!1,c={};return b&&b.length?(d=U(b),c={width:d.width+2*p.padding,height:d.height+2*p.padding,top:d.top-p.padding-20,left:d.left-p.padding-20}):(e=S(),c={width:2*p.padding,height:2*p.padding,top:parseInt(e[3]+.5*e[1],10),left:parseInt(e[2]+.5*e[0],10)}),c},W=function(){return c.is(":visible")?(a("div",c).css("top",-40*x+"px"),x=(x+1)%12,void 0):(clearInterval(w),void 0)};a.fn.fancybox=function(b){return a(this).length?(a(this).data("fancybox",a.extend({},b,a.metadata?a(this).metadata():{})).off("click.fb").on("click.fb",function(b){if(b.preventDefault(),!C){C=!0,a(this).blur(),n=[],l=0;var c=a(this).attr("rel")||"";c&&""!=c&&"nofollow"!==c?(n=a('a[rel="'+c+'"], area[rel="'+c+'"]'),l=n.index(this)):n.push(this),I()}}),this):this},a.fancybox=function(b){var c;if(!C){if(C=!0,c="undefined"!=typeof arguments[1]?arguments[1]:{},n=[],l=parseInt(c.index,10)||0,a.isArray(b)){for(var d=0,e=b.length;e>d;d++)"object"==typeof b[d]?a(b[d]).data("fancybox",a.extend({},c,b[d])):b[d]=a({}).data("fancybox",a.extend({content:b[d]},c));n=jQuery.merge(n,b)}else"object"==typeof b?a(b).data("fancybox",a.extend({},c,b)):b=a({}).data("fancybox",a.extend({content:b},c)),n.push(b);(l>n.length||0>l)&&(l=0),I()}},a.fancybox.showActivity=function(){clearInterval(w),c.show(),w=setInterval(W,66)},a.fancybox.hideActivity=function(){c.hide()},a.fancybox.next=function(){return a.fancybox.pos(o+1)},a.fancybox.prev=function(){return a.fancybox.pos(o-1)},a.fancybox.pos=function(a){C||(a=parseInt(a),n=q,a>-1&&a<q.length?(l=a,I()):p.cyclic&&q.length>1&&(l=a>=q.length?0:q.length-1,I()))},a.fancybox.cancel=function(){C||(C=!0,a(".fancybox-inline-tmp").trigger("fancybox-cancel"),G(),m.onCancel(n,l,m),C=!1)},a.fancybox.close=function(){function b(){d.fadeOut("fast"),i.empty().hide(),e.hide(),a(".fancybox-inline-tmp").trigger("fancybox-cleanup"),g.empty(),p.onClosed(q,o,p),q=m=[],o=l=0,p=m={},C=!1}if(!C&&!e.is(":hidden")){if(C=!0,p&&!1===p.onCleanup(q,o,p))return C=!1,void 0;if(G(),a(h.add(j).add(k)).hide(),a(g.add(d)).off(),a(window).off("resize.fb scroll.fb mousewheel.fb"),a(document).off("keydown.fb"),g.find("iframe#fancybox-frame").attr("src",E&&/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank"),"inside"!==p.titlePosition&&i.empty(),e.stop(),"elastic"==p.transitionOut){A=V();var c=e.position();B={top:c.top,left:c.left,width:e.width(),height:e.height()},p.opacity&&(B.opacity=1),i.empty().hide(),D.prop=1,a(D).animate({prop:0},{duration:p.speedOut,easing:p.easingOut,step:R,complete:b})}else e.fadeOut("none"==p.transitionOut?0:p.speedOut,b)}},a.fancybox.resize=function(){d.is(":visible")&&d.css("height",a(document).height()),a.fancybox.center(!0)},a.fancybox.center=function(){var a,b;C||(b=arguments[0]===!0?1:0,a=S(),(b||!(e.width()>a[0]||e.height()>a[1]))&&e.stop().animate({top:parseInt(Math.max(a[3]-20,a[3]+.5*(a[1]-g.height()-40)-p.padding)),left:parseInt(Math.max(a[2]-20,a[2]+.5*(a[0]-g.width()-40)-p.padding))},"number"==typeof arguments[0]?arguments[0]:200))},a.fancybox.init=function(){a("#fancybox-wrap").length||(a("body").append(b=a('<div id="fancybox-tmp"></div>'),c=a('<div id="fancybox-loading"><div></div></div>'),d=a('<div id="fancybox-overlay"></div>'),e=a('<div id="fancybox-wrap"></div>')),f=a('<div id="fancybox-outer"></div>').append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>').appendTo(e),f.append(g=a('<div id="fancybox-content"></div>'),h=a('<a id="fancybox-close"></a>'),i=a('<div id="fancybox-title"></div>'),j=a('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),k=a('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')),h.click(a.fancybox.close),c.click(a.fancybox.cancel),j.click(function(b){b.preventDefault(),a.fancybox.prev()}),k.click(function(b){b.preventDefault(),a.fancybox.next()}),a.support.opacity||e.addClass("fancybox-ie"),E&&(c.addClass("fancybox-ie6"),e.addClass("fancybox-ie6"),a('<iframe id="fancybox-hide-sel-frame" src="'+(/^https/i.test(window.location.href||"")?"javascript:void(false)":"about:blank")+'" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(f)))},a.fn.fancybox.defaults={padding:10,margin:40,opacity:!1,modal:!1,cyclic:!1,scrolling:"auto",width:560,height:340,autoScale:!0,autoDimensions:!0,centerOnScroll:!F,autoResize:!0,ajax:{},swf:{wmode:"transparent"},svg:{wmode:"transparent"},hideOnOverlayClick:!0,hideOnContentClick:!1,overlayShow:!0,overlayOpacity:.7,overlayColor:"#777",titleShow:!0,titlePosition:"float",titleFormat:null,titleFromAlt:!1,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:!0,showNavArrows:!0,enableEscapeButton:!0,enableKeyboardNav:!0,onStart:function(){},onCancel:function(){},onComplete:function(){},onCleanup:function(){},onClosed:function(){},onError:function(){}},a(document).ready(function(){a.fancybox.init()})}(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fancybox/jquery.mousewheel-3.0.4.pack.js ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
2
+ * Licensed under the MIT License (LICENSE.txt).
3
+ *
4
+ * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
5
+ * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
6
+ * Thanks to: Seamus Leahy for adding deltaX and deltaY
7
+ *
8
+ * Version: 3.0.4
9
+ *
10
+ * Requires: 1.2.2+
11
+ */
12
+
13
+ (function(d){function g(a){var b=a||window.event,i=[].slice.call(arguments,1),c=0,h=0,e=0;a=d.event.fix(b);a.type="mousewheel";if(a.wheelDelta)c=a.wheelDelta/120;if(a.detail)c=-a.detail/3;e=c;if(b.axis!==undefined&&b.axis===b.HORIZONTAL_AXIS){e=0;h=-1*c}if(b.wheelDeltaY!==undefined)e=b.wheelDeltaY/120;if(b.wheelDeltaX!==undefined)h=-1*b.wheelDeltaX/120;i.unshift(a,c,h,e);return d.event.handle.apply(this,i)}var f=["DOMMouseScroll","mousewheel"];d.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=
14
+ f.length;a;)this.addEventListener(f[--a],g,false);else this.onmousewheel=g},teardown:function(){if(this.removeEventListener)for(var a=f.length;a;)this.removeEventListener(f[--a],g,false);else this.onmousewheel=null}};d.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);
jquery.easing.js DELETED
@@ -1,205 +0,0 @@
1
- /*
2
- * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
- *
4
- * Uses the built in easing capabilities added In jQuery 1.1
5
- * to offer multiple easing options
6
- *
7
- * TERMS OF USE - jQuery Easing
8
- *
9
- * Open source under the BSD License.
10
- *
11
- * Copyright © 2008 George McGinley Smith
12
- * All rights reserved.
13
- *
14
- * Redistribution and use in source and binary forms, with or without modification,
15
- * are permitted provided that the following conditions are met:
16
- *
17
- * Redistributions of source code must retain the above copyright notice, this list of
18
- * conditions and the following disclaimer.
19
- * Redistributions in binary form must reproduce the above copyright notice, this list
20
- * of conditions and the following disclaimer in the documentation and/or other materials
21
- * provided with the distribution.
22
- *
23
- * Neither the name of the author nor the names of contributors may be used to endorse
24
- * or promote products derived from this software without specific prior written permission.
25
- *
26
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34
- * OF THE POSSIBILITY OF SUCH DAMAGE.
35
- *
36
- */
37
-
38
- // t: current time, b: begInnIng value, c: change In value, d: duration
39
- jQuery.easing['jswing'] = jQuery.easing['swing'];
40
-
41
- jQuery.extend( jQuery.easing,
42
- {
43
- def: 'easeOutQuad',
44
- swing: function (x, t, b, c, d) {
45
- //alert(jQuery.easing.default);
46
- return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
47
- },
48
- easeInQuad: function (x, t, b, c, d) {
49
- return c*(t/=d)*t + b;
50
- },
51
- easeOutQuad: function (x, t, b, c, d) {
52
- return -c *(t/=d)*(t-2) + b;
53
- },
54
- easeInOutQuad: function (x, t, b, c, d) {
55
- if ((t/=d/2) < 1) return c/2*t*t + b;
56
- return -c/2 * ((--t)*(t-2) - 1) + b;
57
- },
58
- easeInCubic: function (x, t, b, c, d) {
59
- return c*(t/=d)*t*t + b;
60
- },
61
- easeOutCubic: function (x, t, b, c, d) {
62
- return c*((t=t/d-1)*t*t + 1) + b;
63
- },
64
- easeInOutCubic: function (x, t, b, c, d) {
65
- if ((t/=d/2) < 1) return c/2*t*t*t + b;
66
- return c/2*((t-=2)*t*t + 2) + b;
67
- },
68
- easeInQuart: function (x, t, b, c, d) {
69
- return c*(t/=d)*t*t*t + b;
70
- },
71
- easeOutQuart: function (x, t, b, c, d) {
72
- return -c * ((t=t/d-1)*t*t*t - 1) + b;
73
- },
74
- easeInOutQuart: function (x, t, b, c, d) {
75
- if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
76
- return -c/2 * ((t-=2)*t*t*t - 2) + b;
77
- },
78
- easeInQuint: function (x, t, b, c, d) {
79
- return c*(t/=d)*t*t*t*t + b;
80
- },
81
- easeOutQuint: function (x, t, b, c, d) {
82
- return c*((t=t/d-1)*t*t*t*t + 1) + b;
83
- },
84
- easeInOutQuint: function (x, t, b, c, d) {
85
- if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
86
- return c/2*((t-=2)*t*t*t*t + 2) + b;
87
- },
88
- easeInSine: function (x, t, b, c, d) {
89
- return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
90
- },
91
- easeOutSine: function (x, t, b, c, d) {
92
- return c * Math.sin(t/d * (Math.PI/2)) + b;
93
- },
94
- easeInOutSine: function (x, t, b, c, d) {
95
- return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
96
- },
97
- easeInExpo: function (x, t, b, c, d) {
98
- return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
99
- },
100
- easeOutExpo: function (x, t, b, c, d) {
101
- return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
102
- },
103
- easeInOutExpo: function (x, t, b, c, d) {
104
- if (t==0) return b;
105
- if (t==d) return b+c;
106
- if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
107
- return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
108
- },
109
- easeInCirc: function (x, t, b, c, d) {
110
- return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
111
- },
112
- easeOutCirc: function (x, t, b, c, d) {
113
- return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
114
- },
115
- easeInOutCirc: function (x, t, b, c, d) {
116
- if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
117
- return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
118
- },
119
- easeInElastic: function (x, t, b, c, d) {
120
- var s=1.70158;var p=0;var a=c;
121
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
122
- if (a < Math.abs(c)) { a=c; var s=p/4; }
123
- else var s = p/(2*Math.PI) * Math.asin (c/a);
124
- return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
125
- },
126
- easeOutElastic: function (x, t, b, c, d) {
127
- var s=1.70158;var p=0;var a=c;
128
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
129
- if (a < Math.abs(c)) { a=c; var s=p/4; }
130
- else var s = p/(2*Math.PI) * Math.asin (c/a);
131
- return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
132
- },
133
- easeInOutElastic: function (x, t, b, c, d) {
134
- var s=1.70158;var p=0;var a=c;
135
- if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
136
- if (a < Math.abs(c)) { a=c; var s=p/4; }
137
- else var s = p/(2*Math.PI) * Math.asin (c/a);
138
- if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
139
- return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
140
- },
141
- easeInBack: function (x, t, b, c, d, s) {
142
- if (s == undefined) s = 1.70158;
143
- return c*(t/=d)*t*((s+1)*t - s) + b;
144
- },
145
- easeOutBack: function (x, t, b, c, d, s) {
146
- if (s == undefined) s = 1.70158;
147
- return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
148
- },
149
- easeInOutBack: function (x, t, b, c, d, s) {
150
- if (s == undefined) s = 1.70158;
151
- if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
152
- return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
153
- },
154
- easeInBounce: function (x, t, b, c, d) {
155
- return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
156
- },
157
- easeOutBounce: function (x, t, b, c, d) {
158
- if ((t/=d) < (1/2.75)) {
159
- return c*(7.5625*t*t) + b;
160
- } else if (t < (2/2.75)) {
161
- return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
162
- } else if (t < (2.5/2.75)) {
163
- return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
164
- } else {
165
- return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
166
- }
167
- },
168
- easeInOutBounce: function (x, t, b, c, d) {
169
- if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
170
- return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
171
- }
172
- });
173
-
174
- /*
175
- *
176
- * TERMS OF USE - EASING EQUATIONS
177
- *
178
- * Open source under the BSD License.
179
- *
180
- * Copyright © 2001 Robert Penner
181
- * All rights reserved.
182
- *
183
- * Redistribution and use in source and binary forms, with or without modification,
184
- * are permitted provided that the following conditions are met:
185
- *
186
- * Redistributions of source code must retain the above copyright notice, this list of
187
- * conditions and the following disclaimer.
188
- * Redistributions in binary form must reproduce the above copyright notice, this list
189
- * of conditions and the following disclaimer in the documentation and/or other materials
190
- * provided with the distribution.
191
- *
192
- * Neither the name of the author nor the names of contributors may be used to endorse
193
- * or promote products derived from this software without specific prior written permission.
194
- *
195
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
196
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
197
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
198
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
199
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
200
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
201
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
202
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
203
- * OF THE POSSIBILITY OF SUCH DAMAGE.
204
- *
205
- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
jquery.easing.pack.js DELETED
@@ -1,14 +0,0 @@
1
- /*
2
- * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
- *
4
- * Uses the built in easing capabilities added In jQuery 1.1
5
- * to offer multiple easing options
6
- *
7
- * TERMS OF USE - jQuery Easing
8
- *
9
- * Open source under the BSD License.
10
- *
11
- * Copyright © 2008 George McGinley Smith
12
- * All rights reserved.
13
- */
14
- jQuery.easing.jswing=jQuery.easing.swing,jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(a,b,c,d,e){return jQuery.easing[jQuery.easing.def](a,b,c,d,e)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){return 1>(b/=e/2)?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){return 1>(b/=e/2)?d/2*b*b*b+c:d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){return 1>(b/=e/2)?d/2*b*b*b*b+c:-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){return 1>(b/=e/2)?d/2*b*b*b*b*b+c:d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return 0==b?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){return 0==b?c:b==e?c+d:1>(b/=e/2)?d/2*Math.pow(2,10*(b-1))+c:d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){return 1>(b/=e/2)?-d/2*(Math.sqrt(1-b*b)-1)+c:d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(0==b)return c;if(1==(b/=e))return c+d;if(g||(g=.3*e),Math.abs(d)>h){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g))+c},easeOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(0==b)return c;if(1==(b/=e))return c+d;if(g||(g=.3*e),Math.abs(d)>h){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*b)*Math.sin((b*e-f)*2*Math.PI/g)+d+c},easeInOutElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(0==b)return c;if(2==(b/=e/2))return c+d;if(g||(g=e*.3*1.5),Math.abs(d)>h){h=d;var f=g/4}else var f=g/(2*Math.PI)*Math.asin(d/h);return 1>b?-.5*h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+c:.5*h*Math.pow(2,-10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+d+c},easeInBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),d*(b/=e)*b*((f+1)*b-f)+c},easeOutBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),d*((b=b/e-1)*b*((f+1)*b+f)+1)+c},easeInOutBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),1>(b/=e/2)?d/2*b*b*(((f*=1.525)+1)*b-f)+c:d/2*((b-=2)*b*(((f*=1.525)+1)*b+f)+2)+c},easeInBounce:function(a,b,c,d,e){return d-jQuery.easing.easeOutBounce(a,e-b,0,d,e)+c},easeOutBounce:function(a,b,c,d,e){return 1/2.75>(b/=e)?d*7.5625*b*b+c:2/2.75>b?d*(7.5625*(b-=1.5/2.75)*b+.75)+c:2.5/2.75>b?d*(7.5625*(b-=2.25/2.75)*b+.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+.984375)+c},easeInOutBounce:function(a,b,c,d,e){return e/2>b?.5*jQuery.easing.easeInBounce(a,2*b,0,d,e)+c:.5*jQuery.easing.easeOutBounce(a,2*b-e,0,d,e)+.5*d+c}});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
jquery.metadata.pack.js DELETED
@@ -1,21 +0,0 @@
1
- /*
2
- * Metadata - jQuery plugin for parsing metadata from elements
3
- *
4
- * Copyright (c) 2006 John Resig, Yehuda Katz, J�örn Zaefferer, Paul McLanahan
5
- *
6
- * Dual licensed under the MIT and GPL licenses:
7
- * http://www.opensource.org/licenses/mit-license.php
8
- * http://www.gnu.org/licenses/gpl.html
9
- *
10
- * Revision: $Id: jquery.metadata.js 3640 2007-10-11 18:34:38Z pmclanahan $
11
- *
12
- */
13
-
14
- (function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name;},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";var getData=function(data){if(typeof data!="string")return data;if(data.indexOf('{')<0){data=eval("("+data+")");}}
15
- var getObject=function(data){if(typeof data!="string")return data;data=eval("("+data+")");return data;}
16
- if(settings.type=="html5"){var object={};$(elem.attributes).each(function(){var name=this.nodeName;if(name.match(/^data-/))name=name.replace(/^data-/,'');else return true;object[name]=getObject(this.nodeValue);});}else{if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)
17
- data=m[1];}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)
18
- data=$.trim(e[0].innerHTML);}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)
19
- data=attr;}
20
- object=getObject(data.indexOf("{")<0?"{"+data+"}":data);}
21
- $.data(elem,settings.single,object);return object;}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts);};})(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
jquery.mousewheel.js DELETED
@@ -1,117 +0,0 @@
1
- /*! Copyright (c) 2013 Brandon Aaron (http://brandonaaron.net)
2
- * Licensed under the MIT License (LICENSE.txt).
3
- *
4
- * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
5
- * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
6
- * Thanks to: Seamus Leahy for adding deltaX and deltaY
7
- *
8
- * Version: 3.1.3
9
- *
10
- * Requires: 1.2.2+
11
- */
12
-
13
- (function (factory) {
14
- if ( typeof define === 'function' && define.amd ) {
15
- // AMD. Register as an anonymous module.
16
- define(['jquery'], factory);
17
- } else if (typeof exports === 'object') {
18
- // Node/CommonJS style for Browserify
19
- module.exports = factory;
20
- } else {
21
- // Browser globals
22
- factory(jQuery);
23
- }
24
- }(function ($) {
25
-
26
- var toFix = ['wheel', 'mousewheel', 'DOMMouseScroll', 'MozMousePixelScroll'];
27
- var toBind = 'onwheel' in document || document.documentMode >= 9 ? ['wheel'] : ['mousewheel', 'DomMouseScroll', 'MozMousePixelScroll'];
28
- var lowestDelta, lowestDeltaXY;
29
-
30
- if ( $.event.fixHooks ) {
31
- for ( var i = toFix.length; i; ) {
32
- $.event.fixHooks[ toFix[--i] ] = $.event.mouseHooks;
33
- }
34
- }
35
-
36
- $.event.special.mousewheel = {
37
- setup: function() {
38
- if ( this.addEventListener ) {
39
- for ( var i = toBind.length; i; ) {
40
- this.addEventListener( toBind[--i], handler, false );
41
- }
42
- } else {
43
- this.onmousewheel = handler;
44
- }
45
- },
46
-
47
- teardown: function() {
48
- if ( this.removeEventListener ) {
49
- for ( var i = toBind.length; i; ) {
50
- this.removeEventListener( toBind[--i], handler, false );
51
- }
52
- } else {
53
- this.onmousewheel = null;
54
- }
55
- }
56
- };
57
-
58
- $.fn.extend({
59
- mousewheel: function(fn) {
60
- return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
61
- },
62
-
63
- unmousewheel: function(fn) {
64
- return this.unbind("mousewheel", fn);
65
- }
66
- });
67
-
68
-
69
- function handler(event) {
70
- var orgEvent = event || window.event,
71
- args = [].slice.call(arguments, 1),
72
- delta = 0,
73
- deltaX = 0,
74
- deltaY = 0,
75
- absDelta = 0,
76
- absDeltaXY = 0,
77
- fn;
78
- event = $.event.fix(orgEvent);
79
- event.type = "mousewheel";
80
-
81
- // Old school scrollwheel delta
82
- if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta; }
83
- if ( orgEvent.detail ) { delta = orgEvent.detail * -1; }
84
-
85
- // New school wheel delta (wheel event)
86
- if ( orgEvent.deltaY ) {
87
- deltaY = orgEvent.deltaY * -1;
88
- delta = deltaY;
89
- }
90
- if ( orgEvent.deltaX ) {
91
- deltaX = orgEvent.deltaX;
92
- delta = deltaX * -1;
93
- }
94
-
95
- // Webkit
96
- if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY; }
97
- if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = orgEvent.wheelDeltaX * -1; }
98
-
99
- // Look for lowest delta to normalize the delta values
100
- absDelta = Math.abs(delta);
101
- if ( !lowestDelta || absDelta < lowestDelta ) { lowestDelta = absDelta; }
102
- absDeltaXY = Math.max(Math.abs(deltaY), Math.abs(deltaX));
103
- if ( !lowestDeltaXY || absDeltaXY < lowestDeltaXY ) { lowestDeltaXY = absDeltaXY; }
104
-
105
- // Get a whole value for the deltas
106
- fn = delta > 0 ? 'floor' : 'ceil';
107
- delta = Math[fn](delta / lowestDelta);
108
- deltaX = Math[fn](deltaX / lowestDeltaXY);
109
- deltaY = Math[fn](deltaY / lowestDeltaXY);
110
-
111
- // Add event and delta to the front of the arguments
112
- args.unshift(event, delta, deltaX, deltaY);
113
-
114
- return ($.event.dispatch || $.event.handle).apply(this, args);
115
- }
116
-
117
- }));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
jquery.mousewheel.pack.js DELETED
@@ -1,8 +0,0 @@
1
- /*! Copyright (c) 2013 Brandon Aaron (http://brandonaaron.net)
2
- * Licensed under the MIT License (LICENSE.txt).
3
- * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
4
- * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
5
- * Thanks to: Seamus Leahy for adding deltaX and deltaY
6
- * Version: 3.1.3
7
- */
8
- (function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)})(function(a){function g(b){var l,c=b||window.event,f=[].slice.call(arguments,1),g=0,h=0,i=0,j=0,k=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(g=c.wheelDelta),c.detail&&(g=-1*c.detail),c.deltaY&&(i=-1*c.deltaY,g=i),c.deltaX&&(h=c.deltaX,g=-1*h),void 0!==c.wheelDeltaY&&(i=c.wheelDeltaY),void 0!==c.wheelDeltaX&&(h=-1*c.wheelDeltaX),j=Math.abs(g),(!d||d>j)&&(d=j),k=Math.max(Math.abs(i),Math.abs(h)),(!e||e>k)&&(e=k),l=g>0?"floor":"ceil",g=Math[l](g/d),h=Math[l](h/e),i=Math[l](i/e),f.unshift(b,g,h,i),(a.event.dispatch||a.event.handle).apply(this,f)}var d,e,b=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],c="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"];if(a.event.fixHooks)for(var f=b.length;f;)a.event.fixHooks[b[--f]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],g,!1);else this.onmousewheel=g},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],g,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})});
 
 
 
 
 
 
 
 
languages/easy-fancybox-cs_CZ.mo DELETED
Binary file
languages/easy-fancybox-cs_CZ.po DELETED
@@ -1,1022 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-06-14 00:53+0100\n"
8
- "PO-Revision-Date: 2013-09-11 17:44+0100\n"
9
- "Last-Translator: RavanH <ravanhagen@gmail.com>\n"
10
- "Language-Team: \n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
-
18
- #: ../easy-fancybox-settings.php:9 ../easy-fancybox-class.php:566
19
- msgid "Global settings"
20
- msgstr "Nastavení"
21
-
22
- #: ../easy-fancybox-settings.php:14
23
- msgid "Media"
24
- msgstr "Média"
25
-
26
- #: ../easy-fancybox-settings.php:20
27
- msgid "Enable FancyBox for"
28
- msgstr "Povolit FancyBox pro"
29
-
30
- #: ../easy-fancybox-settings.php:27 ../easy-fancybox-settings.php:370
31
- #: ../easy-fancybox-class.php:567
32
- msgid "Images"
33
- msgstr "Obrázky"
34
-
35
- #: ../easy-fancybox-settings.php:34 ../easy-fancybox-settings.php:633
36
- #: ../easy-fancybox-class.php:568
37
- msgid "Inline content"
38
- msgstr "Vnitřní obsah"
39
-
40
- #: ../easy-fancybox-settings.php:41 ../easy-fancybox-settings.php:743
41
- #: ../easy-fancybox-class.php:569
42
- msgid "PDF"
43
- msgstr "PDF"
44
-
45
- #: ../easy-fancybox-settings.php:48 ../easy-fancybox-settings.php:868
46
- #: ../easy-fancybox-class.php:570
47
- msgid "SWF"
48
- msgstr "SWF"
49
-
50
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
51
- msgid "SVG"
52
- msgstr "SVG"
53
-
54
- #: ../easy-fancybox-settings.php:62 ../easy-fancybox-settings.php:1057
55
- #: ../easy-fancybox-class.php:571
56
- msgid "YouTube"
57
- msgstr "YouTube"
58
-
59
- #: ../easy-fancybox-settings.php:69 ../easy-fancybox-settings.php:1165
60
- #: ../easy-fancybox-class.php:572
61
- msgid "Vimeo"
62
- msgstr "Vimeo"
63
-
64
- #: ../easy-fancybox-settings.php:76 ../easy-fancybox-settings.php:1265
65
- #: ../easy-fancybox-class.php:573
66
- msgid "Dailymotion"
67
- msgstr "Dailymotion"
68
-
69
- #: ../easy-fancybox-settings.php:83 ../easy-fancybox-settings.php:1391
70
- #: ../easy-fancybox-class.php:574
71
- msgid "iFrames"
72
- msgstr "iFrames"
73
-
74
- #: ../easy-fancybox-settings.php:86
75
- msgid ""
76
- "For advanced options and support, please get the Easy FancyBox - Pro "
77
- "extension."
78
- msgstr ""
79
- "Pro pokročilé možnosti a podporu prosím zakupte Easy FancyBox - Pro "
80
- "rozšíření."
81
-
82
- #: ../easy-fancybox-settings.php:89
83
- msgid "Links"
84
- msgstr "Odkazy"
85
-
86
- #: ../easy-fancybox-settings.php:95
87
- msgid "Exclude"
88
- msgstr "Vynechat"
89
-
90
- #: ../easy-fancybox-settings.php:100 ../easy-fancybox-settings.php:114
91
- #: ../easy-fancybox-settings.php:421 ../easy-fancybox-settings.php:448
92
- #: ../easy-fancybox-settings.php:677 ../easy-fancybox-settings.php:704
93
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:227
94
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:252
95
- msgid "None"
96
- msgstr "Žádný"
97
-
98
- #: ../easy-fancybox-settings.php:101
99
- msgid "Empty (hidden) links"
100
- msgstr "Prázdné (skryté) odkazy"
101
-
102
- #: ../easy-fancybox-settings.php:102
103
- msgid "Without thumbnail image"
104
- msgstr "Obrázky bez náhledu"
105
-
106
- #: ../easy-fancybox-settings.php:109
107
- msgid "Open on page load"
108
- msgstr "Otevřít při načtení stránky"
109
-
110
- #: ../easy-fancybox-settings.php:115
111
- msgid "Link with ID \"fancybox-auto\""
112
- msgstr "Propojit s ID \"fancybox-auto\""
113
-
114
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
115
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
116
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
117
- #: ../easy-fancybox-settings.php:723
118
- msgid "More options &raquo;"
119
- msgstr "Více nastavení &raquo;"
120
-
121
- #: ../easy-fancybox-settings.php:125
122
- msgid ""
123
- "Include the Metadata jQuery extension script to allow passing custom "
124
- "parameters via link class."
125
- msgstr ""
126
- "Vložit Metadata jQuery doplněk, který umožnuje přeskočení vlastním parametrů "
127
- "přes link class."
128
-
129
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
130
- msgid "Overlay"
131
- msgstr "Rámeček"
132
-
133
- #: ../easy-fancybox-settings.php:139
134
- msgid "Show the overlay around content opened in FancyBox."
135
- msgstr "Ukazovat rámeček kolem obsahu otevřeného ve FancyBox."
136
-
137
- #: ../easy-fancybox-settings.php:146
138
- msgid "Close FancyBox when overlay is clicked."
139
- msgstr "Zavřít FancyBox při kliknutí na rámeček."
140
-
141
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
142
- msgid "Opacity"
143
- msgstr "Neprůhlednost"
144
-
145
- #: ../easy-fancybox-settings.php:158
146
- msgid "Value between 0 and 1. "
147
- msgstr "Hodnota mezi 0 a 1."
148
-
149
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
150
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
151
- #: ../easy-fancybox-settings.php:595
152
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
153
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
154
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
155
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
156
- msgid "Default:"
157
- msgstr "Výchozí:"
158
-
159
- #: ../easy-fancybox-settings.php:162
160
- msgid "Color"
161
- msgstr "Barva"
162
-
163
- #: ../easy-fancybox-settings.php:167
164
- msgid "Enter an HTML color value."
165
- msgstr "Vložte kód barvy v HTML."
166
-
167
- #: ../easy-fancybox-settings.php:175
168
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:71
169
- msgid "Spotlight effect"
170
- msgstr "Efekt světelného kuželu"
171
-
172
- #: ../easy-fancybox-settings.php:175 ../easy-fancybox-settings.php:236
173
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
174
- #: ../easy-fancybox-settings.php:613
175
- msgid "Make available &raquo;"
176
- msgstr "Zpřístupnit &raquo;"
177
-
178
- #: ../easy-fancybox-settings.php:180
179
- msgid "Window"
180
- msgstr "Okno"
181
-
182
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
183
- msgid "Appearance"
184
- msgstr "Vzhled"
185
-
186
- #: ../easy-fancybox-settings.php:193
187
- msgid "Show the (X) close button"
188
- msgstr "Ukázat (X) tlačítko pro zavření"
189
-
190
- #: ../easy-fancybox-settings.php:198
191
- msgid "Background color"
192
- msgstr "Barva pozadí"
193
-
194
- #: ../easy-fancybox-settings.php:208
195
- msgid "Border color"
196
- msgstr "Barva okraje"
197
-
198
- #: ../easy-fancybox-settings.php:218
199
- msgid "Text color"
200
- msgstr "Barva textu"
201
-
202
- #: ../easy-fancybox-settings.php:241
203
- msgid "Border radius"
204
- msgstr "Šíře okraje"
205
-
206
- #: ../easy-fancybox-settings.php:249
207
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
208
- msgid "Set a border radius to create rounded corners. Higher is rounder."
209
- msgstr ""
210
- "Nastavit okraje rámečku a zakulacení jeho rohů. Vyšší číslo rohy zakulacuje."
211
-
212
- #: ../easy-fancybox-settings.php:254
213
- msgid "Dimensions"
214
- msgstr "Rozměry"
215
-
216
- #: ../easy-fancybox-settings.php:258 ../easy-fancybox-settings.php:771
217
- #: ../easy-fancybox-settings.php:896 ../easy-fancybox-settings.php:990
218
- #: ../easy-fancybox-settings.php:1095 ../easy-fancybox-settings.php:1194
219
- #: ../easy-fancybox-settings.php:1294 ../easy-fancybox-settings.php:1424
220
- msgid "Width"
221
- msgstr "Šířka"
222
-
223
- #: ../easy-fancybox-settings.php:268 ../easy-fancybox-settings.php:781
224
- #: ../easy-fancybox-settings.php:907 ../easy-fancybox-settings.php:1001
225
- #: ../easy-fancybox-settings.php:1108 ../easy-fancybox-settings.php:1207
226
- #: ../easy-fancybox-settings.php:1307 ../easy-fancybox-settings.php:1434
227
- msgid "Height"
228
- msgstr "Výška"
229
-
230
- #: ../easy-fancybox-settings.php:277 ../easy-fancybox-settings.php:790
231
- #: ../easy-fancybox-settings.php:917 ../easy-fancybox-settings.php:1011
232
- #: ../easy-fancybox-settings.php:1120 ../easy-fancybox-settings.php:1219
233
- #: ../easy-fancybox-settings.php:1319 ../easy-fancybox-settings.php:1443
234
- msgid "Border"
235
- msgstr "Okraj"
236
-
237
- #: ../easy-fancybox-settings.php:286
238
- msgid ""
239
- "If content size is not set or cannot be determined automatically, these "
240
- "default dimensions will be used."
241
- msgstr ""
242
- "Pokud není nastavena velikost obsahu nebo nemůže být získána automaticky "
243
- "budou použity tyto výchozí hodnoty nastavení."
244
-
245
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
246
- msgid "Behavior"
247
- msgstr "Chování"
248
-
249
- #: ../easy-fancybox-settings.php:298
250
- msgid "Center while scrolling"
251
- msgstr "Vycentrovat obsah při rolování"
252
-
253
- #: ../easy-fancybox-settings.php:305
254
- msgid "Esc key stroke closes FancyBox"
255
- msgstr "Stisk klávesy Esc zavře FancyBox"
256
-
257
- #: ../easy-fancybox-settings.php:312
258
- msgid "Scale large content down to fit in the browser viewport."
259
- msgstr "Zmenšit obsah okna na rozlišení monitoru."
260
-
261
- #: ../easy-fancybox-settings.php:316
262
- msgid "Opening speed"
263
- msgstr "Rychlost otevření"
264
-
265
- #: ../easy-fancybox-settings.php:328
266
- msgid "Closing speed"
267
- msgstr "Rychlost zavření"
268
-
269
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
270
- msgid "Duration in milliseconds. Higher is slower."
271
- msgstr "Trvání v milisekundách. Vyšší číslo znamená pomalejší."
272
-
273
- #: ../easy-fancybox-settings.php:375
274
- msgid ""
275
- "To make images open in an overlay, add their extension to the Autodetect "
276
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
277
- "all autodetection."
278
- msgstr ""
279
- "Pro otevření obrázku v rámečku, přidejte jejich doplněk na Autodetekci nebo "
280
- "použijte \"fancybox\" pro jeho odkaz. Nechejte pole prázdné v případě "
281
- "vypnuté autodetekce."
282
-
283
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
284
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
285
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
286
- #: ../easy-fancybox-settings.php:1279
287
- msgid "Autodetect"
288
- msgstr "Autodetekce"
289
-
290
- #: ../easy-fancybox-settings.php:397
291
- msgid "Example:"
292
- msgstr "Příklad:"
293
-
294
- #: ../easy-fancybox-settings.php:401
295
- msgid "Apply to"
296
- msgstr "Použít na"
297
-
298
- #: ../easy-fancybox-settings.php:406
299
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
300
- msgid "All image links"
301
- msgstr "Všechny odkazy obrázků"
302
-
303
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
304
- msgid "Transition In"
305
- msgstr "Přechod do"
306
-
307
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
308
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
309
- msgid "Fade"
310
- msgstr "Slábnutí"
311
-
312
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
313
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
314
- msgid "Elastic"
315
- msgstr "Elastický"
316
-
317
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
318
- msgid "Easing In"
319
- msgstr "Uvolnění v"
320
-
321
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
322
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
323
- msgid "Linear"
324
- msgstr "Lineární"
325
-
326
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
327
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
328
- msgid "Swing"
329
- msgstr "Houpačka"
330
-
331
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
332
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
333
- msgid "easeInBack"
334
- msgstr "easeInBack"
335
-
336
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
337
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
338
- msgid "easeOutBack"
339
- msgstr "easeOutBack"
340
-
341
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
342
- msgid "Transition Out"
343
- msgstr "Přechod ven"
344
-
345
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
346
- msgid "Easing Out"
347
- msgstr "Uvolnění z"
348
-
349
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
350
- #: ../easy-fancybox-settings.php:723
351
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
352
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
353
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
354
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
355
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
356
- msgid "Note:"
357
- msgstr "Poznámka:"
358
-
359
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
360
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
361
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
362
- msgid "Easing effects only apply when Transition is set to Elastic. "
363
- msgstr "Easing efekt je pouze použit když je Přechod nastaven na Pružný."
364
-
365
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
366
- msgid ""
367
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
368
- "Transition In is set to Elastic!"
369
- msgstr ""
370
- "Průhlednost při elastickém přechodu. UPOZORNĚNÍ: Použijte pouze pokud máte "
371
- "Přechod nastaven na Elastický!"
372
-
373
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
374
- msgid "Close FancyBox when content is clicked"
375
- msgstr "Zavřít FancyBox po kliknutí na obsah"
376
-
377
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
378
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
379
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
380
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
381
- msgid "Show title"
382
- msgstr "Ukázat název"
383
-
384
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
385
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
386
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
387
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
388
- msgid "Title Position"
389
- msgstr "Pozice názvu"
390
-
391
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
392
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
393
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
394
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
395
- msgid "Float"
396
- msgstr "Plovoucí"
397
-
398
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
399
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
400
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
401
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
402
- msgid "Outside"
403
- msgstr "Venku"
404
-
405
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
406
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
407
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
408
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
409
- msgid "Inside"
410
- msgstr "Vevnitř"
411
-
412
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
413
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
414
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
415
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
416
- msgid "Allow title from thumbnail alt tag"
417
- msgstr "Povolit název z alt tagu."
418
-
419
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
420
- msgid "Advanced"
421
- msgstr "Pokročilé"
422
-
423
- #: ../easy-fancybox-settings.php:521
424
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
425
- msgid "Hide/show title on mouse hover action"
426
- msgstr "Skrýt/zobrazit název po přejetí ukazatele"
427
-
428
- #: ../easy-fancybox-settings.php:528
429
- msgid "Gallery"
430
- msgstr "Galerie"
431
-
432
- #: ../easy-fancybox-settings.php:532
433
- msgid "Autogallery"
434
- msgstr "Automatická galerie"
435
-
436
- #: ../easy-fancybox-settings.php:537
437
- msgid "Disabled"
438
- msgstr "Vypnuto"
439
-
440
- #: ../easy-fancybox-settings.php:538
441
- msgid "WordPress galleries only"
442
- msgstr "Pouze Wordpress galerie"
443
-
444
- #: ../easy-fancybox-settings.php:539
445
- msgid "All in one gallery"
446
- msgstr "Vše v jedné galerii"
447
-
448
- #: ../easy-fancybox-settings.php:542
449
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
450
- msgid ""
451
- "When disabled, you can use the rel attribute to manually group image links "
452
- "together."
453
- msgstr ""
454
- "Pokud je vypnut, můžete použít rel vlastnost pro ruční seskupení odkazů "
455
- "obrázků dohromady."
456
-
457
- #: ../easy-fancybox-settings.php:542
458
- msgid ""
459
- "Leave the mousewheel option (below) unchecked when you do not use FancyBox "
460
- "for galleries on your site."
461
- msgstr ""
462
- "Ponechte možnost pohybu pomocí kolečka myší vypnutou pokud nepoužíváte "
463
- "FancyBox pro prohlížení galerií na Vašich stránkách."
464
-
465
- #: ../easy-fancybox-settings.php:549
466
- msgid "Show the gallery navigation arrows"
467
- msgstr "Ukázat navigační šipky v galerii"
468
-
469
- #: ../easy-fancybox-settings.php:556
470
- msgid "Arrow key strokes browse the gallery"
471
- msgstr "Stisk směrových kláves pro posun v galerii"
472
-
473
- #: ../easy-fancybox-settings.php:563
474
- msgid ""
475
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
476
- "mousewheel action."
477
- msgstr "Zapnout skript pro pohyb v galerii pomocí kolečka myši."
478
-
479
- #: ../easy-fancybox-settings.php:570
480
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
481
- msgstr "Cyklické posouvání v galerii"
482
-
483
- #: ../easy-fancybox-settings.php:574
484
- msgid "Change speed"
485
- msgstr "Změnit rychlost"
486
-
487
- #: ../easy-fancybox-settings.php:586
488
- msgid "Fade speed"
489
- msgstr "Rychlost pohasnutí"
490
-
491
- #: ../easy-fancybox-settings.php:602
492
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
493
- msgid "Galleries per Section (below)"
494
- msgstr "Galerií na jednu sekci (níže)"
495
-
496
- #: ../easy-fancybox-settings.php:602
497
- msgid ""
498
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
499
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
500
- "it to conform with your theme."
501
- msgstr ""
502
- "Toto je použito pokud <em>Použít na</em> je nastaveno <em>Omezeno na sekci</"
503
- "em> a/nebo <em>Autogalerie</em> je nastaveno na <em>Galerie na sekci</em>. "
504
- "Uzpůsobte pro Vaši šablonu."
505
-
506
- #: ../easy-fancybox-settings.php:602
507
- msgid ""
508
- "Examples: If your theme wraps post content in a div with class post, change "
509
- "this value to \"div.post\". If you only want to group images in a WordPress "
510
- "gallery together, use \"div.gallery\". If you want to include images in a "
511
- "sidebar with ID primary, add \", #primary\"."
512
- msgstr ""
513
- "Příklad: Pokud Vaše šablona vkládá obsah příspěvku do div, změňte tuto "
514
- "hodnotu na \"div.post\". Pokud chcete pouze seskupit obrázky ve Wordpress "
515
- "galerii dohromady, použijte \"div.gallery\". Pokud chcete přidat obrázky v "
516
- "bočním panelu s ID, vložte \", #primary\"."
517
-
518
- #: ../easy-fancybox-settings.php:602
519
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
520
- msgid ""
521
- "Hide/show title on mouse hover action works best with Overlay title position."
522
- msgstr ""
523
- "Ukázat/skrýt název po přejetí ukazatele myši - pracuje nejlépe s názvem "
524
- "umístěným v rámečku."
525
-
526
- #: ../easy-fancybox-settings.php:602
527
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
528
- msgstr "Slideshow používá 6, 8 nebo 12 sekundové pauzy mezi obrázky."
529
-
530
- #: ../easy-fancybox-settings.php:602
531
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
532
- msgid "(6 seconds)"
533
- msgstr "(6 sekund)"
534
-
535
- #: ../easy-fancybox-settings.php:602
536
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
537
- msgid "(8 seconds)"
538
- msgstr "(8 sekund)"
539
-
540
- #: ../easy-fancybox-settings.php:602
541
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
542
- msgid "(12 seconds)"
543
- msgstr "(12 sekund)"
544
-
545
- #: ../easy-fancybox-settings.php:610
546
- msgid "Slideshow"
547
- msgstr "Slideshow"
548
-
549
- #: ../easy-fancybox-settings.php:638
550
- msgid ""
551
- "To make inline content open in an overlay, wrap that content in a div with a "
552
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
553
- "\"fancybox-inline\" attribute."
554
- msgstr ""
555
- "Pro otevření obsahu v rámečku vložte tento obsah do div s unikátním ID, "
556
- "vytvořte odkaz s cílem \"#uniqueID\" a dejte této třídě atribut \"fancybox-"
557
- "inline\"."
558
-
559
- #: ../easy-fancybox-settings.php:656
560
- msgid ""
561
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
562
- "determined, the default dimensions will be used."
563
- msgstr ""
564
- "Pokusit se upravit velikost inline/html obsahu. Pokud ponecháte tuto volbu "
565
- "nezaškrtnutou nebo velikost nemůže být zjištěna, budou použity výchozí "
566
- "hodnoty."
567
-
568
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
569
- msgid "Scrolling"
570
- msgstr "Posouvání"
571
-
572
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
573
- msgid "Auto"
574
- msgstr "Automaticky"
575
-
576
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
577
- msgid "Always"
578
- msgstr "Vždy"
579
-
580
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
581
- msgid "Never"
582
- msgstr "Nikdy"
583
-
584
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
585
- msgid "Define scrolling and scrollbar visibility."
586
- msgstr "Nastavte viditelnost lišty s posouváním."
587
-
588
- #: ../easy-fancybox-settings.php:748
589
- msgid ""
590
- "To make any PDF document file open in an overlay, switch on Autodetect or "
591
- "use the class \"fancybox-pdf\" for its link."
592
- msgstr ""
593
- "Pro otevření jakéhokoliv PDF dokumentu (.pdf) v rámečku prosím přepněte na "
594
- "Autodetekci nebo použijte příkaz \"fancybox-pdf\" pro tento odkaz."
595
-
596
- #: ../easy-fancybox-settings.php:873
597
- msgid ""
598
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
599
- "use the class \"fancybox-swf\" for its link."
600
- msgstr ""
601
- "Pro otevření jakéhokoliv Flashe (.swf) v rámečku prosím přepněte na "
602
- "Autodetekci nebo použijte příkaz \"fancybox-swf\" pro tento odkaz."
603
-
604
- #: ../easy-fancybox-settings.php:967
605
- msgid ""
606
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
607
- "the class \"fancybox-svg\" for its link."
608
- msgstr ""
609
- "Pro otevření jakéhokoliv SVG (.svg) v rámečku prosím přepněte na Autodetekci "
610
- "nebo použijte příkaz \"fancybox-svg\" pro tento odkaz."
611
-
612
- #: ../easy-fancybox-settings.php:1062
613
- msgid ""
614
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
615
- "the class \"fancybox-youtube\" for its link."
616
- msgstr ""
617
- "Pro otevření jakéhokoliv videa YouTube v rámečku prosím přepněte na "
618
- "Autodetekci nebo použijte příkaz \"fancybox-youtube\" pro tento odkaz."
619
-
620
- #: ../easy-fancybox-settings.php:1080
621
- msgid "Autodetect Short links"
622
- msgstr "Autodetekovat zkrácené odkazy"
623
-
624
- #: ../easy-fancybox-settings.php:1170
625
- msgid ""
626
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
627
- "class \"fancybox-vimeo\" for its link."
628
- msgstr ""
629
- "Pro otevření jakéhokoliv videa Vimeo v rámečku prosím přepněte na "
630
- "Autodetekci nebo použijte příkaz \"fancybox-vimeo\" pro tento odkaz."
631
-
632
- #: ../easy-fancybox-settings.php:1270
633
- msgid ""
634
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
635
- "use the class \"fancybox-dailymotion\" for its link."
636
- msgstr ""
637
- "Pro otevření jakéhokoliv Dailymotion videa v rámečku prosím přepněte na "
638
- "Autodetekci nebo použijte příkaz \"fancybox-dailymotion\" pro tento odkaz."
639
-
640
- #: ../easy-fancybox-settings.php:1396
641
- msgid ""
642
- "To make a website or HTML document open in an overlay, use the class "
643
- "\"fancybox-iframe\" for its link."
644
- msgstr ""
645
- "Pro otevření jakékoliv stránky nebo HTML dokumentu v rámečku prosím použijte "
646
- "příkaz \"fancybox-iframe\" pro tento odkaz."
647
-
648
- #: ../easy-fancybox-class.php:298
649
- msgid "Donate to keep the Easy FancyBox plugin development going!"
650
- msgstr ""
651
- "Přispět na podporu Easy FancyBox pluginu a umožnit tak jeho další vývoj!"
652
-
653
- #: ../easy-fancybox-class.php:298
654
- #, php-format
655
- msgid ""
656
- "The options in this section are provided by the plugin %s and determine the "
657
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
658
- "by %s."
659
- msgstr ""
660
- "Nastavení v této sekci jsou poskytovány pluginem %s a ovlivňují "
661
- "<strong>Media Lightbox</strong> vzhled rámečku a funkce kontrolováné %s."
662
-
663
- #: ../easy-fancybox-class.php:298
664
- msgid "Easy FancyBox"
665
- msgstr "Easy FancyBox"
666
-
667
- #: ../easy-fancybox-class.php:298 ../easy-fancybox-class.php:510
668
- #: ../easy-fancybox-class.php:554
669
- msgid "FancyBox"
670
- msgstr "FancyBox"
671
-
672
- #: ../easy-fancybox-class.php:298
673
- msgid ""
674
- "First enable each sub-section that you need. Then save and come back to "
675
- "adjust its specific settings."
676
- msgstr ""
677
- "Prvně povolte pro každou subsekci, pro kterou je potřeba. Poté uložte a "
678
- "vraťte se zpět pro doladění nastavení."
679
-
680
- #: ../easy-fancybox-class.php:298
681
- msgid ""
682
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
683
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
684
- "will have some extra impact on client-side page speed. Enable only those sub-"
685
- "sections and options that you actually need on your site."
686
- msgstr ""
687
- "Poznámka: Každá subsekce a funkce jako jsou <em>Autodetekce</em>, "
688
- "<em>Elastický přechod</em> a všechny <em>Easing efekty</em> (kromě Swing) "
689
- "budou mít velký dopad na rychlost načtení u klienta. Povolte pouze tyto "
690
- "subsekce a toto nastavení pokud víte co děláte a tyto funkce potřebujete."
691
-
692
- #: ../easy-fancybox-class.php:298
693
- msgid ""
694
- "Some setting like Transition options are unavailable for SWF video, PDF and "
695
- "iFrame content to ensure browser compatibility and readability."
696
- msgstr ""
697
- "Některé nastavení jako je nastavení Přechodu jsou nedostupné pro SWF video, "
698
- "PDF a iFrame obsah pro zajištění kompatibility a funkčnosti v prohlížeči."
699
-
700
- #: ../easy-fancybox-class.php:342
701
- msgid "Checked"
702
- msgstr "Zaškrtnutý"
703
-
704
- #: ../easy-fancybox-class.php:344
705
- msgid "Unchecked"
706
- msgstr "Nezaškrtnutý"
707
-
708
- #: ../easy-fancybox-class.php:391
709
- msgid "Settings"
710
- msgstr "Nastavení"
711
-
712
- #: ../easy-fancybox-class.php:554
713
- msgid "Easy FancyBox Settings"
714
- msgstr "Easy FancyBox Nastavení"
715
-
716
- #: ../easy-fancybox-class.php:565
717
- msgid "Sections"
718
- msgstr "Sekce"
719
-
720
- #: ../easy-fancybox-class.php:602
721
- msgid "Support"
722
- msgstr "Podpora"
723
-
724
- #: ../easy-fancybox-class.php:603
725
- msgid "Resources"
726
- msgstr "Zdroje"
727
-
728
- #: ../easy-fancybox-class.php:604
729
- msgid "Discussion"
730
- msgstr "Diskuze"
731
-
732
- #: ../easy-fancybox-class.php:605
733
- msgid "Credits"
734
- msgstr "Poděkování"
735
-
736
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
737
- msgid ""
738
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
739
- "available."
740
- msgstr ""
741
- "Děkujeme za zakoupení pluginu Easy FancyBox - Pro. Nové možnosti nastavení "
742
- "jsou k dispozici."
743
-
744
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
745
- msgid "Get support here."
746
- msgstr "Získat podporu zde."
747
-
748
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
749
- msgid "First Image link"
750
- msgstr "První odkaz na obrázek"
751
-
752
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
753
- msgid "First PDF link"
754
- msgstr "První odkaz na PDF"
755
-
756
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
757
- msgid "First SWF link"
758
- msgstr "První odkaz na SWF"
759
-
760
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
761
- msgid "First SVG link"
762
- msgstr "První odkaz na SVG"
763
-
764
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
765
- msgid "First YouTube link "
766
- msgstr "První odkaz na YouTube"
767
-
768
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
769
- msgid "First Vimeo link "
770
- msgstr "První odkaz na Vimeo"
771
-
772
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
773
- msgid "First Dailymotion link "
774
- msgstr "První odkaz na Dailymotion"
775
-
776
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
777
- msgid "First iFrame link"
778
- msgstr "První odkaz na iFrame"
779
-
780
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
781
- msgid "First of any link"
782
- msgstr "První jakýkoliv odkaz"
783
-
784
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
785
- msgid "Links inside Section(s) only (below)"
786
- msgstr "Odkazy pouze uvniř sekcí (pod)"
787
-
788
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
789
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
792
- msgid "easeInQuad"
793
- msgstr "easeInQuad"
794
-
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
799
- msgid "easeOutQuad"
800
- msgstr "easeOutQuad"
801
-
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
806
- msgid "easeInOutQuad"
807
- msgstr "easeInOutQuad"
808
-
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
813
- msgid "easeInCubic"
814
- msgstr "easeInCubic"
815
-
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
820
- msgid "easeOutCubic"
821
- msgstr "easeOutCubic"
822
-
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
827
- msgid "easeInOutCubic"
828
- msgstr "easeInOutCubic"
829
-
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
834
- msgid "easeInQuart"
835
- msgstr "easeInQuart"
836
-
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
841
- msgid "easeOutQuart"
842
- msgstr "easeOutQuart"
843
-
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
848
- msgid "easeInOutQuart"
849
- msgstr "easeInOutQuart"
850
-
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
855
- msgid "easeInQuint"
856
- msgstr "easeInQuint"
857
-
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
862
- msgid "easeOutQuint"
863
- msgstr "easeOutQuint"
864
-
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
869
- msgid "easeInOutQuint"
870
- msgstr "easeInOutQuint"
871
-
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
876
- msgid "easeInSine"
877
- msgstr "easeInSine"
878
-
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
883
- msgid "easeOutSine"
884
- msgstr "easeOutSine"
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
890
- msgid "easeInOutSine"
891
- msgstr "easeInOutSine"
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
897
- msgid "easeInExpo"
898
- msgstr "easeInExpo"
899
-
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
904
- msgid "easeOutExpo"
905
- msgstr "easeOutExpo"
906
-
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
911
- msgid "easeInOutExpo"
912
- msgstr "easeInOutExpo"
913
-
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
918
- msgid "easeInCirc"
919
- msgstr "easeInCirc"
920
-
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
925
- msgid "easeOutCirc"
926
- msgstr "easeOutCirc"
927
-
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
932
- msgid "easeInOutCirc"
933
- msgstr "easeInOutCirc"
934
-
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
939
- msgid "easeInElastic"
940
- msgstr "easeInElastic"
941
-
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
943
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
944
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
945
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
946
- msgid "easeOutElastic"
947
- msgstr "easeOutElastic"
948
-
949
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
950
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
951
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
952
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
953
- msgid "easeInOutElastic"
954
- msgstr "easeInOutElastic"
955
-
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
957
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
958
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
959
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
960
- msgid "easeInOutBack"
961
- msgstr "easeInOutBack"
962
-
963
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
964
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
965
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
966
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
967
- msgid "easeInBounce"
968
- msgstr "easeInBounce"
969
-
970
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
971
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
972
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
974
- msgid "easeOutBounce"
975
- msgstr "easeOutBounce"
976
-
977
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
978
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
979
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
980
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
981
- msgid "easeInOutBounce"
982
- msgstr "easeInOutBounce"
983
-
984
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
985
- msgid "Section(s)"
986
- msgstr "Sekce"
987
-
988
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
989
- msgid ""
990
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
991
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
992
- "it to conform with your theme."
993
- msgstr ""
994
- "Toto aplikuje <em>Aplikovat na</em> pokud je nastaveno <em>Omezeno na sekce</"
995
- "em> a/nebo <em>Automatická galerie</em> je nastavena na <em>Galerie pro "
996
- "sekci</em>. Uzpůsobte pro Vaši šablonu."
997
-
998
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
999
- msgid ""
1000
- "Examples: If your theme wraps post content in a div with class post, change "
1001
- "this value to \"div.post\". If you want to include images in a sidebar with "
1002
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
1003
- "you only want to group images in a WordPress gallery together, use \"div."
1004
- "gallery\". If you want to include images in a sidebar with ID primary, add "
1005
- "\", #primary\"."
1006
- msgstr ""
1007
- "Příklad: Pokud Vaše šablona umisťuje obsah příspěvku do div se třídou "
1008
- "přípsěvku, změnte tuto hodnotu na \"div.post\". Pokud chcete přidat obrázky "
1009
- "v bočním panelu s ID, přidejte \", div#primary\" nebo \"aside#primary\" pro "
1010
- "HTML5 šablony. Pokud chcete pouze seskupit obrázky ve Wordpress galerii "
1011
- "dohromady, použijte \"div.gallery\". Pokud chcete přidat obrázky z bočního "
1012
- "panelu s ID, vložte \", #primary\"."
1013
-
1014
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
1015
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
1016
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
1017
- msgid "Gallery Auto-rotation"
1018
- msgstr "Galerie automatické otočení"
1019
-
1020
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
1021
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
1022
- msgstr "Autorotace používá hodnoty 6, 8 nebo 12 sekund pro pauzy mezi obrázky."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-es_ES.po DELETED
@@ -1,526 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
7
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2011-07-28 11:44+0100\n"
12
- "Last-Translator: David <david@closemarketing.es>\n"
13
- "Language-Team: Closemarketing <david@closemarketing.es>\n"
14
- "X-Poedit-Language: Spanish\n"
15
- "X-Poedit-Country: SPAIN\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #: easy-fancybox.php:266
19
- msgid "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
20
- msgstr "Realizar donación al desarrollo del plugin Easy FancyBox con PayPal. La forma más rápida, segura y gratuita!"
21
-
22
- #: easy-fancybox.php:266
23
- msgid "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
24
- msgstr "Estas opciones provienen del plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> y de<strong>Media Lightbox</strong>. El diseño y y comportamiento está realizado por <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
25
-
26
- #: easy-fancybox.php:266
27
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
28
- msgstr "Primero habilita cada sub-sección que necesites. Después graba y vuelve a la página anterior para ajustar sus opciones específicas."
29
-
30
- #: easy-fancybox.php:266
31
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
32
- msgstr "Nota: Cada sección adicional y funcionalidades como <em>Auto-detectar</em>, <em>Transiciones Elásticas</em> y todos los <em>Efectos Easing</em> (excepto Swing) tendrán un impacto sobre la velocidad en la parte pública. Habilita sólo aquellas secciones y opciones que realmente necesitas para tu web."
33
-
34
- #: easy-fancybox.php:266
35
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
36
- msgstr "Alguna opción como la Transición no están disponibles para contenidos de Video SWF, PDF e iFrame para asegurar compatibilidad y lectura."
37
-
38
- #: easy-fancybox.php:308
39
- msgid "Checked"
40
- msgstr "Marcado"
41
-
42
- #: easy-fancybox.php:310
43
- msgid "Unchecked"
44
- msgstr "No marcado"
45
-
46
- #: easy-fancybox.php:362
47
- msgid "FancyBox"
48
- msgstr "FancyBox"
49
-
50
- #: easy-fancybox-settings.php:6
51
- msgid "Global settings"
52
- msgstr "Opciones Generales"
53
-
54
- #: easy-fancybox-settings.php:15
55
- msgid "Enable FancyBox for"
56
- msgstr "Habilitar FancyBox para"
57
-
58
- #: easy-fancybox-settings.php:24
59
- #: easy-fancybox-settings.php:316
60
- msgid "Images & Inline content"
61
- msgstr "Imágenes y contenido"
62
-
63
- #: easy-fancybox-settings.php:31
64
- #: easy-fancybox-settings.php:489
65
- msgid "PDF"
66
- msgstr "PDF"
67
-
68
- #: easy-fancybox-settings.php:38
69
- #: easy-fancybox-settings.php:606
70
- msgid "SWF"
71
- msgstr "SWF"
72
-
73
- #: easy-fancybox-settings.php:45
74
- #: easy-fancybox-settings.php:697
75
- msgid "YouTube"
76
- msgstr "YouTube"
77
-
78
- #: easy-fancybox-settings.php:52
79
- #: easy-fancybox-settings.php:800
80
- msgid "Vimeo"
81
- msgstr "Vimeo"
82
-
83
- #: easy-fancybox-settings.php:59
84
- #: easy-fancybox-settings.php:895
85
- msgid "Dailymotion"
86
- msgstr "Dailymotion"
87
-
88
- #: easy-fancybox-settings.php:66
89
- #: easy-fancybox-settings.php:1016
90
- msgid "iFrames"
91
- msgstr "iFrames"
92
-
93
- #: easy-fancybox-settings.php:71
94
- msgid "Links"
95
- msgstr "Enlaces"
96
-
97
- #: easy-fancybox-settings.php:81
98
- msgid "Exclude"
99
- msgstr "Excluir"
100
-
101
- #: easy-fancybox-settings.php:86
102
- #: easy-fancybox-settings.php:100
103
- #: easy-fancybox-settings.php:295
104
- #: easy-fancybox-settings.php:383
105
- #: easy-fancybox-settings.php:411
106
- msgid "None"
107
- msgstr "Ninuno"
108
-
109
- #: easy-fancybox-settings.php:87
110
- msgid "Empty (hidden) links"
111
- msgstr "Enlaces Vacíos (ocultos) "
112
-
113
- #: easy-fancybox-settings.php:88
114
- msgid "Without thumbnail image"
115
- msgstr "Sin imagen miniatura"
116
-
117
- #: easy-fancybox-settings.php:95
118
- msgid "Auto-open"
119
- msgstr "Apertura automática"
120
-
121
- #: easy-fancybox-settings.php:101
122
- msgid "Link with ID \"fancybox-auto\""
123
- msgstr "Enlace con ID \"fancybox-auto\""
124
-
125
- #: easy-fancybox-settings.php:102
126
- msgid "First Image link"
127
- msgstr "Enlace primera imagen"
128
-
129
- #: easy-fancybox-settings.php:103
130
- msgid "First PDF link"
131
- msgstr "Enlace primer PDF"
132
-
133
- #: easy-fancybox-settings.php:104
134
- msgid "First SWF link"
135
- msgstr "Enlace primer SWF"
136
-
137
- #: easy-fancybox-settings.php:105
138
- msgid "First YouTube link "
139
- msgstr "Enlace primer Youtube"
140
-
141
- #: easy-fancybox-settings.php:106
142
- msgid "First Vimeo link "
143
- msgstr "Enlace primer Vimeo"
144
-
145
- #: easy-fancybox-settings.php:107
146
- msgid "First Dailymotion link "
147
- msgstr "Enlace primer Dailymotion"
148
-
149
- #: easy-fancybox-settings.php:108
150
- msgid "First iFrame link"
151
- msgstr "Enlace primer iFrame"
152
-
153
- #: easy-fancybox-settings.php:109
154
- msgid "First of any link"
155
- msgstr "Primer Enlace"
156
-
157
- #: easy-fancybox-settings.php:117
158
- #: easy-fancybox-settings.php:452
159
- msgid "Overlay"
160
- msgstr "Superponer"
161
-
162
- #: easy-fancybox-settings.php:125
163
- msgid "Show the overlay around content opened in FancyBox."
164
- msgstr "Mostrar la superposición cerca del contenido abierto en Fancybox."
165
-
166
- #: easy-fancybox-settings.php:132
167
- msgid "Spotlight effect."
168
- msgstr "Efecto Spotlight."
169
-
170
- #: easy-fancybox-settings.php:136
171
- #: easy-fancybox-settings.php:227
172
- msgid "Opacity"
173
- msgstr "Opacidad"
174
-
175
- #: easy-fancybox-settings.php:141
176
- msgid "Value between 0 and 1. "
177
- msgstr "Valor entre 0 y 1."
178
-
179
- #: easy-fancybox-settings.php:141
180
- #: easy-fancybox-settings.php:150
181
- #: easy-fancybox-settings.php:188
182
- #: easy-fancybox-settings.php:232
183
- #: easy-fancybox-settings.php:283
184
- #: easy-fancybox-settings.php:332
185
- #: easy-fancybox-settings.php:345
186
- #: easy-fancybox-settings.php:369
187
- msgid "Default:"
188
- msgstr "Por defecto:"
189
-
190
- #: easy-fancybox-settings.php:145
191
- #: easy-fancybox-settings.php:192
192
- msgid "Color"
193
- msgstr "Color"
194
-
195
- #: easy-fancybox-settings.php:150
196
- msgid "Enter an HTML color value."
197
- msgstr "Introduce un valor HTML para el color."
198
-
199
- #: easy-fancybox-settings.php:156
200
- msgid "Window"
201
- msgstr "Ventana"
202
-
203
- #: easy-fancybox-settings.php:162
204
- msgid "Size"
205
- msgstr "Tamaño"
206
-
207
- #: easy-fancybox-settings.php:166
208
- #: easy-fancybox-settings.php:517
209
- #: easy-fancybox-settings.php:634
210
- #: easy-fancybox-settings.php:735
211
- #: easy-fancybox-settings.php:829
212
- #: easy-fancybox-settings.php:924
213
- #: easy-fancybox-settings.php:1036
214
- msgid "Width"
215
- msgstr "Ancho"
216
-
217
- #: easy-fancybox-settings.php:175
218
- #: easy-fancybox-settings.php:526
219
- #: easy-fancybox-settings.php:644
220
- #: easy-fancybox-settings.php:744
221
- #: easy-fancybox-settings.php:838
222
- #: easy-fancybox-settings.php:933
223
- #: easy-fancybox-settings.php:1045
224
- msgid "Height"
225
- msgstr "Altura"
226
-
227
- #: easy-fancybox-settings.php:183
228
- #: easy-fancybox-settings.php:207
229
- #: easy-fancybox-settings.php:534
230
- #: easy-fancybox-settings.php:653
231
- #: easy-fancybox-settings.php:752
232
- #: easy-fancybox-settings.php:846
233
- #: easy-fancybox-settings.php:941
234
- #: easy-fancybox-settings.php:1053
235
- msgid "Border"
236
- msgstr "Borde"
237
-
238
- #: easy-fancybox-settings.php:197
239
- msgid "Background"
240
- msgstr "Fondo"
241
-
242
- #: easy-fancybox-settings.php:217
243
- msgid "Text"
244
- msgstr "Texto"
245
-
246
- #: easy-fancybox-settings.php:236
247
- msgid "Behavior"
248
- msgstr "Comportamiento"
249
-
250
- #: easy-fancybox-settings.php:242
251
- msgid "Center while scrolling"
252
- msgstr "Centrar mientras haces scroll"
253
-
254
- #: easy-fancybox-settings.php:248
255
- msgid "Show the (X) close button"
256
- msgstr "Mostrar el botón cerrar (X) "
257
-
258
- #: easy-fancybox-settings.php:254
259
- msgid "Show the gallery navigation arrows"
260
- msgstr "Mostrar navegación de la galería"
261
-
262
- #: easy-fancybox-settings.php:262
263
- msgid "Opening speed"
264
- msgstr "Velocidad apertura"
265
-
266
- #: easy-fancybox-settings.php:270
267
- msgid "Closing speed"
268
- msgstr "Velocidad cierre"
269
-
270
- #: easy-fancybox-settings.php:278
271
- msgid "Fade speed"
272
- msgstr "Velocidad transición"
273
-
274
- #: easy-fancybox-settings.php:283
275
- msgid "Duration in milliseconds. Higher is slower."
276
- msgstr "Duración en milisegundos. Valor mayor es más lento."
277
-
278
- #: easy-fancybox-settings.php:291
279
- msgid "Advanced"
280
- msgstr "Avanzado"
281
-
282
- #: easy-fancybox-settings.php:296
283
- msgid "Hide/show title on mouse hover action"
284
- msgstr "Ocultar / Mostrar título cuando puntero está encima"
285
-
286
- #: easy-fancybox-settings.php:297
287
- msgid "Gallery Auto-rotation"
288
- msgstr "Auto-rotación Galería"
289
-
290
- #: easy-fancybox-settings.php:304
291
- msgid "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
292
- msgstr "Nota: Mostrar / ocultar título al posicionar el ratón funciona mejor con la posición del Título Superpuesto. Auto-rotación utiliza una pausa fija de 5 segundos por imagen."
293
-
294
- #: easy-fancybox-settings.php:321
295
- msgid "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
296
- msgstr "Para hacer que las imágenes se superpongan, añade su extensión en el campo auto-detectar o usa la clase \"fancybox\" para dicho enlace. Deja vacío el campo para desactivarlo."
297
-
298
- #: easy-fancybox-settings.php:325
299
- #: easy-fancybox-settings.php:502
300
- #: easy-fancybox-settings.php:619
301
- #: easy-fancybox-settings.php:711
302
- #: easy-fancybox-settings.php:814
303
- #: easy-fancybox-settings.php:909
304
- msgid "Auto-detect"
305
- msgstr "Auto-detectar"
306
-
307
- #: easy-fancybox-settings.php:336
308
- msgid "Apply to"
309
- msgstr "Aplicar a"
310
-
311
- #: easy-fancybox-settings.php:341
312
- msgid "All image links"
313
- msgstr "Todos los enlaces de imagen"
314
-
315
- #: easy-fancybox-settings.php:342
316
- msgid "Links inside Section(s) only (below)"
317
- msgstr "Enlaces dentro de las Secciones sólo (abajo)"
318
-
319
- #: easy-fancybox-settings.php:349
320
- msgid "Auto-gallery"
321
- msgstr "Galería autogenerada"
322
-
323
- #: easy-fancybox-settings.php:354
324
- msgid "Disabled"
325
- msgstr "Deshabilitado"
326
-
327
- #: easy-fancybox-settings.php:355
328
- msgid "Galleries per Section (below)"
329
- msgstr "Galerías por sección (abajo)"
330
-
331
- #: easy-fancybox-settings.php:356
332
- msgid "All in one gallery"
333
- msgstr "Todo en una galería"
334
-
335
- #: easy-fancybox-settings.php:359
336
- msgid "When disabled, you can use the rel attribute to manually group image links together."
337
- msgstr "Cuando está desactivado, puedes usar el atributo rel manualmente para agrupar los enlaces de las imágenes."
338
-
339
- #: easy-fancybox-settings.php:363
340
- msgid "Section(s)"
341
- msgstr "Sección / Secciones"
342
-
343
- #: easy-fancybox-settings.php:369
344
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
345
- msgstr "Esto se aplica cuando <em>Usar en</em> está seleccionado para <em>Secciones limitadas</em> y/o <em>Auto-galería</em> que se configura en <em>Galerías por Sección</em>. Configúralo en tu Plantilla."
346
-
347
- #: easy-fancybox-settings.php:369
348
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
349
- msgstr "Ejemplos: Si tu Tema recoge contenido de las entradas en un div con clase de entrada, cambia este valor a \"div.post\". Si quieres incluir imágenes en el sidebar con una ID, añade \", div#primary\" or \"aside#primary\" para plantillas con HTML5."
350
-
351
- #: easy-fancybox-settings.php:377
352
- msgid "Transition In"
353
- msgstr "Transición dentro"
354
-
355
- #: easy-fancybox-settings.php:381
356
- #: easy-fancybox-settings.php:409
357
- msgid "Fade"
358
- msgstr "Desvanecer"
359
-
360
- #: easy-fancybox-settings.php:382
361
- #: easy-fancybox-settings.php:410
362
- msgid "Elastic"
363
- msgstr "Elasticidad"
364
-
365
- #: easy-fancybox-settings.php:390
366
- msgid "Easing In"
367
- msgstr "Easing In"
368
-
369
- #: easy-fancybox-settings.php:394
370
- #: easy-fancybox-settings.php:422
371
- msgid "Linear"
372
- msgstr "Linear"
373
-
374
- #: easy-fancybox-settings.php:395
375
- #: easy-fancybox-settings.php:423
376
- msgid "Swing"
377
- msgstr "Swing"
378
-
379
- #: easy-fancybox-settings.php:396
380
- #: easy-fancybox-settings.php:424
381
- msgid "Back"
382
- msgstr "Atrás"
383
-
384
- #: easy-fancybox-settings.php:397
385
- #: easy-fancybox-settings.php:425
386
- msgid "Quad"
387
- msgstr "Quad"
388
-
389
- #: easy-fancybox-settings.php:398
390
- #: easy-fancybox-settings.php:426
391
- msgid "Expo"
392
- msgstr "Expo"
393
-
394
- #: easy-fancybox-settings.php:405
395
- msgid "Transition Out"
396
- msgstr "Transición salida"
397
-
398
- #: easy-fancybox-settings.php:418
399
- msgid "Easing Out"
400
- msgstr "Easing Out"
401
-
402
- #: easy-fancybox-settings.php:429
403
- msgid "Easing effects only apply when Transition is set to Elastic. "
404
- msgstr "Los efectos Easing sólo se aplican cuando la transición es Elastic."
405
-
406
- #: easy-fancybox-settings.php:435
407
- msgid "Transparency fade during elastic transition."
408
- msgstr "Transición transparencia durante la transición Elastic."
409
-
410
- #: easy-fancybox-settings.php:441
411
- #: easy-fancybox-settings.php:549
412
- #: easy-fancybox-settings.php:668
413
- #: easy-fancybox-settings.php:767
414
- #: easy-fancybox-settings.php:861
415
- #: easy-fancybox-settings.php:956
416
- #: easy-fancybox-settings.php:1071
417
- msgid "Show title"
418
- msgstr "Mostrar título"
419
-
420
- #: easy-fancybox-settings.php:445
421
- #: easy-fancybox-settings.php:553
422
- #: easy-fancybox-settings.php:672
423
- #: easy-fancybox-settings.php:771
424
- #: easy-fancybox-settings.php:865
425
- #: easy-fancybox-settings.php:960
426
- #: easy-fancybox-settings.php:1075
427
- msgid "Title Position"
428
- msgstr "Posición Título"
429
-
430
- #: easy-fancybox-settings.php:449
431
- #: easy-fancybox-settings.php:557
432
- #: easy-fancybox-settings.php:676
433
- #: easy-fancybox-settings.php:775
434
- #: easy-fancybox-settings.php:869
435
- #: easy-fancybox-settings.php:964
436
- #: easy-fancybox-settings.php:1079
437
- msgid "Float"
438
- msgstr "Float"
439
-
440
- #: easy-fancybox-settings.php:450
441
- #: easy-fancybox-settings.php:558
442
- #: easy-fancybox-settings.php:677
443
- #: easy-fancybox-settings.php:776
444
- #: easy-fancybox-settings.php:870
445
- #: easy-fancybox-settings.php:965
446
- #: easy-fancybox-settings.php:1080
447
- msgid "Outside"
448
- msgstr "Fuera"
449
-
450
- #: easy-fancybox-settings.php:451
451
- #: easy-fancybox-settings.php:559
452
- #: easy-fancybox-settings.php:678
453
- #: easy-fancybox-settings.php:777
454
- #: easy-fancybox-settings.php:871
455
- #: easy-fancybox-settings.php:966
456
- #: easy-fancybox-settings.php:1081
457
- msgid "Inside"
458
- msgstr "Dentro"
459
-
460
- #: easy-fancybox-settings.php:461
461
- #: easy-fancybox-settings.php:568
462
- #: easy-fancybox-settings.php:687
463
- #: easy-fancybox-settings.php:786
464
- #: easy-fancybox-settings.php:880
465
- #: easy-fancybox-settings.php:975
466
- #: easy-fancybox-settings.php:1090
467
- msgid "Allow title from thumbnail alt tag"
468
- msgstr "Permitir título miniautra de la etiqueta ALT"
469
-
470
- #: easy-fancybox-settings.php:494
471
- msgid "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
472
- msgstr "Para hacer que se muestre un PDF superpuesto, utiliza \"fancybox-pdf\" para ese enlace."
473
-
474
- #: easy-fancybox-settings.php:494
475
- #: easy-fancybox-settings.php:611
476
- #: easy-fancybox-settings.php:702
477
- #: easy-fancybox-settings.php:805
478
- #: easy-fancybox-settings.php:900
479
- #: easy-fancybox-settings.php:1021
480
- msgid "Adjust its specific settings below."
481
- msgstr "Ajustar las Opciones especiales abajo."
482
-
483
- #: easy-fancybox-settings.php:611
484
- msgid "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
485
- msgstr "Para hacer que se muestre un SWF Flash superpuesto, utiliza \"fancybox-swf\" para ese enlace."
486
-
487
- #: easy-fancybox-settings.php:702
488
- msgid "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
489
- msgstr "Para hacer que se muestre un video Vimeo superpuesto, activa auto-detectar o utiliza la clase \"fancybox-youtube\" para ese enlace."
490
-
491
- #: easy-fancybox-settings.php:720
492
- msgid "Auto-detect Short links"
493
- msgstr "Auto-detectar Enlaces cortos"
494
-
495
- #: easy-fancybox-settings.php:805
496
- msgid "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
497
- msgstr "Para hacer que se muestre un video Vimeo superpuesto, activa auto-detectar o utiliza la clase \"fancybox-vimeo\" para ese enlace."
498
-
499
- #: easy-fancybox-settings.php:900
500
- msgid "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
501
- msgstr "Para hacer que la película de Dailymotion empiece en la superposición, habilita auto-detectar o utiliza la clase \"fancybox-dailymotion\" para su enlace."
502
-
503
- #: easy-fancybox-settings.php:1021
504
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
505
- msgstr "Para hacer que se muestre una Web o documento HTML superpuesto, utiliza \"fancybox-iframe\" para ese enlace."
506
-
507
- #. Plugin Name of the plugin/theme
508
- msgid "Easy FancyBox"
509
- msgstr "Easy FancyBox"
510
-
511
- #. Plugin URI of the plugin/theme
512
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
513
- msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
514
-
515
- #. Description of the plugin/theme
516
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
517
- msgstr "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
518
-
519
- #. Author of the plugin/theme
520
- msgid "RavanH"
521
- msgstr "RavanH"
522
-
523
- #. Author URI of the plugin/theme
524
- msgid "http://4visions.nl/"
525
- msgstr "http://4visions.nl/"
526
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-fa_IR.mo DELETED
Binary file
languages/easy-fancybox-fa_IR.po DELETED
@@ -1,1032 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-06-14 00:53+0100\n"
8
- "PO-Revision-Date: 2013-09-07 15:43+0330\n"
9
- "Last-Translator: Ali Akbar Kaviani <persian@wiki10.net>\n"
10
- "Language-Team: www.wiki10.net, Ali Akbar Kaviani <persian@wiki10.net>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Language: Persian\n"
18
-
19
- #: ../easy-fancybox-settings.php:9 ../easy-fancybox-class.php:566
20
- msgid "Global settings"
21
- msgstr "تنظیمات عمومی"
22
-
23
- #: ../easy-fancybox-settings.php:14
24
- msgid "Media"
25
- msgstr "رسانه"
26
-
27
- #: ../easy-fancybox-settings.php:20
28
- msgid "Enable FancyBox for"
29
- msgstr "افزونه را برای موارد زیر فعال کن"
30
-
31
- #: ../easy-fancybox-settings.php:27 ../easy-fancybox-settings.php:370
32
- #: ../easy-fancybox-class.php:567
33
- msgid "Images"
34
- msgstr "تصاویر"
35
-
36
- #: ../easy-fancybox-settings.php:34 ../easy-fancybox-settings.php:633
37
- #: ../easy-fancybox-class.php:568
38
- msgid "Inline content"
39
- msgstr "محتوای inline"
40
-
41
- #: ../easy-fancybox-settings.php:41 ../easy-fancybox-settings.php:743
42
- #: ../easy-fancybox-class.php:569
43
- msgid "PDF"
44
- msgstr "PDF"
45
-
46
- #: ../easy-fancybox-settings.php:48 ../easy-fancybox-settings.php:868
47
- #: ../easy-fancybox-class.php:570
48
- msgid "SWF"
49
- msgstr "SWF"
50
-
51
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
52
- msgid "SVG"
53
- msgstr "SVG"
54
-
55
- #: ../easy-fancybox-settings.php:62 ../easy-fancybox-settings.php:1057
56
- #: ../easy-fancybox-class.php:571
57
- msgid "YouTube"
58
- msgstr "YouTube"
59
-
60
- #: ../easy-fancybox-settings.php:69 ../easy-fancybox-settings.php:1165
61
- #: ../easy-fancybox-class.php:572
62
- msgid "Vimeo"
63
- msgstr "Vimeo"
64
-
65
- #: ../easy-fancybox-settings.php:76 ../easy-fancybox-settings.php:1265
66
- #: ../easy-fancybox-class.php:573
67
- msgid "Dailymotion"
68
- msgstr "Dailymotion"
69
-
70
- #: ../easy-fancybox-settings.php:83 ../easy-fancybox-settings.php:1391
71
- #: ../easy-fancybox-class.php:574
72
- msgid "iFrames"
73
- msgstr "iFrames"
74
-
75
- #: ../easy-fancybox-settings.php:86
76
- msgid ""
77
- "For advanced options and support, please get the Easy FancyBox - Pro "
78
- "extension."
79
- msgstr "برای تنظیمات پیشرفته و پشتیبانی، لطفا نسخه حرفه‌ای را بخرید"
80
-
81
- #: ../easy-fancybox-settings.php:89
82
- msgid "Links"
83
- msgstr "پیوندها"
84
-
85
- #: ../easy-fancybox-settings.php:95
86
- msgid "Exclude"
87
- msgstr "صرفنظر از"
88
-
89
- #: ../easy-fancybox-settings.php:100 ../easy-fancybox-settings.php:114
90
- #: ../easy-fancybox-settings.php:421 ../easy-fancybox-settings.php:448
91
- #: ../easy-fancybox-settings.php:677 ../easy-fancybox-settings.php:704
92
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:227
93
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:252
94
- msgid "None"
95
- msgstr "هیچ"
96
-
97
- #: ../easy-fancybox-settings.php:101
98
- msgid "Empty (hidden) links"
99
- msgstr "پیوندهای (مخفی) خالی"
100
-
101
- #: ../easy-fancybox-settings.php:102
102
- msgid "Without thumbnail image"
103
- msgstr "بدون تصاویر بندانگشتی"
104
-
105
- #: ../easy-fancybox-settings.php:109
106
- msgid "Open on page load"
107
- msgstr "را در هنگام بارگذاری صفحه باز کن"
108
-
109
- #: ../easy-fancybox-settings.php:115
110
- msgid "Link with ID \"fancybox-auto\""
111
- msgstr "پیوند با شناسه \"fancybox-auto\""
112
-
113
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
114
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
115
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
116
- #: ../easy-fancybox-settings.php:723
117
- msgid "More options &raquo;"
118
- msgstr "تنظیمات بیشتر &raquo;"
119
-
120
- #: ../easy-fancybox-settings.php:125
121
- msgid ""
122
- "Include the Metadata jQuery extension script to allow passing custom "
123
- "parameters via link class."
124
- msgstr ""
125
- "برای پذیرفتن پارامترهای سفارشی مربوط به class لینک‌ها، Metadata jQuery "
126
- "extension script را در نظر بگیر"
127
-
128
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
129
- msgid "Overlay"
130
- msgstr "پوشش (Overlay)"
131
-
132
- #: ../easy-fancybox-settings.php:139
133
- msgid "Show the overlay around content opened in FancyBox."
134
- msgstr "پوشش، دورتادور محتوایی باشد که به وسیله FancyBox بازشده است"
135
-
136
- #: ../easy-fancybox-settings.php:146
137
- msgid "Close FancyBox when overlay is clicked."
138
- msgstr "وقتی روی پوشش کلیک شد FancyBox بسته شود"
139
-
140
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
141
- msgid "Opacity"
142
- msgstr "شفافیت"
143
-
144
- #: ../easy-fancybox-settings.php:158
145
- msgid "Value between 0 and 1. "
146
- msgstr "مقداری بین 0 و 1"
147
-
148
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
149
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
150
- #: ../easy-fancybox-settings.php:595
151
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
152
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
153
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
154
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
155
- msgid "Default:"
156
- msgstr "پیش‌فرض:"
157
-
158
- #: ../easy-fancybox-settings.php:162
159
- msgid "Color"
160
- msgstr "رنگ"
161
-
162
- #: ../easy-fancybox-settings.php:167
163
- msgid "Enter an HTML color value."
164
- msgstr "یک مقدار HTML برای رنگ وارد کنید"
165
-
166
- #: ../easy-fancybox-settings.php:175
167
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:71
168
- msgid "Spotlight effect"
169
- msgstr "جلوه‌ی نورافکن"
170
-
171
- #: ../easy-fancybox-settings.php:175 ../easy-fancybox-settings.php:236
172
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
173
- #: ../easy-fancybox-settings.php:613
174
- msgid "Make available &raquo;"
175
- msgstr "فعال شود &raquo;"
176
-
177
- #: ../easy-fancybox-settings.php:180
178
- msgid "Window"
179
- msgstr "پنجره"
180
-
181
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
182
- msgid "Appearance"
183
- msgstr "نمایش"
184
-
185
- #: ../easy-fancybox-settings.php:193
186
- msgid "Show the (X) close button"
187
- msgstr "علامت (X) برای بستن پنجره باشد"
188
-
189
- #: ../easy-fancybox-settings.php:198
190
- msgid "Background color"
191
- msgstr "رنگ پس‌زمینه"
192
-
193
- #: ../easy-fancybox-settings.php:208
194
- msgid "Border color"
195
- msgstr "رنگ کناره"
196
-
197
- #: ../easy-fancybox-settings.php:218
198
- msgid "Text color"
199
- msgstr "رنگ متن"
200
-
201
- #: ../easy-fancybox-settings.php:241
202
- msgid "Border radius"
203
- msgstr "لبه کناره گرد باشد"
204
-
205
- #: ../easy-fancybox-settings.php:249
206
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
207
- msgid "Set a border radius to create rounded corners. Higher is rounder."
208
- msgstr "هرچه عدد بالاتری وارد کنید گوشه‌ها گردتر خواهند بود"
209
-
210
- #: ../easy-fancybox-settings.php:254
211
- msgid "Dimensions"
212
- msgstr "ابعاد"
213
-
214
- #: ../easy-fancybox-settings.php:258 ../easy-fancybox-settings.php:771
215
- #: ../easy-fancybox-settings.php:896 ../easy-fancybox-settings.php:990
216
- #: ../easy-fancybox-settings.php:1095 ../easy-fancybox-settings.php:1194
217
- #: ../easy-fancybox-settings.php:1294 ../easy-fancybox-settings.php:1424
218
- msgid "Width"
219
- msgstr "پهنا"
220
-
221
- #: ../easy-fancybox-settings.php:268 ../easy-fancybox-settings.php:781
222
- #: ../easy-fancybox-settings.php:907 ../easy-fancybox-settings.php:1001
223
- #: ../easy-fancybox-settings.php:1108 ../easy-fancybox-settings.php:1207
224
- #: ../easy-fancybox-settings.php:1307 ../easy-fancybox-settings.php:1434
225
- msgid "Height"
226
- msgstr "ارتفاع"
227
-
228
- #: ../easy-fancybox-settings.php:277 ../easy-fancybox-settings.php:790
229
- #: ../easy-fancybox-settings.php:917 ../easy-fancybox-settings.php:1011
230
- #: ../easy-fancybox-settings.php:1120 ../easy-fancybox-settings.php:1219
231
- #: ../easy-fancybox-settings.php:1319 ../easy-fancybox-settings.php:1443
232
- msgid "Border"
233
- msgstr "کناره"
234
-
235
- #: ../easy-fancybox-settings.php:286
236
- msgid ""
237
- "If content size is not set or cannot be determined automatically, these "
238
- "default dimensions will be used."
239
- msgstr ""
240
- "اگر اندازه محتوا مشخص نباشد یا به صورت خودکار تعیین نشود، از این مقادیر "
241
- "پیش‌فرض استفاده خواهد شد"
242
-
243
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
244
- msgid "Behavior"
245
- msgstr "رفتار (Behavior)"
246
-
247
- #: ../easy-fancybox-settings.php:298
248
- msgid "Center while scrolling"
249
- msgstr "در هنگام پیمایش، وسط باشد"
250
-
251
- #: ../easy-fancybox-settings.php:305
252
- msgid "Esc key stroke closes FancyBox"
253
- msgstr "دکمه Esc باعث بسته‌شدن FancyBox شود"
254
-
255
- #: ../easy-fancybox-settings.php:312
256
- msgid "Scale large content down to fit in the browser viewport."
257
- msgstr ""
258
- "وقتی اندازه محتوا بزرگ است از مقیاس کوچکتری استفاده شود تا در مرورگر قابل "
259
- "دیدن باشد"
260
-
261
- #: ../easy-fancybox-settings.php:316
262
- msgid "Opening speed"
263
- msgstr "سرعت بازشدن"
264
-
265
- #: ../easy-fancybox-settings.php:328
266
- msgid "Closing speed"
267
- msgstr "سرعت بسته‌شدن"
268
-
269
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
270
- msgid "Duration in milliseconds. Higher is slower."
271
- msgstr "بر اساس هزارم ثانیه است و هرچه عدد بزرگتر باشد، سرعت کندتر خواهد بود"
272
-
273
- #: ../easy-fancybox-settings.php:375
274
- msgid ""
275
- "To make images open in an overlay, add their extension to the Autodetect "
276
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
277
- "all autodetection."
278
- msgstr ""
279
- "برای این که تصاویر در پوشش (Overlay) باز شوند، پسوند آنها را در فیلد "
280
- "Autodetect بگذارید یا این که از کلاس \"fancybox\" برای پیوند آنها استفاده "
281
- "نمایید. اگر فیلد را خالی بگذارید تمام Autodetectها غیرفعال خواهند شد."
282
-
283
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
284
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
285
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
286
- #: ../easy-fancybox-settings.php:1279
287
- msgid "Autodetect"
288
- msgstr "Autodetect"
289
-
290
- #: ../easy-fancybox-settings.php:397
291
- msgid "Example:"
292
- msgstr "مثال:"
293
-
294
- #: ../easy-fancybox-settings.php:401
295
- msgid "Apply to"
296
- msgstr "بر این موارد اِعمال شود"
297
-
298
- #: ../easy-fancybox-settings.php:406
299
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
300
- msgid "All image links"
301
- msgstr "تمام پیوندهای تصویر"
302
-
303
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
304
- msgid "Transition In"
305
- msgstr "انتقال به"
306
-
307
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
308
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
309
- msgid "Fade"
310
- msgstr "Fade"
311
-
312
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
313
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
314
- msgid "Elastic"
315
- msgstr "Elastic"
316
-
317
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
318
- msgid "Easing In"
319
- msgstr "کاهش در"
320
-
321
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
322
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
323
- msgid "Linear"
324
- msgstr "Linear"
325
-
326
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
327
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
328
- msgid "Swing"
329
- msgstr "Swing"
330
-
331
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
332
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
333
- msgid "easeInBack"
334
- msgstr "easeInBack"
335
-
336
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
337
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
338
- msgid "easeOutBack"
339
- msgstr "easeOutBack"
340
-
341
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
342
- msgid "Transition Out"
343
- msgstr "انتقال از"
344
-
345
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
346
- msgid "Easing Out"
347
- msgstr "کاهش از"
348
-
349
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
350
- #: ../easy-fancybox-settings.php:723
351
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
352
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
353
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
354
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
355
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
356
- msgid "Note:"
357
- msgstr "توجه:"
358
-
359
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
360
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
361
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
362
- msgid "Easing effects only apply when Transition is set to Elastic. "
363
- msgstr "جلوه‌های Easing تنها وقتی کار می‌کنند که انتقال Elastic انتخاب شده باشد"
364
-
365
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
366
- msgid ""
367
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
368
- "Transition In is set to Elastic!"
369
- msgstr ""
370
- "fade شفاف در حین انتقال به شکل elastic. دقت کنید! فقط وقتی استفاده کنید که "
371
- "دست‌کم یک جلوه‌ی انتقالی از نوع elastic داشته باشید"
372
-
373
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
374
- msgid "Close FancyBox when content is clicked"
375
- msgstr "زمانی که روی محتوا کلیک می‌شود FancyBox بسته شود"
376
-
377
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
378
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
379
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
380
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
381
- msgid "Show title"
382
- msgstr "عنوان را نمایش بده"
383
-
384
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
385
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
386
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
387
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
388
- msgid "Title Position"
389
- msgstr "جای عنوان"
390
-
391
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
392
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
393
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
394
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
395
- msgid "Float"
396
- msgstr "شناور"
397
-
398
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
399
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
400
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
401
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
402
- msgid "Outside"
403
- msgstr "بیرون"
404
-
405
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
406
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
407
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
408
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
409
- msgid "Inside"
410
- msgstr "درون"
411
-
412
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
413
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
414
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
415
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
416
- msgid "Allow title from thumbnail alt tag"
417
- msgstr "عنوان همان تگ alt تصویر بندانگشتی باشد"
418
-
419
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
420
- msgid "Advanced"
421
- msgstr "پیشرفته"
422
-
423
- #: ../easy-fancybox-settings.php:521
424
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
425
- msgid "Hide/show title on mouse hover action"
426
- msgstr "وقتی عمل mouse hover انجام می‌شود عنوان پیدا/پنهان شود"
427
-
428
- #: ../easy-fancybox-settings.php:528
429
- msgid "Gallery"
430
- msgstr "گالری"
431
-
432
- #: ../easy-fancybox-settings.php:532
433
- msgid "Autogallery"
434
- msgstr "گالری خودکار"
435
-
436
- #: ../easy-fancybox-settings.php:537
437
- msgid "Disabled"
438
- msgstr "غیرفعال"
439
-
440
- #: ../easy-fancybox-settings.php:538
441
- msgid "WordPress galleries only"
442
- msgstr "فقط گالری وردپرس"
443
-
444
- #: ../easy-fancybox-settings.php:539
445
- msgid "All in one gallery"
446
- msgstr "همه در یک گالری"
447
-
448
- #: ../easy-fancybox-settings.php:542
449
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
450
- msgid ""
451
- "When disabled, you can use the rel attribute to manually group image links "
452
- "together."
453
- msgstr ""
454
- "وقتی غیرفعال انتخاب شود، می‌توانید از ویژگی rel استفاده کنید تا به صورت دستی "
455
- "پیوندهای تصاویر را گروه‌بندی نمایید."
456
-
457
- #: ../easy-fancybox-settings.php:542
458
- msgid ""
459
- "Leave the mousewheel option (below) unchecked when you do not use FancyBox "
460
- "for galleries on your site."
461
- msgstr ""
462
- "زمانی که FancyBox را برای گالری استفاده نمی‌کنید، گزینه mousewheel را (در "
463
- "زیر) تیک‌نخورده باقی بگذارید"
464
-
465
- #: ../easy-fancybox-settings.php:549
466
- msgid "Show the gallery navigation arrows"
467
- msgstr "پیکان‌های ناوبری (navigation arrows) گالری را نمایش بده"
468
-
469
- #: ../easy-fancybox-settings.php:556
470
- msgid "Arrow key strokes browse the gallery"
471
- msgstr "چهار کلید جهت در گالری فعال باشند"
472
-
473
- #: ../easy-fancybox-settings.php:563
474
- msgid ""
475
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
476
- "mousewheel action."
477
- msgstr ""
478
- "از Mousewheel jQuery extension script استفاده کن تا امکان کار در گالری با "
479
- "حرکت ماوس امکان‌پذیر باشد"
480
-
481
- #: ../easy-fancybox-settings.php:570
482
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
483
- msgstr "گالری به شکل چرخشی باشد تا دکمه next/back همیشه کار کند"
484
-
485
- #: ../easy-fancybox-settings.php:574
486
- msgid "Change speed"
487
- msgstr "سرعت تغییر"
488
-
489
- #: ../easy-fancybox-settings.php:586
490
- msgid "Fade speed"
491
- msgstr "سرعت محوشدن"
492
-
493
- #: ../easy-fancybox-settings.php:602
494
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
495
- msgid "Galleries per Section (below)"
496
- msgstr "گالری بر بخش (زیر)"
497
-
498
- #: ../easy-fancybox-settings.php:602
499
- msgid ""
500
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
501
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
502
- "it to conform with your theme."
503
- msgstr ""
504
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
505
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
506
- "it to conform with your theme."
507
-
508
- #: ../easy-fancybox-settings.php:602
509
- msgid ""
510
- "Examples: If your theme wraps post content in a div with class post, change "
511
- "this value to \"div.post\". If you only want to group images in a WordPress "
512
- "gallery together, use \"div.gallery\". If you want to include images in a "
513
- "sidebar with ID primary, add \", #primary\"."
514
- msgstr ""
515
- "چند مثال: اگر پوسته، محتوای نوشته‌ی شما را در div با class post قرار می‌دهد، "
516
- "این مقدار را به \"div.post\" تغییر دهید. اگر فقط می‌خواهید یک گروه از تصاویر "
517
- "را با هم در یک گالری وردپرس قرار بدهید از \"div.gallery\" استفاده کنید. اگر "
518
- "هم می‌خواهید تصاویر در یک سایدبار با ID primary نمایش داده شوند کد \", "
519
- "#primary\"را اضافه نمایید."
520
-
521
- #: ../easy-fancybox-settings.php:602
522
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
523
- msgid ""
524
- "Hide/show title on mouse hover action works best with Overlay title position."
525
- msgstr ""
526
- "پنهان/آشکارکردن عنوان، توسط عمل mouse hover با Overlay title position به "
527
- "بهترین شکل کار می‌کند"
528
-
529
- #: ../easy-fancybox-settings.php:602
530
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
531
- msgstr ""
532
- "اسلایدشو از مقدار ثابت 6، 8 یا 12 ثانیه برای توقف به ازای هر تصویر استفاده "
533
- "می‌کند"
534
-
535
- #: ../easy-fancybox-settings.php:602
536
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
537
- msgid "(6 seconds)"
538
- msgstr "(6 ثانیه)"
539
-
540
- #: ../easy-fancybox-settings.php:602
541
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
542
- msgid "(8 seconds)"
543
- msgstr "(8 ثانیه)"
544
-
545
- #: ../easy-fancybox-settings.php:602
546
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
547
- msgid "(12 seconds)"
548
- msgstr "(12 ثانیه)"
549
-
550
- #: ../easy-fancybox-settings.php:610
551
- msgid "Slideshow"
552
- msgstr "اسلایدشو"
553
-
554
- #: ../easy-fancybox-settings.php:638
555
- msgid ""
556
- "To make inline content open in an overlay, wrap that content in a div with a "
557
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
558
- "\"fancybox-inline\" attribute."
559
- msgstr ""
560
- "برای آن که کاری کنید که محتوای Inline در یک پوشش (overlay) باز شود، آن محتوا "
561
- "را با یک شناسه‌ی یکتا در div قرار دهید، پیوندی با target \"#uniqueID\" بسازید "
562
- "و به آن کلاس ویژگی \"fancybox-inline\" را بدهید."
563
-
564
- #: ../easy-fancybox-settings.php:656
565
- msgid ""
566
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
567
- "determined, the default dimensions will be used."
568
- msgstr ""
569
- "تلاش کنید تا اندازه را متناسب با محتوای inline/html درآورید. اگر تیک نزنید "
570
- "یا اندازه تعیین نکنید، از ابعاد پیش‌فرض استفاده خواهد شد"
571
-
572
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
573
- msgid "Scrolling"
574
- msgstr "پیمایش"
575
-
576
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
577
- msgid "Auto"
578
- msgstr "خودکار"
579
-
580
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
581
- msgid "Always"
582
- msgstr "همیشه"
583
-
584
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
585
- msgid "Never"
586
- msgstr "هرگز"
587
-
588
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
589
- msgid "Define scrolling and scrollbar visibility."
590
- msgstr "عدد پیمایش و آشکاربودن نوار پیمایش را تعیین کنید"
591
-
592
- #: ../easy-fancybox-settings.php:748
593
- msgid ""
594
- "To make any PDF document file open in an overlay, switch on Autodetect or "
595
- "use the class \"fancybox-pdf\" for its link."
596
- msgstr ""
597
- "برای آن که فایل‌های PDF در داخل پوشش باز شوند، گزینه‌ی Autodetect را انتخاب "
598
- "نمایید یا این که از کلاس \"fancybox-pdf\" برای پیوند استفاده کنید."
599
-
600
- #: ../easy-fancybox-settings.php:873
601
- msgid ""
602
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
603
- "use the class \"fancybox-swf\" for its link."
604
- msgstr ""
605
- "برای آن که فایل‌های SWF در داخل پوشش باز شوند، گزینه‌ی Autodetect را انتخاب "
606
- "نمایید یا این که از کلاس \"fancybox-swf\" برای پیوند استفاده کنید."
607
-
608
- #: ../easy-fancybox-settings.php:967
609
- msgid ""
610
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
611
- "the class \"fancybox-svg\" for its link."
612
- msgstr ""
613
- "برای آن که فایل‌های SVG در داخل پوشش باز شوند، گزینه‌ی Autodetect را انتخاب "
614
- "نمایید یا این که از کلاس \"fancybox-svg\" برای پیوند استفاده کنید."
615
-
616
- #: ../easy-fancybox-settings.php:1062
617
- msgid ""
618
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
619
- "the class \"fancybox-youtube\" for its link."
620
- msgstr ""
621
- "برای آن که ویدئوهای یوتیوب در داخل پوشش باز شوند، گزینه‌ی Autodetect را "
622
- "انتخاب نمایید یا این که از کلاس \"fancybox-youtube\" برای پیوند استفاده "
623
- "کنید."
624
-
625
- #: ../easy-fancybox-settings.php:1080
626
- msgid "Autodetect Short links"
627
- msgstr "Autodetect Short links"
628
-
629
- #: ../easy-fancybox-settings.php:1170
630
- msgid ""
631
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
632
- "class \"fancybox-vimeo\" for its link."
633
- msgstr ""
634
- "برای آن که ویدئوهای Vimeo در داخل پوشش باز شوند، گزینه‌ی Autodetect را انتخاب "
635
- "نمایید یا این که از کلاس \"fancybox-vimeo\" برای پیوند استفاده کنید."
636
-
637
- #: ../easy-fancybox-settings.php:1270
638
- msgid ""
639
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
640
- "use the class \"fancybox-dailymotion\" for its link."
641
- msgstr ""
642
- "برای آن که ویدئوهای Dailymotion در داخل پوشش باز شوند، گزینه‌ی Autodetect را "
643
- "انتخاب نمایید یا این که از کلاس \"fancybox-dailymotion\" برای پیوند "
644
- "استفاده کنید."
645
-
646
- #: ../easy-fancybox-settings.php:1396
647
- msgid ""
648
- "To make a website or HTML document open in an overlay, use the class "
649
- "\"fancybox-iframe\" for its link."
650
- msgstr ""
651
- "برای آن که یک وب‌سایت یا فایل HTML در داخل پوشش باز شوند، از کلاس \"fancybox-"
652
- "iframe\" برای پیوند استفاده نمایید"
653
-
654
- #: ../easy-fancybox-class.php:298
655
- msgid "Donate to keep the Easy FancyBox plugin development going!"
656
- msgstr "الکمک مالی کنید تا افزونه Easy FancyBox به کار خود ادامه دهد!"
657
-
658
- #: ../easy-fancybox-class.php:298
659
- #, php-format
660
- msgid ""
661
- "The options in this section are provided by the plugin %s and determine the "
662
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
663
- "by %s."
664
- msgstr ""
665
- "تنظیمات این بخش توسط افزونه %s تهیه شده‌اند و تعیین‌کننده نحوه‌ی نمایش پوشش "
666
- "<strong>Media Lightbox</strong> و ویژگی آن هستند که با %s کنترل می‌شود"
667
-
668
- #: ../easy-fancybox-class.php:298
669
- msgid "Easy FancyBox"
670
- msgstr "Easy FancyBox"
671
-
672
- #: ../easy-fancybox-class.php:298 ../easy-fancybox-class.php:510
673
- #: ../easy-fancybox-class.php:554
674
- msgid "FancyBox"
675
- msgstr "FancyBox"
676
-
677
- #: ../easy-fancybox-class.php:298
678
- msgid ""
679
- "First enable each sub-section that you need. Then save and come back to "
680
- "adjust its specific settings."
681
- msgstr ""
682
- "ابتدا هر زیربخش را که مد نظر شماست فعال کنید. سپس ذخیره‌اش کرده، به تنظیمات "
683
- "جزئی ابتدا هر زیربخش را که مد نظر شماست فعال کنید. سپس ذخیره‌اش کرده، به "
684
- "تنظیمات ویژه آن بپردازید تر آن بپردازید"
685
-
686
- #: ../easy-fancybox-class.php:298
687
- msgid ""
688
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
689
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
690
- "will have some extra impact on client-side page speed. Enable only those sub-"
691
- "sections and options that you actually need on your site."
692
- msgstr ""
693
- "توجه: تنظیمات اضافه‌ای که در زیربخش‌ها وجود دارند، مثلا <em>Auto-detection</"
694
- "em> یا <em>Elastic transitions</em> یا <em>Easing effects</em> (به جز swing) "
695
- "باعث می‌شوند که بازدیدکننده‌ی وب‌سایت با کاهش سرعت روبرو شود. بنابراین تنها "
696
- "زیربخش‌هایی را که لازم دارید فعال نمایید."
697
-
698
- #: ../easy-fancybox-class.php:298
699
- msgid ""
700
- "Some setting like Transition options are unavailable for SWF video, PDF and "
701
- "iFrame content to ensure browser compatibility and readability."
702
- msgstr ""
703
- "برخی تنظیمات مانند انتقال (transition) برای فایل‌های ویدئویی SWF، فایل‌های PDF "
704
- "یا محتوای iFrame غیرفعال هستند تا اطمینان حاصل شود که مرورگر می‌تواند با آنها "
705
- "سازگار باشد و آنها را بخواند"
706
-
707
- #: ../easy-fancybox-class.php:342
708
- msgid "Checked"
709
- msgstr "‌‌انتخاب‌شده"
710
-
711
- #: ../easy-fancybox-class.php:344
712
- msgid "Unchecked"
713
- msgstr "انتخاب‌نشده"
714
-
715
- #: ../easy-fancybox-class.php:391
716
- msgid "Settings"
717
- msgstr "تنظیمات"
718
-
719
- #: ../easy-fancybox-class.php:554
720
- msgid "Easy FancyBox Settings"
721
- msgstr "Easy FancyBox تنظیمات"
722
-
723
- #: ../easy-fancybox-class.php:565
724
- msgid "Sections"
725
- msgstr "بخش‌ها"
726
-
727
- #: ../easy-fancybox-class.php:602
728
- msgid "Support"
729
- msgstr "پشتیبانی"
730
-
731
- #: ../easy-fancybox-class.php:603
732
- msgid "Resources"
733
- msgstr "منابع"
734
-
735
- #: ../easy-fancybox-class.php:604
736
- msgid "Discussion"
737
- msgstr "گفتگوها"
738
-
739
- #: ../easy-fancybox-class.php:605
740
- msgid "Credits"
741
- msgstr "دست‌اندرکاران"
742
-
743
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
744
- msgid ""
745
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
746
- "available."
747
- msgstr ""
748
- "از شما برای خرید نسخه‌ی حرفه‌ای Easy FanxuBox سپاسگزاریم. اکنون انتخاب‌های "
749
- "بیشتری پیش روی شماست."
750
-
751
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
752
- msgid "Get support here."
753
- msgstr "برای پشتیبانی به اینجا بروید."
754
-
755
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
756
- msgid "First Image link"
757
- msgstr "نخستین پیوند تصویر"
758
-
759
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
760
- msgid "First PDF link"
761
- msgstr "نخستین پیوند PDF"
762
-
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
764
- msgid "First SWF link"
765
- msgstr "نخستین پیوند SWF"
766
-
767
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
768
- msgid "First SVG link"
769
- msgstr "نخستین پیوند SVG"
770
-
771
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
772
- msgid "First YouTube link "
773
- msgstr "نخستین پیوند YouTube"
774
-
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
776
- msgid "First Vimeo link "
777
- msgstr "نخستین پیوند Viemo"
778
-
779
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
780
- msgid "First Dailymotion link "
781
- msgstr "نخستین پیوند Dailymotion"
782
-
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
784
- msgid "First iFrame link"
785
- msgstr "نخستین پیوند iFrame"
786
-
787
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
788
- msgid "First of any link"
789
- msgstr "نخستین پیوند از هر چیزی"
790
-
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
792
- msgid "Links inside Section(s) only (below)"
793
- msgstr "‌‌‌‌فقط پیوندهای داخل بخش‌ها (زیر)"
794
-
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
799
- msgid "easeInQuad"
800
- msgstr "easeInQuad"
801
-
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
806
- msgid "easeOutQuad"
807
- msgstr "easeOutQuad"
808
-
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
813
- msgid "easeInOutQuad"
814
- msgstr "easeInOutQuad"
815
-
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
820
- msgid "easeInCubic"
821
- msgstr "easeInCubic"
822
-
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
827
- msgid "easeOutCubic"
828
- msgstr "easeOutCubic"
829
-
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
834
- msgid "easeInOutCubic"
835
- msgstr "easeInOutCubic"
836
-
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
841
- msgid "easeInQuart"
842
- msgstr "easeInQuart"
843
-
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
848
- msgid "easeOutQuart"
849
- msgstr "easeOutQuart"
850
-
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
855
- msgid "easeInOutQuart"
856
- msgstr "easeInOutQuart"
857
-
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
862
- msgid "easeInQuint"
863
- msgstr "easeInQuint"
864
-
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
869
- msgid "easeOutQuint"
870
- msgstr "easeOutQuint"
871
-
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
876
- msgid "easeInOutQuint"
877
- msgstr "easeInOutQuint"
878
-
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
883
- msgid "easeInSine"
884
- msgstr "easeInSine"
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
890
- msgid "easeOutSine"
891
- msgstr "easeOutSine"
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
897
- msgid "easeInOutSine"
898
- msgstr "easeInOutSine"
899
-
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
904
- msgid "easeInExpo"
905
- msgstr "easeInExpo"
906
-
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
911
- msgid "easeOutExpo"
912
- msgstr "easeOutExpo"
913
-
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
918
- msgid "easeInOutExpo"
919
- msgstr "easeInOutExpo"
920
-
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
925
- msgid "easeInCirc"
926
- msgstr "easeInCirc"
927
-
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
932
- msgid "easeOutCirc"
933
- msgstr "easeOutCirc"
934
-
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
939
- msgid "easeInOutCirc"
940
- msgstr "easeInOutCirc"
941
-
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
943
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
944
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
945
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
946
- msgid "easeInElastic"
947
- msgstr "easeInElastic"
948
-
949
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
950
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
951
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
952
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
953
- msgid "easeOutElastic"
954
- msgstr "easeOutElastic"
955
-
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
957
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
958
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
959
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
960
- msgid "easeInOutElastic"
961
- msgstr "easeInOutElastic"
962
-
963
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
964
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
965
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
966
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
967
- msgid "easeInOutBack"
968
- msgstr "easeInOutBack"
969
-
970
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
971
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
972
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
974
- msgid "easeInBounce"
975
- msgstr "easeInBounce"
976
-
977
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
978
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
979
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
980
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
981
- msgid "easeOutBounce"
982
- msgstr "easeOutBounce"
983
-
984
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
985
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
986
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
987
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
988
- msgid "easeInOutBounce"
989
- msgstr "easeInOutBounce"
990
-
991
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
992
- msgid "Section(s)"
993
- msgstr "بخش‌(ها)"
994
-
995
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
996
- msgid ""
997
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
998
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
999
- "it to conform with your theme."
1000
- msgstr ""
1001
- "وقتی کار می‌کند که <em>Apply to</em> برای <em>Limited to Sections</em> و/یا "
1002
- "<em>Auto-gallery</em> برای <em>Galleries per Section</em> تنظیم شود. طوری "
1003
- "تنظیمش کنید که با پوسته‌ی شما سازگار باشد"
1004
-
1005
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
1006
- msgid ""
1007
- "Examples: If your theme wraps post content in a div with class post, change "
1008
- "this value to \"div.post\". If you want to include images in a sidebar with "
1009
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
1010
- "you only want to group images in a WordPress gallery together, use \"div."
1011
- "gallery\". If you want to include images in a sidebar with ID primary, add "
1012
- "\", #primary\"."
1013
- msgstr ""
1014
- "چند مثال: اگر پوسته، محتوای نوشته‌ی شما را در div با class post قرار می‌دهد، "
1015
- "این مقدار را به \"div.post\" تغییر دهید. اگر می‌خواهید تصاویر در یک سایدبار "
1016
- "با شناسه‌ی یکتا قرار بگیرند \", div#primary\" را اضافه کنید و برای پوسته "
1017
- "هایی که html5 هستند هم از \"aside#primary\" بهره بگیرید. اگر فقط می‌خواهید یک "
1018
- "گروه از تصاویر را با هم در یک گالری وردپرس قرار بدهید از \"div.gallery\" "
1019
- "استفاده کنید. اگر هم می‌خواهید تصاویر در یک سایدبار با ID primary نمایش داده "
1020
- "شوند کد \", #primary\"را اضافه نمایید."
1021
-
1022
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
1023
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
1024
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
1025
- msgid "Gallery Auto-rotation"
1026
- msgstr "چرخش خودکار گالری"
1027
-
1028
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
1029
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
1030
- msgstr ""
1031
- "چرخش خودکار از مقدار ثابت 6، 8 یا 12 ثانیه برای توقف به ازای هر تصویر "
1032
- "استفاده می‌کند"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-fr_FR.mo DELETED
Binary file
languages/easy-fancybox-fr_FR.po DELETED
@@ -1,856 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Easy FancyBox v1.5.5\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
5
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
6
- "PO-Revision-Date: 2013-10-13 15:51:28+0000\n"
7
- "Last-Translator: Emmanuel MAILLARD <bigmanu@netcourrier.com>\n"
8
- "Language-Team: Emmanuel MAILLARD <bigmanu@netcourrier.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n>1;\n"
13
- "X-Generator: Poedit 1.5.4\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: easy-fancybox-settings.php:517
24
- #: easy-fancybox-settings.php:606
25
- #@ easy-fancybox
26
- msgid "Advanced"
27
- msgstr "Avancé"
28
-
29
- #: easy-fancybox-settings.php:406
30
- #@ easy-fancybox
31
- msgid "All image links"
32
- msgstr "Tout les liens d'images"
33
-
34
- #: easy-fancybox-settings.php:539
35
- #@ easy-fancybox
36
- msgid "All in one gallery"
37
- msgstr "Tout en une seule galerie"
38
-
39
- #: easy-fancybox-settings.php:513
40
- #: easy-fancybox-settings.php:829
41
- #: easy-fancybox-settings.php:952
42
- #: easy-fancybox-settings.php:1047
43
- #: easy-fancybox-settings.php:1155
44
- #: easy-fancybox-settings.php:1254
45
- #: easy-fancybox-settings.php:1354
46
- #: easy-fancybox-settings.php:1478
47
- #@ easy-fancybox
48
- msgid "Allow title from thumbnail alt tag"
49
- msgstr "Utiliser le tag alternatif de la miniature pour le titre"
50
-
51
- #: easy-fancybox-settings.php:401
52
- #@ easy-fancybox
53
- msgid "Apply to"
54
- msgstr "Appliquer à"
55
-
56
- #: easy-fancybox-settings.php:291
57
- #: easy-fancybox-settings.php:413
58
- #@ easy-fancybox
59
- msgid "Behavior"
60
- msgstr "Comportement"
61
-
62
- #: easy-fancybox-settings.php:277
63
- #: easy-fancybox-settings.php:790
64
- #: easy-fancybox-settings.php:917
65
- #: easy-fancybox-settings.php:1011
66
- #: easy-fancybox-settings.php:1120
67
- #: easy-fancybox-settings.php:1219
68
- #: easy-fancybox-settings.php:1319
69
- #: easy-fancybox-settings.php:1443
70
- #@ default
71
- msgid "Border"
72
- msgstr "Bordure"
73
-
74
- #: easy-fancybox-settings.php:298
75
- #@ easy-fancybox
76
- msgid "Center while scrolling"
77
- msgstr "Centrer pendant le défilement"
78
-
79
- #: easy-fancybox-class.php:381
80
- #@ easy-fancybox
81
- msgid "Checked"
82
- msgstr "Coché"
83
-
84
- #: easy-fancybox-settings.php:328
85
- #@ easy-fancybox
86
- msgid "Closing speed"
87
- msgstr "Vitesse de fermeture"
88
-
89
- #: easy-fancybox-settings.php:162
90
- #@ easy-fancybox
91
- msgid "Color"
92
- msgstr "Couleur"
93
-
94
- #: easy-fancybox-class.php:605
95
- #: easy-fancybox-settings.php:76
96
- #: easy-fancybox-settings.php:1265
97
- #@ easy-fancybox
98
- msgid "Dailymotion"
99
- msgstr "Dailymotion"
100
-
101
- #: easy-fancybox-settings.php:158
102
- #: easy-fancybox-settings.php:167
103
- #: easy-fancybox-settings.php:286
104
- #: easy-fancybox-settings.php:337
105
- #: easy-fancybox-settings.php:595
106
- #@ easy-fancybox
107
- msgid "Default:"
108
- msgstr "Par défaut :"
109
-
110
- #: easy-fancybox-settings.php:537
111
- #@ default
112
- msgid "Disabled"
113
- msgstr "Désactivé"
114
-
115
- #: easy-fancybox-settings.php:337
116
- #: easy-fancybox-settings.php:595
117
- #@ easy-fancybox
118
- msgid "Duration in milliseconds. Higher is slower."
119
- msgstr "Durée en millisecondes. Une valeur élevée ralentit la durée."
120
-
121
- #. translators: plugin header field 'Description'
122
- #: easy-fancybox.php:0
123
- #@ easy-fancybox
124
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
125
- msgstr "Activez facilement l'<a href=\"http://fancybox.net/\">extension FancyBox jQuery</a> sur tout les liens d'images, SWF, PDF, YouTube, Dailymotion et Vimeo. Supporte également les contenus en ligne et les en iframe."
126
-
127
- #: easy-fancybox-settings.php:430
128
- #: easy-fancybox-settings.php:686
129
- #@ easy-fancybox
130
- msgid "Easing In"
131
- msgstr "Apparition"
132
-
133
- #: easy-fancybox-settings.php:457
134
- #: easy-fancybox-settings.php:713
135
- #@ easy-fancybox
136
- msgid "Easing Out"
137
- msgstr "Disparition"
138
-
139
- #: easy-fancybox-settings.php:467
140
- #: easy-fancybox-settings.php:723
141
- #@ easy-fancybox
142
- msgid "Easing effects only apply when Transition is set to Elastic. "
143
- msgstr "Les effets d'apparition/disparition s'appliquent seulement lorsque la transition est réglé sur élastique."
144
-
145
- #. translators: plugin header field 'Name'
146
- #: easy-fancybox-class.php:337
147
- #: easy-fancybox.php:0
148
- #@ easy-fancybox
149
- msgid "Easy FancyBox"
150
- msgstr "Easy FancyBox"
151
-
152
- #: easy-fancybox-settings.php:423
153
- #: easy-fancybox-settings.php:450
154
- #: easy-fancybox-settings.php:679
155
- #: easy-fancybox-settings.php:706
156
- #@ easy-fancybox
157
- msgid "Elastic"
158
- msgstr "Élastique"
159
-
160
- #: easy-fancybox-settings.php:101
161
- #@ easy-fancybox
162
- msgid "Empty (hidden) links"
163
- msgstr "Liens vides (cachés)"
164
-
165
- #: easy-fancybox-settings.php:20
166
- #@ easy-fancybox
167
- msgid "Enable FancyBox for"
168
- msgstr "Activer FancyBox pour"
169
-
170
- #: easy-fancybox-settings.php:167
171
- #@ easy-fancybox
172
- msgid "Enter an HTML color value."
173
- msgstr "Entrez la valeur d'une couleur HTML."
174
-
175
- #: easy-fancybox-settings.php:95
176
- #@ easy-fancybox
177
- msgid "Exclude"
178
- msgstr "Exclure"
179
-
180
- #: easy-fancybox-settings.php:422
181
- #: easy-fancybox-settings.php:449
182
- #: easy-fancybox-settings.php:678
183
- #: easy-fancybox-settings.php:705
184
- #@ easy-fancybox
185
- msgid "Fade"
186
- msgstr "Fondu"
187
-
188
- #: easy-fancybox-settings.php:586
189
- #@ easy-fancybox
190
- msgid "Fade speed"
191
- msgstr "Vitesse de fondu"
192
-
193
- #: easy-fancybox-class.php:337
194
- #: easy-fancybox-class.php:544
195
- #: easy-fancybox-class.php:588
196
- #@ easy-fancybox
197
- msgid "FancyBox"
198
- msgstr "FancyBox"
199
-
200
- #: easy-fancybox-class.php:337
201
- #@ easy-fancybox
202
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
203
- msgstr "Activez en premier chaque sous-section dont vous avez besoin. Ensuite, sauvegardez et revenez ajustez leurs réglages spécifiques."
204
-
205
- #: easy-fancybox-settings.php:500
206
- #: easy-fancybox-settings.php:818
207
- #: easy-fancybox-settings.php:941
208
- #: easy-fancybox-settings.php:1035
209
- #: easy-fancybox-settings.php:1144
210
- #: easy-fancybox-settings.php:1243
211
- #: easy-fancybox-settings.php:1343
212
- #: easy-fancybox-settings.php:1467
213
- #@ easy-fancybox
214
- msgid "Float"
215
- msgstr "Flottant"
216
-
217
- #: easy-fancybox-settings.php:602
218
- #@ easy-fancybox
219
- msgid "Galleries per Section (below)"
220
- msgstr "Galeries par section (dessous)"
221
-
222
- #: easy-fancybox-class.php:598
223
- #: easy-fancybox-settings.php:9
224
- #@ easy-fancybox
225
- msgid "Global settings"
226
- msgstr "Réglages généraux"
227
-
228
- #: easy-fancybox-settings.php:268
229
- #: easy-fancybox-settings.php:781
230
- #: easy-fancybox-settings.php:907
231
- #: easy-fancybox-settings.php:1001
232
- #: easy-fancybox-settings.php:1108
233
- #: easy-fancybox-settings.php:1207
234
- #: easy-fancybox-settings.php:1307
235
- #: easy-fancybox-settings.php:1434
236
- #@ default
237
- msgid "Height"
238
- msgstr "Hauteur"
239
-
240
- #: easy-fancybox-settings.php:521
241
- #@ easy-fancybox
242
- msgid "Hide/show title on mouse hover action"
243
- msgstr "Cacher/Afficher le titre au passage de la souris"
244
-
245
- #: easy-fancybox-settings.php:502
246
- #: easy-fancybox-settings.php:820
247
- #: easy-fancybox-settings.php:943
248
- #: easy-fancybox-settings.php:1037
249
- #: easy-fancybox-settings.php:1146
250
- #: easy-fancybox-settings.php:1245
251
- #: easy-fancybox-settings.php:1345
252
- #: easy-fancybox-settings.php:1469
253
- #@ easy-fancybox
254
- msgid "Inside"
255
- msgstr "Intérieur"
256
-
257
- #: easy-fancybox-settings.php:434
258
- #: easy-fancybox-settings.php:461
259
- #: easy-fancybox-settings.php:690
260
- #: easy-fancybox-settings.php:717
261
- #@ easy-fancybox
262
- msgid "Linear"
263
- msgstr "Linéaire"
264
-
265
- #: easy-fancybox-settings.php:115
266
- #@ easy-fancybox
267
- msgid "Link with ID \"fancybox-auto\""
268
- msgstr "Liens avec l'ID \"fancybox-auto\""
269
-
270
- #: easy-fancybox-settings.php:89
271
- #@ default
272
- msgid "Links"
273
- msgstr "Liens"
274
-
275
- #: easy-fancybox-settings.php:100
276
- #: easy-fancybox-settings.php:114
277
- #: easy-fancybox-settings.php:421
278
- #: easy-fancybox-settings.php:448
279
- #: easy-fancybox-settings.php:677
280
- #: easy-fancybox-settings.php:704
281
- #@ default
282
- #@ easy-fancybox
283
- msgid "None"
284
- msgstr "Aucun"
285
-
286
- #: easy-fancybox-class.php:337
287
- #@ easy-fancybox
288
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
289
- msgstr "Note : Chacune des sous-sections additionnelles et des fonctionnalités comme <em>Detection-auto</em>, <em>Transitions Élastique</em> et les <em>effets d'Entrée/Sortie</em> (à l'exception de Bascule) auront un impact supplémentaire sur la vitesse d'affichage du côté de l'utilisateur final. Activez uniquement ces sous-sections et options dont vous avez besoin sur votre site."
290
-
291
- #: easy-fancybox-settings.php:150
292
- #: easy-fancybox-settings.php:228
293
- #@ easy-fancybox
294
- msgid "Opacity"
295
- msgstr "Opacité"
296
-
297
- #: easy-fancybox-settings.php:316
298
- #@ easy-fancybox
299
- msgid "Opening speed"
300
- msgstr "Vitesse d'ouverture"
301
-
302
- #: easy-fancybox-settings.php:501
303
- #: easy-fancybox-settings.php:819
304
- #: easy-fancybox-settings.php:942
305
- #: easy-fancybox-settings.php:1036
306
- #: easy-fancybox-settings.php:1145
307
- #: easy-fancybox-settings.php:1244
308
- #: easy-fancybox-settings.php:1344
309
- #: easy-fancybox-settings.php:1468
310
- #@ easy-fancybox
311
- msgid "Outside"
312
- msgstr "Extérieur"
313
-
314
- #: easy-fancybox-settings.php:130
315
- #: easy-fancybox-settings.php:503
316
- #@ easy-fancybox
317
- msgid "Overlay"
318
- msgstr "Calque de fond"
319
-
320
- #: easy-fancybox-class.php:601
321
- #: easy-fancybox-settings.php:41
322
- #: easy-fancybox-settings.php:743
323
- #@ easy-fancybox
324
- msgid "PDF"
325
- msgstr "PDF"
326
-
327
- #. translators: plugin header field 'Author'
328
- #: easy-fancybox.php:0
329
- #@ easy-fancybox
330
- msgid "RavanH"
331
- msgstr "RavanH"
332
-
333
- #: easy-fancybox-class.php:602
334
- #: easy-fancybox-settings.php:48
335
- #: easy-fancybox-settings.php:868
336
- #@ easy-fancybox
337
- msgid "SWF"
338
- msgstr "SWF"
339
-
340
- #: easy-fancybox-settings.php:193
341
- #@ easy-fancybox
342
- msgid "Show the (X) close button"
343
- msgstr "Afficher le bouton fermer (X)"
344
-
345
- #: easy-fancybox-settings.php:549
346
- #@ easy-fancybox
347
- msgid "Show the gallery navigation arrows"
348
- msgstr "Afficher les flèches de navigation dans la galerie"
349
-
350
- #: easy-fancybox-settings.php:139
351
- #@ easy-fancybox
352
- msgid "Show the overlay around content opened in FancyBox."
353
- msgstr "Afficher le calque de fond autour du contenu ouvert par FancyBox."
354
-
355
- #: easy-fancybox-settings.php:492
356
- #: easy-fancybox-settings.php:810
357
- #: easy-fancybox-settings.php:933
358
- #: easy-fancybox-settings.php:1027
359
- #: easy-fancybox-settings.php:1136
360
- #: easy-fancybox-settings.php:1235
361
- #: easy-fancybox-settings.php:1335
362
- #: easy-fancybox-settings.php:1459
363
- #@ easy-fancybox
364
- msgid "Show title"
365
- msgstr "Afficher le titre"
366
-
367
- #: easy-fancybox-class.php:337
368
- #@ easy-fancybox
369
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
370
- msgstr "Certains réglages comme les options de transition sont indisponibles pour les contenus du type vidéo SWF, les PDF et les iFrame afin d'assurer la compatibilité et la lisibilité par les navigateurs."
371
-
372
- #: easy-fancybox-settings.php:435
373
- #: easy-fancybox-settings.php:462
374
- #: easy-fancybox-settings.php:691
375
- #: easy-fancybox-settings.php:718
376
- #@ easy-fancybox
377
- msgid "Swing"
378
- msgstr "Bascule"
379
-
380
- #: easy-fancybox-settings.php:496
381
- #: easy-fancybox-settings.php:814
382
- #: easy-fancybox-settings.php:937
383
- #: easy-fancybox-settings.php:1031
384
- #: easy-fancybox-settings.php:1140
385
- #: easy-fancybox-settings.php:1239
386
- #: easy-fancybox-settings.php:1339
387
- #: easy-fancybox-settings.php:1463
388
- #@ easy-fancybox
389
- msgid "Title Position"
390
- msgstr "Position du titre"
391
-
392
- #: easy-fancybox-settings.php:1396
393
- #@ easy-fancybox
394
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
395
- msgstr "Pour qu'un site web ou que les documents HTML s'ouvrent avec un calque de fond, utilisez la classe \"fancybox-iframe\" pour leurs liens."
396
-
397
- #: easy-fancybox-settings.php:417
398
- #: easy-fancybox-settings.php:673
399
- #@ easy-fancybox
400
- msgid "Transition In"
401
- msgstr "Transition d'entrée"
402
-
403
- #: easy-fancybox-settings.php:444
404
- #: easy-fancybox-settings.php:700
405
- #@ easy-fancybox
406
- msgid "Transition Out"
407
- msgstr "Transition de sortie"
408
-
409
- #: easy-fancybox-class.php:383
410
- #@ easy-fancybox
411
- msgid "Unchecked"
412
- msgstr "Décoché"
413
-
414
- #: easy-fancybox-settings.php:158
415
- #@ easy-fancybox
416
- msgid "Value between 0 and 1. "
417
- msgstr "Valeur entre 0 et 1."
418
-
419
- #: easy-fancybox-class.php:604
420
- #: easy-fancybox-settings.php:69
421
- #: easy-fancybox-settings.php:1165
422
- #@ easy-fancybox
423
- msgid "Vimeo"
424
- msgstr "Vimeo"
425
-
426
- #: easy-fancybox-settings.php:542
427
- #@ easy-fancybox
428
- msgid "When disabled, you can use the rel attribute to manually group image links together."
429
- msgstr "Quand la galerie est désactivée, vous pouvez utiliser l'attribut rel pour regrouper manuellement les liens d'images ensemble."
430
-
431
- #: easy-fancybox-settings.php:258
432
- #: easy-fancybox-settings.php:771
433
- #: easy-fancybox-settings.php:896
434
- #: easy-fancybox-settings.php:990
435
- #: easy-fancybox-settings.php:1095
436
- #: easy-fancybox-settings.php:1194
437
- #: easy-fancybox-settings.php:1294
438
- #: easy-fancybox-settings.php:1424
439
- #@ default
440
- msgid "Width"
441
- msgstr "Largeur"
442
-
443
- #: easy-fancybox-settings.php:180
444
- #@ easy-fancybox
445
- msgid "Window"
446
- msgstr "Fenêtre"
447
-
448
- #: easy-fancybox-settings.php:102
449
- #@ easy-fancybox
450
- msgid "Without thumbnail image"
451
- msgstr "Image sans miniature"
452
-
453
- #: easy-fancybox-class.php:603
454
- #: easy-fancybox-settings.php:62
455
- #: easy-fancybox-settings.php:1057
456
- #@ easy-fancybox
457
- msgid "YouTube"
458
- msgstr "YouTube"
459
-
460
- #: easy-fancybox-class.php:606
461
- #: easy-fancybox-settings.php:83
462
- #: easy-fancybox-settings.php:1391
463
- #@ easy-fancybox
464
- msgid "iFrames"
465
- msgstr "iframes"
466
-
467
- #: easy-fancybox-class.php:337
468
- #@ easy-fancybox
469
- msgid "Donate to keep the Easy FancyBox plugin development going!"
470
- msgstr "Faites une donation pour permettre au développement de l'extension Easy FancyBox de continuer !"
471
-
472
- #: easy-fancybox-class.php:337
473
- #, php-format
474
- #@ easy-fancybox
475
- msgid "The options in this section are provided by the plugin %s and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by %s."
476
- msgstr "Les options de cette section sont générées par l'extension %s et déterminent l'apparence du calque de fond <strong>Lightbox de Média</strong> et du comportement contrôlé par %s."
477
-
478
- #: easy-fancybox-class.php:430
479
- #@ default
480
- msgid "Settings"
481
- msgstr ""
482
-
483
- #: easy-fancybox-class.php:588
484
- #@ easy-fancybox
485
- msgid "Easy FancyBox Settings"
486
- msgstr "Réglages Easy FancyBox"
487
-
488
- #: easy-fancybox-class.php:597
489
- #@ easy-fancybox
490
- msgid "Sections"
491
- msgstr "Sections"
492
-
493
- #: easy-fancybox-class.php:599
494
- #: easy-fancybox-settings.php:27
495
- #: easy-fancybox-settings.php:370
496
- #@ easy-fancybox
497
- msgid "Images"
498
- msgstr "Images"
499
-
500
- #: easy-fancybox-class.php:600
501
- #: easy-fancybox-settings.php:34
502
- #: easy-fancybox-settings.php:633
503
- #@ easy-fancybox
504
- msgid "Inline content"
505
- msgstr "Contenu en ligne"
506
-
507
- #: easy-fancybox-class.php:634
508
- #@ easy-fancybox
509
- msgid "Support"
510
- msgstr "Aide"
511
-
512
- #: easy-fancybox-class.php:635
513
- #@ skype-online-status
514
- msgid "Resources"
515
- msgstr ""
516
-
517
- #: easy-fancybox-class.php:636
518
- #@ default
519
- msgid "Discussion"
520
- msgstr ""
521
-
522
- #: easy-fancybox-class.php:637
523
- #@ skype-online-status
524
- msgid "Credits"
525
- msgstr ""
526
-
527
- #: easy-fancybox-settings.php:14
528
- #@ easy-fancybox
529
- msgid "Media"
530
- msgstr "Média"
531
-
532
- #: easy-fancybox-settings.php:55
533
- #: easy-fancybox-settings.php:962
534
- #@ easy-fancybox
535
- msgid "SVG"
536
- msgstr "SVG"
537
-
538
- #: easy-fancybox-settings.php:86
539
- #@ easy-fancybox
540
- msgid "For advanced options and support, please get the Easy FancyBox - Pro extension."
541
- msgstr "Pour les options avancées et l'aide, veuillez acquérir l'extension Easy FancyBox - Pro."
542
-
543
- #: easy-fancybox-settings.php:109
544
- #@ easy-fancybox
545
- msgid "Open on page load"
546
- msgstr "Ouvrir au chargement de la page"
547
-
548
- #: easy-fancybox-settings.php:118
549
- #: easy-fancybox-settings.php:409
550
- #: easy-fancybox-settings.php:440
551
- #: easy-fancybox-settings.php:467
552
- #: easy-fancybox-settings.php:542
553
- #: easy-fancybox-settings.php:696
554
- #: easy-fancybox-settings.php:723
555
- #@ easy-fancybox
556
- msgid "More options &raquo;"
557
- msgstr "Plus d'options »"
558
-
559
- #: easy-fancybox-settings.php:125
560
- #@ easy-fancybox
561
- msgid "Include the Metadata jQuery extension script to allow passing custom parameters via link class."
562
- msgstr "Intégrer l'extension de script de métadonnées jQuery afin de permettre les paramètres personnalisés via une classe de lien."
563
-
564
- #: easy-fancybox-settings.php:146
565
- #@ easy-fancybox
566
- msgid "Close FancyBox when overlay is clicked."
567
- msgstr "Fermer la FancyBox quand le calque de fond est cliqué."
568
-
569
- #: easy-fancybox-settings.php:175
570
- #@ easy-fancybox
571
- msgid "Spotlight effect"
572
- msgstr "Effet projecteur"
573
-
574
- #: easy-fancybox-settings.php:186
575
- #: easy-fancybox-settings.php:485
576
- #@ easy-fancybox
577
- msgid "Appearance"
578
- msgstr "Apparence"
579
-
580
- #: easy-fancybox-settings.php:198
581
- #@ easy-fancybox
582
- msgid "Background color"
583
- msgstr "Couleur de fond"
584
-
585
- #: easy-fancybox-settings.php:208
586
- #@ easy-fancybox
587
- msgid "Border color"
588
- msgstr "Couleur de bordure"
589
-
590
- #: easy-fancybox-settings.php:218
591
- #@ easy-fancybox
592
- msgid "Text color"
593
- msgstr "Couleur du texte"
594
-
595
- #: easy-fancybox-settings.php:236
596
- #: easy-fancybox-settings.php:249
597
- #: easy-fancybox-settings.php:524
598
- #: easy-fancybox-settings.php:613
599
- #@ easy-fancybox
600
- msgid "Make available &raquo;"
601
- msgstr "Rendre utilisable »"
602
-
603
- #: easy-fancybox-settings.php:241
604
- #@ easy-fancybox
605
- msgid "Border radius"
606
- msgstr "Radius de la bordure"
607
-
608
- #: easy-fancybox-settings.php:249
609
- #@ easy-fancybox
610
- msgid "Set a border radius to create rounded corners. Higher is rounder."
611
- msgstr "Configurez le radius de la bordure pour créer un coin arrondi. Une valeur élevée arrondit les coins."
612
-
613
- #: easy-fancybox-settings.php:254
614
- #@ easy-fancybox
615
- msgid "Dimensions"
616
- msgstr "Dimensions"
617
-
618
- #: easy-fancybox-settings.php:286
619
- #@ easy-fancybox
620
- msgid "If content size is not set or cannot be determined automatically, these default dimensions will be used."
621
- msgstr "Si la taille du contenu n'est pas configurée ou ne peut pas être déterminée automatiquement, les dimensions par défaut seront utilisée."
622
-
623
- #: easy-fancybox-settings.php:305
624
- #@ easy-fancybox
625
- msgid "Esc key stroke closes FancyBox"
626
- msgstr "La touche Echap ferme la FancyBox"
627
-
628
- #: easy-fancybox-settings.php:312
629
- #@ easy-fancybox
630
- msgid "Scale large content down to fit in the browser viewport."
631
- msgstr "Réduire la largeur des grands contenus pour tenir dans la fenêtre navigateur."
632
-
633
- #: easy-fancybox-settings.php:375
634
- #@ easy-fancybox
635
- msgid "To make images open in an overlay, add their extension to the Autodetect field or use the class \"fancybox\" for its link. Clear field to switch off all autodetection."
636
- msgstr "Pour ouvrir les images avec un calque de fond, ajouter les extensions dans le champ auto-détection ou utilisez la classe \"fancybox\" pour leurs liens. Effacer le champ pour supprimer toute détection automatique."
637
-
638
- #: easy-fancybox-settings.php:390
639
- #: easy-fancybox-settings.php:756
640
- #: easy-fancybox-settings.php:881
641
- #: easy-fancybox-settings.php:975
642
- #: easy-fancybox-settings.php:1071
643
- #: easy-fancybox-settings.php:1179
644
- #: easy-fancybox-settings.php:1279
645
- #@ easy-fancybox
646
- msgid "Autodetect"
647
- msgstr "Auto-détection"
648
-
649
- #: easy-fancybox-settings.php:397
650
- #@ easy-fancybox
651
- msgid "Example:"
652
- msgstr "Exemple :"
653
-
654
- #: easy-fancybox-settings.php:436
655
- #: easy-fancybox-settings.php:463
656
- #: easy-fancybox-settings.php:692
657
- #: easy-fancybox-settings.php:719
658
- #@ easy-fancybox
659
- msgid "easeInBack"
660
- msgstr "easeInBack"
661
-
662
- #: easy-fancybox-settings.php:437
663
- #: easy-fancybox-settings.php:464
664
- #: easy-fancybox-settings.php:693
665
- #: easy-fancybox-settings.php:720
666
- #@ easy-fancybox
667
- msgid "easeOutBack"
668
- msgstr "easeOutBack"
669
-
670
- #: easy-fancybox-settings.php:467
671
- #: easy-fancybox-settings.php:542
672
- #: easy-fancybox-settings.php:723
673
- #@ easy-fancybox
674
- msgid "Note:"
675
- msgstr "Note :"
676
-
677
- #: easy-fancybox-settings.php:474
678
- #: easy-fancybox-settings.php:730
679
- #@ easy-fancybox
680
- msgid "Transparency fade during elastic transition. CAUTION: Use only when at least Transition In is set to Elastic!"
681
- msgstr "Transparence du fondu durant la transition élastique. ATTENTION: Utilisez seulement quandla transition est au moins configurée sur Élastique !"
682
-
683
- #: easy-fancybox-settings.php:481
684
- #: easy-fancybox-settings.php:737
685
- #@ easy-fancybox
686
- msgid "Close FancyBox when content is clicked"
687
- msgstr "Fermer la FancyBox quand le contenu est cliqué"
688
-
689
- #: easy-fancybox-settings.php:528
690
- #@ easy-fancybox
691
- msgid "Gallery"
692
- msgstr "Galerie"
693
-
694
- #: easy-fancybox-settings.php:532
695
- #@ easy-fancybox
696
- msgid "Autogallery"
697
- msgstr "Galerie automatique"
698
-
699
- #: easy-fancybox-settings.php:538
700
- #@ easy-fancybox
701
- msgid "WordPress galleries only"
702
- msgstr "Galerie WordPress seulement"
703
-
704
- #: easy-fancybox-settings.php:556
705
- #@ easy-fancybox
706
- msgid "Arrow key strokes browse the gallery"
707
- msgstr "Les touches de direction permettent de naviguer dans la galerie"
708
-
709
- #: easy-fancybox-settings.php:563
710
- #@ easy-fancybox
711
- msgid "Include the Mousewheel jQuery extension script to allow gallery browsing by mousewheel action."
712
- msgstr "Intégrer l'extension de script pour roulette de souris jQuery afin de permettre de parcourir la galerie lors de l'action sur la roulette de la souris."
713
-
714
- #: easy-fancybox-settings.php:570
715
- #@ easy-fancybox
716
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
717
- msgstr "Rendre la galerie cyclique, tout-en permettant d'avancer ou reculer."
718
-
719
- #: easy-fancybox-settings.php:574
720
- #@ easy-fancybox
721
- msgid "Change speed"
722
- msgstr "Vitesse de changement"
723
-
724
- #: easy-fancybox-settings.php:602
725
- #@ easy-fancybox
726
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
727
- msgstr "Ceci s'applique si <em>Appliquer à</em> est réglé sur <em>Limité aux sections</em> et/ou <em>Galerie automatique</em> est réglée sur <em>Galerie par section</em>. Adaptez ceci conformément à votre thème."
728
-
729
- #: easy-fancybox-settings.php:602
730
- #@ easy-fancybox
731
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you only want to group images in a WordPress gallery together, use \"div.gallery\". If you want to include images in a sidebar with ID primary, add \", #primary\"."
732
- msgstr "Exemples : Si votre thème place le contenu des articles dans un div avec une classe d'articles, changez cette valeur pour \"div.post\". Si vous voulez seulement grouper des images ensemble dans une galerie WordPress, utilisez \"div.gallery\". Si vous voulez inclure une image dans la barre latérale avec un ID primaire, ajoutez \", #primary\"."
733
-
734
- #: easy-fancybox-settings.php:602
735
- #@ easy-fancybox
736
- msgid "Hide/show title on mouse hover action works best with Overlay title position."
737
- msgstr "Afficher/masquer le titre au passage de la souris fonctionne mieux avec la position du titre du calque de fond."
738
-
739
- #: easy-fancybox-settings.php:602
740
- #@ easy-fancybox
741
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
742
- msgstr "Le diaporama utilise une pause fixe par image de 6, 8 ou 12 secondes."
743
-
744
- #: easy-fancybox-settings.php:602
745
- #@ easy-fancybox
746
- msgid "(6 seconds)"
747
- msgstr "(6 secondes)"
748
-
749
- #: easy-fancybox-settings.php:602
750
- #@ easy-fancybox
751
- msgid "(8 seconds)"
752
- msgstr "(8 secondes)"
753
-
754
- #: easy-fancybox-settings.php:602
755
- #@ easy-fancybox
756
- msgid "(12 seconds)"
757
- msgstr "(12 secondes)"
758
-
759
- #: easy-fancybox-settings.php:610
760
- #@ easy-fancybox
761
- msgid "Slideshow"
762
- msgstr "Diaporama"
763
-
764
- #: easy-fancybox-settings.php:638
765
- #@ easy-fancybox
766
- msgid "To make inline content open in an overlay, wrap that content in a div with a unique ID, create a link with target \"#uniqueID\" and give it a class \"fancybox-inline\" attribute."
767
- msgstr "Pour permettre au contenu en ligne d'ouvrir avec un calque de fond, placez ce contenu dans un div avec un ID unique, créez un lien avec la cible \"#uniqueID\" et donnez lui un attribut de classe \"fancybox-inline\"."
768
-
769
- #: easy-fancybox-settings.php:656
770
- #@ easy-fancybox
771
- msgid "Try to adjust size to inline/html content. If unchecked or size cannot be determined, the default dimensions will be used."
772
- msgstr "Essayez d'ajuster la taille du contenu HTML/en ligne. Si la taille n'est pas testée ou ne peut pas être déterminée, les dimensions par défaut seront utilisées."
773
-
774
- #: easy-fancybox-settings.php:660
775
- #: easy-fancybox-settings.php:1411
776
- #@ easy-fancybox
777
- msgid "Scrolling"
778
- msgstr "Défilement"
779
-
780
- #: easy-fancybox-settings.php:664
781
- #: easy-fancybox-settings.php:1415
782
- #@ easy-fancybox
783
- msgid "Auto"
784
- msgstr "Auto"
785
-
786
- #: easy-fancybox-settings.php:665
787
- #: easy-fancybox-settings.php:1416
788
- #@ easy-fancybox
789
- msgid "Always"
790
- msgstr "Toujours"
791
-
792
- #: easy-fancybox-settings.php:666
793
- #: easy-fancybox-settings.php:1417
794
- #@ easy-fancybox
795
- msgid "Never"
796
- msgstr "Jamais"
797
-
798
- #: easy-fancybox-settings.php:669
799
- #: easy-fancybox-settings.php:1420
800
- #@ easy-fancybox
801
- msgid "Define scrolling and scrollbar visibility."
802
- msgstr "Définir la visibilité du défilement et de la barre de défilement"
803
-
804
- #: easy-fancybox-settings.php:748
805
- #@ easy-fancybox
806
- msgid "To make any PDF document file open in an overlay, switch on Autodetect or use the class \"fancybox-pdf\" for its link."
807
- msgstr "Pour permettre à tous les fichiers PDF d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-pdf\"."
808
-
809
- #: easy-fancybox-settings.php:873
810
- #@ easy-fancybox
811
- msgid "To make any Flash (.swf) file open in an overlay, switch on Autodetect or use the class \"fancybox-swf\" for its link."
812
- msgstr "Pour permettre à tous les fichiers Flash (.swf) d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-swf\"."
813
-
814
- #: easy-fancybox-settings.php:967
815
- #@ easy-fancybox
816
- msgid "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use the class \"fancybox-svg\" for its link."
817
- msgstr "Pour permettre à tous les fichiers SVG (.svg) d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-svg\"."
818
-
819
- #: easy-fancybox-settings.php:1062
820
- #@ easy-fancybox
821
- msgid "To make any YouTube movie open in an overlay, switch on Autodetect or use the class \"fancybox-youtube\" for its link."
822
- msgstr "Pour permettre à toutes les videos YouTube d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-youtube\"."
823
-
824
- #: easy-fancybox-settings.php:1080
825
- #@ easy-fancybox
826
- msgid "Autodetect Short links"
827
- msgstr "Détection automatique des liens cours"
828
-
829
- #: easy-fancybox-settings.php:1170
830
- #@ easy-fancybox
831
- msgid "To make any Vimeo movie open in an overlay, switch on Autodetect or use the class \"fancybox-vimeo\" for its link."
832
- msgstr "Pour permettre à toutes les vidéos Vimeo d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-vimeo\"."
833
-
834
- #: easy-fancybox-settings.php:1270
835
- #@ easy-fancybox
836
- msgid "To make any Dailymotion movie open in an overlay, switch on Autodetect or use the class \"fancybox-dailymotion\" for its link."
837
- msgstr "Pour permettre à toutes les vidéos Dailymotion d'ouvrir dans un calque de fond, réglez sur auto détection ou ajoutez au lien la classe \"fancybox-dailymotion\"."
838
-
839
- #. translators: plugin header field 'PluginURI'
840
- #: easy-fancybox.php:0
841
- #@ easy-fancybox
842
- msgid "http://status301.net/wordpress-plugins/easy-fancybox/"
843
- msgstr ""
844
-
845
- #. translators: plugin header field 'AuthorURI'
846
- #: easy-fancybox.php:0
847
- #@ easy-fancybox
848
- msgid "http://status301.net/"
849
- msgstr ""
850
-
851
- #. translators: plugin header field 'Version'
852
- #: easy-fancybox.php:0
853
- #@ easy-fancybox
854
- msgid "1.5.5"
855
- msgstr ""
856
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-hi_IN.po DELETED
@@ -1,525 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
7
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-05-23 13:36+0530\n"
12
- "Last-Translator: shivangi <shivangi@outshinesolutions.com>\n"
13
- "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
14
- "X-Poedit-Language: Hindi\n"
15
- "X-Poedit-Country: INDIA\n"
16
-
17
- #: easy-fancybox.php:266
18
- msgid "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
19
- msgstr "पेपैल के साथ आसान FancyBox प्लगइन विकास के लिए दान - यह तेजी से, स्वतंत्र और सुरक्षित है!"
20
-
21
- #: easy-fancybox.php:266
22
- msgid "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
23
- msgstr "sइस अनुभाग में विकल्प प्लगइन <strong> <a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\"> आसान FancyBox </ a> </ strong> द्वारा प्रदान की जाती हैंऔर <strong> मीडिया Lightbox निर्धारित </strong> उपरिशायी उपस्थिति और व्यवहार <strong> <a href=\"http://fancybox.net/\"> FancyBox </a> </strong> के द्वारा नियंत्रित है"
24
-
25
- #: easy-fancybox.php:266
26
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
27
- msgstr "पहले प्रत्येक उप - धारा है कि आप की जरूरत है सक्षम. तो बचाने के लिए और वापस आने के लिए अपनी विशिष्ट सेटिंग्स समायोजित."
28
-
29
- #: easy-fancybox.php:266
30
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
31
- msgstr "नोट: प्रत्येक अतिरिक्त उप - धारा और ऑटो - पता लगाने <em> </em>, <em> लचीला संक्रमण जैसी सुविधाओं </em> और सभी <em> के आसान प्रभाव </em> (घुमाओ छोड़कर) कुछ अतिरिक्त असर पड़ेगाक्लाइंट - साइड पृष्ठ गति पर. केवल उन उप वर्गों और विकल्प है कि आप अपनी साइट पर वास्तव में जरूरत है सक्रिय करें"
32
-
33
- #: easy-fancybox.php:266
34
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
35
- msgstr "संक्रमण विकल्प की तरह कुछ सेटिंग SWF वीडियो, पीडीएफ और आइफ्रेम सामग्री ब्राउज़र संगतता और पठनीयता को सुनिश्चित करने के लिए उपलब्ध नहीं हैं."
36
-
37
- #: easy-fancybox.php:308
38
- msgid "Checked"
39
- msgstr "जांचा हुआ"
40
-
41
- #: easy-fancybox.php:310
42
- msgid "Unchecked"
43
- msgstr "अनियंत्रित"
44
-
45
- #: easy-fancybox.php:362
46
- msgid "FancyBox"
47
- msgstr "FancyBox"
48
-
49
- #: easy-fancybox-settings.php:6
50
- msgid "Global settings"
51
- msgstr "ग्लोबल सेटिंग्स"
52
-
53
- #: easy-fancybox-settings.php:15
54
- msgid "Enable FancyBox for"
55
- msgstr "FancyBox के लिए सक्रिय करें"
56
-
57
- #: easy-fancybox-settings.php:24
58
- #: easy-fancybox-settings.php:316
59
- msgid "Images & Inline content"
60
- msgstr "छवियाँ और इनलाइन सामग्री"
61
-
62
- #: easy-fancybox-settings.php:31
63
- #: easy-fancybox-settings.php:489
64
- msgid "PDF"
65
- msgstr "पीडीएफ"
66
-
67
- #: easy-fancybox-settings.php:38
68
- #: easy-fancybox-settings.php:606
69
- msgid "SWF"
70
- msgstr "SWF"
71
-
72
- #: easy-fancybox-settings.php:45
73
- #: easy-fancybox-settings.php:697
74
- msgid "YouTube"
75
- msgstr "यूट्यूब"
76
-
77
- #: easy-fancybox-settings.php:52
78
- #: easy-fancybox-settings.php:800
79
- msgid "Vimeo"
80
- msgstr "Vimeo"
81
-
82
- #: easy-fancybox-settings.php:59
83
- #: easy-fancybox-settings.php:895
84
- msgid "Dailymotion"
85
- msgstr "Dailymotion"
86
-
87
- #: easy-fancybox-settings.php:66
88
- #: easy-fancybox-settings.php:1016
89
- msgid "iFrames"
90
- msgstr "iFrames"
91
-
92
- #: easy-fancybox-settings.php:71
93
- msgid "Links"
94
- msgstr "लिंक"
95
-
96
- #: easy-fancybox-settings.php:81
97
- msgid "Exclude"
98
- msgstr "निकालना"
99
-
100
- #: easy-fancybox-settings.php:86
101
- #: easy-fancybox-settings.php:100
102
- #: easy-fancybox-settings.php:295
103
- #: easy-fancybox-settings.php:383
104
- #: easy-fancybox-settings.php:411
105
- msgid "None"
106
- msgstr "कोई नहीं"
107
-
108
- #: easy-fancybox-settings.php:87
109
- msgid "Empty (hidden) links"
110
- msgstr "खाली लिंक (छिपा हुआ)"
111
-
112
- #: easy-fancybox-settings.php:88
113
- msgid "Without thumbnail image"
114
- msgstr "थंबनेल छवि के बिना"
115
-
116
- #: easy-fancybox-settings.php:95
117
- msgid "Auto-open"
118
- msgstr "ऑटो खुला"
119
-
120
- #: easy-fancybox-settings.php:101
121
- msgid "Link with ID \"fancybox-auto\""
122
- msgstr "आईडी के साथ लिंक \"fancybox ऑटो \""
123
-
124
- #: easy-fancybox-settings.php:102
125
- msgid "First Image link"
126
- msgstr "पहली छवि लिंक"
127
-
128
- #: easy-fancybox-settings.php:103
129
- msgid "First PDF link"
130
- msgstr "पहले पीडीएफ लिंक"
131
-
132
- #: easy-fancybox-settings.php:104
133
- msgid "First SWF link"
134
- msgstr "पहले SWF लिंक"
135
-
136
- #: easy-fancybox-settings.php:105
137
- msgid "First YouTube link "
138
- msgstr "पहले यूट्यूब लिंक"
139
-
140
- #: easy-fancybox-settings.php:106
141
- msgid "First Vimeo link "
142
- msgstr "पहले Vimeo लिंक"
143
-
144
- #: easy-fancybox-settings.php:107
145
- msgid "First Dailymotion link "
146
- msgstr "पहले Dailymotion लिंक"
147
-
148
- #: easy-fancybox-settings.php:108
149
- msgid "First iFrame link"
150
- msgstr "पहले आइफ्रेम लिंक"
151
-
152
- #: easy-fancybox-settings.php:109
153
- msgid "First of any link"
154
- msgstr "किसी भी लिंक का पहले"
155
-
156
- #: easy-fancybox-settings.php:117
157
- #: easy-fancybox-settings.php:452
158
- msgid "Overlay"
159
- msgstr "उपरिशायी"
160
-
161
- #: easy-fancybox-settings.php:125
162
- msgid "Show the overlay around content opened in FancyBox."
163
- msgstr "FancyBox में खोला सामग्री के चारों ओर ओवरले दिखाएँ."
164
-
165
- #: easy-fancybox-settings.php:132
166
- msgid "Spotlight effect."
167
- msgstr "प्रभाव दिखता है."
168
-
169
- #: easy-fancybox-settings.php:136
170
- #: easy-fancybox-settings.php:227
171
- msgid "Opacity"
172
- msgstr "अस्पष्टता"
173
-
174
- #: easy-fancybox-settings.php:141
175
- msgid "Value between 0 and 1. "
176
- msgstr "0 और 1 के बीच का मूल्य है."
177
-
178
- #: easy-fancybox-settings.php:141
179
- #: easy-fancybox-settings.php:150
180
- #: easy-fancybox-settings.php:188
181
- #: easy-fancybox-settings.php:232
182
- #: easy-fancybox-settings.php:283
183
- #: easy-fancybox-settings.php:332
184
- #: easy-fancybox-settings.php:345
185
- #: easy-fancybox-settings.php:369
186
- msgid "Default:"
187
- msgstr "डिफ़ॉल्ट"
188
-
189
- #: easy-fancybox-settings.php:145
190
- #: easy-fancybox-settings.php:192
191
- msgid "Color"
192
- msgstr "रंग"
193
-
194
- #: easy-fancybox-settings.php:150
195
- msgid "Enter an HTML color value."
196
- msgstr "किसी HTML रंग का मान दर्ज करें."
197
-
198
- #: easy-fancybox-settings.php:156
199
- msgid "Window"
200
- msgstr "खिड़की"
201
-
202
- #: easy-fancybox-settings.php:162
203
- msgid "Size"
204
- msgstr "आकार"
205
-
206
- #: easy-fancybox-settings.php:166
207
- #: easy-fancybox-settings.php:517
208
- #: easy-fancybox-settings.php:634
209
- #: easy-fancybox-settings.php:735
210
- #: easy-fancybox-settings.php:829
211
- #: easy-fancybox-settings.php:924
212
- #: easy-fancybox-settings.php:1036
213
- msgid "Width"
214
- msgstr "चौड़ाई"
215
-
216
- #: easy-fancybox-settings.php:175
217
- #: easy-fancybox-settings.php:526
218
- #: easy-fancybox-settings.php:644
219
- #: easy-fancybox-settings.php:744
220
- #: easy-fancybox-settings.php:838
221
- #: easy-fancybox-settings.php:933
222
- #: easy-fancybox-settings.php:1045
223
- msgid "Height"
224
- msgstr "ऊंचाई"
225
-
226
- #: easy-fancybox-settings.php:183
227
- #: easy-fancybox-settings.php:207
228
- #: easy-fancybox-settings.php:534
229
- #: easy-fancybox-settings.php:653
230
- #: easy-fancybox-settings.php:752
231
- #: easy-fancybox-settings.php:846
232
- #: easy-fancybox-settings.php:941
233
- #: easy-fancybox-settings.php:1053
234
- msgid "Border"
235
- msgstr "सीमा"
236
-
237
- #: easy-fancybox-settings.php:197
238
- msgid "Background"
239
- msgstr "पृष्ठभूमि"
240
-
241
- #: easy-fancybox-settings.php:217
242
- msgid "Text"
243
- msgstr "पाठ"
244
-
245
- #: easy-fancybox-settings.php:236
246
- msgid "Behavior"
247
- msgstr "व्यवहार"
248
-
249
- #: easy-fancybox-settings.php:242
250
- msgid "Center while scrolling"
251
- msgstr "केंद्र जबकि स्क्रॉल"
252
-
253
- #: easy-fancybox-settings.php:248
254
- msgid "Show the (X) close button"
255
- msgstr "करीब (X) बटन दिखाएँ"
256
-
257
- #: easy-fancybox-settings.php:254
258
- msgid "Show the gallery navigation arrows"
259
- msgstr "गैलरी नेविगेशन तीर दिखाएँ"
260
-
261
- #: easy-fancybox-settings.php:262
262
- msgid "Opening speed"
263
- msgstr "गति खोलना"
264
-
265
- #: easy-fancybox-settings.php:270
266
- msgid "Closing speed"
267
- msgstr "गति बंद"
268
-
269
- #: easy-fancybox-settings.php:278
270
- msgid "Fade speed"
271
- msgstr "गति फीका"
272
-
273
- #: easy-fancybox-settings.php:283
274
- msgid "Duration in milliseconds. Higher is slower."
275
- msgstr "मिलीसेकेंड में अवधि. उच्च धीमी है."
276
-
277
- #: easy-fancybox-settings.php:291
278
- msgid "Advanced"
279
- msgstr "उन्नत"
280
-
281
- #: easy-fancybox-settings.php:296
282
- msgid "Hide/show title on mouse hover action"
283
- msgstr "छुपाएँ / माउस हॉवर Actio पर शीर्षक दिखा"
284
-
285
- #: easy-fancybox-settings.php:297
286
- msgid "Gallery Auto-rotation"
287
- msgstr "ऑटो - रोटेशन गैलरी"
288
-
289
- #: easy-fancybox-settings.php:304
290
- msgid "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
291
- msgstr "नोट: छुपाएं / माउस हॉवर कार्रवाई पर शीर्षक दिखा ओवरले शीर्षक स्थिति के साथ सबसे अच्छा काम करता है. स्वत - रोटेशन एक निश्चित 5 छवि के प्रति दूसरे को थामने का उपयोग करता है."
292
-
293
- #: easy-fancybox-settings.php:321
294
- msgid "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
295
- msgstr "एक ओवरले में छवियों को खुला बनाने, क्षेत्र स्वत: पता लगाने के लिए उनके विस्तार जोड़ने या वर्ग अपने लिंक के लिए \"fancybox \" का उपयोग करें. स्पष्ट क्षेत्र से स्वत: सक्षम करने स्विच करने के लिए."
296
-
297
- #: easy-fancybox-settings.php:325
298
- #: easy-fancybox-settings.php:502
299
- #: easy-fancybox-settings.php:619
300
- #: easy-fancybox-settings.php:711
301
- #: easy-fancybox-settings.php:814
302
- #: easy-fancybox-settings.php:909
303
- msgid "Auto-detect"
304
- msgstr "स्वत पता लगाने"
305
-
306
- #: easy-fancybox-settings.php:336
307
- msgid "Apply to"
308
- msgstr "इस पर लागू करें"
309
-
310
- #: easy-fancybox-settings.php:341
311
- msgid "All image links"
312
- msgstr "सभी छवि लिंक"
313
-
314
- #: easy-fancybox-settings.php:342
315
- msgid "Links inside Section(s) only (below)"
316
- msgstr "धारा के अंदर लिंक (ओं) केवल (नीचे)"
317
-
318
- #: easy-fancybox-settings.php:349
319
- msgid "Auto-gallery"
320
- msgstr "ऑटो - गैलरी"
321
-
322
- #: easy-fancybox-settings.php:354
323
- msgid "Disabled"
324
- msgstr "विकलांग"
325
-
326
- #: easy-fancybox-settings.php:355
327
- msgid "Galleries per Section (below)"
328
- msgstr "धारा प्रति गैलरी (नीचे)"
329
-
330
- #: easy-fancybox-settings.php:356
331
- msgid "All in one gallery"
332
- msgstr "एक गैलरी में"
333
-
334
- #: easy-fancybox-settings.php:359
335
- msgid "When disabled, you can use the rel attribute to manually group image links together."
336
- msgstr "जब निष्क्रिय है, तो आप मैन्युअल रूप से समूह छवि एक साथ लिंक करने के लिए रिलायंस एनर्जी विशेषता का उपयोग कर सकते हैं."
337
-
338
- #: easy-fancybox-settings.php:363
339
- msgid "Section(s)"
340
- msgstr "धारा ()"
341
-
342
- #: easy-fancybox-settings.php:369
343
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
344
- msgstr "इस पर लागू होता है जब <em> </ em> धारा लिमिटेड <em> के लिए सेट कर दिया जाता है के लिए लागू करें </em> और / या <em> स्वत गैलरी </em> धारा के प्रति <em> गैलरी के लिए सेट कर दिया जाता है </em>. यह अनुकूलित करने के लिए अपने विषय के साथ अनुरूप."
345
-
346
- #: easy-fancybox-settings.php:369
347
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
348
- msgstr "उदाहरण: यदि आपका विषय वर्ग पोस्ट के साथ एक div में पोस्ट सामग्री wraps, \"div.post \" इस मान को बदल. यदि आप प्राथमिक आईडी के साथ एक साइडबार में चित्र शामिल करना चाहते हैं, \", प्राथमिक\", div#primary\" जोड़ने या \"aside#primary\"विषयों के लिए अलग # प्राथमिक \"."
349
-
350
- #: easy-fancybox-settings.php:377
351
- msgid "Transition In"
352
- msgstr "संक्रमण में "
353
-
354
- #: easy-fancybox-settings.php:381
355
- #: easy-fancybox-settings.php:409
356
- msgid "Fade"
357
- msgstr "फीका करना"
358
-
359
- #: easy-fancybox-settings.php:382
360
- #: easy-fancybox-settings.php:410
361
- msgid "Elastic"
362
- msgstr "लोचदार"
363
-
364
- #: easy-fancybox-settings.php:390
365
- msgid "Easing In"
366
- msgstr " आसान में"
367
-
368
- #: easy-fancybox-settings.php:394
369
- #: easy-fancybox-settings.php:422
370
- msgid "Linear"
371
- msgstr "रैखिक"
372
-
373
- #: easy-fancybox-settings.php:395
374
- #: easy-fancybox-settings.php:423
375
- msgid "Swing"
376
- msgstr "स्विंग"
377
-
378
- #: easy-fancybox-settings.php:396
379
- #: easy-fancybox-settings.php:424
380
- msgid "Back"
381
- msgstr "वापस"
382
-
383
- #: easy-fancybox-settings.php:397
384
- #: easy-fancybox-settings.php:425
385
- msgid "Quad"
386
- msgstr "ट्रैक्टर"
387
-
388
- #: easy-fancybox-settings.php:398
389
- #: easy-fancybox-settings.php:426
390
- msgid "Expo"
391
- msgstr "एक्सपो"
392
-
393
- #: easy-fancybox-settings.php:405
394
- msgid "Transition Out"
395
- msgstr "बाहर संक्रमण"
396
-
397
- #: easy-fancybox-settings.php:418
398
- msgid "Easing Out"
399
- msgstr "बाहर आसान"
400
-
401
- #: easy-fancybox-settings.php:429
402
- msgid "Easing effects only apply when Transition is set to Elastic. "
403
- msgstr "आसान प्रभाव ही लागू होते हैं जब संक्रमण लचीला करने के लिए सेट कर दिया जाता है."
404
-
405
- #: easy-fancybox-settings.php:435
406
- msgid "Transparency fade during elastic transition."
407
- msgstr "इलास्टिक संक्रमण के दौरान पारदर्शिता फीका."
408
-
409
- #: easy-fancybox-settings.php:441
410
- #: easy-fancybox-settings.php:549
411
- #: easy-fancybox-settings.php:668
412
- #: easy-fancybox-settings.php:767
413
- #: easy-fancybox-settings.php:861
414
- #: easy-fancybox-settings.php:956
415
- #: easy-fancybox-settings.php:1071
416
- msgid "Show title"
417
- msgstr "शीर्षक दिखाएँ"
418
-
419
- #: easy-fancybox-settings.php:445
420
- #: easy-fancybox-settings.php:553
421
- #: easy-fancybox-settings.php:672
422
- #: easy-fancybox-settings.php:771
423
- #: easy-fancybox-settings.php:865
424
- #: easy-fancybox-settings.php:960
425
- #: easy-fancybox-settings.php:1075
426
- msgid "Title Position"
427
- msgstr "शीर्षक स्थिति"
428
-
429
- #: easy-fancybox-settings.php:449
430
- #: easy-fancybox-settings.php:557
431
- #: easy-fancybox-settings.php:676
432
- #: easy-fancybox-settings.php:775
433
- #: easy-fancybox-settings.php:869
434
- #: easy-fancybox-settings.php:964
435
- #: easy-fancybox-settings.php:1079
436
- msgid "Float"
437
- msgstr "Float"
438
-
439
- #: easy-fancybox-settings.php:450
440
- #: easy-fancybox-settings.php:558
441
- #: easy-fancybox-settings.php:677
442
- #: easy-fancybox-settings.php:776
443
- #: easy-fancybox-settings.php:870
444
- #: easy-fancybox-settings.php:965
445
- #: easy-fancybox-settings.php:1080
446
- msgid "Outside"
447
- msgstr "बाहर"
448
-
449
- #: easy-fancybox-settings.php:451
450
- #: easy-fancybox-settings.php:559
451
- #: easy-fancybox-settings.php:678
452
- #: easy-fancybox-settings.php:777
453
- #: easy-fancybox-settings.php:871
454
- #: easy-fancybox-settings.php:966
455
- #: easy-fancybox-settings.php:1081
456
- msgid "Inside"
457
- msgstr "अंदर"
458
-
459
- #: easy-fancybox-settings.php:461
460
- #: easy-fancybox-settings.php:568
461
- #: easy-fancybox-settings.php:687
462
- #: easy-fancybox-settings.php:786
463
- #: easy-fancybox-settings.php:880
464
- #: easy-fancybox-settings.php:975
465
- #: easy-fancybox-settings.php:1090
466
- msgid "Allow title from thumbnail alt tag"
467
- msgstr "थंबनेल Alt टैग से शीर्षक की अनुमति देते हैं"
468
-
469
- #: easy-fancybox-settings.php:494
470
- msgid "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
471
- msgstr "ओवरले में किसी भी पीडीएफ दस्तावेज़ फ़ाइल खुला है, पर स्विच ऑटो का पता लगाने लगाने या वर्ग का उपयोग करें \"fancybox-pdf \" इसकी कड़ी के लिए."
472
-
473
- #: easy-fancybox-settings.php:494
474
- #: easy-fancybox-settings.php:611
475
- #: easy-fancybox-settings.php:702
476
- #: easy-fancybox-settings.php:805
477
- #: easy-fancybox-settings.php:900
478
- #: easy-fancybox-settings.php:1021
479
- msgid "Adjust its specific settings below."
480
- msgstr "नीचे अपनी विशिष्ट सेटिंग्स समायोजित करें."
481
-
482
- #: easy-fancybox-settings.php:611
483
- msgid "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
484
- msgstr "किसी भी फ़्लैश फ़ाइल (. Swf) एक उपरिशायी में खुला बनाने, पर स्विच ऑटो पता लगाने के लिए या अपने लिंक के लिए कक्षा \"fancybox swf \" का उपयोग करें."
485
-
486
- #: easy-fancybox-settings.php:702
487
- msgid "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
488
- msgstr "ओवरले में किसी भी यूट्यूब फिल्म खुला, ऑटो पता लगाने पर स्विच या अपने लिंक के लिए कक्षा \"fancybox यूट्यूब \" का उपयोग करें."
489
-
490
- #: easy-fancybox-settings.php:720
491
- msgid "Auto-detect Short links"
492
- msgstr "स्वत का पता लगाने लघु लिंक"
493
-
494
- #: easy-fancybox-settings.php:805
495
- msgid "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
496
- msgstr "ओवरले में किसी भी खुला नहीं Vimeo फिल्म, ऑटो पता लगाने पर स्विच करने या अपने लिंक के लिए कक्षा \"fancybox Vimeo \" का उपयोग करें."
497
-
498
- #: easy-fancybox-settings.php:900
499
- msgid "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
500
- msgstr "ओवरले में किसी भी Dailymotion फिल्म खुला, पर स्विच ऑटो पता लगाने या वर्ग अपने लिंक के लिए \"fancybox Dailymotion \" का उपयोग करें"
501
-
502
- #: easy-fancybox-settings.php:1021
503
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
504
- msgstr "एक वेबसाइट या HTML दस्तावेज़ ओवरले में खुला बनाने के लिए, अपने लिंक के लिए कक्षा \"fancybox आइफ्रेम \" का उपयोग करें."
505
-
506
- #. Plugin Name of the plugin/theme
507
- msgid "Easy FancyBox"
508
- msgstr "आसान FancyBox"
509
-
510
- #. Plugin URI of the plugin/theme
511
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
512
- msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
513
-
514
- #. Description of the plugin/theme
515
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
516
- msgstr "आसानी से <a href=\"http://fancybox.net/\"> jQuery के विस्तार FancyBox </a> सभी छवि पर, swf, पीडीएफ, YouTube, Dailymotion और Vimeo लिंक करने के लिए सक्षम. इसके अलावा आइफ्रेम और इनलाइन सामग्री का समर्थन करता है."
517
-
518
- #. Author of the plugin/theme
519
- msgid "RavanH"
520
- msgstr "RavanH"
521
-
522
- #. Author URI of the plugin/theme
523
- msgid "http://4visions.nl/"
524
- msgstr "http://4visions.nl/"
525
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-id_ID.mo DELETED
Binary file
languages/easy-fancybox-id_ID.po DELETED
@@ -1,980 +0,0 @@
1
- # This file is distributed under the same license as the Easy FancyBox package.
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Easy FancyBox/1.5\n"
5
- "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2013-09-04 21:51+0100\n"
7
- "PO-Revision-Date: 2013-11-23 10:15+0800\n"
8
- "Last-Translator: Nasrulhaq Muiz <nasrulhaq81@gmail.com>\n"
9
- "Language-Team: Easy FancyBox Languages <ravanhagen@gmail.com>\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_n\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
- "X-Poedit-SearchPath-1: ../../easy-fancybox-pro\n"
18
-
19
- #: ../easy-fancybox-class.php:337
20
- msgid "Donate to keep the Easy FancyBox plugin development going!"
21
- msgstr "Donasi pengembangan plugin Easy FancyBox berkelanjutan!"
22
-
23
- #: ../easy-fancybox-class.php:337
24
- #, php-format
25
- msgid ""
26
- "The options in this section are provided by the plugin %s and determine the "
27
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
28
- "by %s."
29
- msgstr ""
30
- "Pilihan dalam bagian ini disediakan oleh plugin% s dan menentukan "
31
- "<strong>Media Lightbox</ strong> penampilan overlay dan perilaku "
32
- "dikendalikan oleh %s."
33
-
34
- #: ../easy-fancybox-class.php:337
35
- msgid "Easy FancyBox"
36
- msgstr "Easy FancyBox"
37
-
38
- #: ../easy-fancybox-class.php:337 ../easy-fancybox-class.php:544
39
- #: ../easy-fancybox-class.php:588
40
- msgid "FancyBox"
41
- msgstr "FancyBox"
42
-
43
- #: ../easy-fancybox-class.php:337
44
- msgid ""
45
- "First enable each sub-section that you need. Then save and come back to "
46
- "adjust its specific settings."
47
- msgstr ""
48
- "Pertama, aktifkan tiap sub bagian yang anda butuhkan, kemudian kembali untuk "
49
- "menyesuaikan pengaturan spesifik lainnya."
50
-
51
- #: ../easy-fancybox-class.php:337
52
- msgid ""
53
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
54
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
55
- "will have some extra impact on client-side page speed. Enable only those sub-"
56
- "sections and options that you actually need on your site."
57
- msgstr ""
58
- "Catatan: setiap penambahan sub bagian dan fitur seperti <em>Auto-detection</"
59
- "em>, <em>Elastic transitions</em> dan semua <em>Easing effects</em> (kecuali "
60
- "Swing) memiliki imbas tambahan terhadap kecepatan halaman di sisi klien. "
61
- "Aktifkan sub bagian dan pilihan sesuai dengan kebutuhan situs anda."
62
-
63
- #: ../easy-fancybox-class.php:337
64
- msgid ""
65
- "Some setting like Transition options are unavailable for SWF video, PDF and "
66
- "iFrame content to ensure browser compatibility and readability."
67
- msgstr ""
68
- "Beberapa pengaturan seperti pilihan transisi tidak tersedia untuk konten "
69
- "SWF video, PDF dan iFrame untuk menjamin kemampuan membaca dan "
70
- "kompatibilitas browser."
71
-
72
- #: ../easy-fancybox-class.php:381
73
- msgid "Checked"
74
- msgstr "Ditandai"
75
-
76
- #: ../easy-fancybox-class.php:383
77
- msgid "Unchecked"
78
- msgstr "Belum ditandai"
79
-
80
- #: ../easy-fancybox-class.php:588
81
- msgid "Easy FancyBox Settings"
82
- msgstr "Pengaturan Easy FancyBox"
83
-
84
- #: ../easy-fancybox-class.php:597
85
- msgid "Sections"
86
- msgstr "Bagian-bagian"
87
-
88
- #: ../easy-fancybox-class.php:598 ../easy-fancybox-settings.php:9
89
- msgid "Global settings"
90
- msgstr "Pengaturan Global"
91
-
92
- #: ../easy-fancybox-class.php:599 ../easy-fancybox-settings.php:27
93
- #: ../easy-fancybox-settings.php:370
94
- msgid "Images"
95
- msgstr "Gambar"
96
-
97
- #: ../easy-fancybox-class.php:600 ../easy-fancybox-settings.php:34
98
- #: ../easy-fancybox-settings.php:633
99
- msgid "Inline content"
100
- msgstr "Konten dalam"
101
-
102
- #: ../easy-fancybox-class.php:601 ../easy-fancybox-settings.php:41
103
- #: ../easy-fancybox-settings.php:743
104
- msgid "PDF"
105
- msgstr "PDF"
106
-
107
- #: ../easy-fancybox-class.php:602 ../easy-fancybox-settings.php:48
108
- #: ../easy-fancybox-settings.php:868
109
- msgid "SWF"
110
- msgstr "SWF"
111
-
112
- #: ../easy-fancybox-class.php:603 ../easy-fancybox-settings.php:62
113
- #: ../easy-fancybox-settings.php:1057
114
- msgid "YouTube"
115
- msgstr "YouTube"
116
-
117
- #: ../easy-fancybox-class.php:604 ../easy-fancybox-settings.php:69
118
- #: ../easy-fancybox-settings.php:1165
119
- msgid "Vimeo"
120
- msgstr "Vimeo"
121
-
122
- #: ../easy-fancybox-class.php:605 ../easy-fancybox-settings.php:76
123
- #: ../easy-fancybox-settings.php:1265
124
- msgid "Dailymotion"
125
- msgstr "Dailymotion"
126
-
127
- #: ../easy-fancybox-class.php:606 ../easy-fancybox-settings.php:83
128
- #: ../easy-fancybox-settings.php:1391
129
- msgid "iFrames"
130
- msgstr "iFrames"
131
-
132
- #: ../easy-fancybox-class.php:634
133
- msgid "Support"
134
- msgstr "Dukungan"
135
-
136
- #: ../easy-fancybox-class.php:635
137
- msgid "Resources"
138
- msgstr "Sumberdaya"
139
-
140
- #: ../easy-fancybox-class.php:637
141
- msgid "Credits"
142
- msgstr "Kredit"
143
-
144
- #: ../easy-fancybox-settings.php:14
145
- msgid "Media"
146
- msgstr "Media"
147
-
148
- #: ../easy-fancybox-settings.php:20
149
- msgid "Enable FancyBox for"
150
- msgstr "Aktifkan FancyBox untuk"
151
-
152
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
153
- msgid "SVG"
154
- msgstr "SVG"
155
-
156
- #: ../easy-fancybox-settings.php:86
157
- msgid ""
158
- "For advanced options and support, please get the Easy FancyBox - Pro "
159
- "extension."
160
- msgstr ""
161
- "Untuk dukungan pilihan lebih lanjut, dapatkan ekstensi versi Pro Easy "
162
- "FancyBox"
163
-
164
- #: ../easy-fancybox-settings.php:95
165
- msgid "Exclude"
166
- msgstr "Tidak termasuk"
167
-
168
- #: ../easy-fancybox-settings.php:101
169
- msgid "Empty (hidden) links"
170
- msgstr "Kosongkan (sembunyikan) tautan"
171
-
172
- #: ../easy-fancybox-settings.php:102
173
- msgid "Without thumbnail image"
174
- msgstr "Tanpa pembesaran gambar"
175
-
176
- #: ../easy-fancybox-settings.php:109
177
- msgid "Open on page load"
178
- msgstr "Buka saat memuat halaman"
179
-
180
- #: ../easy-fancybox-settings.php:115
181
- msgid "Link with ID \"fancybox-auto\""
182
- msgstr "Bertaut dengan ID \"fancybox-auto\""
183
-
184
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
185
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
186
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
187
- #: ../easy-fancybox-settings.php:723
188
- msgid "More options &raquo;"
189
- msgstr "Pilihan lebih lanjut &raquo;"
190
-
191
- #: ../easy-fancybox-settings.php:125
192
- msgid ""
193
- "Include the Metadata jQuery extension script to allow passing custom "
194
- "parameters via link class."
195
- msgstr ""
196
- "Sertakan ekstensi skrip jQuery Metadata untuk mengizinkan kostumisasi "
197
- "parameter via klasifikasi tautan"
198
-
199
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
200
- msgid "Overlay"
201
- msgstr "Lapisan"
202
-
203
- #: ../easy-fancybox-settings.php:139
204
- msgid "Show the overlay around content opened in FancyBox."
205
- msgstr "Tampilkan lapisan sekitar konten yang terbuka di FancyBox."
206
-
207
- #: ../easy-fancybox-settings.php:146
208
- msgid "Close FancyBox when overlay is clicked."
209
- msgstr "Keluar dar FancyBox ketka lapisan di klik"
210
-
211
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
212
- msgid "Opacity"
213
- msgstr "Keburaman"
214
-
215
- #: ../easy-fancybox-settings.php:158
216
- msgid "Value between 0 and 1. "
217
- msgstr "Nilai antara 0 dan 1"
218
-
219
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
220
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
221
- #: ../easy-fancybox-settings.php:595
222
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
223
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
224
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
225
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
226
- msgid "Default:"
227
- msgstr "Default:"
228
-
229
- #: ../easy-fancybox-settings.php:162
230
- msgid "Color"
231
- msgstr "Warna"
232
-
233
- #: ../easy-fancybox-settings.php:167
234
- msgid "Enter an HTML color value."
235
- msgstr "Masukkan nilai warna HTML"
236
-
237
- #: ../easy-fancybox-settings.php:175
238
- msgid "Spotlight effect"
239
- msgstr "Efek sorot."
240
-
241
- #: ../easy-fancybox-settings.php:180
242
- msgid "Window"
243
- msgstr "Jendela"
244
-
245
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
246
- msgid "Appearance"
247
- msgstr "Penampilan"
248
-
249
- #: ../easy-fancybox-settings.php:193
250
- msgid "Show the (X) close button"
251
- msgstr "Tampilkan tombol keluar (X)"
252
-
253
- #: ../easy-fancybox-settings.php:198
254
- msgid "Background color"
255
- msgstr "Warna Latar"
256
-
257
- #: ../easy-fancybox-settings.php:208
258
- msgid "Border color"
259
- msgstr "Warna Garis tepi"
260
-
261
- #: ../easy-fancybox-settings.php:218
262
- msgid "Text color"
263
- msgstr "Warna Teks"
264
-
265
- #: ../easy-fancybox-settings.php:223 ../easy-fancybox-settings.php:236
266
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
267
- #: ../easy-fancybox-settings.php:613
268
- msgid "Make available &raquo;"
269
- msgstr "Buat tersedia &raquo; "
270
-
271
- #: ../easy-fancybox-settings.php:241
272
- msgid "Border radius"
273
- msgstr "Jarak Garis tepi"
274
-
275
- #: ../easy-fancybox-settings.php:249
276
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
277
- msgid "Set a border radius to create rounded corners. Higher is rounder."
278
- msgstr ""
279
- "Atur radius perbatasan untuk menciptakan sudut dibulatkan. Lebih tinggi "
280
- "adalah bulat."
281
-
282
- #: ../easy-fancybox-settings.php:254
283
- msgid "Dimensions"
284
- msgstr "Dimensi"
285
-
286
- #: ../easy-fancybox-settings.php:286
287
- msgid ""
288
- "If content size is not set or cannot be determined automatically, these "
289
- "default dimensions will be used."
290
- msgstr ""
291
- "Jika ukuran konten tidak diatur atau tidak dapat ditentukan secara otomatis, "
292
- "dimensi standar ini akan digunakan."
293
-
294
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
295
- msgid "Behavior"
296
- msgstr "Tindakan"
297
-
298
- #: ../easy-fancybox-settings.php:298
299
- msgid "Center while scrolling"
300
- msgstr "Ketengahkan sembari men-scroll"
301
-
302
- #: ../easy-fancybox-settings.php:305
303
- msgid "Esc key stroke closes FancyBox"
304
- msgstr "Esc kunci paksa menutup FancyBox"
305
-
306
- #: ../easy-fancybox-settings.php:312
307
- msgid "Scale large content down to fit in the browser viewport."
308
- msgstr "Skala konten besar bawah untuk muat di labuhan tampilan browser."
309
-
310
- #: ../easy-fancybox-settings.php:316
311
- msgid "Opening speed"
312
- msgstr "Kecepatan membuka"
313
-
314
- #: ../easy-fancybox-settings.php:328
315
- msgid "Closing speed"
316
- msgstr "Kecepatan menutup"
317
-
318
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
319
- msgid "Duration in milliseconds. Higher is slower."
320
- msgstr "Durasi dalam milidetik. Lebih tinggi lebih lambat."
321
-
322
- #: ../easy-fancybox-settings.php:375
323
- msgid ""
324
- "To make images open in an overlay, add their extension to the Autodetect "
325
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
326
- "all autodetection."
327
- msgstr ""
328
- "Untuk membuat gambar terbuka di overlay, tambahkan ekstensi untuk bidang "
329
- "auto-mendeteksi atau menggunakan kelas \"fancybox \" untuk link-nya. "
330
- "Bersihkan area untuk mematikan auto-pengaktifan."
331
-
332
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
333
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
334
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
335
- #: ../easy-fancybox-settings.php:1279
336
- msgid "Autodetect"
337
- msgstr ""
338
- "Untuk membuat gambar terbuka di overlay, tambahkan ekstensi untuk bidang "
339
- "auto-mendeteksi atau menggunakan kelas \"fancybox \" untuk link-nya. "
340
- "Bersihkan area untuk mematikan auto-pengaktifan."
341
-
342
- #: ../easy-fancybox-settings.php:397
343
- msgid "Example:"
344
- msgstr "Contoh:"
345
-
346
- #: ../easy-fancybox-settings.php:401
347
- msgid "Apply to"
348
- msgstr "Terapkan ke"
349
-
350
- #: ../easy-fancybox-settings.php:406
351
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
352
- msgid "All image links"
353
- msgstr "Semua tautan gambar"
354
-
355
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
356
- msgid "Transition In"
357
- msgstr "Transisi"
358
-
359
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
360
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
361
- msgid "Fade"
362
- msgstr "Pudar"
363
-
364
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
365
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
366
- msgid "Elastic"
367
- msgstr "Elastis"
368
-
369
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
370
- msgid "Easing In"
371
- msgstr "Permudah dalam"
372
-
373
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
374
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
375
- msgid "Linear"
376
- msgstr "Bergaris"
377
-
378
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
379
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
380
- msgid "Swing"
381
- msgstr "Terayun"
382
-
383
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
384
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
385
- msgid "easeInBack"
386
- msgstr ""
387
-
388
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
389
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
390
- msgid "easeOutBack"
391
- msgstr ""
392
-
393
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
394
- msgid "Transition Out"
395
- msgstr "Transisi luar"
396
-
397
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
398
- msgid "Easing Out"
399
- msgstr "Permudah Luar"
400
-
401
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
402
- #: ../easy-fancybox-settings.php:723
403
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
404
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
405
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
406
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
407
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
408
- msgid "Note:"
409
- msgstr "Catatan;"
410
-
411
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
412
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
413
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
414
- msgid "Easing effects only apply when Transition is set to Elastic. "
415
- msgstr "Efek Mempermudah hanya berlaku bila Transisi diatur ke elastis."
416
-
417
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
418
- msgid ""
419
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
420
- "Transition In is set to Elastic!"
421
- msgstr ""
422
- "Transparansi memudar selama masa transisi elastis. PERHATIAN: Gunakan hanya "
423
- "ketika setidaknya Transisi Dalam diatur ke elastis!"
424
-
425
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
426
- msgid "Close FancyBox when content is clicked"
427
- msgstr "Tutup FancyBox bila konten diklik"
428
-
429
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
430
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
431
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
432
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
433
- msgid "Show title"
434
- msgstr "Tampilkan titel"
435
-
436
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
437
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
438
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
439
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
440
- msgid "Title Position"
441
- msgstr "Posisi Titel"
442
-
443
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
444
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
445
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
446
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
447
- msgid "Float"
448
- msgstr "Mengambang"
449
-
450
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
451
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
452
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
453
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
454
- msgid "Outside"
455
- msgstr "Sisi Luar"
456
-
457
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
458
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
459
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
460
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
461
- msgid "Inside"
462
- msgstr "Sisi Dalam"
463
-
464
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
465
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
466
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
467
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
468
- msgid "Allow title from thumbnail alt tag"
469
- msgstr "Izinkan titel oleh pembesaran alt tag"
470
-
471
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
472
- msgid "Advanced"
473
- msgstr "Tingkat Lanjut"
474
-
475
- #: ../easy-fancybox-settings.php:521
476
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
477
- msgid "Hide/show title on mouse hover action"
478
- msgstr "Menyembunyikan / menampilkan judul pada aksi melayang mouse"
479
-
480
- #: ../easy-fancybox-settings.php:528
481
- msgid "Gallery"
482
- msgstr "Galeri"
483
-
484
- #: ../easy-fancybox-settings.php:532
485
- msgid "Autogallery"
486
- msgstr "AutoGaleri"
487
-
488
- #: ../easy-fancybox-settings.php:538
489
- msgid "WordPress galleries only"
490
- msgstr "Galeri WordPress saja"
491
-
492
- #: ../easy-fancybox-settings.php:539
493
- msgid "All in one gallery"
494
- msgstr "Semua dalam satu galeri"
495
-
496
- #: ../easy-fancybox-settings.php:542
497
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
498
- msgid ""
499
- "When disabled, you can use the rel attribute to manually group image links "
500
- "together."
501
- msgstr ""
502
- "Saat dinonaktifkan, Anda dapat menggunakan atribut rel secara manual "
503
- "mengelompokkan tautan foto bersama."
504
-
505
- #: ../easy-fancybox-settings.php:549
506
- msgid "Show the gallery navigation arrows"
507
- msgstr "Tampilkan panah navigasi galeri"
508
-
509
- #: ../easy-fancybox-settings.php:556
510
- msgid "Arrow key strokes browse the gallery"
511
- msgstr "Panah kunci paksa meramban galeri"
512
-
513
- #: ../easy-fancybox-settings.php:563
514
- msgid ""
515
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
516
- "mousewheel action."
517
- msgstr ""
518
- "Sertakan ekstensi skrip roda mouse jQuery untuk memungkinkan galeri browsing "
519
- "dengan tindakan roda mouse."
520
-
521
- #: ../easy-fancybox-settings.php:570
522
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
523
- msgstr ""
524
- "Membuat galeri siklik, memungkinkan Anda untuk terus menekan ke depan / "
525
- "belakang."
526
-
527
- #: ../easy-fancybox-settings.php:574
528
- msgid "Change speed"
529
- msgstr "Ubah kecepatan"
530
-
531
- #: ../easy-fancybox-settings.php:586
532
- msgid "Fade speed"
533
- msgstr "Pudarkan kecepatan"
534
-
535
- #: ../easy-fancybox-settings.php:602
536
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
537
- msgid "Galleries per Section (below)"
538
- msgstr "Galeri per Bagian (bawah)"
539
-
540
- #: ../easy-fancybox-settings.php:602
541
- msgid ""
542
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
543
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
544
- "it to conform with your theme."
545
- msgstr ""
546
- "<em>Terapkan</em> berlaku ketika diatur <em>Bagian terbatas</em> dan/atau "
547
- "<em>Auto-gallery</em> diatur ke <em>Bagian Galeri-galeri</em>. Sesuaikan "
548
- "dengan tema anda."
549
-
550
- #: ../easy-fancybox-settings.php:602
551
- msgid ""
552
- "Examples: If your theme wraps post content in a div with class post, change "
553
- "this value to \"div.post\". If you only want to group images in a WordPress "
554
- "gallery together, use \"div.gallery\". If you want to include images in a "
555
- "sidebar with ID primary, add \", #primary\"."
556
- msgstr ""
557
- "Contoh: jika theme anda menggulung konten post pada sebuah div dengan pos "
558
- "kelas, ubah nilai ini ke \"div.post\". Jika anda ingin menjadikan bagian "
559
- "gambar di bilah sisi dengan ID utama, tambahkan \", div#primary\" atau "
560
- "\"aside#primary\" untuk tema html5."
561
-
562
- #: ../easy-fancybox-settings.php:602
563
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
564
- msgid ""
565
- "Hide/show title on mouse hover action works best with Overlay title position."
566
- msgstr ""
567
- "Hide / show title pada tindakan mouse hover yang terbaik dengan posisi judul "
568
- "Overlay."
569
-
570
- #: ../easy-fancybox-settings.php:602
571
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
572
- msgstr "Slideshow ini menggunakan fixed 6, 8 atau 12 jeda detik per gambar."
573
-
574
- #: ../easy-fancybox-settings.php:602
575
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
576
- msgid "(6 seconds)"
577
- msgstr "(6 detik)"
578
-
579
- #: ../easy-fancybox-settings.php:602
580
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
581
- msgid "(8 seconds)"
582
- msgstr "(8 detik)"
583
-
584
- #: ../easy-fancybox-settings.php:602
585
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
586
- msgid "(12 seconds)"
587
- msgstr "(12 detik)"
588
-
589
- #: ../easy-fancybox-settings.php:610
590
- msgid "Slideshow"
591
- msgstr "Slideshow"
592
-
593
- #: ../easy-fancybox-settings.php:638
594
- msgid ""
595
- "To make inline content open in an overlay, wrap that content in a div with a "
596
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
597
- "\"fancybox-inline\" attribute."
598
- msgstr ""
599
- "Untuk membuat konten inline terbuka dalam overlay, membungkus bahwa konten "
600
- "dalam div dengan ID yang unik, membuat link dengan sasaran \"# uniqueID\" "
601
- "dan memberikan kelas \"fancybox-inline\" atribut."
602
-
603
- #: ../easy-fancybox-settings.php:656
604
- msgid ""
605
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
606
- "determined, the default dimensions will be used."
607
- msgstr ""
608
- "Cobalah untuk menyesuaikan ukuran untuk inline / konten html. Jika dicentang "
609
- "atau ukuran tidak dapat ditentukan, dimensi default akan digunakan."
610
-
611
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
612
- msgid "Scrolling"
613
- msgstr "Menggulung"
614
-
615
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
616
- msgid "Auto"
617
- msgstr "Otomatis"
618
-
619
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
620
- msgid "Always"
621
- msgstr "Selalu"
622
-
623
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
624
- msgid "Never"
625
- msgstr "Tidak Pernah"
626
-
627
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
628
- msgid "Define scrolling and scrollbar visibility."
629
- msgstr "Tentukan bergulir dan visibilitas scrollbar."
630
-
631
- #: ../easy-fancybox-settings.php:748
632
- msgid ""
633
- "To make any PDF document file open in an overlay, switch on Autodetect or "
634
- "use the class \"fancybox-pdf\" for its link."
635
- msgstr ""
636
- "Untuk membuat setiap file dokumen PDF dalam posisi lapisa (overlay), ubah "
637
- "pada deteksi otomatis atau gunakan kelas \"fancybox-pdf\" untuk tautan ini."
638
-
639
- #: ../easy-fancybox-settings.php:873
640
- msgid ""
641
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
642
- "use the class \"fancybox-swf\" for its link."
643
- msgstr ""
644
- "Untuk membuat file Flash (.swf) apapun dalam posisi melayang (overlay), "
645
- "ubah pada deteksi otomatis atau gunakan kelas \"fancybox-swf\" untuk tautan "
646
- "ini."
647
-
648
- #: ../easy-fancybox-settings.php:967
649
- msgid ""
650
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
651
- "the class \"fancybox-svg\" for its link."
652
- msgstr ""
653
- "Untuk membuat file SVG (.svg) apapun dalam posisi melayang (overlay), ubah "
654
- "pada deteksi otomatis atau gunakan kelas \"fancybox-svg\" untuk tautan ini."
655
-
656
- #: ../easy-fancybox-settings.php:1062
657
- msgid ""
658
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
659
- "the class \"fancybox-youtube\" for its link."
660
- msgstr ""
661
- "Untuk membuat film YouTube apapun dalam posisi melayang (overlay), ubah pada "
662
- "deteksi otomatis atau gunakan kelas \"fancybox-youtube\" untuk tautan ini."
663
-
664
- #: ../easy-fancybox-settings.php:1080
665
- msgid "Autodetect Short links"
666
- msgstr "Deteksi otomatis tautan pendek"
667
-
668
- #: ../easy-fancybox-settings.php:1170
669
- msgid ""
670
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
671
- "class \"fancybox-vimeo\" for its link."
672
- msgstr ""
673
- "Untuk membuat film Vimeo apapun dalam posisi melayang (overlay), ubah pada "
674
- "deteksi otomatis atau gunakan kelas \"fancybox-vimeo\" untuk tautan ini."
675
-
676
- #: ../easy-fancybox-settings.php:1270
677
- msgid ""
678
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
679
- "use the class \"fancybox-dailymotion\" for its link."
680
- msgstr ""
681
- "Untuk membuat film Dailymotion apapun dalam posisi melayang (overlay), ubah "
682
- "pada deteksi otomatis atau gunakan kelas \"fancybox-dailymotion\" untuk "
683
- "tautan ini."
684
-
685
- #: ../easy-fancybox-settings.php:1396
686
- msgid ""
687
- "To make a website or HTML document open in an overlay, use the class "
688
- "\"fancybox-iframe\" for its link."
689
- msgstr ""
690
- "Untuk membuat website atau HTML apapun dalam posisi melayang (overlay), "
691
- "ubah pada deteksi otomatis atau gunakan kelas \"fancybox-iframe\" untuk "
692
- "tautan ini."
693
-
694
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
695
- msgid ""
696
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
697
- "available."
698
- msgstr ""
699
- "Terima kasih telah membeli Easy FancyBox - ekstensi Pro. Pilihan baru yang "
700
- "tersedia."
701
-
702
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
703
- msgid "Get support here."
704
- msgstr "Dapatkan dukungan di sini."
705
-
706
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
707
- msgid "First Image link"
708
- msgstr "Link Gambar Pertama"
709
-
710
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
711
- msgid "First PDF link"
712
- msgstr "Link PDF Pertama"
713
-
714
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
715
- msgid "First SWF link"
716
- msgstr "Link SWF Pertama"
717
-
718
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
719
- msgid "First SVG link"
720
- msgstr "link SVG Pertama"
721
-
722
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
723
- msgid "First YouTube link "
724
- msgstr "Link Youtube Pertama"
725
-
726
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
727
- msgid "First Vimeo link "
728
- msgstr "Link vimeo Pertama"
729
-
730
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
731
- msgid "First Dailymotion link "
732
- msgstr "Link Dailymotion Pertama"
733
-
734
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
735
- msgid "First iFrame link"
736
- msgstr "Link iFrame Pertama"
737
-
738
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
739
- msgid "First of any link"
740
- msgstr "Pertama dari setiap link"
741
-
742
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
743
- msgid "Links inside Section(s) only (below)"
744
- msgstr "Tautkan hanya didalam Bagian saja (bawah)"
745
-
746
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
747
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
748
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
749
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
750
- msgid "easeInQuad"
751
- msgstr ""
752
-
753
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
754
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
755
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
756
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
757
- msgid "easeOutQuad"
758
- msgstr ""
759
-
760
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
761
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
762
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
764
- msgid "easeInOutQuad"
765
- msgstr ""
766
-
767
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
768
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
769
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
770
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
771
- msgid "easeInCubic"
772
- msgstr ""
773
-
774
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
776
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
777
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
778
- msgid "easeOutCubic"
779
- msgstr ""
780
-
781
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
782
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
784
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
785
- msgid "easeInOutCubic"
786
- msgstr ""
787
-
788
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
789
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
792
- msgid "easeInQuart"
793
- msgstr ""
794
-
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
799
- msgid "easeOutQuart"
800
- msgstr ""
801
-
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
806
- msgid "easeInOutQuart"
807
- msgstr ""
808
-
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
813
- msgid "easeInQuint"
814
- msgstr ""
815
-
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
820
- msgid "easeOutQuint"
821
- msgstr ""
822
-
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
827
- msgid "easeInOutQuint"
828
- msgstr ""
829
-
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
834
- msgid "easeInSine"
835
- msgstr ""
836
-
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
841
- msgid "easeOutSine"
842
- msgstr ""
843
-
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
848
- msgid "easeInOutSine"
849
- msgstr ""
850
-
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
855
- msgid "easeInExpo"
856
- msgstr ""
857
-
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
862
- msgid "easeOutExpo"
863
- msgstr ""
864
-
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
869
- msgid "easeInOutExpo"
870
- msgstr ""
871
-
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
876
- msgid "easeInCirc"
877
- msgstr ""
878
-
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
883
- msgid "easeOutCirc"
884
- msgstr ""
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
890
- msgid "easeInOutCirc"
891
- msgstr ""
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
897
- msgid "easeInElastic"
898
- msgstr ""
899
-
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
904
- msgid "easeOutElastic"
905
- msgstr ""
906
-
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
911
- msgid "easeInOutElastic"
912
- msgstr ""
913
-
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
918
- msgid "easeInOutBack"
919
- msgstr ""
920
-
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
925
- msgid "easeInBounce"
926
- msgstr ""
927
-
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
932
- msgid "easeOutBounce"
933
- msgstr ""
934
-
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
939
- msgid "easeInOutBounce"
940
- msgstr ""
941
-
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
943
- msgid "Section(s)"
944
- msgstr "Bagian-Bagian"
945
-
946
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
947
- msgid ""
948
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
949
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
950
- "it to conform with your theme."
951
- msgstr ""
952
- "Hal ini berlaku ketika <em>Terapkan untuk</ em> diatur untuk <em>Terbatas "
953
- "Bagian</ em> dan / atau <em Auto-galeri</ em> diatur untuk <em>Galeri per "
954
- "Bagian</ em >. Beradaptasi agar sesuai dengan tema Anda."
955
-
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
957
- msgid ""
958
- "Examples: If your theme wraps post content in a div with class post, change "
959
- "this value to \"div.post\". If you want to include images in a sidebar with "
960
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
961
- "you only want to group images in a WordPress gallery together, use \"div."
962
- "gallery\". If you want to include images in a sidebar with ID primary, add "
963
- "\", #primary\"."
964
- msgstr ""
965
- "Contoh: Jika tema Anda membungkus isi posting dalam div dengan pos kelas, "
966
- "mengubah nilai ini ke \"div.post\".Jika Anda ingin memasukkan gambar di "
967
- "sidebar dengan ID primer, tambahkan \", div#primary\" atau \"aside#primary\" "
968
- "untuk tema HTML5. Jika Anda hanya ingin foto grup di sebuah galeri WordPress "
969
- "bersama-sama, gunakan \"div.gallery\". Jika Anda ingin memasukkan gambar di "
970
- "sidebar dengan ID primer, tambahkan \", #primary\"."
971
-
972
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
974
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
975
- msgid "Gallery Auto-rotation"
976
- msgstr "v"
977
-
978
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
979
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
980
- msgstr "Auto-rotasi menggunakan fixed 6, 8 atau 12 jeda detik per gambar."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-lt_LT.po DELETED
@@ -1,523 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
7
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-04-03 23:56-0800\n"
12
- "Last-Translator: \n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
-
15
- #: easy-fancybox.php:266
16
- msgid "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
17
- msgstr "Paaukokite vardan Easy FancyBox papildinio plėtojimo per PayPal interetinę atsiskaitymų sistemą - tai greita, patogu ir saugu!"
18
-
19
- #: easy-fancybox.php:266
20
- msgid "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
21
- msgstr "Šio rinkinio nuostatos pateiktos papildinio <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong>, jos nustato <strong>Media Lightbox</strong> persidengiančią veiklą bei elgseną, kontroliuojamą <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
22
-
23
- #: easy-fancybox.php:266
24
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
25
- msgstr "Iš pradžių suaktyvinkite kiekvieną Jums reikalingą sub-sekciją. Tuomet įrašykite pakeitimus ir grįžkite atgal suderinti jų specifines nuostatas."
26
-
27
- #: easy-fancybox.php:266
28
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
29
- msgstr "Pastaba: Kiekviena papildoma sub-sekcija ir funkcijos, kaip <em>Automatinis aptikimas</em>, <em>Elastiniai perėjimai</em> ir<em>Palengvinimo efektai</em> (išskyrus svyravimą) šiek tiek įtakos kliento pusės naršymo greitį. Suaktyvinkite tik tas sub-sekcijas ir parinktis, kurių Jūsų puslapiui iš tikro reikia."
30
-
31
- #: easy-fancybox.php:266
32
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
33
- msgstr "Kai kurios nuostatos, tokios kaip Keitimo parinktys nėra pasiekiamos SWF video, PDF ir iFrame turiniu, užtikrinant naršyklės suderinamumą ir perskaitomumą."
34
-
35
- #: easy-fancybox.php:308
36
- msgid "Checked"
37
- msgstr "Pažymėta"
38
-
39
- #: easy-fancybox.php:310
40
- msgid "Unchecked"
41
- msgstr "Nepažymėta"
42
-
43
- #: easy-fancybox.php:362
44
- msgid "FancyBox"
45
- msgstr "FancyBox"
46
-
47
- #: easy-fancybox-settings.php:6
48
- msgid "Global settings"
49
- msgstr "Bendrosios nuostatos"
50
-
51
- #: easy-fancybox-settings.php:15
52
- msgid "Enable FancyBox for"
53
- msgstr "Suaktyvinti FancyBox"
54
-
55
- #: easy-fancybox-settings.php:24
56
- #: easy-fancybox-settings.php:316
57
- msgid "Images & Inline content"
58
- msgstr "Vaizdų ir Įterpinių turinys"
59
-
60
- #: easy-fancybox-settings.php:31
61
- #: easy-fancybox-settings.php:489
62
- msgid "PDF"
63
- msgstr "PDF"
64
-
65
- #: easy-fancybox-settings.php:38
66
- #: easy-fancybox-settings.php:606
67
- msgid "SWF"
68
- msgstr "SWF"
69
-
70
- #: easy-fancybox-settings.php:45
71
- #: easy-fancybox-settings.php:697
72
- msgid "YouTube"
73
- msgstr "YouTube"
74
-
75
- #: easy-fancybox-settings.php:52
76
- #: easy-fancybox-settings.php:800
77
- msgid "Vimeo"
78
- msgstr "Vimeo"
79
-
80
- #: easy-fancybox-settings.php:59
81
- #: easy-fancybox-settings.php:895
82
- msgid "Dailymotion"
83
- msgstr "Dailymotion"
84
-
85
- #: easy-fancybox-settings.php:66
86
- #: easy-fancybox-settings.php:1016
87
- msgid "iFrames"
88
- msgstr "iFrames"
89
-
90
- #: easy-fancybox-settings.php:71
91
- msgid "Links"
92
- msgstr "Nuorodos"
93
-
94
- #: easy-fancybox-settings.php:81
95
- msgid "Exclude"
96
- msgstr "Išskirti"
97
-
98
- #: easy-fancybox-settings.php:86
99
- #: easy-fancybox-settings.php:100
100
- #: easy-fancybox-settings.php:295
101
- #: easy-fancybox-settings.php:383
102
- #: easy-fancybox-settings.php:411
103
- msgid "None"
104
- msgstr "Nieko"
105
-
106
- #: easy-fancybox-settings.php:87
107
- msgid "Empty (hidden) links"
108
- msgstr "Tuščios (paslėptos) nuorodos"
109
-
110
- #: easy-fancybox-settings.php:88
111
- msgid "Without thumbnail image"
112
- msgstr "Be miniatiūros vaizdo"
113
-
114
- #: easy-fancybox-settings.php:95
115
- msgid "Auto-open"
116
- msgstr "Automatinis atvėrimas"
117
-
118
- #: easy-fancybox-settings.php:101
119
- msgid "Link with ID \"fancybox-auto\""
120
- msgstr "Identifikatoriui \"fancybox-auto\" priskirtos nuorodos"
121
-
122
- #: easy-fancybox-settings.php:102
123
- msgid "First Image link"
124
- msgstr "Pirma Vaizdo nuoroda"
125
-
126
- #: easy-fancybox-settings.php:103
127
- msgid "First PDF link"
128
- msgstr "Pirma PDF nuoroda"
129
-
130
- #: easy-fancybox-settings.php:104
131
- msgid "First SWF link"
132
- msgstr "Pirma SWF nuoroda"
133
-
134
- #: easy-fancybox-settings.php:105
135
- msgid "First YouTube link "
136
- msgstr "Pirma YouTube nuoroda"
137
-
138
- #: easy-fancybox-settings.php:106
139
- msgid "First Vimeo link "
140
- msgstr "Pirma Vimeo nuoroda"
141
-
142
- #: easy-fancybox-settings.php:107
143
- msgid "First Dailymotion link "
144
- msgstr "Pirma Dailymotion nuoroda"
145
-
146
- #: easy-fancybox-settings.php:108
147
- msgid "First iFrame link"
148
- msgstr "Pirma iFrame nuoroda"
149
-
150
- #: easy-fancybox-settings.php:109
151
- msgid "First of any link"
152
- msgstr "Pirma bet ko nuoroda"
153
-
154
- #: easy-fancybox-settings.php:117
155
- #: easy-fancybox-settings.php:452
156
- msgid "Overlay"
157
- msgstr "Perdanga"
158
-
159
- #: easy-fancybox-settings.php:125
160
- msgid "Show the overlay around content opened in FancyBox."
161
- msgstr "Rodyti perdangą aplink turinį, atvertą FancyBox."
162
-
163
- #: easy-fancybox-settings.php:132
164
- msgid "Spotlight effect."
165
- msgstr "Prožektoriaus efektas."
166
-
167
- #: easy-fancybox-settings.php:136
168
- #: easy-fancybox-settings.php:227
169
- msgid "Opacity"
170
- msgstr "Dengiamumas"
171
-
172
- #: easy-fancybox-settings.php:141
173
- msgid "Value between 0 and 1. "
174
- msgstr "Reikšmė tarp 0 ir 1."
175
-
176
- #: easy-fancybox-settings.php:141
177
- #: easy-fancybox-settings.php:150
178
- #: easy-fancybox-settings.php:188
179
- #: easy-fancybox-settings.php:232
180
- #: easy-fancybox-settings.php:283
181
- #: easy-fancybox-settings.php:332
182
- #: easy-fancybox-settings.php:345
183
- #: easy-fancybox-settings.php:369
184
- msgid "Default:"
185
- msgstr "Numatytasis:"
186
-
187
- #: easy-fancybox-settings.php:145
188
- #: easy-fancybox-settings.php:192
189
- msgid "Color"
190
- msgstr "Spalva"
191
-
192
- #: easy-fancybox-settings.php:150
193
- msgid "Enter an HTML color value."
194
- msgstr "Įveskite HTML kodo spalvos reikšmę."
195
-
196
- #: easy-fancybox-settings.php:156
197
- msgid "Window"
198
- msgstr "Langas"
199
-
200
- #: easy-fancybox-settings.php:162
201
- msgid "Size"
202
- msgstr "Dydis"
203
-
204
- #: easy-fancybox-settings.php:166
205
- #: easy-fancybox-settings.php:517
206
- #: easy-fancybox-settings.php:634
207
- #: easy-fancybox-settings.php:735
208
- #: easy-fancybox-settings.php:829
209
- #: easy-fancybox-settings.php:924
210
- #: easy-fancybox-settings.php:1036
211
- msgid "Width"
212
- msgstr "Plotis"
213
-
214
- #: easy-fancybox-settings.php:175
215
- #: easy-fancybox-settings.php:526
216
- #: easy-fancybox-settings.php:644
217
- #: easy-fancybox-settings.php:744
218
- #: easy-fancybox-settings.php:838
219
- #: easy-fancybox-settings.php:933
220
- #: easy-fancybox-settings.php:1045
221
- msgid "Height"
222
- msgstr "Aukštis"
223
-
224
- #: easy-fancybox-settings.php:183
225
- #: easy-fancybox-settings.php:207
226
- #: easy-fancybox-settings.php:534
227
- #: easy-fancybox-settings.php:653
228
- #: easy-fancybox-settings.php:752
229
- #: easy-fancybox-settings.php:846
230
- #: easy-fancybox-settings.php:941
231
- #: easy-fancybox-settings.php:1053
232
- msgid "Border"
233
- msgstr "Rėmelis"
234
-
235
- #: easy-fancybox-settings.php:197
236
- msgid "Background"
237
- msgstr "Fonas"
238
-
239
- #: easy-fancybox-settings.php:217
240
- msgid "Text"
241
- msgstr "Tekstas"
242
-
243
- #: easy-fancybox-settings.php:236
244
- msgid "Behavior"
245
- msgstr "Elgsena"
246
-
247
- #: easy-fancybox-settings.php:242
248
- msgid "Center while scrolling"
249
- msgstr "Centruoti slenkant"
250
-
251
- #: easy-fancybox-settings.php:248
252
- msgid "Show the (X) close button"
253
- msgstr "Rodyti (X) užverties mygtuką"
254
-
255
- #: easy-fancybox-settings.php:254
256
- msgid "Show the gallery navigation arrows"
257
- msgstr "Rodyti galerijos naršymo rodykles"
258
-
259
- #: easy-fancybox-settings.php:262
260
- msgid "Opening speed"
261
- msgstr "Atvėrimo greitis"
262
-
263
- #: easy-fancybox-settings.php:270
264
- msgid "Closing speed"
265
- msgstr "Uždarymo greitis"
266
-
267
- #: easy-fancybox-settings.php:278
268
- msgid "Fade speed"
269
- msgstr "Stelbties greitis"
270
-
271
- #: easy-fancybox-settings.php:283
272
- msgid "Duration in milliseconds. Higher is slower."
273
- msgstr "Trukmė milisekundėmis. Didesnė yra lėtesnė."
274
-
275
- #: easy-fancybox-settings.php:291
276
- msgid "Advanced"
277
- msgstr "Išplėstiniai(-ės)"
278
-
279
- #: easy-fancybox-settings.php:296
280
- msgid "Hide/show title on mouse hover action"
281
- msgstr "Slėpti/rodyti antraštę pelės žymeklio užvedimo metu"
282
-
283
- #: easy-fancybox-settings.php:297
284
- msgid "Gallery Auto-rotation"
285
- msgstr "Automatinis galerijos pasukimas"
286
-
287
- #: easy-fancybox-settings.php:304
288
- msgid "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
289
- msgstr "Pastaba: Turinio rodymas/slėpimas, pelės žymeklio užvedimo metu geriausiai veikia su Persidengiančia turinio pozicija. Automatinis pasukimas naudoja fiksuotą 5 sekundžių pauzę kiekvienam vaizdui."
290
-
291
- #: easy-fancybox-settings.php:321
292
- msgid "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
293
- msgstr "Norėdami, kad vaizdai atsidarytų perdangos rėžime, pridėkite Jų plėtinį į automatinio aptikimo laukelį ir naudokite klasę \"fancybox\" jų nuorodai. Išvalykite laukelį, norėdami išjungti automatinį suaktyvinimą."
294
-
295
- #: easy-fancybox-settings.php:325
296
- #: easy-fancybox-settings.php:502
297
- #: easy-fancybox-settings.php:619
298
- #: easy-fancybox-settings.php:711
299
- #: easy-fancybox-settings.php:814
300
- #: easy-fancybox-settings.php:909
301
- msgid "Auto-detect"
302
- msgstr "Automatinis aptikimas"
303
-
304
- #: easy-fancybox-settings.php:336
305
- msgid "Apply to"
306
- msgstr "Pritaikyti"
307
-
308
- #: easy-fancybox-settings.php:341
309
- msgid "All image links"
310
- msgstr "Visos vaizdo nuorodos"
311
-
312
- #: easy-fancybox-settings.php:342
313
- msgid "Links inside Section(s) only (below)"
314
- msgstr "Susieja vidinę(-es) sekciją(-es) tik (žemiau)"
315
-
316
- #: easy-fancybox-settings.php:349
317
- msgid "Auto-gallery"
318
- msgstr "Automatinė galerija"
319
-
320
- #: easy-fancybox-settings.php:354
321
- msgid "Disabled"
322
- msgstr "Išjungta"
323
-
324
- #: easy-fancybox-settings.php:355
325
- msgid "Galleries per Section (below)"
326
- msgstr "Galerijos Sekcijoje (žemiau)"
327
-
328
- #: easy-fancybox-settings.php:356
329
- msgid "All in one gallery"
330
- msgstr "Visi vienoje galerijoje"
331
-
332
- #: easy-fancybox-settings.php:359
333
- msgid "When disabled, you can use the rel attribute to manually group image links together."
334
- msgstr "Kuomet išjungta, Jūs galite naudoti tikrą atributą rankiniam vaizdų nuorodų grupavimui."
335
-
336
- #: easy-fancybox-settings.php:363
337
- msgid "Section(s)"
338
- msgstr "Sekcija(-os)"
339
-
340
- #: easy-fancybox-settings.php:369
341
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
342
- msgstr "Tai pritaikoma kuomet <em>Pritaikyti</em> yra pritaikytas <em>Ribojama Sekcijoms</em> ir/arba <em>Automatinė galerija</em> yra priskirta <em>Galerijos Sekcijoje</em>."
343
-
344
- #: easy-fancybox-settings.php:369
345
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
346
- msgstr "Pavyzdžiai: Jeigu Jūsų apipavidalinimas patalpina įrašo turinį div dalyje su klasės įrašu, pakeiskite šią reikšmę į \"div.post\". Jeigu norite įtraukti vaizdus į šoninę Juostą su pirminiu Identifikatoriumi, html5 apipavidalinimams pridėkite \", div#primary\" arba \"aside#primary\"."
347
-
348
- #: easy-fancybox-settings.php:377
349
- msgid "Transition In"
350
- msgstr "Pareiti į"
351
-
352
- #: easy-fancybox-settings.php:381
353
- #: easy-fancybox-settings.php:409
354
- msgid "Fade"
355
- msgstr "Stelbti"
356
-
357
- #: easy-fancybox-settings.php:382
358
- #: easy-fancybox-settings.php:410
359
- msgid "Elastic"
360
- msgstr "Elastiškas"
361
-
362
- #: easy-fancybox-settings.php:390
363
- msgid "Easing In"
364
- msgstr "Palengvinimas"
365
-
366
- #: easy-fancybox-settings.php:394
367
- #: easy-fancybox-settings.php:422
368
- msgid "Linear"
369
- msgstr "Tiesinis"
370
-
371
- #: easy-fancybox-settings.php:395
372
- #: easy-fancybox-settings.php:423
373
- msgid "Swing"
374
- msgstr "Svyravimas"
375
-
376
- #: easy-fancybox-settings.php:396
377
- #: easy-fancybox-settings.php:424
378
- msgid "Back"
379
- msgstr "Grįžti"
380
-
381
- #: easy-fancybox-settings.php:397
382
- #: easy-fancybox-settings.php:425
383
- msgid "Quad"
384
- msgstr "Keturkryptis"
385
-
386
- #: easy-fancybox-settings.php:398
387
- #: easy-fancybox-settings.php:426
388
- msgid "Expo"
389
- msgstr "Vaizdavimas"
390
-
391
- #: easy-fancybox-settings.php:405
392
- msgid "Transition Out"
393
- msgstr "Pereiti iš"
394
-
395
- #: easy-fancybox-settings.php:418
396
- msgid "Easing Out"
397
- msgstr "Palengvinant"
398
-
399
- #: easy-fancybox-settings.php:429
400
- msgid "Easing effects only apply when Transition is set to Elastic. "
401
- msgstr "Palengvinimo efektai pritaikomi tik tuomet, kai Perėjimas nustatytas kaip Elastinis."
402
-
403
- #: easy-fancybox-settings.php:435
404
- msgid "Transparency fade during elastic transition."
405
- msgstr "Permatoma stelptis elastinio perėjimo metu."
406
-
407
- #: easy-fancybox-settings.php:441
408
- #: easy-fancybox-settings.php:549
409
- #: easy-fancybox-settings.php:668
410
- #: easy-fancybox-settings.php:767
411
- #: easy-fancybox-settings.php:861
412
- #: easy-fancybox-settings.php:956
413
- #: easy-fancybox-settings.php:1071
414
- msgid "Show title"
415
- msgstr "Rodyti antraštę"
416
-
417
- #: easy-fancybox-settings.php:445
418
- #: easy-fancybox-settings.php:553
419
- #: easy-fancybox-settings.php:672
420
- #: easy-fancybox-settings.php:771
421
- #: easy-fancybox-settings.php:865
422
- #: easy-fancybox-settings.php:960
423
- #: easy-fancybox-settings.php:1075
424
- msgid "Title Position"
425
- msgstr "Antraštės Pozicija"
426
-
427
- #: easy-fancybox-settings.php:449
428
- #: easy-fancybox-settings.php:557
429
- #: easy-fancybox-settings.php:676
430
- #: easy-fancybox-settings.php:775
431
- #: easy-fancybox-settings.php:869
432
- #: easy-fancybox-settings.php:964
433
- #: easy-fancybox-settings.php:1079
434
- msgid "Float"
435
- msgstr "Plūduriuoti"
436
-
437
- #: easy-fancybox-settings.php:450
438
- #: easy-fancybox-settings.php:558
439
- #: easy-fancybox-settings.php:677
440
- #: easy-fancybox-settings.php:776
441
- #: easy-fancybox-settings.php:870
442
- #: easy-fancybox-settings.php:965
443
- #: easy-fancybox-settings.php:1080
444
- msgid "Outside"
445
- msgstr "Išorėje"
446
-
447
- #: easy-fancybox-settings.php:451
448
- #: easy-fancybox-settings.php:559
449
- #: easy-fancybox-settings.php:678
450
- #: easy-fancybox-settings.php:777
451
- #: easy-fancybox-settings.php:871
452
- #: easy-fancybox-settings.php:966
453
- #: easy-fancybox-settings.php:1081
454
- msgid "Inside"
455
- msgstr "Viduje"
456
-
457
- #: easy-fancybox-settings.php:461
458
- #: easy-fancybox-settings.php:568
459
- #: easy-fancybox-settings.php:687
460
- #: easy-fancybox-settings.php:786
461
- #: easy-fancybox-settings.php:880
462
- #: easy-fancybox-settings.php:975
463
- #: easy-fancybox-settings.php:1090
464
- msgid "Allow title from thumbnail alt tag"
465
- msgstr "Leisti turinį iš miniatiūros alternatyviosiso gairės"
466
-
467
- #: easy-fancybox-settings.php:494
468
- msgid "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
469
- msgstr "Kad PDF dokumentai būtų atveriami perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-pdf\" dokumento nuorodoje."
470
-
471
- #: easy-fancybox-settings.php:494
472
- #: easy-fancybox-settings.php:611
473
- #: easy-fancybox-settings.php:702
474
- #: easy-fancybox-settings.php:805
475
- #: easy-fancybox-settings.php:900
476
- #: easy-fancybox-settings.php:1021
477
- msgid "Adjust its specific settings below."
478
- msgstr "Derinti specifines nuostatas žemiau."
479
-
480
- #: easy-fancybox-settings.php:611
481
- msgid "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
482
- msgstr "Kad Flash (.swf) rinkmena būtų atveriama perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-swf\" rinkmenos nuorodoje."
483
-
484
- #: easy-fancybox-settings.php:702
485
- msgid "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
486
- msgstr "Kad YouTube vaizdinė medžiaga būtų atveriama perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-youtube\" jų nuorodose."
487
-
488
- #: easy-fancybox-settings.php:720
489
- msgid "Auto-detect Short links"
490
- msgstr "Automatinio aptikimo Trumposios nuorodos"
491
-
492
- #: easy-fancybox-settings.php:805
493
- msgid "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
494
- msgstr "Kad Vimeo vaizdinė medžiaga būtų atveriama perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-vimeo\" jų nuorodose."
495
-
496
- #: easy-fancybox-settings.php:900
497
- msgid "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
498
- msgstr "Kad Dailymotion vaizdinė medžiaga būtų atveriama perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-dalymotion\" jų nuorodose."
499
-
500
- #: easy-fancybox-settings.php:1021
501
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
502
- msgstr "Kad svetainė ar html dokumentai būtų atveriami perdangos būsenoje, įjunkite automatinį aptikimą arba naudokite klasę \"fancybox-iframe\" jų nuorodose."
503
-
504
- #. Plugin Name of the plugin/theme
505
- msgid "Easy FancyBox"
506
- msgstr "Easy FancyBox"
507
-
508
- #. Plugin URI of the plugin/theme
509
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
510
- msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
511
-
512
- #. Description of the plugin/theme
513
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
514
- msgstr "Lengvai suaktyvinkite <a href=\"http://fancybox.net/\">FancyBox jQuery plėtinį</a> visų vaizdų, SWF, PDF, YouTube, Dailymotion ir Vimeo nuorodose. Taip pat palaiko IFrame ir įterptąjį turinį."
515
-
516
- #. Author of the plugin/theme
517
- msgid "RavanH"
518
- msgstr "RavanH"
519
-
520
- #. Author URI of the plugin/theme
521
- msgid "http://4visions.nl/"
522
- msgstr "http://4visions.nl/"
523
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-nl_NL.mo DELETED
Binary file
languages/easy-fancybox-nl_NL.po DELETED
@@ -1,1067 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2014-01-05 16:56+0100\n"
8
- "PO-Revision-Date: 2014-01-05 16:57+0100\n"
9
- "Last-Translator: RavanH <ravanhagen@gmail.com>\n"
10
- "Language-Team: <ravanhagen@gmail.com>\n"
11
- "Language: nl_NL\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
-
18
- #: ../easy-fancybox-class.php:341
19
- msgid "Donate to keep the Easy FancyBox plugin development going!"
20
- msgstr ""
21
- "Doneer om de ontwikkeling van de Easy FancyBox plugin gaande te houden!"
22
-
23
- #: ../easy-fancybox-class.php:341
24
- #, php-format
25
- msgid ""
26
- "The options in this section are provided by the plugin %s and determine the "
27
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
28
- "by %s."
29
- msgstr ""
30
- "De opties in deze secties worden verzorgd door de plugin %s en bepalen het "
31
- "uiterlijk en gedrag van de <strong>Media lichtbak</strong>, beheerd door %s."
32
-
33
- #: ../easy-fancybox-class.php:341
34
- msgid "Easy FancyBox"
35
- msgstr "Easy FancyBox"
36
-
37
- #: ../easy-fancybox-class.php:341 ../easy-fancybox-class.php:531
38
- #: ../easy-fancybox-class.php:571
39
- msgid "FancyBox"
40
- msgstr "FancyBox"
41
-
42
- #: ../easy-fancybox-class.php:341
43
- msgid ""
44
- "First enable each sub-section that you need. Then save and come back to "
45
- "adjust its specific settings."
46
- msgstr ""
47
- "Activeer eerst iedere sub-sectie die je nodig hebt. Sla vervolgens op en "
48
- "keer terug om specifieke instellingen te doen."
49
-
50
- #: ../easy-fancybox-class.php:341
51
- msgid ""
52
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
53
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
54
- "will have some extra impact on client-side page speed. Enable only those sub-"
55
- "sections and options that you actually need on your site."
56
- msgstr ""
57
- "Let op: Iedere sub-sectie en functie zoals <em>Auto-detectie</em>, "
58
- "<em>Elastische transities</em> en alle <em>Vloeiende effecten</em> (behalve "
59
- "Zwaai) heeft een extra impact op client-side browser snelheid. Activeer "
60
- "alleen die sub-secties en opties die je ook echt gebruikt op je site."
61
-
62
- #: ../easy-fancybox-class.php:341
63
- msgid ""
64
- "Some setting like Transition options are unavailable for SWF video, PDF and "
65
- "iFrame content to ensure browser compatibility and readability."
66
- msgstr ""
67
- "Sommige instellingen als Transities zijn niet beschikbaar voor SWF video, "
68
- "PDF en iFrame inhoud om browser compatibiliteit en leesbaarheid te "
69
- "waarborgen."
70
-
71
- #: ../easy-fancybox-class.php:385
72
- msgid "Checked"
73
- msgstr "Aangevinkt"
74
-
75
- #: ../easy-fancybox-class.php:387
76
- msgid "Unchecked"
77
- msgstr "Uitgevinkt"
78
-
79
- #: ../easy-fancybox-class.php:571
80
- msgid "Easy FancyBox Settings"
81
- msgstr "Instellingen voor Easy FancyBox"
82
-
83
- #: ../easy-fancybox-class.php:580
84
- msgid "Sections"
85
- msgstr "Secties"
86
-
87
- #: ../easy-fancybox-class.php:581 ../easy-fancybox-settings.php:9
88
- msgid "Global settings"
89
- msgstr "Algemene instellingen"
90
-
91
- #: ../easy-fancybox-class.php:582 ../easy-fancybox-settings.php:27
92
- #: ../easy-fancybox-settings.php:370
93
- msgid "Images"
94
- msgstr "Afbeeldingen"
95
-
96
- #: ../easy-fancybox-class.php:583 ../easy-fancybox-settings.php:34
97
- #: ../easy-fancybox-settings.php:633
98
- msgid "Inline content"
99
- msgstr "Inline inhoud"
100
-
101
- #: ../easy-fancybox-class.php:584 ../easy-fancybox-settings.php:41
102
- #: ../easy-fancybox-settings.php:743
103
- msgid "PDF"
104
- msgstr "PDF"
105
-
106
- #: ../easy-fancybox-class.php:585 ../easy-fancybox-settings.php:48
107
- #: ../easy-fancybox-settings.php:868
108
- msgid "SWF"
109
- msgstr "SWF"
110
-
111
- #: ../easy-fancybox-class.php:586 ../easy-fancybox-settings.php:62
112
- #: ../easy-fancybox-settings.php:1057
113
- msgid "YouTube"
114
- msgstr "YouTube"
115
-
116
- #: ../easy-fancybox-class.php:587 ../easy-fancybox-settings.php:69
117
- #: ../easy-fancybox-settings.php:1165
118
- msgid "Vimeo"
119
- msgstr "Vimeo"
120
-
121
- #: ../easy-fancybox-class.php:588 ../easy-fancybox-settings.php:76
122
- #: ../easy-fancybox-settings.php:1265
123
- msgid "Dailymotion"
124
- msgstr "Dailymotion"
125
-
126
- #: ../easy-fancybox-class.php:589 ../easy-fancybox-settings.php:83
127
- #: ../easy-fancybox-settings.php:1391
128
- msgid "iFrames"
129
- msgstr "iFrames"
130
-
131
- #: ../easy-fancybox-class.php:617
132
- msgid "Support"
133
- msgstr "Ondersteuning"
134
-
135
- #: ../easy-fancybox-class.php:618
136
- msgid "Resources"
137
- msgstr "Bronnen"
138
-
139
- #: ../easy-fancybox-class.php:620
140
- msgid "Credits"
141
- msgstr "Met dank aan"
142
-
143
- #: ../easy-fancybox-settings.php:14
144
- msgid "Media"
145
- msgstr "Media"
146
-
147
- #: ../easy-fancybox-settings.php:20
148
- msgid "Enable FancyBox for"
149
- msgstr "Activeer FancyBox voor"
150
-
151
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
152
- msgid "SVG"
153
- msgstr "SVG"
154
-
155
- #: ../easy-fancybox-settings.php:86
156
- msgid ""
157
- "For advanced options and support, please get the Easy FancyBox - Pro "
158
- "extension."
159
- msgstr ""
160
- "Schaf de Easy FancyBox Pro versie aan voor geavanceerde opties en "
161
- "ondersteuning."
162
-
163
- #: ../easy-fancybox-settings.php:95
164
- msgid "Exclude"
165
- msgstr "Uitsluiten"
166
-
167
- #: ../easy-fancybox-settings.php:101
168
- msgid "Empty (hidden) links"
169
- msgstr "Lege (verborgen) koppelingen"
170
-
171
- #: ../easy-fancybox-settings.php:102
172
- msgid "Without thumbnail image"
173
- msgstr "Zonder miniatuurafbeelding"
174
-
175
- #: ../easy-fancybox-settings.php:109
176
- msgid "Open on page load"
177
- msgstr "Openen bij het laden van de pagina"
178
-
179
- #: ../easy-fancybox-settings.php:115
180
- msgid "Link with ID \"fancybox-auto\""
181
- msgstr "Koppeling met ID \"fancybox-auto\""
182
-
183
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
184
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
185
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
186
- #: ../easy-fancybox-settings.php:723
187
- msgid "More options &raquo;"
188
- msgstr "Meer opties &raquo;"
189
-
190
- #: ../easy-fancybox-settings.php:125
191
- msgid ""
192
- "Include the Metadata jQuery extension script to allow passing custom "
193
- "parameters via link class."
194
- msgstr ""
195
- "Sluit de Metadata jQuery extensie bij om aangepaste parameters via link "
196
- "class te kunnen doorgeven."
197
-
198
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
199
- msgid "Overlay"
200
- msgstr "Bedekking"
201
-
202
- #: ../easy-fancybox-settings.php:139
203
- msgid "Show the overlay around content opened in FancyBox."
204
- msgstr "Toon de bedekking rond inhoud geopend in FancyBox."
205
-
206
- #: ../easy-fancybox-settings.php:146
207
- msgid "Close FancyBox when overlay is clicked."
208
- msgstr "Sluit FancyBox als bedekking wordt aangeklikt."
209
-
210
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
211
- msgid "Opacity"
212
- msgstr "Ondoorzichtigheid"
213
-
214
- #: ../easy-fancybox-settings.php:158
215
- msgid "Value between 0 and 1. "
216
- msgstr "Waarde tussen 0 en 1. "
217
-
218
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
219
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
220
- #: ../easy-fancybox-settings.php:595
221
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
222
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
223
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
224
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
225
- msgid "Default:"
226
- msgstr "Standaard:"
227
-
228
- #: ../easy-fancybox-settings.php:162
229
- msgid "Color"
230
- msgstr "Kleur"
231
-
232
- #: ../easy-fancybox-settings.php:167
233
- msgid "Enter an HTML color value."
234
- msgstr "Voer een HTML kleurwaarde in."
235
-
236
- #: ../easy-fancybox-settings.php:175
237
- msgid "Spotlight effect"
238
- msgstr "Schijnwerper effect"
239
-
240
- #: ../easy-fancybox-settings.php:180
241
- msgid "Window"
242
- msgstr "Raam"
243
-
244
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
245
- msgid "Appearance"
246
- msgstr "Uiterlijk"
247
-
248
- #: ../easy-fancybox-settings.php:193
249
- msgid "Show the (X) close button"
250
- msgstr "Toon de (X) afsluit-knop"
251
-
252
- #: ../easy-fancybox-settings.php:198
253
- msgid "Background color"
254
- msgstr "Achtergrondkleur"
255
-
256
- #: ../easy-fancybox-settings.php:208
257
- msgid "Border color"
258
- msgstr "Randkleur"
259
-
260
- #: ../easy-fancybox-settings.php:218
261
- msgid "Text color"
262
- msgstr "Tekstkleur"
263
-
264
- #: ../easy-fancybox-settings.php:223 ../easy-fancybox-settings.php:236
265
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
266
- #: ../easy-fancybox-settings.php:613
267
- msgid "Make available &raquo;"
268
- msgstr "Maak beschikbaar &raquo;"
269
-
270
- #: ../easy-fancybox-settings.php:241
271
- msgid "Border radius"
272
- msgstr "Hoekronding"
273
-
274
- #: ../easy-fancybox-settings.php:249
275
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
276
- msgid "Set a border radius to create rounded corners. Higher is rounder."
277
- msgstr "Voer een waarde voor hoekrondingen in. Hoger is ronder."
278
-
279
- #: ../easy-fancybox-settings.php:254
280
- msgid "Dimensions"
281
- msgstr "Afmetingen"
282
-
283
- #: ../easy-fancybox-settings.php:286
284
- msgid ""
285
- "If content size is not set or cannot be determined automatically, these "
286
- "default dimensions will be used."
287
- msgstr ""
288
- "Als de inhoud geen detecteerbare afmetingen heeft, worden deze "
289
- "standaardwaarden gebruikt."
290
-
291
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
292
- msgid "Behavior"
293
- msgstr "Gedrag"
294
-
295
- #: ../easy-fancybox-settings.php:298
296
- msgid "Center while scrolling"
297
- msgstr "Centreren bij scrollen"
298
-
299
- #: ../easy-fancybox-settings.php:305
300
- msgid "Esc key stroke closes FancyBox"
301
- msgstr "Esc-toets sluit FancyBox"
302
-
303
- #: ../easy-fancybox-settings.php:312
304
- msgid "Scale large content down to fit in the browser viewport."
305
- msgstr "Inhoud terug schalen wanneer het groter is dan het browservenster."
306
-
307
- #: ../easy-fancybox-settings.php:316
308
- msgid "Opening speed"
309
- msgstr "Snelheid bij openen"
310
-
311
- #: ../easy-fancybox-settings.php:328
312
- msgid "Closing speed"
313
- msgstr "Snelheid bij sluiten"
314
-
315
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
316
- msgid "Duration in milliseconds. Higher is slower."
317
- msgstr "Duur in miliseconden. Hoger is langzamer."
318
-
319
- #: ../easy-fancybox-settings.php:375
320
- msgid ""
321
- "To make images open in an overlay, add their extension to the Autodetect "
322
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
323
- "all autodetection."
324
- msgstr ""
325
- "Om afbeeldingen in de lichtbak te openen, voeg hun extensie toe aan het veld "
326
- "auto-detectie of gebruik de class \"fancybox\" voor de koppeling. Wis dit "
327
- "veld om auto-detectie uit te schakelen."
328
-
329
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
330
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
331
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
332
- #: ../easy-fancybox-settings.php:1279
333
- msgid "Autodetect"
334
- msgstr "Auto-detectie"
335
-
336
- #: ../easy-fancybox-settings.php:397
337
- msgid "Example:"
338
- msgstr "Voorbeeld:"
339
-
340
- #: ../easy-fancybox-settings.php:401
341
- msgid "Apply to"
342
- msgstr "Pas toe op"
343
-
344
- #: ../easy-fancybox-settings.php:406
345
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
346
- msgid "All image links"
347
- msgstr "Alle afbeeldingskoppelingen"
348
-
349
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
350
- msgid "Transition In"
351
- msgstr "Transitie In"
352
-
353
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
354
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
355
- msgid "Fade"
356
- msgstr "Vervaging"
357
-
358
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
359
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
360
- msgid "Elastic"
361
- msgstr "Elastisch"
362
-
363
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
364
- msgid "Easing In"
365
- msgstr "Vloeiing In"
366
-
367
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
368
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
369
- msgid "Linear"
370
- msgstr "Lineair"
371
-
372
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
373
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
374
- msgid "Swing"
375
- msgstr "Zwaai"
376
-
377
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
378
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
379
- msgid "easeInBack"
380
- msgstr ""
381
-
382
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
383
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
384
- msgid "easeOutBack"
385
- msgstr ""
386
-
387
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
388
- msgid "Transition Out"
389
- msgstr "Transitie Uit"
390
-
391
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
392
- msgid "Easing Out"
393
- msgstr "Vloeiing Uit"
394
-
395
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
396
- #: ../easy-fancybox-settings.php:723
397
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
398
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
399
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
400
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
401
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
402
- msgid "Note:"
403
- msgstr "Let op:"
404
-
405
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
406
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
407
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
408
- msgid "Easing effects only apply when Transition is set to Elastic. "
409
- msgstr ""
410
- "Vloeiende effecten zijn alleen van toepassing als Elastische transities zijn "
411
- "ingeschakeld. "
412
-
413
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
414
- msgid ""
415
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
416
- "Transition In is set to Elastic!"
417
- msgstr ""
418
- "Transparantievervaging bij elastische transitie. LET OP: Gebruik alleen als "
419
- "ten minsten Transitie In op Elastisch staat!"
420
-
421
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
422
- msgid "Close FancyBox when content is clicked"
423
- msgstr "Sluit FancyBox als de inhoud wordt aangeklikt"
424
-
425
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
426
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
427
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
428
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
429
- msgid "Show title"
430
- msgstr "Toon titel"
431
-
432
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
433
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
434
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
435
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
436
- msgid "Title Position"
437
- msgstr "Titel Positie"
438
-
439
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
440
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
441
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
442
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
443
- msgid "Float"
444
- msgstr "Drijvend"
445
-
446
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
447
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
448
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
449
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
450
- msgid "Outside"
451
- msgstr "Buiten"
452
-
453
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
454
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
455
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
456
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
457
- msgid "Inside"
458
- msgstr "Binnen"
459
-
460
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
461
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
462
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
463
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
464
- msgid "Allow title from thumbnail alt tag"
465
- msgstr "Sta titel uit miniatuur \"alt\" attribuut toe"
466
-
467
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
468
- msgid "Advanced"
469
- msgstr "Geavanceerd"
470
-
471
- #: ../easy-fancybox-settings.php:521
472
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
473
- msgid "Hide/show title on mouse hover action"
474
- msgstr "Titel verbergen/tonen bij muis-over actie"
475
-
476
- #: ../easy-fancybox-settings.php:528
477
- msgid "Gallery"
478
- msgstr "Galerij"
479
-
480
- #: ../easy-fancybox-settings.php:532
481
- msgid "Autogallery"
482
- msgstr "Auto-galerij"
483
-
484
- #: ../easy-fancybox-settings.php:538
485
- msgid "WordPress galleries only"
486
- msgstr "Alleen WordPress galerijen"
487
-
488
- #: ../easy-fancybox-settings.php:539
489
- msgid "All in one gallery"
490
- msgstr "Allemaal in één galerij"
491
-
492
- #: ../easy-fancybox-settings.php:542
493
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
494
- msgid ""
495
- "When disabled, you can use the rel attribute to manually group image links "
496
- "together."
497
- msgstr ""
498
- "Wanneer uitgeschakeld kun je het \"rel\" attribuut gebruiken om afbeelding "
499
- "handmatig te groeperen."
500
-
501
- #: ../easy-fancybox-settings.php:549
502
- msgid "Show the gallery navigation arrows"
503
- msgstr "Toon galerij navigatiepijltjes"
504
-
505
- #: ../easy-fancybox-settings.php:556
506
- msgid "Arrow key strokes browse the gallery"
507
- msgstr "Pijltjestoetsen bladeren door FancyBox galerij"
508
-
509
- #: ../easy-fancybox-settings.php:563
510
- msgid ""
511
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
512
- "mousewheel action."
513
- msgstr ""
514
- "Sluit de Mousewheel jQuery extensie bij zodat met de muiswiel door galerijen "
515
- "gescrold kan worden."
516
-
517
- #: ../easy-fancybox-settings.php:570
518
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
519
- msgstr ""
520
- "Maak galerijen cyclisch, zodat je voor- en achteruit kunt blijven bladeren."
521
-
522
- #: ../easy-fancybox-settings.php:574
523
- msgid "Change speed"
524
- msgstr "Snelheid bij vervangen"
525
-
526
- #: ../easy-fancybox-settings.php:586
527
- msgid "Fade speed"
528
- msgstr "Snelheid bij vervagen"
529
-
530
- #: ../easy-fancybox-settings.php:602
531
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
532
- msgid "Galleries per Section (below)"
533
- msgstr "Galerijen per Sectie (hieronder)"
534
-
535
- #: ../easy-fancybox-settings.php:602
536
- msgid ""
537
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
538
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
539
- "it to conform with your theme."
540
- msgstr ""
541
- "Dit geldt wanneer <em>Pas toe op</em> is beperkt tot <em>Alleen koppelingen "
542
- "binnen secties</em> en/of <em>Auto-galerij</em> op <em>Galerijen per Sectie</"
543
- "em> staat. Pas dit aan aan je thema."
544
-
545
- #: ../easy-fancybox-settings.php:602
546
- msgid ""
547
- "Examples: If your theme wraps post content in a div with class post, change "
548
- "this value to \"div.post\". If you only want to group images in a WordPress "
549
- "gallery together, use \"div.gallery\". If you want to include images in a "
550
- "sidebar with ID primary, add \", #primary\"."
551
- msgstr ""
552
- "Voorbeelden: Als je thema artikelen in een div met class post plaatst, maak "
553
- "deze waarde dan \"div.post\". Als je alleen afbeeldingen in een WordPress "
554
- "galerij wil groeperen, gebruik \"div.gallery\". Als je afbeeldingen in de "
555
- "zijbalk met ID primary wil meenemen, voeg dan \", #primary\" toe."
556
-
557
- #: ../easy-fancybox-settings.php:602
558
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
559
- msgid ""
560
- "Hide/show title on mouse hover action works best with Overlay title position."
561
- msgstr ""
562
- "Titel verbergen/tonen bij muis-over actie werkt het beste met titel-positie "
563
- "Bedekking."
564
-
565
- #: ../easy-fancybox-settings.php:602
566
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
567
- msgid "Auto-rotation uses a fixed 3, 6, 9 or 12 second pause per image."
568
- msgstr ""
569
- "Auto-rotatie gebruikt vaste pauses van 3, 6, 9 of 12 seconden per afbeelding."
570
-
571
- #: ../easy-fancybox-settings.php:602
572
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
573
- msgid "(3 seconds)"
574
- msgstr "(3 seconden)"
575
-
576
- #: ../easy-fancybox-settings.php:602
577
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
578
- msgid "(6 seconds)"
579
- msgstr "(6 seconden)"
580
-
581
- #: ../easy-fancybox-settings.php:602
582
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
583
- msgid "(9 seconds)"
584
- msgstr "(9 seconden)"
585
-
586
- #: ../easy-fancybox-settings.php:602
587
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
588
- msgid "(12 seconds)"
589
- msgstr "(12 seconden)"
590
-
591
- #: ../easy-fancybox-settings.php:610
592
- msgid "Slideshow"
593
- msgstr "Diashow"
594
-
595
- #: ../easy-fancybox-settings.php:638
596
- msgid ""
597
- "To make inline content open in an overlay, wrap that content in a div with a "
598
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
599
- "\"fancybox-inline\" attribute."
600
- msgstr ""
601
- "Om inline inhoud in een lightbox weer te geven, plaats het dan in een div "
602
- "met een unieke ID, maak een link naar \"#uniqueID\" en geef het een class="
603
- "\"fancybox-inline\" attribuut."
604
-
605
- #: ../easy-fancybox-settings.php:656
606
- msgid ""
607
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
608
- "determined, the default dimensions will be used."
609
- msgstr ""
610
- "Probeer de grootte aan te passen aan inline/html inhoud. Indien "
611
- "uitgeschakeld of als de grootte niet bepaald kan worden, worden de standaard "
612
- "afmetingen gebruikt."
613
-
614
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
615
- msgid "Scrolling"
616
- msgstr "Scrollen"
617
-
618
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
619
- msgid "Auto"
620
- msgstr "Auto"
621
-
622
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
623
- msgid "Always"
624
- msgstr "Altijd"
625
-
626
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
627
- msgid "Never"
628
- msgstr "Nooit"
629
-
630
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
631
- msgid "Define scrolling and scrollbar visibility."
632
- msgstr "Bepaal scrollen en zichtbaarheid van de schijfbalken."
633
-
634
- #: ../easy-fancybox-settings.php:748
635
- msgid ""
636
- "To make any PDF document file open in an overlay, switch on Autodetect or "
637
- "use the class \"fancybox-pdf\" for its link."
638
- msgstr ""
639
- "Schakel, om PDF documenten in de lichtbak te openen, auto-detectie in of "
640
- "gebruik class \"fancybox-pdf\" voor de koppeling."
641
-
642
- #: ../easy-fancybox-settings.php:873
643
- msgid ""
644
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
645
- "use the class \"fancybox-swf\" for its link."
646
- msgstr ""
647
- "Schakel, om Flash (.swf) bestanden in de lichtbak te openen, auto-detectie "
648
- "in of gebruik class \"fancybox-swf\" voor de koppeling."
649
-
650
- #: ../easy-fancybox-settings.php:967
651
- msgid ""
652
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
653
- "the class \"fancybox-svg\" for its link."
654
- msgstr ""
655
- "Schakel, om SVG (.svg) bestanden in de lichtbak te openen, auto-detectie in "
656
- "of gebruik class \"fancybox-svg\" voor de koppeling."
657
-
658
- #: ../easy-fancybox-settings.php:1062
659
- msgid ""
660
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
661
- "the class \"fancybox-youtube\" for its link."
662
- msgstr ""
663
- "Schakel, om YouTube films in de lichtbak te openen, auto-detectie in of "
664
- "gebruik class \"fancybox-youtube\" voor de koppeling."
665
-
666
- #: ../easy-fancybox-settings.php:1080
667
- msgid "Autodetect Short links"
668
- msgstr "Auto-detectie van Short links"
669
-
670
- #: ../easy-fancybox-settings.php:1170
671
- msgid ""
672
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
673
- "class \"fancybox-vimeo\" for its link."
674
- msgstr ""
675
- "Schakel, om Vimeo films in de lichtbak te openen, auto-detectie in of "
676
- "gebruik class \"fancybox-vimeo\" voor de koppeling."
677
-
678
- #: ../easy-fancybox-settings.php:1270
679
- msgid ""
680
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
681
- "use the class \"fancybox-dailymotion\" for its link."
682
- msgstr ""
683
- "Schakel, om Dailymotion films in de lichtbak te openen, auto-detectie in of "
684
- "gebruik class \"fancybox-dailymotion\" voor de koppeling."
685
-
686
- #: ../easy-fancybox-settings.php:1396
687
- msgid ""
688
- "To make a website or HTML document open in an overlay, use the class "
689
- "\"fancybox-iframe\" for its link."
690
- msgstr ""
691
- "Gebruik, om een website of HTML document in de lichtbak te openen, de class "
692
- "\"fancybox-iframe\" voor zijn koppeling."
693
-
694
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
695
- msgid ""
696
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
697
- "available."
698
- msgstr ""
699
- "Dank voor de aanschaf van de Easy FancyBox - Pro extensie. Nieuwe opties "
700
- "zijn beschikbaar."
701
-
702
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
703
- msgid "Get support here."
704
- msgstr "Vind hier hulp."
705
-
706
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
707
- msgid "First Image link"
708
- msgstr "Eerste afbeeldingskoppeling"
709
-
710
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
711
- msgid "First PDF link"
712
- msgstr "Eerste PDF-koppeling"
713
-
714
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
715
- msgid "First SWF link"
716
- msgstr "Eerste SWF-koppeling"
717
-
718
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
719
- msgid "First SVG link"
720
- msgstr "Eerste SVG-koppeling"
721
-
722
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
723
- msgid "First YouTube link "
724
- msgstr "Eerste YouTube-koppeling"
725
-
726
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
727
- msgid "First Vimeo link "
728
- msgstr "Eerste Vimeo-koppeling"
729
-
730
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
731
- msgid "First Dailymotion link "
732
- msgstr "Eerste Dailymotion-koppeling"
733
-
734
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
735
- msgid "First iFrame link"
736
- msgstr "Eerste iFrame-koppeling"
737
-
738
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
739
- msgid "First of any link"
740
- msgstr "Eerste koppeling"
741
-
742
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
743
- msgid "Links inside Section(s) only (below)"
744
- msgstr "Alleen koppelingen binnen Sectie(s)"
745
-
746
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
747
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
748
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
749
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
750
- msgid "easeInQuad"
751
- msgstr ""
752
-
753
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
754
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
755
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
756
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
757
- msgid "easeOutQuad"
758
- msgstr ""
759
-
760
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
761
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
762
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
764
- msgid "easeInOutQuad"
765
- msgstr ""
766
-
767
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
768
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
769
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
770
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
771
- msgid "easeInCubic"
772
- msgstr ""
773
-
774
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
776
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
777
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
778
- msgid "easeOutCubic"
779
- msgstr ""
780
-
781
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
782
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
784
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
785
- msgid "easeInOutCubic"
786
- msgstr ""
787
-
788
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
789
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
792
- msgid "easeInQuart"
793
- msgstr ""
794
-
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
799
- msgid "easeOutQuart"
800
- msgstr ""
801
-
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
806
- msgid "easeInOutQuart"
807
- msgstr ""
808
-
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
813
- msgid "easeInQuint"
814
- msgstr ""
815
-
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
820
- msgid "easeOutQuint"
821
- msgstr ""
822
-
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
827
- msgid "easeInOutQuint"
828
- msgstr ""
829
-
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
834
- msgid "easeInSine"
835
- msgstr ""
836
-
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
841
- msgid "easeOutSine"
842
- msgstr ""
843
-
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
848
- msgid "easeInOutSine"
849
- msgstr ""
850
-
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
855
- msgid "easeInExpo"
856
- msgstr ""
857
-
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
862
- msgid "easeOutExpo"
863
- msgstr ""
864
-
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
869
- msgid "easeInOutExpo"
870
- msgstr ""
871
-
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
876
- msgid "easeInCirc"
877
- msgstr ""
878
-
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
883
- msgid "easeOutCirc"
884
- msgstr ""
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
890
- msgid "easeInOutCirc"
891
- msgstr ""
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
897
- msgid "easeInElastic"
898
- msgstr ""
899
-
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
904
- msgid "easeOutElastic"
905
- msgstr ""
906
-
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
911
- msgid "easeInOutElastic"
912
- msgstr ""
913
-
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
918
- msgid "easeInOutBack"
919
- msgstr ""
920
-
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
925
- msgid "easeInBounce"
926
- msgstr ""
927
-
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
932
- msgid "easeOutBounce"
933
- msgstr ""
934
-
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:297
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:330
939
- msgid "easeInOutBounce"
940
- msgstr ""
941
-
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
943
- msgid "Section(s)"
944
- msgstr "Sectie(s)"
945
-
946
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
947
- msgid ""
948
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
949
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
950
- "it to conform with your theme."
951
- msgstr ""
952
- "Dit geldt wanneer <em>Pas toe op</em> is beperkt tot <em>Alleen koppelingen "
953
- "binnen secties</em> en/of <em>Auto-galerij</em> op <em>Galerijen per Sectie</"
954
- "em> staat. Pas dit aan aan je thema."
955
-
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
957
- msgid ""
958
- "Examples: If your theme wraps post content in a div with class post, change "
959
- "this value to \"div.post\". If you want to include images in a sidebar with "
960
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
961
- "you only want to group images in a WordPress gallery together, use \"div."
962
- "gallery\". If you want to include images in a sidebar with ID primary, add "
963
- "\", #primary\"."
964
- msgstr ""
965
- "Voorbeelden: Als je thema artikelen in een div met class post plaatst, maak "
966
- "deze waarde dan \"div.post\". Als je afbeeldingen in een sidebar met ID "
967
- "primary wilt meenemen, voeg dan \", div#primary\" of \"aside#primary\" voor "
968
- "html5 thema's toe. Als je alleen afbeeldingen in een WordPress galerij wil "
969
- "groeperen, gebruik \"div.gallery\". Als je afbeeldingen in de zijbalk met ID "
970
- "primary wil meenemen, voeg dan \", #primary\" toe."
971
-
972
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
974
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
975
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
976
- msgid "Gallery Auto-rotation"
977
- msgstr "Galerij auto-rotatie"
978
-
979
- #~ msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
980
- #~ msgstr ""
981
- #~ "De diashow gebruikt vaste pauzes van 6, 8 of 12 seconden per afbeelding."
982
-
983
- #~ msgid "(8 seconds)"
984
- #~ msgstr "(8 seconden)"
985
-
986
- #~ msgid "Links"
987
- #~ msgstr "Koppelingen"
988
-
989
- #~ msgid "None"
990
- #~ msgstr "Geen"
991
-
992
- #~ msgid "Width"
993
- #~ msgstr "Breedte"
994
-
995
- #~ msgid "Height"
996
- #~ msgstr "Hoogte"
997
-
998
- #~ msgid "Border"
999
- #~ msgstr "Rand"
1000
-
1001
- #~ msgid "Disabled"
1002
- #~ msgstr "Uitgeschakeld"
1003
-
1004
- #~ msgid ""
1005
- #~ "Leave the mousewheel option (below) unchecked when you do not use "
1006
- #~ "FancyBox for galleries on your site."
1007
- #~ msgstr ""
1008
- #~ "Laat de muiswiel optie (hieronder) uitgeschakeld als je geen FancyBox "
1009
- #~ "galerijen op je site gebruikt."
1010
-
1011
- #~ msgid "Settings"
1012
- #~ msgstr "Algemene instellingen"
1013
-
1014
- #~ msgid "Discussion"
1015
- #~ msgstr "Discussie"
1016
-
1017
- #~ msgid "Adjust its specific settings below."
1018
- #~ msgstr "Verander specifieke instelling hieronder."
1019
-
1020
- #~ msgid "Auto-detect"
1021
- #~ msgstr "Automatische detectie"
1022
-
1023
- #~ msgid ""
1024
- #~ "For advanced options and support, please purchase the Easy FancyBox Pro "
1025
- #~ "version."
1026
- #~ msgstr ""
1027
- #~ "Schaf de Easy FancyBox Pro versie aan voor geavanceerde opties en "
1028
- #~ "ondersteuning."
1029
-
1030
- #~ msgid "Back"
1031
- #~ msgstr "Veer"
1032
-
1033
- #~ msgid "Auto-open"
1034
- #~ msgstr "Auto-openen"
1035
-
1036
- #~ msgid "Transparency fade during elastic transition."
1037
- #~ msgstr "Transparantie-vervaging gedurende elastische transitie."
1038
-
1039
- #~ msgid "Size"
1040
- #~ msgstr "Grootte"
1041
-
1042
- #~ msgid "Text"
1043
- #~ msgstr "Tekst"
1044
-
1045
- #~ msgid "Quad"
1046
- #~ msgstr "Quad"
1047
-
1048
- #~ msgid "Expo"
1049
- #~ msgstr "Expo"
1050
-
1051
- #~ msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
1052
- #~ msgstr "http://4visions.nl/wordpress-plugins/easy-fancybox/"
1053
-
1054
- #~ msgid ""
1055
- #~ "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery "
1056
- #~ "extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo "
1057
- #~ "links. Also supports iFrame and inline content."
1058
- #~ msgstr ""
1059
- #~ "Activeer eenvoudig de <a href=\"http://fancybox.net/\">FancyBox jQuery "
1060
- #~ "extensie</a> voor alle afbeeldingen, SWF, PDF, YouTube, Dailymotion en "
1061
- #~ "Vimeo koppelingen. Onderteunt ook iFrame en inline inhoud."
1062
-
1063
- #~ msgid "RavanH"
1064
- #~ msgstr "RavanH"
1065
-
1066
- #~ msgid "http://4visions.nl/"
1067
- #~ msgstr "http://4visions.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-pl_PL.po DELETED
@@ -1,526 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
7
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-03-01 15:54+0100\n"
12
- "Last-Translator: Kamil Szymański <kamilszymanski@gmail.com>\n"
13
- "Language-Team: Kamil Szymański <LL@li.org>\n"
14
- "X-Poedit-Language: Polish\n"
15
- "X-Poedit-Country: POLAND\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #: easy-fancybox.php:266
19
- msgid "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
20
- msgstr "Wesprzyj rozwój wtyczki Easy FancyBox za pomocą PayPal - szybko, za darmo i bezpiecznie."
21
-
22
- #: easy-fancybox.php:266
23
- msgid "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
24
- msgstr "Opcji w tej sekcji dostarcza plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong>. Zmieniają one wygląd efektu <strong>Lightbox</strong> oraz jego zachowanie, przy użyciu <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
25
-
26
- #: easy-fancybox.php:266
27
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
28
- msgstr "Włącz najpierw każda z podsekcji, której potrzebujesz. Następnie zapisz zmiany i wróć, aby dostosować wybrane opcje."
29
-
30
- #: easy-fancybox.php:266
31
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
32
- msgstr "Uwaga: każda dodatkowa podsekcja i opcje, jak <em>autowykrywanie</em>, <em>Elastyczne przejścia</em> oraz wszystkie <em>Efekty easing</em> (poza Obrotem) będą miały dodatkowy wpływ na szbkość działania strony u klienta. Włącz tylko te sekcje i opcje, których naprawdę porzebujesz na swojej stronie."
33
-
34
- #: easy-fancybox.php:266
35
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
36
- msgstr "Niekóre ustawienia, jak opcje Przejścia, nie są dostępne dla ilmów SWF, plików PDF oraz zawartości iFrame, aby zmaksymalizować zgodność z przeglądarkami i czytelność."
37
-
38
- #: easy-fancybox.php:308
39
- msgid "Checked"
40
- msgstr "Zaznaczone"
41
-
42
- #: easy-fancybox.php:310
43
- msgid "Unchecked"
44
- msgstr "Niezaznaczone"
45
-
46
- #: easy-fancybox.php:362
47
- msgid "FancyBox"
48
- msgstr "FancyBox"
49
-
50
- #: easy-fancybox-settings.php:6
51
- msgid "Global settings"
52
- msgstr "Ustawienia globalne"
53
-
54
- #: easy-fancybox-settings.php:15
55
- msgid "Enable FancyBox for"
56
- msgstr "Włącz FancyBox dla"
57
-
58
- #: easy-fancybox-settings.php:24
59
- #: easy-fancybox-settings.php:316
60
- msgid "Images & Inline content"
61
- msgstr "Zdjęcia i zawartość inline"
62
-
63
- #: easy-fancybox-settings.php:31
64
- #: easy-fancybox-settings.php:489
65
- msgid "PDF"
66
- msgstr "PDF"
67
-
68
- #: easy-fancybox-settings.php:38
69
- #: easy-fancybox-settings.php:606
70
- msgid "SWF"
71
- msgstr "SWF"
72
-
73
- #: easy-fancybox-settings.php:45
74
- #: easy-fancybox-settings.php:697
75
- msgid "YouTube"
76
- msgstr "YouTube"
77
-
78
- #: easy-fancybox-settings.php:52
79
- #: easy-fancybox-settings.php:800
80
- msgid "Vimeo"
81
- msgstr "Vimeo"
82
-
83
- #: easy-fancybox-settings.php:59
84
- #: easy-fancybox-settings.php:895
85
- msgid "Dailymotion"
86
- msgstr "Dailymotion"
87
-
88
- #: easy-fancybox-settings.php:66
89
- #: easy-fancybox-settings.php:1016
90
- msgid "iFrames"
91
- msgstr "Ramki iFrame"
92
-
93
- #: easy-fancybox-settings.php:71
94
- msgid "Links"
95
- msgstr "Odnośniki"
96
-
97
- #: easy-fancybox-settings.php:81
98
- msgid "Exclude"
99
- msgstr "Wyłącz"
100
-
101
- #: easy-fancybox-settings.php:86
102
- #: easy-fancybox-settings.php:100
103
- #: easy-fancybox-settings.php:295
104
- #: easy-fancybox-settings.php:383
105
- #: easy-fancybox-settings.php:411
106
- msgid "None"
107
- msgstr "Brak"
108
-
109
- #: easy-fancybox-settings.php:87
110
- msgid "Empty (hidden) links"
111
- msgstr "Puste (ukryte) linki"
112
-
113
- #: easy-fancybox-settings.php:88
114
- msgid "Without thumbnail image"
115
- msgstr "Bez obrazka miniaturki"
116
-
117
- #: easy-fancybox-settings.php:95
118
- msgid "Auto-open"
119
- msgstr "Autootwieranie"
120
-
121
- #: easy-fancybox-settings.php:101
122
- msgid "Link with ID \"fancybox-auto\""
123
- msgstr "Odnośnik z ID \"fancybox-auto\""
124
-
125
- #: easy-fancybox-settings.php:102
126
- msgid "First Image link"
127
- msgstr "Pierwszy link do zdjęcia"
128
-
129
- #: easy-fancybox-settings.php:103
130
- msgid "First PDF link"
131
- msgstr "Pierwszy link do PDFa"
132
-
133
- #: easy-fancybox-settings.php:104
134
- msgid "First SWF link"
135
- msgstr "Pierwszy link do SWF"
136
-
137
- #: easy-fancybox-settings.php:105
138
- msgid "First YouTube link "
139
- msgstr "Pierwszy link YouTube"
140
-
141
- #: easy-fancybox-settings.php:106
142
- msgid "First Vimeo link "
143
- msgstr "Pierwszy link Vimeo"
144
-
145
- #: easy-fancybox-settings.php:107
146
- msgid "First Dailymotion link "
147
- msgstr "Pierwszy link Dailymotion"
148
-
149
- #: easy-fancybox-settings.php:108
150
- msgid "First iFrame link"
151
- msgstr "Pierwszy link iFrame"
152
-
153
- #: easy-fancybox-settings.php:109
154
- msgid "First of any link"
155
- msgstr "Pierwszy, dowolny link"
156
-
157
- #: easy-fancybox-settings.php:117
158
- #: easy-fancybox-settings.php:452
159
- msgid "Overlay"
160
- msgstr "Overlay"
161
-
162
- #: easy-fancybox-settings.php:125
163
- msgid "Show the overlay around content opened in FancyBox."
164
- msgstr "Pokazuje nakładkę wokół zawartości otwartej przy pomocy FancyBox."
165
-
166
- #: easy-fancybox-settings.php:132
167
- msgid "Spotlight effect."
168
- msgstr "Efekt reflektora."
169
-
170
- #: easy-fancybox-settings.php:136
171
- #: easy-fancybox-settings.php:227
172
- msgid "Opacity"
173
- msgstr "Przezroczystość"
174
-
175
- #: easy-fancybox-settings.php:141
176
- msgid "Value between 0 and 1. "
177
- msgstr "Wartość między 0 a 1."
178
-
179
- #: easy-fancybox-settings.php:141
180
- #: easy-fancybox-settings.php:150
181
- #: easy-fancybox-settings.php:188
182
- #: easy-fancybox-settings.php:232
183
- #: easy-fancybox-settings.php:283
184
- #: easy-fancybox-settings.php:332
185
- #: easy-fancybox-settings.php:345
186
- #: easy-fancybox-settings.php:369
187
- msgid "Default:"
188
- msgstr "Domyślnie:"
189
-
190
- #: easy-fancybox-settings.php:145
191
- #: easy-fancybox-settings.php:192
192
- msgid "Color"
193
- msgstr "Kolor"
194
-
195
- #: easy-fancybox-settings.php:150
196
- msgid "Enter an HTML color value."
197
- msgstr "Wprowadź wartość koloru HTML."
198
-
199
- #: easy-fancybox-settings.php:156
200
- msgid "Window"
201
- msgstr "Okno"
202
-
203
- #: easy-fancybox-settings.php:162
204
- msgid "Size"
205
- msgstr "Rozmiar"
206
-
207
- #: easy-fancybox-settings.php:166
208
- #: easy-fancybox-settings.php:517
209
- #: easy-fancybox-settings.php:634
210
- #: easy-fancybox-settings.php:735
211
- #: easy-fancybox-settings.php:829
212
- #: easy-fancybox-settings.php:924
213
- #: easy-fancybox-settings.php:1036
214
- msgid "Width"
215
- msgstr "Szerokość"
216
-
217
- #: easy-fancybox-settings.php:175
218
- #: easy-fancybox-settings.php:526
219
- #: easy-fancybox-settings.php:644
220
- #: easy-fancybox-settings.php:744
221
- #: easy-fancybox-settings.php:838
222
- #: easy-fancybox-settings.php:933
223
- #: easy-fancybox-settings.php:1045
224
- msgid "Height"
225
- msgstr "Wysokość"
226
-
227
- #: easy-fancybox-settings.php:183
228
- #: easy-fancybox-settings.php:207
229
- #: easy-fancybox-settings.php:534
230
- #: easy-fancybox-settings.php:653
231
- #: easy-fancybox-settings.php:752
232
- #: easy-fancybox-settings.php:846
233
- #: easy-fancybox-settings.php:941
234
- #: easy-fancybox-settings.php:1053
235
- msgid "Border"
236
- msgstr "Ramka"
237
-
238
- #: easy-fancybox-settings.php:197
239
- msgid "Background"
240
- msgstr "Tło"
241
-
242
- #: easy-fancybox-settings.php:217
243
- msgid "Text"
244
- msgstr "Tekst"
245
-
246
- #: easy-fancybox-settings.php:236
247
- msgid "Behavior"
248
- msgstr "Zachowanie"
249
-
250
- #: easy-fancybox-settings.php:242
251
- msgid "Center while scrolling"
252
- msgstr "Wyśrodkuj przy przewijaniu"
253
-
254
- #: easy-fancybox-settings.php:248
255
- msgid "Show the (X) close button"
256
- msgstr "Pokaż przycisk zamykania (X)"
257
-
258
- #: easy-fancybox-settings.php:254
259
- msgid "Show the gallery navigation arrows"
260
- msgstr "Pokaż strzałki nawigacyjne dla galerii"
261
-
262
- #: easy-fancybox-settings.php:262
263
- msgid "Opening speed"
264
- msgstr "Szybkość otwierania"
265
-
266
- #: easy-fancybox-settings.php:270
267
- msgid "Closing speed"
268
- msgstr "Szybkość zamykania"
269
-
270
- #: easy-fancybox-settings.php:278
271
- msgid "Fade speed"
272
- msgstr "Szybkość blaknięcia"
273
-
274
- #: easy-fancybox-settings.php:283
275
- msgid "Duration in milliseconds. Higher is slower."
276
- msgstr "Czas w milisekundach. Wyższa wartość => wolniej."
277
-
278
- #: easy-fancybox-settings.php:291
279
- msgid "Advanced"
280
- msgstr "Zaawansowane"
281
-
282
- #: easy-fancybox-settings.php:296
283
- msgid "Hide/show title on mouse hover action"
284
- msgstr "Ukryj/Pokaż tytuł po najechaniu myszką"
285
-
286
- #: easy-fancybox-settings.php:297
287
- msgid "Gallery Auto-rotation"
288
- msgstr "Autorotacja galerii"
289
-
290
- #: easy-fancybox-settings.php:304
291
- msgid "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
292
- msgstr "Uwaga: Ukrywanie/Pokazywanie tytułu po najechaniu myszą, najlepiej działa jeśli pozycja tytułu ustawiona jest na \"Nakładka\". Autoobracanie używa stałej przerwy, 5 sekund, między zdjęciami."
293
-
294
- #: easy-fancybox-settings.php:321
295
- msgid "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
296
- msgstr "Aby otwierać obrazy na nakładce, dodaj ich rozszerzenie do pola autowykrywania lub użyj klasy \"fancybox\" dla każdego z linków. Pozostaw pole puste, aby wyłączyć autowykrywanei."
297
-
298
- #: easy-fancybox-settings.php:325
299
- #: easy-fancybox-settings.php:502
300
- #: easy-fancybox-settings.php:619
301
- #: easy-fancybox-settings.php:711
302
- #: easy-fancybox-settings.php:814
303
- #: easy-fancybox-settings.php:909
304
- msgid "Auto-detect"
305
- msgstr "Auto-wykrywanie"
306
-
307
- #: easy-fancybox-settings.php:336
308
- msgid "Apply to"
309
- msgstr "Zastosuj do"
310
-
311
- #: easy-fancybox-settings.php:341
312
- msgid "All image links"
313
- msgstr "Wszystkie odnośniki do obrazów"
314
-
315
- #: easy-fancybox-settings.php:342
316
- msgid "Links inside Section(s) only (below)"
317
- msgstr "Wyłącznie linki w sekcji(-ach) (poniżej)"
318
-
319
- #: easy-fancybox-settings.php:349
320
- msgid "Auto-gallery"
321
- msgstr "Auto-galeria"
322
-
323
- #: easy-fancybox-settings.php:354
324
- msgid "Disabled"
325
- msgstr "Wyłączone"
326
-
327
- #: easy-fancybox-settings.php:355
328
- msgid "Galleries per Section (below)"
329
- msgstr "Galerii na sekcję (poniżej)"
330
-
331
- #: easy-fancybox-settings.php:356
332
- msgid "All in one gallery"
333
- msgstr "Wszystko w jednej galerii"
334
-
335
- #: easy-fancybox-settings.php:359
336
- msgid "When disabled, you can use the rel attribute to manually group image links together."
337
- msgstr "Jeśli wyłączono, możesz użyć atrybutu rel, aby ręcznie pogrupować obrazki."
338
-
339
- #: easy-fancybox-settings.php:363
340
- msgid "Section(s)"
341
- msgstr "Sekcja(-je)"
342
-
343
- #: easy-fancybox-settings.php:369
344
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
345
- msgstr "Jest włączone, jeśli <em>Zastosuj do</em> jest ustawione na <em>Określone sekcje</em> i/lub <em>Auto-galeria</em> jest ustawiona na <em>galerie na sekcje</em>. Dostosuj opcje, aby odpowiadały danej skórce."
346
-
347
- #: easy-fancybox-settings.php:369
348
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
349
- msgstr "Przykłady: Jeśli twoja skórka owisja zawartość posta w divie klasy post, zmień jego wartość na \"div.post\". Jeśli chcesz uwzględnić zdjęcia w pasku bocznym o ID primary, dodaj \", div#primary\" lub \"aside#primary\" dla skórek html5."
350
-
351
- #: easy-fancybox-settings.php:377
352
- msgid "Transition In"
353
- msgstr "Przejście wejścia"
354
-
355
- #: easy-fancybox-settings.php:381
356
- #: easy-fancybox-settings.php:409
357
- msgid "Fade"
358
- msgstr "Blaknięcie"
359
-
360
- #: easy-fancybox-settings.php:382
361
- #: easy-fancybox-settings.php:410
362
- msgid "Elastic"
363
- msgstr "Elastyczne"
364
-
365
- #: easy-fancybox-settings.php:390
366
- msgid "Easing In"
367
- msgstr "Easing in"
368
-
369
- #: easy-fancybox-settings.php:394
370
- #: easy-fancybox-settings.php:422
371
- msgid "Linear"
372
- msgstr "Liniowe"
373
-
374
- #: easy-fancybox-settings.php:395
375
- #: easy-fancybox-settings.php:423
376
- msgid "Swing"
377
- msgstr "Obrót"
378
-
379
- #: easy-fancybox-settings.php:396
380
- #: easy-fancybox-settings.php:424
381
- msgid "Back"
382
- msgstr "Z powrotem"
383
-
384
- #: easy-fancybox-settings.php:397
385
- #: easy-fancybox-settings.php:425
386
- msgid "Quad"
387
- msgstr "Kwadrat"
388
-
389
- #: easy-fancybox-settings.php:398
390
- #: easy-fancybox-settings.php:426
391
- msgid "Expo"
392
- msgstr "Expo"
393
-
394
- #: easy-fancybox-settings.php:405
395
- msgid "Transition Out"
396
- msgstr "Przejście wyjścia"
397
-
398
- #: easy-fancybox-settings.php:418
399
- msgid "Easing Out"
400
- msgstr "Easing out"
401
-
402
- #: easy-fancybox-settings.php:429
403
- msgid "Easing effects only apply when Transition is set to Elastic. "
404
- msgstr "Efekt Easing działa tylko wtedy, gdy Przejście ustawiono na Elastyczne."
405
-
406
- #: easy-fancybox-settings.php:435
407
- msgid "Transparency fade during elastic transition."
408
- msgstr "Przezroczyste blaknięcie podczas elastycznego przechodzenia."
409
-
410
- #: easy-fancybox-settings.php:441
411
- #: easy-fancybox-settings.php:549
412
- #: easy-fancybox-settings.php:668
413
- #: easy-fancybox-settings.php:767
414
- #: easy-fancybox-settings.php:861
415
- #: easy-fancybox-settings.php:956
416
- #: easy-fancybox-settings.php:1071
417
- msgid "Show title"
418
- msgstr "Pokaż tytuł"
419
-
420
- #: easy-fancybox-settings.php:445
421
- #: easy-fancybox-settings.php:553
422
- #: easy-fancybox-settings.php:672
423
- #: easy-fancybox-settings.php:771
424
- #: easy-fancybox-settings.php:865
425
- #: easy-fancybox-settings.php:960
426
- #: easy-fancybox-settings.php:1075
427
- msgid "Title Position"
428
- msgstr "Pozycja tytułu"
429
-
430
- #: easy-fancybox-settings.php:449
431
- #: easy-fancybox-settings.php:557
432
- #: easy-fancybox-settings.php:676
433
- #: easy-fancybox-settings.php:775
434
- #: easy-fancybox-settings.php:869
435
- #: easy-fancybox-settings.php:964
436
- #: easy-fancybox-settings.php:1079
437
- msgid "Float"
438
- msgstr "Pływający"
439
-
440
- #: easy-fancybox-settings.php:450
441
- #: easy-fancybox-settings.php:558
442
- #: easy-fancybox-settings.php:677
443
- #: easy-fancybox-settings.php:776
444
- #: easy-fancybox-settings.php:870
445
- #: easy-fancybox-settings.php:965
446
- #: easy-fancybox-settings.php:1080
447
- msgid "Outside"
448
- msgstr "Na zewnątrz"
449
-
450
- #: easy-fancybox-settings.php:451
451
- #: easy-fancybox-settings.php:559
452
- #: easy-fancybox-settings.php:678
453
- #: easy-fancybox-settings.php:777
454
- #: easy-fancybox-settings.php:871
455
- #: easy-fancybox-settings.php:966
456
- #: easy-fancybox-settings.php:1081
457
- msgid "Inside"
458
- msgstr "Wewnątrz"
459
-
460
- #: easy-fancybox-settings.php:461
461
- #: easy-fancybox-settings.php:568
462
- #: easy-fancybox-settings.php:687
463
- #: easy-fancybox-settings.php:786
464
- #: easy-fancybox-settings.php:880
465
- #: easy-fancybox-settings.php:975
466
- #: easy-fancybox-settings.php:1090
467
- msgid "Allow title from thumbnail alt tag"
468
- msgstr "Pozwól na tytuły z tagów alt miniatur"
469
-
470
- #: easy-fancybox-settings.php:494
471
- msgid "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
472
- msgstr "Aby otwierać dowolny dokument PDF na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-pdf\" dla linków."
473
-
474
- #: easy-fancybox-settings.php:494
475
- #: easy-fancybox-settings.php:611
476
- #: easy-fancybox-settings.php:702
477
- #: easy-fancybox-settings.php:805
478
- #: easy-fancybox-settings.php:900
479
- #: easy-fancybox-settings.php:1021
480
- msgid "Adjust its specific settings below."
481
- msgstr "Dopasuj szczegółowe opcje poniżej."
482
-
483
- #: easy-fancybox-settings.php:611
484
- msgid "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
485
- msgstr "Aby otwierać dowolny plik Flash (.swf) na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-swf\" dla linków."
486
-
487
- #: easy-fancybox-settings.php:702
488
- msgid "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
489
- msgstr "Aby otwierać dowolny film YouTube na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-youtube\" dla linków."
490
-
491
- #: easy-fancybox-settings.php:720
492
- msgid "Auto-detect Short links"
493
- msgstr "Automatycznie wykrywaj linki skrótów"
494
-
495
- #: easy-fancybox-settings.php:805
496
- msgid "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
497
- msgstr "Aby otwierać dowolny film Vimeo na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-vimeo\" dla linków."
498
-
499
- #: easy-fancybox-settings.php:900
500
- msgid "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
501
- msgstr "Aby otwierać dowolny film DailyMotion na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-dailymotion\" dla linków."
502
-
503
- #: easy-fancybox-settings.php:1021
504
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
505
- msgstr "Aby otwierać dowolny plik HTML lub stronę na nakładce, włącz autowykrywanie lub użyj klasy \"fancybox-iframe\" dla linków."
506
-
507
- #. Plugin Name of the plugin/theme
508
- msgid "Easy FancyBox"
509
- msgstr "Easy FancyBox"
510
-
511
- #. Plugin URI of the plugin/theme
512
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
513
- msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
514
-
515
- #. Description of the plugin/theme
516
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
517
- msgstr "W prosty sposób aktywuje <a href=\"http://fancybox.net/\">rozszerzenie FancyBox</a> dla wszystkich obrazów, plików SWF i PDF, filmów YouTube, Dailymotion oraz Vimeo. Wspiera również zawartość inline oraz iFrame."
518
-
519
- #. Author of the plugin/theme
520
- msgid "RavanH"
521
- msgstr "RavanH"
522
-
523
- #. Author URI of the plugin/theme
524
- msgid "http://4visions.nl/"
525
- msgstr "http://4visions.nl/"
526
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-ro_RO.po DELETED
@@ -1,522 +0,0 @@
1
- # This file is distributed under the same license as the Easy FancyBox package.
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
5
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
6
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "PO-Revision-Date: 2012-02-06 22:55+0200\n"
11
- "Last-Translator: \n"
12
- "Language-Team: \n"
13
-
14
- #: easy-fancybox.php:266
15
- msgid "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
16
- msgstr "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and secure!"
17
-
18
- #: easy-fancybox.php:266
19
- msgid "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
20
- msgstr "The options in this section are provided by the plugin <strong><a href=\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</a></strong> and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/\">FancyBox</a></strong>."
21
-
22
- #: easy-fancybox.php:266
23
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
24
- msgstr "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
25
-
26
- #: easy-fancybox.php:266
27
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
28
- msgstr "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
29
-
30
- #: easy-fancybox.php:266
31
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
32
- msgstr "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
33
-
34
- #: easy-fancybox.php:308
35
- msgid "Checked"
36
- msgstr "Verificat"
37
-
38
- #: easy-fancybox.php:310
39
- msgid "Unchecked"
40
- msgstr "Neînregistrat"
41
-
42
- #: easy-fancybox.php:362
43
- msgid "FancyBox"
44
- msgstr "FancyBox"
45
-
46
- #: easy-fancybox-settings.php:6
47
- msgid "Global settings"
48
- msgstr "Parametri globali"
49
-
50
- #: easy-fancybox-settings.php:15
51
- msgid "Enable FancyBox for"
52
- msgstr "Permite FancyBox pentru"
53
-
54
- #: easy-fancybox-settings.php:24
55
- #: easy-fancybox-settings.php:316
56
- msgid "Images & Inline content"
57
- msgstr "Imagini & Inline conţinut"
58
-
59
- #: easy-fancybox-settings.php:31
60
- #: easy-fancybox-settings.php:489
61
- msgid "PDF"
62
- msgstr "PDF"
63
-
64
- #: easy-fancybox-settings.php:38
65
- #: easy-fancybox-settings.php:606
66
- msgid "SWF"
67
- msgstr "SWF"
68
-
69
- #: easy-fancybox-settings.php:45
70
- #: easy-fancybox-settings.php:697
71
- msgid "YouTube"
72
- msgstr "YouTube"
73
-
74
- #: easy-fancybox-settings.php:52
75
- #: easy-fancybox-settings.php:800
76
- msgid "Vimeo"
77
- msgstr "Vimeo"
78
-
79
- #: easy-fancybox-settings.php:59
80
- #: easy-fancybox-settings.php:895
81
- msgid "Dailymotion"
82
- msgstr "Dailymotion"
83
-
84
- #: easy-fancybox-settings.php:66
85
- #: easy-fancybox-settings.php:1016
86
- msgid "iFrames"
87
- msgstr "iFrames"
88
-
89
- #: easy-fancybox-settings.php:71
90
- msgid "Links"
91
- msgstr "Link-uri"
92
-
93
- #: easy-fancybox-settings.php:81
94
- msgid "Exclude"
95
- msgstr "Exclude"
96
-
97
- #: easy-fancybox-settings.php:86
98
- #: easy-fancybox-settings.php:100
99
- #: easy-fancybox-settings.php:295
100
- #: easy-fancybox-settings.php:383
101
- #: easy-fancybox-settings.php:411
102
- msgid "None"
103
- msgstr "Nici unul"
104
-
105
- #: easy-fancybox-settings.php:87
106
- msgid "Empty (hidden) links"
107
- msgstr "Link-uri goale (ascunse)"
108
-
109
- #: easy-fancybox-settings.php:88
110
- msgid "Without thumbnail image"
111
- msgstr "Fără imagine în miniatură"
112
-
113
- #: easy-fancybox-settings.php:95
114
- msgid "Auto-open"
115
- msgstr "Auto-deschidere"
116
-
117
- #: easy-fancybox-settings.php:101
118
- msgid "Link with ID \"fancybox-auto\""
119
- msgstr "Link with ID \"fancybox-auto\""
120
-
121
- #: easy-fancybox-settings.php:102
122
- msgid "First Image link"
123
- msgstr "Primul link imagine"
124
-
125
- #: easy-fancybox-settings.php:103
126
- msgid "First PDF link"
127
- msgstr "Primul link-ul PDF"
128
-
129
- #: easy-fancybox-settings.php:104
130
- msgid "First SWF link"
131
- msgstr "Primul link SWF"
132
-
133
- #: easy-fancybox-settings.php:105
134
- msgid "First YouTube link "
135
- msgstr "Primul link YouTube "
136
-
137
- #: easy-fancybox-settings.php:106
138
- msgid "First Vimeo link "
139
- msgstr "Primul link Vimeo "
140
-
141
- #: easy-fancybox-settings.php:107
142
- msgid "First Dailymotion link "
143
- msgstr "Primul link Dailymotion "
144
-
145
- #: easy-fancybox-settings.php:108
146
- msgid "First iFrame link"
147
- msgstr "Primul link iFrame"
148
-
149
- #: easy-fancybox-settings.php:109
150
- msgid "First of any link"
151
- msgstr "Prima de orice link"
152
-
153
- #: easy-fancybox-settings.php:117
154
- #: easy-fancybox-settings.php:452
155
- msgid "Overlay"
156
- msgstr "Suprapunere"
157
-
158
- #: easy-fancybox-settings.php:125
159
- msgid "Show the overlay around content opened in FancyBox."
160
- msgstr "Arată suprapunerea în jurul conţinut deschis în FancyBox."
161
-
162
- #: easy-fancybox-settings.php:132
163
- msgid "Spotlight effect."
164
- msgstr "Efect de lumina reflectoarelor."
165
-
166
- #: easy-fancybox-settings.php:136
167
- #: easy-fancybox-settings.php:227
168
- msgid "Opacity"
169
- msgstr "Opacitate"
170
-
171
- #: easy-fancybox-settings.php:141
172
- msgid "Value between 0 and 1. "
173
- msgstr "Valoare între 0 şi 1. "
174
-
175
- #: easy-fancybox-settings.php:141
176
- #: easy-fancybox-settings.php:150
177
- #: easy-fancybox-settings.php:188
178
- #: easy-fancybox-settings.php:232
179
- #: easy-fancybox-settings.php:283
180
- #: easy-fancybox-settings.php:332
181
- #: easy-fancybox-settings.php:345
182
- #: easy-fancybox-settings.php:369
183
- msgid "Default:"
184
- msgstr "Implicit:"
185
-
186
- #: easy-fancybox-settings.php:145
187
- #: easy-fancybox-settings.php:192
188
- msgid "Color"
189
- msgstr "Culoare"
190
-
191
- #: easy-fancybox-settings.php:150
192
- msgid "Enter an HTML color value."
193
- msgstr "Introduceţi o valoare pentru culoare HTML."
194
-
195
- #: easy-fancybox-settings.php:156
196
- msgid "Window"
197
- msgstr "Fereastra"
198
-
199
- #: easy-fancybox-settings.php:162
200
- msgid "Size"
201
- msgstr "Dimensiunea"
202
-
203
- #: easy-fancybox-settings.php:166
204
- #: easy-fancybox-settings.php:517
205
- #: easy-fancybox-settings.php:634
206
- #: easy-fancybox-settings.php:735
207
- #: easy-fancybox-settings.php:829
208
- #: easy-fancybox-settings.php:924
209
- #: easy-fancybox-settings.php:1036
210
- msgid "Width"
211
- msgstr "Lăţime"
212
-
213
- #: easy-fancybox-settings.php:175
214
- #: easy-fancybox-settings.php:526
215
- #: easy-fancybox-settings.php:644
216
- #: easy-fancybox-settings.php:744
217
- #: easy-fancybox-settings.php:838
218
- #: easy-fancybox-settings.php:933
219
- #: easy-fancybox-settings.php:1045
220
- msgid "Height"
221
- msgstr "Înălţime"
222
-
223
- #: easy-fancybox-settings.php:183
224
- #: easy-fancybox-settings.php:207
225
- #: easy-fancybox-settings.php:534
226
- #: easy-fancybox-settings.php:653
227
- #: easy-fancybox-settings.php:752
228
- #: easy-fancybox-settings.php:846
229
- #: easy-fancybox-settings.php:941
230
- #: easy-fancybox-settings.php:1053
231
- msgid "Border"
232
- msgstr "Frontiera"
233
-
234
- #: easy-fancybox-settings.php:197
235
- msgid "Background"
236
- msgstr "Fundal"
237
-
238
- #: easy-fancybox-settings.php:217
239
- msgid "Text"
240
- msgstr "Text"
241
-
242
- #: easy-fancybox-settings.php:236
243
- msgid "Behavior"
244
- msgstr "Comportament"
245
-
246
- #: easy-fancybox-settings.php:242
247
- msgid "Center while scrolling"
248
- msgstr "Centru în timp ce scrolling"
249
-
250
- #: easy-fancybox-settings.php:248
251
- msgid "Show the (X) close button"
252
- msgstr "Arată (X) aproape buton"
253
-
254
- #: easy-fancybox-settings.php:254
255
- msgid "Show the gallery navigation arrows"
256
- msgstr "Arată Galerie săgeţile de navigare"
257
-
258
- #: easy-fancybox-settings.php:262
259
- msgid "Opening speed"
260
- msgstr "Viteza de deschidere"
261
-
262
- #: easy-fancybox-settings.php:270
263
- msgid "Closing speed"
264
- msgstr "Viteza de închidere"
265
-
266
- #: easy-fancybox-settings.php:278
267
- msgid "Fade speed"
268
- msgstr "Estompare viteza"
269
-
270
- #: easy-fancybox-settings.php:283
271
- msgid "Duration in milliseconds. Higher is slower."
272
- msgstr "Durata în milisecunde. Mai mare este mai lent."
273
-
274
- #: easy-fancybox-settings.php:291
275
- msgid "Advanced"
276
- msgstr "Avansate"
277
-
278
- #: easy-fancybox-settings.php:296
279
- msgid "Hide/show title on mouse hover action"
280
- msgstr "Ascundere/Afişare titlu pe mouse-ul deasupra acţiune"
281
-
282
- #: easy-fancybox-settings.php:297
283
- msgid "Gallery Auto-rotation"
284
- msgstr "Galerie Auto-rotaţie"
285
-
286
- #: easy-fancybox-settings.php:304
287
- msgid "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
288
- msgstr "Note: Hide/show title on mouse hover action works best with Overlay title position. Auto-rotation uses a fixed 5 second pause per image."
289
-
290
- #: easy-fancybox-settings.php:321
291
- msgid "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
292
- msgstr "To make images open in an overlay, add their extension to the auto-detect field or use the class \"fancybox\" for its link. Clear field to switch off auto-enabling."
293
-
294
- #: easy-fancybox-settings.php:325
295
- #: easy-fancybox-settings.php:502
296
- #: easy-fancybox-settings.php:619
297
- #: easy-fancybox-settings.php:711
298
- #: easy-fancybox-settings.php:814
299
- #: easy-fancybox-settings.php:909
300
- msgid "Auto-detect"
301
- msgstr "Auto-detect"
302
-
303
- #: easy-fancybox-settings.php:336
304
- msgid "Apply to"
305
- msgstr "Se aplică"
306
-
307
- #: easy-fancybox-settings.php:341
308
- msgid "All image links"
309
- msgstr "Toate link-uri imagine"
310
-
311
- #: easy-fancybox-settings.php:342
312
- msgid "Links inside Section(s) only (below)"
313
- msgstr "Link-uri în interiorul Section(s) numai (mai jos)"
314
-
315
- #: easy-fancybox-settings.php:349
316
- msgid "Auto-gallery"
317
- msgstr "Auto-Galerie"
318
-
319
- #: easy-fancybox-settings.php:354
320
- msgid "Disabled"
321
- msgstr "Cu handicap"
322
-
323
- #: easy-fancybox-settings.php:355
324
- msgid "Galleries per Section (below)"
325
- msgstr "Galerii pe secţiunea (mai jos)"
326
-
327
- #: easy-fancybox-settings.php:356
328
- msgid "All in one gallery"
329
- msgstr "Toate într-o galerie"
330
-
331
- #: easy-fancybox-settings.php:359
332
- msgid "When disabled, you can use the rel attribute to manually group image links together."
333
- msgstr "When disabled, you can use the rel attribute to manually group image links together."
334
-
335
- #: easy-fancybox-settings.php:363
336
- msgid "Section(s)"
337
- msgstr "Section(s)"
338
-
339
- #: easy-fancybox-settings.php:369
340
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
341
- msgstr "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
342
-
343
- #: easy-fancybox-settings.php:369
344
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
345
- msgstr "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
346
-
347
- #: easy-fancybox-settings.php:377
348
- msgid "Transition In"
349
- msgstr "De tranziţie în"
350
-
351
- #: easy-fancybox-settings.php:381
352
- #: easy-fancybox-settings.php:409
353
- msgid "Fade"
354
- msgstr "Estompare"
355
-
356
- #: easy-fancybox-settings.php:382
357
- #: easy-fancybox-settings.php:410
358
- msgid "Elastic"
359
- msgstr "Elastice"
360
-
361
- #: easy-fancybox-settings.php:390
362
- msgid "Easing In"
363
- msgstr "Relaxarea în"
364
-
365
- #: easy-fancybox-settings.php:394
366
- #: easy-fancybox-settings.php:422
367
- msgid "Linear"
368
- msgstr "Liniară"
369
-
370
- #: easy-fancybox-settings.php:395
371
- #: easy-fancybox-settings.php:423
372
- msgid "Swing"
373
- msgstr "Swing"
374
-
375
- #: easy-fancybox-settings.php:396
376
- #: easy-fancybox-settings.php:424
377
- msgid "Back"
378
- msgstr "Spate"
379
-
380
- #: easy-fancybox-settings.php:397
381
- #: easy-fancybox-settings.php:425
382
- msgid "Quad"
383
- msgstr "Quad"
384
-
385
- #: easy-fancybox-settings.php:398
386
- #: easy-fancybox-settings.php:426
387
- msgid "Expo"
388
- msgstr "Expo"
389
-
390
- #: easy-fancybox-settings.php:405
391
- msgid "Transition Out"
392
- msgstr "De tranziţie la"
393
-
394
- #: easy-fancybox-settings.php:418
395
- msgid "Easing Out"
396
- msgstr "Relaxarea la"
397
-
398
- #: easy-fancybox-settings.php:429
399
- msgid "Easing effects only apply when Transition is set to Elastic. "
400
- msgstr "Facilitarea efecte se aplică numai atunci când tranziţie este Elastic. "
401
-
402
- #: easy-fancybox-settings.php:435
403
- msgid "Transparency fade during elastic transition."
404
- msgstr "Transparenţa se estompeze în timpul tranziției elastice."
405
-
406
- #: easy-fancybox-settings.php:441
407
- #: easy-fancybox-settings.php:549
408
- #: easy-fancybox-settings.php:668
409
- #: easy-fancybox-settings.php:767
410
- #: easy-fancybox-settings.php:861
411
- #: easy-fancybox-settings.php:956
412
- #: easy-fancybox-settings.php:1071
413
- msgid "Show title"
414
- msgstr "Afişare titlu"
415
-
416
- #: easy-fancybox-settings.php:445
417
- #: easy-fancybox-settings.php:553
418
- #: easy-fancybox-settings.php:672
419
- #: easy-fancybox-settings.php:771
420
- #: easy-fancybox-settings.php:865
421
- #: easy-fancybox-settings.php:960
422
- #: easy-fancybox-settings.php:1075
423
- msgid "Title Position"
424
- msgstr "Titlu poziţie"
425
-
426
- #: easy-fancybox-settings.php:449
427
- #: easy-fancybox-settings.php:557
428
- #: easy-fancybox-settings.php:676
429
- #: easy-fancybox-settings.php:775
430
- #: easy-fancybox-settings.php:869
431
- #: easy-fancybox-settings.php:964
432
- #: easy-fancybox-settings.php:1079
433
- msgid "Float"
434
- msgstr "Float"
435
-
436
- #: easy-fancybox-settings.php:450
437
- #: easy-fancybox-settings.php:558
438
- #: easy-fancybox-settings.php:677
439
- #: easy-fancybox-settings.php:776
440
- #: easy-fancybox-settings.php:870
441
- #: easy-fancybox-settings.php:965
442
- #: easy-fancybox-settings.php:1080
443
- msgid "Outside"
444
- msgstr "Exterior"
445
-
446
- #: easy-fancybox-settings.php:451
447
- #: easy-fancybox-settings.php:559
448
- #: easy-fancybox-settings.php:678
449
- #: easy-fancybox-settings.php:777
450
- #: easy-fancybox-settings.php:871
451
- #: easy-fancybox-settings.php:966
452
- #: easy-fancybox-settings.php:1081
453
- msgid "Inside"
454
- msgstr "În interiorul"
455
-
456
- #: easy-fancybox-settings.php:461
457
- #: easy-fancybox-settings.php:568
458
- #: easy-fancybox-settings.php:687
459
- #: easy-fancybox-settings.php:786
460
- #: easy-fancybox-settings.php:880
461
- #: easy-fancybox-settings.php:975
462
- #: easy-fancybox-settings.php:1090
463
- msgid "Allow title from thumbnail alt tag"
464
- msgstr "Permite titlul de tag-ul alt miniatură"
465
-
466
- #: easy-fancybox-settings.php:494
467
- msgid "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
468
- msgstr "To make any PDF document file open in an overlay, switch on auto-detect or use the class \"fancybox-pdf\" for its link."
469
-
470
- #: easy-fancybox-settings.php:494
471
- #: easy-fancybox-settings.php:611
472
- #: easy-fancybox-settings.php:702
473
- #: easy-fancybox-settings.php:805
474
- #: easy-fancybox-settings.php:900
475
- #: easy-fancybox-settings.php:1021
476
- msgid "Adjust its specific settings below."
477
- msgstr "Ajustaţi setările sale specifice de mai jos."
478
-
479
- #: easy-fancybox-settings.php:611
480
- msgid "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
481
- msgstr "To make any Flash (.swf) file open in an overlay, switch on auto-detect or use the class \"fancybox-swf\" for its link."
482
-
483
- #: easy-fancybox-settings.php:702
484
- msgid "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
485
- msgstr "To make any YouTube movie open in an overlay, switch on auto-detect or use the class \"fancybox-youtube\" for its link."
486
-
487
- #: easy-fancybox-settings.php:720
488
- msgid "Auto-detect Short links"
489
- msgstr "Auto-detect link-uri scurte"
490
-
491
- #: easy-fancybox-settings.php:805
492
- msgid "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
493
- msgstr "To make any Vimeo movie open in an overlay, switch on auto-detect or use the class \"fancybox-vimeo\" for its link."
494
-
495
- #: easy-fancybox-settings.php:900
496
- msgid "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
497
- msgstr "To make any Dailymotion movie open in an overlay, switch on auto-detect or use the class \"fancybox-dailymotion\" for its link."
498
-
499
- #: easy-fancybox-settings.php:1021
500
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
501
- msgstr "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
502
-
503
- #. Plugin Name of the plugin/theme
504
- msgid "Easy FancyBox"
505
- msgstr "FancyBox uşor"
506
-
507
- #. Plugin URI of the plugin/theme
508
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
509
- msgstr "http://4visions.nl/en/Wordpress-plugins/Easy-FancyBox/"
510
-
511
- #. Description of the plugin/theme
512
- msgid "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
513
- msgstr "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content."
514
-
515
- #. Author of the plugin/theme
516
- msgid "RavanH"
517
- msgstr "RavanH"
518
-
519
- #. Author URI of the plugin/theme
520
- msgid "http://4visions.nl/"
521
- msgstr "http://4visions.nl/"
522
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-sr_RS.mo DELETED
Binary file
languages/easy-fancybox-sr_RS.po DELETED
@@ -1,1029 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-06-14 00:53+0100\n"
8
- "PO-Revision-Date: 2013-08-04 13:23+0100\n"
9
- "Last-Translator: RavanH <ravanhagen@gmail.com>\n"
10
- "Language-Team: \n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
-
18
- #: ../easy-fancybox-settings.php:9 ../easy-fancybox-class.php:566
19
- msgid "Global settings"
20
- msgstr "Globalna podešavanja"
21
-
22
- #: ../easy-fancybox-settings.php:14
23
- msgid "Media"
24
- msgstr "Mediji"
25
-
26
- #: ../easy-fancybox-settings.php:20
27
- msgid "Enable FancyBox for"
28
- msgstr "Dozvoliti FancyBox za"
29
-
30
- #: ../easy-fancybox-settings.php:27 ../easy-fancybox-settings.php:370
31
- #: ../easy-fancybox-class.php:567
32
- msgid "Images"
33
- msgstr "Slike"
34
-
35
- #: ../easy-fancybox-settings.php:34 ../easy-fancybox-settings.php:633
36
- #: ../easy-fancybox-class.php:568
37
- msgid "Inline content"
38
- msgstr "Inlajn sadržaj"
39
-
40
- #: ../easy-fancybox-settings.php:41 ../easy-fancybox-settings.php:743
41
- #: ../easy-fancybox-class.php:569
42
- msgid "PDF"
43
- msgstr "PDF"
44
-
45
- #: ../easy-fancybox-settings.php:48 ../easy-fancybox-settings.php:868
46
- #: ../easy-fancybox-class.php:570
47
- msgid "SWF"
48
- msgstr "SWF"
49
-
50
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
51
- msgid "SVG"
52
- msgstr "SVG"
53
-
54
- #: ../easy-fancybox-settings.php:62 ../easy-fancybox-settings.php:1057
55
- #: ../easy-fancybox-class.php:571
56
- msgid "YouTube"
57
- msgstr "YouTube"
58
-
59
- #: ../easy-fancybox-settings.php:69 ../easy-fancybox-settings.php:1165
60
- #: ../easy-fancybox-class.php:572
61
- msgid "Vimeo"
62
- msgstr "Vimeo"
63
-
64
- #: ../easy-fancybox-settings.php:76 ../easy-fancybox-settings.php:1265
65
- #: ../easy-fancybox-class.php:573
66
- msgid "Dailymotion"
67
- msgstr "Dailymotion"
68
-
69
- #: ../easy-fancybox-settings.php:83 ../easy-fancybox-settings.php:1391
70
- #: ../easy-fancybox-class.php:574
71
- msgid "iFrames"
72
- msgstr "iFrames"
73
-
74
- #: ../easy-fancybox-settings.php:86
75
- msgid ""
76
- "For advanced options and support, please get the Easy FancyBox - Pro "
77
- "extension."
78
- msgstr "Za napredne opcije i podršku, nabavite Easy FancyBox - Za ekstenziju."
79
-
80
- #: ../easy-fancybox-settings.php:89
81
- msgid "Links"
82
- msgstr "Linkovi"
83
-
84
- #: ../easy-fancybox-settings.php:95
85
- msgid "Exclude"
86
- msgstr "Izuzeti"
87
-
88
- #: ../easy-fancybox-settings.php:100 ../easy-fancybox-settings.php:114
89
- #: ../easy-fancybox-settings.php:421 ../easy-fancybox-settings.php:448
90
- #: ../easy-fancybox-settings.php:677 ../easy-fancybox-settings.php:704
91
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:227
92
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:252
93
- msgid "None"
94
- msgstr "Ništa"
95
-
96
- #: ../easy-fancybox-settings.php:101
97
- msgid "Empty (hidden) links"
98
- msgstr "Prazni (skriveni) linkovi"
99
-
100
- #: ../easy-fancybox-settings.php:102
101
- msgid "Without thumbnail image"
102
- msgstr "Bez umanjene slike"
103
-
104
- #: ../easy-fancybox-settings.php:109
105
- msgid "Open on page load"
106
- msgstr "Otvoriti na stranici učitavanja"
107
-
108
- #: ../easy-fancybox-settings.php:115
109
- msgid "Link with ID \"fancybox-auto\""
110
- msgstr "Link sa ID \"fancybox-auto\""
111
-
112
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
113
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
114
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
115
- #: ../easy-fancybox-settings.php:723
116
- msgid "More options &raquo;"
117
- msgstr "Više opcija &raquo;"
118
-
119
- #: ../easy-fancybox-settings.php:125
120
- msgid ""
121
- "Include the Metadata jQuery extension script to allow passing custom "
122
- "parameters via link class."
123
- msgstr ""
124
- "Uključiti Metadata automatizovanu proceduru jQuery ekstenzija radi "
125
- "omogućavanja prolaza kastomiziranih parametara preko link klase."
126
-
127
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
128
- msgid "Overlay"
129
- msgstr "Preklapanje"
130
-
131
- #: ../easy-fancybox-settings.php:139
132
- msgid "Show the overlay around content opened in FancyBox."
133
- msgstr "Prikaži preklapanje kroz sadržaj otvoren u FancyBox"
134
-
135
- #: ../easy-fancybox-settings.php:146
136
- msgid "Close FancyBox when overlay is clicked."
137
- msgstr "Zatvori FancyBox kada se klikne na preklapanje"
138
-
139
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
140
- msgid "Opacity"
141
- msgstr "Nejasnoća"
142
-
143
- #: ../easy-fancybox-settings.php:158
144
- msgid "Value between 0 and 1. "
145
- msgstr "Vrednost izmedju 0 i 1."
146
-
147
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
148
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
149
- #: ../easy-fancybox-settings.php:595
150
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
151
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
152
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
153
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
154
- msgid "Default:"
155
- msgstr "Predefinisano:"
156
-
157
- #: ../easy-fancybox-settings.php:162
158
- msgid "Color"
159
- msgstr "Boja"
160
-
161
- #: ../easy-fancybox-settings.php:167
162
- msgid "Enter an HTML color value."
163
- msgstr "Unesi HTML kolor vrednost"
164
-
165
- #: ../easy-fancybox-settings.php:175
166
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:71
167
- msgid "Spotlight effect"
168
- msgstr "Spotlajt efekat"
169
-
170
- #: ../easy-fancybox-settings.php:175 ../easy-fancybox-settings.php:236
171
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
172
- #: ../easy-fancybox-settings.php:613
173
- msgid "Make available &raquo;"
174
- msgstr "Omogući dostupnost &raquo;"
175
-
176
- #: ../easy-fancybox-settings.php:180
177
- msgid "Window"
178
- msgstr "Prozor"
179
-
180
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
181
- msgid "Appearance"
182
- msgstr "Prikaz"
183
-
184
- #: ../easy-fancybox-settings.php:193
185
- msgid "Show the (X) close button"
186
- msgstr "Prikaži (X) zatvoreni taster"
187
-
188
- #: ../easy-fancybox-settings.php:198
189
- msgid "Background color"
190
- msgstr "Boja u pozadini"
191
-
192
- #: ../easy-fancybox-settings.php:208
193
- msgid "Border color"
194
- msgstr "Boja oivičenja"
195
-
196
- #: ../easy-fancybox-settings.php:218
197
- msgid "Text color"
198
- msgstr "Boja teksta"
199
-
200
- #: ../easy-fancybox-settings.php:241
201
- msgid "Border radius"
202
- msgstr "Radijus oivičenja"
203
-
204
- #: ../easy-fancybox-settings.php:249
205
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
206
- msgid "Set a border radius to create rounded corners. Higher is rounder."
207
- msgstr ""
208
- "Podesi radijus oivičenja radi formiranja zaobljenih uglova. Više je "
209
- "zaobljenije."
210
-
211
- #: ../easy-fancybox-settings.php:254
212
- msgid "Dimensions"
213
- msgstr "Dimenzije"
214
-
215
- #: ../easy-fancybox-settings.php:258 ../easy-fancybox-settings.php:771
216
- #: ../easy-fancybox-settings.php:896 ../easy-fancybox-settings.php:990
217
- #: ../easy-fancybox-settings.php:1095 ../easy-fancybox-settings.php:1194
218
- #: ../easy-fancybox-settings.php:1294 ../easy-fancybox-settings.php:1424
219
- msgid "Width"
220
- msgstr "Sa"
221
-
222
- #: ../easy-fancybox-settings.php:268 ../easy-fancybox-settings.php:781
223
- #: ../easy-fancybox-settings.php:907 ../easy-fancybox-settings.php:1001
224
- #: ../easy-fancybox-settings.php:1108 ../easy-fancybox-settings.php:1207
225
- #: ../easy-fancybox-settings.php:1307 ../easy-fancybox-settings.php:1434
226
- msgid "Height"
227
- msgstr "Visina"
228
-
229
- #: ../easy-fancybox-settings.php:277 ../easy-fancybox-settings.php:790
230
- #: ../easy-fancybox-settings.php:917 ../easy-fancybox-settings.php:1011
231
- #: ../easy-fancybox-settings.php:1120 ../easy-fancybox-settings.php:1219
232
- #: ../easy-fancybox-settings.php:1319 ../easy-fancybox-settings.php:1443
233
- msgid "Border"
234
- msgstr "Oivičenje"
235
-
236
- #: ../easy-fancybox-settings.php:286
237
- msgid ""
238
- "If content size is not set or cannot be determined automatically, these "
239
- "default dimensions will be used."
240
- msgstr ""
241
- "Ako veličina sadržaja nije podešena ili ne može biti automatski određena, "
242
- "biće korišćene ove predefinisane dimenzije."
243
-
244
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
245
- msgid "Behavior"
246
- msgstr "Ponašanje"
247
-
248
- #: ../easy-fancybox-settings.php:298
249
- msgid "Center while scrolling"
250
- msgstr "Centriranje tokom skrolovanja"
251
-
252
- #: ../easy-fancybox-settings.php:305
253
- msgid "Esc key stroke closes FancyBox"
254
- msgstr "Pritisak na ESC taster zatvara FancyBox"
255
-
256
- #: ../easy-fancybox-settings.php:312
257
- msgid "Scale large content down to fit in the browser viewport."
258
- msgstr "Umanji veliki sadržaj radi uklapanja u prozor brauzera"
259
-
260
- #: ../easy-fancybox-settings.php:316
261
- msgid "Opening speed"
262
- msgstr "Brzina otvaranja"
263
-
264
- #: ../easy-fancybox-settings.php:328
265
- msgid "Closing speed"
266
- msgstr "Brzina zatvaranja"
267
-
268
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
269
- msgid "Duration in milliseconds. Higher is slower."
270
- msgstr "Trajanje u milisekundama. Više je sporije."
271
-
272
- #: ../easy-fancybox-settings.php:375
273
- msgid ""
274
- "To make images open in an overlay, add their extension to the Autodetect "
275
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
276
- "all autodetection."
277
- msgstr ""
278
- "Radi otvaranja slika u preklapanju dodajte njihovu ekstenziju Autodetect "
279
- "polju ili koristite klasu \"fancybox\" za njegovo povezivanje. Očistite "
280
- "polje radi isključivanja svih autodetekcija."
281
-
282
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
283
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
284
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
285
- #: ../easy-fancybox-settings.php:1279
286
- msgid "Autodetect"
287
- msgstr "Autodetekcija"
288
-
289
- #: ../easy-fancybox-settings.php:397
290
- msgid "Example:"
291
- msgstr "Primer:"
292
-
293
- #: ../easy-fancybox-settings.php:401
294
- msgid "Apply to"
295
- msgstr "Primeni na"
296
-
297
- #: ../easy-fancybox-settings.php:406
298
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
299
- msgid "All image links"
300
- msgstr "Svi linkovi slika"
301
-
302
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
303
- msgid "Transition In"
304
- msgstr "Prelazak u"
305
-
306
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
307
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
308
- msgid "Fade"
309
- msgstr "Izbeljivanje"
310
-
311
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
312
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
313
- msgid "Elastic"
314
- msgstr "Elastičan"
315
-
316
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
317
- msgid "Easing In"
318
- msgstr "Relaksiranje u "
319
-
320
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
321
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
322
- msgid "Linear"
323
- msgstr "Linearan"
324
-
325
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
326
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
327
- msgid "Swing"
328
- msgstr "Zamah"
329
-
330
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
331
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
332
- msgid "easeInBack"
333
- msgstr "easeInBack"
334
-
335
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
336
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
337
- msgid "easeOutBack"
338
- msgstr "easeOutBack"
339
-
340
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
341
- msgid "Transition Out"
342
- msgstr "Tranzicija van"
343
-
344
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
345
- msgid "Easing Out"
346
- msgstr "Relaksiranje van"
347
-
348
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
349
- #: ../easy-fancybox-settings.php:723
350
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
351
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
352
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
353
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
354
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
355
- msgid "Note:"
356
- msgstr "Napomena:"
357
-
358
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
359
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
360
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
361
- msgid "Easing effects only apply when Transition is set to Elastic. "
362
- msgstr ""
363
- "Relaksirajući efekti se primenjuju samo kada Tranzicija podešena na "
364
- "Elastičan."
365
-
366
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
367
- msgid ""
368
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
369
- "Transition In is set to Elastic!"
370
- msgstr ""
371
- "Transparentnost bledi tokom elastične tranzicije. PAŽNJA: Koristiti jedino "
372
- "ako je najmanje “Tranzicija u” podešana na Elastičan! "
373
-
374
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
375
- msgid "Close FancyBox when content is clicked"
376
- msgstr "Zatvori FancyBox kada se klikne na sadržaj"
377
-
378
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
379
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
380
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
381
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
382
- msgid "Show title"
383
- msgstr "Prikaži naslov"
384
-
385
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
386
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
387
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
388
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
389
- msgid "Title Position"
390
- msgstr "Pozicija naslova"
391
-
392
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
393
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
394
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
395
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
396
- msgid "Float"
397
- msgstr "Plavljenje"
398
-
399
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
400
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
401
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
402
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
403
- msgid "Outside"
404
- msgstr "Spolja"
405
-
406
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
407
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
408
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
409
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
410
- msgid "Inside"
411
- msgstr "Unutra"
412
-
413
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
414
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
415
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
416
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
417
- msgid "Allow title from thumbnail alt tag"
418
- msgstr "Omogući naslov sa sličica alt tag-a"
419
-
420
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
421
- msgid "Advanced"
422
- msgstr "Unapređen"
423
-
424
- #: ../easy-fancybox-settings.php:521
425
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
426
- msgid "Hide/show title on mouse hover action"
427
- msgstr "Hide/show naslov na “miš lebdi” akciji"
428
-
429
- #: ../easy-fancybox-settings.php:528
430
- msgid "Gallery"
431
- msgstr "Galerija"
432
-
433
- #: ../easy-fancybox-settings.php:532
434
- msgid "Autogallery"
435
- msgstr "Autogalerija"
436
-
437
- #: ../easy-fancybox-settings.php:537
438
- msgid "Disabled"
439
- msgstr "Onemogućen"
440
-
441
- #: ../easy-fancybox-settings.php:538
442
- msgid "WordPress galleries only"
443
- msgstr "Samo WordPress galerije"
444
-
445
- #: ../easy-fancybox-settings.php:539
446
- msgid "All in one gallery"
447
- msgstr "Sve u jednoj galeriji"
448
-
449
- #: ../easy-fancybox-settings.php:542
450
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
451
- msgid ""
452
- "When disabled, you can use the rel attribute to manually group image links "
453
- "together."
454
- msgstr ""
455
- "Kada je onemogućen mođete koristiti rel atribut za ručno grupisanje linkova "
456
- "za slike."
457
-
458
- #: ../easy-fancybox-settings.php:542
459
- msgid ""
460
- "Leave the mousewheel option (below) unchecked when you do not use FancyBox "
461
- "for galleries on your site."
462
- msgstr ""
463
- "Ostavite mausewheel opciju (ispod) neoznačenu kada ne koristite FancyBox za "
464
- "galerije na svom sajtu."
465
-
466
- #: ../easy-fancybox-settings.php:549
467
- msgid "Show the gallery navigation arrows"
468
- msgstr "Prikaži strelicu za kretanje kroz galeriju"
469
-
470
- #: ../easy-fancybox-settings.php:556
471
- msgid "Arrow key strokes browse the gallery"
472
- msgstr "Pritiskom na arrow taster pretražuje se galerija"
473
-
474
- #: ../easy-fancybox-settings.php:563
475
- msgid ""
476
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
477
- "mousewheel action."
478
- msgstr ""
479
- "Inkludirati ekstenziju Mousewheel jQuery automatizovana procedura, radi "
480
- "omogućavanja pretraživanja galerije putem mousewheel akcije. "
481
-
482
- #: ../easy-fancybox-settings.php:570
483
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
484
- msgstr ""
485
- "Napravite da galerije budu ciklične, što vam omogućava da pritisak na next/"
486
- "back."
487
-
488
- #: ../easy-fancybox-settings.php:574
489
- msgid "Change speed"
490
- msgstr "Promena brzine"
491
-
492
- #: ../easy-fancybox-settings.php:586
493
- msgid "Fade speed"
494
- msgstr "Brzina izbeljivanja"
495
-
496
- #: ../easy-fancybox-settings.php:602
497
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
498
- msgid "Galleries per Section (below)"
499
- msgstr "Galerije po sekciji (ispod)"
500
-
501
- #: ../easy-fancybox-settings.php:602
502
- msgid ""
503
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
504
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
505
- "it to conform with your theme."
506
- msgstr ""
507
- "Ovo se primenjuje kada je <em>Apply to</em> podešeno na <em>Limited to "
508
- "Sections</em> i/ili na <em>Galleries per Section</em>. Adaptirajte ga da "
509
- "odgovara važoj temi."
510
-
511
- #: ../easy-fancybox-settings.php:602
512
- msgid ""
513
- "Examples: If your theme wraps post content in a div with class post, change "
514
- "this value to \"div.post\". If you only want to group images in a WordPress "
515
- "gallery together, use \"div.gallery\". If you want to include images in a "
516
- "sidebar with ID primary, add \", #primary\"."
517
- msgstr ""
518
- "Primeri: Ako vaša tema obmotava sadržaja posta u div sa klasom posta, "
519
- "promenite ovu vrednost u \"div.post\". Ako želite samo da grupišete slike u "
520
- "Word Press galeriji, koristite \"div.gallery\". Ako želite da slike "
521
- "uključite u bočni bar sa ID primarno, dodajte \", #primary\""
522
-
523
- #: ../easy-fancybox-settings.php:602
524
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
525
- msgid ""
526
- "Hide/show title on mouse hover action works best with Overlay title position."
527
- msgstr ""
528
- "Hide/show naslov na “miš lebdi” akciji najbolje radi sa Overlay pozicijom "
529
- "naslova."
530
-
531
- #: ../easy-fancybox-settings.php:602
532
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
533
- msgstr "Slajdšou koristi fiksiranih 6,8 ili 12 sekundi po slici."
534
-
535
- #: ../easy-fancybox-settings.php:602
536
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
537
- msgid "(6 seconds)"
538
- msgstr "(6 sekundi)"
539
-
540
- #: ../easy-fancybox-settings.php:602
541
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
542
- msgid "(8 seconds)"
543
- msgstr "(8 sekundi)"
544
-
545
- #: ../easy-fancybox-settings.php:602
546
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
547
- msgid "(12 seconds)"
548
- msgstr "(12 sekundi)"
549
-
550
- #: ../easy-fancybox-settings.php:610
551
- msgid "Slideshow"
552
- msgstr "Slajdšou"
553
-
554
- #: ../easy-fancybox-settings.php:638
555
- msgid ""
556
- "To make inline content open in an overlay, wrap that content in a div with a "
557
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
558
- "\"fancybox-inline\" attribute."
559
- msgstr ""
560
- "Da biste napravili inlajn sadržaj otvorite u preklapanju, obmotajte sadržaj "
561
- "u div sa jedinstvenim ID, napravite link sa target \"#uniqueID\" i dajte u "
562
- "klasu \"fancybox-inline\" atribut."
563
-
564
- #: ../easy-fancybox-settings.php:656
565
- msgid ""
566
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
567
- "determined, the default dimensions will be used."
568
- msgstr ""
569
- "Pokušajte da podesite veličinu prema inline/html sadržaju. Ukoliko je "
570
- "isključen ili veličina ne mođe biti određena, biće korišćene predefinisane "
571
- "dimenzije."
572
-
573
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
574
- msgid "Scrolling"
575
- msgstr "Skrolovanje"
576
-
577
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
578
- msgid "Auto"
579
- msgstr "Automatski"
580
-
581
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
582
- msgid "Always"
583
- msgstr "Uvek"
584
-
585
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
586
- msgid "Never"
587
- msgstr "Nikada"
588
-
589
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
590
- msgid "Define scrolling and scrollbar visibility."
591
- msgstr "Definiši vidljivost skrolovanja i skrol bara."
592
-
593
- #: ../easy-fancybox-settings.php:748
594
- msgid ""
595
- "To make any PDF document file open in an overlay, switch on Autodetect or "
596
- "use the class \"fancybox-pdf\" for its link."
597
- msgstr ""
598
- "Da biste napravili bilo kakav PDF dokument fajl otvorite u preklapanju, "
599
- "prebacite na Autodetect ili koristite klasu \"fancybox-pdf\" za njegov link."
600
-
601
- #: ../easy-fancybox-settings.php:873
602
- msgid ""
603
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
604
- "use the class \"fancybox-swf\" for its link."
605
- msgstr ""
606
- "Da biste napravili bilo koji Flash (.swf) fajl otvorite u preklapanju, "
607
- "prebacite na Autodetect ili koristite klasu \"fancybox-swf\" za njegov link."
608
-
609
- #: ../easy-fancybox-settings.php:967
610
- msgid ""
611
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
612
- "the class \"fancybox-svg\" for its link."
613
- msgstr ""
614
- "Da biste napravili bilo koji SVG (.svg) fajl otvorite u preklapanju, "
615
- "prebacite na Autodetect ili koristite klasu \"fancybox-svg\" za njegov link."
616
-
617
- #: ../easy-fancybox-settings.php:1062
618
- msgid ""
619
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
620
- "the class \"fancybox-youtube\" for its link."
621
- msgstr ""
622
- "Da biste napravili bilo koji YouTube film otvorite u preklapanju, prebacite "
623
- "na Autodetect ili koristite klasu \"fancybox-youtube\" za njegov link."
624
-
625
- #: ../easy-fancybox-settings.php:1080
626
- msgid "Autodetect Short links"
627
- msgstr "Autodetect Short linkovi"
628
-
629
- #: ../easy-fancybox-settings.php:1170
630
- msgid ""
631
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
632
- "class \"fancybox-vimeo\" for its link."
633
- msgstr ""
634
- "Da biste napravili bilo koji Vimeo film otvorite u preklapanju, prebacite na "
635
- "Autodetect ili koristite klasu \"fancybox-vimeo\" za njegov link."
636
-
637
- #: ../easy-fancybox-settings.php:1270
638
- msgid ""
639
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
640
- "use the class \"fancybox-dailymotion\" for its link."
641
- msgstr ""
642
- "Da biste napravili bilo koji Dailymotion film otvorite u preklapanju, "
643
- "prebacite na Autodetect ili koristite klasu \"fancybox-dailymotion\" za "
644
- "njegov link."
645
-
646
- #: ../easy-fancybox-settings.php:1396
647
- msgid ""
648
- "To make a website or HTML document open in an overlay, use the class "
649
- "\"fancybox-iframe\" for its link."
650
- msgstr ""
651
- "Da biste napravili vebsajt ili HTML dokument otvorite u preklapanju, "
652
- "koristite klasu \"fancybox-iframe\" za njegov link."
653
-
654
- #: ../easy-fancybox-class.php:298
655
- msgid "Donate to keep the Easy FancyBox plugin development going!"
656
- msgstr ""
657
- "Donirajte da biste omogućili nastavak razvoja Easy FancyBox dodatnog "
658
- "programa ! "
659
-
660
- #: ../easy-fancybox-class.php:298
661
- #, php-format
662
- msgid ""
663
- "The options in this section are provided by the plugin %s and determine the "
664
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
665
- "by %s."
666
- msgstr ""
667
- "Opcije u ovom odeljku su omogućene preko dodatnog programa %s i određuju "
668
- "pojavu Media Lighbox preklapanja i ponašanje kontrolisano preko %s."
669
-
670
- #: ../easy-fancybox-class.php:298
671
- msgid "Easy FancyBox"
672
- msgstr "Easy FancyBox"
673
-
674
- #: ../easy-fancybox-class.php:298 ../easy-fancybox-class.php:510
675
- #: ../easy-fancybox-class.php:554
676
- msgid "FancyBox"
677
- msgstr "FancyBox"
678
-
679
- #: ../easy-fancybox-class.php:298
680
- msgid ""
681
- "First enable each sub-section that you need. Then save and come back to "
682
- "adjust its specific settings."
683
- msgstr ""
684
- "Prvo aktivirajte svaku sub sekciju koja vam je potrebna. Zatim sačuvajte i "
685
- "vratite se da podesite njihova specifična podešavanja."
686
-
687
- #: ../easy-fancybox-class.php:298
688
- msgid ""
689
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
690
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
691
- "will have some extra impact on client-side page speed. Enable only those sub-"
692
- "sections and options that you actually need on your site."
693
- msgstr ""
694
- "Napomena: Svaka dodatna sub sekcija i funkcije poput <em>Auto-detection</"
695
- "em>, <em>Elastic transitions</em> i svi <em>Easing effects</em> (osim Swing) "
696
- "će imati neki ekstra uticaj na brzinu klijentove strane. Aktivirajte samo "
697
- "one sub sekcije i opcije koji su vam zaista potrebne na vašem sajtu."
698
-
699
- #: ../easy-fancybox-class.php:298
700
- msgid ""
701
- "Some setting like Transition options are unavailable for SWF video, PDF and "
702
- "iFrame content to ensure browser compatibility and readability."
703
- msgstr ""
704
- "Neka podešavanja, poput opcije Tranzicija, nedostupne su za SWF video, PDF i "
705
- "iFrame sadržaj kako biste osigurali kompatibilnost i spremnost brauzera."
706
-
707
- #: ../easy-fancybox-class.php:342
708
- msgid "Checked"
709
- msgstr "Provereno"
710
-
711
- #: ../easy-fancybox-class.php:344
712
- msgid "Unchecked"
713
- msgstr "Neprovereno "
714
-
715
- #: ../easy-fancybox-class.php:391
716
- msgid "Settings"
717
- msgstr "Podešavanja"
718
-
719
- #: ../easy-fancybox-class.php:554
720
- msgid "Easy FancyBox Settings"
721
- msgstr "Easy FancyBox podešavanja"
722
-
723
- #: ../easy-fancybox-class.php:565
724
- msgid "Sections"
725
- msgstr "Sekcije"
726
-
727
- #: ../easy-fancybox-class.php:602
728
- msgid "Support"
729
- msgstr "Podrška"
730
-
731
- #: ../easy-fancybox-class.php:603
732
- msgid "Resources"
733
- msgstr "Izvori"
734
-
735
- #: ../easy-fancybox-class.php:604
736
- msgid "Discussion"
737
- msgstr "Diskusije"
738
-
739
- #: ../easy-fancybox-class.php:605
740
- msgid "Credits"
741
- msgstr "Zasluge"
742
-
743
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
744
- msgid ""
745
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
746
- "available."
747
- msgstr ""
748
- "Hvala što naručujete Easy FancyBox - Pro ekstenziju. Dostupne su i nove "
749
- "opcije."
750
-
751
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
752
- msgid "Get support here."
753
- msgstr "Podršku tražite ovde"
754
-
755
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
756
- msgid "First Image link"
757
- msgstr "Prvi Image link"
758
-
759
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
760
- msgid "First PDF link"
761
- msgstr "Prvi PDF link"
762
-
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
764
- msgid "First SWF link"
765
- msgstr "Prvi SWF link"
766
-
767
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
768
- msgid "First SVG link"
769
- msgstr "Prvi SVG link"
770
-
771
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
772
- msgid "First YouTube link "
773
- msgstr "Prvi YouTube link"
774
-
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
776
- msgid "First Vimeo link "
777
- msgstr "Prvi Vimeo link"
778
-
779
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
780
- msgid "First Dailymotion link "
781
- msgstr "Prvi Dailymotion link"
782
-
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
784
- msgid "First iFrame link"
785
- msgstr "Prvi iFrame link"
786
-
787
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
788
- msgid "First of any link"
789
- msgstr "Prvi među svim linkovima"
790
-
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
792
- msgid "Links inside Section(s) only (below)"
793
- msgstr "Linkovi unutar sekcije(a) samo (ispod)"
794
-
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
799
- msgid "easeInQuad"
800
- msgstr "easeInQuad"
801
-
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
806
- msgid "easeOutQuad"
807
- msgstr "easeOutQuad"
808
-
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
813
- msgid "easeInOutQuad"
814
- msgstr "easeInOutQuad"
815
-
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
820
- msgid "easeInCubic"
821
- msgstr "easeInCubic"
822
-
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
827
- msgid "easeOutCubic"
828
- msgstr "easeOutCubic"
829
-
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
834
- msgid "easeInOutCubic"
835
- msgstr "easeInOutCubic"
836
-
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
841
- msgid "easeInQuart"
842
- msgstr "easeInQuart"
843
-
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
848
- msgid "easeOutQuart"
849
- msgstr "easeOutQuart"
850
-
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
855
- msgid "easeInOutQuart"
856
- msgstr "easeInOutQuart"
857
-
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
862
- msgid "easeInQuint"
863
- msgstr "easeInQuint"
864
-
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
869
- msgid "easeOutQuint"
870
- msgstr "easeOutQuint"
871
-
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
876
- msgid "easeInOutQuint"
877
- msgstr "easeInOutQuint"
878
-
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
883
- msgid "easeInSine"
884
- msgstr "easeInSine"
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
890
- msgid "easeOutSine"
891
- msgstr "easeOutSine"
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
897
- msgid "easeInOutSine"
898
- msgstr "easeInOutSine"
899
-
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
904
- msgid "easeInExpo"
905
- msgstr "easeInExpo"
906
-
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
911
- msgid "easeOutExpo"
912
- msgstr "easeInExpo"
913
-
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
918
- msgid "easeInOutExpo"
919
- msgstr "easeInOutExpo"
920
-
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
925
- msgid "easeInCirc"
926
- msgstr "easeInCirc"
927
-
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
932
- msgid "easeOutCirc"
933
- msgstr "easeOutCirc"
934
-
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
939
- msgid "easeInOutCirc"
940
- msgstr "easeInOutCirc"
941
-
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
943
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
944
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
945
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
946
- msgid "easeInElastic"
947
- msgstr "easeInElastic"
948
-
949
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
950
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
951
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
952
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
953
- msgid "easeOutElastic"
954
- msgstr "easeOutElastic"
955
-
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
957
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
958
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
959
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
960
- msgid "easeInOutElastic"
961
- msgstr "easeInOutElastic"
962
-
963
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
964
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
965
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
966
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
967
- msgid "easeInOutBack"
968
- msgstr "easeInOutBack"
969
-
970
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
971
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
972
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
974
- msgid "easeInBounce"
975
- msgstr "easeInBounce"
976
-
977
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
978
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
979
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
980
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
981
- msgid "easeOutBounce"
982
- msgstr "easeOutBounce"
983
-
984
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
985
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
986
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
987
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
988
- msgid "easeInOutBounce"
989
- msgstr "easeInOutBounce"
990
-
991
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
992
- msgid "Section(s)"
993
- msgstr "Sekcija(e)"
994
-
995
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
996
- msgid ""
997
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
998
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
999
- "it to conform with your theme."
1000
- msgstr ""
1001
- "Ovo se primenjuje kada je <em>Apply to</em>podešeno na <em>Limited to "
1002
- "Sections</em> i/ili <em>Auto-gallery</em> podeženo na <em>Galleries per "
1003
- "Section</em>. "
1004
-
1005
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
1006
- msgid ""
1007
- "Examples: If your theme wraps post content in a div with class post, change "
1008
- "this value to \"div.post\". If you want to include images in a sidebar with "
1009
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
1010
- "you only want to group images in a WordPress gallery together, use \"div."
1011
- "gallery\". If you want to include images in a sidebar with ID primary, add "
1012
- "\", #primary\"."
1013
- msgstr ""
1014
- "Primeri: Ako vaša tema obmotava sadržaja posta u div sa klasom posta, "
1015
- "promenite ovu vrednost u \"div.post\". Ako želite da slike uključite u bočni "
1016
- "bar sa ID primarno, dodajte \",div#primary\" ili \"aside#primary\" za html5 "
1017
- "teme. Ako želite samo da grupišete slike u WordPress galeriji, koristite"
1018
- "\"div.gallery\". Ako želite da uključite slike u bočni bar sa ID primarno, "
1019
- "dodajte \", #primary\"."
1020
-
1021
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
1022
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
1023
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
1024
- msgid "Gallery Auto-rotation"
1025
- msgstr "Auto rotacija galerije"
1026
-
1027
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
1028
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
1029
- msgstr "Auto rotacija koristi fiksnih 6,8 ili 12 sekundi po slici"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-tr_TR.mo DELETED
Binary file
languages/easy-fancybox-tr_TR.po DELETED
@@ -1,1073 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.5.0\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-06-14 00:53+0100\n"
8
- "PO-Revision-Date: 2013-07-22 19:35+0200\n"
9
- "Last-Translator: HakanEr <hakanerwptr@gmail.com>\n"
10
- "Language-Team: hakaner <hakanerwptr@gmail.com>\n"
11
- "Language: turkish\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
-
19
- #: ../easy-fancybox-settings.php:9 ../easy-fancybox-class.php:566
20
- msgid "Global settings"
21
- msgstr "Genel ayarlar"
22
-
23
- #: ../easy-fancybox-settings.php:14
24
- msgid "Media"
25
- msgstr "Medya"
26
-
27
- #: ../easy-fancybox-settings.php:20
28
- msgid "Enable FancyBox for"
29
- msgstr "FancyBox'ı şunun için etkinleştir"
30
-
31
- #: ../easy-fancybox-settings.php:27 ../easy-fancybox-settings.php:370
32
- #: ../easy-fancybox-class.php:567
33
- msgid "Images"
34
- msgstr "Resimler"
35
-
36
- #: ../easy-fancybox-settings.php:34 ../easy-fancybox-settings.php:633
37
- #: ../easy-fancybox-class.php:568
38
- msgid "Inline content"
39
- msgstr "Satıriçi içerik"
40
-
41
- #: ../easy-fancybox-settings.php:41 ../easy-fancybox-settings.php:743
42
- #: ../easy-fancybox-class.php:569
43
- msgid "PDF"
44
- msgstr "PDF"
45
-
46
- #: ../easy-fancybox-settings.php:48 ../easy-fancybox-settings.php:868
47
- #: ../easy-fancybox-class.php:570
48
- msgid "SWF"
49
- msgstr "SWF"
50
-
51
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
52
- msgid "SVG"
53
- msgstr "SVG"
54
-
55
- #: ../easy-fancybox-settings.php:62 ../easy-fancybox-settings.php:1057
56
- #: ../easy-fancybox-class.php:571
57
- msgid "YouTube"
58
- msgstr "YouTube"
59
-
60
- #: ../easy-fancybox-settings.php:69 ../easy-fancybox-settings.php:1165
61
- #: ../easy-fancybox-class.php:572
62
- msgid "Vimeo"
63
- msgstr "Vimeo"
64
-
65
- #: ../easy-fancybox-settings.php:76 ../easy-fancybox-settings.php:1265
66
- #: ../easy-fancybox-class.php:573
67
- msgid "Dailymotion"
68
- msgstr "Dailymotion"
69
-
70
- #: ../easy-fancybox-settings.php:83 ../easy-fancybox-settings.php:1391
71
- #: ../easy-fancybox-class.php:574
72
- msgid "iFrames"
73
- msgstr "iFrame"
74
-
75
- #: ../easy-fancybox-settings.php:86
76
- msgid ""
77
- "For advanced options and support, please get the Easy FancyBox - Pro "
78
- "extension."
79
- msgstr ""
80
- "Gelişmiş seçenekler ve destek için, lütfen Easy FancyBox - Pro eklentisine "
81
- "geçiniz."
82
-
83
- #: ../easy-fancybox-settings.php:89
84
- msgid "Links"
85
- msgstr "Bağlantılar"
86
-
87
- #: ../easy-fancybox-settings.php:95
88
- msgid "Exclude"
89
- msgstr "Dışla"
90
-
91
- #: ../easy-fancybox-settings.php:100 ../easy-fancybox-settings.php:114
92
- #: ../easy-fancybox-settings.php:421 ../easy-fancybox-settings.php:448
93
- #: ../easy-fancybox-settings.php:677 ../easy-fancybox-settings.php:704
94
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:227
95
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:252
96
- msgid "None"
97
- msgstr "Hiçbiri"
98
-
99
- #: ../easy-fancybox-settings.php:101
100
- msgid "Empty (hidden) links"
101
- msgstr "Boş (gizli) bağlantılar"
102
-
103
- #: ../easy-fancybox-settings.php:102
104
- msgid "Without thumbnail image"
105
- msgstr "Küçük resim olmadan"
106
-
107
- #: ../easy-fancybox-settings.php:109
108
- msgid "Open on page load"
109
- msgstr "Sayfa yüklendiğinde aç"
110
-
111
- #: ../easy-fancybox-settings.php:115
112
- msgid "Link with ID \"fancybox-auto\""
113
- msgstr "ID ile bağlantı \"fancybox-otomatik\""
114
-
115
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
116
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
117
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
118
- #: ../easy-fancybox-settings.php:723
119
- msgid "More options &raquo;"
120
- msgstr "Daha fazla seçenek &raquo;"
121
-
122
- #: ../easy-fancybox-settings.php:125
123
- msgid ""
124
- "Include the Metadata jQuery extension script to allow passing custom "
125
- "parameters via link class."
126
- msgstr ""
127
- "Bağlantı sınıfı ile özel parametrelerin geçişine izin vermek için Metadata "
128
- "jQuery uzantısı komut dosyasını ekle."
129
-
130
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
131
- msgid "Overlay"
132
- msgstr "Kaplama"
133
-
134
- #: ../easy-fancybox-settings.php:139
135
- msgid "Show the overlay around content opened in FancyBox."
136
- msgstr "FancyBox ile açılan içerik etrafında kaplama göster."
137
-
138
- #: ../easy-fancybox-settings.php:146
139
- msgid "Close FancyBox when overlay is clicked."
140
- msgstr "Kaplama tıklandığında FancyBox'ı kapat."
141
-
142
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
143
- msgid "Opacity"
144
- msgstr "Saydamlık"
145
-
146
- #: ../easy-fancybox-settings.php:158
147
- msgid "Value between 0 and 1. "
148
- msgstr "0 ila 1 arasında bir değer."
149
-
150
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
151
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
152
- #: ../easy-fancybox-settings.php:595
153
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
154
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
155
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
156
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
157
- msgid "Default:"
158
- msgstr "Varsayılan:"
159
-
160
- #: ../easy-fancybox-settings.php:162
161
- msgid "Color"
162
- msgstr "Renk"
163
-
164
- #: ../easy-fancybox-settings.php:167
165
- msgid "Enter an HTML color value."
166
- msgstr "Bir HTML renk değeri girin."
167
-
168
- #: ../easy-fancybox-settings.php:175
169
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:71
170
- msgid "Spotlight effect"
171
- msgstr "Spot ışığı efekti"
172
-
173
- #: ../easy-fancybox-settings.php:175 ../easy-fancybox-settings.php:236
174
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
175
- #: ../easy-fancybox-settings.php:613
176
- msgid "Make available &raquo;"
177
- msgstr "Kullanılabilir yap &raquo;"
178
-
179
- #: ../easy-fancybox-settings.php:180
180
- msgid "Window"
181
- msgstr "Pencere"
182
-
183
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
184
- msgid "Appearance"
185
- msgstr "Görünüm"
186
-
187
- #: ../easy-fancybox-settings.php:193
188
- msgid "Show the (X) close button"
189
- msgstr "(X) kapatma butonu göster"
190
-
191
- #: ../easy-fancybox-settings.php:198
192
- msgid "Background color"
193
- msgstr "Arkaplan rengi"
194
-
195
- #: ../easy-fancybox-settings.php:208
196
- msgid "Border color"
197
- msgstr "Kenarlık rengi"
198
-
199
- #: ../easy-fancybox-settings.php:218
200
- msgid "Text color"
201
- msgstr "Yazı rengi"
202
-
203
- #: ../easy-fancybox-settings.php:241
204
- msgid "Border radius"
205
- msgstr "Kenarlık yarıçapı"
206
-
207
- #: ../easy-fancybox-settings.php:249
208
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
209
- msgid "Set a border radius to create rounded corners. Higher is rounder."
210
- msgstr ""
211
- "Yuvarlak köşeler oluşturmak için bir kenarlık yarıçapı ayarlayın. Daha "
212
- "yüksek, daha yuvarlaktır."
213
-
214
- #: ../easy-fancybox-settings.php:254
215
- msgid "Dimensions"
216
- msgstr "Boyutlar"
217
-
218
- #: ../easy-fancybox-settings.php:258 ../easy-fancybox-settings.php:771
219
- #: ../easy-fancybox-settings.php:896 ../easy-fancybox-settings.php:990
220
- #: ../easy-fancybox-settings.php:1095 ../easy-fancybox-settings.php:1194
221
- #: ../easy-fancybox-settings.php:1294 ../easy-fancybox-settings.php:1424
222
- msgid "Width"
223
- msgstr "Genişlik"
224
-
225
- #: ../easy-fancybox-settings.php:268 ../easy-fancybox-settings.php:781
226
- #: ../easy-fancybox-settings.php:907 ../easy-fancybox-settings.php:1001
227
- #: ../easy-fancybox-settings.php:1108 ../easy-fancybox-settings.php:1207
228
- #: ../easy-fancybox-settings.php:1307 ../easy-fancybox-settings.php:1434
229
- msgid "Height"
230
- msgstr "Yükseklik"
231
-
232
- #: ../easy-fancybox-settings.php:277 ../easy-fancybox-settings.php:790
233
- #: ../easy-fancybox-settings.php:917 ../easy-fancybox-settings.php:1011
234
- #: ../easy-fancybox-settings.php:1120 ../easy-fancybox-settings.php:1219
235
- #: ../easy-fancybox-settings.php:1319 ../easy-fancybox-settings.php:1443
236
- msgid "Border"
237
- msgstr "Kenarlık"
238
-
239
- #: ../easy-fancybox-settings.php:286
240
- msgid ""
241
- "If content size is not set or cannot be determined automatically, these "
242
- "default dimensions will be used."
243
- msgstr ""
244
- "Eğer içerik boyutu ayarlanmamışsa veya otomatik olarak tespit edilemiyorsa, "
245
- "bu varsayılan boyutlar kullanılacaktır."
246
-
247
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
248
- msgid "Behavior"
249
- msgstr "Hareket tarzı"
250
-
251
- #: ../easy-fancybox-settings.php:298
252
- msgid "Center while scrolling"
253
- msgstr "Kaydırma sırasında ortala"
254
-
255
- #: ../easy-fancybox-settings.php:305
256
- msgid "Esc key stroke closes FancyBox"
257
- msgstr "Esc tuşu FancyBox'ı kapatır"
258
-
259
- #: ../easy-fancybox-settings.php:312
260
- msgid "Scale large content down to fit in the browser viewport."
261
- msgstr "Tarayıcı ekranına sığdırmak için büyük içeriği ölçeklendir."
262
-
263
- #: ../easy-fancybox-settings.php:316
264
- msgid "Opening speed"
265
- msgstr "Açılış hızı"
266
-
267
- #: ../easy-fancybox-settings.php:328
268
- msgid "Closing speed"
269
- msgstr "Kapanış hızı"
270
-
271
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
272
- msgid "Duration in milliseconds. Higher is slower."
273
- msgstr "Milisaniye cinsinden süre. Yükseldikçe yavaşlar."
274
-
275
- #: ../easy-fancybox-settings.php:375
276
- msgid ""
277
- "To make images open in an overlay, add their extension to the Autodetect "
278
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
279
- "all autodetection."
280
- msgstr ""
281
- "Görüntüleri bir kaplama içinde açmak için Otomatik Algıla alanına onların "
282
- "uzantısını ekleyin veya bağlantısı için \"fancybox\" sınıfını kullanın. Tüm "
283
- "Otomatik Algılamaları kapatmak için alanı temizleyin."
284
-
285
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
286
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
287
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
288
- #: ../easy-fancybox-settings.php:1279
289
- msgid "Autodetect"
290
- msgstr "Otomatik Algıla"
291
-
292
- #: ../easy-fancybox-settings.php:397
293
- msgid "Example:"
294
- msgstr "Örnek:"
295
-
296
- #: ../easy-fancybox-settings.php:401
297
- msgid "Apply to"
298
- msgstr "Uygula"
299
-
300
- #: ../easy-fancybox-settings.php:406
301
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
302
- msgid "All image links"
303
- msgstr "Tüm Resim Bağlantıları"
304
-
305
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
306
- msgid "Transition In"
307
- msgstr "İçe Geçiş"
308
-
309
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
310
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
311
- msgid "Fade"
312
- msgstr "Solma"
313
-
314
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
315
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
316
- msgid "Elastic"
317
- msgstr "Esnek"
318
-
319
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
320
- msgid "Easing In"
321
- msgstr "Azaltma Giriş"
322
-
323
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
324
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
325
- msgid "Linear"
326
- msgstr "Doğrusal"
327
-
328
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
329
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
330
- msgid "Swing"
331
- msgstr "Salınım"
332
-
333
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
334
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
335
- msgid "easeInBack"
336
- msgstr "azaltGeriİçe"
337
-
338
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
339
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
340
- msgid "easeOutBack"
341
- msgstr "azaltGeriDışa"
342
-
343
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
344
- msgid "Transition Out"
345
- msgstr "Dışa Geçiş"
346
-
347
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
348
- msgid "Easing Out"
349
- msgstr "Azaltma Çıkış"
350
-
351
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
352
- #: ../easy-fancybox-settings.php:723
353
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
354
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
355
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
356
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
357
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
358
- msgid "Note:"
359
- msgstr "Not:"
360
-
361
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
362
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
363
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
364
- msgid "Easing effects only apply when Transition is set to Elastic. "
365
- msgstr "Azaltma efektleri sadece Geçiş esnek olarak ayarlandığında geçerlidir."
366
-
367
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
368
- msgid ""
369
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
370
- "Transition In is set to Elastic!"
371
- msgstr ""
372
- "Elastik geçiş sırasında saydam soldurma. DİKKAT: Geçiş Elastik olarak "
373
- "ayarlandığında kullanın!"
374
-
375
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
376
- msgid "Close FancyBox when content is clicked"
377
- msgstr "İçerik tıklandığında FancyBox'ı kapat"
378
-
379
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
380
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
381
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
382
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
383
- msgid "Show title"
384
- msgstr "Başlığı göster"
385
-
386
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
387
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
388
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
389
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
390
- msgid "Title Position"
391
- msgstr "Başlık Pozisyonu"
392
-
393
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
394
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
395
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
396
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
397
- msgid "Float"
398
- msgstr "Kayan"
399
-
400
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
401
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
402
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
403
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
404
- msgid "Outside"
405
- msgstr "Dış taraf"
406
-
407
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
408
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
409
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
410
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
411
- msgid "Inside"
412
- msgstr "İç taraf"
413
-
414
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
415
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
416
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
417
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
418
- msgid "Allow title from thumbnail alt tag"
419
- msgstr "Küçük resim alt etiketinden başlığa izin ver"
420
-
421
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
422
- msgid "Advanced"
423
- msgstr "Gelişmiş"
424
-
425
- #: ../easy-fancybox-settings.php:521
426
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
427
- msgid "Hide/show title on mouse hover action"
428
- msgstr "Fare üzerindeyken başlığı gizle/göster"
429
-
430
- #: ../easy-fancybox-settings.php:528
431
- msgid "Gallery"
432
- msgstr "Galeri"
433
-
434
- #: ../easy-fancybox-settings.php:532
435
- msgid "Autogallery"
436
- msgstr "Otomatik Galeri"
437
-
438
- #: ../easy-fancybox-settings.php:537
439
- msgid "Disabled"
440
- msgstr "Devre dışı"
441
-
442
- #: ../easy-fancybox-settings.php:538
443
- msgid "WordPress galleries only"
444
- msgstr "Sadece WordPress galerileri"
445
-
446
- #: ../easy-fancybox-settings.php:539
447
- msgid "All in one gallery"
448
- msgstr "Hepsi bir arada galeri"
449
-
450
- #: ../easy-fancybox-settings.php:542
451
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
452
- msgid ""
453
- "When disabled, you can use the rel attribute to manually group image links "
454
- "together."
455
- msgstr ""
456
- "Devre dışı bırakıldığında, resim bağlantılarını birlikte gruplamak için el "
457
- "ile rel özniteliği kullanabilirsiniz."
458
-
459
- #: ../easy-fancybox-settings.php:542
460
- msgid ""
461
- "Leave the mousewheel option (below) unchecked when you do not use FancyBox "
462
- "for galleries on your site."
463
- msgstr ""
464
- "Sitenizde galeriler için FancyBox kullanmadığınız zaman fare tekerleği "
465
- "seçeneğini (altta) işaretlemeyin."
466
-
467
- #: ../easy-fancybox-settings.php:549
468
- msgid "Show the gallery navigation arrows"
469
- msgstr "Galeri navigasyon oklarını göster"
470
-
471
- #: ../easy-fancybox-settings.php:556
472
- msgid "Arrow key strokes browse the gallery"
473
- msgstr "Klavye ok tuşlarına basarak galeride gez"
474
-
475
- #: ../easy-fancybox-settings.php:563
476
- msgid ""
477
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
478
- "mousewheel action."
479
- msgstr ""
480
- "Fare tekerleği hareketi ile galeride gezmeye izin vermek için Fare tekerleği "
481
- "jQuery uzantısı komut dosyasını ekle."
482
-
483
- #: ../easy-fancybox-settings.php:570
484
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
485
- msgstr ""
486
- "İleri/geri tuşlarına basılı tutmaya izin vermek için galerileri döngüsel yap."
487
-
488
- #: ../easy-fancybox-settings.php:574
489
- msgid "Change speed"
490
- msgstr "Değiştirme hızı"
491
-
492
- #: ../easy-fancybox-settings.php:586
493
- msgid "Fade speed"
494
- msgstr "Solma hızı"
495
-
496
- #: ../easy-fancybox-settings.php:602
497
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
498
- msgid "Galleries per Section (below)"
499
- msgstr "Bölüm başına Galeriler (altta)"
500
-
501
- #: ../easy-fancybox-settings.php:602
502
- msgid ""
503
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
504
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
505
- "it to conform with your theme."
506
- msgstr ""
507
- "Bu, <em>Uygula</em> seçeneği <em>Bölümlerle Sınırlı</em> ve/veya "
508
- "<em>Otomatik Galeri</em> seçeneği <em>Bölüm başına Galeriler</em> olarak "
509
- "ayarlandığı zaman geçerlidir. Temanıza uyması için onu uyarlayın."
510
-
511
- #: ../easy-fancybox-settings.php:602
512
- msgid ""
513
- "Examples: If your theme wraps post content in a div with class post, change "
514
- "this value to \"div.post\". If you only want to group images in a WordPress "
515
- "gallery together, use \"div.gallery\". If you want to include images in a "
516
- "sidebar with ID primary, add \", #primary\"."
517
- msgstr ""
518
- "Örnekler: Eğer temanız yazı içeriğini bir div yazı sınıfı ile sarıyorsa, bu "
519
- "değeri \"div.post\" olarak değiştirin. Eğer yalnızca bir WordPress "
520
- "galerisinde resimleri gruplamak istiyorsanız, \"div.gallery\" kullanın. Eğer "
521
- "kenar çubuğunuza ana ID ile resimler eklemek istiyorsanız, \", #primary\" "
522
- "ekleyin."
523
-
524
- #: ../easy-fancybox-settings.php:602
525
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
526
- msgid ""
527
- "Hide/show title on mouse hover action works best with Overlay title position."
528
- msgstr ""
529
- "Fare üzerindeyken, başlığı gizle/göster eylemi Kaplama başlık konumu ile "
530
- "daha iyi çalışır."
531
-
532
- #: ../easy-fancybox-settings.php:602
533
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
534
- msgstr ""
535
- "Slayt gösterisi, resim başına sabit 6, 8 ya da 12 saniyelik bir duraklama "
536
- "kullanır."
537
-
538
- #: ../easy-fancybox-settings.php:602
539
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
540
- msgid "(6 seconds)"
541
- msgstr "(6 saniye)"
542
-
543
- #: ../easy-fancybox-settings.php:602
544
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
545
- msgid "(8 seconds)"
546
- msgstr "(8 saniye)"
547
-
548
- #: ../easy-fancybox-settings.php:602
549
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
550
- msgid "(12 seconds)"
551
- msgstr "(12 saniye)"
552
-
553
- #: ../easy-fancybox-settings.php:610
554
- msgid "Slideshow"
555
- msgstr "Slayt gösterisi"
556
-
557
- #: ../easy-fancybox-settings.php:638
558
- msgid ""
559
- "To make inline content open in an overlay, wrap that content in a div with a "
560
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
561
- "\"fancybox-inline\" attribute."
562
- msgstr ""
563
- "Satıriçi içeriği bir kaplama içinde açılır hale getirmek için, benzersiz bir "
564
- "ID kimliği ile bu içeriği bir div içinde paketleyin, \"#uniqueID\" hedefi "
565
- "ile bir bağlantı oluşturun ve ona bir \"fancybox-inline\" sınıf niteliği "
566
- "atayın."
567
-
568
- #: ../easy-fancybox-settings.php:656
569
- msgid ""
570
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
571
- "determined, the default dimensions will be used."
572
- msgstr ""
573
- "Satıriçi/html içeriğe boyutu ayarlamayı deneyin. Eğer işaretlenmeişse veya "
574
- "boyut tespit edilememişse, varsayılan boyutlar kullanılacaktır."
575
-
576
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
577
- msgid "Scrolling"
578
- msgstr "Kaydırma"
579
-
580
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
581
- msgid "Auto"
582
- msgstr "Otomatik"
583
-
584
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
585
- msgid "Always"
586
- msgstr "Daima"
587
-
588
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
589
- msgid "Never"
590
- msgstr "Asla"
591
-
592
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
593
- msgid "Define scrolling and scrollbar visibility."
594
- msgstr "Kaydırma ve kaydırma çubuğu görünürlüğünü tanımlayın."
595
-
596
- #: ../easy-fancybox-settings.php:748
597
- msgid ""
598
- "To make any PDF document file open in an overlay, switch on Autodetect or "
599
- "use the class \"fancybox-pdf\" for its link."
600
- msgstr ""
601
- "Herhangi bir PDF belgesini bir kaplama içinde açmak için, Otomatik Algıla'yı "
602
- "açın veya bağlantısı için \"fancybox-pdf\" sınıfını kullanın."
603
-
604
- #: ../easy-fancybox-settings.php:873
605
- msgid ""
606
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
607
- "use the class \"fancybox-swf\" for its link."
608
- msgstr ""
609
- "Herhangi bir Flash (.swf) dosyasını bir kaplama içinde açmak için, Otomatik "
610
- "Algıla'yı açın veya bağlantısı için \"fancybox-swf\" sınıfını kullanın."
611
-
612
- #: ../easy-fancybox-settings.php:967
613
- msgid ""
614
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
615
- "the class \"fancybox-svg\" for its link."
616
- msgstr ""
617
- "Herhangi bir SVG (.svg) dosyasını bir kaplama içinde açmak için, Otomatik "
618
- "Algıla'yı açın veya bağlantısı için \"fancybox-svg\" sınıfını kullanın."
619
-
620
- #: ../easy-fancybox-settings.php:1062
621
- msgid ""
622
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
623
- "the class \"fancybox-youtube\" for its link."
624
- msgstr ""
625
- "Herhangi bir YouTube filmini bir kaplama içinde açmak için, Otomatik "
626
- "Algıla'yı açın veya bağlantısı için \"fancybox-youtube\" sınıfını kullanın."
627
-
628
- #: ../easy-fancybox-settings.php:1080
629
- msgid "Autodetect Short links"
630
- msgstr "Kısa bağlantıları Otomatik Algıla"
631
-
632
- #: ../easy-fancybox-settings.php:1170
633
- msgid ""
634
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
635
- "class \"fancybox-vimeo\" for its link."
636
- msgstr ""
637
- "Herhangi bir Vimeo filmini bir kaplama içinde açmak için, Otomatik Algıla'yı "
638
- "açın veya bağlantısı için \"fancybox-vimeo\" sınıfını kullanın."
639
-
640
- #: ../easy-fancybox-settings.php:1270
641
- msgid ""
642
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
643
- "use the class \"fancybox-dailymotion\" for its link."
644
- msgstr ""
645
- "Herhangi bir Dailymotion filmini bir kaplama içinde açmak için, Otomatik "
646
- "Algılayı açın veya bağlantısı için \"fancybox-dailymotion\" sınıfını "
647
- "kullanın."
648
-
649
- #: ../easy-fancybox-settings.php:1396
650
- msgid ""
651
- "To make a website or HTML document open in an overlay, use the class "
652
- "\"fancybox-iframe\" for its link."
653
- msgstr ""
654
- "Herhangi bir web site veya HTML belgesini bir kaplama içinde açmak için "
655
- "bağlantısında \"fancybox-iframe\" sınıfını kullanın."
656
-
657
- #: ../easy-fancybox-class.php:298
658
- msgid "Donate to keep the Easy FancyBox plugin development going!"
659
- msgstr ""
660
- "Easy FancyBox eklentisinin geliştirilmesini devam ettirmek için bağış yapın!"
661
-
662
- #: ../easy-fancybox-class.php:298
663
- #, php-format
664
- msgid ""
665
- "The options in this section are provided by the plugin %s and determine the "
666
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
667
- "by %s."
668
- msgstr ""
669
- "Bu bölümde yer alan seçenekler %s eklentisi tarafından sağlanmaktadır ve "
670
- "kaplama görünümünü <strong>Media Lightbox</strong> belirler, %s tarafından "
671
- "da işleyişi kontrol edilmektedir."
672
-
673
- #: ../easy-fancybox-class.php:298
674
- msgid "Easy FancyBox"
675
- msgstr "Easy FancyBox"
676
-
677
- #: ../easy-fancybox-class.php:298 ../easy-fancybox-class.php:510
678
- #: ../easy-fancybox-class.php:554
679
- msgid "FancyBox"
680
- msgstr "FancyBox"
681
-
682
- #: ../easy-fancybox-class.php:298
683
- msgid ""
684
- "First enable each sub-section that you need. Then save and come back to "
685
- "adjust its specific settings."
686
- msgstr ""
687
- "Öncelikle, ihtiyaç duyduğunuz her alt bölümü etkinleştirin. Sonra, kaydedin "
688
- "ve belirli ayarlarını yapmak için geri gelin."
689
-
690
- #: ../easy-fancybox-class.php:298
691
- msgid ""
692
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
693
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
694
- "will have some extra impact on client-side page speed. Enable only those sub-"
695
- "sections and options that you actually need on your site."
696
- msgstr ""
697
- "Not: <em>Otomatik Algıla</em>, <em>Esnek geçişler</em> ve <em>Azaltma "
698
- "efektleri</em> (Salınım hariç) gibi ilave her alt bölüm ve özellik, istemci "
699
- "taraflı sayfa hızına fazladan etki edecektir. Bu alt bölümler ve "
700
- "seçenekleri, sitenizde gerçekten ihtiyaç duyuyorsanız etkinleştirin."
701
-
702
- #: ../easy-fancybox-class.php:298
703
- msgid ""
704
- "Some setting like Transition options are unavailable for SWF video, PDF and "
705
- "iFrame content to ensure browser compatibility and readability."
706
- msgstr ""
707
- "Geçiş seçenekleri gibi bazı ayarlar, tarayıcı uyumluluğu ve okunabilirlik "
708
- "sağlamak için SWF video, PDF ve iFrame içeriklerinde kullanılamaz."
709
-
710
- #: ../easy-fancybox-class.php:342
711
- msgid "Checked"
712
- msgstr "İşaretli"
713
-
714
- #: ../easy-fancybox-class.php:344
715
- msgid "Unchecked"
716
- msgstr "İşaretsiz"
717
-
718
- #: ../easy-fancybox-class.php:391
719
- msgid "Settings"
720
- msgstr "Ayarlar"
721
-
722
- #: ../easy-fancybox-class.php:554
723
- msgid "Easy FancyBox Settings"
724
- msgstr "Easy FancyBox Ayarları"
725
-
726
- #: ../easy-fancybox-class.php:565
727
- msgid "Sections"
728
- msgstr "Bölümler"
729
-
730
- #: ../easy-fancybox-class.php:602
731
- msgid "Support"
732
- msgstr "Destek"
733
-
734
- #: ../easy-fancybox-class.php:603
735
- msgid "Resources"
736
- msgstr "Kaynaklar"
737
-
738
- #: ../easy-fancybox-class.php:604
739
- msgid "Discussion"
740
- msgstr "Tartışma"
741
-
742
- #: ../easy-fancybox-class.php:605
743
- msgid "Credits"
744
- msgstr "Teşekkürler"
745
-
746
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
747
- msgid ""
748
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
749
- "available."
750
- msgstr ""
751
- "Easy FancyBox - Pro eklentisini satın aldığınız için teşekkür ederiz. Yeni "
752
- "seçenekler kullanılabilir."
753
-
754
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
755
- msgid "Get support here."
756
- msgstr "Buradan destek alın."
757
-
758
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
759
- msgid "First Image link"
760
- msgstr "Önce Resim bağlantısı"
761
-
762
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
763
- msgid "First PDF link"
764
- msgstr "İlk PDF bağlantısı"
765
-
766
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
767
- msgid "First SWF link"
768
- msgstr "İlk SWF bağlantısı"
769
-
770
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
771
- msgid "First SVG link"
772
- msgstr "İlk SVG bağlantısı"
773
-
774
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
775
- msgid "First YouTube link "
776
- msgstr "İlk YouTube bağlantısı"
777
-
778
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
779
- msgid "First Vimeo link "
780
- msgstr "İlk Vimeo bağlantısı"
781
-
782
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
783
- msgid "First Dailymotion link "
784
- msgstr "İlk Dailymotion bağlantısı"
785
-
786
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
787
- msgid "First iFrame link"
788
- msgstr "İlk iFrame bağlantısı"
789
-
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
791
- msgid "First of any link"
792
- msgstr "İlk herhangi bir bağlantı"
793
-
794
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
795
- msgid "Links inside Section(s) only (below)"
796
- msgstr "Sadece Bölüm içindeki bağlantı(lar) (altta)"
797
-
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
799
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
800
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
801
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
802
- msgid "easeInQuad"
803
- msgstr "azaltDörtlüİçe"
804
-
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
806
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
807
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
808
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
809
- msgid "easeOutQuad"
810
- msgstr "azaltDörtlüDışa"
811
-
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
813
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
814
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
815
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
816
- msgid "easeInOutQuad"
817
- msgstr "azaltDörtlüİçeDışa"
818
-
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
820
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
821
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
822
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
823
- msgid "easeInCubic"
824
- msgstr "azaltKüpİçe"
825
-
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
827
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
828
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
829
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
830
- msgid "easeOutCubic"
831
- msgstr "azaltKüpDışa"
832
-
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
834
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
835
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
836
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
837
- msgid "easeInOutCubic"
838
- msgstr "azaltKüpİçeDışa"
839
-
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
841
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
842
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
843
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
844
- msgid "easeInQuart"
845
- msgstr "azaltÇeyrekİçe"
846
-
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
848
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
849
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
850
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
851
- msgid "easeOutQuart"
852
- msgstr "azaltÇeyrekDışa"
853
-
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
855
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
856
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
857
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
858
- msgid "easeInOutQuart"
859
- msgstr "azaltÇeyrekİçeDışa"
860
-
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
862
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
863
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
864
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
865
- msgid "easeInQuint"
866
- msgstr "azaltBeşliİçe"
867
-
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
869
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
870
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
871
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
872
- msgid "easeOutQuint"
873
- msgstr "azaltBeşliDışa"
874
-
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
876
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
877
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
878
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
879
- msgid "easeInOutQuint"
880
- msgstr "azaltBeşliİçeDışa"
881
-
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
883
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
884
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
885
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
886
- msgid "easeInSine"
887
- msgstr "azaltSinüsİçe"
888
-
889
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
890
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
891
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
892
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
893
- msgid "easeOutSine"
894
- msgstr "azaltSinüsDışa"
895
-
896
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
897
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
898
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
899
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
900
- msgid "easeInOutSine"
901
- msgstr "azaltSinüsİçeDışa"
902
-
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
904
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
905
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
906
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
907
- msgid "easeInExpo"
908
- msgstr "azaltSergiİçe"
909
-
910
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
911
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
912
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
913
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
914
- msgid "easeOutExpo"
915
- msgstr "azaltSergiDışa"
916
-
917
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
918
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
919
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
920
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
921
- msgid "easeInOutExpo"
922
- msgstr "azaltSergiİçeDışa"
923
-
924
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
925
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
926
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
927
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
928
- msgid "easeInCirc"
929
- msgstr "azaltDaireİçe"
930
-
931
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
932
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
933
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
934
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
935
- msgid "easeOutCirc"
936
- msgstr "azaltDaireDışa"
937
-
938
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
939
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
940
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
941
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
942
- msgid "easeInOutCirc"
943
- msgstr "azaltDaireİçeDışa"
944
-
945
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
946
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
947
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
948
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
949
- msgid "easeInElastic"
950
- msgstr "azaltEsnekİçe"
951
-
952
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
953
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
954
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
955
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
956
- msgid "easeOutElastic"
957
- msgstr "azaltEsnekDışa"
958
-
959
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
960
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
961
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
962
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
963
- msgid "easeInOutElastic"
964
- msgstr "azaltEsnekİçeDışa"
965
-
966
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
967
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
968
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
969
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
970
- msgid "easeInOutBack"
971
- msgstr "azaltGeriİçeDışa"
972
-
973
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
974
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
975
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
976
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
977
- msgid "easeInBounce"
978
- msgstr "azaltZıplamaİçe"
979
-
980
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
981
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
982
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
983
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
984
- msgid "easeOutBounce"
985
- msgstr "azaltZıplamaDışa"
986
-
987
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
988
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
989
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
990
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
991
- msgid "easeInOutBounce"
992
- msgstr "azaltZıplamaİçeDışa"
993
-
994
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
995
- msgid "Section(s)"
996
- msgstr "Bölüm(ler)"
997
-
998
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
999
- msgid ""
1000
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
1001
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
1002
- "it to conform with your theme."
1003
- msgstr ""
1004
- "Bu, <em>Uygula</em> seçeneği <em>Bölümlerle Sınırlı</em> veya <em>Otomatik-"
1005
- "galeri</em> seçeneği <em>Bölüm başına Galeriler</em> olarak ayarlandığı "
1006
- "zaman geçerlidir. Temanıza uyması için uyarlayın."
1007
-
1008
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
1009
- msgid ""
1010
- "Examples: If your theme wraps post content in a div with class post, change "
1011
- "this value to \"div.post\". If you want to include images in a sidebar with "
1012
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
1013
- "you only want to group images in a WordPress gallery together, use \"div."
1014
- "gallery\". If you want to include images in a sidebar with ID primary, add "
1015
- "\", #primary\"."
1016
- msgstr ""
1017
- "Örnekler: Eğer temanız yazı içeriğini bir div yazı sınıfı ile sarıyorsa, bu "
1018
- "değeri \"div.post\" olarak değiştirin. Eğer kenar çubuğunuza ana ID ile bir "
1019
- "resim eklemek istiyorsanız, \", div#primary\" veya html5 temaları için "
1020
- "\"aside#primary\" ekleyin. Eğer yalnızca bir WordPress galerisinde resimleri "
1021
- "gruplamak istiyorsanız, \"div.gallery\" kullanın. Eğer kenar çubuğunuza ana "
1022
- "ID ile resimler eklemek istiyorsanız, \", #primary\" ekleyin."
1023
-
1024
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
1025
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
1026
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
1027
- msgid "Gallery Auto-rotation"
1028
- msgstr "Galeri otomatik-döndürme"
1029
-
1030
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
1031
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
1032
- msgstr ""
1033
- "Otomatik döndürme, resim başına sabit 6, 8 ya da 12 saniyelik bir duraklama "
1034
- "kullanır."
1035
-
1036
- #~ msgid "Size"
1037
- #~ msgstr "Boyut"
1038
-
1039
- #~ msgid "Text"
1040
- #~ msgstr "Metin"
1041
-
1042
- #~ msgid "Back"
1043
- #~ msgstr "Geri"
1044
-
1045
- #~ msgid "Quad"
1046
- #~ msgstr "Dörtlü"
1047
-
1048
- #~ msgid "Expo"
1049
- #~ msgstr "Sergi"
1050
-
1051
- #~ msgid "Transparency fade during elastic transition."
1052
- #~ msgstr "Elastik geçiş sırasında Saydamlık solması."
1053
-
1054
- #~ msgid "Adjust its specific settings below."
1055
- #~ msgstr "Aşağıda kendi özel ayarlarını yapın."
1056
-
1057
- #~ msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
1058
- #~ msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
1059
-
1060
- #~ msgid ""
1061
- #~ "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery "
1062
- #~ "extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo "
1063
- #~ "links. Also supports iFrame and inline content."
1064
- #~ msgstr ""
1065
- #~ "Tüm resimlerde, SWF, PDF, YouTube, Dailymotion ve Vimeo bağlantılarında "
1066
- #~ "kolayca <a href=\"http://fancybox.net/\">FancyBox jQuery eklentisini</a> "
1067
- #~ "etkinleştirir. Ayrıca, iFrame ve satıriçi içeriği destekler."
1068
-
1069
- #~ msgid "RavanH"
1070
- #~ msgstr "RavanH"
1071
-
1072
- #~ msgid "http://4visions.nl/"
1073
- #~ msgstr "http://4visions.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-ua_UA.po DELETED
@@ -1,560 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox 1.3.4.9\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/easy-fancybox\n"
7
- "POT-Creation-Date: 2011-07-24 16:46:04+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-03-11 15:24+0200\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: cmd software <tmosbyd@gmail.com>\n"
14
- "Language: ua_UA\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
-
17
- #: easy-fancybox.php:266
18
- msgid ""
19
- "Donate to Easy FancyBox plugin development with PayPal - it's fast, free and "
20
- "secure!"
21
- msgstr ""
22
- "Підтримати розвиток плагін Easy FancyBox з PayPal - це швидкий, вільний і "
23
- "безпечний!"
24
-
25
- #: easy-fancybox.php:266
26
- msgid ""
27
- "The options in this section are provided by the plugin <strong><a href="
28
- "\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</"
29
- "a></strong> and determine the <strong>Media Lightbox</strong> overlay "
30
- "appearance and behaviour controlled by <strong><a href=\"http://fancybox.net/"
31
- "\">FancyBox</a></strong>."
32
- msgstr ""
33
- "Параметри в цьому розділі, надаються за допомогою плагіна <strong><a href="
34
- "\"http://4visions.nl/en/wordpress-plugins/easy-fancybox/\">Easy FancyBox</"
35
- "a></strong> і визначення <strong>Media Lightbox</strong> Поява накладення і "
36
- "поведінка контролюється <strong><a href=\"http://fancybox.net/\">FancyBox</"
37
- "a></strong>."
38
-
39
- #: easy-fancybox.php:266
40
- msgid ""
41
- "First enable each sub-section that you need. Then save and come back to "
42
- "adjust its specific settings."
43
- msgstr ""
44
- "Перша можливість кожному підрозділу що вам потрібно. Потім зберегти і "
45
- "повернутися до скорегувати свої специфічні налаштування."
46
-
47
- #: easy-fancybox.php:266
48
- msgid ""
49
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
50
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
51
- "will have some extra impact on client-side page speed. Enable only those sub-"
52
- "sections and options that you actually need on your site."
53
- msgstr ""
54
- "Примітка: Кожен додатковий підрозділ і функцій, таких як <em>Автоматичне "
55
- "визначення</em>, <em>Пружні переходи</em> і все <em>Ослаблення ефекту</em> "
56
- "(Крім Swing) буде мати деякий додатковий вплив на стороні клієнта сторінці "
57
- "швидкістю. Включіть тільки ті підрозділи і параметри, які вам потрібні на "
58
- "вашому сайті."
59
-
60
- #: easy-fancybox.php:266
61
- msgid ""
62
- "Some setting like Transition options are unavailable for SWF video, PDF and "
63
- "iFrame content to ensure browser compatibility and readability."
64
- msgstr ""
65
- "Деякі настройки, як перехід параметри недоступні для SWF відео, PDF і IFrame "
66
- "змісту для забезпечення сумісності браузера і читаність."
67
-
68
- #: easy-fancybox.php:308
69
- msgid "Checked"
70
- msgstr "Перевірений"
71
-
72
- #: easy-fancybox.php:310
73
- msgid "Unchecked"
74
- msgstr "Неперевірений"
75
-
76
- #: easy-fancybox.php:362
77
- msgid "FancyBox"
78
- msgstr "FancyBox"
79
-
80
- #: easy-fancybox-settings.php:6
81
- msgid "Global settings"
82
- msgstr "Глобальні налаштування"
83
-
84
- #: easy-fancybox-settings.php:15
85
- msgid "Enable FancyBox for"
86
- msgstr "Включити FancyBox для"
87
-
88
- #: easy-fancybox-settings.php:24 easy-fancybox-settings.php:316
89
- msgid "Images & Inline content"
90
- msgstr "Зображення і інлайн-вміст"
91
-
92
- #: easy-fancybox-settings.php:31 easy-fancybox-settings.php:489
93
- msgid "PDF"
94
- msgstr "PDF"
95
-
96
- #: easy-fancybox-settings.php:38 easy-fancybox-settings.php:606
97
- msgid "SWF"
98
- msgstr "SWF"
99
-
100
- #: easy-fancybox-settings.php:45 easy-fancybox-settings.php:697
101
- msgid "YouTube"
102
- msgstr "YouTube"
103
-
104
- #: easy-fancybox-settings.php:52 easy-fancybox-settings.php:800
105
- msgid "Vimeo"
106
- msgstr "Vimeo"
107
-
108
- #: easy-fancybox-settings.php:59 easy-fancybox-settings.php:895
109
- msgid "Dailymotion"
110
- msgstr "Dailymotion"
111
-
112
- #: easy-fancybox-settings.php:66 easy-fancybox-settings.php:1016
113
- msgid "iFrames"
114
- msgstr "iFrames"
115
-
116
- #: easy-fancybox-settings.php:71
117
- msgid "Links"
118
- msgstr "Посилання"
119
-
120
- #: easy-fancybox-settings.php:81
121
- msgid "Exclude"
122
- msgstr "Виключити"
123
-
124
- #: easy-fancybox-settings.php:86 easy-fancybox-settings.php:100
125
- #: easy-fancybox-settings.php:295 easy-fancybox-settings.php:383
126
- #: easy-fancybox-settings.php:411
127
- msgid "None"
128
- msgstr "Жоден"
129
-
130
- #: easy-fancybox-settings.php:87
131
- msgid "Empty (hidden) links"
132
- msgstr "Порожні (прихований) посилання"
133
-
134
- #: easy-fancybox-settings.php:88
135
- msgid "Without thumbnail image"
136
- msgstr "Без ескізів зображень"
137
-
138
- #: easy-fancybox-settings.php:95
139
- msgid "Auto-open"
140
- msgstr "Автоматичне відкриття"
141
-
142
- #: easy-fancybox-settings.php:101
143
- msgid "Link with ID \"fancybox-auto\""
144
- msgstr "Зв'язок з ID \"fancybox-auto\""
145
-
146
- #: easy-fancybox-settings.php:102
147
- msgid "First Image link"
148
- msgstr "Перше посилання зображень"
149
-
150
- #: easy-fancybox-settings.php:103
151
- msgid "First PDF link"
152
- msgstr "Перша PDF посиланню"
153
-
154
- #: easy-fancybox-settings.php:104
155
- msgid "First SWF link"
156
- msgstr "Перше посилання SWF"
157
-
158
- #: easy-fancybox-settings.php:105
159
- msgid "First YouTube link "
160
- msgstr "Перше посилання YouTube"
161
-
162
- #: easy-fancybox-settings.php:106
163
- msgid "First Vimeo link "
164
- msgstr "Перше посилання Vimeo"
165
-
166
- #: easy-fancybox-settings.php:107
167
- msgid "First Dailymotion link "
168
- msgstr "Перше посилання Dailymotion"
169
-
170
- #: easy-fancybox-settings.php:108
171
- msgid "First iFrame link"
172
- msgstr "Перше посилання IFRAME"
173
-
174
- #: easy-fancybox-settings.php:109
175
- msgid "First of any link"
176
- msgstr "Перш будь-яке посилання"
177
-
178
- #: easy-fancybox-settings.php:117 easy-fancybox-settings.php:452
179
- msgid "Overlay"
180
- msgstr "Схема на кальці"
181
-
182
- #: easy-fancybox-settings.php:125
183
- msgid "Show the overlay around content opened in FancyBox."
184
- msgstr "Показати накладення навколо змісту відкрився в FancyBox."
185
-
186
- #: easy-fancybox-settings.php:132
187
- msgid "Spotlight effect."
188
- msgstr "Новинки ефект."
189
-
190
- #: easy-fancybox-settings.php:136 easy-fancybox-settings.php:227
191
- msgid "Opacity"
192
- msgstr "Непрозорість"
193
-
194
- #: easy-fancybox-settings.php:141
195
- msgid "Value between 0 and 1. "
196
- msgstr "Значення між 0 і 1."
197
-
198
- #: easy-fancybox-settings.php:141 easy-fancybox-settings.php:150
199
- #: easy-fancybox-settings.php:188 easy-fancybox-settings.php:232
200
- #: easy-fancybox-settings.php:283 easy-fancybox-settings.php:332
201
- #: easy-fancybox-settings.php:345 easy-fancybox-settings.php:369
202
- msgid "Default:"
203
- msgstr "За замовчуванням:"
204
-
205
- #: easy-fancybox-settings.php:145 easy-fancybox-settings.php:192
206
- msgid "Color"
207
- msgstr "Колір"
208
-
209
- #: easy-fancybox-settings.php:150
210
- msgid "Enter an HTML color value."
211
- msgstr "Введіть HTML значення кольору."
212
-
213
- #: easy-fancybox-settings.php:156
214
- msgid "Window"
215
- msgstr "Вікно"
216
-
217
- #: easy-fancybox-settings.php:162
218
- msgid "Size"
219
- msgstr "Розмір"
220
-
221
- #: easy-fancybox-settings.php:166 easy-fancybox-settings.php:517
222
- #: easy-fancybox-settings.php:634 easy-fancybox-settings.php:735
223
- #: easy-fancybox-settings.php:829 easy-fancybox-settings.php:924
224
- #: easy-fancybox-settings.php:1036
225
- msgid "Width"
226
- msgstr "Ширина"
227
-
228
- #: easy-fancybox-settings.php:175 easy-fancybox-settings.php:526
229
- #: easy-fancybox-settings.php:644 easy-fancybox-settings.php:744
230
- #: easy-fancybox-settings.php:838 easy-fancybox-settings.php:933
231
- #: easy-fancybox-settings.php:1045
232
- msgid "Height"
233
- msgstr "Висота"
234
-
235
- #: easy-fancybox-settings.php:183 easy-fancybox-settings.php:207
236
- #: easy-fancybox-settings.php:534 easy-fancybox-settings.php:653
237
- #: easy-fancybox-settings.php:752 easy-fancybox-settings.php:846
238
- #: easy-fancybox-settings.php:941 easy-fancybox-settings.php:1053
239
- msgid "Border"
240
- msgstr "Кордон"
241
-
242
- #: easy-fancybox-settings.php:197
243
- msgid "Background"
244
- msgstr "Фон"
245
-
246
- #: easy-fancybox-settings.php:217
247
- msgid "Text"
248
- msgstr "Текст"
249
-
250
- #: easy-fancybox-settings.php:236
251
- msgid "Behavior"
252
- msgstr "Поведінка"
253
-
254
- #: easy-fancybox-settings.php:242
255
- msgid "Center while scrolling"
256
- msgstr "Центр при прокрутці"
257
-
258
- #: easy-fancybox-settings.php:248
259
- msgid "Show the (X) close button"
260
- msgstr "Показати (X) кнопка закриття"
261
-
262
- #: easy-fancybox-settings.php:254
263
- msgid "Show the gallery navigation arrows"
264
- msgstr "Показати галерею стрілками"
265
-
266
- #: easy-fancybox-settings.php:262
267
- msgid "Opening speed"
268
- msgstr "Швидкість відкриття"
269
-
270
- #: easy-fancybox-settings.php:270
271
- msgid "Closing speed"
272
- msgstr "Швидкість закривання"
273
-
274
- #: easy-fancybox-settings.php:278
275
- msgid "Fade speed"
276
- msgstr "Fade швидкості"
277
-
278
- #: easy-fancybox-settings.php:283
279
- msgid "Duration in milliseconds. Higher is slower."
280
- msgstr "Тривалість в мілісекундах. Вища повільніше."
281
-
282
- #: easy-fancybox-settings.php:291
283
- msgid "Advanced"
284
- msgstr "Передовий"
285
-
286
- #: easy-fancybox-settings.php:296
287
- msgid "Hide/show title on mouse hover action"
288
- msgstr "Сховати / показати заголовок на дії при наведенні миші"
289
-
290
- #: easy-fancybox-settings.php:297
291
- msgid "Gallery Auto-rotation"
292
- msgstr "Галерея Авто-поворот"
293
-
294
- #: easy-fancybox-settings.php:304
295
- msgid ""
296
- "Note: Hide/show title on mouse hover action works best with Overlay title "
297
- "position. Auto-rotation uses a fixed 5 second pause per image."
298
- msgstr ""
299
- "Примітка: сховати / показати заголовок на дії при наведенні миші найкраще "
300
- "працює з позицій назвою Overlay. Автоматичний поворот використовує фіксовану "
301
- "5 секунд паузи на зображення."
302
-
303
- #: easy-fancybox-settings.php:321
304
- msgid ""
305
- "To make images open in an overlay, add their extension to the auto-detect "
306
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
307
- "auto-enabling."
308
- msgstr ""
309
- "Для того, щоб відкриті зображення в накладку, додайте їх поширення на "
310
- "автоматичне виявлення поле або використовувати клас \"fancybox\" за "
311
- "посилання. Очистити поле, щоб вимкнути автоматичне включення."
312
-
313
- #: easy-fancybox-settings.php:325 easy-fancybox-settings.php:502
314
- #: easy-fancybox-settings.php:619 easy-fancybox-settings.php:711
315
- #: easy-fancybox-settings.php:814 easy-fancybox-settings.php:909
316
- msgid "Auto-detect"
317
- msgstr "Автовизначення"
318
-
319
- #: easy-fancybox-settings.php:336
320
- msgid "Apply to"
321
- msgstr "Звертатися до"
322
-
323
- #: easy-fancybox-settings.php:341
324
- msgid "All image links"
325
- msgstr "Всі посилання на зображення"
326
-
327
- #: easy-fancybox-settings.php:342
328
- msgid "Links inside Section(s) only (below)"
329
- msgstr "Посилання в розділ (и) тільки (див. нижче)"
330
-
331
- #: easy-fancybox-settings.php:349
332
- msgid "Auto-gallery"
333
- msgstr "Авто-галерея"
334
-
335
- #: easy-fancybox-settings.php:354
336
- msgid "Disabled"
337
- msgstr "Інвалід"
338
-
339
- #: easy-fancybox-settings.php:355
340
- msgid "Galleries per Section (below)"
341
- msgstr "Галереї в розділі (див. нижче)"
342
-
343
- #: easy-fancybox-settings.php:356
344
- msgid "All in one gallery"
345
- msgstr "Все в одній галереї"
346
-
347
- #: easy-fancybox-settings.php:359
348
- msgid ""
349
- "When disabled, you can use the rel attribute to manually group image links "
350
- "together."
351
- msgstr ""
352
- "Якщо функція відключена, ви можете використовувати отн атрибуту вручну "
353
- "групою посилання на зображення разом."
354
-
355
- #: easy-fancybox-settings.php:363
356
- msgid "Section(s)"
357
- msgstr "Розділ (и)"
358
-
359
- #: easy-fancybox-settings.php:369
360
- msgid ""
361
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
362
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
363
- "it to conform with your theme."
364
- msgstr ""
365
- "Це відноситься, коли <em>Звертатися до</em> встановлений в <em>Обмежена в "
366
- "розділах</em> і / або <em>Авто-галерея</em> встановлений в <em>Галереї в "
367
- "розділі</em>. Адаптувати його відповідно з вашою темою."
368
-
369
- #: easy-fancybox-settings.php:369
370
- msgid ""
371
- "Examples: If your theme wraps post content in a div with class post, change "
372
- "this value to \"div.post\". If you want to include images in a sidebar with "
373
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes."
374
- msgstr ""
375
- "Приклади: Якщо ваша тема обгортання повідомленням вміст в DIV з класом "
376
- "пошти, змінити це значення на \"div.post\". Якщо ви хочете, щоб включити "
377
- "зображення в бічній панелі з ID первинному, додайте \", div#primary\" або "
378
- "\"aside#primary\" для HTML5 теми."
379
-
380
- #: easy-fancybox-settings.php:377
381
- msgid "Transition In"
382
- msgstr "Перехід в"
383
-
384
- #: easy-fancybox-settings.php:381 easy-fancybox-settings.php:409
385
- msgid "Fade"
386
- msgstr "В'янути"
387
-
388
- #: easy-fancybox-settings.php:382 easy-fancybox-settings.php:410
389
- msgid "Elastic"
390
- msgstr "Еластичний"
391
-
392
- #: easy-fancybox-settings.php:390
393
- msgid "Easing In"
394
- msgstr "Ослаблення в"
395
-
396
- #: easy-fancybox-settings.php:394 easy-fancybox-settings.php:422
397
- msgid "Linear"
398
- msgstr "Лінійний"
399
-
400
- #: easy-fancybox-settings.php:395 easy-fancybox-settings.php:423
401
- msgid "Swing"
402
- msgstr "Розмахувати"
403
-
404
- #: easy-fancybox-settings.php:396 easy-fancybox-settings.php:424
405
- msgid "Back"
406
- msgstr "Назад"
407
-
408
- #: easy-fancybox-settings.php:397 easy-fancybox-settings.php:425
409
- msgid "Quad"
410
- msgstr "Четверня"
411
-
412
- #: easy-fancybox-settings.php:398 easy-fancybox-settings.php:426
413
- msgid "Expo"
414
- msgstr "Експо"
415
-
416
- #: easy-fancybox-settings.php:405
417
- msgid "Transition Out"
418
- msgstr "Перехід Out"
419
-
420
- #: easy-fancybox-settings.php:418
421
- msgid "Easing Out"
422
- msgstr "Витісняють"
423
-
424
- #: easy-fancybox-settings.php:429
425
- msgid "Easing effects only apply when Transition is set to Elastic. "
426
- msgstr ""
427
- "Ослаблення ефекту застосовується тільки при включеному встановлена ​​на "
428
- "пружною."
429
-
430
- #: easy-fancybox-settings.php:435
431
- msgid "Transparency fade during elastic transition."
432
- msgstr "Прозорість зникають при пружних переходів."
433
-
434
- #: easy-fancybox-settings.php:441 easy-fancybox-settings.php:549
435
- #: easy-fancybox-settings.php:668 easy-fancybox-settings.php:767
436
- #: easy-fancybox-settings.php:861 easy-fancybox-settings.php:956
437
- #: easy-fancybox-settings.php:1071
438
- msgid "Show title"
439
- msgstr "Показати назву"
440
-
441
- #: easy-fancybox-settings.php:445 easy-fancybox-settings.php:553
442
- #: easy-fancybox-settings.php:672 easy-fancybox-settings.php:771
443
- #: easy-fancybox-settings.php:865 easy-fancybox-settings.php:960
444
- #: easy-fancybox-settings.php:1075
445
- msgid "Title Position"
446
- msgstr "Назва позиції"
447
-
448
- #: easy-fancybox-settings.php:449 easy-fancybox-settings.php:557
449
- #: easy-fancybox-settings.php:676 easy-fancybox-settings.php:775
450
- #: easy-fancybox-settings.php:869 easy-fancybox-settings.php:964
451
- #: easy-fancybox-settings.php:1079
452
- msgid "Float"
453
- msgstr "Плавати"
454
-
455
- #: easy-fancybox-settings.php:450 easy-fancybox-settings.php:558
456
- #: easy-fancybox-settings.php:677 easy-fancybox-settings.php:776
457
- #: easy-fancybox-settings.php:870 easy-fancybox-settings.php:965
458
- #: easy-fancybox-settings.php:1080
459
- msgid "Outside"
460
- msgstr "Поза"
461
-
462
- #: easy-fancybox-settings.php:451 easy-fancybox-settings.php:559
463
- #: easy-fancybox-settings.php:678 easy-fancybox-settings.php:777
464
- #: easy-fancybox-settings.php:871 easy-fancybox-settings.php:966
465
- #: easy-fancybox-settings.php:1081
466
- msgid "Inside"
467
- msgstr "Усередині"
468
-
469
- #: easy-fancybox-settings.php:461 easy-fancybox-settings.php:568
470
- #: easy-fancybox-settings.php:687 easy-fancybox-settings.php:786
471
- #: easy-fancybox-settings.php:880 easy-fancybox-settings.php:975
472
- #: easy-fancybox-settings.php:1090
473
- msgid "Allow title from thumbnail alt tag"
474
- msgstr "Дозволити назву від ескізу теги Alt"
475
-
476
- #: easy-fancybox-settings.php:494
477
- msgid ""
478
- "To make any PDF document file open in an overlay, switch on auto-detect or "
479
- "use the class \"fancybox-pdf\" for its link."
480
- msgstr ""
481
- "Для того, щоб будь-які PDF файл документа, відкритого в накладку, включити "
482
- "автоматичне виявлення і використання класу \"fancybox-pdf\" для його "
483
- "засланні."
484
-
485
- #: easy-fancybox-settings.php:494 easy-fancybox-settings.php:611
486
- #: easy-fancybox-settings.php:702 easy-fancybox-settings.php:805
487
- #: easy-fancybox-settings.php:900 easy-fancybox-settings.php:1021
488
- msgid "Adjust its specific settings below."
489
- msgstr "Налаштуйте свої специфічні налаштування нижче."
490
-
491
- #: easy-fancybox-settings.php:611
492
- msgid ""
493
- "To make any Flash (.swf) file open in an overlay, switch on auto-detect or "
494
- "use the class \"fancybox-swf\" for its link."
495
- msgstr ""
496
- "Для того, щоб будь-яка спалах (.swf) відкрити файл в оверлей, включити "
497
- "автоматичне виявлення і використання класу \"fancybox-swf\" за посилання."
498
-
499
- #: easy-fancybox-settings.php:702
500
- msgid ""
501
- "To make any YouTube movie open in an overlay, switch on auto-detect or use "
502
- "the class \"fancybox-youtube\" for its link."
503
- msgstr ""
504
- "Для того, щоб будь-який фільм YouTube відкриті в накладку, включити "
505
- "автоматичне виявлення і використання класу \"fancybox-youtube\" за посилання."
506
-
507
- #: easy-fancybox-settings.php:720
508
- msgid "Auto-detect Short links"
509
- msgstr "Автоматичне визначення Короткі посилання"
510
-
511
- #: easy-fancybox-settings.php:805
512
- msgid ""
513
- "To make any Vimeo movie open in an overlay, switch on auto-detect or use the "
514
- "class \"fancybox-vimeo\" for its link."
515
- msgstr ""
516
- "Для того, щоб будь-який фільм Vimeo відкриті в накладку, включити "
517
- "автоматичне виявлення і використання класу \"fancybox-vimeo\" за посилання."
518
-
519
- #: easy-fancybox-settings.php:900
520
- msgid ""
521
- "To make any Dailymotion movie open in an overlay, switch on auto-detect or "
522
- "use the class \"fancybox-dailymotion\" for its link."
523
- msgstr ""
524
- "Для того, щоб будь-які Dailymotion фільм відкриті в накладку, включити "
525
- "автоматичне виявлення і використання класу \"fancybox-dailymotion\" за "
526
- "посилання."
527
-
528
- #: easy-fancybox-settings.php:1021
529
- msgid ""
530
- "To make a website or HTML document open in an overlay, use the class "
531
- "\"fancybox-iframe\" for its link."
532
- msgstr ""
533
- "Щоб зробити веб-сайт або HTML документа, відкритого в оверлей, "
534
- "використовувати клас \"fancybox-iframe\" за посилання."
535
-
536
- #. Plugin Name of the plugin/theme
537
- msgid "Easy FancyBox"
538
- msgstr "Easy FancyBox"
539
-
540
- #. Plugin URI of the plugin/theme
541
- msgid "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
542
- msgstr "http://4visions.nl/en/wordpress-plugins/easy-fancybox/"
543
-
544
- #. Description of the plugin/theme
545
- msgid ""
546
- "Easily enable the <a href=\"http://fancybox.net/\">FancyBox jQuery "
547
- "extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. "
548
- "Also supports iFrame and inline content."
549
- msgstr ""
550
- "Легко включити <a href=\"http://fancybox.net/\">FancyBox jQuery extension</"
551
- "a> на всі зображення, SWF, PDF, YouTube, Dailymotion і Vimeo посилання. "
552
- "Також підтримує IFRAME і вбудованого змісту."
553
-
554
- #. Author of the plugin/theme
555
- msgid "RavanH"
556
- msgstr "RavanH"
557
-
558
- #. Author URI of the plugin/theme
559
- msgid "http://4visions.nl/"
560
- msgstr "http://4visions.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox-xx_XX.po DELETED
@@ -1,906 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2014-01-05 16:56+0100\n"
8
- "PO-Revision-Date: 2014-01-05 16:57+0100\n"
9
- "Last-Translator: RavanH <ravanhagen@gmail.com>\n"
10
- "Language-Team: \n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
-
18
- #: ../easy-fancybox-class.php:341
19
- msgid "Donate to keep the Easy FancyBox plugin development going!"
20
- msgstr ""
21
-
22
- #: ../easy-fancybox-class.php:341
23
- #, php-format
24
- msgid ""
25
- "The options in this section are provided by the plugin %s and determine the "
26
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
27
- "by %s."
28
- msgstr ""
29
-
30
- #: ../easy-fancybox-class.php:341
31
- msgid "Easy FancyBox"
32
- msgstr ""
33
-
34
- #: ../easy-fancybox-class.php:341 ../easy-fancybox-class.php:531
35
- #: ../easy-fancybox-class.php:571
36
- msgid "FancyBox"
37
- msgstr ""
38
-
39
- #: ../easy-fancybox-class.php:341
40
- msgid ""
41
- "First enable each sub-section that you need. Then save and come back to "
42
- "adjust its specific settings."
43
- msgstr ""
44
-
45
- #: ../easy-fancybox-class.php:341
46
- msgid ""
47
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
48
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
49
- "will have some extra impact on client-side page speed. Enable only those sub-"
50
- "sections and options that you actually need on your site."
51
- msgstr ""
52
-
53
- #: ../easy-fancybox-class.php:341
54
- msgid ""
55
- "Some setting like Transition options are unavailable for SWF video, PDF and "
56
- "iFrame content to ensure browser compatibility and readability."
57
- msgstr ""
58
-
59
- #: ../easy-fancybox-class.php:385
60
- msgid "Checked"
61
- msgstr ""
62
-
63
- #: ../easy-fancybox-class.php:387
64
- msgid "Unchecked"
65
- msgstr ""
66
-
67
- #: ../easy-fancybox-class.php:571
68
- msgid "Easy FancyBox Settings"
69
- msgstr ""
70
-
71
- #: ../easy-fancybox-class.php:580
72
- msgid "Sections"
73
- msgstr ""
74
-
75
- #: ../easy-fancybox-class.php:581 ../easy-fancybox-settings.php:9
76
- msgid "Global settings"
77
- msgstr ""
78
-
79
- #: ../easy-fancybox-class.php:582 ../easy-fancybox-settings.php:27
80
- #: ../easy-fancybox-settings.php:370
81
- msgid "Images"
82
- msgstr ""
83
-
84
- #: ../easy-fancybox-class.php:583 ../easy-fancybox-settings.php:34
85
- #: ../easy-fancybox-settings.php:633
86
- msgid "Inline content"
87
- msgstr ""
88
-
89
- #: ../easy-fancybox-class.php:584 ../easy-fancybox-settings.php:41
90
- #: ../easy-fancybox-settings.php:743
91
- msgid "PDF"
92
- msgstr ""
93
-
94
- #: ../easy-fancybox-class.php:585 ../easy-fancybox-settings.php:48
95
- #: ../easy-fancybox-settings.php:868
96
- msgid "SWF"
97
- msgstr ""
98
-
99
- #: ../easy-fancybox-class.php:586 ../easy-fancybox-settings.php:62
100
- #: ../easy-fancybox-settings.php:1057
101
- msgid "YouTube"
102
- msgstr ""
103
-
104
- #: ../easy-fancybox-class.php:587 ../easy-fancybox-settings.php:69
105
- #: ../easy-fancybox-settings.php:1165
106
- msgid "Vimeo"
107
- msgstr ""
108
-
109
- #: ../easy-fancybox-class.php:588 ../easy-fancybox-settings.php:76
110
- #: ../easy-fancybox-settings.php:1265
111
- msgid "Dailymotion"
112
- msgstr ""
113
-
114
- #: ../easy-fancybox-class.php:589 ../easy-fancybox-settings.php:83
115
- #: ../easy-fancybox-settings.php:1391
116
- msgid "iFrames"
117
- msgstr ""
118
-
119
- #: ../easy-fancybox-class.php:617
120
- msgid "Support"
121
- msgstr ""
122
-
123
- #: ../easy-fancybox-class.php:618
124
- msgid "Resources"
125
- msgstr ""
126
-
127
- #: ../easy-fancybox-class.php:620
128
- msgid "Credits"
129
- msgstr ""
130
-
131
- #: ../easy-fancybox-settings.php:14
132
- msgid "Media"
133
- msgstr ""
134
-
135
- #: ../easy-fancybox-settings.php:20
136
- msgid "Enable FancyBox for"
137
- msgstr ""
138
-
139
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
140
- msgid "SVG"
141
- msgstr ""
142
-
143
- #: ../easy-fancybox-settings.php:86
144
- msgid ""
145
- "For advanced options and support, please get the Easy FancyBox - Pro "
146
- "extension."
147
- msgstr ""
148
-
149
- #: ../easy-fancybox-settings.php:95
150
- msgid "Exclude"
151
- msgstr ""
152
-
153
- #: ../easy-fancybox-settings.php:101
154
- msgid "Empty (hidden) links"
155
- msgstr ""
156
-
157
- #: ../easy-fancybox-settings.php:102
158
- msgid "Without thumbnail image"
159
- msgstr ""
160
-
161
- #: ../easy-fancybox-settings.php:109
162
- msgid "Open on page load"
163
- msgstr ""
164
-
165
- #: ../easy-fancybox-settings.php:115
166
- msgid "Link with ID \"fancybox-auto\""
167
- msgstr ""
168
-
169
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
170
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
171
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
172
- #: ../easy-fancybox-settings.php:723
173
- msgid "More options &raquo;"
174
- msgstr ""
175
-
176
- #: ../easy-fancybox-settings.php:125
177
- msgid ""
178
- "Include the Metadata jQuery extension script to allow passing custom "
179
- "parameters via link class."
180
- msgstr ""
181
-
182
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
183
- msgid "Overlay"
184
- msgstr ""
185
-
186
- #: ../easy-fancybox-settings.php:139
187
- msgid "Show the overlay around content opened in FancyBox."
188
- msgstr ""
189
-
190
- #: ../easy-fancybox-settings.php:146
191
- msgid "Close FancyBox when overlay is clicked."
192
- msgstr ""
193
-
194
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
195
- msgid "Opacity"
196
- msgstr ""
197
-
198
- #: ../easy-fancybox-settings.php:158
199
- msgid "Value between 0 and 1. "
200
- msgstr ""
201
-
202
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
203
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
204
- #: ../easy-fancybox-settings.php:595
205
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
206
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
207
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
208
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
209
- msgid "Default:"
210
- msgstr ""
211
-
212
- #: ../easy-fancybox-settings.php:162
213
- msgid "Color"
214
- msgstr ""
215
-
216
- #: ../easy-fancybox-settings.php:167
217
- msgid "Enter an HTML color value."
218
- msgstr ""
219
-
220
- #: ../easy-fancybox-settings.php:175
221
- msgid "Spotlight effect"
222
- msgstr ""
223
-
224
- #: ../easy-fancybox-settings.php:180
225
- msgid "Window"
226
- msgstr ""
227
-
228
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
229
- msgid "Appearance"
230
- msgstr ""
231
-
232
- #: ../easy-fancybox-settings.php:193
233
- msgid "Show the (X) close button"
234
- msgstr ""
235
-
236
- #: ../easy-fancybox-settings.php:198
237
- msgid "Background color"
238
- msgstr ""
239
-
240
- #: ../easy-fancybox-settings.php:208
241
- msgid "Border color"
242
- msgstr ""
243
-
244
- #: ../easy-fancybox-settings.php:218
245
- msgid "Text color"
246
- msgstr ""
247
-
248
- #: ../easy-fancybox-settings.php:223 ../easy-fancybox-settings.php:236
249
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
250
- #: ../easy-fancybox-settings.php:613
251
- msgid "Make available &raquo;"
252
- msgstr ""
253
-
254
- #: ../easy-fancybox-settings.php:241
255
- msgid "Border radius"
256
- msgstr ""
257
-
258
- #: ../easy-fancybox-settings.php:249
259
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
260
- msgid "Set a border radius to create rounded corners. Higher is rounder."
261
- msgstr ""
262
-
263
- #: ../easy-fancybox-settings.php:254
264
- msgid "Dimensions"
265
- msgstr ""
266
-
267
- #: ../easy-fancybox-settings.php:286
268
- msgid ""
269
- "If content size is not set or cannot be determined automatically, these "
270
- "default dimensions will be used."
271
- msgstr ""
272
-
273
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
274
- msgid "Behavior"
275
- msgstr ""
276
-
277
- #: ../easy-fancybox-settings.php:298
278
- msgid "Center while scrolling"
279
- msgstr ""
280
-
281
- #: ../easy-fancybox-settings.php:305
282
- msgid "Esc key stroke closes FancyBox"
283
- msgstr ""
284
-
285
- #: ../easy-fancybox-settings.php:312
286
- msgid "Scale large content down to fit in the browser viewport."
287
- msgstr ""
288
-
289
- #: ../easy-fancybox-settings.php:316
290
- msgid "Opening speed"
291
- msgstr ""
292
-
293
- #: ../easy-fancybox-settings.php:328
294
- msgid "Closing speed"
295
- msgstr ""
296
-
297
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
298
- msgid "Duration in milliseconds. Higher is slower."
299
- msgstr ""
300
-
301
- #: ../easy-fancybox-settings.php:375
302
- msgid ""
303
- "To make images open in an overlay, add their extension to the Autodetect "
304
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
305
- "all autodetection."
306
- msgstr ""
307
-
308
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
309
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
310
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
311
- #: ../easy-fancybox-settings.php:1279
312
- msgid "Autodetect"
313
- msgstr ""
314
-
315
- #: ../easy-fancybox-settings.php:397
316
- msgid "Example:"
317
- msgstr ""
318
-
319
- #: ../easy-fancybox-settings.php:401
320
- msgid "Apply to"
321
- msgstr ""
322
-
323
- #: ../easy-fancybox-settings.php:406
324
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
325
- msgid "All image links"
326
- msgstr ""
327
-
328
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
329
- msgid "Transition In"
330
- msgstr ""
331
-
332
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
333
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
334
- msgid "Fade"
335
- msgstr ""
336
-
337
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
338
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
339
- msgid "Elastic"
340
- msgstr ""
341
-
342
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
343
- msgid "Easing In"
344
- msgstr ""
345
-
346
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
347
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
348
- msgid "Linear"
349
- msgstr ""
350
-
351
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
352
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
353
- msgid "Swing"
354
- msgstr ""
355
-
356
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
357
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
358
- msgid "easeInBack"
359
- msgstr ""
360
-
361
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
362
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
363
- msgid "easeOutBack"
364
- msgstr ""
365
-
366
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
367
- msgid "Transition Out"
368
- msgstr ""
369
-
370
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
371
- msgid "Easing Out"
372
- msgstr ""
373
-
374
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
375
- #: ../easy-fancybox-settings.php:723
376
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
377
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
378
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
379
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
380
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
381
- msgid "Note:"
382
- msgstr ""
383
-
384
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
385
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
386
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
387
- msgid "Easing effects only apply when Transition is set to Elastic. "
388
- msgstr ""
389
-
390
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
391
- msgid ""
392
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
393
- "Transition In is set to Elastic!"
394
- msgstr ""
395
-
396
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
397
- msgid "Close FancyBox when content is clicked"
398
- msgstr ""
399
-
400
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
401
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
402
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
403
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
404
- msgid "Show title"
405
- msgstr ""
406
-
407
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
408
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
409
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
410
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
411
- msgid "Title Position"
412
- msgstr ""
413
-
414
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
415
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
416
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
417
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
418
- msgid "Float"
419
- msgstr ""
420
-
421
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
422
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
423
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
424
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
425
- msgid "Outside"
426
- msgstr ""
427
-
428
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
429
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
430
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
431
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
432
- msgid "Inside"
433
- msgstr ""
434
-
435
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
436
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
437
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
438
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
439
- msgid "Allow title from thumbnail alt tag"
440
- msgstr ""
441
-
442
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
443
- msgid "Advanced"
444
- msgstr ""
445
-
446
- #: ../easy-fancybox-settings.php:521
447
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
448
- msgid "Hide/show title on mouse hover action"
449
- msgstr ""
450
-
451
- #: ../easy-fancybox-settings.php:528
452
- msgid "Gallery"
453
- msgstr ""
454
-
455
- #: ../easy-fancybox-settings.php:532
456
- msgid "Autogallery"
457
- msgstr ""
458
-
459
- #: ../easy-fancybox-settings.php:538
460
- msgid "WordPress galleries only"
461
- msgstr ""
462
-
463
- #: ../easy-fancybox-settings.php:539
464
- msgid "All in one gallery"
465
- msgstr ""
466
-
467
- #: ../easy-fancybox-settings.php:542
468
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
469
- msgid ""
470
- "When disabled, you can use the rel attribute to manually group image links "
471
- "together."
472
- msgstr ""
473
-
474
- #: ../easy-fancybox-settings.php:549
475
- msgid "Show the gallery navigation arrows"
476
- msgstr ""
477
-
478
- #: ../easy-fancybox-settings.php:556
479
- msgid "Arrow key strokes browse the gallery"
480
- msgstr ""
481
-
482
- #: ../easy-fancybox-settings.php:563
483
- msgid ""
484
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
485
- "mousewheel action."
486
- msgstr ""
487
-
488
- #: ../easy-fancybox-settings.php:570
489
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
490
- msgstr ""
491
-
492
- #: ../easy-fancybox-settings.php:574
493
- msgid "Change speed"
494
- msgstr ""
495
-
496
- #: ../easy-fancybox-settings.php:586
497
- msgid "Fade speed"
498
- msgstr ""
499
-
500
- #: ../easy-fancybox-settings.php:602
501
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
502
- msgid "Galleries per Section (below)"
503
- msgstr ""
504
-
505
- #: ../easy-fancybox-settings.php:602
506
- msgid ""
507
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
508
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
509
- "it to conform with your theme."
510
- msgstr ""
511
-
512
- #: ../easy-fancybox-settings.php:602
513
- msgid ""
514
- "Examples: If your theme wraps post content in a div with class post, change "
515
- "this value to \"div.post\". If you only want to group images in a WordPress "
516
- "gallery together, use \"div.gallery\". If you want to include images in a "
517
- "sidebar with ID primary, add \", #primary\"."
518
- msgstr ""
519
-
520
- #: ../easy-fancybox-settings.php:602
521
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
522
- msgid ""
523
- "Hide/show title on mouse hover action works best with Overlay title position."
524
- msgstr ""
525
-
526
- #: ../easy-fancybox-settings.php:602
527
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
528
- msgid "Auto-rotation uses a fixed 3, 6, 9 or 12 second pause per image."
529
- msgstr ""
530
-
531
- #: ../easy-fancybox-settings.php:602
532
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
533
- msgid "(3 seconds)"
534
- msgstr ""
535
-
536
- #: ../easy-fancybox-settings.php:602
537
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
538
- msgid "(6 seconds)"
539
- msgstr ""
540
-
541
- #: ../easy-fancybox-settings.php:602
542
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
543
- msgid "(9 seconds)"
544
- msgstr ""
545
-
546
- #: ../easy-fancybox-settings.php:602
547
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
548
- msgid "(12 seconds)"
549
- msgstr ""
550
-
551
- #: ../easy-fancybox-settings.php:610
552
- msgid "Slideshow"
553
- msgstr ""
554
-
555
- #: ../easy-fancybox-settings.php:638
556
- msgid ""
557
- "To make inline content open in an overlay, wrap that content in a div with a "
558
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
559
- "\"fancybox-inline\" attribute."
560
- msgstr ""
561
-
562
- #: ../easy-fancybox-settings.php:656
563
- msgid ""
564
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
565
- "determined, the default dimensions will be used."
566
- msgstr ""
567
-
568
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
569
- msgid "Scrolling"
570
- msgstr ""
571
-
572
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
573
- msgid "Auto"
574
- msgstr ""
575
-
576
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
577
- msgid "Always"
578
- msgstr ""
579
-
580
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
581
- msgid "Never"
582
- msgstr ""
583
-
584
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
585
- msgid "Define scrolling and scrollbar visibility."
586
- msgstr ""
587
-
588
- #: ../easy-fancybox-settings.php:748
589
- msgid ""
590
- "To make any PDF document file open in an overlay, switch on Autodetect or "
591
- "use the class \"fancybox-pdf\" for its link."
592
- msgstr ""
593
-
594
- #: ../easy-fancybox-settings.php:873
595
- msgid ""
596
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
597
- "use the class \"fancybox-swf\" for its link."
598
- msgstr ""
599
-
600
- #: ../easy-fancybox-settings.php:967
601
- msgid ""
602
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
603
- "the class \"fancybox-svg\" for its link."
604
- msgstr ""
605
-
606
- #: ../easy-fancybox-settings.php:1062
607
- msgid ""
608
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
609
- "the class \"fancybox-youtube\" for its link."
610
- msgstr ""
611
-
612
- #: ../easy-fancybox-settings.php:1080
613
- msgid "Autodetect Short links"
614
- msgstr ""
615
-
616
- #: ../easy-fancybox-settings.php:1170
617
- msgid ""
618
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
619
- "class \"fancybox-vimeo\" for its link."
620
- msgstr ""
621
-
622
- #: ../easy-fancybox-settings.php:1270
623
- msgid ""
624
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
625
- "use the class \"fancybox-dailymotion\" for its link."
626
- msgstr ""
627
-
628
- #: ../easy-fancybox-settings.php:1396
629
- msgid ""
630
- "To make a website or HTML document open in an overlay, use the class "
631
- "\"fancybox-iframe\" for its link."
632
- msgstr ""
633
-
634
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
635
- msgid ""
636
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
637
- "available."
638
- msgstr ""
639
-
640
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
641
- msgid "Get support here."
642
- msgstr ""
643
-
644
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
645
- msgid "First Image link"
646
- msgstr ""
647
-
648
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
649
- msgid "First PDF link"
650
- msgstr ""
651
-
652
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
653
- msgid "First SWF link"
654
- msgstr ""
655
-
656
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
657
- msgid "First SVG link"
658
- msgstr ""
659
-
660
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
661
- msgid "First YouTube link "
662
- msgstr ""
663
-
664
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
665
- msgid "First Vimeo link "
666
- msgstr ""
667
-
668
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
669
- msgid "First Dailymotion link "
670
- msgstr ""
671
-
672
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
673
- msgid "First iFrame link"
674
- msgstr ""
675
-
676
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
677
- msgid "First of any link"
678
- msgstr ""
679
-
680
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
681
- msgid "Links inside Section(s) only (below)"
682
- msgstr ""
683
-
684
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
685
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
686
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
687
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
688
- msgid "easeInQuad"
689
- msgstr ""
690
-
691
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
692
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
693
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
694
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
695
- msgid "easeOutQuad"
696
- msgstr ""
697
-
698
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
699
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
700
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
701
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
702
- msgid "easeInOutQuad"
703
- msgstr ""
704
-
705
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
706
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
707
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
708
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
709
- msgid "easeInCubic"
710
- msgstr ""
711
-
712
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
713
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
714
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
715
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
716
- msgid "easeOutCubic"
717
- msgstr ""
718
-
719
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
720
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
721
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
722
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
723
- msgid "easeInOutCubic"
724
- msgstr ""
725
-
726
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
727
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
728
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
729
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
730
- msgid "easeInQuart"
731
- msgstr ""
732
-
733
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
734
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
735
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
736
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
737
- msgid "easeOutQuart"
738
- msgstr ""
739
-
740
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
741
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
742
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
743
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
744
- msgid "easeInOutQuart"
745
- msgstr ""
746
-
747
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
748
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
749
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
750
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
751
- msgid "easeInQuint"
752
- msgstr ""
753
-
754
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
755
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
756
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
757
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
758
- msgid "easeOutQuint"
759
- msgstr ""
760
-
761
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
762
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
764
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
765
- msgid "easeInOutQuint"
766
- msgstr ""
767
-
768
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
769
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
770
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
771
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
772
- msgid "easeInSine"
773
- msgstr ""
774
-
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
776
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
777
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
778
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
779
- msgid "easeOutSine"
780
- msgstr ""
781
-
782
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
784
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
785
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
786
- msgid "easeInOutSine"
787
- msgstr ""
788
-
789
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
792
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
793
- msgid "easeInExpo"
794
- msgstr ""
795
-
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
799
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
800
- msgid "easeOutExpo"
801
- msgstr ""
802
-
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
806
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
807
- msgid "easeInOutExpo"
808
- msgstr ""
809
-
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
813
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
814
- msgid "easeInCirc"
815
- msgstr ""
816
-
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
820
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
821
- msgid "easeOutCirc"
822
- msgstr ""
823
-
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
827
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
828
- msgid "easeInOutCirc"
829
- msgstr ""
830
-
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
834
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
835
- msgid "easeInElastic"
836
- msgstr ""
837
-
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
841
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
842
- msgid "easeOutElastic"
843
- msgstr ""
844
-
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
848
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
849
- msgid "easeInOutElastic"
850
- msgstr ""
851
-
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
855
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
856
- msgid "easeInOutBack"
857
- msgstr ""
858
-
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
862
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
863
- msgid "easeInBounce"
864
- msgstr ""
865
-
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
869
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
870
- msgid "easeOutBounce"
871
- msgstr ""
872
-
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:297
876
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:330
877
- msgid "easeInOutBounce"
878
- msgstr ""
879
-
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
881
- msgid "Section(s)"
882
- msgstr ""
883
-
884
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
885
- msgid ""
886
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
887
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
888
- "it to conform with your theme."
889
- msgstr ""
890
-
891
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
892
- msgid ""
893
- "Examples: If your theme wraps post content in a div with class post, change "
894
- "this value to \"div.post\". If you want to include images in a sidebar with "
895
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
896
- "you only want to group images in a WordPress gallery together, use \"div."
897
- "gallery\". If you want to include images in a sidebar with ID primary, add "
898
- "\", #primary\"."
899
- msgstr ""
900
-
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
904
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
905
- msgid "Gallery Auto-rotation"
906
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox.pot DELETED
@@ -1,908 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2014-01-05 16:56+0100\n"
8
- "PO-Revision-Date: 2014-01-05 16:56+0100\n"
9
- "Last-Translator: RavanH <ravanhagen@gmail.com>\n"
10
- "Language-Team: Easy FancyBox Languages <ravanhagen@gmail.com>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../../easy-fancybox-pro\n"
19
-
20
- #: ../easy-fancybox-class.php:341
21
- msgid "Donate to keep the Easy FancyBox plugin development going!"
22
- msgstr ""
23
-
24
- #: ../easy-fancybox-class.php:341
25
- #, php-format
26
- msgid ""
27
- "The options in this section are provided by the plugin %s and determine the "
28
- "<strong>Media Lightbox</strong> overlay appearance and behaviour controlled "
29
- "by %s."
30
- msgstr ""
31
-
32
- #: ../easy-fancybox-class.php:341
33
- msgid "Easy FancyBox"
34
- msgstr ""
35
-
36
- #: ../easy-fancybox-class.php:341 ../easy-fancybox-class.php:531
37
- #: ../easy-fancybox-class.php:571
38
- msgid "FancyBox"
39
- msgstr ""
40
-
41
- #: ../easy-fancybox-class.php:341
42
- msgid ""
43
- "First enable each sub-section that you need. Then save and come back to "
44
- "adjust its specific settings."
45
- msgstr ""
46
-
47
- #: ../easy-fancybox-class.php:341
48
- msgid ""
49
- "Note: Each additional sub-section and features like <em>Auto-detection</em>, "
50
- "<em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) "
51
- "will have some extra impact on client-side page speed. Enable only those sub-"
52
- "sections and options that you actually need on your site."
53
- msgstr ""
54
-
55
- #: ../easy-fancybox-class.php:341
56
- msgid ""
57
- "Some setting like Transition options are unavailable for SWF video, PDF and "
58
- "iFrame content to ensure browser compatibility and readability."
59
- msgstr ""
60
-
61
- #: ../easy-fancybox-class.php:385
62
- msgid "Checked"
63
- msgstr ""
64
-
65
- #: ../easy-fancybox-class.php:387
66
- msgid "Unchecked"
67
- msgstr ""
68
-
69
- #: ../easy-fancybox-class.php:571
70
- msgid "Easy FancyBox Settings"
71
- msgstr ""
72
-
73
- #: ../easy-fancybox-class.php:580
74
- msgid "Sections"
75
- msgstr ""
76
-
77
- #: ../easy-fancybox-class.php:581 ../easy-fancybox-settings.php:9
78
- msgid "Global settings"
79
- msgstr ""
80
-
81
- #: ../easy-fancybox-class.php:582 ../easy-fancybox-settings.php:27
82
- #: ../easy-fancybox-settings.php:370
83
- msgid "Images"
84
- msgstr ""
85
-
86
- #: ../easy-fancybox-class.php:583 ../easy-fancybox-settings.php:34
87
- #: ../easy-fancybox-settings.php:633
88
- msgid "Inline content"
89
- msgstr ""
90
-
91
- #: ../easy-fancybox-class.php:584 ../easy-fancybox-settings.php:41
92
- #: ../easy-fancybox-settings.php:743
93
- msgid "PDF"
94
- msgstr ""
95
-
96
- #: ../easy-fancybox-class.php:585 ../easy-fancybox-settings.php:48
97
- #: ../easy-fancybox-settings.php:868
98
- msgid "SWF"
99
- msgstr ""
100
-
101
- #: ../easy-fancybox-class.php:586 ../easy-fancybox-settings.php:62
102
- #: ../easy-fancybox-settings.php:1057
103
- msgid "YouTube"
104
- msgstr ""
105
-
106
- #: ../easy-fancybox-class.php:587 ../easy-fancybox-settings.php:69
107
- #: ../easy-fancybox-settings.php:1165
108
- msgid "Vimeo"
109
- msgstr ""
110
-
111
- #: ../easy-fancybox-class.php:588 ../easy-fancybox-settings.php:76
112
- #: ../easy-fancybox-settings.php:1265
113
- msgid "Dailymotion"
114
- msgstr ""
115
-
116
- #: ../easy-fancybox-class.php:589 ../easy-fancybox-settings.php:83
117
- #: ../easy-fancybox-settings.php:1391
118
- msgid "iFrames"
119
- msgstr ""
120
-
121
- #: ../easy-fancybox-class.php:617
122
- msgid "Support"
123
- msgstr ""
124
-
125
- #: ../easy-fancybox-class.php:618
126
- msgid "Resources"
127
- msgstr ""
128
-
129
- #: ../easy-fancybox-class.php:620
130
- msgid "Credits"
131
- msgstr ""
132
-
133
- #: ../easy-fancybox-settings.php:14
134
- msgid "Media"
135
- msgstr ""
136
-
137
- #: ../easy-fancybox-settings.php:20
138
- msgid "Enable FancyBox for"
139
- msgstr ""
140
-
141
- #: ../easy-fancybox-settings.php:55 ../easy-fancybox-settings.php:962
142
- msgid "SVG"
143
- msgstr ""
144
-
145
- #: ../easy-fancybox-settings.php:86
146
- msgid ""
147
- "For advanced options and support, please get the Easy FancyBox - Pro "
148
- "extension."
149
- msgstr ""
150
-
151
- #: ../easy-fancybox-settings.php:95
152
- msgid "Exclude"
153
- msgstr ""
154
-
155
- #: ../easy-fancybox-settings.php:101
156
- msgid "Empty (hidden) links"
157
- msgstr ""
158
-
159
- #: ../easy-fancybox-settings.php:102
160
- msgid "Without thumbnail image"
161
- msgstr ""
162
-
163
- #: ../easy-fancybox-settings.php:109
164
- msgid "Open on page load"
165
- msgstr ""
166
-
167
- #: ../easy-fancybox-settings.php:115
168
- msgid "Link with ID \"fancybox-auto\""
169
- msgstr ""
170
-
171
- #: ../easy-fancybox-settings.php:118 ../easy-fancybox-settings.php:409
172
- #: ../easy-fancybox-settings.php:440 ../easy-fancybox-settings.php:467
173
- #: ../easy-fancybox-settings.php:542 ../easy-fancybox-settings.php:696
174
- #: ../easy-fancybox-settings.php:723
175
- msgid "More options &raquo;"
176
- msgstr ""
177
-
178
- #: ../easy-fancybox-settings.php:125
179
- msgid ""
180
- "Include the Metadata jQuery extension script to allow passing custom "
181
- "parameters via link class."
182
- msgstr ""
183
-
184
- #: ../easy-fancybox-settings.php:130 ../easy-fancybox-settings.php:503
185
- msgid "Overlay"
186
- msgstr ""
187
-
188
- #: ../easy-fancybox-settings.php:139
189
- msgid "Show the overlay around content opened in FancyBox."
190
- msgstr ""
191
-
192
- #: ../easy-fancybox-settings.php:146
193
- msgid "Close FancyBox when overlay is clicked."
194
- msgstr ""
195
-
196
- #: ../easy-fancybox-settings.php:150 ../easy-fancybox-settings.php:228
197
- msgid "Opacity"
198
- msgstr ""
199
-
200
- #: ../easy-fancybox-settings.php:158
201
- msgid "Value between 0 and 1. "
202
- msgstr ""
203
-
204
- #: ../easy-fancybox-settings.php:158 ../easy-fancybox-settings.php:167
205
- #: ../easy-fancybox-settings.php:286 ../easy-fancybox-settings.php:337
206
- #: ../easy-fancybox-settings.php:595
207
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
208
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
209
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
210
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
211
- msgid "Default:"
212
- msgstr ""
213
-
214
- #: ../easy-fancybox-settings.php:162
215
- msgid "Color"
216
- msgstr ""
217
-
218
- #: ../easy-fancybox-settings.php:167
219
- msgid "Enter an HTML color value."
220
- msgstr ""
221
-
222
- #: ../easy-fancybox-settings.php:175
223
- msgid "Spotlight effect"
224
- msgstr ""
225
-
226
- #: ../easy-fancybox-settings.php:180
227
- msgid "Window"
228
- msgstr ""
229
-
230
- #: ../easy-fancybox-settings.php:186 ../easy-fancybox-settings.php:485
231
- msgid "Appearance"
232
- msgstr ""
233
-
234
- #: ../easy-fancybox-settings.php:193
235
- msgid "Show the (X) close button"
236
- msgstr ""
237
-
238
- #: ../easy-fancybox-settings.php:198
239
- msgid "Background color"
240
- msgstr ""
241
-
242
- #: ../easy-fancybox-settings.php:208
243
- msgid "Border color"
244
- msgstr ""
245
-
246
- #: ../easy-fancybox-settings.php:218
247
- msgid "Text color"
248
- msgstr ""
249
-
250
- #: ../easy-fancybox-settings.php:223 ../easy-fancybox-settings.php:236
251
- #: ../easy-fancybox-settings.php:249 ../easy-fancybox-settings.php:524
252
- #: ../easy-fancybox-settings.php:613
253
- msgid "Make available &raquo;"
254
- msgstr ""
255
-
256
- #: ../easy-fancybox-settings.php:241
257
- msgid "Border radius"
258
- msgstr ""
259
-
260
- #: ../easy-fancybox-settings.php:249
261
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
262
- msgid "Set a border radius to create rounded corners. Higher is rounder."
263
- msgstr ""
264
-
265
- #: ../easy-fancybox-settings.php:254
266
- msgid "Dimensions"
267
- msgstr ""
268
-
269
- #: ../easy-fancybox-settings.php:286
270
- msgid ""
271
- "If content size is not set or cannot be determined automatically, these "
272
- "default dimensions will be used."
273
- msgstr ""
274
-
275
- #: ../easy-fancybox-settings.php:291 ../easy-fancybox-settings.php:413
276
- msgid "Behavior"
277
- msgstr ""
278
-
279
- #: ../easy-fancybox-settings.php:298
280
- msgid "Center while scrolling"
281
- msgstr ""
282
-
283
- #: ../easy-fancybox-settings.php:305
284
- msgid "Esc key stroke closes FancyBox"
285
- msgstr ""
286
-
287
- #: ../easy-fancybox-settings.php:312
288
- msgid "Scale large content down to fit in the browser viewport."
289
- msgstr ""
290
-
291
- #: ../easy-fancybox-settings.php:316
292
- msgid "Opening speed"
293
- msgstr ""
294
-
295
- #: ../easy-fancybox-settings.php:328
296
- msgid "Closing speed"
297
- msgstr ""
298
-
299
- #: ../easy-fancybox-settings.php:337 ../easy-fancybox-settings.php:595
300
- msgid "Duration in milliseconds. Higher is slower."
301
- msgstr ""
302
-
303
- #: ../easy-fancybox-settings.php:375
304
- msgid ""
305
- "To make images open in an overlay, add their extension to the Autodetect "
306
- "field or use the class \"fancybox\" for its link. Clear field to switch off "
307
- "all autodetection."
308
- msgstr ""
309
-
310
- #: ../easy-fancybox-settings.php:390 ../easy-fancybox-settings.php:756
311
- #: ../easy-fancybox-settings.php:881 ../easy-fancybox-settings.php:975
312
- #: ../easy-fancybox-settings.php:1071 ../easy-fancybox-settings.php:1179
313
- #: ../easy-fancybox-settings.php:1279
314
- msgid "Autodetect"
315
- msgstr ""
316
-
317
- #: ../easy-fancybox-settings.php:397
318
- msgid "Example:"
319
- msgstr ""
320
-
321
- #: ../easy-fancybox-settings.php:401
322
- msgid "Apply to"
323
- msgstr ""
324
-
325
- #: ../easy-fancybox-settings.php:406
326
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
327
- msgid "All image links"
328
- msgstr ""
329
-
330
- #: ../easy-fancybox-settings.php:417 ../easy-fancybox-settings.php:673
331
- msgid "Transition In"
332
- msgstr ""
333
-
334
- #: ../easy-fancybox-settings.php:422 ../easy-fancybox-settings.php:449
335
- #: ../easy-fancybox-settings.php:678 ../easy-fancybox-settings.php:705
336
- msgid "Fade"
337
- msgstr ""
338
-
339
- #: ../easy-fancybox-settings.php:423 ../easy-fancybox-settings.php:450
340
- #: ../easy-fancybox-settings.php:679 ../easy-fancybox-settings.php:706
341
- msgid "Elastic"
342
- msgstr ""
343
-
344
- #: ../easy-fancybox-settings.php:430 ../easy-fancybox-settings.php:686
345
- msgid "Easing In"
346
- msgstr ""
347
-
348
- #: ../easy-fancybox-settings.php:434 ../easy-fancybox-settings.php:461
349
- #: ../easy-fancybox-settings.php:690 ../easy-fancybox-settings.php:717
350
- msgid "Linear"
351
- msgstr ""
352
-
353
- #: ../easy-fancybox-settings.php:435 ../easy-fancybox-settings.php:462
354
- #: ../easy-fancybox-settings.php:691 ../easy-fancybox-settings.php:718
355
- msgid "Swing"
356
- msgstr ""
357
-
358
- #: ../easy-fancybox-settings.php:436 ../easy-fancybox-settings.php:463
359
- #: ../easy-fancybox-settings.php:692 ../easy-fancybox-settings.php:719
360
- msgid "easeInBack"
361
- msgstr ""
362
-
363
- #: ../easy-fancybox-settings.php:437 ../easy-fancybox-settings.php:464
364
- #: ../easy-fancybox-settings.php:693 ../easy-fancybox-settings.php:720
365
- msgid "easeOutBack"
366
- msgstr ""
367
-
368
- #: ../easy-fancybox-settings.php:444 ../easy-fancybox-settings.php:700
369
- msgid "Transition Out"
370
- msgstr ""
371
-
372
- #: ../easy-fancybox-settings.php:457 ../easy-fancybox-settings.php:713
373
- msgid "Easing Out"
374
- msgstr ""
375
-
376
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:542
377
- #: ../easy-fancybox-settings.php:723
378
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
379
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
380
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
381
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
382
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
383
- msgid "Note:"
384
- msgstr ""
385
-
386
- #: ../easy-fancybox-settings.php:467 ../easy-fancybox-settings.php:723
387
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
388
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:332
389
- msgid "Easing effects only apply when Transition is set to Elastic. "
390
- msgstr ""
391
-
392
- #: ../easy-fancybox-settings.php:474 ../easy-fancybox-settings.php:730
393
- msgid ""
394
- "Transparency fade during elastic transition. CAUTION: Use only when at least "
395
- "Transition In is set to Elastic!"
396
- msgstr ""
397
-
398
- #: ../easy-fancybox-settings.php:481 ../easy-fancybox-settings.php:737
399
- msgid "Close FancyBox when content is clicked"
400
- msgstr ""
401
-
402
- #: ../easy-fancybox-settings.php:492 ../easy-fancybox-settings.php:810
403
- #: ../easy-fancybox-settings.php:933 ../easy-fancybox-settings.php:1027
404
- #: ../easy-fancybox-settings.php:1136 ../easy-fancybox-settings.php:1235
405
- #: ../easy-fancybox-settings.php:1335 ../easy-fancybox-settings.php:1459
406
- msgid "Show title"
407
- msgstr ""
408
-
409
- #: ../easy-fancybox-settings.php:496 ../easy-fancybox-settings.php:814
410
- #: ../easy-fancybox-settings.php:937 ../easy-fancybox-settings.php:1031
411
- #: ../easy-fancybox-settings.php:1140 ../easy-fancybox-settings.php:1239
412
- #: ../easy-fancybox-settings.php:1339 ../easy-fancybox-settings.php:1463
413
- msgid "Title Position"
414
- msgstr ""
415
-
416
- #: ../easy-fancybox-settings.php:500 ../easy-fancybox-settings.php:818
417
- #: ../easy-fancybox-settings.php:941 ../easy-fancybox-settings.php:1035
418
- #: ../easy-fancybox-settings.php:1144 ../easy-fancybox-settings.php:1243
419
- #: ../easy-fancybox-settings.php:1343 ../easy-fancybox-settings.php:1467
420
- msgid "Float"
421
- msgstr ""
422
-
423
- #: ../easy-fancybox-settings.php:501 ../easy-fancybox-settings.php:819
424
- #: ../easy-fancybox-settings.php:942 ../easy-fancybox-settings.php:1036
425
- #: ../easy-fancybox-settings.php:1145 ../easy-fancybox-settings.php:1244
426
- #: ../easy-fancybox-settings.php:1344 ../easy-fancybox-settings.php:1468
427
- msgid "Outside"
428
- msgstr ""
429
-
430
- #: ../easy-fancybox-settings.php:502 ../easy-fancybox-settings.php:820
431
- #: ../easy-fancybox-settings.php:943 ../easy-fancybox-settings.php:1037
432
- #: ../easy-fancybox-settings.php:1146 ../easy-fancybox-settings.php:1245
433
- #: ../easy-fancybox-settings.php:1345 ../easy-fancybox-settings.php:1469
434
- msgid "Inside"
435
- msgstr ""
436
-
437
- #: ../easy-fancybox-settings.php:513 ../easy-fancybox-settings.php:829
438
- #: ../easy-fancybox-settings.php:952 ../easy-fancybox-settings.php:1047
439
- #: ../easy-fancybox-settings.php:1155 ../easy-fancybox-settings.php:1254
440
- #: ../easy-fancybox-settings.php:1354 ../easy-fancybox-settings.php:1478
441
- msgid "Allow title from thumbnail alt tag"
442
- msgstr ""
443
-
444
- #: ../easy-fancybox-settings.php:517 ../easy-fancybox-settings.php:606
445
- msgid "Advanced"
446
- msgstr ""
447
-
448
- #: ../easy-fancybox-settings.php:521
449
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
450
- msgid "Hide/show title on mouse hover action"
451
- msgstr ""
452
-
453
- #: ../easy-fancybox-settings.php:528
454
- msgid "Gallery"
455
- msgstr ""
456
-
457
- #: ../easy-fancybox-settings.php:532
458
- msgid "Autogallery"
459
- msgstr ""
460
-
461
- #: ../easy-fancybox-settings.php:538
462
- msgid "WordPress galleries only"
463
- msgstr ""
464
-
465
- #: ../easy-fancybox-settings.php:539
466
- msgid "All in one gallery"
467
- msgstr ""
468
-
469
- #: ../easy-fancybox-settings.php:542
470
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
471
- msgid ""
472
- "When disabled, you can use the rel attribute to manually group image links "
473
- "together."
474
- msgstr ""
475
-
476
- #: ../easy-fancybox-settings.php:549
477
- msgid "Show the gallery navigation arrows"
478
- msgstr ""
479
-
480
- #: ../easy-fancybox-settings.php:556
481
- msgid "Arrow key strokes browse the gallery"
482
- msgstr ""
483
-
484
- #: ../easy-fancybox-settings.php:563
485
- msgid ""
486
- "Include the Mousewheel jQuery extension script to allow gallery browsing by "
487
- "mousewheel action."
488
- msgstr ""
489
-
490
- #: ../easy-fancybox-settings.php:570
491
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
492
- msgstr ""
493
-
494
- #: ../easy-fancybox-settings.php:574
495
- msgid "Change speed"
496
- msgstr ""
497
-
498
- #: ../easy-fancybox-settings.php:586
499
- msgid "Fade speed"
500
- msgstr ""
501
-
502
- #: ../easy-fancybox-settings.php:602
503
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
504
- msgid "Galleries per Section (below)"
505
- msgstr ""
506
-
507
- #: ../easy-fancybox-settings.php:602
508
- msgid ""
509
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
510
- "and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt "
511
- "it to conform with your theme."
512
- msgstr ""
513
-
514
- #: ../easy-fancybox-settings.php:602
515
- msgid ""
516
- "Examples: If your theme wraps post content in a div with class post, change "
517
- "this value to \"div.post\". If you only want to group images in a WordPress "
518
- "gallery together, use \"div.gallery\". If you want to include images in a "
519
- "sidebar with ID primary, add \", #primary\"."
520
- msgstr ""
521
-
522
- #: ../easy-fancybox-settings.php:602
523
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
524
- msgid ""
525
- "Hide/show title on mouse hover action works best with Overlay title position."
526
- msgstr ""
527
-
528
- #: ../easy-fancybox-settings.php:602
529
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:258
530
- msgid "Auto-rotation uses a fixed 3, 6, 9 or 12 second pause per image."
531
- msgstr ""
532
-
533
- #: ../easy-fancybox-settings.php:602
534
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
535
- msgid "(3 seconds)"
536
- msgstr ""
537
-
538
- #: ../easy-fancybox-settings.php:602
539
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
540
- msgid "(6 seconds)"
541
- msgstr ""
542
-
543
- #: ../easy-fancybox-settings.php:602
544
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
545
- msgid "(9 seconds)"
546
- msgstr ""
547
-
548
- #: ../easy-fancybox-settings.php:602
549
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
550
- msgid "(12 seconds)"
551
- msgstr ""
552
-
553
- #: ../easy-fancybox-settings.php:610
554
- msgid "Slideshow"
555
- msgstr ""
556
-
557
- #: ../easy-fancybox-settings.php:638
558
- msgid ""
559
- "To make inline content open in an overlay, wrap that content in a div with a "
560
- "unique ID, create a link with target \"#uniqueID\" and give it a class "
561
- "\"fancybox-inline\" attribute."
562
- msgstr ""
563
-
564
- #: ../easy-fancybox-settings.php:656
565
- msgid ""
566
- "Try to adjust size to inline/html content. If unchecked or size cannot be "
567
- "determined, the default dimensions will be used."
568
- msgstr ""
569
-
570
- #: ../easy-fancybox-settings.php:660 ../easy-fancybox-settings.php:1411
571
- msgid "Scrolling"
572
- msgstr ""
573
-
574
- #: ../easy-fancybox-settings.php:664 ../easy-fancybox-settings.php:1415
575
- msgid "Auto"
576
- msgstr ""
577
-
578
- #: ../easy-fancybox-settings.php:665 ../easy-fancybox-settings.php:1416
579
- msgid "Always"
580
- msgstr ""
581
-
582
- #: ../easy-fancybox-settings.php:666 ../easy-fancybox-settings.php:1417
583
- msgid "Never"
584
- msgstr ""
585
-
586
- #: ../easy-fancybox-settings.php:669 ../easy-fancybox-settings.php:1420
587
- msgid "Define scrolling and scrollbar visibility."
588
- msgstr ""
589
-
590
- #: ../easy-fancybox-settings.php:748
591
- msgid ""
592
- "To make any PDF document file open in an overlay, switch on Autodetect or "
593
- "use the class \"fancybox-pdf\" for its link."
594
- msgstr ""
595
-
596
- #: ../easy-fancybox-settings.php:873
597
- msgid ""
598
- "To make any Flash (.swf) file open in an overlay, switch on Autodetect or "
599
- "use the class \"fancybox-swf\" for its link."
600
- msgstr ""
601
-
602
- #: ../easy-fancybox-settings.php:967
603
- msgid ""
604
- "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use "
605
- "the class \"fancybox-svg\" for its link."
606
- msgstr ""
607
-
608
- #: ../easy-fancybox-settings.php:1062
609
- msgid ""
610
- "To make any YouTube movie open in an overlay, switch on Autodetect or use "
611
- "the class \"fancybox-youtube\" for its link."
612
- msgstr ""
613
-
614
- #: ../easy-fancybox-settings.php:1080
615
- msgid "Autodetect Short links"
616
- msgstr ""
617
-
618
- #: ../easy-fancybox-settings.php:1170
619
- msgid ""
620
- "To make any Vimeo movie open in an overlay, switch on Autodetect or use the "
621
- "class \"fancybox-vimeo\" for its link."
622
- msgstr ""
623
-
624
- #: ../easy-fancybox-settings.php:1270
625
- msgid ""
626
- "To make any Dailymotion movie open in an overlay, switch on Autodetect or "
627
- "use the class \"fancybox-dailymotion\" for its link."
628
- msgstr ""
629
-
630
- #: ../easy-fancybox-settings.php:1396
631
- msgid ""
632
- "To make a website or HTML document open in an overlay, use the class "
633
- "\"fancybox-iframe\" for its link."
634
- msgstr ""
635
-
636
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
637
- msgid ""
638
- "Thank you for purchasing the Easy FancyBox - Pro extension. New options are "
639
- "available."
640
- msgstr ""
641
-
642
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
643
- msgid "Get support here."
644
- msgstr ""
645
-
646
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
647
- msgid "First Image link"
648
- msgstr ""
649
-
650
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
651
- msgid "First PDF link"
652
- msgstr ""
653
-
654
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
655
- msgid "First SWF link"
656
- msgstr ""
657
-
658
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
659
- msgid "First SVG link"
660
- msgstr ""
661
-
662
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
663
- msgid "First YouTube link "
664
- msgstr ""
665
-
666
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
667
- msgid "First Vimeo link "
668
- msgstr ""
669
-
670
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
671
- msgid "First Dailymotion link "
672
- msgstr ""
673
-
674
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
675
- msgid "First iFrame link"
676
- msgstr ""
677
-
678
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
679
- msgid "First of any link"
680
- msgstr ""
681
-
682
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
683
- msgid "Links inside Section(s) only (below)"
684
- msgstr ""
685
-
686
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
687
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
688
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
689
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
690
- msgid "easeInQuad"
691
- msgstr ""
692
-
693
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
694
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
695
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
696
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
697
- msgid "easeOutQuad"
698
- msgstr ""
699
-
700
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
701
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
702
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
703
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
704
- msgid "easeInOutQuad"
705
- msgstr ""
706
-
707
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
708
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
709
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
710
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
711
- msgid "easeInCubic"
712
- msgstr ""
713
-
714
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
715
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
716
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
717
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
718
- msgid "easeOutCubic"
719
- msgstr ""
720
-
721
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
722
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
723
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
724
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
725
- msgid "easeInOutCubic"
726
- msgstr ""
727
-
728
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
729
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
730
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
731
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
732
- msgid "easeInQuart"
733
- msgstr ""
734
-
735
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
736
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
737
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
738
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
739
- msgid "easeOutQuart"
740
- msgstr ""
741
-
742
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
743
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
744
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
745
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
746
- msgid "easeInOutQuart"
747
- msgstr ""
748
-
749
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
750
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
751
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
752
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
753
- msgid "easeInQuint"
754
- msgstr ""
755
-
756
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
757
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
758
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
759
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
760
- msgid "easeOutQuint"
761
- msgstr ""
762
-
763
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
764
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
765
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
766
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
767
- msgid "easeInOutQuint"
768
- msgstr ""
769
-
770
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
771
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
772
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
773
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
774
- msgid "easeInSine"
775
- msgstr ""
776
-
777
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
778
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
779
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
780
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
781
- msgid "easeOutSine"
782
- msgstr ""
783
-
784
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
785
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
786
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
787
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
788
- msgid "easeInOutSine"
789
- msgstr ""
790
-
791
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
792
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
793
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
794
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
795
- msgid "easeInExpo"
796
- msgstr ""
797
-
798
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
799
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
800
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
801
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
802
- msgid "easeOutExpo"
803
- msgstr ""
804
-
805
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
806
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
807
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
808
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
809
- msgid "easeInOutExpo"
810
- msgstr ""
811
-
812
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
813
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
814
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
815
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
816
- msgid "easeInCirc"
817
- msgstr ""
818
-
819
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
820
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
821
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
822
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
823
- msgid "easeOutCirc"
824
- msgstr ""
825
-
826
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
827
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
828
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
829
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
830
- msgid "easeInOutCirc"
831
- msgstr ""
832
-
833
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
834
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
835
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
836
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
837
- msgid "easeInElastic"
838
- msgstr ""
839
-
840
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
841
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
842
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
843
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
844
- msgid "easeOutElastic"
845
- msgstr ""
846
-
847
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
848
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
849
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
850
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
851
- msgid "easeInOutElastic"
852
- msgstr ""
853
-
854
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
855
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
856
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
857
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
858
- msgid "easeInOutBack"
859
- msgstr ""
860
-
861
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
862
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
863
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
864
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
865
- msgid "easeInBounce"
866
- msgstr ""
867
-
868
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
869
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
870
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
871
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
872
- msgid "easeOutBounce"
873
- msgstr ""
874
-
875
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
876
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
877
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:297
878
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:330
879
- msgid "easeInOutBounce"
880
- msgstr ""
881
-
882
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
883
- msgid "Section(s)"
884
- msgstr ""
885
-
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
887
- msgid ""
888
- "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> "
889
- "and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt "
890
- "it to conform with your theme."
891
- msgstr ""
892
-
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
894
- msgid ""
895
- "Examples: If your theme wraps post content in a div with class post, change "
896
- "this value to \"div.post\". If you want to include images in a sidebar with "
897
- "ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If "
898
- "you only want to group images in a WordPress gallery together, use \"div."
899
- "gallery\". If you want to include images in a sidebar with ID primary, add "
900
- "\", #primary\"."
901
- msgstr ""
902
-
903
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
904
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
905
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
906
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:256
907
- msgid "Gallery Auto-rotation"
908
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/easy-fancybox_Gu_IN.mo DELETED
Binary file
languages/easy-fancybox_Gu_IN.po DELETED
@@ -1,983 +0,0 @@
1
- # Copyright (C) 2010 Easy FancyBox
2
- # This file is distributed under the same license as the Easy FancyBox package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Easy FancyBox/1.5\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-06-14 00:53+0100\n"
8
- "PO-Revision-Date: 2013-06-18 12:55+0530\n"
9
- "Last-Translator: Ajeet <Ajeetbook@gmail.com>\n"
10
- "Language-Team: Easy FancyBox Languages <ravanhagen@gmail.com>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-KeywordsList: __;_e;_n\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../../easy-fancybox-pro\n"
19
-
20
- #: ../easy-fancybox-settings.php:9
21
- #: ../easy-fancybox-class.php:566
22
- msgid "Global settings"
23
- msgstr "વૈશ્વિક સેટિંગ્સ"
24
-
25
- #: ../easy-fancybox-settings.php:14
26
- msgid "Media"
27
- msgstr "મીડિયા"
28
-
29
- #: ../easy-fancybox-settings.php:20
30
- msgid "Enable FancyBox for"
31
- msgstr "માટે FancyBox સક્ષમ કરો"
32
-
33
- #: ../easy-fancybox-settings.php:27
34
- #: ../easy-fancybox-settings.php:370
35
- #: ../easy-fancybox-class.php:567
36
- msgid "Images"
37
- msgstr "છબીઓ"
38
-
39
- #: ../easy-fancybox-settings.php:34
40
- #: ../easy-fancybox-settings.php:633
41
- #: ../easy-fancybox-class.php:568
42
- msgid "Inline content"
43
- msgstr "ઇનલાઇન સામગ્રી"
44
-
45
- #: ../easy-fancybox-settings.php:41
46
- #: ../easy-fancybox-settings.php:743
47
- #: ../easy-fancybox-class.php:569
48
- msgid "PDF"
49
- msgstr "PDF"
50
-
51
- #: ../easy-fancybox-settings.php:48
52
- #: ../easy-fancybox-settings.php:868
53
- #: ../easy-fancybox-class.php:570
54
- msgid "SWF"
55
- msgstr "એસડબલ્યુએફ"
56
-
57
- #: ../easy-fancybox-settings.php:55
58
- #: ../easy-fancybox-settings.php:962
59
- msgid "SVG"
60
- msgstr "SVG"
61
-
62
- #: ../easy-fancybox-settings.php:62
63
- #: ../easy-fancybox-settings.php:1057
64
- #: ../easy-fancybox-class.php:571
65
- msgid "YouTube"
66
- msgstr "YouTube"
67
-
68
- #: ../easy-fancybox-settings.php:69
69
- #: ../easy-fancybox-settings.php:1165
70
- #: ../easy-fancybox-class.php:572
71
- msgid "Vimeo"
72
- msgstr "Vimeo"
73
-
74
- #: ../easy-fancybox-settings.php:76
75
- #: ../easy-fancybox-settings.php:1265
76
- #: ../easy-fancybox-class.php:573
77
- msgid "Dailymotion"
78
- msgstr "Dailymotion"
79
-
80
- #: ../easy-fancybox-settings.php:83
81
- #: ../easy-fancybox-settings.php:1391
82
- #: ../easy-fancybox-class.php:574
83
- msgid "iFrames"
84
- msgstr "iFrames"
85
-
86
- #: ../easy-fancybox-settings.php:86
87
- msgid "For advanced options and support, please get the Easy FancyBox - Pro extension."
88
- msgstr "પ્રો એક્સ્ટેંશન - અદ્યતન વિકલ્પો અને આધાર માટે, સરળ FancyBox વિચાર કરો."
89
-
90
- #: ../easy-fancybox-settings.php:89
91
- msgid "Links"
92
- msgstr "કડીઓ"
93
-
94
- #: ../easy-fancybox-settings.php:95
95
- msgid "Exclude"
96
- msgstr "બાકાત રાખવું"
97
-
98
- #: ../easy-fancybox-settings.php:100
99
- #: ../easy-fancybox-settings.php:114
100
- #: ../easy-fancybox-settings.php:421
101
- #: ../easy-fancybox-settings.php:448
102
- #: ../easy-fancybox-settings.php:677
103
- #: ../easy-fancybox-settings.php:704
104
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:227
105
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:252
106
- msgid "None"
107
- msgstr "કોઈ નહીં"
108
-
109
- #: ../easy-fancybox-settings.php:101
110
- msgid "Empty (hidden) links"
111
- msgstr "ખાલી (છુપી) લિંક્સ"
112
-
113
- #: ../easy-fancybox-settings.php:102
114
- msgid "Without thumbnail image"
115
- msgstr "થંબનેલ છબી વગર"
116
-
117
- #: ../easy-fancybox-settings.php:109
118
- msgid "Open on page load"
119
- msgstr "પૃષ્ઠ લોડ પર ખોલો"
120
-
121
- #: ../easy-fancybox-settings.php:115
122
- msgid "Link with ID \"fancybox-auto\""
123
- msgstr "ID સાથે કડી \"fancybox-ઓટો \""
124
-
125
- #: ../easy-fancybox-settings.php:118
126
- #: ../easy-fancybox-settings.php:409
127
- #: ../easy-fancybox-settings.php:440
128
- #: ../easy-fancybox-settings.php:467
129
- #: ../easy-fancybox-settings.php:542
130
- #: ../easy-fancybox-settings.php:696
131
- #: ../easy-fancybox-settings.php:723
132
- msgid "More options &raquo;"
133
- msgstr "વધુ વિકલ્પો »"
134
-
135
- #: ../easy-fancybox-settings.php:125
136
- msgid "Include the Metadata jQuery extension script to allow passing custom parameters via link class."
137
- msgstr "કડી વર્ગ મારફતે વૈવિધ્યપૂર્ણ પરિમાણો પસાર કરવા માટે પરવાનગી આપવા મેટાડેટા jQuery એક્સ્ટેંશન સ્ક્રિપ્ટ સમાવેશ થાય છે."
138
-
139
- #: ../easy-fancybox-settings.php:130
140
- #: ../easy-fancybox-settings.php:503
141
- msgid "Overlay"
142
- msgstr "ઓવરલે"
143
-
144
- #: ../easy-fancybox-settings.php:139
145
- msgid "Show the overlay around content opened in FancyBox."
146
- msgstr "FancyBox માં ખોલવામાં સામગ્રી આસપાસ ઓવરલે બતાવો."
147
-
148
- #: ../easy-fancybox-settings.php:146
149
- msgid "Close FancyBox when overlay is clicked."
150
- msgstr "ઓવરલે ક્લિક થયેલ હોય ત્યારે FancyBox બંધ કરો."
151
-
152
- #: ../easy-fancybox-settings.php:150
153
- #: ../easy-fancybox-settings.php:228
154
- msgid "Opacity"
155
- msgstr "અસ્પષ્ટ"
156
-
157
- #: ../easy-fancybox-settings.php:158
158
- msgid "Value between 0 and 1. "
159
- msgstr "0 અને 1 વચ્ચે મૂલ્ય."
160
-
161
- #: ../easy-fancybox-settings.php:158
162
- #: ../easy-fancybox-settings.php:167
163
- #: ../easy-fancybox-settings.php:286
164
- #: ../easy-fancybox-settings.php:337
165
- #: ../easy-fancybox-settings.php:595
166
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:103
167
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:108
168
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
169
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
170
- msgid "Default:"
171
- msgstr "ડિફોલ્ટ:"
172
-
173
- #: ../easy-fancybox-settings.php:162
174
- msgid "Color"
175
- msgstr "રંગ"
176
-
177
- #: ../easy-fancybox-settings.php:167
178
- msgid "Enter an HTML color value."
179
- msgstr "એક HTML રંગ કિંમત દાખલ કરો."
180
-
181
- #: ../easy-fancybox-settings.php:175
182
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:71
183
- msgid "Spotlight effect"
184
- msgstr "સ્પોટલાઇટ અસર"
185
-
186
- #: ../easy-fancybox-settings.php:175
187
- #: ../easy-fancybox-settings.php:236
188
- #: ../easy-fancybox-settings.php:249
189
- #: ../easy-fancybox-settings.php:524
190
- #: ../easy-fancybox-settings.php:613
191
- msgid "Make available &raquo;"
192
- msgstr "ઉપલબ્ધ બનાવો »"
193
-
194
- #: ../easy-fancybox-settings.php:180
195
- msgid "Window"
196
- msgstr "બારી"
197
-
198
- #: ../easy-fancybox-settings.php:186
199
- #: ../easy-fancybox-settings.php:485
200
- msgid "Appearance"
201
- msgstr "હાજરી"
202
-
203
- #: ../easy-fancybox-settings.php:193
204
- msgid "Show the (X) close button"
205
- msgstr "આ (એક્સ) બંધ બટન બતાવો"
206
-
207
- #: ../easy-fancybox-settings.php:198
208
- msgid "Background color"
209
- msgstr "પૃષ્ઠભૂમિ રંગ"
210
-
211
- #: ../easy-fancybox-settings.php:208
212
- msgid "Border color"
213
- msgstr "બોર્ડર રંગ"
214
-
215
- #: ../easy-fancybox-settings.php:218
216
- msgid "Text color"
217
- msgstr "ટેક્સ્ટ રંગ"
218
-
219
- #: ../easy-fancybox-settings.php:241
220
- msgid "Border radius"
221
- msgstr "બોર્ડર ત્રિજ્યા"
222
-
223
- #: ../easy-fancybox-settings.php:249
224
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:114
225
- msgid "Set a border radius to create rounded corners. Higher is rounder."
226
- msgstr "ગોળાકાર ખૂણાઓ બનાવવા માટે સરહદ ત્રિજ્યા સેટ કરો. ઉચ્ચ રાઉન્ડર છે."
227
-
228
- #: ../easy-fancybox-settings.php:254
229
- msgid "Dimensions"
230
- msgstr "વિસ્તાર"
231
-
232
- #: ../easy-fancybox-settings.php:258
233
- #: ../easy-fancybox-settings.php:771
234
- #: ../easy-fancybox-settings.php:896
235
- #: ../easy-fancybox-settings.php:990
236
- #: ../easy-fancybox-settings.php:1095
237
- #: ../easy-fancybox-settings.php:1194
238
- #: ../easy-fancybox-settings.php:1294
239
- #: ../easy-fancybox-settings.php:1424
240
- msgid "Width"
241
- msgstr "પહોળાઈ"
242
-
243
- #: ../easy-fancybox-settings.php:268
244
- #: ../easy-fancybox-settings.php:781
245
- #: ../easy-fancybox-settings.php:907
246
- #: ../easy-fancybox-settings.php:1001
247
- #: ../easy-fancybox-settings.php:1108
248
- #: ../easy-fancybox-settings.php:1207
249
- #: ../easy-fancybox-settings.php:1307
250
- #: ../easy-fancybox-settings.php:1434
251
- msgid "Height"
252
- msgstr "ઊંચાઈ"
253
-
254
- #: ../easy-fancybox-settings.php:277
255
- #: ../easy-fancybox-settings.php:790
256
- #: ../easy-fancybox-settings.php:917
257
- #: ../easy-fancybox-settings.php:1011
258
- #: ../easy-fancybox-settings.php:1120
259
- #: ../easy-fancybox-settings.php:1219
260
- #: ../easy-fancybox-settings.php:1319
261
- #: ../easy-fancybox-settings.php:1443
262
- msgid "Border"
263
- msgstr "સરહદ"
264
-
265
- #: ../easy-fancybox-settings.php:286
266
- msgid "If content size is not set or cannot be determined automatically, these default dimensions will be used."
267
- msgstr "સામગ્રી કદ સેટ નથી અથવા આપોઆપ નક્કી કરી શકતા નથી, તો આ મૂળભૂત પરિમાણો ઉપયોગ કરવામાં આવશે."
268
-
269
- #: ../easy-fancybox-settings.php:291
270
- #: ../easy-fancybox-settings.php:413
271
- msgid "Behavior"
272
- msgstr "વર્તન"
273
-
274
- #: ../easy-fancybox-settings.php:298
275
- msgid "Center while scrolling"
276
- msgstr "કેન્દ્ર જ્યારે સરકાવનાર"
277
-
278
- #: ../easy-fancybox-settings.php:305
279
- msgid "Esc key stroke closes FancyBox"
280
- msgstr "Esc કી સ્ટ્રોક FancyBox બંધ"
281
-
282
- #: ../easy-fancybox-settings.php:312
283
- msgid "Scale large content down to fit in the browser viewport."
284
- msgstr "બ્રાઉઝર વ્યૂપોર્ટ માં ફિટ નીચે સ્કેલ મોટા સામગ્રી."
285
-
286
- #: ../easy-fancybox-settings.php:316
287
- msgid "Opening speed"
288
- msgstr "ઝડપ ખુલવાનો"
289
-
290
- #: ../easy-fancybox-settings.php:328
291
- msgid "Closing speed"
292
- msgstr "ઝડપ બંધ"
293
-
294
- #: ../easy-fancybox-settings.php:337
295
- #: ../easy-fancybox-settings.php:595
296
- msgid "Duration in milliseconds. Higher is slower."
297
- msgstr "મિલિસેકન્ડોમાં સમયગાળો. ઉચ્ચ ધીમી છે."
298
-
299
- #: ../easy-fancybox-settings.php:375
300
- msgid "To make images open in an overlay, add their extension to the Autodetect field or use the class \"fancybox\" for its link. Clear field to switch off all autodetection."
301
- msgstr "ઓવરલે ચિત્રો ઓપન બનાવવા માટે, ક્ષેત્ર સ્વતઃશોધ તેમના એક્સ્ટેંશન ઉમેરવા અથવા તેની લિંક માટે \"fancybox \" વર્ગ વાપરો. સ્પષ્ટ ક્ષેત્ર બધા આપોઆપ શોધવાનું બંધ સ્વિચ કરવા માટે."
302
-
303
- #: ../easy-fancybox-settings.php:390
304
- #: ../easy-fancybox-settings.php:756
305
- #: ../easy-fancybox-settings.php:881
306
- #: ../easy-fancybox-settings.php:975
307
- #: ../easy-fancybox-settings.php:1071
308
- #: ../easy-fancybox-settings.php:1179
309
- #: ../easy-fancybox-settings.php:1279
310
- msgid "Autodetect"
311
- msgstr "સ્વતઃશોધ"
312
-
313
- #: ../easy-fancybox-settings.php:397
314
- msgid "Example:"
315
- msgstr "ઉદાહરણ તરીકે:"
316
-
317
- #: ../easy-fancybox-settings.php:401
318
- msgid "Apply to"
319
- msgstr "માટે અરજી"
320
-
321
- #: ../easy-fancybox-settings.php:406
322
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:147
323
- msgid "All image links"
324
- msgstr "બધા છબી લિંક્સ"
325
-
326
- #: ../easy-fancybox-settings.php:417
327
- #: ../easy-fancybox-settings.php:673
328
- msgid "Transition In"
329
- msgstr "માં સંક્રાંતિ"
330
-
331
- #: ../easy-fancybox-settings.php:422
332
- #: ../easy-fancybox-settings.php:449
333
- #: ../easy-fancybox-settings.php:678
334
- #: ../easy-fancybox-settings.php:705
335
- msgid "Fade"
336
- msgstr "ઝૂકી કે નમી પડવું"
337
-
338
- #: ../easy-fancybox-settings.php:423
339
- #: ../easy-fancybox-settings.php:450
340
- #: ../easy-fancybox-settings.php:679
341
- #: ../easy-fancybox-settings.php:706
342
- msgid "Elastic"
343
- msgstr "સ્થિતિસ્થાપક"
344
-
345
- #: ../easy-fancybox-settings.php:430
346
- #: ../easy-fancybox-settings.php:686
347
- msgid "Easing In"
348
- msgstr "માં સરળ"
349
-
350
- #: ../easy-fancybox-settings.php:434
351
- #: ../easy-fancybox-settings.php:461
352
- #: ../easy-fancybox-settings.php:690
353
- #: ../easy-fancybox-settings.php:717
354
- msgid "Linear"
355
- msgstr "રેખીય"
356
-
357
- #: ../easy-fancybox-settings.php:435
358
- #: ../easy-fancybox-settings.php:462
359
- #: ../easy-fancybox-settings.php:691
360
- #: ../easy-fancybox-settings.php:718
361
- msgid "Swing"
362
- msgstr "સ્વિંગ"
363
-
364
- #: ../easy-fancybox-settings.php:436
365
- #: ../easy-fancybox-settings.php:463
366
- #: ../easy-fancybox-settings.php:692
367
- #: ../easy-fancybox-settings.php:719
368
- msgid "easeInBack"
369
- msgstr "easeInBack"
370
-
371
- #: ../easy-fancybox-settings.php:437
372
- #: ../easy-fancybox-settings.php:464
373
- #: ../easy-fancybox-settings.php:693
374
- #: ../easy-fancybox-settings.php:720
375
- msgid "easeOutBack"
376
- msgstr "easeOutBack"
377
-
378
- #: ../easy-fancybox-settings.php:444
379
- #: ../easy-fancybox-settings.php:700
380
- msgid "Transition Out"
381
- msgstr "સંક્રમણ આઉટ"
382
-
383
- #: ../easy-fancybox-settings.php:457
384
- #: ../easy-fancybox-settings.php:713
385
- msgid "Easing Out"
386
- msgstr "આઉટ સરળ"
387
-
388
- #: ../easy-fancybox-settings.php:467
389
- #: ../easy-fancybox-settings.php:542
390
- #: ../easy-fancybox-settings.php:723
391
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
392
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
393
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
394
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
395
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
396
- msgid "Note:"
397
- msgstr "નોંધ:"
398
-
399
- #: ../easy-fancybox-settings.php:467
400
- #: ../easy-fancybox-settings.php:723
401
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:213
402
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:331
403
- msgid "Easing effects only apply when Transition is set to Elastic. "
404
- msgstr "ટ્રાન્ઝિશન સ્થિતિસ્થાપકતાનો માટે સુયોજિત થયેલ છે જ્યારે હળવો અસરો માત્ર લાગુ પડે છે."
405
-
406
- #: ../easy-fancybox-settings.php:474
407
- #: ../easy-fancybox-settings.php:730
408
- msgid "Transparency fade during elastic transition. CAUTION: Use only when at least Transition In is set to Elastic!"
409
- msgstr "સ્થિતિસ્થાપક સંક્રમણ દરમિયાન પારદર્શિતા ફેડ. સાવધાની: ઓછામાં ઓછા ટ્રાન્ઝિશન સ્થિતિસ્થાપકતાનો માટે સુયોજિત થયેલ છે ત્યારે જ વાપરો!"
410
-
411
- #: ../easy-fancybox-settings.php:481
412
- #: ../easy-fancybox-settings.php:737
413
- msgid "Close FancyBox when content is clicked"
414
- msgstr "સામગ્રી ક્લિક થયેલ હોય ત્યારે FancyBox બંધ"
415
-
416
- #: ../easy-fancybox-settings.php:492
417
- #: ../easy-fancybox-settings.php:810
418
- #: ../easy-fancybox-settings.php:933
419
- #: ../easy-fancybox-settings.php:1027
420
- #: ../easy-fancybox-settings.php:1136
421
- #: ../easy-fancybox-settings.php:1235
422
- #: ../easy-fancybox-settings.php:1335
423
- #: ../easy-fancybox-settings.php:1459
424
- msgid "Show title"
425
- msgstr "શીર્ષક બતાવો"
426
-
427
- #: ../easy-fancybox-settings.php:496
428
- #: ../easy-fancybox-settings.php:814
429
- #: ../easy-fancybox-settings.php:937
430
- #: ../easy-fancybox-settings.php:1031
431
- #: ../easy-fancybox-settings.php:1140
432
- #: ../easy-fancybox-settings.php:1239
433
- #: ../easy-fancybox-settings.php:1339
434
- #: ../easy-fancybox-settings.php:1463
435
- msgid "Title Position"
436
- msgstr "શીર્ષક પોઝિશન"
437
-
438
- #: ../easy-fancybox-settings.php:500
439
- #: ../easy-fancybox-settings.php:818
440
- #: ../easy-fancybox-settings.php:941
441
- #: ../easy-fancybox-settings.php:1035
442
- #: ../easy-fancybox-settings.php:1144
443
- #: ../easy-fancybox-settings.php:1243
444
- #: ../easy-fancybox-settings.php:1343
445
- #: ../easy-fancybox-settings.php:1467
446
- msgid "Float"
447
- msgstr "ફ્લોટ"
448
-
449
- #: ../easy-fancybox-settings.php:501
450
- #: ../easy-fancybox-settings.php:819
451
- #: ../easy-fancybox-settings.php:942
452
- #: ../easy-fancybox-settings.php:1036
453
- #: ../easy-fancybox-settings.php:1145
454
- #: ../easy-fancybox-settings.php:1244
455
- #: ../easy-fancybox-settings.php:1344
456
- #: ../easy-fancybox-settings.php:1468
457
- msgid "Outside"
458
- msgstr "બહાર"
459
-
460
- #: ../easy-fancybox-settings.php:502
461
- #: ../easy-fancybox-settings.php:820
462
- #: ../easy-fancybox-settings.php:943
463
- #: ../easy-fancybox-settings.php:1037
464
- #: ../easy-fancybox-settings.php:1146
465
- #: ../easy-fancybox-settings.php:1245
466
- #: ../easy-fancybox-settings.php:1345
467
- #: ../easy-fancybox-settings.php:1469
468
- msgid "Inside"
469
- msgstr "અંદરની બાજુ"
470
-
471
- #: ../easy-fancybox-settings.php:513
472
- #: ../easy-fancybox-settings.php:829
473
- #: ../easy-fancybox-settings.php:952
474
- #: ../easy-fancybox-settings.php:1047
475
- #: ../easy-fancybox-settings.php:1155
476
- #: ../easy-fancybox-settings.php:1254
477
- #: ../easy-fancybox-settings.php:1354
478
- #: ../easy-fancybox-settings.php:1478
479
- msgid "Allow title from thumbnail alt tag"
480
- msgstr "થંબનેલ Alt ટૅગ માંથી શીર્ષક મંજૂરી આપો"
481
-
482
- #: ../easy-fancybox-settings.php:517
483
- #: ../easy-fancybox-settings.php:606
484
- msgid "Advanced"
485
- msgstr "ઉન્નત"
486
-
487
- #: ../easy-fancybox-settings.php:521
488
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:228
489
- msgid "Hide/show title on mouse hover action"
490
- msgstr "માઉસ હોવર ક્રિયા પર શીર્ષક બતાવો / છુપાવો"
491
-
492
- #: ../easy-fancybox-settings.php:528
493
- msgid "Gallery"
494
- msgstr "દીર્ઘા"
495
-
496
- #: ../easy-fancybox-settings.php:532
497
- msgid "Autogallery"
498
- msgstr "Autogallery"
499
-
500
- #: ../easy-fancybox-settings.php:537
501
- msgid "Disabled"
502
- msgstr "અક્ષમ"
503
-
504
- #: ../easy-fancybox-settings.php:538
505
- msgid "WordPress galleries only"
506
- msgstr "WordPress ગેલેરીઓ માત્ર"
507
-
508
- #: ../easy-fancybox-settings.php:539
509
- msgid "All in one gallery"
510
- msgstr "એક ગેલેરીમાં ઑફ તમામ"
511
-
512
- #: ../easy-fancybox-settings.php:542
513
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:219
514
- msgid "When disabled, you can use the rel attribute to manually group image links together."
515
- msgstr "અક્ષમ કરો છો, ત્યારે તમે એકસાથે જાતે જૂથ છબી લિંક્સ માટે rel લક્ષણ ઉપયોગ કરી શકો છો."
516
-
517
- #: ../easy-fancybox-settings.php:542
518
- msgid "Leave the mousewheel option (below) unchecked when you do not use FancyBox for galleries on your site."
519
- msgstr "જો mousewheel વિકલ્પ (નીચે) તમે તમારી સાઇટ પર ગેલેરીઓ માટે FancyBox ઉપયોગ ન હોય ત્યારે અચિહ્નિત છોડી મૂકો."
520
-
521
- #: ../easy-fancybox-settings.php:549
522
- msgid "Show the gallery navigation arrows"
523
- msgstr "ગેલેરી સંશોધક તીર બતાવો"
524
-
525
- #: ../easy-fancybox-settings.php:556
526
- msgid "Arrow key strokes browse the gallery"
527
- msgstr "તીર કી સ્ટ્રૉક ગેલેરી બ્રાઉઝ કરો"
528
-
529
- #: ../easy-fancybox-settings.php:563
530
- msgid "Include the Mousewheel jQuery extension script to allow gallery browsing by mousewheel action."
531
- msgstr "Mousewheel ક્રિયા દ્વારા ગેલેરી બ્રાઉઝિંગ માટે પરવાનગી આપવા માટે Mousewheel jQuery એક્સ્ટેંશન સ્ક્રિપ્ટ સમાવેશ થાય છે."
532
-
533
- #: ../easy-fancybox-settings.php:570
534
- msgid "Make galleries cyclic, allowing you to keep pressing next/back."
535
- msgstr "તમે પાછા / આગામી દબાવીને રાખવા માટે પરવાનગી આપે છે, ગેલેરીઓમાં ચક્રીય બનાવો."
536
-
537
- #: ../easy-fancybox-settings.php:574
538
- msgid "Change speed"
539
- msgstr "ઝડપ બદલો"
540
-
541
- #: ../easy-fancybox-settings.php:586
542
- msgid "Fade speed"
543
- msgstr "ઝડપ ઝાંખું"
544
-
545
- #: ../easy-fancybox-settings.php:602
546
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:217
547
- msgid "Galleries per Section (below)"
548
- msgstr "વિભાગ દીઠ ગેલેરીઓ (નીચે)"
549
-
550
- #: ../easy-fancybox-settings.php:602
551
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Autogallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
552
- msgstr "આ <em> </ em> વિભાગો માટે મર્યાદિત <em> માટે સુયોજિત થયેલ છે માટે અરજી કરો ત્યારે લાગુ પડે છે </ em> અને / અથવા <em> Autogallery </ em> વિભાગ દીઠ <em> ગેલેરીઝ માટે સુયોજિત થયેલ છે </ em>. તમારી થીમ સાથે અનુકૂળ કરવા માટે તેને સ્વીકારવાનું."
553
-
554
- #: ../easy-fancybox-settings.php:602
555
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you only want to group images in a WordPress gallery together, use \"div.gallery\". If you want to include images in a sidebar with ID primary, add \", #primary\"."
556
- msgstr "ઉદાહરણો: તમારી થીમ વર્ગ પોસ્ટ સાથે DIV પોસ્ટ આવરણમાં સામગ્રી નહિં, તો \"div.post \" આ કિંમત બદલો. તમે માત્ર મળીને એક WordPress ગેલેરીમાં જૂથ છબીઓ માંગો છો, તો \"div.gallery \" વાપરો. તમે ને પ્રાથમિક સાથે સાઇડબારમાં છબીઓ શામેલ કરવા માંગો છો, તો \", # પ્રાથમિક \" ઉમેરો."
557
-
558
- #: ../easy-fancybox-settings.php:602
559
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:230
560
- msgid "Hide/show title on mouse hover action works best with Overlay title position."
561
- msgstr "માઉસ હોવર ક્રિયા પર શીર્ષક બતાવો / છુપાવો ઓવરલે શીર્ષક પોઝિશન સાથે શ્રેષ્ઠ કામ કરે છે."
562
-
563
- #: ../easy-fancybox-settings.php:602
564
- msgid "The slideshow uses a fixed 6, 8 or 12 second pause per image."
565
- msgstr "સ્લાઇડશો ઇમેજ દીઠ એક નિશ્ચિત 6, 8, અથવા 12 સેકન્ડ વિરામ વાપરે છે."
566
-
567
- #: ../easy-fancybox-settings.php:602
568
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
569
- msgid "(6 seconds)"
570
- msgstr "(6 સેકંડ)"
571
-
572
- #: ../easy-fancybox-settings.php:602
573
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
574
- msgid "(8 seconds)"
575
- msgstr "(8 સેકન્ડો)"
576
-
577
- #: ../easy-fancybox-settings.php:602
578
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
579
- msgid "(12 seconds)"
580
- msgstr "(12 સેકન્ડ્સ)"
581
-
582
- #: ../easy-fancybox-settings.php:610
583
- msgid "Slideshow"
584
- msgstr "સ્લાઇડ શો"
585
-
586
- #: ../easy-fancybox-settings.php:638
587
- msgid "To make inline content open in an overlay, wrap that content in a div with a unique ID, create a link with target \"#uniqueID\" and give it a class \"fancybox-inline\" attribute."
588
- msgstr "અનન્ય ID ને સાથે DIV કે સામગ્રી ઓવરલે, કામળો માં ઇનલાઇન સામગ્રી ઓપન બનાવવા માટે, લક્ષ્ય \"# uniqueID \" સાથે લિંક બનાવી છે અને તે એક વર્ગ \"fancybox-inline \" લક્ષણ આપે છે."
589
-
590
- #: ../easy-fancybox-settings.php:656
591
- msgid "Try to adjust size to inline/html content. If unchecked or size cannot be determined, the default dimensions will be used."
592
- msgstr "ઇનલાઇન / html સામગ્રી માટે માપ વ્યવસ્થિત કરવાનો પ્રયાસ કરો. અનચેક અથવા કદ નક્કી કરી શકતા નથી, તો ડિફૉલ્ટ પરિમાણો ઉપયોગ કરવામાં આવશે."
593
-
594
- #: ../easy-fancybox-settings.php:660
595
- #: ../easy-fancybox-settings.php:1411
596
- msgid "Scrolling"
597
- msgstr "સ્ક્રોલિંગ"
598
-
599
- #: ../easy-fancybox-settings.php:664
600
- #: ../easy-fancybox-settings.php:1415
601
- msgid "Auto"
602
- msgstr "ઓટો"
603
-
604
- #: ../easy-fancybox-settings.php:665
605
- #: ../easy-fancybox-settings.php:1416
606
- msgid "Always"
607
- msgstr "હંમેશાં"
608
-
609
- #: ../easy-fancybox-settings.php:666
610
- #: ../easy-fancybox-settings.php:1417
611
- msgid "Never"
612
- msgstr "ક્યારેય નહીં"
613
-
614
- #: ../easy-fancybox-settings.php:669
615
- #: ../easy-fancybox-settings.php:1420
616
- msgid "Define scrolling and scrollbar visibility."
617
- msgstr "સરકાવનાર અને સ્ક્રોલબાર દૃશ્યતા વ્યાખ્યાયિત કરે છે."
618
-
619
- #: ../easy-fancybox-settings.php:748
620
- msgid "To make any PDF document file open in an overlay, switch on Autodetect or use the class \"fancybox-pdf\" for its link."
621
- msgstr "ઓવરલે, સ્વતઃશોધ પર સ્વીચ કોઈપણ PDF દસ્તાવેજ ફાઈલ ઓપન કરી અથવા તેની લિંક માટે વર્ગ \"fancybox-PDF \" વાપરો."
622
-
623
- #: ../easy-fancybox-settings.php:873
624
- msgid "To make any Flash (.swf) file open in an overlay, switch on Autodetect or use the class \"fancybox-swf\" for its link."
625
- msgstr "સ્વતઃશોધ પર સ્વીચ, ઓવરલે કોઈપણ ફ્લેશ (. એસડબલ્યુએફ) ફાઇલ ખોલો બનાવવા અથવા વર્ગ ઉપયોગ કરવા માટે \"fancybox-એસડબલ્યુએફ \" તેની લિંક માટે."
626
-
627
- #: ../easy-fancybox-settings.php:967
628
- msgid "To make any SVG (.svg) file open in an overlay, switch on Autodetect or use the class \"fancybox-svg\" for its link."
629
- msgstr "સ્વતઃશોધ પર સ્વીચ, ઓવરલે કોઈપણ SVG (. SVG) ફાઈલ ઓપન કરી અથવા તેની લિંક માટે વર્ગ \"fancybox-SVG \" વાપરો."
630
-
631
- #: ../easy-fancybox-settings.php:1062
632
- msgid "To make any YouTube movie open in an overlay, switch on Autodetect or use the class \"fancybox-youtube\" for its link."
633
- msgstr "સ્વતઃશોધ પર સ્વીચ, ઓવરલે કોઈપણ YouTube મૂવી ઓપન કરો અથવા તેના લિંક માટે વર્ગ \"fancybox-YouTube \" વાપરો."
634
-
635
- #: ../easy-fancybox-settings.php:1080
636
- msgid "Autodetect Short links"
637
- msgstr "લઘુ કડીઓ સ્વતઃશોધ"
638
-
639
- #: ../easy-fancybox-settings.php:1170
640
- msgid "To make any Vimeo movie open in an overlay, switch on Autodetect or use the class \"fancybox-vimeo\" for its link."
641
- msgstr "સ્વતઃશોધ પર સ્વીચ, ઓવરલે કોઈપણ Vimeo ફિલ્મ ઓપન કરો અથવા તેના લિંક માટે વર્ગ \"fancybox-Vimeo \" વાપરો."
642
-
643
- #: ../easy-fancybox-settings.php:1270
644
- msgid "To make any Dailymotion movie open in an overlay, switch on Autodetect or use the class \"fancybox-dailymotion\" for its link."
645
- msgstr "આપમેળેચકાસો home page પર સ્વીચ, નોંધો કે જો ઓવરલે માં કોઇ પણ Dailymotion મૂવી ઓપન બનાવવાનો છે અથવા તેના લિંક માટે જો આ વર્ગ \"fancybox-dailymotion \" નો ઉપયોગ કરો કરવા માટે,."
646
-
647
- #: ../easy-fancybox-settings.php:1396
648
- msgid "To make a website or HTML document open in an overlay, use the class \"fancybox-iframe\" for its link."
649
- msgstr "ઓવરલે એક વેબસાઇટ અથવા HTML દસ્તાવેજ ખોલો બનાવવા માટે, તેની લિંક માટે વર્ગ \"fancybox-iframe \" વાપરો."
650
-
651
- #: ../easy-fancybox-class.php:298
652
- msgid "Donate to keep the Easy FancyBox plugin development going!"
653
- msgstr "સરળ FancyBox પ્લગઇન વિકાસ ચાલુ રાખવા માટે દાન!"
654
-
655
- #: ../easy-fancybox-class.php:298
656
- #, php-format
657
- msgid "The options in this section are provided by the plugin %s and determine the <strong>Media Lightbox</strong> overlay appearance and behaviour controlled by %s."
658
- msgstr "આ વિભાગમાં વિકલ્પો પ્લગઇન% s દ્વારા પૂરી પાડવામાં આવેલ છે અને <strong> મીડિયા લાઇટબૉક્સ </ strong>:% s દ્વારા નિયંત્રિત ઓવરલે દેખાવ અને વર્તન નક્કી કરવામાં આવે છે."
659
-
660
- #: ../easy-fancybox-class.php:298
661
- msgid "Easy FancyBox"
662
- msgstr "સરળ FancyBox"
663
-
664
- #: ../easy-fancybox-class.php:298
665
- #: ../easy-fancybox-class.php:510
666
- #: ../easy-fancybox-class.php:554
667
- msgid "FancyBox"
668
- msgstr "FancyBox"
669
-
670
- #: ../easy-fancybox-class.php:298
671
- msgid "First enable each sub-section that you need. Then save and come back to adjust its specific settings."
672
- msgstr "પ્રથમ તમે જરૂર છે કે જે દરેક પેટા - કલમ સક્રિય કરે છે. પછી સેવ અને તેની ચોક્કસ સુયોજનો સંતુલિત કરવા માટે પાછા આવો."
673
-
674
- #: ../easy-fancybox-class.php:298
675
- msgid "Note: Each additional sub-section and features like <em>Auto-detection</em>, <em>Elastic transitions</em> and all <em>Easing effects</em> (except Swing) will have some extra impact on client-side page speed. Enable only those sub-sections and options that you actually need on your site."
676
- msgstr "નોંધ: દરેક વધારાના પેટા - કલમ અને <em> સ્વતઃ શોધ </ em>, <em> સ્થિતિસ્થાપકતાનો સંક્રમણો જેવા લક્ષણો </ em> અને બધા <em> સરળ અસરો </ em> (સ્વિંગ સિવાય) કેટલાક વિશેષ અસર પડશે ક્લાઈન્ટ બાજુ પાનું ઝડપ પર. માત્ર તે જ પેટા વિભાગો અને તમે ખરેખર તમારી સાઇટ પર જરૂર છે કે જે વિકલ્પો સક્ષમ કરો."
677
-
678
- #: ../easy-fancybox-class.php:298
679
- msgid "Some setting like Transition options are unavailable for SWF video, PDF and iFrame content to ensure browser compatibility and readability."
680
- msgstr "ટ્રાન્ઝિશન વિકલ્પો જેવા કેટલાક સેટિંગ એસડબલ્યુએફ વિડિઓ, પીડીએફ અને બ્રાઉઝર સુસંગતતા અને વાંચી શકાય તેની ખાતરી કરવા માટે iframe સામગ્રી માટે અનુપલબ્ધ છે."
681
-
682
- #: ../easy-fancybox-class.php:342
683
- msgid "Checked"
684
- msgstr "રંગબેરંગી"
685
-
686
- #: ../easy-fancybox-class.php:344
687
- msgid "Unchecked"
688
- msgstr "અનચેક"
689
-
690
- #: ../easy-fancybox-class.php:391
691
- msgid "Settings"
692
- msgstr "સેટિંગ્સ"
693
-
694
- #: ../easy-fancybox-class.php:554
695
- msgid "Easy FancyBox Settings"
696
- msgstr "સરળ FancyBox સેટિંગ્સ"
697
-
698
- #: ../easy-fancybox-class.php:565
699
- msgid "Sections"
700
- msgstr "વિભાગો"
701
-
702
- #: ../easy-fancybox-class.php:602
703
- msgid "Support"
704
- msgstr "આધાર"
705
-
706
- #: ../easy-fancybox-class.php:603
707
- msgid "Resources"
708
- msgstr "સાધનો"
709
-
710
- #: ../easy-fancybox-class.php:604
711
- msgid "Discussion"
712
- msgstr "ચર્ચા"
713
-
714
- #: ../easy-fancybox-class.php:605
715
- msgid "Credits"
716
- msgstr "ક્રેડિટ્સ"
717
-
718
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
719
- msgid "Thank you for purchasing the Easy FancyBox - Pro extension. New options are available."
720
- msgstr "પ્રો એક્સ્ટેંશન - સરળ FancyBox ખરીદી બદલ આભાર. નવા વિકલ્પો ઉપલબ્ધ છે."
721
-
722
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:46
723
- msgid "Get support here."
724
- msgstr "અહીં આધાર મળે છે."
725
-
726
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:52
727
- msgid "First Image link"
728
- msgstr "પ્રથમ છબી લિંક"
729
-
730
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:53
731
- msgid "First PDF link"
732
- msgstr "પ્રથમ પીડીએફ લિંક"
733
-
734
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:54
735
- msgid "First SWF link"
736
- msgstr "પ્રથમ એસડબલ્યુએફ લિંક"
737
-
738
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:55
739
- msgid "First SVG link"
740
- msgstr "પ્રથમ SVG લિંક"
741
-
742
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:56
743
- msgid "First YouTube link "
744
- msgstr "પ્રથમ YouTube લિંક"
745
-
746
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:57
747
- msgid "First Vimeo link "
748
- msgstr "પ્રથમ Vimeo લિંક"
749
-
750
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:58
751
- msgid "First Dailymotion link "
752
- msgstr "પ્રથમ Dailymotion લિંક"
753
-
754
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:59
755
- msgid "First iFrame link"
756
- msgstr "પ્રથમ iframe લિંક"
757
-
758
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:60
759
- msgid "First of any link"
760
- msgstr "કોઇ કડી પ્રથમ"
761
-
762
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:145
763
- msgid "Links inside Section(s) only (below)"
764
- msgstr "માત્ર વિભાગ અંદર લિંક્સ (ઓ) (નીચે)"
765
-
766
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:151
767
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:184
768
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:269
769
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:302
770
- msgid "easeInQuad"
771
- msgstr "easeInQuad"
772
-
773
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:152
774
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:185
775
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:270
776
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:303
777
- msgid "easeOutQuad"
778
- msgstr "easeOutQuad"
779
-
780
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:153
781
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:186
782
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:271
783
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:304
784
- msgid "easeInOutQuad"
785
- msgstr "easeInOutQuad"
786
-
787
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:154
788
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:187
789
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:272
790
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:305
791
- msgid "easeInCubic"
792
- msgstr "easeInCubic"
793
-
794
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:155
795
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:188
796
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:273
797
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:306
798
- msgid "easeOutCubic"
799
- msgstr "easeOutCubic"
800
-
801
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:156
802
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:189
803
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:274
804
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:307
805
- msgid "easeInOutCubic"
806
- msgstr "easeInOutCubic"
807
-
808
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:157
809
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:190
810
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:275
811
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:308
812
- msgid "easeInQuart"
813
- msgstr "easeInQuart"
814
-
815
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:158
816
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:191
817
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:276
818
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:309
819
- msgid "easeOutQuart"
820
- msgstr "easeOutQuart"
821
-
822
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:159
823
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:192
824
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:277
825
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:310
826
- msgid "easeInOutQuart"
827
- msgstr "easeInOutQuart"
828
-
829
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:160
830
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:193
831
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:278
832
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:311
833
- msgid "easeInQuint"
834
- msgstr "easeInQuint"
835
-
836
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:161
837
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:194
838
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:279
839
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:312
840
- msgid "easeOutQuint"
841
- msgstr "easeOutQuint"
842
-
843
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:162
844
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:195
845
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:280
846
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:313
847
- msgid "easeInOutQuint"
848
- msgstr "easeInOutQuint"
849
-
850
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:163
851
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:196
852
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:281
853
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:314
854
- msgid "easeInSine"
855
- msgstr "easeInSine"
856
-
857
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:164
858
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:197
859
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:282
860
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:315
861
- msgid "easeOutSine"
862
- msgstr "easeOutSine"
863
-
864
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:165
865
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:198
866
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:283
867
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:316
868
- msgid "easeInOutSine"
869
- msgstr "easeInOutSine"
870
-
871
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:166
872
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:199
873
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:284
874
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:317
875
- msgid "easeInExpo"
876
- msgstr "easeInExpo"
877
-
878
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:167
879
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:200
880
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:285
881
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:318
882
- msgid "easeOutExpo"
883
- msgstr "easeOutExpo"
884
-
885
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:168
886
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:201
887
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:286
888
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:319
889
- msgid "easeInOutExpo"
890
- msgstr "easeInOutExpo"
891
-
892
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:169
893
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:202
894
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:287
895
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:320
896
- msgid "easeInCirc"
897
- msgstr "easeInCirc"
898
-
899
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:170
900
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:203
901
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:288
902
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:321
903
- msgid "easeOutCirc"
904
- msgstr "easeOutCirc"
905
-
906
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:171
907
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:204
908
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:289
909
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:322
910
- msgid "easeInOutCirc"
911
- msgstr "easeInOutCirc"
912
-
913
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:172
914
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:205
915
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:290
916
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:323
917
- msgid "easeInElastic"
918
- msgstr "easeInElastic"
919
-
920
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:173
921
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:206
922
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:291
923
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:324
924
- msgid "easeOutElastic"
925
- msgstr "easeOutElastic"
926
-
927
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:174
928
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:207
929
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:292
930
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:325
931
- msgid "easeInOutElastic"
932
- msgstr "easeInOutElastic"
933
-
934
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:175
935
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:208
936
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:293
937
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:326
938
- msgid "easeInOutBack"
939
- msgstr "easeInOutBack"
940
-
941
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:176
942
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:209
943
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:294
944
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:327
945
- msgid "easeInBounce"
946
- msgstr "easeInBounce"
947
-
948
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:177
949
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:210
950
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:295
951
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:328
952
- msgid "easeOutBounce"
953
- msgstr "easeOutBounce"
954
-
955
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:178
956
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:211
957
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:296
958
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:329
959
- msgid "easeInOutBounce"
960
- msgstr "easeInOutBounce"
961
-
962
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:238
963
- msgid "Section(s)"
964
- msgstr "વિભાગ (ઓ)"
965
-
966
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
967
- msgid "This applies when <em>Apply to</em> is set to <em>Limited to Sections</em> and/or <em>Auto-gallery</em> is set to <em>Galleries per Section</em>. Adapt it to conform with your theme."
968
- msgstr "આ <em> </ em> વિભાગો માટે મર્યાદિત <em> માટે સુયોજિત થયેલ છે માટે અરજી કરો ત્યારે લાગુ પડે છે </ em> અને / અથવા <em> સ્વતઃ ગેલેરી </ em> વિભાગ દીઠ <em> ગેલેરીઝ માટે સુયોજિત થયેલ છે </ em >. તમારી થીમ સાથે અનુકૂળ કરવા માટે તેને સ્વીકારવાનું."
969
-
970
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:244
971
- msgid "Examples: If your theme wraps post content in a div with class post, change this value to \"div.post\". If you want to include images in a sidebar with ID primary, add \", div#primary\" or \"aside#primary\" for html5 themes. If you only want to group images in a WordPress gallery together, use \"div.gallery\". If you want to include images in a sidebar with ID primary, add \", #primary\"."
972
- msgstr "ઉદાહરણો: તમારી થીમ વર્ગ પોસ્ટ સાથે DIV પોસ્ટ આવરણમાં સામગ્રી નહિં, તો \"div.post \" આ કિંમત બદલો. તમે ને પ્રાથમિક સાથે સાઇડબારમાં છબીઓ શામેલ કરવા માંગો છો, તો \", # પ્રાથમિક DIV\" HTML5 થીમ્સ માટે અથવા \"કોરે # પ્રાથમિક \" ઉમેરો. તમે માત્ર મળીને એક WordPress ગેલેરીમાં જૂથ છબીઓ માંગો છો, તો \"div.gallery \" વાપરો. તમે ને પ્રાથમિક સાથે સાઇડબારમાં છબીઓ શામેલ કરવા માંગો છો, તો \", # પ્રાથમિક \" ઉમેરો"
973
-
974
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:253
975
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:254
976
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:255
977
- msgid "Gallery Auto-rotation"
978
- msgstr "ગેલેરી સ્વતઃ રોટેશન"
979
-
980
- #: ../../easy-fancybox-pro/easy-fancybox-pro.php:257
981
- msgid "Auto-rotation uses a fixed 6, 8 or 12 second pause per image."
982
- msgstr "સ્વ રોટેશન ઇમેજ દીઠ એક નિશ્ચિત 6, 8, અથવા 12 સેકન્ડ વિરામ વાપરે છે."
983
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/instructions.txt DELETED
@@ -1,28 +0,0 @@
1
- === Easy FancyBox ===
2
-
3
- == Translation ==
4
-
5
- 1. Install PoEdit on your computer.
6
-
7
- 2. Go to this plugins /languages/ directory.
8
-
9
- 3. If there is no .po file that corresponds with your language yet, rename the template translation database easy-fancybox-xx_XX.po by replacing the xx with your language code and XX with your country code.
10
-
11
- 4. Open the .po file of your language with PoEdit.
12
-
13
- 5. Go to Edit > Preferences and on the tab Editor check the option to compile a .mo database on save automatically. Close with OK.
14
-
15
- 6. Go to Catalog > Settings and set your name, e-mail address, language and country. Close with OK.
16
-
17
- 7. Go to Catalog > Update from POT-file and select the main easy-fancybox.pot file. Then accept all new and removed translation strings with OK.
18
-
19
- 8. Now go ahead and start translating all the texts listed in PoEdit.
20
-
21
- 9. When done, go to File > Save to Save.
22
-
23
- 10. Upload the automatically created easy-fancybox-xx_XX.mo database file (where xx_XX should now be your language and country code) to the plugins /languages/ directory on your WordPress site.
24
-
25
- 11. After verifying the translations work on your site, send the .mo file and, if you're willing to share it, your original .po file to ravanhagen@gmail.com and don't forget to tell me how and with what link you would like to be mentioned in the credits!
26
-
27
-
28
- Thanks for sharing your translation :)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,66 +1,52 @@
1
  === Easy FancyBox ===
2
  Contributors: RavanH
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox&item_number=1%2e3%2e4%2e9&no_shipping=0&tax=0&charset=UTF%2d8&currency_code=EUR
4
- Tags: fancybox, lightbox, gallery, image, photo, video, flash, nextgen, overlay, youtube, vimeo, dailymotion, pdf, svg, iframe, swf, jquery
5
- Requires at least: 3.3
6
- Tested up to: 4.0
7
- Stable tag: 1.5.6
8
 
9
- Easily enable the FancyBox jQuery extension on just about all media links. Multi-Site compatible. Supports iFrame and Flash movies.
10
 
11
  == Description ==
12
 
13
  Easy FancyBox plugin for WordPress websites gives you a flexible and aesthetic lightbox solution for just about all media links on your website. Easy FancyBox uses the packed FancyBox jQuery extension and is WP 3+ Multi-Site compatible. After activation you can find a new section **FancyBox** on your **Settings > Media** admin page where you can manage the plugins options.
14
 
15
- After activation, all links to **JPG, GIF and PNG images** are automatically opened in the [FancyBox](http://fancybox.net/) Mac-style lightbox that floats over the web page. Most options available can be managed with this plugin along with some extra features.
16
 
17
- **Also supports:**
 
 
 
 
 
 
18
 
19
- - All other image types _and_ image maps
20
- - WordPress Galleries
21
- - NextGEN galleries (see FAQs for instructions)
22
- - Youtube galleries via Youtube Simple Gallery plugin (see FAQs for instructions)
23
- - SWF (Flash) movies
24
- - SVG media images (thanks to Simon Maillard)
25
- - Links to **Youtube**, **Vimeo** _and_ **Dailmotion**
26
- - Hidden inline content
27
- - iFrames
28
- - PDF files
29
- - Auto-popup on page load
30
- - links inside Gravity Forms in ajax mode
31
 
32
- For **advanced options** and **priority support**, there is a **[Pro extension](http://status301.net/easy-fancybox-pro-extension/)** available.
33
-
34
- See [Screenshots](http://wordpress.org/plugins/easy-fancybox/screenshots/) for an impression on how images and YouTube movies will be presented on your site as soon as you have installed and (network) activated this simple plugin.
35
-
36
- See [FAQ's](http://wordpress.org/plugins/easy-fancybox/faq/) for instructions to manage YouTube, Dailymotion and Vimeo movies (and similar services) and tips to make inline content display in a FancyBox overlay. Subscribe to [Status301](http://status301.net/tag/easy-fancybox/feed/) for tips on how to get a high degree of control over what will be shown in a FancyBox overlay on your website.
37
 
38
  Get support on the [Easy FancyBox web page](http://status301.net/wordpress-plugins/easy-fancybox/) or [WordPress forum](http://wordpress.org/tags/easy-fancybox?forum_id=10).
39
 
40
  Visit [FancyBox](http://fancybox.net/) for more information, examples and the FancyBox Support Forum. Please consider a DONATION for continued development of the FancyBox project.
41
 
42
  **Recommended:**
43
- - For increased site performance, simply install and activate the plugin [Use Google Libraries](http://wordpress.org/plugins/use-google-libraries/) to load jQuery from Googles CDN.
44
 
45
  = Translators =
46
 
47
- - **Czech** * Eldenroot (version 1.5.5)
48
- - **Dutch** * R.A. van Hagen, http://status301.net (version 1.5.6)
49
- - **French** * Emmanuel Maillard, (version 1.5.5)
50
- - **Gujarati** * Apoto Team, http://www.apoto.com (version 1.5.0)
51
- - **Hindi** * Outshine Solutions, http://outshinesolutions.com (version 1.3.4.9)
52
- - **Indonesian** * Nasrulhaq Muiz, http://al-badar.net (version 1.5.5)
53
- - **Lithuanian** * Vincent G, http://www.host1free.com (version 1.3.4.9)
54
- - **Persian** * Ali Akbar Kaviani, http://www.wiki10.net (version 1.5.2)
55
- - **Polish** * Kamil Szymański, (version 1.3.4.9)
56
- - **Romanian** * Web Geek Sciense, http://webhostinggeeks.com/ (version 1.3.4.9)
57
- - **Serbo-Croatian** Andrijana Nikolic, http://webhostinggeeks.com/wordpresshosting.html (version 1.5.2) + translation of this page on http://science.webhostinggeeks.com/easy-fancybox
58
- - **Slovak** Branco Radenovich, http://webhostinggeeks.com/blog/ (version: 1.3.4.9)
59
- - **Spanish** * David Pérez, http://www.closemarketing.es (version 1.3.4.9)
60
- - **Turkish** * Hakan Er, http://hakanertr.wordpress.com/ (version: 1.5.2)
61
- - **Ukrainian** * Cmd Software, http://www.cmd-soft.com (version: 1.3.4.9)
62
 
63
-
64
  == Installation ==
65
 
66
  = Wordpress =
@@ -103,19 +89,22 @@ Basically, it is a fancy way of presenting images, movies, portable documents an
103
 
104
  The same version as this plugin has. I aim to keep close pace to FancyBox upgrades and always move to the latest and greates version. Please, let me know if I'm lagging behind and missed an upgrade!
105
 
 
106
  = I installed the plugin. What now? =
107
 
108
- First, make sure that image thumbnails in your posts and pages are linked to their full size counterpart directly. Open any post with thumbnail images in it for editing and select the first thumbnail. Click the **Edit Image** button that appears and choose **Link To: Media File**. From now on, clicking that thumbnail should open the full size version in FancyBox.
 
 
109
 
110
- The same thing goes for WordPress Galleries. Choose **Link To: Media File** when inserting a gallery tag.
111
 
112
  = I want to change something. Where is the settings page? =
113
 
114
- There is no new settings page but there are a few options you can change. You will find a new **FancyBox** section on **Settings > Media**. To see the default, check out the example under [Screenshots](http://wordpress.org/plugins/easy-fancybox/screenshots/) ...
 
115
 
116
  = Help! It does not work... =
117
 
118
- Please follow the trouble shooting steps on [Other Notes](http://wordpress.org/plugins/easy-fancybox/other_notes/) to determine the cause. If that fails, ask for support on the [Easy FancyBox WordPress forum](http://wordpress.org/tags/easy-fancybox) or go to the [development site](http://status301.net/wordpress-plugins/easy-fancybox/)
119
  &nbsp;
120
 
121
 
@@ -123,26 +112,12 @@ Please follow the trouble shooting steps on [Other Notes](http://wordpress.org/p
123
 
124
  = Will a WordPress generated gallery be displayed in a FancyBox overlay? =
125
 
126
- Yes, but _only_ if you used the option **Link To: Media File** when inserting the gallery! The gallery quicktag/shortcode should look like `[ gallery link="file" ]`.
127
-
128
- = The lightbox does not look good on mobile devices. What can I do about that? =
129
-
130
- The FancyBox 1.3.4 script that is used in this plugin was not developed with mobile devices in mind. The only way around this issue is currently to disable FancyBox for small screen sizes. You can do this by adding a text widget in your sidebar with the following code snippet.
131
-
132
- `
133
- <script type="text/javascript">
134
- var pixelRatio = window.devicePixelRatio || 1;
135
- if(window.innerWidth/pixelRatio < 641 ) {
136
- easy_fancybox_handler = null;
137
- };
138
- </script>
139
- `
140
 
141
- Tweak the value 641 to target other screen sizes.
142
 
143
  = Can I make a slideshow from my gallery? =
144
 
145
- In the [Pro extension](http://status301.net/easy-fancybox-pro-extension/), there is an Advanced option called "Gallery Auto-rotation" for that.
146
 
147
 
148
  = Can I exclude images or other links from auto-attribution? =
@@ -152,17 +127,13 @@ Yes. All links with class **nofancybox** that would normally get auto-enabled, w
152
  `<a href="url/to/fullimg.jpg" class="nofancybox"><img src="url/to/thumbnail.jpg" /></a>`
153
 
154
 
155
- = Can NextGEN Gallery work with Easy FancyBox ? =
156
-
157
- NetxGEN has its own built in FancyBox version along with a choice of other lightbox scripts but if you prefer to use Easy FancyBox (because of better customisability) then you need to take some steps to make the two plugins compatible.
158
 
159
- 1. Go to your Settings > Media admin page and switch OFF the FancyBox Auto-gallery option;
160
- 1. Go to Gallery > Other Options and set the Lightbox Effects option to "No lightbox" and click on Show Advanced Settings;
161
- 1. fill the Code field with
162
  `
163
  class="fancybox" rel="%GALLERY_NAME%"
164
  `
165
- 1. Leave the other fields empty and save your settings.
166
 
167
  = Can I use ONE thumbnail to open a complete gallery ? =
168
 
@@ -192,52 +163,34 @@ General steps:
192
 
193
  **A.** Place the shortcode of your choice in your page/post content.
194
 
195
- **B.** Configure NextGen on **Gallery > Gallery Settings** to Display galleries as "NextGEN Basic Thumbnails" and then under the NextGEN Basic Thumbnails to at least have the following options set like this:
196
 
197
  1. Number of images per page: 1
198
- 1. Use imagebrowser effect: No
199
- 1. Add hidden images: Yes
 
 
200
 
201
- **C.** Optional: add the following new CSS rule to your theme stylesheet (or install [Custom CSS](http://wordpress.org/plugins/safecss/) or [Jetpack](http://wordpress.org/plugins/jetpack/) and add it on the new Appearance > Edit CSS admin page) to hide the page browsing links below the gallery thumbnail.
202
  `
203
  .ngg-navigation {
204
  display:none;
205
  }
206
  `
207
 
208
- = Can I link a NextGEN thumbnail to a Youtube movie in FancyBox? =
209
-
210
- User Mark Szoldan shared a neat trick how to do this:
211
-
212
- 1. Follow the instructions to make Easy FancyBox work smoothly with NextGEN above and make sure it all works correctly for normal thumbnails linked to their full-size version.
213
- 1. Then give the image that you want to link to a Youtube movie the URL to the Youtube page as title.
214
- 1. Finally paste the code below into a text widget that will live in your sidebar or footer bar, or you can hard-code it into your theme but make sure it come before the `wp_footer()` call...
215
-
216
- `
217
- <script type="text/javascript">
218
- jQuery('.fancybox [title*="www.youtube.com"]').each(function() {
219
- var title = jQuery(this).attr('title');
220
- var desc = jQuery(this).parent().attr('title');
221
- jQuery(this).attr('title', desc);
222
- jQuery(this).parent().attr('href', title);
223
- });
224
- </script>
225
- `
226
-
227
- This script snippet will scan the image titles and if it finds a Youtube URL there, it will replace the links href attribute value accordingly.
228
 
229
  = Can I create a gallery of Youtube thumbnails which open in FancyBox? =
230
 
231
  You could do this manually by uploading individual thumbnails that you can retrieve by using the unique movie ID in these URLs for three different sizes:
232
  `
233
- http://i4.ytimg.com/vi/UNIQUE-MOVIE-ID/default.jpg
234
- http://i4.ytimg.com/vi/UNIQUE-MOVIE-ID/mqdefault.jpg
235
- http://i4.ytimg.com/vi/UNIQUE-MOVIE-ID/hqdefault.jpg
236
  `
237
 
238
  But an easier method is this one, shared by Shashank Shekhar (thanks!) :
239
 
240
- To create Youtube thumbnail galleries, install http://wordpress.org/plugins/youtube-simplegallery/ and set the 'Effect' option to fancybox. Then disable Youtube autodetection on Settings > Media.
241
 
242
 
243
  = Can I display web pages or HTML files in a FancyBox overlay? =
@@ -263,11 +216,7 @@ If you do'nt have *Auto-detect* checked under **SWF** on Settings > Media admin
263
 
264
  = How do I show content with different sizes? =
265
 
266
- FancyBox tries to detect the size of the conten automatically but if it can not find a size, it will default to the settings for that particular content type as set on the Settings > Media page.
267
-
268
- You can manually override this by defining the width and height wrapped in curly brases in the class attribute of the link itself. Make sure the option "Inlcude the Metadata jQuery extension script..." under FancyBox | Links on Settings > Media is enabled.
269
-
270
- For example, a Flash movie with different size:
271
 
272
  `
273
  <a class="fancybox-swf {width:1024,height:675}" href="link-to-your-swf"></a>
@@ -276,9 +225,9 @@ For example, a Flash movie with different size:
276
 
277
  = Can I play YouTube, Dailymotion and Vimeo movies in a FancyBox overlay? =
278
 
279
- Yes. Simply create a link using the Share URL (the full Page URL, the Short URL with or without options like HD etc.) to the YouTube/Vimeo/Dailymotion page in your post content. If you have Auto-detect enabled, the plugin will take care of the rest for you! :)
280
 
281
- If you have disabled Auto-detection, give the link a class attribute like `class="fancybox-youtube"` for Youtube, `class="fancybox-vimeo"` for Vimeo and `class="fancybox-dailymotion"` for Dailymotion, to manually enable FancyBox for it.
282
 
283
  Both YouTube and Vimeo movies can be made to play immediately after opening by adding the paramer `autoplay=1` to the URL. For example, a short-url YouTube link that should play in HD mode, have the full screen button and auto-start on open, would look like:
284
  `
@@ -291,14 +240,9 @@ Both YouTube and Vimeo movies can be made to play immediately after opening by a
291
  Append `&fs=1` to your YouTube share URL.
292
 
293
 
294
- = Can I show a Youtube playlist in FancyBox? =
295
-
296
- Yes, just go to Youtube page of any movie that's in the playlist and use the Share button to get the share URL just like with single movies, but this time place a checkmark at the 'Share with playlist' option.
297
-
298
-
299
  = The flash movie in the overlay shows BELOW some other flash content that is on the same page! =
300
 
301
- Make sure the OTHER flash content as a **wmode** set, preferably to 'opaque' or else 'transparent' but never 'window' or missing. For example, if your embedded object looks something like:
302
  `
303
  <object type="application/x-shockwave-flash" width="200" height="300" data="...url...">
304
  <param name="allowfullscreen" value="true" />
@@ -315,44 +259,25 @@ just add `<param name="wmode" value="opaque" />` among the other parameters. Or
315
  <embed src="...url..." type="application/x-shockwave-flash" width="640" height="385" allowscriptaccess="always" allowfullscreen="true" wmode="window"></embed>
316
  </object>
317
  `
318
- just change that `wmode="window"` to `wmode="opaque"` or add the attribute if it is missing.
319
-
320
 
321
- = How can I display INLINE content in a FancyBox overlay ? =
322
 
323
- First go to your **Settings > Media** admin page and activate the **Inline** option under the FancyBox settings. After saving, the amin page will show a new section called Inline where you can tweak its parameters.
324
 
325
- Next, open your page/post for editing in the HTML tab and wrap the inline content in
326
  `
327
- <div style="display:none" class="fancybox-hidden"><div id="fancyboxID-1" class="hentry" style="width:460px;height:380px;">
328
  ...inline content here...
329
  </div></div>
330
  `
331
 
332
- Then place a FancyBox link tag with class attribute "fancybox-inline" anywhere else in the post/page content that will point to the inline content like
333
  `
334
- <a href="#fancyboxID-1" class="fancybox-inline">Read my inline content</a>
335
  `
336
 
337
  NOTE: The wrapping divs ID *must* be unique and it must correspond with the links HREF with a # in front of it. When using the above example for more FancyBox inline content (hidden div + opening link) combinations on one page, give the second one the ID fancyboxID-2 and so on...
338
 
339
- NOTE 2: If you find that the inline contect shown in FancyBox is styled very different than the rests of the page content, then you might want to change the div tag attribute `class="hentry"` to something else that matches your theme. Find out what class name is used for the main content on your site and re-use that.
340
-
341
-
342
- = Can I display a contact form in FancyBox? =
343
-
344
- Yes. There are several methods imaginable but the easiest would be to use the Inline method. The inline content can be a shortcode like in this example using Contact Forms 7 and Easy FancyBox:
345
-
346
- `
347
- <a href="#contact_form_pop" class="fancybox">Contact Us</a>
348
-
349
- <div style="display:none" class="fancybox-hidden">
350
- <div id="contact_form_pop" class="hentry" style="width:460px;height:380px;">
351
- [contact-form-7 id="87" title="Contact form 1"]
352
- </div>
353
- </div>
354
- `
355
- Where you replace the shortcode (between the [ and ] characters) with the one given by the plugin. It can also work with shortcode by other plugins like Jetpack's Contact Form module. Change the class attribute to reflect the class used for the div that wraps your post content to have any form CSS style rules that are limited to post content, be applied to the inline content inside FancyBox.
356
 
357
  = Can I make an image or hidden content to pop up in FancyBox on page load? =
358
 
@@ -383,36 +308,29 @@ Yes. Designed to work with **Network Activate** and does not require manual acti
383
 
384
  == Known Issues ==
385
 
386
- = General =
387
-
388
- - **Outbound links or Downloads tracking** in some of the stats plugins can interfere with FancyBox.
389
- - All plugins and themes that do not use `wp-enqueue-script` properly to include script libraries or extension files. Continue reading to see if you are using one of the know ones or follow the troubleshooting steps to find out what is conflicting on your site.
390
- - All themes that are missing one or both of the obligatory `<?php wp_head(); ?>` in the header.php and `<?php wp_footer(); ?>` call just before the closing `</body>` tag in their footer.php template or elsewhere.
391
-
392
  = Plugin conflicts =
393
 
394
- - **jQuery Updater** moves jQuery to version 2+ wich is incompatible.
395
- - **All in One SEO Pack** and **Analytics for WordPress** with outbound link tracking enabled. Disable that feature.
396
  - **Better WP Security** randomly changes version numbers in linked file URLs, breaking the FancyBox stylesheet. Disable the option "Display random version number to all non-administrative users" in the Better WP Security settings.
397
  - By default **Google Analytics for WordPress** converts links like `href="#anyID"` to `href="http://yoursite.url/page/#anyID"`, disabling inline content shown in FancyBox.
398
  - **Wordpress Firewall 2** blocks access to image files needed for porper display of the FancyBox overlay in older IE and other non-css3 browsers.
399
  - **WordPress Amazon Associate**: A script provided by Amazon and the FancyBox script are incompatible. Disabling _Product Preview_ in the **WP - Amazon > Settings** page should work around the issue.
400
  - **WP Slimstat** plugin interferes with the Easy FancyBox script for YouTube url conversion. When clicking a Youtube link, the movie opens in an overlay as it is supposed to but immediately after that, the complete page gets redirected to the original YouTube page. Adding a `class="noslimstat"` to the link is reported to work around the issue.
401
  - When using **WP-Minify**, the javascript files like `fancybox/jquery.fancybox-X.X.X.pack.js` and others need to be excluded from minification.
402
- - When using **W3 Total Cache**, minification needs to be switched off. You can try to run **WP-Minify** alongside W3TC to be able to exclude fancybox files (as suggested above) ans still have page speed benefit from minification.
403
- - Both the **uBillBoard** and **Camera slideshow** have their own easing script hard-coded which conflicts with the one in Easy FancyBox. The only way around the conflict is to set both the Easing In and Easing Out options on your Settings > Media page to **Swing**.
404
  - **WP Supersized** uses the Animate Enhanced jQuery extension which causes a conflict with the Easing extension used by FancyBox resulting in a 0px sized lightbox frame. Plus some kind of positioning issue with auto-centering. Sridhar Katakam wrote about a work-around on http://websitesetuppro.com/getting-easy-fancybox-to-work-properly-when-wp-supersized-is-active/.
405
 
 
406
  = Theme conflicts =
407
 
408
- - **Twenty Eleven** uses a very high stacking order (z-index: 9999) for the top image and menu div, resulting in FancyBox content being partially hidden under the page header. Work-around: Use the plugin [Custom CSS](http://wordpress.org/plugins/safecss/) or [Jetpack](http://wordpress.org/plugins/jetpack/) and add on the new Appearance > Edit CSS admin page the rule:
409
  `
410
  #branding {
411
  z-index:999;
412
  }
413
  `
414
- - Older versions of **Elegant Themes** have FancyBox integrated in a hard-coded way, making them incompatible with Easy FancyBox. In the latest versions of these themes, there is an option to disable the included FancyBox. Use this option to make your theme compatible with Easy FancyBox :)
415
- - The **Mystique** theme has two option called "Lightbox" and "Optimize website for faster loading" that will break Easy FancyBox. Disable both in Mystique's options > Advanced.
416
  - **Imbalance** and other themes that uses the Photo Galleria jQuery extension: turn of the JSGallery option.
417
  - Themes like **Envisioned**, **Chameleon** and many others have FancyBox baked in. There is no solution other than stripping the theme of all FancyBox related code or disable the plugin and use the theme provided version...
418
  - Themes based on the **Thesis** framework might see issues in IE 8, for which [a hack has been proposed](http://voidzonemedia.com/solutions/thesis-ie8-remove-ie7-emulation/)
@@ -420,7 +338,8 @@ z-index:999;
420
 
421
  = Other =
422
 
423
- - When showing an iframe as inline content in FancyBox -- not advised, use fancybox-iframe instead! -- the iframe will become blank after opening and closing it. The solution is to link directly to the iframe source and use `class="fancybox-iframe"` instead.
 
424
  - Embedded flash content that has no wmode or wmode 'window', is displayed above the overlay and other javascript rendered content like dropdown menus. WordPress does NOT check for missing wmode in oEmbed generated embed code. Since version 1.3.4.5, the missing wmode is added by this plugin for WP (auto-)embeds but not for other user-embedded content. Please make sure you set the wmode parameter to 'opaque' (best performance) or 'transparent' (only when you need transparency) for your embedded content.
425
 
426
 
@@ -456,20 +375,6 @@ If you still do not get to see your images in FancyBox, ask on the [Easy FancyBo
456
  1. Check if your theme loads another or the same lightbox script or any other of the needed jQuery extensions like jquery.easing or jquery.mousewheel. Look for references to Thickbox, Prettyphoto, Lightbox2, Colorbox or FancyBox script files or code. These are very likely to cause the incompatibility and you will have to either find a setting in the other plugin to switch OFF the use of the conflicting script (possible in NextGEN for example, see under Advanced below) or choose between the two conflicting plugins.
457
 
458
 
459
- == Translation ==
460
-
461
- 1. Install PoEdit on your computer.
462
- 1. Go to this plugins /languages/ directory.
463
- 1. If there is no .po file that corresponds with your language yet, rename the template translation database easy-fancybox-xx_XX.po by replacing the xx with your language code and XX with your country code.
464
- 1. Open the .po file of your language with PoEdit.
465
- 1. Go to Edit > Preferences and on the tab Editor check the option to compile a .mo database on save automatically. Close with OK.
466
- 1. Go to Catalog > Settings and set your name, e-mail address, language and country. Close with OK.
467
- 1. Go to Catalog > Update from POT-file and select the main easy-fancybox.pot file. Then accept all new and removed translation strings with OK.
468
- 1. Now go ahead and start translating all the texts listed in PoEdit.
469
- 1. When done, go to File > Save to Save.
470
- 1. Upload the automatically created easy-fancybox-xx_XX.mo database file (where xx_XX should now be your language and country code) to the plugins /languages/ directory on your WordPress site.
471
- 1. After verifying the translations work on your site, send the .mo file and, if you're willing to share it, your original .po file to ravanhagen@gmail.com and don't forget to tell me how and with what link you would like to be mentioned in the credits!
472
-
473
 
474
  == Screenshots ==
475
 
@@ -479,64 +384,15 @@ If you still do not get to see your images in FancyBox, ask on the [Easy FancyBo
479
 
480
  == Upgrade Notice ==
481
 
482
- = 1.5.6 =
483
- Bugfix release.
484
 
485
  == Changelog ==
486
 
487
- = 1.5.6 =
488
- * iPad positioning patch
489
- * Don't unregister scripts that are not ours even for conflict prevention
490
- * box-sizing: border-box issue in Firefox fixed
491
- * Allow mousewheel scrolling page in the background again
492
-
493
- = 1.5.5 =
494
- * Prevent mousewheel scrolling page in the background
495
- * New stylesheet IE alphaimageloader path fix approach
496
- * Czech translation added
497
- * Updated Indonesian translation
498
-
499
- = 1.5.2 =
500
- * BUGFIX: easy_fancybox_handler() in combo with trigger('click') causes Uncaught Exception script error
501
-
502
- = 1.5.1 =
503
- * FIX: jQuery 1.9+ compatibility
504
- * Dropping support for gForms again -- "Cannot convert 'c' to object" error in combinaition with some older gForms version :(
505
- * NEW: support for Infinite Scroll by Jetpack
506
-
507
- = 1.5.0 =
508
- * FIX: CSS3 box-sizing issue (Twenty Thirteen) misplacing close button
509
- * NEW: Added SVG support. Thanks to Simon Maillard.
510
- * Pre WP 3.6: jQuery 1.9+ compatibility
511
- * JQuery Mousewheel extension update to 3.1.3
512
- * NEW: Elegant Themes compatibility
513
- * Some small Touch device compatibility improvement hacks to the 1.3.4 script
514
- * Major plugin overhaul: Class implementation
515
- * NEW: Disable hide on overlay click
516
- * NEW: Allow automatic resizing to large image size set on Settings > Media during media upload via the hidden WordPress function media_upload_max_image_resize() TODO test more!
517
- * NEW Options: iFrame scrolling, autoScale, key navigation/close, cyclic galleries
518
- * Metadata custom parameters and Mousewheel gallery scrolling scripts optional
519
- * Basic RTL languages/text direction support (gallery navigation inversion, title position)
520
- * BUGFIX: https in stylesheet on Windows IIS
521
- * Improved W3TC compatibility: query string issue
522
- * Gravity Forms in ajax mode compatibility
523
- * Use jQuery's bind('ready') for better ajax content compatibility
524
- * Dynamic stylesheet response headers to allow browser caching
525
- * Minified version of jquery.metadata.js
526
- * Auto-detect on image map areas
527
- * nofancybox class for menu items
528
- * SECURITY: Settings sanitization
529
- * BUGFIX: load_textdomain firing after the main settings array is loaded, leaving text strings in it untranslated.
530
- * BUGFIX: missing signs in Youtube url regular expression
531
- * BUGFIX: unquoted rel attribute selectors in jquery.fancybox-1.3.4.js
532
- * BUGFIX: broken url path in IE stylesheet when missing $_SERVER['SERVER_NAME']
533
- * BUGFIX: easing extension not needed on linear easing
534
-
535
  = 1.3.4.9 =
536
  * NEW: Lithuanian translation
537
  * NEW: Hindi translation
538
- * NEW: Indonasian translation
539
- * NEW: Romanian translation
540
  * NEW: Polish translation
541
  * NEW: Spanish translation
542
  * NEW: jQuery Metadata support
@@ -575,7 +431,7 @@ Bugfix release.
575
  = 1.3.3.4.2 =
576
  * BIGFIX: iframe width
577
  * BIGFIX: image overlay size in Google Chrome browser issue (FancyBox 1.3.3)
578
- * BIGFIX: fancybox-swf
579
 
580
  = 1.3.3.4 =
581
  * FancyBox script version 1.3.3 (2010/11/4 - http://fancybox.net/changelog/)
1
  === Easy FancyBox ===
2
  Contributors: RavanH
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox&item_number=1%2e3%2e4%2e9&no_shipping=0&tax=0&charset=UTF%2d8&currency_code=EUR
4
+ Tags: fancybox, lightbox, gallery, image, photo, video, flash, nextgen, overlay, youtube, vimeo, dailymotion, pdf, iframe, swf, jquery
5
+ Requires at least: 2.9
6
+ Tested up to: 3.5
7
+ Stable tag: 1.3.4.9
8
 
9
+ Easily enable the FancyBox 1.3.4 jQuery extension on just about all media links. Multi-Site compatible. Supports iFrame and Flash movies.
10
 
11
  == Description ==
12
 
13
  Easy FancyBox plugin for WordPress websites gives you a flexible and aesthetic lightbox solution for just about all media links on your website. Easy FancyBox uses the packed FancyBox jQuery extension and is WP 3+ Multi-Site compatible. After activation you can find a new section **FancyBox** on your **Settings > Media** admin page where you can manage the plugins options.
14
 
15
+ **Supports:**
16
 
17
+ - images (.jpg/.gif/.png and others) _and_ image maps
18
+ - WordPress Galleries
19
+ - PDF and SWF (Flash) files
20
+ - movie sites like **Youtube**, **Vimeo** _and_ **Dailmotion**
21
+ - hidden inline content
22
+ - iframes
23
+ - popup (auto-activate) on page load
24
 
25
+ See [Screenshots](http://wordpress.org/extend/plugins/easy-fancybox/screenshots/) for an impression on how images and YouTube movies will be presented on your site as soon as you have installed and (network) activated this simple plugin.
 
 
 
 
 
 
 
 
 
 
 
26
 
27
+ See [FAQ's](http://wordpress.org/extend/plugins/easy-fancybox/faq/) for instructions to manage YouTube, Dailymotion and Vimeo movies (and similar services) and tips to make inline content display in a FancyBox overlay. Subscribe to [Status301](http://status301.net/tag/easy-fancybox/feed/) for tips on how to get a high degree of control over what will be shown in a FancyBox overlay on your website.
 
 
 
 
28
 
29
  Get support on the [Easy FancyBox web page](http://status301.net/wordpress-plugins/easy-fancybox/) or [WordPress forum](http://wordpress.org/tags/easy-fancybox?forum_id=10).
30
 
31
  Visit [FancyBox](http://fancybox.net/) for more information, examples and the FancyBox Support Forum. Please consider a DONATION for continued development of the FancyBox project.
32
 
33
  **Recommended:**
34
+ - For increased performance, simply install and activate the plugin [Use Google Libraries](http://wordpress.org/extend/plugins/use-google-libraries/) to load jQuery from Googles CDN.
35
 
36
  = Translators =
37
 
38
+ - **Dutch** * Author: [R.A. van Hagen](http://status301.net/), for version 1.3.4.9
39
+ - **French** * Author: Emmanuel Maillard (version 1.3.4.9)
40
+ - **Hindi** * Author: [Outshine Solutions](http://outshinesolutions.com/) (version 1.3.4.9)
41
+ - **Indonesian** * Author: [Nasrulhaq Muiz](http://al-badar.net) (version 1.3.4.9)
42
+ - **Lithuanian** * Author: [Vincent G](http://www.host1free.com/) (version 1.3.4.9)
43
+ - **Polish** * Author: Kamil Szymański (version: 1.3.4.9)
44
+ - **Romanian** * Author: [Web Geek Sciense](http://webhostinggeeks.com/) (version 1.3.4.9)
45
+ - **Slovak** Author: [Branco Radenovich (WebHostingGeeks.com)](http://webhostinggeeks.com/blog/) (version: 1.3.4.9)
46
+ - **Spanish** * Author: [David Pérez](http://www.closemarketing.es/) (version: 1.3.4.9)
47
+ - **Turkish** * Author: [Hakan Er](http://hakanertr.wordpress.com/) (version: 1.3.4.9)
48
+ - **Ukrainian** * Author: [Cmd Software](http://www.cmd-soft.com) (version: 1.3.4.9)
 
 
 
 
49
 
 
50
  == Installation ==
51
 
52
  = Wordpress =
89
 
90
  The same version as this plugin has. I aim to keep close pace to FancyBox upgrades and always move to the latest and greates version. Please, let me know if I'm lagging behind and missed an upgrade!
91
 
92
+
93
  = I installed the plugin. What now? =
94
 
95
+ First, make sure that image thumbnails in your posts and pages are linked to their full size counterpart directly. Open any post with thumbnail images in it for editing and select the first thumbnail. Click the **Edit Image** button that appears and choose **Link to Image**. From now on, clicking that thumbnail should open the full size version in FancyBox.
96
+
97
+ The same thing goes for WordPress Galleries. Choose **Link to: File** when inserting a gallery tag.
98
 
 
99
 
100
  = I want to change something. Where is the settings page? =
101
 
102
+ There is no new settings page but there are a few options you can change. You will find a new **FancyBox** section on **Settings > Media**. To see the default, check out the example under [Screenshots](http://wordpress.org/extend/plugins/easy-fancybox/screenshots/) ...
103
+
104
 
105
  = Help! It does not work... =
106
 
107
+ Please follow the trouble shooting steps on [Other Notes](http://wordpress.org/extend/plugins/easy-fancybox/other_notes/) to determine the cause. If that fails, ask for support on the [Easy FancyBox WordPress forum](http://wordpress.org/tags/easy-fancybox) or go to the [development site](http://status301.net/wordpress-plugins/easy-fancybox/)
108
  &nbsp;
109
 
110
 
112
 
113
  = Will a WordPress generated gallery be displayed in a FancyBox overlay? =
114
 
115
+ Yes, but _only_ if you used the option **Link thumbnails to: Image File** when inserting the gallery! The gallery quicktag/shortcode should look something like `[gallery link="file"]`.
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
 
117
 
118
  = Can I make a slideshow from my gallery? =
119
 
120
+ Yes. There is an Advanced option called "Gallery Auto-rotation" for that.
121
 
122
 
123
  = Can I exclude images or other links from auto-attribution? =
127
  `<a href="url/to/fullimg.jpg" class="nofancybox"><img src="url/to/thumbnail.jpg" /></a>`
128
 
129
 
130
+ = Will a NextGen gallery be displayed in a FancyBox overlay ? =
 
 
131
 
132
+ It *can* be. Switch OFF the FancyBox Auto-gallery feature, then set the NextGen option "JavaScript Thumbnail effect" to "Custom" and fill the code line field with
 
 
133
  `
134
  class="fancybox" rel="%GALLERY_NAME%"
135
  `
136
+
137
 
138
  = Can I use ONE thumbnail to open a complete gallery ? =
139
 
163
 
164
  **A.** Place the shortcode of your choice in your page/post content.
165
 
166
+ **B.** Configure NextGen on **Gallery > Options > Gallery settings** to at least have the following options set like this:
167
 
168
  1. Number of images per page: 1
169
+ 1. Integrate slideshow: unchecked (optional but advised: use auto-rotation in the FancyBox settings instead)
170
+ 1. Show first: Thumbnails
171
+ 1. Show ImageBrowser: unchecked
172
+ 1. Add hidden images: checked
173
 
174
+ **C.** Optional: install [Custom CSS](http://wordpress.org/extend/plugins/safecss/) and add a new CSS rule to hide the page browsing links below the gallery thumbnail:
175
  `
176
  .ngg-navigation {
177
  display:none;
178
  }
179
  `
180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
 
182
  = Can I create a gallery of Youtube thumbnails which open in FancyBox? =
183
 
184
  You could do this manually by uploading individual thumbnails that you can retrieve by using the unique movie ID in these URLs for three different sizes:
185
  `
186
+ http://i4.ytimg.com/vi/...UNIQUE-MOVIE-ID.../default.jpg
187
+ http://i4.ytimg.com/vi/...UNIQUE-MOVIE-ID.../mqdefault.jpg
188
+ http://i4.ytimg.com/vi/...UNIQUE-MOVIE-ID.../hqdefault.jpg
189
  `
190
 
191
  But an easier method is this one, shared by Shashank Shekhar (thanks!) :
192
 
193
+ To create Youtube thumbnail galleries, install http://wordpress.org/extend/plugins/youtube-simplegallery/ and set the 'Effect' option to fancybox. Then disable Youtube autodetection on Settings > Media.
194
 
195
 
196
  = Can I display web pages or HTML files in a FancyBox overlay? =
216
 
217
  = How do I show content with different sizes? =
218
 
219
+ FancyBox tries to detect the size of the conten automatically but if it can not find a size, it will default to the settings for that particular content type as set on the Settings > Media page. You can manually override this by defining the width and height wrapped in curly brases in the class attribute of the link itself. For example, a Flash movie with different size:
 
 
 
 
220
 
221
  `
222
  <a class="fancybox-swf {width:1024,height:675}" href="link-to-your-swf"></a>
225
 
226
  = Can I play YouTube, Dailymotion and Vimeo movies in a FancyBox overlay? =
227
 
228
+ Yes. Just let the plugin auto-detect and auto-enable it for you! :)
229
 
230
+ Place the Share URL (the full Page URL, the Short URL or even with the HD option) to the YouTube/Vimeo/Dailymotion page in your content. If you have disabled Auto-detection, give the link a class attribute like `class="fancybox-youtube"` for Youtube, `class="fancybox-vimeo"` for Vimeo and `class="fancybox-dailymotion"` for Dailymotion, to manually enable FancyBox for it.
231
 
232
  Both YouTube and Vimeo movies can be made to play immediately after opening by adding the paramer `autoplay=1` to the URL. For example, a short-url YouTube link that should play in HD mode, have the full screen button and auto-start on open, would look like:
233
  `
240
  Append `&fs=1` to your YouTube share URL.
241
 
242
 
 
 
 
 
 
243
  = The flash movie in the overlay shows BELOW some other flash content that is on the same page! =
244
 
245
+ Make sure the OTHER flash content as a **wmode** set, preferably to 'opaque' or else 'transparent' but not 'window' or missing. For example, if your embedded object looks something like:
246
  `
247
  <object type="application/x-shockwave-flash" width="200" height="300" data="...url...">
248
  <param name="allowfullscreen" value="true" />
259
  <embed src="...url..." type="application/x-shockwave-flash" width="640" height="385" allowscriptaccess="always" allowfullscreen="true" wmode="window"></embed>
260
  </object>
261
  `
262
+ just change that `wmode="window"` to `wmode="opaque"` or add the tag if it is missing.
 
263
 
 
264
 
265
+ = Can I display INLINE content in a FancyBox overlay ? =
266
 
267
+ Yes. Wrap the inline content in
268
  `
269
+ <div style="display:none" class="fancybox-hidden"><div id="fancyboxID-1" style="width:460px;height:380px;">
270
  ...inline content here...
271
  </div></div>
272
  `
273
 
274
+ Then place a FancyBox link anywhere else in the post/page content to the inline content. Something like
275
  `
276
+ <a href="#fancyboxID-1" class="fancybox">Read my inline content</a>
277
  `
278
 
279
  NOTE: The wrapping divs ID *must* be unique and it must correspond with the links HREF with a # in front of it. When using the above example for more FancyBox inline content (hidden div + opening link) combinations on one page, give the second one the ID fancyboxID-2 and so on...
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
 
282
  = Can I make an image or hidden content to pop up in FancyBox on page load? =
283
 
308
 
309
  == Known Issues ==
310
 
 
 
 
 
 
 
311
  = Plugin conflicts =
312
 
313
+ - **Outbound links or Downloads tracking** in some of the stats plugins can interfere with FancyBox.
 
314
  - **Better WP Security** randomly changes version numbers in linked file URLs, breaking the FancyBox stylesheet. Disable the option "Display random version number to all non-administrative users" in the Better WP Security settings.
315
  - By default **Google Analytics for WordPress** converts links like `href="#anyID"` to `href="http://yoursite.url/page/#anyID"`, disabling inline content shown in FancyBox.
316
  - **Wordpress Firewall 2** blocks access to image files needed for porper display of the FancyBox overlay in older IE and other non-css3 browsers.
317
  - **WordPress Amazon Associate**: A script provided by Amazon and the FancyBox script are incompatible. Disabling _Product Preview_ in the **WP - Amazon > Settings** page should work around the issue.
318
  - **WP Slimstat** plugin interferes with the Easy FancyBox script for YouTube url conversion. When clicking a Youtube link, the movie opens in an overlay as it is supposed to but immediately after that, the complete page gets redirected to the original YouTube page. Adding a `class="noslimstat"` to the link is reported to work around the issue.
319
  - When using **WP-Minify**, the javascript files like `fancybox/jquery.fancybox-X.X.X.pack.js` and others need to be excluded from minification.
320
+ - When using **W3 Total Cache**, disable (1) minification and (2) the option "Prevent caching of objects after settings change". If you really need minification, you can try to run **WP-Minify** alongside W3TC which allows exclusion of fancybox files as suggested above..
 
321
  - **WP Supersized** uses the Animate Enhanced jQuery extension which causes a conflict with the Easing extension used by FancyBox resulting in a 0px sized lightbox frame. Plus some kind of positioning issue with auto-centering. Sridhar Katakam wrote about a work-around on http://websitesetuppro.com/getting-easy-fancybox-to-work-properly-when-wp-supersized-is-active/.
322
 
323
+
324
  = Theme conflicts =
325
 
326
+ - The new default **Twenty Eleven** uses a very high stacking order (z-index: 9999) for the top image and menu div, resulting in FancyBox content being partially hidden under the page header. Work-around: Use the plugin [Custom CSS](http://wordpress.org/extend/plugins/safecss/) and add the rule
327
  `
328
  #branding {
329
  z-index:999;
330
  }
331
  `
332
+ - Most if not all **Elegant Themes** have FancyBox already integrated in a hard-coded way, making them incompatible with Easy FancyBox.
333
+ - The **Mystique** theme has an option called "Optimize website for faster loading" that will break Easy FancyBox. Disable it in Mystique's options > Advanced.
334
  - **Imbalance** and other themes that uses the Photo Galleria jQuery extension: turn of the JSGallery option.
335
  - Themes like **Envisioned**, **Chameleon** and many others have FancyBox baked in. There is no solution other than stripping the theme of all FancyBox related code or disable the plugin and use the theme provided version...
336
  - Themes based on the **Thesis** framework might see issues in IE 8, for which [a hack has been proposed](http://voidzonemedia.com/solutions/thesis-ie8-remove-ie7-emulation/)
338
 
339
  = Other =
340
 
341
+ - When using multiple links on the same page to similar content, automatically or manually using the same class (for example `fancybox-youtube`), metadata on the second and following links (for example `{width:200,height:300}` in the class or data attribute) will be ignored.
342
+ - When showing an iframe as inline content in FancyBox, the iframe will become blank after opening and closing it. The solution is to link directly to the iframe source and use `class="fancybox-iframe"` instead.
343
  - Embedded flash content that has no wmode or wmode 'window', is displayed above the overlay and other javascript rendered content like dropdown menus. WordPress does NOT check for missing wmode in oEmbed generated embed code. Since version 1.3.4.5, the missing wmode is added by this plugin for WP (auto-)embeds but not for other user-embedded content. Please make sure you set the wmode parameter to 'opaque' (best performance) or 'transparent' (only when you need transparency) for your embedded content.
344
 
345
 
375
  1. Check if your theme loads another or the same lightbox script or any other of the needed jQuery extensions like jquery.easing or jquery.mousewheel. Look for references to Thickbox, Prettyphoto, Lightbox2, Colorbox or FancyBox script files or code. These are very likely to cause the incompatibility and you will have to either find a setting in the other plugin to switch OFF the use of the conflicting script (possible in NextGEN for example, see under Advanced below) or choose between the two conflicting plugins.
376
 
377
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
378
 
379
  == Screenshots ==
380
 
384
 
385
  == Upgrade Notice ==
386
 
387
+ = 1.3.4.9 =
388
+ Metadata and image map support. Opening speed bugfix. New iFrame/HTML5 embed code for Youtube, Vimeo and Dailymotion. Frame color and opacity options. Media options simplification.
389
 
390
  == Changelog ==
391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  = 1.3.4.9 =
393
  * NEW: Lithuanian translation
394
  * NEW: Hindi translation
395
+ * NEW: Romanian tranlation
 
396
  * NEW: Polish translation
397
  * NEW: Spanish translation
398
  * NEW: jQuery Metadata support
431
  = 1.3.3.4.2 =
432
  * BIGFIX: iframe width
433
  * BIGFIX: image overlay size in Google Chrome browser issue (FancyBox 1.3.3)
434
+ * BIGFIX: fancybox-swf&nbsp;
435
 
436
  = 1.3.3.4 =
437
  * FancyBox script version 1.3.3 (2010/11/4 - http://fancybox.net/changelog/)