FancyBox for WordPress - Version 2.7.3

Version Description

  • Fixed: Settings not saving in some browsers. Thanks to supertomate
  • Fixed: JS being added to other plugins' configuration pages. Thanks to Brandon Dove
  • Added: Support section in options page with better information
Download this release

Release Info

Developer moskis
Plugin Icon wp plugin FancyBox for WordPress
Version 2.7.3
Comparing to
See all releases

Code changes from version 2.7.2 to 2.7.3

Files changed (5) hide show
  1. admin.php +50 -25
  2. fancybox.php +19 -12
  3. languages/mfbfw.pot +273 -226
  4. lib/admin-js.php +0 -54
  5. readme.txt +11 -6
admin.php CHANGED
@@ -24,62 +24,51 @@ function mfbfw_options_page() {
24
  <div id="fbfwTabs">
25
 
26
  <ul>
27
- <li><a href="#fbfw-info"><?php _e('Info', 'mfbfw'); ?></a></li>
28
  <li><a href="#fbfw-appearance"><?php _e('Appearance', 'mfbfw'); ?></a></li>
29
  <li><a href="#fbfw-animations"><?php _e('Animations', 'mfbfw'); ?></a></li>
30
  <li><a href="#fbfw-behaviour"><?php _e('Behaviour', 'mfbfw'); ?></a></li>
31
  <li><a href="#fbfw-galleries"><?php _e('Galleries', 'mfbfw'); ?></a></li>
32
  <li><a href="#fbfw-other"><?php _e('Other', 'mfbfw'); ?></a></li>
33
  <li><a href="#fbfw-troubleshooting"><?php _e('Troubleshooting', 'mfbfw'); ?></a></li>
34
- <li><a href="#fbfw-uninstall"><?php _e('Uninstall', 'mfbfw'); ?></a></li>
 
35
  </ul>
36
 
37
  <div id="fbfw-info">
38
-
39
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-info.php'); ?>
40
-
41
  </div>
42
 
43
  <div id="fbfw-appearance">
44
-
45
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-appearance.php'); ?>
46
-
47
  </div>
48
 
49
  <div id="fbfw-animations">
50
-
51
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-animations.php'); ?>
52
-
53
  </div>
54
 
55
  <div id="fbfw-behaviour">
56
-
57
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-behaviour.php'); ?>
58
-
59
  </div>
60
 
61
  <div id="fbfw-galleries">
62
-
63
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-galleries.php'); ?>
64
-
65
  </div>
66
 
67
  <div id="fbfw-other">
68
-
69
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-other.php'); ?>
70
-
71
  </div>
72
 
73
  <div id="fbfw-troubleshooting">
 
 
74
 
75
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-troubleshooting.php'); ?>
76
-
77
  </div>
78
 
79
  <div id="fbfw-uninstall">
80
-
81
- <?php require_once ( FBFW_PATH . '/lib/admin-tab-uninstall.php'); ?>
82
-
83
  </div>
84
 
85
  </div>
@@ -91,6 +80,42 @@ function mfbfw_options_page() {
91
  </p>
92
 
93
  </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
 
95
  </div>
96
 
24
  <div id="fbfwTabs">
25
 
26
  <ul>
27
+ <li><a id="show-mfbfwd" href="#fbfw-info"><?php _e('Info', 'mfbfw'); ?></a></li>
28
  <li><a href="#fbfw-appearance"><?php _e('Appearance', 'mfbfw'); ?></a></li>
29
  <li><a href="#fbfw-animations"><?php _e('Animations', 'mfbfw'); ?></a></li>
30
  <li><a href="#fbfw-behaviour"><?php _e('Behaviour', 'mfbfw'); ?></a></li>
31
  <li><a href="#fbfw-galleries"><?php _e('Galleries', 'mfbfw'); ?></a></li>
32
  <li><a href="#fbfw-other"><?php _e('Other', 'mfbfw'); ?></a></li>
33
  <li><a href="#fbfw-troubleshooting"><?php _e('Troubleshooting', 'mfbfw'); ?></a></li>
34
+ <li><a href="#fbfw-support" style="color:green;"><?php _e('Support', 'mfbfw'); ?></a></li>
35
+ <li><a href="#fbfw-uninstall" style="color:red;"><?php _e('Uninstall', 'mfbfw'); ?></a></li>
36
  </ul>
37
 
38
  <div id="fbfw-info">
39
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-info.php'); ?>
 
 
40
  </div>
41
 
42
  <div id="fbfw-appearance">
43
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-appearance.php'); ?>
 
 
44
  </div>
45
 
46
  <div id="fbfw-animations">
47
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-animations.php'); ?>
 
 
48
  </div>
49
 
50
  <div id="fbfw-behaviour">
51
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-behaviour.php'); ?>
 
 
52
  </div>
53
 
54
  <div id="fbfw-galleries">
55
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-galleries.php'); ?>
 
 
56
  </div>
57
 
58
  <div id="fbfw-other">
59
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-other.php'); ?>
 
 
60
  </div>
61
 
62
  <div id="fbfw-troubleshooting">
63
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-troubleshooting.php'); ?>
64
+ </div>
65
 
66
+ <div id="fbfw-support">
67
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-support.php'); ?>
68
  </div>
69
 
70
  <div id="fbfw-uninstall">
71
+ <?php require_once ( FBFW_PATH . '/lib/admin-tab-uninstall.php'); ?>
 
 
72
  </div>
73
 
74
  </div>
80
  </p>
81
 
82
  </form>
83
+
84
+ <div id="mfbfwd" style="border-top:1px dashed #DDDDDD;margin:20px auto 40px;overflow:hidden;padding-top:25px;width:735px">
85
+
86
+ <div style="background-color:#FFFFE0;border:1px solid #E6DB55;padding:0 .6em;margin:5px 15px 2px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:90px;float:left;text-align:center;width:200px">
87
+ <p style="line-height:1.5em;"><?php _e('If you use FancyBox and like it, buy the author a beer!', 'mfbfw'); ?></p>
88
+ <form id="donate_form" action="https://www.paypal.com/cgi-bin/webscr" method="post">
89
+ <input name="cmd" value="_donations" type="hidden">
90
+ <input name="business" value="janis.skarnelis@gmail.com" type="hidden">
91
+ <input name="item_name" value="FancyBox" type="hidden">
92
+ <input name="amount" value="10.00" type="hidden">
93
+ <input name="no_shipping" value="0" type="hidden">
94
+ <input name="no_note" value="1" type="hidden">
95
+ <input name="currency_code" value="EUR" type="hidden">
96
+ <input name="tax" value="0" type="hidden">
97
+ <input name="lc" value="LV" type="hidden">
98
+ <input name="bn" value="PP-DonationsBF" type="hidden">
99
+ <input type="image" style="margin:0;padding:0" border="0" src="<?php echo FBFW_URL ?>/css/img/extra_donate.png" name="submit" alt="PayPal - The safer, easier way to pay online!"/>
100
+ </form>
101
+ </div>
102
+
103
+ <div style="background-color:#FFFFE0;border:1px solid #E6DB55;padding:0 .6em;margin:5px 15px 2px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:90px;float:left;margin-left:10px;text-align:center;width:200px">
104
+ <p style="line-height:1.5em;"><?php _e('The author of this WordPress Plugin also likes beer :P', 'mfbfw'); ?></p>
105
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
106
+ <input type="hidden" name="cmd" value="_s-xclick"/>
107
+ <input type="hidden" name="hosted_button_id" value="3878319"/>
108
+ <input type="image" style="margin:0;padding:0" border="0" src="<?php echo FBFW_URL ?>/css/img/extra_donate.png" name="submit" alt="PayPal - The safer, easier way to pay online!"/>
109
+ <img height="1" width="1" border="0" alt="" src="https://www.paypal.com/es_ES/i/scr/pixel.gif" />
110
+ </form>
111
+ </div>
112
+
113
+ <div style="background-color:#9DD1F2;border:1px solid #419ED9;padding:0 .6em;margin:5px 15px 2px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:90px;float:left;margin-left:10px;text-align:center;width:200px">
114
+ <p style="line-height:1.5em;"><a href="http://twitter.com/moskis/"><?php _e('Follow me on Twitter for more WordPress Plugins and Themes', 'mfbfw'); ?></a></p>
115
+ <img height="16" width="16" border="0" alt="" src="<?php echo FBFW_URL ?>/css/img/extra_twitter.png" />
116
+ </div>
117
+
118
+ </div>
119
 
120
  </div>
121
 
fancybox.php CHANGED
@@ -3,9 +3,15 @@
3
  Plugin Name: FancyBox for WordPress
4
  Plugin URI: http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/
5
  Description: Integrates <a href="http://fancy.klade.lv/">FancyBox</a> by <a href="http://klade.lv/">Janis Skarnelis</a> into WordPress.
6
- Version: 2.7.2
7
- Author: Jose Pardilla
8
  Author URI: http://josepardilla.com/
 
 
 
 
 
 
9
  */
10
 
11
 
@@ -16,7 +22,7 @@ define('FBFW_URL', WP_PLUGIN_URL . '/fancybox-for-wordpress');
16
  // When plugin is activated, update version, and set any new settings to default
17
  function mfbfw_install() {
18
 
19
- update_option('mfbfw_active_version', '2.7.2');
20
 
21
  add_option('mfbfw_showTitle', 'on');
22
  add_option('mfbfw_border', '');
@@ -193,21 +199,15 @@ function mfbfw_load() {
193
  wp_enqueue_script('fancybox', FBFW_URL . '/js/jquery.fancybox-1.2.6.min.js', array('jquery'), '1.3.2', $loadAtFooter); // Load fancybox with jQuery
194
 
195
  }
196
-
197
  if (get_option('mfbfw_easing')) {
198
 
199
  wp_enqueue_script('jqueryeasing', FBFW_URL . '/js/jquery.easing.1.3.min.js', array('jquery'), '1.3.2', $loadAtFooter); // Load easing javascript file if required
200
 
201
  }
202
-
203
- } elseif ( is_plugin_page() ) {
204
-
205
- wp_enqueue_script('jquery-ui-tabs', array('jquery-ui-core')); // Load jQuery UI Tabs for Admin Page
206
-
207
- wp_enqueue_script('fancyboxadmin', FBFW_URL . '/js/admin.js', array('jquery'), '1.3.2'); // Load specific JS for Admin Page
208
 
209
  }
210
-
211
  }
212
 
213
 
@@ -345,8 +345,15 @@ function mfbfw_admin_menu() {
345
 
346
  require FBFW_PATH . '/admin.php';
347
 
348
- add_submenu_page('options-general.php', 'Fancybox for WordPress Options', 'Fancybox for WP', 10, 'fancybox-for-wordpress', 'mfbfw_options_page');
 
 
 
349
 
 
 
 
 
350
  }
351
 
352
 
3
  Plugin Name: FancyBox for WordPress
4
  Plugin URI: http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/
5
  Description: Integrates <a href="http://fancy.klade.lv/">FancyBox</a> by <a href="http://klade.lv/">Janis Skarnelis</a> into WordPress.
6
+ Version: 2.7.3
7
+ Author: Jos&eacute; Pardilla
8
  Author URI: http://josepardilla.com/
9
+
10
+ * FancyBox is Copyright (c) 2008 - 2010 Janis Skarnelis
11
+ * Dual licensed under the MIT and GPL licenses:
12
+ * http://www.opensource.org/licenses/mit-license.php
13
+ * http://www.gnu.org/licenses/gpl.html
14
+
15
  */
16
 
17
 
22
  // When plugin is activated, update version, and set any new settings to default
23
  function mfbfw_install() {
24
 
25
+ update_option('mfbfw_active_version', '2.7.3');
26
 
27
  add_option('mfbfw_showTitle', 'on');
28
  add_option('mfbfw_border', '');
199
  wp_enqueue_script('fancybox', FBFW_URL . '/js/jquery.fancybox-1.2.6.min.js', array('jquery'), '1.3.2', $loadAtFooter); // Load fancybox with jQuery
200
 
201
  }
202
+
203
  if (get_option('mfbfw_easing')) {
204
 
205
  wp_enqueue_script('jqueryeasing', FBFW_URL . '/js/jquery.easing.1.3.min.js', array('jquery'), '1.3.2', $loadAtFooter); // Load easing javascript file if required
206
 
207
  }
 
 
 
 
 
 
208
 
209
  }
210
+
211
  }
212
 
213
 
345
 
346
  require FBFW_PATH . '/admin.php';
347
 
348
+ $mfbfwadmin = add_submenu_page('options-general.php', 'Fancybox for WordPress Options', 'Fancybox for WP', 10, 'fancybox-for-wordpress', 'mfbfw_options_page');
349
+ add_action( "admin_print_scripts-$mfbfwadmin", 'mfbfw_admin_head' );
350
+
351
+ }
352
 
353
+ // Load Admin JS
354
+ function mfbfw_admin_head() {
355
+ wp_enqueue_script('jquery-ui-tabs', array('jquery-ui-core')); // Load jQuery UI Tabs for Admin Page
356
+ wp_enqueue_script('fancyboxadmin', FBFW_URL . '/js/admin.js', array('jquery')); // Load specific JS for Admin Page
357
  }
358
 
359
 
languages/mfbfw.pot CHANGED
@@ -1,63 +1,156 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # This file is put in the public domain.
3
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
- #
5
- #, fuzzy
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: PACKAGE VERSION\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
10
- "POT-Creation-Date: 2009-12-16 17:37+0000\n"
11
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=CHARSET\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
17
 
18
- #: admin.php:11
19
- #, php-format
20
- msgid "Fancybox for WordPress (version %s)"
21
  msgstr ""
22
 
23
- #: admin.php:27
24
- msgid "Info"
 
 
 
25
  msgstr ""
26
 
27
- #: admin.php:28
28
- msgid "Appearance"
29
  msgstr ""
30
 
31
- #: admin.php:29
32
- msgid "Animations"
33
  msgstr ""
34
 
35
- #: admin.php:30
36
- msgid "Behaviour"
 
 
37
  msgstr ""
38
 
39
- #: admin.php:31
40
- msgid "Galleries"
 
 
41
  msgstr ""
42
 
43
- #: admin.php:32
44
- msgid "Other"
45
  msgstr ""
46
 
47
- #: admin.php:33
48
- msgid "Troubleshooting"
49
  msgstr ""
50
 
51
- #: admin.php:34 lib/admin-tab-uninstall.php:1
52
- msgid "Uninstall"
 
 
 
53
  msgstr ""
54
 
55
- #: admin.php:90
56
- msgid "Save Changes"
 
 
57
  msgstr ""
58
 
59
- #: fancybox.php:370
60
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  msgstr ""
62
 
63
  #: lib/admin-tab-animations.php:1
@@ -214,6 +307,76 @@ msgstr ""
214
  msgid "Show the image title (default: on)"
215
  msgstr ""
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  #: lib/admin-tab-behaviour.php:1
218
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
219
  msgstr ""
@@ -272,271 +435,155 @@ msgstr ""
272
  msgid "Close FancyBox when &quot;Escape&quot; key is pressed (default: on)"
273
  msgstr ""
274
 
275
- #: lib/admin-tab-galleries.php:1
276
- msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
277
- msgstr ""
278
-
279
- #: lib/admin-tab-galleries.php:3
280
- msgid ""
281
- "Here you can choose if you want the plugin to group all images into a "
282
- "gallery, or make a gallery for each post. You can also define you own jQuery "
283
- "expression if you like."
284
- msgstr ""
285
-
286
- #: lib/admin-tab-galleries.php:9
287
- msgid "Gallery Type"
288
- msgstr ""
289
-
290
- #: lib/admin-tab-galleries.php:15
291
- msgid "Make a gallery for all images on the page (default)"
292
  msgstr ""
293
 
294
- #: lib/admin-tab-galleries.php:20
295
  msgid ""
296
- "Do not group images in gallery automatically (use this if you want to make "
297
- "galleries manually with the <code>REL</code> attribute)"
298
  msgstr ""
299
 
300
- #: lib/admin-tab-galleries.php:25
301
  msgid ""
302
- "Make a gallery for each post (will only work if your theme uses <code>class="
303
- "\"post\"</code> on each post, which is common in WordPress"
304
- msgstr ""
305
-
306
- #: lib/admin-tab-galleries.php:30
307
- msgid "Use a custom expression to apply FancyBox"
308
- msgstr ""
309
-
310
- #: lib/admin-tab-galleries.php:39
311
- msgid "Custom expression guidelines:"
312
  msgstr ""
313
 
314
- #: lib/admin-tab-galleries.php:41
315
  msgid ""
316
- "&middot; The custom expression has to apply <code>class=\"fancybox\"</code> "
317
- "to the links where you want to use FancyBox. Do not call the <code>fancybox()"
318
- "</code> function here, the plugin does this for you."
 
319
  msgstr ""
320
 
321
- #: lib/admin-tab-galleries.php:43
322
- msgid ""
323
- "&middot; The jQuery <code>addClass()</code> function is a good way to add "
324
- "the class to the desired links conserving any existing class."
325
  msgstr ""
326
 
327
- #: lib/admin-tab-galleries.php:45
328
  msgid ""
329
- "&middot; You can use <code>getTitle()</code> in your expression to copy the "
330
- "title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so "
331
- "that FancyBox can show captions."
332
  msgstr ""
333
 
334
- #: lib/admin-tab-galleries.php:47
335
- msgid ""
336
- "&middot; You can use <code>jQuery(thumbnails)</code> like in the example "
337
- "expression to apply FancyBox to thumbnails that link to these extensions: "
338
- "BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase)."
339
  msgstr ""
340
 
341
- #: lib/admin-tab-galleries.php:49
342
- msgid ""
343
- "&middot; If you want to do it manually you can use something like "
344
- "<code>jQuery(\"a:has(img)[href$='.jpg']\")</code> or whatever works for you."
345
  msgstr ""
346
 
347
- #: lib/admin-tab-galleries.php:51
348
  msgid ""
349
- "See the <a href=\"http://docs.jquery.com/\" target=\"_blank\">jQuery "
350
- "Documentation</a> for more help."
351
- msgstr ""
352
-
353
- #: lib/admin-tab-galleries.php:53
354
- msgid "Examples:"
355
  msgstr ""
356
 
357
  #: lib/admin-tab-info.php:1
358
- msgid "Info & Support"
359
  msgstr ""
360
 
361
  #: lib/admin-tab-info.php:3
362
  msgid ""
363
- "<a href=\"http://fancy.klade.lv/home\">FancyBox</a> developed by <a href="
364
- "\"http://kac.klade.lv/\">Janis Skarnelis</a>, ported to WordPress by <a href="
365
- "\"http://moskis.net/\">Jos&eacute; Pardilla</a>. Licensed under the <a "
366
- "target=\"_blank\" href=\"http://en.wikipedia.org/wiki/MIT_License\">MIT "
367
- "License</a>."
368
  msgstr ""
369
 
370
  #: lib/admin-tab-info.php:5
371
  msgid ""
372
  "As you can see, this plugin has many options you can edit, but have no fear, "
373
- "you can leave everything as it is if you want, since the default options "
374
- "should be a good start... :)"
375
- msgstr ""
376
-
377
- #: lib/admin-tab-info.php:9
378
- msgid ""
379
- "If you have problems or questions about FancyBox, please start with these "
380
- "links: <a href=\"http://fancy.klade.lv/howto\">How-To</a> & <a href=\"http://"
381
- "fancy.klade.lv/faq\">FAQ</a>.<br />If that does not help, go to <a href="
382
- "\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</a>, "
383
- "use the <strong>Search</strong> option, and if necesary, post your question."
384
  msgstr ""
385
 
386
- #: lib/admin-tab-info.php:11
387
  msgid ""
388
- "If you are having trouble with this plugin try to localize the problem "
389
- "(switch your theme and/or deactivate plugins until you find the source of "
390
- "the problem). You can also try the Troubleshooting settings at the bottom of "
391
- "this page if necesary. If you still can not get the plugin to work, <a href="
392
- "\"http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/\">leave a "
393
- "comment here</a> explaining the problem."
394
  msgstr ""
395
 
396
- #: lib/admin-tab-info.php:15
397
  msgid ""
398
  "<strong>Note:</strong> Having a cache plugin may prevent changes from taking "
399
  "effect immidiately, if this happens clear cache after saving changes here or "
400
  "deactivate cache until you finish editing these options."
401
  msgstr ""
402
 
403
- #: lib/admin-tab-info.php:18
404
- msgid "If you use FancyBox and like it, buy the author a beer!"
405
- msgstr ""
406
-
407
- #: lib/admin-tab-info.php:36
408
- msgid "The author of this WordPress Plugin also likes beer :P"
409
- msgstr ""
410
-
411
- #: lib/admin-tab-info.php:46
412
- msgid "Follow me on Twitter for more WordPress Plugins and Themes"
413
- msgstr ""
414
-
415
- #: lib/admin-tab-other.php:1
416
- msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
417
- msgstr ""
418
-
419
- #: lib/admin-tab-other.php:3
420
- msgid "These are additional settings for advanced users."
421
- msgstr ""
422
-
423
- #: lib/admin-tab-other.php:9
424
- msgid "Callbacks"
425
- msgstr ""
426
-
427
- #: lib/admin-tab-other.php:14
428
- msgid "Callback on Start event (default: empty)"
429
- msgstr ""
430
-
431
- #: lib/admin-tab-other.php:19
432
- msgid "Callback on Show event (default: empty)"
433
- msgstr ""
434
-
435
- #: lib/admin-tab-other.php:24
436
- msgid "Callback on Close event (default: empty)"
437
- msgstr ""
438
-
439
- #: lib/admin-tab-other.php:28
440
- msgid "Example:"
441
- msgstr ""
442
-
443
- #: lib/admin-tab-other.php:32
444
- msgid "Leave the fields empty to disable."
445
- msgstr ""
446
-
447
- #: lib/admin-tab-other.php:39
448
- msgid "Frame Size"
449
- msgstr ""
450
-
451
- #: lib/admin-tab-other.php:45
452
- msgid "Width in pixels of FancyBox when showing iframe content (default: 560)"
453
- msgstr ""
454
-
455
- #: lib/admin-tab-other.php:50
456
- msgid "Height in pixels of FancyBox when showing iframe content (default: 340)"
457
  msgstr ""
458
 
459
- #: lib/admin-tab-other.php:58
460
- msgid "Load JavaScript in Footer"
 
 
 
461
  msgstr ""
462
 
463
- #: lib/admin-tab-other.php:64
464
  msgid ""
465
- "Loads JavaScript at the end of the blog's HTML (experimental) (default: off)"
 
 
466
  msgstr ""
467
 
468
- #: lib/admin-tab-other.php:67
469
- msgid ""
470
- "This option won't be recognized if you use <strong>Parallel Load</strong> "
471
- "plugin. In that case, you can do this from Parallel Load's options."
472
  msgstr ""
473
 
474
- #: lib/admin-tab-troubleshooting.php:1
475
- msgid "Troubleshooting Settings"
476
  msgstr ""
477
 
478
- #: lib/admin-tab-troubleshooting.php:3
479
- msgid ""
480
- "Settings in this section should only be changed if you are having problems "
481
- "with the plugin!"
482
  msgstr ""
483
 
484
- #: lib/admin-tab-troubleshooting.php:5
485
- msgid ""
486
- "If the plugin doesn't seem to work, first you should check for other plugins "
487
- "that may be conflicting with this one, especially other Lightbox, Slimbox, "
488
- "etc. Make sure all your plugins and WordPress itself are up to date (this "
489
- "plugin has only been tested in WordPress 2.7 and above)."
490
  msgstr ""
491
 
492
- #: lib/admin-tab-troubleshooting.php:7
493
- msgid ""
494
- "Change them one at a time and test to see if they help. Remember that having "
495
- "a cache plugin may prevent changes from taking effect immidiately, so clear "
496
- "cache after saving changes here or deactivate cache until you finish editing "
497
- "these options."
498
  msgstr ""
499
 
500
- #: lib/admin-tab-troubleshooting.php:13
501
- msgid "Do not call jQuery"
502
  msgstr ""
503
 
504
- #: lib/admin-tab-troubleshooting.php:19
505
- msgid ""
506
- "Skip jQuery call. Use this only if jQuery is being loaded twice (default: "
507
- "off)"
508
  msgstr ""
509
 
510
- #: lib/admin-tab-troubleshooting.php:27
511
- msgid "jQuery \"noConflict\" Mode"
512
  msgstr ""
513
 
514
- #: lib/admin-tab-troubleshooting.php:33
515
- msgid "Use jQuery noConflict mode (default: on)"
516
  msgstr ""
517
 
518
- #: lib/admin-tab-troubleshooting.php:36
519
- msgid ""
520
- "(Turning this off may cause problems if there are plugins activated that use "
521
- "other js framework like mootools, prototype, scriptaculous, etc.)"
522
  msgstr ""
523
 
524
- #: lib/admin-tab-uninstall.php:3
525
- msgid ""
526
- "Like many other plugins, FancyBox for WordPress stores its settings on your "
527
- "WordPress' options database table. Actually, these settings are not using "
528
- "more than a couple of kilobytes of space, but if you want to completely "
529
- "uninstall this plugin, check the option below, then save changes, and "
530
- "<strong>when you deactivate the plugin</strong>, all its settings will be "
531
- "removed from the database."
532
  msgstr ""
533
 
534
- #: lib/admin-tab-uninstall.php:9
535
- msgid "Remove settings"
536
  msgstr ""
537
 
538
- #: lib/admin-tab-uninstall.php:15
539
- msgid ""
540
- "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
541
- "(default: off)"
542
  msgstr ""
1
+ # Copyright (C) 2010
2
+ # This file is distributed under the same license as the package.
 
 
 
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
7
+ "POT-Creation-Date: 2011-01-16 13:01:19+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: 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
+ #: lib/admin-tab-galleries.php:1
16
+ msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
 
17
  msgstr ""
18
 
19
+ #: lib/admin-tab-galleries.php:3
20
+ msgid ""
21
+ "Here you can choose if you want the plugin to group all images into a "
22
+ "gallery, or make a gallery for each post. You can also define you own jQuery "
23
+ "expression if you like."
24
  msgstr ""
25
 
26
+ #: lib/admin-tab-galleries.php:9
27
+ msgid "Gallery Type"
28
  msgstr ""
29
 
30
+ #: lib/admin-tab-galleries.php:15
31
+ msgid "Make a gallery for all images on the page (default)"
32
  msgstr ""
33
 
34
+ #: lib/admin-tab-galleries.php:20
35
+ msgid ""
36
+ "Do not group images in gallery automatically (use this if you want to make "
37
+ "galleries manually with the <code>REL</code> attribute)"
38
  msgstr ""
39
 
40
+ #: lib/admin-tab-galleries.php:25
41
+ msgid ""
42
+ "Make a gallery for each post (will only work if your theme uses <code>class="
43
+ "\"post\"</code> on each post, which is common in WordPress"
44
  msgstr ""
45
 
46
+ #: lib/admin-tab-galleries.php:30
47
+ msgid "Use a custom expression to apply FancyBox"
48
  msgstr ""
49
 
50
+ #: lib/admin-tab-galleries.php:39
51
+ msgid "Custom expression guidelines:"
52
  msgstr ""
53
 
54
+ #: lib/admin-tab-galleries.php:41
55
+ msgid ""
56
+ "&middot; The custom expression has to apply <code>class=\"fancybox\"</code> "
57
+ "to the links where you want to use FancyBox. Do not call the <code>fancybox()"
58
+ "</code> function here, the plugin does this for you."
59
  msgstr ""
60
 
61
+ #: lib/admin-tab-galleries.php:43
62
+ msgid ""
63
+ "&middot; The jQuery <code>addClass()</code> function is a good way to add "
64
+ "the class to the desired links conserving any existing class."
65
  msgstr ""
66
 
67
+ #: lib/admin-tab-galleries.php:45
68
+ msgid ""
69
+ "&middot; You can use <code>getTitle()</code> in your expression to copy the "
70
+ "title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so "
71
+ "that FancyBox can show captions."
72
+ msgstr ""
73
+
74
+ #: lib/admin-tab-galleries.php:47
75
+ msgid ""
76
+ "&middot; You can use <code>jQuery(thumbnails)</code> like in the example "
77
+ "expression to apply FancyBox to thumbnails that link to these extensions: "
78
+ "BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase)."
79
+ msgstr ""
80
+
81
+ #: lib/admin-tab-galleries.php:49
82
+ msgid ""
83
+ "&middot; If you want to do it manually you can use something like "
84
+ "<code>jQuery(\"a:has(img)[href$='.jpg']\")</code> or whatever works for you."
85
+ msgstr ""
86
+
87
+ #: lib/admin-tab-galleries.php:51
88
+ msgid ""
89
+ "See the <a href=\"http://docs.jquery.com/\" target=\"_blank\">jQuery "
90
+ "Documentation</a> for more help."
91
+ msgstr ""
92
+
93
+ #: lib/admin-tab-galleries.php:53
94
+ msgid "Examples:"
95
+ msgstr ""
96
+
97
+ #: lib/admin-tab-other.php:1
98
+ msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
99
+ msgstr ""
100
+
101
+ #: lib/admin-tab-other.php:3
102
+ msgid "These are additional settings for advanced users."
103
+ msgstr ""
104
+
105
+ #: lib/admin-tab-other.php:9
106
+ msgid "Callbacks"
107
+ msgstr ""
108
+
109
+ #: lib/admin-tab-other.php:14
110
+ msgid "Callback on Start event (default: empty)"
111
+ msgstr ""
112
+
113
+ #: lib/admin-tab-other.php:19
114
+ msgid "Callback on Show event (default: empty)"
115
+ msgstr ""
116
+
117
+ #: lib/admin-tab-other.php:24
118
+ msgid "Callback on Close event (default: empty)"
119
+ msgstr ""
120
+
121
+ #: lib/admin-tab-other.php:28
122
+ msgid "Example:"
123
+ msgstr ""
124
+
125
+ #: lib/admin-tab-other.php:32
126
+ msgid "Leave the fields empty to disable."
127
+ msgstr ""
128
+
129
+ #: lib/admin-tab-other.php:39
130
+ msgid "Frame Size"
131
+ msgstr ""
132
+
133
+ #: lib/admin-tab-other.php:45
134
+ msgid "Width in pixels of FancyBox when showing iframe content (default: 560)"
135
+ msgstr ""
136
+
137
+ #: lib/admin-tab-other.php:50
138
+ msgid "Height in pixels of FancyBox when showing iframe content (default: 340)"
139
+ msgstr ""
140
+
141
+ #: lib/admin-tab-other.php:58
142
+ msgid "Load JavaScript in Footer"
143
+ msgstr ""
144
+
145
+ #: lib/admin-tab-other.php:64
146
+ msgid ""
147
+ "Loads JavaScript at the end of the blog's HTML (experimental) (default: off)"
148
+ msgstr ""
149
+
150
+ #: lib/admin-tab-other.php:67
151
+ msgid ""
152
+ "This option won't be recognized if you use <strong>Parallel Load</strong> "
153
+ "plugin. In that case, you can do this from Parallel Load's options."
154
  msgstr ""
155
 
156
  #: lib/admin-tab-animations.php:1
307
  msgid "Show the image title (default: on)"
308
  msgstr ""
309
 
310
+ #: lib/admin-tab-uninstall.php:1 admin.php:35
311
+ msgid "Uninstall"
312
+ msgstr ""
313
+
314
+ #: lib/admin-tab-uninstall.php:3
315
+ msgid ""
316
+ "Like many other plugins, FancyBox for WordPress stores its settings on your "
317
+ "WordPress' options database table. Actually, these settings are not using "
318
+ "more than a couple of kilobytes of space, but if you want to completely "
319
+ "uninstall this plugin, check the option below, then save changes, and "
320
+ "<strong>when you deactivate the plugin</strong>, all its settings will be "
321
+ "removed from the database."
322
+ msgstr ""
323
+
324
+ #: lib/admin-tab-uninstall.php:9
325
+ msgid "Remove settings"
326
+ msgstr ""
327
+
328
+ #: lib/admin-tab-uninstall.php:15
329
+ msgid ""
330
+ "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
331
+ "(default: off)"
332
+ msgstr ""
333
+
334
+ #: lib/admin-tab-support.php:1 admin.php:34
335
+ msgid "Support"
336
+ msgstr ""
337
+
338
+ #: lib/admin-tab-support.php:5
339
+ msgid ""
340
+ "If you have problems or questions about FancyBox itself (and not this "
341
+ "WordPress plugin), please start with these links: <a target=\"_blank\" href="
342
+ "\"http://fancybox.net/howto\">How-To</a> & <a target=\"_blank\" href="
343
+ "\"http://fancybox.net/faq\">FAQ</a>.<br />If that does not help, go to <a "
344
+ "href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</"
345
+ "a>, use the <strong>Search</strong> option, and if necesary, post your "
346
+ "question."
347
+ msgstr ""
348
+
349
+ #: lib/admin-tab-support.php:10
350
+ msgid ""
351
+ "If you are having trouble with this plugin try to localize the problem "
352
+ "(switch your theme and deactivate plugins until you find the source of the "
353
+ "problem). You can also try the Troubleshooting settings of this plugin if "
354
+ "necesary."
355
+ msgstr ""
356
+
357
+ #: lib/admin-tab-support.php:11
358
+ msgid "Try reverting these settings to their defaults with the button below."
359
+ msgstr ""
360
+
361
+ #: lib/admin-tab-support.php:12
362
+ msgid ""
363
+ "If you still can not get the plugin to work, <a target=\"_blank\" href="
364
+ "\"http://wordpress.org/tags/fancybox-for-wordpress?forum_id=10#postform"
365
+ "\">write a post here</a> explaining the problem or take a look and the <a "
366
+ "target=\"_blank\" href=\"http://wordpress.org/tags/fancybox-for-wordpress?"
367
+ "forum_id=10\">already posted messages</a>."
368
+ msgstr ""
369
+
370
+ #: lib/admin-tab-support.php:15
371
+ msgid "IMPORTANT:"
372
+ msgstr ""
373
+
374
+ #: lib/admin-tab-support.php:15
375
+ msgid ""
376
+ "When posting your problem please provide a link to your blog, and all "
377
+ "relevant information you can, especially your theme, plugins, etc."
378
+ msgstr ""
379
+
380
  #: lib/admin-tab-behaviour.php:1
381
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
382
  msgstr ""
435
  msgid "Close FancyBox when &quot;Escape&quot; key is pressed (default: on)"
436
  msgstr ""
437
 
438
+ #: lib/admin-tab-troubleshooting.php:1
439
+ msgid "Troubleshooting Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  msgstr ""
441
 
442
+ #: lib/admin-tab-troubleshooting.php:3
443
  msgid ""
444
+ "Settings in this section should only be changed if you are having problems "
445
+ "with the plugin!"
446
  msgstr ""
447
 
448
+ #: lib/admin-tab-troubleshooting.php:5
449
  msgid ""
450
+ "If the plugin doesn't seem to work, first you should check for other plugins "
451
+ "that may be conflicting with this one, especially other Lightbox, Slimbox, "
452
+ "etc. Make sure all your plugins and WordPress itself are up to date (this "
453
+ "plugin has only been tested in WordPress 2.7 and above)."
 
 
 
 
 
 
454
  msgstr ""
455
 
456
+ #: lib/admin-tab-troubleshooting.php:7
457
  msgid ""
458
+ "Change them one at a time and test to see if they help. Remember that having "
459
+ "a cache plugin may prevent changes from taking effect immidiately, so clear "
460
+ "cache after saving changes here or deactivate cache until you finish editing "
461
+ "these options."
462
  msgstr ""
463
 
464
+ #: lib/admin-tab-troubleshooting.php:13
465
+ msgid "Do not call jQuery"
 
 
466
  msgstr ""
467
 
468
+ #: lib/admin-tab-troubleshooting.php:19
469
  msgid ""
470
+ "Skip jQuery call. Use this only if jQuery is being loaded twice (default: "
471
+ "off)"
 
472
  msgstr ""
473
 
474
+ #: lib/admin-tab-troubleshooting.php:27
475
+ msgid "jQuery \"noConflict\" Mode"
 
 
 
476
  msgstr ""
477
 
478
+ #: lib/admin-tab-troubleshooting.php:33
479
+ msgid "Use jQuery noConflict mode (default: on)"
 
 
480
  msgstr ""
481
 
482
+ #: lib/admin-tab-troubleshooting.php:36
483
  msgid ""
484
+ "(Turning this off may cause problems if there are plugins activated that use "
485
+ "other js framework like mootools, prototype, scriptaculous, etc.)"
 
 
 
 
486
  msgstr ""
487
 
488
  #: lib/admin-tab-info.php:1
489
+ msgid "Information"
490
  msgstr ""
491
 
492
  #: lib/admin-tab-info.php:3
493
  msgid ""
494
+ "<a target=\"_blank\" href=\"http://fancybox.net\">FancyBox</a> developed by "
495
+ "<a target=\"_blank\" href=\"http://fancybox.net\">Janis Skarnelis</a>, "
496
+ "ported to WordPress by <a target=\"_blank\" href=\"http://josepardilla.com/"
497
+ "\">Jos&eacute; Pardilla</a>. Licensed under the <a target=\"_blank\" href="
498
+ "\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
499
  msgstr ""
500
 
501
  #: lib/admin-tab-info.php:5
502
  msgid ""
503
  "As you can see, this plugin has many options you can edit, but have no fear, "
504
+ "you can leave everything as it is if you don't want to get your hands dirty, "
505
+ "since the default options are a good start... :)"
 
 
 
 
 
 
 
 
 
506
  msgstr ""
507
 
508
+ #: lib/admin-tab-info.php:7
509
  msgid ""
510
+ "If you do encounter any problems, still don't panic, check the "
511
+ "Troubleshooting and Support sections for help."
 
 
 
 
512
  msgstr ""
513
 
514
+ #: lib/admin-tab-info.php:9
515
  msgid ""
516
  "<strong>Note:</strong> Having a cache plugin may prevent changes from taking "
517
  "effect immidiately, if this happens clear cache after saving changes here or "
518
  "deactivate cache until you finish editing these options."
519
  msgstr ""
520
 
521
+ #: lib/admin-tab-info.php:11
522
+ msgid "What's New in this version?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  msgstr ""
524
 
525
+ #: lib/admin-tab-info.php:12
526
+ msgid ""
527
+ "To see what's new in this version check the <a href=\"http://wordpress.org/"
528
+ "extend/plugins/fancybox-for-wordpress/changelog/\">changelog</a> at "
529
+ "WordPress Plugins Directory."
530
  msgstr ""
531
 
532
+ #: lib/admin-tab-info.php:13
533
  msgid ""
534
+ "For known bugs or things to come in future versions check the <a href="
535
+ "\"http://wordpress.org/extend/plugins/fancybox-for-wordpress/changelog/"
536
+ "\">issues list</a> at Google Code."
537
  msgstr ""
538
 
539
+ #: admin.php:11
540
+ msgid "Fancybox for WordPress (version %s)"
 
 
541
  msgstr ""
542
 
543
+ #: admin.php:27
544
+ msgid "Info"
545
  msgstr ""
546
 
547
+ #: admin.php:28
548
+ msgid "Appearance"
 
 
549
  msgstr ""
550
 
551
+ #: admin.php:29
552
+ msgid "Animations"
 
 
 
 
553
  msgstr ""
554
 
555
+ #: admin.php:30
556
+ msgid "Behaviour"
 
 
 
 
557
  msgstr ""
558
 
559
+ #: admin.php:31
560
+ msgid "Galleries"
561
  msgstr ""
562
 
563
+ #: admin.php:32
564
+ msgid "Other"
 
 
565
  msgstr ""
566
 
567
+ #: admin.php:33
568
+ msgid "Troubleshooting"
569
  msgstr ""
570
 
571
+ #: admin.php:79
572
+ msgid "Save Changes"
573
  msgstr ""
574
 
575
+ #: admin.php:87
576
+ msgid "If you use FancyBox and like it, buy the author a beer!"
 
 
577
  msgstr ""
578
 
579
+ #: admin.php:104
580
+ msgid "The author of this WordPress Plugin also likes beer :P"
 
 
 
 
 
 
581
  msgstr ""
582
 
583
+ #: admin.php:114
584
+ msgid "Follow me on Twitter for more WordPress Plugins and Themes"
585
  msgstr ""
586
 
587
+ #: fancybox.php:377
588
+ msgid "Settings"
 
 
589
  msgstr ""
lib/admin-js.php DELETED
@@ -1,54 +0,0 @@
1
- <?php
2
-
3
- if (is_plugin_page()) {
4
-
5
- ?>
6
-
7
- <script type="text/javascript">
8
-
9
- jQuery(function(){
10
-
11
- // Tabs
12
- jQuery("#fbfwTabs").tabs();
13
-
14
- // Advanced Settings Switcher
15
- jQuery("#advOpsSwitch").click(function(){
16
- jQuery(".advOpts").toggle("slow");
17
- });
18
-
19
- // Troubleshooting & Settings Switcher
20
- jQuery("#troOpsSwitch").click(function(){
21
- jQuery(".troOpts").toggle("slow");
22
- });
23
-
24
- // Hide Custom Expresion textarea if not needed
25
- var galleryType = jQuery("input:radio[name=mfbfw_galleryType]:checked").val();
26
-
27
- switch (galleryType) {
28
- case "all":
29
- case "none":
30
- case "post":
31
- jQuery("#customExpressionBlock").css("display", "none");
32
- }
33
-
34
- jQuery("#mfbfw_galleryTypeAll").click(function () {
35
- jQuery("#customExpressionBlock").hide("slow");
36
- });
37
-
38
- jQuery("#mfbfw_galleryTypePost").click(function () {
39
- jQuery("#customExpressionBlock").hide("slow");
40
- });
41
-
42
- jQuery("#mfbfw_galleryTypeCustom").click(function () {
43
- jQuery("#customExpressionBlock").show("slow");
44
- });
45
-
46
- })
47
-
48
- </script>
49
-
50
- <?php
51
-
52
- }
53
-
54
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: moskis
3
  Donate link: https://www.asmallorange.com/extras/donate/?id=10218
4
  Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures
5
  Requires at least: 2.8
6
- Tested up to: 2.9
7
- Stable tag: 2.7.2
8
 
9
  Seamlessly integrates FancyBox into your blog: Upload, activate, and you're done. No further configuration needed. However, you can customize it from the Options Page if you like... :)
10
 
@@ -15,7 +15,7 @@ Seamlessly integrates FancyBox into your blog: Upload, activate, and you're done
15
 
16
  You can easely customize almost anything you can think about fancybox: the border, margin width and color, zoom speed, animation type, close button position, overlay color and opacity and even more advanced option like several options to group images into galleries, and more...
17
 
18
- By default, the plugin will use jQuery to apply [FancyBox](http://fancy.klade.lv/) to ANY thumbnails that link directly to an image. This includes posts, the sidebar, etc, so you can activate it and it will be applied automatically.
19
 
20
  = Known Bugs =
21
  * Shadows not perfect on IE6/7
@@ -27,7 +27,12 @@ You can see the plugin working on [my blog](http://blog.moskis.net/downloads/plu
27
 
28
  == Changelog ==
29
 
30
- This changelog is for the WordPress plugin. For the Fancybox main changelog go to its [home page](http://fancy.klade.lv/).
 
 
 
 
 
31
 
32
  = 2.7.2 =
33
  * Fixed: Layout problem in options page in WordPress 2.9
@@ -126,7 +131,7 @@ This changelog is for the WordPress plugin. For the Fancybox main changelog go t
126
 
127
  1. Upload the `fancybox-for-wordpress` folder to the `/wp-content/plugins/` directory
128
  2. Activate the plugin through the 'Plugins' menu in WordPress
129
- 3. That's it, [FancyBox](http://fancy.klade.lv/) will be automatically applied to all your image links and galleries.
130
  4. If you want to customize a bit the look and feel of FancyBox, go to the Options Page under General Options in the WordPress Admin panel
131
 
132
 
@@ -140,7 +145,7 @@ This changelog is for the WordPress plugin. For the Fancybox main changelog go t
140
 
141
  = Are you the author of FancyBox? =
142
 
143
- NO. I just ported it to WordPress. For more info on the FancyBox script itself [visit its website](http://fancy.klade.lv/home).
144
 
145
  = Help translate the plugin to your language =
146
 
3
  Donate link: https://www.asmallorange.com/extras/donate/?id=10218
4
  Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures
5
  Requires at least: 2.8
6
+ Tested up to: 3.0.4
7
+ Stable tag: 2.7.3
8
 
9
  Seamlessly integrates FancyBox into your blog: Upload, activate, and you're done. No further configuration needed. However, you can customize it from the Options Page if you like... :)
10
 
15
 
16
  You can easely customize almost anything you can think about fancybox: the border, margin width and color, zoom speed, animation type, close button position, overlay color and opacity and even more advanced option like several options to group images into galleries, and more...
17
 
18
+ By default, the plugin will use jQuery to apply [FancyBox](http://fancybox.net/) to ANY thumbnails that link directly to an image. This includes posts, the sidebar, etc, so you can activate it and it will be applied automatically.
19
 
20
  = Known Bugs =
21
  * Shadows not perfect on IE6/7
27
 
28
  == Changelog ==
29
 
30
+ This changelog is for the WordPress plugin. For the Fancybox main changelog go to its [home page](http://fancybox.net/changelog/).
31
+
32
+ = 2.7.3 =
33
+ * Fixed: Settings not saving in some browsers. Thanks to [supertomate](http://wordpress.org/support/topic/plugin-fancybox-for-wordpress-save-changes-button-doesnt-submit-form?replies=7#post-1765041)
34
+ * Fixed: JS being added to other plugins' configuration pages. Thanks to [Brandon Dove](http://wordpress.org/support/topic/plugin-fancybox-for-wordpress-theres-a-problem-with-is_plugin_page?replies=1#post-1888828)
35
+ * Added: Support section in options page with better information
36
 
37
  = 2.7.2 =
38
  * Fixed: Layout problem in options page in WordPress 2.9
131
 
132
  1. Upload the `fancybox-for-wordpress` folder to the `/wp-content/plugins/` directory
133
  2. Activate the plugin through the 'Plugins' menu in WordPress
134
+ 3. That's it, [FancyBox](http://fancybox.net/) will be automatically applied to all your image links and galleries.
135
  4. If you want to customize a bit the look and feel of FancyBox, go to the Options Page under General Options in the WordPress Admin panel
136
 
137
 
145
 
146
  = Are you the author of FancyBox? =
147
 
148
+ NO. I just ported it to WordPress. For more info on the FancyBox script itself [visit its website](http://fancybox.net/).
149
 
150
  = Help translate the plugin to your language =
151