FancyBox for WordPress - Version 2.6.0

Version Description

Download this release

Release Info

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

Code changes from version 2.5.1 to 2.6.0

admin.php CHANGED
@@ -86,7 +86,12 @@ function mfbfw_options_page() {
86
 
87
  <form method="post" action="options.php" id="options">
88
 
89
- <?php echo wp_nonce_field('update-options'); ?>
 
 
 
 
 
90
 
91
  <table class="form-table" style="clear:none;">
92
  <tbody>
@@ -398,18 +403,28 @@ function mfbfw_options_page() {
398
  <div id="customExpressionBlock">
399
 
400
  <label for="mfbfw_customExpression">
401
- <textarea rows="8" cols="30" name="mfbfw_customExpression" wrap="physical" id="mfbfw_customExpression"><?php echo ($settings['customExpression']); ?></textarea>
402
  </label><br />
403
 
404
  <small><strong><em><?php _e('Custom expression guidelines:', 'mfbfw'); ?></em></strong></small><br />
405
 
406
- <small><em><?php _e('The custom expression has to apply <code>class="fancybox"</code> to the links where you want to use FancyBox.', 'mfbfw'); ?></em></small><br />
 
 
 
 
 
 
 
 
 
 
407
 
408
- <small><em><?php _e('The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class.', 'mfbfw'); ?></em></small><br />
409
 
410
- <small><em><?php _e('You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions.', 'mfbfw'); ?></em></small><br />
411
 
412
- <small><em><?php _e('Do not call the <code>fancybox()</code> function here, the plugin does this for you.', 'mfbfw'); ?></em></small><br /><br />
413
 
414
  </div>
415
 
@@ -497,7 +512,6 @@ function mfbfw_options_page() {
497
 
498
 
499
  <input type="hidden" name="action" value="update" />
500
- <input type="hidden" name="page_options" value="mfbfw_autoApply,mfbfw_imageScale,mfbfw_borderColor,mfbfw_closeHorPos,mfbfw_closeVerPos,mfbfw_padding,mfbfw_paddingColor,mfbfw_zoomOpacity,mfbfw_zoomSpeedIn,mfbfw_zoomSpeedOut,mfbfw_overlayShow,mfbfw_overlayColor,mfbfw_overlayOpacity,mfbfw_easing,mfbfw_easingIn,mfbfw_easingOut,mfbfw_easingChange,mfbfw_hideOnContentClick,mfbfw_centerOnScroll,mfbfw_noTextLinks,mfbfw_galleryType,mfbfw_customExpression,mfbfw_frameWidth,mfbfw_frameHeight,mfbfw_nojQuery,mfbfw_jQnoConflict,mfbfw_uninstall" />
501
 
502
  <p class="submit">
503
  <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes','mfbfw'); ?>" />
86
 
87
  <form method="post" action="options.php" id="options">
88
 
89
+ <?php
90
+
91
+ wp_nonce_field('update-options');
92
+ settings_fields('mfbfw-options');
93
+
94
+ ?>
95
 
96
  <table class="form-table" style="clear:none;">
97
  <tbody>
403
  <div id="customExpressionBlock">
404
 
405
  <label for="mfbfw_customExpression">
406
+ <textarea rows="10" cols="50" class="large-text code" name="mfbfw_customExpression" wrap="physical" id="mfbfw_customExpression"><?php echo ($settings['customExpression']); ?></textarea>
407
  </label><br />
408
 
409
  <small><strong><em><?php _e('Custom expression guidelines:', 'mfbfw'); ?></em></strong></small><br />
410
 
411
+ <small><em><?php _e('&middot; The custom expression has to apply <code>class="fancybox"</code> to the links where you want to use FancyBox. Do not call the <code>fancybox()</code> function here, the plugin does this for you.', 'mfbfw'); ?></em></small><br />
412
+
413
+ <small><em><?php _e('&middot; The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class.', 'mfbfw'); ?></em></small><br />
414
+
415
+ <small><em><?php _e('&middot; You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions.', 'mfbfw'); ?></em></small><br />
416
+
417
+ <small><em><?php _e('&middot; You can use <code>jQuery(thumbnails)</code> like in the example expression to apply FancyBox to thumbnails that link to these extensions: BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase).', 'mfbfw'); ?></em></small><br />
418
+
419
+ <small><em><?php _e('&middot; If you want to do it manually you can use something like <code>jQuery("a:has(img)[href$=\'.jpg\']")</code> or whatever works for you.', 'mfbfw'); ?></em></small><br />
420
+
421
+ <small><em><?php _e('See the <a href="http://docs.jquery.com/" target="_blank">jQuery Documentation</a> for more help.', 'mfbfw'); ?></em></small><br /><br />
422
 
423
+ <small><strong><em><?php _e('Examples:', 'mfbfw'); ?></em></strong></small><br />
424
 
425
+ <small><em><code>jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();</code></em></small><br />
426
 
427
+ <small><em><code>jQuery("a:has(img)[href$='.jpg']").addClass("fancybox").attr("rel","fancybox").getTitle();</code></em></small><br /><br />
428
 
429
  </div>
430
 
512
 
513
 
514
  <input type="hidden" name="action" value="update" />
 
515
 
516
  <p class="submit">
517
  <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes','mfbfw'); ?>" />
fancybox.php CHANGED
@@ -3,7 +3,7 @@
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.5.1
7
  Author: Jose Pardilla
8
  Author URI: http://moskis.net/
9
  */
@@ -12,42 +12,34 @@ Author URI: http://moskis.net/
12
  // When plugin is activated, update version, and set any new settings to default
13
  function mfbfw_install() {
14
 
15
- update_option('mfbfw_active_version', '2.5.1');
16
 
17
- add_option('mfbfw_borderColor', '#BBBBBB');
18
- add_option('mfbfw_closeHorPos', 'right');
19
- add_option('mfbfw_closeVerPos', 'top');
20
- add_option('mfbfw_paddingColor', '#FFFFFF');
21
- add_option('mfbfw_padding', '10');
22
- add_option('mfbfw_overlayShow', 'on');
23
- add_option('mfbfw_overlayColor', '#666666');
24
  add_option('mfbfw_overlayOpacity', '0.3');
25
- add_option('mfbfw_zoomOpacity', 'on');
26
- add_option('mfbfw_zoomSpeedIn', '500');
27
- add_option('mfbfw_zoomSpeedOut', '500');
28
- add_option('mfbfw_easing', '');
29
- add_option('mfbfw_easingIn', 'easeOutBack');
30
- add_option('mfbfw_easingOut', 'easeInBack');
31
- add_option('mfbfw_easingChange', 'easeInOutQuart');
32
-
33
- add_option('mfbfw_imageScale', 'on');
34
- add_option('mfbfw_centerOnScroll', 'on');
35
  add_option('mfbfw_hideOnContentClick', '');
36
- add_option('mfbfw_frameWidth', '640');
37
- add_option('mfbfw_frameHeight', '500');
38
 
39
- add_option('mfbfw_galleryType', 'all');
40
- add_option('mfbfw_customExpression',
41
- '// This example expression will group all the image links in a page and make a gallery with them.
42
- // Each line adds support to a different image format: JPG, JPEG, GIF, PNG and BMP.
43
 
44
- jQuery("a:has(img)[href$=\'.jpg\']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
45
- jQuery("a:has(img)[href$=\'.jpeg\']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
46
- jQuery("a:has(img)[href$=\'.gif\']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
47
- jQuery("a:has(img)[href$=\'.png\']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
48
- jQuery("a:has(img)[href$=\'.bmp\']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();');
49
-
50
- add_option('mfbfw_nojQuery', '');
51
  add_option('mfbfw_jQnoConflict', 'on');
52
 
53
  add_option('mfbfw_uninstall', '');
@@ -110,32 +102,32 @@ function mfbfw_get_settings() {
110
 
111
  'version' => get_option('mfbfw_active_version'),
112
 
113
- 'borderColor' => get_option('mfbfw_borderColor'),
114
- 'closeHorPos' => get_option('mfbfw_closeHorPos'),
115
- 'closeVerPos' => get_option('mfbfw_closeVerPos'),
116
- 'paddingColor' => get_option('mfbfw_paddingColor'),
117
- 'padding' => get_option('mfbfw_padding'),
118
- 'overlayShow' => get_option('mfbfw_overlayShow'),
119
- 'overlayColor' => get_option('mfbfw_overlayColor'),
120
  'overlayOpacity' => get_option('mfbfw_overlayOpacity'),
121
- 'zoomOpacity' => get_option('mfbfw_zoomOpacity'),
122
- 'zoomSpeedIn' => get_option('mfbfw_zoomSpeedIn'),
123
- 'zoomSpeedOut' => get_option('mfbfw_zoomSpeedOut'),
124
- 'easing' => get_option('mfbfw_easing'),
125
- 'easingIn' => get_option('mfbfw_easingIn'),
126
- 'easingOut' => get_option('mfbfw_easingOut'),
127
- 'easingChange' => get_option('mfbfw_easingChange'),
128
-
129
- 'imageScale' => get_option('mfbfw_imageScale'),
130
- 'centerOnScroll' => get_option('mfbfw_centerOnScroll'),
131
  'hideOnContentClick' => get_option('mfbfw_hideOnContentClick'),
132
- 'frameWidth' => get_option('mfbfw_frameWidth'),
133
- 'frameHeight' => get_option('mfbfw_frameHeight'),
134
 
135
- 'galleryType' => get_option('mfbfw_galleryType'),
136
  'customExpression' => get_option('mfbfw_customExpression'),
137
 
138
- 'nojQuery' => get_option('mfbfw_nojQuery'),
139
  'jQnoConflict' => get_option('mfbfw_jQnoConflict'),
140
 
141
  'uninstall' => get_option('mfbfw_uninstall')
@@ -166,7 +158,7 @@ function mfbfw_load() {
166
 
167
  if (get_option('mfbfw_easing')) {
168
 
169
- wp_enqueue_script('jqueryeasing', WP_PLUGIN_URL . '/fancybox-for-wordpress/jquery.easing.1.3.js', array('jquery'), '1.3.2'); // Load easing javascript file if required
170
 
171
  }
172
 
@@ -180,7 +172,7 @@ function mfbfw_css() {
180
 
181
  $settings = mfbfw_get_settings();
182
 
183
- echo "\n"."<!-- Fancybox for WordPress v". $settings['version'] ." -->"."\n".'<link rel="stylesheet" href="'.WP_PLUGIN_URL.'/fancybox-for-wordpress/fancybox.css" type="text/css" media="screen" />'."\n";
184
 
185
  ?>
186
 
@@ -200,6 +192,8 @@ function mfbfw_css() {
200
  function mfbfw_init() {
201
 
202
  $settings = mfbfw_get_settings();
 
 
203
 
204
  ?>
205
 
@@ -209,85 +203,36 @@ function mfbfw_init() {
209
 
210
  jQuery(function(){
211
 
212
- <?php // This copies the title of every IMG tag and adds it to its parent A so that fancybox can use it ?>
213
- jQuery.fn.getTitle = function() {
214
- var arr = jQuery("a.fancybox");
215
- jQuery.each(arr, function() {
216
- var title = jQuery(this).children("img").attr("title");
217
- jQuery(this).attr('title',title);
218
- })
219
- }
 
 
 
220
 
221
  <?php if ($settings['galleryType'] == 'post') {
222
 
223
  // Gallery type BY POST and we are on post or page (so only one post or page is visible)
224
  if ( is_single() | is_page() ) { ?>
225
 
226
- jQuery("a:has(img)[href$='.jpg']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
227
- jQuery("a:has(img)[href$='.jpeg']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
228
- jQuery("a:has(img)[href$='.gif']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
229
- jQuery("a:has(img)[href$='.png']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
230
- jQuery("a:has(img)[href$='.bmp']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
231
 
232
  <?php }
233
 
234
  // Gallery type BY POST, but we are neither on post or page, so we make a different rel attribute on each post
235
  else { ?>
236
 
237
- jQuery('.post:eq(0)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox1').getTitle();
238
- jQuery('.post:eq(1)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox2').getTitle();
239
- jQuery('.post:eq(2)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox3').getTitle();
240
- jQuery('.post:eq(3)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox4').getTitle();
241
- jQuery('.post:eq(4)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox5').getTitle();
242
- jQuery('.post:eq(5)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox6').getTitle();
243
- jQuery('.post:eq(6)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox7').getTitle();
244
- jQuery('.post:eq(7)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox8').getTitle();
245
- jQuery('.post:eq(8)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox9').getTitle();
246
- jQuery('.post:eq(9)').contents().find("a:has(img)[href$='.jpg']").addClass("fancybox").attr('rel','fancybox10').getTitle();
247
-
248
- jQuery('.post:eq(0)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox1').getTitle();
249
- jQuery('.post:eq(1)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox2').getTitle();
250
- jQuery('.post:eq(2)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox3').getTitle();
251
- jQuery('.post:eq(3)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox4').getTitle();
252
- jQuery('.post:eq(4)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox5').getTitle();
253
- jQuery('.post:eq(5)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox6').getTitle();
254
- jQuery('.post:eq(6)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox7').getTitle();
255
- jQuery('.post:eq(7)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox8').getTitle();
256
- jQuery('.post:eq(8)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox9').getTitle();
257
- jQuery('.post:eq(9)').contents().find("a:has(img)[href$='.jpeg']").addClass("fancybox").attr('rel','fancybox10').getTitle();
258
-
259
- jQuery('.post:eq(0)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox1').getTitle();
260
- jQuery('.post:eq(1)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox2').getTitle();
261
- jQuery('.post:eq(2)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox3').getTitle();
262
- jQuery('.post:eq(3)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox4').getTitle();
263
- jQuery('.post:eq(4)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox5').getTitle();
264
- jQuery('.post:eq(5)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox6').getTitle();
265
- jQuery('.post:eq(6)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox7').getTitle();
266
- jQuery('.post:eq(7)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox8').getTitle();
267
- jQuery('.post:eq(8)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox9').getTitle();
268
- jQuery('.post:eq(9)').contents().find("a:has(img)[href$='.gif']").addClass("fancybox").attr('rel','fancybox10').getTitle();
269
-
270
- jQuery('.post:eq(0)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox1').getTitle();
271
- jQuery('.post:eq(1)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox2').getTitle();
272
- jQuery('.post:eq(2)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox3').getTitle();
273
- jQuery('.post:eq(3)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox4').getTitle();
274
- jQuery('.post:eq(4)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox5').getTitle();
275
- jQuery('.post:eq(5)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox6').getTitle();
276
- jQuery('.post:eq(6)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox7').getTitle();
277
- jQuery('.post:eq(7)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox8').getTitle();
278
- jQuery('.post:eq(8)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox9').getTitle();
279
- jQuery('.post:eq(9)').contents().find("a:has(img)[href$='.png']").addClass("fancybox").attr('rel','fancybox10').getTitle();
280
-
281
- jQuery('.post:eq(0)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox1').getTitle();
282
- jQuery('.post:eq(1)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox2').getTitle();
283
- jQuery('.post:eq(2)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox3').getTitle();
284
- jQuery('.post:eq(3)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox4').getTitle();
285
- jQuery('.post:eq(4)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox5').getTitle();
286
- jQuery('.post:eq(5)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox6').getTitle();
287
- jQuery('.post:eq(6)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox7').getTitle();
288
- jQuery('.post:eq(7)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox8').getTitle();
289
- jQuery('.post:eq(8)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox9').getTitle();
290
- jQuery('.post:eq(9)').contents().find("a:has(img)[href$='.bmp']").addClass("fancybox").attr('rel','fancybox10').getTitle();
291
 
292
  <?php }
293
 
@@ -296,22 +241,14 @@ function mfbfw_init() {
296
  // Gallery type ALL
297
  elseif ($settings['galleryType'] == 'all') { ?>
298
 
299
- jQuery("a:has(img)[href$='.jpg']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
300
- jQuery("a:has(img)[href$='.jpeg']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
301
- jQuery("a:has(img)[href$='.gif']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
302
- jQuery("a:has(img)[href$='.png']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
303
- jQuery("a:has(img)[href$='.bmp']").addClass("fancybox").attr({ rel: "fancybox" }).getTitle();
304
 
305
  <?php }
306
 
307
  // Gallery type NONE
308
  elseif ($settings['galleryType'] == 'none') { ?>
309
 
310
- jQuery("a:has(img)[href$='.jpg']").addClass("fancybox").getTitle();
311
- jQuery("a:has(img)[href$='.jpeg']").addClass("fancybox").getTitle();
312
- jQuery("a:has(img)[href$='.gif']").addClass("fancybox").getTitle();
313
- jQuery("a:has(img)[href$='.png']").addClass("fancybox").getTitle();
314
- jQuery("a:has(img)[href$='.bmp']").addClass("fancybox").getTitle();
315
 
316
  <?php }
317
 
@@ -403,17 +340,7 @@ function mfbfw_admin_menu() {
403
 
404
  require dirname(__FILE__) . '/admin.php';
405
 
406
- // global $wp_version;
407
- // $menutitle = '';
408
- //
409
- // if ( version_compare( $wp_version, '2.6.999', '>' ) ) {
410
- //
411
- // $menutitle = '<img src="' . WP_PLUGIN_URL .'/fancybox-for-wordpress/img/extra_menu.png" alt="" width="12" height="12" />' . ' ';
412
- // $menutitle .= ('Fancybox for WP');
413
- // add_options_page('Fancybox for WordPress Options', $menutitle, 10, 'fancybox-for-wordpress', 'mfbfw_options_page');
414
- // } else {
415
- add_submenu_page('options-general.php', 'Fancybox for WordPress Options', 'Fancybox for WP', 10, 'fancybox-for-wordpress', 'mfbfw_options_page');
416
- // }
417
 
418
  }
419
 
@@ -422,7 +349,7 @@ function mfbfw_admin_menu() {
422
  function mfbfw_textdomain() {
423
 
424
  if (function_exists('load_plugin_textdomain')) {
425
- load_plugin_textdomain('mfbfw', 'wp-content/plugins/fancybox-for-wordpress/languages', 'fancybox-for-wordpress/languages');
426
  }
427
 
428
  }
@@ -444,14 +371,47 @@ function mfbfw_plugin_action_links($links, $file) {
444
  }
445
 
446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
 
448
  // Actions
449
  add_action('init', 'mfbfw_textdomain'); // Load Text Domain
450
  add_action('wp_print_scripts', 'mfbfw_load'); // Load FancyBox Script
451
- add_action('wp_head', 'mfbfw_css'); // Fancybox Stylesheet
452
  add_action('wp_head', 'mfbfw_init'); // Initiate Fancybox
453
  add_action('admin_head', 'mfbfw_admin_head'); // Admin Panel Head
454
  add_action('admin_menu', 'mfbfw_admin_menu'); // Admin Panel Page
 
455
 
456
 
457
  // Filters
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.6.0
7
  Author: Jose Pardilla
8
  Author URI: http://moskis.net/
9
  */
12
  // When plugin is activated, update version, and set any new settings to default
13
  function mfbfw_install() {
14
 
15
+ update_option('mfbfw_active_version', '2.6.0');
16
 
17
+ add_option('mfbfw_borderColor', '#BBBBBB');
18
+ add_option('mfbfw_closeHorPos', 'right');
19
+ add_option('mfbfw_closeVerPos', 'top');
20
+ add_option('mfbfw_paddingColor', '#FFFFFF');
21
+ add_option('mfbfw_padding', '10');
22
+ add_option('mfbfw_overlayShow', 'on');
23
+ add_option('mfbfw_overlayColor', '#666666');
24
  add_option('mfbfw_overlayOpacity', '0.3');
25
+ add_option('mfbfw_zoomOpacity', 'on');
26
+ add_option('mfbfw_zoomSpeedIn', '500');
27
+ add_option('mfbfw_zoomSpeedOut', '500');
28
+ add_option('mfbfw_easing', '');
29
+ add_option('mfbfw_easingIn', 'easeOutBack');
30
+ add_option('mfbfw_easingOut', 'easeInBack');
31
+ add_option('mfbfw_easingChange', 'easeInOutQuart');
32
+
33
+ add_option('mfbfw_imageScale', 'on');
34
+ add_option('mfbfw_centerOnScroll', 'on');
35
  add_option('mfbfw_hideOnContentClick', '');
36
+ add_option('mfbfw_frameWidth', '640');
37
+ add_option('mfbfw_frameHeight', '500');
38
 
39
+ add_option('mfbfw_galleryType', 'all');
40
+ add_option('mfbfw_customExpression', 'jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();');
 
 
41
 
42
+ add_option('mfbfw_nojQuery', '');
 
 
 
 
 
 
43
  add_option('mfbfw_jQnoConflict', 'on');
44
 
45
  add_option('mfbfw_uninstall', '');
102
 
103
  'version' => get_option('mfbfw_active_version'),
104
 
105
+ 'borderColor' => get_option('mfbfw_borderColor'),
106
+ 'closeHorPos' => get_option('mfbfw_closeHorPos'),
107
+ 'closeVerPos' => get_option('mfbfw_closeVerPos'),
108
+ 'paddingColor' => get_option('mfbfw_paddingColor'),
109
+ 'padding' => get_option('mfbfw_padding'),
110
+ 'overlayShow' => get_option('mfbfw_overlayShow'),
111
+ 'overlayColor' => get_option('mfbfw_overlayColor'),
112
  'overlayOpacity' => get_option('mfbfw_overlayOpacity'),
113
+ 'zoomOpacity' => get_option('mfbfw_zoomOpacity'),
114
+ 'zoomSpeedIn' => get_option('mfbfw_zoomSpeedIn'),
115
+ 'zoomSpeedOut' => get_option('mfbfw_zoomSpeedOut'),
116
+ 'easing' => get_option('mfbfw_easing'),
117
+ 'easingIn' => get_option('mfbfw_easingIn'),
118
+ 'easingOut' => get_option('mfbfw_easingOut'),
119
+ 'easingChange' => get_option('mfbfw_easingChange'),
120
+
121
+ 'imageScale' => get_option('mfbfw_imageScale'),
122
+ 'centerOnScroll' => get_option('mfbfw_centerOnScroll'),
123
  'hideOnContentClick' => get_option('mfbfw_hideOnContentClick'),
124
+ 'frameWidth' => get_option('mfbfw_frameWidth'),
125
+ 'frameHeight' => get_option('mfbfw_frameHeight'),
126
 
127
+ 'galleryType' => get_option('mfbfw_galleryType'),
128
  'customExpression' => get_option('mfbfw_customExpression'),
129
 
130
+ 'nojQuery' => get_option('mfbfw_nojQuery'),
131
  'jQnoConflict' => get_option('mfbfw_jQnoConflict'),
132
 
133
  'uninstall' => get_option('mfbfw_uninstall')
158
 
159
  if (get_option('mfbfw_easing')) {
160
 
161
+ wp_enqueue_script('jqueryeasing', WP_PLUGIN_URL . '/fancybox-for-wordpress/jquery.easing.1.3.pack.js', array('jquery'), '1.3.2'); // Load easing javascript file if required
162
 
163
  }
164
 
172
 
173
  $settings = mfbfw_get_settings();
174
 
175
+ echo "\n".'<link rel="stylesheet" href="'.WP_PLUGIN_URL.'/fancybox-for-wordpress/fancybox.css" type="text/css" media="screen" />'."\n";
176
 
177
  ?>
178
 
192
  function mfbfw_init() {
193
 
194
  $settings = mfbfw_get_settings();
195
+
196
+ echo "\n"."\n"."<!-- Fancybox for WordPress v". $settings['version'] ." -->"."\n";
197
 
198
  ?>
199
 
203
 
204
  jQuery(function(){
205
 
206
+ <?php // This copies the title of every IMG tag and adds it to its parent A so that fancybox can use it ?>
207
+ jQuery.fn.getTitle = function() {
208
+ var arr = jQuery("a.fancybox");
209
+ jQuery.each(arr, function() {
210
+ var title = jQuery(this).children("img").attr("title");
211
+ jQuery(this).attr('title',title);
212
+ })
213
+ }
214
+
215
+ // Supported file extensions
216
+ var thumbnails = 'a:has(img)[href$=".bmp"],a:has(img)[href$=".gif"],a:has(img)[href$=".jpg"],a:has(img)[href$=".jpeg"],a:has(img)[href$=".png"],a:has(img)[href$=".BMP"],a:has(img)[href$=".GIF"],a:has(img)[href$=".JPG"],a:has(img)[href$=".JPEG"],a:has(img)[href$=".PNG"]';
217
 
218
  <?php if ($settings['galleryType'] == 'post') {
219
 
220
  // Gallery type BY POST and we are on post or page (so only one post or page is visible)
221
  if ( is_single() | is_page() ) { ?>
222
 
223
+ jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();
 
 
 
 
224
 
225
  <?php }
226
 
227
  // Gallery type BY POST, but we are neither on post or page, so we make a different rel attribute on each post
228
  else { ?>
229
 
230
+ var posts = jQuery('.post');
231
+
232
+ posts.each(function() {
233
+ jQuery(this).find(thumbnails).addClass("fancybox").attr('rel','fancybox'+posts.index(this)).getTitle()
234
+ });
235
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
  <?php }
238
 
241
  // Gallery type ALL
242
  elseif ($settings['galleryType'] == 'all') { ?>
243
 
244
+ jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();
 
 
 
 
245
 
246
  <?php }
247
 
248
  // Gallery type NONE
249
  elseif ($settings['galleryType'] == 'none') { ?>
250
 
251
+ jQuery(thumbnails).addClass("fancybox").getTitle();
 
 
 
 
252
 
253
  <?php }
254
 
340
 
341
  require dirname(__FILE__) . '/admin.php';
342
 
343
+ add_submenu_page('options-general.php', 'Fancybox for WordPress Options', 'Fancybox for WP', 10, 'fancybox-for-wordpress', 'mfbfw_options_page');
 
 
 
 
 
 
 
 
 
 
344
 
345
  }
346
 
349
  function mfbfw_textdomain() {
350
 
351
  if (function_exists('load_plugin_textdomain')) {
352
+ load_plugin_textdomain('mfbfw', WP_PLUGIN_URL . '/fancybox-for-wordpress/languages', 'fancybox-for-wordpress/languages');
353
  }
354
 
355
  }
371
  }
372
 
373
 
374
+ // Load text domain
375
+ function mfbfw_admin_init() {
376
+
377
+ register_setting('mfbfw-options', 'mfbfw_borderColor');
378
+ register_setting('mfbfw-options', 'mfbfw_closeHorPos');
379
+ register_setting('mfbfw-options', 'mfbfw_closeVerPos');
380
+ register_setting('mfbfw-options', 'mfbfw_paddingColor');
381
+ register_setting('mfbfw-options', 'mfbfw_padding');
382
+ register_setting('mfbfw-options', 'mfbfw_overlayShow');
383
+ register_setting('mfbfw-options', 'mfbfw_overlayColor');
384
+ register_setting('mfbfw-options', 'mfbfw_overlayOpacity');
385
+ register_setting('mfbfw-options', 'mfbfw_zoomOpacity');
386
+ register_setting('mfbfw-options', 'mfbfw_zoomSpeedIn');
387
+ register_setting('mfbfw-options', 'mfbfw_zoomSpeedOut');
388
+ register_setting('mfbfw-options', 'mfbfw_easing');
389
+ register_setting('mfbfw-options', 'mfbfw_easingIn');
390
+ register_setting('mfbfw-options', 'mfbfw_easingOut');
391
+ register_setting('mfbfw-options', 'mfbfw_easingChange');
392
+ register_setting('mfbfw-options', 'mfbfw_imageScale');
393
+ register_setting('mfbfw-options', 'mfbfw_centerOnScroll');
394
+ register_setting('mfbfw-options', 'mfbfw_hideOnContentClick');
395
+ register_setting('mfbfw-options', 'mfbfw_frameWidth');
396
+ register_setting('mfbfw-options', 'mfbfw_frameHeight');
397
+ register_setting('mfbfw-options', 'mfbfw_galleryType');
398
+ register_setting('mfbfw-options', 'mfbfw_customExpression');
399
+ register_setting('mfbfw-options', 'mfbfw_nojQuery');
400
+ register_setting('mfbfw-options', 'mfbfw_jQnoConflict');
401
+ register_setting('mfbfw-options', 'mfbfw_uninstall');
402
+
403
+ }
404
+
405
+
406
 
407
  // Actions
408
  add_action('init', 'mfbfw_textdomain'); // Load Text Domain
409
  add_action('wp_print_scripts', 'mfbfw_load'); // Load FancyBox Script
410
+ add_action('wp_print_styles', 'mfbfw_css'); // Fancybox Stylesheet
411
  add_action('wp_head', 'mfbfw_init'); // Initiate Fancybox
412
  add_action('admin_head', 'mfbfw_admin_head'); // Admin Panel Head
413
  add_action('admin_menu', 'mfbfw_admin_menu'); // Admin Panel Page
414
+ add_action('admin_init', 'mfbfw_admin_init'); // Register options
415
 
416
 
417
  // Filters
jquery.easing.1.3.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.1.3.pack.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d)},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b}});
languages/mfbfw-es_ES.mo CHANGED
Binary file
languages/mfbfw-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: FancyBox for WordPress Español\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
5
- "POT-Creation-Date: 2009-03-25 16:40+0000\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Jose Pardilla 'Th3 ProphetMan' <jose@moskis.net>\n"
8
  "Language-Team: Moskis <jose@moskis.net>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -61,270 +61,288 @@ msgstr "Estas son las opciones principales, que te permiten ajustar los colores,
61
  msgid "<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
62
  msgstr "<strong>Nota:</strong> Usar un plugin de caché puede hacer que los cambios no surjan efecto inmediatamente, vacía el cache después de guardar los cambios or desactivalo hasta que termines de ajustar estas opciones."
63
 
64
- #: admin.php:95
65
  msgid "Border Color"
66
  msgstr "Color del Borde"
67
 
68
- #: admin.php:101
69
  msgid "HTML color of the border (default: #BBBBBB)"
70
  msgstr "Color HTML del borde (por defecto: #BBBBBB)"
71
 
72
- #: admin.php:109
73
  msgid "Close Button Position"
74
  msgstr "Posición del Botón de Cerrar"
75
 
76
- #: admin.php:115
77
  msgid "Left"
78
  msgstr "Izquierda"
79
 
80
- #: admin.php:120
81
  msgid "Right (default)"
82
  msgstr "Derecha (por defecto)"
83
 
84
- #: admin.php:125
85
  msgid "Bottom"
86
  msgstr "Abajo"
87
 
88
- #: admin.php:130
89
  msgid "Top (default)"
90
  msgstr "Arriba (por defecto)"
91
 
92
- #: admin.php:138
93
  msgid "Padding"
94
  msgstr "Margen"
95
 
96
- #: admin.php:144
97
  msgid "HTML color of the padding (default: #FFFFFF)"
98
  msgstr "Color HTML del margen (por defecto: #FFFFFF)"
99
 
100
- #: admin.php:149
101
  msgid "Padding size in pixels (default: 10)"
102
  msgstr "Tamaño del margen en píxeles (por defecto: 10)"
103
 
104
- #: admin.php:152
105
  msgid "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</strong> to \"0\" for the classic FancyBox look)"
106
  msgstr "(Pon el <strong>Color del Borde</strong> en \"#000000\" y el <strong>Tamaño del Margen</strong> en \"0\" para el aspecto clásico de FancyBox)"
107
 
108
- #: admin.php:159
109
  msgid "Overlay Options"
110
  msgstr "Opciones de Overlay"
111
 
112
- #: admin.php:165
113
  msgid "Add overlay (default: on)"
114
  msgstr "Añadir overlay (por defecto: activado)"
115
 
116
- #: admin.php:170
117
  msgid "HTML color of the overlay (default: #666666)"
118
  msgstr "Color HTML del overlay (por defecto: #666666)"
119
 
120
- #: admin.php:183
121
  msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
122
  msgstr "Opacidad del overlay. 0 es transparente, 1 es opaco (por defecto: 0.3)"
123
 
124
- #: admin.php:191
125
  msgid "Zoom Options"
126
  msgstr "Opciones de Zoom"
127
 
128
- #: admin.php:197
129
  msgid "Change content transparency during zoom animations (default: on)"
130
  msgstr "Animar opacidad durante el efecto de zoom (por defecto: activado)"
131
 
132
- #: admin.php:209
133
  msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
134
  msgstr "Velocidad en milisegundos del efecto de Zoom In (por defecto: 500)"
135
 
136
- #: admin.php:221
137
  msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
138
  msgstr "Velocidad en milisegundos del efecto de Zoom Out (por defecto: 500)"
139
 
140
- #: admin.php:229
141
  msgid "Easing"
142
  msgstr "Efecto de Animación"
143
 
144
- #: admin.php:235
145
  msgid "Activate easing (default: off)"
146
  msgstr "Activar efecto de animación (por defecto: desactivado)"
147
 
148
- #: admin.php:248
149
  msgid "Easing method when opening FancyBox. (default: easeOutBack)"
150
  msgstr "Efecto de animación al abrir FancyBox. (por defecto: easeOutBack)"
151
 
152
- #: admin.php:261
153
  msgid "Easing method when closing FancyBox. (default: easeInBack)"
154
  msgstr "Efecto de animación al cerrar FancyBox. (por defecto: easeInBack)"
155
 
156
- #: admin.php:274
157
  msgid "Easing method when navigating through gallery items. (default: easeInOutQuart)"
158
  msgstr "Efecto de animación al navegar por galerías. (por defecto: easoInOutQuart)"
159
 
160
- #: admin.php:277
161
  msgid "(There are 30 different easing methods, the first ones are the most boring. You can test them <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">here</a>)"
162
  msgstr "(Hay 30 efectos diferentes, los primeros son los más aburridos. Puedes probarlos <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">aquí</a> o <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">aquí</a>)"
163
 
164
- #: admin.php:286
165
  msgid "Show/Hide Advanced Settings"
166
  msgstr "Mostrar/Ocultar Opciones Avanzadas"
167
 
168
- #: admin.php:287
169
  msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
170
  msgstr "Mostrar/Ocultar Resolución de Problemas y Desinstalaci&oacute;n"
171
 
172
- #: admin.php:292
173
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
174
  msgstr "Opciones de Comportamiento <span style=\"color:orange\">(medio)</span>"
175
 
176
- #: admin.php:294
177
  msgid "The following settings should be left on default unless you know what you are doing."
178
  msgstr "Las siguientes opciones solo deberían ser editadas si sabes lo que estás haciendo."
179
 
180
- #: admin.php:300
181
  msgid "Auto Resize to Fit"
182
  msgstr "Ajustar Tamaño"
183
 
184
- #: admin.php:306
185
  msgid "Scale images to fit in viewport (default: on)"
186
  msgstr "Ajusta el tamaño de las imagenes a la ventana del navegador (por defecto: activado)"
187
 
188
- #: admin.php:314
189
  msgid "Center on Scroll"
190
  msgstr "Centrar al hacer Scroll"
191
 
192
- #: admin.php:320
193
  msgid "Keep image in the center of the browser window when scrolling (default: on)"
194
  msgstr "Mantiene la imagen en el centro de la ventana del naegador al hacer scroll (por defecto: activado)"
195
 
196
- #: admin.php:328
197
  msgid "Close on Click"
198
  msgstr "Cerrar al hacer click"
199
 
200
- #: admin.php:334
201
  msgid "Close FancyBox by clicking on the image (default: off)"
202
  msgstr "Cerrar FancyBox al hacer click en la imagen (por defecto: desactivado)"
203
 
204
- #: admin.php:337
205
  msgid "(You may want to leave this off if you display iframed or inline content and it containts clickable elements - for example: play buttons for movies, links to other pages)"
206
  msgstr "(Puedes que quieras dejar esta opción desactivada si vas a usar contendido anidado que incluya enlaces - for ejemplo: botones de play, enlaces a otras páginas))"
207
 
208
- #: admin.php:347
209
  msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
210
  msgstr "Opciones de Galería <span style=\"color:red\">(avanzado)</span>"
211
 
212
- #: admin.php:349
213
  msgid "Here you can choose if you want the plugin to group all images into a gallery, or make a gallery for each post. You can also define you own jQuery expression if you like."
214
  msgstr "Aquí puedes elegir si quieres que el plugin agrupe las imágenes en una galería, o hacer una galería para cada entrada. También puedes definir tu propia expresión en jQuery."
215
 
216
- #: admin.php:355
217
  msgid "Frame Size"
218
  msgstr "Tamaño del recuadro"
219
 
220
- #: admin.php:361
221
  msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
222
  msgstr "Ancho en píxeles de FancyBox cuado se muestre contenido anidado (por defecto: 640)"
223
 
224
- #: admin.php:366
225
  msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
226
  msgstr "Alto en píxeles de FancyBox cuado se muestre contenido anidado (por defecto: 500)"
227
 
228
- #: admin.php:374
229
  msgid "Gallery Type"
230
  msgstr "Tipo de Galería"
231
 
232
- #: admin.php:380
233
  msgid "Make a gallery for all images on the page (default)"
234
  msgstr "Incluir todas las imágenes de la página en una única galería (opción por defecto)"
235
 
236
- #: admin.php:385
237
  msgid "Do not group images in gallery automatically (use this if you want to make galleries manually with the <code>REL</code> attribute)"
238
  msgstr "No agrupar im&aacute;genes en galer&iacute;as autom&aacute;ticamente (usa esta opci&oacute;n si quieres agrupar las imagenes manualmente con el atributo <code>REL</code>)"
239
 
240
- #: admin.php:390
241
  msgid "Make a gallery for each post (will only work if your theme uses <code>class=\"post\"</code> on each post, which is common in WordPress"
242
  msgstr "Hacer una galer&iacute;a para cada post (solo funcionar&aacute; si el tema usa <code>class=\"post\"</code> en cada post, que es lo m&aacute;s com&uacte;n en WordPress"
243
 
244
- #: admin.php:395
245
  msgid "Use a custom expression to apply FancyBox"
246
  msgstr "Aplicar FancyBox con una expresión personalizada"
247
 
248
- #: admin.php:404
249
  msgid "Custom expression guidelines:"
250
  msgstr "Indicaciones para expresiones personalizadas:"
251
 
252
- #: admin.php:406
253
- msgid "The custom expression has to apply <code>class=\"fancybox\"</code> to the links where you want to use FancyBox."
254
- msgstr "La expresión personalizada tiene que aplicar el atributo <code>class=\"fancybox\"</code> a los enlaces en los que quieras usar FancyBox."
 
 
 
 
 
 
 
 
255
 
256
- #: admin.php:408
257
- msgid "The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class."
258
- msgstr "La funci&oacute;n <code>addClass()</code> de jQuery es una buena forma de a&ntilde;adir el class a los links deseados."
259
 
260
- #: admin.php:410
261
- msgid "You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions."
262
- msgstr "Puedes usar <code>getTitle()</code> en tu expresi&oacute;n para copiar el atributo title desde el tag <code>IMG</code> al tag <code>A</code> para que FancyBox pueda mostrar el t&iacute;tulo de la imagen."
263
 
264
- #: admin.php:412
265
- msgid "Do not call the <code>fancybox()</code> function here, the plugin does this for you."
266
- msgstr "No llames a la función <code>fancybox()</code> desde aquí, eso ya lo hace el plugin por tí."
267
 
268
- #: admin.php:428
 
 
 
 
269
  msgid "Troubleshooting Settings"
270
  msgstr "Resolución de Problemas"
271
 
272
- #: admin.php:430
273
  msgid "Settings in this section should only be changed if you are having problems with the plugin!"
274
  msgstr "Las opciones de esta sección solo deben ser editadas si tienes problemas con el plugin!"
275
 
276
- #: admin.php:432
277
  msgid "If the plugin doesn't seem to work, first you should check for other plugins that may be conflicting with this one, especially other Lightbox, Slimbox, etc. Make sure all your plugins and WordPress itself are up to date (this plugin has only been tested in WordPress 2.7 and above)."
278
  msgstr "Si el plugin no funciona, lo primero que deberías hacer es comprobar que no haya un conflicto con otros plugins, especialmente otro tipo de Lightbox, Slimbox, etc. Asegúrate de que todos tus plugins y tu WordPress están actualizados (este plugin solo se ha testado con WordPress 2.7 y superiores)."
279
 
280
- #: admin.php:434
281
  msgid "Change them one at a time and test to see if they help. Remember that having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
282
  msgstr "Cámbialas de una en una y comprueba si solucionan tu problema. Recuqerda que usar un plugin de caché puede hacer que los cambios no surjan efecto inmediatamente, vacía el cache después de guardar los cambios or desactivalo hasta que termines de ajustar estas opciones."
283
 
284
- #: admin.php:440
285
  msgid "Do not call jQuery"
286
  msgstr "No cargar jQuery"
287
 
288
- #: admin.php:446
289
  msgid "Skip jQuery call. Use this only if jQuery is being loaded twice (default: off)"
290
  msgstr "Omitir llamada a jQuery. Usa esta opción sólo si jQuery se está cargando dos veces por error. (por defecto: desactivado)"
291
 
292
- #: admin.php:454
293
  msgid "jQuery \"noConflict\" Mode"
294
  msgstr "Modo jQuery \"noConflict\""
295
 
296
- #: admin.php:460
297
  msgid "Use jQuery noConflict mode (default: on)"
298
  msgstr "Usar parámetro noConflict de jQuery (por defecto: activado)"
299
 
300
- #: admin.php:463
301
  msgid "(Turning this off may cause problems if there are plugins activated that use other js framework like mootools, prototype, scriptaculous, etc.)"
302
  msgstr "(Desactivar esta opción puede causar problemas si hay plugins activadoes que usen otros frameworks javascript como Mootols, Prototype, Scriptaculous, etc.)"
303
 
304
- #: admin.php:472
305
  msgid "Uninstall"
306
  msgstr "Desinstalar"
307
 
308
- #: admin.php:474
309
  msgid "Like many other plugins, FancyBox for WordPress stores its settings on your WordPress' options database table. Actually, these settings are not using more than a couple of kilobytes of space, but if you want to completely uninstall this plugin, check the option below, then save changes, and <strong>when you deactivate the plugin</strong>, all its settings will be removed from the database."
310
  msgstr "Al igual que otros plugins, FancyBox for WordPress guarda sus opciones en la tabla de opciones de la base de datos de WordPress. En realidad, estas opcines no ocupam más que unos kilobytes de espacio, pero si quieres eliminar el plugin por completo, activa la siguiente opción, guarda los cambios, y <strong>cuando desactives el plugin</strong>, todas las opciones se eliminarán de la base de datos."
311
 
312
- #: admin.php:480
313
  msgid "Remove settings"
314
  msgstr "Eliminar Opciones"
315
 
316
- #: admin.php:486
317
  msgid "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. (default: off)"
318
  msgstr "Eliminar opciones cuando se desactive el plugin desde la página \"Gestionar Plugins\". (por defecto: desactivado)"
319
 
320
- #: admin.php:503
321
  msgid "Save Changes"
322
  msgstr "Guardar Cambios"
323
 
324
- #: fancybox.php:437
325
  msgid "Settings"
326
  msgstr "Opciones"
327
 
 
 
 
 
 
 
328
  #~ msgid "Make a gallery for each post"
329
  #~ msgstr "Hacer una galería para cada entrada"
330
  #~ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: FancyBox for WordPress Español\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
5
+ "POT-Creation-Date: 2009-06-26 04:32+0000\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Jose <jose@moskis.net>\n"
8
  "Language-Team: Moskis <jose@moskis.net>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
61
  msgid "<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
62
  msgstr "<strong>Nota:</strong> Usar un plugin de caché puede hacer que los cambios no surjan efecto inmediatamente, vacía el cache después de guardar los cambios or desactivalo hasta que termines de ajustar estas opciones."
63
 
64
+ #: admin.php:100
65
  msgid "Border Color"
66
  msgstr "Color del Borde"
67
 
68
+ #: admin.php:106
69
  msgid "HTML color of the border (default: #BBBBBB)"
70
  msgstr "Color HTML del borde (por defecto: #BBBBBB)"
71
 
72
+ #: admin.php:114
73
  msgid "Close Button Position"
74
  msgstr "Posición del Botón de Cerrar"
75
 
76
+ #: admin.php:120
77
  msgid "Left"
78
  msgstr "Izquierda"
79
 
80
+ #: admin.php:125
81
  msgid "Right (default)"
82
  msgstr "Derecha (por defecto)"
83
 
84
+ #: admin.php:130
85
  msgid "Bottom"
86
  msgstr "Abajo"
87
 
88
+ #: admin.php:135
89
  msgid "Top (default)"
90
  msgstr "Arriba (por defecto)"
91
 
92
+ #: admin.php:143
93
  msgid "Padding"
94
  msgstr "Margen"
95
 
96
+ #: admin.php:149
97
  msgid "HTML color of the padding (default: #FFFFFF)"
98
  msgstr "Color HTML del margen (por defecto: #FFFFFF)"
99
 
100
+ #: admin.php:154
101
  msgid "Padding size in pixels (default: 10)"
102
  msgstr "Tamaño del margen en píxeles (por defecto: 10)"
103
 
104
+ #: admin.php:157
105
  msgid "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</strong> to \"0\" for the classic FancyBox look)"
106
  msgstr "(Pon el <strong>Color del Borde</strong> en \"#000000\" y el <strong>Tamaño del Margen</strong> en \"0\" para el aspecto clásico de FancyBox)"
107
 
108
+ #: admin.php:164
109
  msgid "Overlay Options"
110
  msgstr "Opciones de Overlay"
111
 
112
+ #: admin.php:170
113
  msgid "Add overlay (default: on)"
114
  msgstr "Añadir overlay (por defecto: activado)"
115
 
116
+ #: admin.php:175
117
  msgid "HTML color of the overlay (default: #666666)"
118
  msgstr "Color HTML del overlay (por defecto: #666666)"
119
 
120
+ #: admin.php:188
121
  msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
122
  msgstr "Opacidad del overlay. 0 es transparente, 1 es opaco (por defecto: 0.3)"
123
 
124
+ #: admin.php:196
125
  msgid "Zoom Options"
126
  msgstr "Opciones de Zoom"
127
 
128
+ #: admin.php:202
129
  msgid "Change content transparency during zoom animations (default: on)"
130
  msgstr "Animar opacidad durante el efecto de zoom (por defecto: activado)"
131
 
132
+ #: admin.php:214
133
  msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
134
  msgstr "Velocidad en milisegundos del efecto de Zoom In (por defecto: 500)"
135
 
136
+ #: admin.php:226
137
  msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
138
  msgstr "Velocidad en milisegundos del efecto de Zoom Out (por defecto: 500)"
139
 
140
+ #: admin.php:234
141
  msgid "Easing"
142
  msgstr "Efecto de Animación"
143
 
144
+ #: admin.php:240
145
  msgid "Activate easing (default: off)"
146
  msgstr "Activar efecto de animación (por defecto: desactivado)"
147
 
148
+ #: admin.php:253
149
  msgid "Easing method when opening FancyBox. (default: easeOutBack)"
150
  msgstr "Efecto de animación al abrir FancyBox. (por defecto: easeOutBack)"
151
 
152
+ #: admin.php:266
153
  msgid "Easing method when closing FancyBox. (default: easeInBack)"
154
  msgstr "Efecto de animación al cerrar FancyBox. (por defecto: easeInBack)"
155
 
156
+ #: admin.php:279
157
  msgid "Easing method when navigating through gallery items. (default: easeInOutQuart)"
158
  msgstr "Efecto de animación al navegar por galerías. (por defecto: easoInOutQuart)"
159
 
160
+ #: admin.php:282
161
  msgid "(There are 30 different easing methods, the first ones are the most boring. You can test them <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">here</a>)"
162
  msgstr "(Hay 30 efectos diferentes, los primeros son los más aburridos. Puedes probarlos <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">aquí</a> o <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">aquí</a>)"
163
 
164
+ #: admin.php:291
165
  msgid "Show/Hide Advanced Settings"
166
  msgstr "Mostrar/Ocultar Opciones Avanzadas"
167
 
168
+ #: admin.php:292
169
  msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
170
  msgstr "Mostrar/Ocultar Resolución de Problemas y Desinstalaci&oacute;n"
171
 
172
+ #: admin.php:297
173
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
174
  msgstr "Opciones de Comportamiento <span style=\"color:orange\">(medio)</span>"
175
 
176
+ #: admin.php:299
177
  msgid "The following settings should be left on default unless you know what you are doing."
178
  msgstr "Las siguientes opciones solo deberían ser editadas si sabes lo que estás haciendo."
179
 
180
+ #: admin.php:305
181
  msgid "Auto Resize to Fit"
182
  msgstr "Ajustar Tamaño"
183
 
184
+ #: admin.php:311
185
  msgid "Scale images to fit in viewport (default: on)"
186
  msgstr "Ajusta el tamaño de las imagenes a la ventana del navegador (por defecto: activado)"
187
 
188
+ #: admin.php:319
189
  msgid "Center on Scroll"
190
  msgstr "Centrar al hacer Scroll"
191
 
192
+ #: admin.php:325
193
  msgid "Keep image in the center of the browser window when scrolling (default: on)"
194
  msgstr "Mantiene la imagen en el centro de la ventana del naegador al hacer scroll (por defecto: activado)"
195
 
196
+ #: admin.php:333
197
  msgid "Close on Click"
198
  msgstr "Cerrar al hacer click"
199
 
200
+ #: admin.php:339
201
  msgid "Close FancyBox by clicking on the image (default: off)"
202
  msgstr "Cerrar FancyBox al hacer click en la imagen (por defecto: desactivado)"
203
 
204
+ #: admin.php:342
205
  msgid "(You may want to leave this off if you display iframed or inline content and it containts clickable elements - for example: play buttons for movies, links to other pages)"
206
  msgstr "(Puedes que quieras dejar esta opción desactivada si vas a usar contendido anidado que incluya enlaces - for ejemplo: botones de play, enlaces a otras páginas))"
207
 
208
+ #: admin.php:352
209
  msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
210
  msgstr "Opciones de Galería <span style=\"color:red\">(avanzado)</span>"
211
 
212
+ #: admin.php:354
213
  msgid "Here you can choose if you want the plugin to group all images into a gallery, or make a gallery for each post. You can also define you own jQuery expression if you like."
214
  msgstr "Aquí puedes elegir si quieres que el plugin agrupe las imágenes en una galería, o hacer una galería para cada entrada. También puedes definir tu propia expresión en jQuery."
215
 
216
+ #: admin.php:360
217
  msgid "Frame Size"
218
  msgstr "Tamaño del recuadro"
219
 
220
+ #: admin.php:366
221
  msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
222
  msgstr "Ancho en píxeles de FancyBox cuado se muestre contenido anidado (por defecto: 640)"
223
 
224
+ #: admin.php:371
225
  msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
226
  msgstr "Alto en píxeles de FancyBox cuado se muestre contenido anidado (por defecto: 500)"
227
 
228
+ #: admin.php:379
229
  msgid "Gallery Type"
230
  msgstr "Tipo de Galería"
231
 
232
+ #: admin.php:385
233
  msgid "Make a gallery for all images on the page (default)"
234
  msgstr "Incluir todas las imágenes de la página en una única galería (opción por defecto)"
235
 
236
+ #: admin.php:390
237
  msgid "Do not group images in gallery automatically (use this if you want to make galleries manually with the <code>REL</code> attribute)"
238
  msgstr "No agrupar im&aacute;genes en galer&iacute;as autom&aacute;ticamente (usa esta opci&oacute;n si quieres agrupar las imagenes manualmente con el atributo <code>REL</code>)"
239
 
240
+ #: admin.php:395
241
  msgid "Make a gallery for each post (will only work if your theme uses <code>class=\"post\"</code> on each post, which is common in WordPress"
242
  msgstr "Hacer una galer&iacute;a para cada post (solo funcionar&aacute; si el tema usa <code>class=\"post\"</code> en cada post, que es lo m&aacute;s com&uacte;n en WordPress"
243
 
244
+ #: admin.php:400
245
  msgid "Use a custom expression to apply FancyBox"
246
  msgstr "Aplicar FancyBox con una expresión personalizada"
247
 
248
+ #: admin.php:409
249
  msgid "Custom expression guidelines:"
250
  msgstr "Indicaciones para expresiones personalizadas:"
251
 
252
+ #: admin.php:411
253
+ msgid "&middot; The custom expression has to apply <code>class=\"fancybox\"</code> to the links where you want to use FancyBox. Do not call the <code>fancybox()</code> function here, the plugin does this for you."
254
+ msgstr "&middot; La expresión personalizada tiene que aplicar el atributo <code>class=\"fancybox\"</code> a los enlaces en los que quieras usar FancyBox. No llames a la funci&oacute;n <code>fancybox()</code> aqu&iacute;, de eso ya se encarga el plugin."
255
+
256
+ #: admin.php:413
257
+ msgid "&middot; The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class."
258
+ msgstr "&middot; La funci&oacute;n <code>addClass()</code> de jQuery es una buena forma de a&ntilde;adir el class a los links deseados."
259
+
260
+ #: admin.php:415
261
+ msgid "&middot; You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions."
262
+ msgstr "&middot; Puedes usar <code>getTitle()</code> en tu expresi&oacute;n para copiar el atributo title desde el tag <code>IMG</code> al tag <code>A</code>, para que FancyBox pueda mostrar el t&iacute;tulo de la imagen."
263
 
264
+ #: admin.php:417
265
+ msgid "&middot; You can use <code>jQuery(thumbnails)</code> like in the example expression to apply FancyBox to thumbnails that link to these extensions: BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase)."
266
+ msgstr "&middot; Puedes usar <code>jQuery(thumbnails)</code> como en el ejemplo para aplicar FancyBox a las miniaturas de im%aacute;genes que enlazen a estas extensiones: BMP, GIF, JPG, JPEG, PNG tanto en min&uacute;scula como en may&uacute;scula)."
267
 
268
+ #: admin.php:419
269
+ msgid "&middot; If you want to do it manually you can use something like <code>jQuery(\"a:has(img)[href$='.jpg']\")</code> or whatever works for you."
270
+ msgstr "&middot; Si prefieres hacerlo manualmente puedes usar algo como <code>jQuery(\"a:has(img)[href$='.jpg']\")</code> o lo que m&aacute;s se ajuste a tu blog."
271
 
272
+ #: admin.php:421
273
+ msgid "See the <a href=\"http://docs.jquery.com/\" target=\"_blank\">jQuery Documentation</a> for more help."
274
+ msgstr "Visita la <a href=\"http://docs.jquery.com/\" target=\"_blank\">Documentaci&oacute;n de jQuery</a> para encontrar m&aacute;s ayuda."
275
 
276
+ #: admin.php:423
277
+ msgid "Examples:"
278
+ msgstr "Ejemplos:"
279
+
280
+ #: admin.php:443
281
  msgid "Troubleshooting Settings"
282
  msgstr "Resolución de Problemas"
283
 
284
+ #: admin.php:445
285
  msgid "Settings in this section should only be changed if you are having problems with the plugin!"
286
  msgstr "Las opciones de esta sección solo deben ser editadas si tienes problemas con el plugin!"
287
 
288
+ #: admin.php:447
289
  msgid "If the plugin doesn't seem to work, first you should check for other plugins that may be conflicting with this one, especially other Lightbox, Slimbox, etc. Make sure all your plugins and WordPress itself are up to date (this plugin has only been tested in WordPress 2.7 and above)."
290
  msgstr "Si el plugin no funciona, lo primero que deberías hacer es comprobar que no haya un conflicto con otros plugins, especialmente otro tipo de Lightbox, Slimbox, etc. Asegúrate de que todos tus plugins y tu WordPress están actualizados (este plugin solo se ha testado con WordPress 2.7 y superiores)."
291
 
292
+ #: admin.php:449
293
  msgid "Change them one at a time and test to see if they help. Remember that having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
294
  msgstr "Cámbialas de una en una y comprueba si solucionan tu problema. Recuqerda que usar un plugin de caché puede hacer que los cambios no surjan efecto inmediatamente, vacía el cache después de guardar los cambios or desactivalo hasta que termines de ajustar estas opciones."
295
 
296
+ #: admin.php:455
297
  msgid "Do not call jQuery"
298
  msgstr "No cargar jQuery"
299
 
300
+ #: admin.php:461
301
  msgid "Skip jQuery call. Use this only if jQuery is being loaded twice (default: off)"
302
  msgstr "Omitir llamada a jQuery. Usa esta opción sólo si jQuery se está cargando dos veces por error. (por defecto: desactivado)"
303
 
304
+ #: admin.php:469
305
  msgid "jQuery \"noConflict\" Mode"
306
  msgstr "Modo jQuery \"noConflict\""
307
 
308
+ #: admin.php:475
309
  msgid "Use jQuery noConflict mode (default: on)"
310
  msgstr "Usar parámetro noConflict de jQuery (por defecto: activado)"
311
 
312
+ #: admin.php:478
313
  msgid "(Turning this off may cause problems if there are plugins activated that use other js framework like mootools, prototype, scriptaculous, etc.)"
314
  msgstr "(Desactivar esta opción puede causar problemas si hay plugins activadoes que usen otros frameworks javascript como Mootols, Prototype, Scriptaculous, etc.)"
315
 
316
+ #: admin.php:487
317
  msgid "Uninstall"
318
  msgstr "Desinstalar"
319
 
320
+ #: admin.php:489
321
  msgid "Like many other plugins, FancyBox for WordPress stores its settings on your WordPress' options database table. Actually, these settings are not using more than a couple of kilobytes of space, but if you want to completely uninstall this plugin, check the option below, then save changes, and <strong>when you deactivate the plugin</strong>, all its settings will be removed from the database."
322
  msgstr "Al igual que otros plugins, FancyBox for WordPress guarda sus opciones en la tabla de opciones de la base de datos de WordPress. En realidad, estas opcines no ocupam más que unos kilobytes de espacio, pero si quieres eliminar el plugin por completo, activa la siguiente opción, guarda los cambios, y <strong>cuando desactives el plugin</strong>, todas las opciones se eliminarán de la base de datos."
323
 
324
+ #: admin.php:495
325
  msgid "Remove settings"
326
  msgstr "Eliminar Opciones"
327
 
328
+ #: admin.php:501
329
  msgid "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. (default: off)"
330
  msgstr "Eliminar opciones cuando se desactive el plugin desde la página \"Gestionar Plugins\". (por defecto: desactivado)"
331
 
332
+ #: admin.php:517
333
  msgid "Save Changes"
334
  msgstr "Guardar Cambios"
335
 
336
+ #: fancybox.php:373
337
  msgid "Settings"
338
  msgstr "Opciones"
339
 
340
+ #~ msgid ""
341
+ #~ "Do not call the <code>fancybox()</code> function here, the plugin does "
342
+ #~ "this for you."
343
+ #~ msgstr ""
344
+ #~ "No llames a la función <code>fancybox()</code> desde aquí, eso ya lo hace "
345
+ #~ "el plugin por tí."
346
  #~ msgid "Make a gallery for each post"
347
  #~ msgstr "Hacer una galería para cada entrada"
348
  #~ msgid ""
languages/mfbfw-ja.mo ADDED
Binary file
languages/mfbfw-ja.po ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: FancyBox for WordPress Japanese\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
5
+ "POT-Creation-Date: 2009-03-25 16:40+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Oba-T\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+
13
+ #: admin.php:21
14
+ #, php-format
15
+ msgid "Fancybox for WordPress Options (version %s)"
16
+ msgstr "Fancybox for WordPress Options (version %s)"
17
+
18
+ #: admin.php:25
19
+ msgid "If you use FancyBox and like it, buy the author a beer!"
20
+ msgstr "FancyBoxを気に入ったならば、作者にビールをおごってください。"
21
+
22
+ #: admin.php:46
23
+ msgid "The author of this WordPress Plugin also likes beer :P"
24
+ msgstr "このプラグインの作者は、ビールが大好きです。 :P"
25
+
26
+ #: admin.php:59
27
+ msgid "Follow me on Twitter for more WordPress Plugins and Themes"
28
+ msgstr "より多くのプラグインとテーマのためにTwitterで応援してください。"
29
+
30
+ #: admin.php:66
31
+ msgid "Info & Support"
32
+ msgstr "説明とサポート"
33
+
34
+ #: admin.php:68
35
+ msgid "<a href=\"http://fancy.klade.lv/home\">FancyBox</a> developed by <a href=\"http://kac.klade.lv/\">Janis Skarnelis</a>, ported to WordPress by <a href=\"http://moskis.net/\">Jos&eacute; Pardilla</a>. Licensed under the <a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
36
+ msgstr "<a href=\"http://fancy.klade.lv/home\">FancyBox</a> developed by <a href=\"http://kac.klade.lv/\">Janis Skarnelis</a>, ported to WordPress by <a href=\"http://moskis.net/\">Jos&eacute; Pardilla</a>. Licensed under the <a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
37
+
38
+ #: admin.php:70
39
+ msgid "As you can see, this plugin has many options you can edit, but have no fear, you can leave everything as it is if you want, since the default options should be a good start... :)"
40
+ msgstr "このプラグインには編集可能な多くのオプションがあります。初起動時に初期値で良い設定となってます。そのままでも構わなければ変更することはありません... :)"
41
+
42
+ #: admin.php:74
43
+ msgid "If you have problems or questions about FancyBox, please start with these links: <a href=\"http://fancy.klade.lv/howto\">How-To</a> & <a href=\"http://fancy.klade.lv/faq\">FAQ</a>.<br />If that does not help, go to <a href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</a>, use the <strong>Search</strong> option, and if necesary, post your question."
44
+ msgstr "トラブル、または、FancyBoxへの質問は、リンク先の<a href=\"http://fancy.klade.lv/howto\">How-To</a> & <a href=\"http://fancy.klade.lv/faq\">FAQ</a>へ…<br />そこで、該当項目が無ければ、必要に応じて検索オプションを使用し、<a href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</a>で検索してください。また、該当項目が無い場合は質問をしてください。"
45
+
46
+ #: admin.php:76
47
+ msgid "If you are having trouble with this plugin try to localize the problem (switch your theme and/or deactivate plugins until you find the source of the problem). You can also try the Troubleshooting settings at the bottom of this page if necesary. If you still can not get the plugin to work, <a href=\"http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/\">leave a comment here</a> explaining the problem."
48
+ msgstr "このプラグインが動作しない時は、問題の切り分けをしてください(使用中のテーマを変える。または、その他のプラグインを一つずつ有効化する)。必要に応じて、このページの最下部のトラブルシューティングでセッティングを試してください。それでもまだプラグインを起動できない時は、<a href=\"http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/\">leave a comment here</a> へ問題の詳細をコメントしてください。"
49
+
50
+ #: admin.php:81
51
+ msgid "Appearance Settings <span style=\"color:green\">(basic)</span>"
52
+ msgstr "外観設定 <span style=\"color:green\">(基本設定)</span>"
53
+
54
+ #: admin.php:83
55
+ msgid "These are the main settings, which let you tweak color, borders and animation."
56
+ msgstr "主要設定です。(この設定で、色、境界線、基本的なアニメーション動作の調整ができます。)"
57
+
58
+ #: admin.php:85
59
+ msgid "<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
60
+ msgstr "<strong>Note:</strong> キャッシュが保持されているため、オプション設定後、すぐに効果が表れないかもしれません。その場合、オプション設定終了後に、キャッシュのクリアをしてください。"
61
+
62
+ #: admin.php:95
63
+ msgid "Border Color"
64
+ msgstr "境界線色"
65
+
66
+ #: admin.php:101
67
+ msgid "HTML color of the border (default: #BBBBBB)"
68
+ msgstr "境界線の表示色 (初期値: #BBBBBB)"
69
+
70
+ #: admin.php:109
71
+ msgid "Close Button Position"
72
+ msgstr "閉じるボタンの位置"
73
+
74
+ #: admin.php:115
75
+ msgid "Left"
76
+ msgstr "左"
77
+
78
+ #: admin.php:120
79
+ msgid "Right (default)"
80
+ msgstr "右 (初期値)"
81
+
82
+ #: admin.php:125
83
+ msgid "Bottom"
84
+ msgstr "下"
85
+
86
+ #: admin.php:130
87
+ msgid "Top (default)"
88
+ msgstr "上 (初期値)"
89
+
90
+ #: admin.php:138
91
+ msgid "Padding"
92
+ msgstr "パディング設定"
93
+
94
+ #: admin.php:144
95
+ msgid "HTML color of the padding (default: #FFFFFF)"
96
+ msgstr "パッディングの表示色 (初期値: #FFFFFF)"
97
+
98
+ #: admin.php:149
99
+ msgid "Padding size in pixels (default: 10)"
100
+ msgstr "パッディングサイズ:px (初期値: 10)"
101
+
102
+ #: admin.php:152
103
+ msgid "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</strong> to \"0\" for the classic FancyBox look)"
104
+ msgstr "(<strong>境界線の色</strong> が \"#000000\" と <strong>内側余白</strong> が \"0\" が、classic FancyBox の設定)"
105
+
106
+ #: admin.php:159
107
+ msgid "Overlay Options"
108
+ msgstr "オーバレイ設定"
109
+
110
+ #: admin.php:165
111
+ msgid "Add overlay (default: on)"
112
+ msgstr "オーバーレイ適用 (初期値: on)"
113
+
114
+ #: admin.php:170
115
+ msgid "HTML color of the overlay (default: #666666)"
116
+ msgstr "オーバーレイの表示色 (初期値: #666666)"
117
+
118
+ #: admin.php:183
119
+ msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
120
+ msgstr "オーバーレイ透過度. 0 = 透明, 1 = 黒 0.1刻み(初期値: 0.3)"
121
+
122
+ #: admin.php:191
123
+ msgid "Zoom Options"
124
+ msgstr "ズーム設定"
125
+
126
+ #: admin.php:197
127
+ msgid "Change content transparency during zoom animations (default: on)"
128
+ msgstr "切替時、アニメーション動作を使用 (初期値: on)"
129
+
130
+ #: admin.php:209
131
+ msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
132
+ msgstr "ズームイン アニメーション速度 : 1000=1秒 (初期値: 500)"
133
+
134
+ #: admin.php:221
135
+ msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
136
+ msgstr "ズームアウト アニメーション速度 : 1000=1秒 (初期値: 500)"
137
+
138
+ #: admin.php:229
139
+ msgid "Easing"
140
+ msgstr "加減速設定"
141
+
142
+ #: admin.php:235
143
+ msgid "Activate easing (default: off)"
144
+ msgstr "加減速設定 (初期値: off)"
145
+
146
+ #: admin.php:248
147
+ msgid "Easing method when opening FancyBox. (default: easeOutBack)"
148
+ msgstr "FancyBoxの開始時の加減速動作 (初期値: easeOutBack)"
149
+
150
+ #: admin.php:261
151
+ msgid "Easing method when closing FancyBox. (default: easeInBack)"
152
+ msgstr "FancyBoxの終了時の加減速動作 (初期値: easeInBack)"
153
+
154
+ #: admin.php:274
155
+ msgid "Easing method when navigating through gallery items. (default: easeInOutQuart)"
156
+ msgstr "ギャラリーアイテム閲覧時の加減速動作 (初期値: easeInOutBack)"
157
+
158
+ #: admin.php:277
159
+ msgid "(There are 30 different easing methods, the first ones are the most boring. You can test them <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">here</a>)"
160
+ msgstr "(30種類の\"加減速\"設定があります。最初の項目は最も退屈な設定です。 この<a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">リンク</a>にてテストできます。ボックスをクリックしてください。)"
161
+
162
+ #: admin.php:286
163
+ msgid "Show/Hide Advanced Settings"
164
+ msgstr "表示/非表示 高度設定"
165
+
166
+ #: admin.php:287
167
+ msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
168
+ msgstr "表示/非表示 トラブルシューティング &amp; 削除設定"
169
+
170
+ #: admin.php:292
171
+ msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
172
+ msgstr "動作設定 <span style=\"color:orange\">(中間値)</span>"
173
+
174
+ #: admin.php:294
175
+ msgid "The following settings should be left on default unless you know what you are doing."
176
+ msgstr "理解していない場合、以下の設定は初期値のままにしてください。"
177
+
178
+ #: admin.php:300
179
+ msgid "Auto Resize to Fit"
180
+ msgstr "自動リサイズ設定"
181
+
182
+ #: admin.php:306
183
+ msgid "Scale images to fit in viewport (default: on)"
184
+ msgstr "イメージの大きさをビューポートに合わせる (初期値: on)"
185
+
186
+ #: admin.php:314
187
+ msgid "Center on Scroll"
188
+ msgstr "表示固定設定"
189
+
190
+ #: admin.php:320
191
+ msgid "Keep image in the center of the browser window when scrolling (default: on)"
192
+ msgstr "ブラウザののスクロールをしても、プレビュー画像を中央に固定する。 (初期値: on)"
193
+
194
+ #: admin.php:328
195
+ msgid "Close on Click"
196
+ msgstr "クリック終了設定"
197
+
198
+ #: admin.php:334
199
+ msgid "Close FancyBox by clicking on the image (default: off)"
200
+ msgstr "FancyBoxをプレビュー画像クリックで閉じる。 (初期値: off)"
201
+
202
+ #: admin.php:337
203
+ msgid "(You may want to leave this off if you display iframed or inline content and it containts clickable elements - for example: play buttons for movies, links to other pages)"
204
+ msgstr "(インラインフレーム、インラインコンテンツをクリックで表示する場合、これらのコンテンツ要素をこのままにしておきたいことがあります-例えば:動画再生ボタンやページリンク)"
205
+
206
+ #: admin.php:347
207
+ msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
208
+ msgstr "ギャラリー設定 <span style=\"color:red\">(高度設定)</span>"
209
+
210
+ #: admin.php:349
211
+ msgid "Here you can choose if you want the plugin to group all images into a gallery, or make a gallery for each post. You can also define you own jQuery expression if you like."
212
+ msgstr "この設定で、すべての画像をギャラリーに分類するか、各ポストのためにギャラリーを作るかを選択できます。 また、jQueryの動作表現を定義できます。"
213
+
214
+ #: admin.php:355
215
+ msgid "Frame Size"
216
+ msgstr "フレームサイズ"
217
+
218
+ #: admin.php:361
219
+ msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
220
+ msgstr "FancyBoxのインラインフレームコンテンツの表示幅 :px (初期値: 640)"
221
+
222
+ #: admin.php:366
223
+ msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
224
+ msgstr "FancyBoxのインラインフレームコンテンツの表示高 :px (初期値: 500)"
225
+
226
+ #: admin.php:374
227
+ msgid "Gallery Type"
228
+ msgstr "ギャラリータイプ"
229
+
230
+ #: admin.php:380
231
+ msgid "Make a gallery for all images on the page (default)"
232
+ msgstr "ページ上の全画像のためにギャラリーを作る (初期値)"
233
+
234
+ #: admin.php:385
235
+ msgid "Do not group images in gallery automatically (use this if you want to make galleries manually with the <code>REL</code> attribute)"
236
+ msgstr "ギャラリーで自動的に画像を分類しない (<code>REL</code>属性で手動でギャラリーを作る場合は使用してください。)"
237
+
238
+ #: admin.php:390
239
+ msgid "Make a gallery for each post (will only work if your theme uses <code>class=\"post\"</code> on each post, which is common in WordPress"
240
+ msgstr "各ポストのためにギャラリーを作る (WordPress標準テーマにおいて<code>class=\"post\"</code>を各ポストで使う場合に動作します。)"
241
+
242
+ #: admin.php:395
243
+ msgid "Use a custom expression to apply FancyBox"
244
+ msgstr "FancyBoxへのカスタム表示の適用"
245
+
246
+ #: admin.php:404
247
+ msgid "Custom expression guidelines:"
248
+ msgstr "カスタム表示ガイドライン:"
249
+
250
+ #: admin.php:406
251
+ msgid "The custom expression has to apply <code>class=\"fancybox\"</code> to the links where you want to use FancyBox."
252
+ msgstr "カスタム表示をするには、FancyBoxを使用するリンクへ <code>class=\"fancybox\"</code> を付けます。"
253
+
254
+ #: admin.php:408
255
+ msgid "The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class."
256
+ msgstr "jQueryの <code>addClass()</code> 機能を使用すると、どの既存のリンククラスへもaddクラスを加える早道です。"
257
+
258
+ #: admin.php:410
259
+ msgid "You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions."
260
+ msgstr "<code>getTitle()</code> を使用して <code>IMG</code> タグや、 <code>A</code> タグへ表示要素を追加し、FancyBoxを表示できます。"
261
+
262
+ #: admin.php:412
263
+ msgid "Do not call the <code>fancybox()</code> function here, the plugin does this for you."
264
+ msgstr "Fancyboxプラグインの<code>fancybox()</code> 機能を使用しない。"
265
+
266
+ #: admin.php:428
267
+ msgid "Troubleshooting Settings"
268
+ msgstr "トラブルシューティング設定"
269
+
270
+ #: admin.php:430
271
+ msgid "Settings in this section should only be changed if you are having problems with the plugin!"
272
+ msgstr "プラグインに関する問題がある場合、この設定を変えるだけです!"
273
+
274
+ #: admin.php:432
275
+ msgid "If the plugin doesn't seem to work, first you should check for other plugins that may be conflicting with this one, especially other Lightbox, Slimbox, etc. Make sure all your plugins and WordPress itself are up to date (this plugin has only been tested in WordPress 2.7 and above)."
276
+ msgstr "プラグインが機能しない場合は、はじめに他の類似プラグイン(特に他のLightbox、Slimbox)や、その他のプラグインと干渉している可能性があります。また、WordPress自体が最新版であることをチェックしてください。(このプラグインは、WordPress 2.7以上のバージョンでテスト済みです。)"
277
+
278
+ #: admin.php:434
279
+ msgid "Change them one at a time and test to see if they help. Remember that having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
280
+ msgstr "これらを一つずつを変更して、影響しているかどうかをテストしてください。これらのオプションを編集し終わってもキャッシュが保持されているため、オプション設定後、すぐに効果が表れないかもしれません。その場合、オプション設定終了後に、キャッシュのクリアをしてください。"
281
+
282
+ #: admin.php:440
283
+ msgid "Do not call jQuery"
284
+ msgstr "jQueryを使用しない"
285
+
286
+ #: admin.php:446
287
+ msgid "Skip jQuery call. Use this only if jQuery is being loaded twice (default: off)"
288
+ msgstr "jQueryの起動スキップ。jQueryが2度起動される場合だけ使用 (初期値: off)"
289
+
290
+ #: admin.php:454
291
+ msgid "jQuery \"noConflict\" Mode"
292
+ msgstr "jQuery \"noConflict\" モード"
293
+
294
+ #: admin.php:460
295
+ msgid "Use jQuery noConflict mode (default: on)"
296
+ msgstr "jQuery ノーコンフリクトモード設定 (初期値: on)"
297
+
298
+ #: admin.php:463
299
+ msgid "(Turning this off may cause problems if there are plugins activated that use other js framework like mootools, prototype, scriptaculous, etc.)"
300
+ msgstr "(この設定の有効化により、Js フレームワークを使用した、mootools、prototype、scriptaculous、その他のプラグインへの干渉を回避できる可能性があります。)"
301
+
302
+ #: admin.php:472
303
+ msgid "Uninstall"
304
+ msgstr "削除"
305
+
306
+ #: admin.php:474
307
+ msgid "Like many other plugins, FancyBox for WordPress stores its settings on your WordPress' options database table. Actually, these settings are not using more than a couple of kilobytes of space, but if you want to completely uninstall this plugin, check the option below, then save changes, and <strong>when you deactivate the plugin</strong>, all its settings will be removed from the database."
308
+ msgstr "他のプラグインのように、\"FancyBox for WordPress\"は、データベースのオプションテーブルに設定を格納します。これらの設定は2KB以上のスペースを使っていません。しかし、<strong>このプラグインを無効化</strong>し、削除する場合、完全に元に戻したいならば、下記のオプションをチェックすると、すべての設定はデータベースから削除されます。"
309
+
310
+ #: admin.php:480
311
+ msgid "Remove settings"
312
+ msgstr "設定の無効化"
313
+
314
+ #: admin.php:486
315
+ msgid "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. (default: off)"
316
+ msgstr "プラグイン設定を \"プラグイン管理\"ページから無効化してください。 (初期値: off)"
317
+
318
+ #: admin.php:503
319
+ msgid "Save Changes"
320
+ msgstr "設定保存"
321
+
322
+ #: fancybox.php:437
323
+ msgid "Settings"
324
+ msgstr "設定"
325
+
languages/mfbfw-tr_TR.mo ADDED
Binary file
languages/mfbfw-tr_TR.po ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: FancyBox for WordPress\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/fancybox-for-wordpress\n"
5
+ "POT-Creation-Date: 2009-03-25 16:40+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Yunus Emre <immortalance@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+
13
+ #: admin.php:21
14
+ #, php-format
15
+ msgid "Fancybox for WordPress Options (version %s)"
16
+ msgstr "Wordpress Ayarları için Fancybox (Versiyon %s)"
17
+
18
+ #: admin.php:25
19
+ msgid "If you use FancyBox and like it, buy the author a beer!"
20
+ msgstr "Fancybox'u sevdiyseniz kodlayıcısına bir bira ısmarlayabilirsiniz!"
21
+
22
+ #: admin.php:46
23
+ msgid "The author of this WordPress Plugin also likes beer :P"
24
+ msgstr "Bu eklentinin sahibi bira hastasıdır :P"
25
+
26
+ #: admin.php:59
27
+ msgid "Follow me on Twitter for more WordPress Plugins and Themes"
28
+ msgstr "Daha fazla tema ve plugin için Twitter'dan beni takip edin."
29
+
30
+ #: admin.php:66
31
+ msgid "Info & Support"
32
+ msgstr "Bilgi & Destek"
33
+
34
+ #: admin.php:68
35
+ msgid "<a href=\"http://fancy.klade.lv/home\">FancyBox</a> developed by <a href=\"http://kac.klade.lv/\">Janis Skarnelis</a>, ported to WordPress by <a href=\"http://moskis.net/\">Jos&eacute; Pardilla</a>. Licensed under the <a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
36
+ msgstr "<a href=\"http://fancy.klade.lv/home\">FancyBox</a> <a href=\"http://kac.klade.lv/\">Janis Skarnelis</a> tarafından kodlanmıştır. WordPress'e <a href=\"http://moskis.net/\">Jos&eacute; Pardilla</a> tarafından uyarlanmıştır. <strong><a href=\"http://blog.immortalance.net/\">Yunus Emre Bayraktar</a></strong> tarafından Türkçeleştirilmiştir. Lisans Tipi:<a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
37
+
38
+ #: admin.php:70
39
+ msgid "As you can see, this plugin has many options you can edit, but have no fear, you can leave everything as it is if you want, since the default options should be a good start... :)"
40
+ msgstr "Gördüğünüz gibi bu eklentide bir çok ayarlama yapabilirsin. Korkma, yanlış yaptığında ilk ayarlara dönüş imkanın var. :)"
41
+
42
+ #: admin.php:74
43
+ msgid "If you have problems or questions about FancyBox, please start with these links: <a href=\"http://fancy.klade.lv/howto\">How-To</a> & <a href=\"http://fancy.klade.lv/faq\">FAQ</a>.<br />If that does not help, go to <a href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</a>, use the <strong>Search</strong> option, and if necesary, post your question."
44
+ msgstr "FancyBox hakkında problem ve sorularınız varsa bu linkten başlayın: <a href=\"http://fancy.klade.lv/howto\">How-To</a> & <a href=\"http://fancy.klade.lv/faq\">FAQ</a>.<br />Eğer aradığınızı bulamadıysanız: <a href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</a>,'na gidin ve <strong>Arama</strong> kutucuğunu kullanın. Bulamadıysanız bir başlık açın."
45
+
46
+ #: admin.php:76
47
+ msgid "If you are having trouble with this plugin try to localize the problem (switch your theme and/or deactivate plugins until you find the source of the problem). You can also try the Troubleshooting settings at the bottom of this page if necesary. If you still can not get the plugin to work, <a href=\"http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/\">leave a comment here</a> explaining the problem."
48
+ msgstr "Eğer bir problem yaşarsanız temanızı kontrol ediniz ve sorunu çözene kadar eklentiyi kapatınız. Sorun Giderme kılavuzundan gerektiği taktirde yardım alabilirsiniz. eğer hala bir çözüm bulamadıysanız, <a href=\"http://blog.moskis.net/downloads/plugins/fancybox-for-wordpress/\">buraya</a> sorununuz hakkında yorum bırakabilirsiniz."
49
+
50
+ #: admin.php:81
51
+ msgid "Appearance Settings <span style=\"color:green\">(basic)</span>"
52
+ msgstr "Görünen Ayarlar <span style=\"color:green\">(basic)</span>"
53
+
54
+ #: admin.php:83
55
+ msgid "These are the main settings, which let you tweak color, borders and animation."
56
+ msgstr "Buradaki ana ayarlar ile renk, çerçeve ve animasyonu seçebilirsiniz."
57
+
58
+ #: admin.php:85
59
+ msgid "<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
60
+ msgstr "<strong>Not:</strong> Eğer bir önbellek (Cache) eklentisi kullanıyorsanız ayarlamaları yaptıktan sonra değişiklikleri görmek için önbelleği temizleyin. Daha iyi bir yol ise önbellek eklentisini ayarlarınız bitene kadar kapalı konumda tutun."
61
+
62
+ #: admin.php:95
63
+ msgid "Border Color"
64
+ msgstr "Çerçeve Rengi"
65
+
66
+ #: admin.php:101
67
+ msgid "HTML color of the border (default: #BBBBBB)"
68
+ msgstr "Çerçeve için HTML rengi (default: #BBBBBB)"
69
+
70
+ #: admin.php:109
71
+ msgid "Close Button Position"
72
+ msgstr "Çıkış Butonu Pozisyonu"
73
+
74
+ #: admin.php:115
75
+ msgid "Left"
76
+ msgstr "Sol"
77
+
78
+ #: admin.php:120
79
+ msgid "Right (default)"
80
+ msgstr "Sağ"
81
+
82
+ #: admin.php:125
83
+ msgid "Bottom"
84
+ msgstr "Alt"
85
+
86
+ #: admin.php:130
87
+ msgid "Top (default)"
88
+ msgstr "Üst"
89
+
90
+ #: admin.php:138
91
+ msgid "Padding"
92
+ msgstr "Dolgu"
93
+
94
+ #: admin.php:144
95
+ msgid "HTML color of the padding (default: #FFFFFF)"
96
+ msgstr "Dolgunun HTML rengi (default: #FFFFFF)"
97
+
98
+ #: admin.php:149
99
+ msgid "Padding size in pixels (default: 10)"
100
+ msgstr "Pixel cinsinden dolgu (default: 10)"
101
+
102
+ #: admin.php:152
103
+ msgid "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</strong> to \"0\" for the classic FancyBox look)"
104
+ msgstr "(Klasik görünüm için<strong>Border Color</strong>'ni \"#000000\"'a ayarla ve <strong>Dolgu Boyutunu</strong> \"0\"a ayarla )"
105
+
106
+ #: admin.php:159
107
+ msgid "Overlay Options"
108
+ msgstr "Kaplama Ayarları"
109
+
110
+ #: admin.php:165
111
+ msgid "Add overlay (default: on)"
112
+ msgstr "Kaplama Ekle (default: on)"
113
+
114
+ #: admin.php:170
115
+ msgid "HTML color of the overlay (default: #666666)"
116
+ msgstr "Kaplama için ana HTML rengi (default: #666666)"
117
+
118
+ #: admin.php:183
119
+ msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
120
+ msgstr "Saydamlık ayarları. \"0\" saydam, \"1\" mat şekildedir. (default: 0.3)"
121
+
122
+ #: admin.php:191
123
+ msgid "Zoom Options"
124
+ msgstr "Yakınlaştırma Ayarları"
125
+
126
+ #: admin.php:197
127
+ msgid "Change content transparency during zoom animations (default: on)"
128
+ msgstr "Animasyonel yakınlaştırma sırasında resmin bulunduğu sayfayı saydamlaştır. (default: on)"
129
+
130
+ #: admin.php:209
131
+ msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
132
+ msgstr "Milisaniye cinsinden yakınlaştırma hızı. (default: 500)"
133
+
134
+ #: admin.php:221
135
+ msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
136
+ msgstr "Milisaniye cinsinden uzaklaştırma hızı. (default: 500)"
137
+
138
+ #: admin.php:229
139
+ msgid "Easing"
140
+ msgstr "Sönüklük"
141
+
142
+ #: admin.php:235
143
+ msgid "Activate easing (default: off)"
144
+ msgstr "Sönüklüğü Aktifleştir (Default: off)"
145
+
146
+ #: admin.php:248
147
+ msgid "Easing method when opening FancyBox. (default: easeOutBack)"
148
+ msgstr "Fancybox'u sönükleştirerek aç. (default: easeinback)"
149
+
150
+ #: admin.php:261
151
+ msgid "Easing method when closing FancyBox. (default: easeInBack)"
152
+ msgstr "Fancybox'u sönükleştirerek kapat. (default: easeinback)"
153
+
154
+ #: admin.php:274
155
+ msgid "Easing method when navigating through gallery items. (default: easeInOutQuart)"
156
+ msgstr "Galeri parçalarını gezdirirken sönükleştir . (default: easeInOutQuart)"
157
+
158
+ #: admin.php:277
159
+ msgid "(There are 30 different easing methods, the first ones are the most boring. You can test them <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">here</a>)"
160
+ msgstr "(Burada 30 adet geçiş modu bulunmaktadır. İlk seçtiğiniz kötü olabilir. <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html\" target=\"_blank\">Buradan</a>) diğerlerini de kontrol edebilirsiniz."
161
+
162
+ #: admin.php:286
163
+ msgid "Show/Hide Advanced Settings"
164
+ msgstr "İnce Ayarları Göster/Sakla"
165
+
166
+ #: admin.php:287
167
+ msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
168
+ msgstr "Troubleshooting &amp; Eklentiyi Kaldırma ayarları Göster/Sakla"
169
+
170
+ #: admin.php:292
171
+ msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
172
+ msgstr "Hareket Ayarları <span style=\"color:orange\">(medium)</span>"
173
+
174
+ #: admin.php:294
175
+ msgid "The following settings should be left on default unless you know what you are doing."
176
+ msgstr "Ne yaptığınızı bilmiyorsanız düzünlemekten vazgeçin ve ayarları ilk konumuna getirin. (default değerlerine)"
177
+
178
+ #: admin.php:300
179
+ msgid "Auto Resize to Fit"
180
+ msgstr "Otomatik Boyutlandırma"
181
+
182
+ #: admin.php:306
183
+ msgid "Scale images to fit in viewport (default: on)"
184
+ msgstr "Görüntülemeyi ölçeklendir. (default: on)"
185
+
186
+ #: admin.php:314
187
+ msgid "Center on Scroll"
188
+ msgstr "Kaydırırken Ortada"
189
+
190
+ #: admin.php:320
191
+ msgid "Keep image in the center of the browser window when scrolling (default: on)"
192
+ msgstr "Pencere kaydırıldığında resim de sayfayla beraber kaysın. (default: on)"
193
+
194
+ #: admin.php:328
195
+ msgid "Close on Click"
196
+ msgstr "Tıklandığında Çıkış"
197
+
198
+ #: admin.php:334
199
+ msgid "Close FancyBox by clicking on the image (default: off)"
200
+ msgstr "Resime tıklandığında resim penceresini kapat. (default: off)"
201
+
202
+ #: admin.php:337
203
+ msgid "(You may want to leave this off if you display iframed or inline content and it containts clickable elements - for example: play buttons for movies, links to other pages)"
204
+ msgstr "(Eğer sayfayı iframe içerisinde göstermek istemiyorsanız burayı terkedebilirsiniz. Ör:/ videolar için oynatma butonu ve diğer sayfalara linkler koymak gibi.)"
205
+
206
+ #: admin.php:347
207
+ msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
208
+ msgstr "Galeri Ayarları <span style=\"color:red\">(advanced)</span>"
209
+
210
+ #: admin.php:349
211
+ msgid "Here you can choose if you want the plugin to group all images into a gallery, or make a gallery for each post. You can also define you own jQuery expression if you like."
212
+ msgstr "İsterseniz buradan bütün resimleri galerinin içine koyabilir ve yazınıza galeri oluşturabilirsiniz. Ayrıca kendi jQuery ifadelerini kullanabilirsiniz."
213
+
214
+ #: admin.php:355
215
+ msgid "Frame Size"
216
+ msgstr "Açılır Pencere Boyutu"
217
+
218
+ #: admin.php:361
219
+ msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
220
+ msgstr "Açılır pencere açıldığında Fancybox'un Pixel cinsinden genişliği. (default: 640)"
221
+
222
+ #: admin.php:366
223
+ msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
224
+ msgstr "Açılır pencere açıldığında Fancybox'un Pixel cinsinden yüksekliği. (default: 500)"
225
+
226
+ #: admin.php:374
227
+ msgid "Gallery Type"
228
+ msgstr "Galeri Tipi"
229
+
230
+ #: admin.php:380
231
+ msgid "Make a gallery for all images on the page (default)"
232
+ msgstr "Sayfadaki tüm resimlerden bir galeri oluştur. (default)"
233
+
234
+ #: admin.php:385
235
+ msgid "Do not group images in gallery automatically (use this if you want to make galleries manually with the <code>REL</code> attribute)"
236
+ msgstr "Resimleri otomatik olarak galeriye ekleme. (Bunu resimleri kendiniz galeriye eklemek isterseniz kullanın. Resimleri<code>REL</code> kodu ile galeriye ekleyebilirsiniz.)"
237
+
238
+ #: admin.php:390
239
+ msgid "Make a gallery for each post (will only work if your theme uses <code>class=\"post\"</code> on each post, which is common in WordPress"
240
+ msgstr "Her yazıda resim galerisi oluştur. (Sadece temanız her yazıda<code>class=\"post\"</code> kodunu kullanıyorsa çalışır, Wordpress'de yaygın olarak kullanılır.)"
241
+
242
+ #: admin.php:395
243
+ msgid "Use a custom expression to apply FancyBox"
244
+ msgstr "Kendi ifadelerinizi Fancybox'a ekleyin."
245
+
246
+ #: admin.php:404
247
+ msgid "Custom expression guidelines:"
248
+ msgstr "Özelleştirilmiş İfadeler Kılavuzu:"
249
+
250
+ #: admin.php:406
251
+ msgid "The custom expression has to apply <code>class=\"fancybox\"</code> to the links where you want to use FancyBox."
252
+ msgstr "Kendi ifadelerinizi kullanmak için FancyBox'u kullandığınız yerdeki linke <code>class=\"fancybox\"</code> kodunu yerleştiriniz."
253
+
254
+ #: admin.php:408
255
+ msgid "The jQuery <code>addClass()</code> function is a good way to add the class to the desired links conserving any existing class."
256
+ msgstr "jQuery <code>addClass()</code> fonksiyonu linklere falan şekil vermek için iyi bir yoldur."
257
+
258
+ #: admin.php:410
259
+ msgid "You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that FancyBox can show captions."
260
+ msgstr "You can use <code>getTitle()</code> in your expression to copy the title attribute from the <code>IMG</code> tag to the <code>A</code> tag, böylece başlıkları gösterebilirsiniz."
261
+
262
+ #: admin.php:412
263
+ msgid "Do not call the <code>fancybox()</code> function here, the plugin does this for you."
264
+ msgstr "<code>fancybox()</code> fonksiyonunu burada çalıştırma, eklenti sizin için."
265
+
266
+ #: admin.php:428
267
+ msgid "Troubleshooting Settings"
268
+ msgstr "Sorun Giderme Ayarları"
269
+
270
+ #: admin.php:430
271
+ msgid "Settings in this section should only be changed if you are having problems with the plugin!"
272
+ msgstr "Bu seçenek sadece eklentide bir problem yaşanıyorsa değiştirilebilir."
273
+
274
+ #: admin.php:432
275
+ msgid "If the plugin doesn't seem to work, first you should check for other plugins that may be conflicting with this one, especially other Lightbox, Slimbox, etc. Make sure all your plugins and WordPress itself are up to date (this plugin has only been tested in WordPress 2.7 and above)."
276
+ msgstr "Eğer bu eklenti çalışmıyor gibi görünüyorsa diğer eklentileri kontrol edin ve tüm eklentilerin güncel olduğundan emin olun. ( Bu eklenti sadece Wordpress 2.7 ve daha yüksek sürümlerinde test edilmiştir.)"
277
+
278
+ #: admin.php:434
279
+ msgid "Change them one at a time and test to see if they help. Remember that having a cache plugin may prevent changes from taking effect immidiately, so clear cache after saving changes here or deactivate cache until you finish editing these options."
280
+ msgstr "Bir defalığına test etmeniz size yardımcı olabilir. Test işlemini yapmadan önce ön bellek (cache) kullanıyorsanız önbelleği temizleyiniz ve sonra test işlemi yapınız. Önbelekleme sizin yaptığınız değişiklikleri görmenizi engelleyecektir. "
281
+
282
+ #: admin.php:440
283
+ msgid "Do not call jQuery"
284
+ msgstr "jQuery kullanma"
285
+
286
+ #: admin.php:446
287
+ msgid "Skip jQuery call. Use this only if jQuery is being loaded twice (default: off)"
288
+ msgstr "JQuery sorgusunu atla. Eğer JQuery iki defa çalışıyorsa bunu kullanın."
289
+
290
+ #: admin.php:454
291
+ msgid "jQuery \"noConflict\" Mode"
292
+ msgstr "jQuery \"noConflict\" Modu"
293
+
294
+ #: admin.php:460
295
+ msgid "Use jQuery noConflict mode (default: on)"
296
+ msgstr "jQuery noConflict modu kullan (default: on)"
297
+
298
+ #: admin.php:463
299
+ msgid "(Turning this off may cause problems if there are plugins activated that use other js framework like mootools, prototype, scriptaculous, etc.)"
300
+ msgstr "(Eğer eklenti aktifken diğer Java Scriptlerle ilgili problem yaşarsa (mootols, prototype gibi) bunu kapalı konuma getirin. )"
301
+
302
+ #: admin.php:472
303
+ msgid "Uninstall"
304
+ msgstr "Eklentiyi Kaldır"
305
+
306
+ #: admin.php:474
307
+ msgid "Like many other plugins, FancyBox for WordPress stores its settings on your WordPress' options database table. Actually, these settings are not using more than a couple of kilobytes of space, but if you want to completely uninstall this plugin, check the option below, then save changes, and <strong>when you deactivate the plugin</strong>, all its settings will be removed from the database."
308
+ msgstr "Diğer eklentiler gibi Fancybox da veritabanında Wordpress ayarları tablosunu kullanarak çalışır. Çok fazla boyut kullanmamasına rağmen kaldırmak isterseniz öncelikle ayarlardan eklentiyi kapatınız. Böylece ayarlarınız veritababnından silinecektir. Daha sonra kaldırma işlemini tamamlayabilirsiniz."
309
+
310
+ #: admin.php:480
311
+ msgid "Remove settings"
312
+ msgstr "Ayarları Sil"
313
+
314
+ #: admin.php:486
315
+ msgid "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. (default: off)"
316
+ msgstr "Eklenti etkisizleştirildiğinde ayarları temizle."
317
+
318
+ #: admin.php:503
319
+ msgid "Save Changes"
320
+ msgstr "Değişiklikleri Kaydet"
321
+
322
+ #: fancybox.php:437
323
+ msgid "Settings"
324
+ msgstr "Ayarlar"
325
+
languages/mfbfw.pot CHANGED
@@ -7,7 +7,7 @@ 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-03-25 16:40+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"
@@ -88,107 +88,107 @@ msgid ""
88
  "cache until you finish editing these options."
89
  msgstr ""
90
 
91
- #: admin.php:95
92
  msgid "Border Color"
93
  msgstr ""
94
 
95
- #: admin.php:101
96
  msgid "HTML color of the border (default: #BBBBBB)"
97
  msgstr ""
98
 
99
- #: admin.php:109
100
  msgid "Close Button Position"
101
  msgstr ""
102
 
103
- #: admin.php:115
104
  msgid "Left"
105
  msgstr ""
106
 
107
- #: admin.php:120
108
  msgid "Right (default)"
109
  msgstr ""
110
 
111
- #: admin.php:125
112
  msgid "Bottom"
113
  msgstr ""
114
 
115
- #: admin.php:130
116
  msgid "Top (default)"
117
  msgstr ""
118
 
119
- #: admin.php:138
120
  msgid "Padding"
121
  msgstr ""
122
 
123
- #: admin.php:144
124
  msgid "HTML color of the padding (default: #FFFFFF)"
125
  msgstr ""
126
 
127
- #: admin.php:149
128
  msgid "Padding size in pixels (default: 10)"
129
  msgstr ""
130
 
131
- #: admin.php:152
132
  msgid ""
133
  "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</"
134
  "strong> to \"0\" for the classic FancyBox look)"
135
  msgstr ""
136
 
137
- #: admin.php:159
138
  msgid "Overlay Options"
139
  msgstr ""
140
 
141
- #: admin.php:165
142
  msgid "Add overlay (default: on)"
143
  msgstr ""
144
 
145
- #: admin.php:170
146
  msgid "HTML color of the overlay (default: #666666)"
147
  msgstr ""
148
 
149
- #: admin.php:183
150
  msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
151
  msgstr ""
152
 
153
- #: admin.php:191
154
  msgid "Zoom Options"
155
  msgstr ""
156
 
157
- #: admin.php:197
158
  msgid "Change content transparency during zoom animations (default: on)"
159
  msgstr ""
160
 
161
- #: admin.php:209
162
  msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
163
  msgstr ""
164
 
165
- #: admin.php:221
166
  msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
167
  msgstr ""
168
 
169
- #: admin.php:229
170
  msgid "Easing"
171
  msgstr ""
172
 
173
- #: admin.php:235
174
  msgid "Activate easing (default: off)"
175
  msgstr ""
176
 
177
- #: admin.php:248
178
  msgid "Easing method when opening FancyBox. (default: easeOutBack)"
179
  msgstr ""
180
 
181
- #: admin.php:261
182
  msgid "Easing method when closing FancyBox. (default: easeInBack)"
183
  msgstr ""
184
 
185
- #: admin.php:274
186
  msgid ""
187
  "Easing method when navigating through gallery items. (default: "
188
  "easeInOutQuart)"
189
  msgstr ""
190
 
191
- #: admin.php:277
192
  msgid ""
193
  "(There are 30 different easing methods, the first ones are the most boring. "
194
  "You can test them <a href=\"http://commadot.com/jquery/easing.php\" target="
@@ -196,143 +196,161 @@ msgid ""
196
  "animationtypes.html\" target=\"_blank\">here</a>)"
197
  msgstr ""
198
 
199
- #: admin.php:286
200
  msgid "Show/Hide Advanced Settings"
201
  msgstr ""
202
 
203
- #: admin.php:287
204
  msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
205
  msgstr ""
206
 
207
- #: admin.php:292
208
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
209
  msgstr ""
210
 
211
- #: admin.php:294
212
  msgid ""
213
  "The following settings should be left on default unless you know what you "
214
  "are doing."
215
  msgstr ""
216
 
217
- #: admin.php:300
218
  msgid "Auto Resize to Fit"
219
  msgstr ""
220
 
221
- #: admin.php:306
222
  msgid "Scale images to fit in viewport (default: on)"
223
  msgstr ""
224
 
225
- #: admin.php:314
226
  msgid "Center on Scroll"
227
  msgstr ""
228
 
229
- #: admin.php:320
230
  msgid ""
231
  "Keep image in the center of the browser window when scrolling (default: on)"
232
  msgstr ""
233
 
234
- #: admin.php:328
235
  msgid "Close on Click"
236
  msgstr ""
237
 
238
- #: admin.php:334
239
  msgid "Close FancyBox by clicking on the image (default: off)"
240
  msgstr ""
241
 
242
- #: admin.php:337
243
  msgid ""
244
  "(You may want to leave this off if you display iframed or inline content and "
245
  "it containts clickable elements - for example: play buttons for movies, "
246
  "links to other pages)"
247
  msgstr ""
248
 
249
- #: admin.php:347
250
  msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
251
  msgstr ""
252
 
253
- #: admin.php:349
254
  msgid ""
255
  "Here you can choose if you want the plugin to group all images into a "
256
  "gallery, or make a gallery for each post. You can also define you own jQuery "
257
  "expression if you like."
258
  msgstr ""
259
 
260
- #: admin.php:355
261
  msgid "Frame Size"
262
  msgstr ""
263
 
264
- #: admin.php:361
265
  msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
266
  msgstr ""
267
 
268
- #: admin.php:366
269
  msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
270
  msgstr ""
271
 
272
- #: admin.php:374
273
  msgid "Gallery Type"
274
  msgstr ""
275
 
276
- #: admin.php:380
277
  msgid "Make a gallery for all images on the page (default)"
278
  msgstr ""
279
 
280
- #: admin.php:385
281
  msgid ""
282
  "Do not group images in gallery automatically (use this if you want to make "
283
  "galleries manually with the <code>REL</code> attribute)"
284
  msgstr ""
285
 
286
- #: admin.php:390
287
  msgid ""
288
  "Make a gallery for each post (will only work if your theme uses <code>class="
289
  "\"post\"</code> on each post, which is common in WordPress"
290
  msgstr ""
291
 
292
- #: admin.php:395
293
  msgid "Use a custom expression to apply FancyBox"
294
  msgstr ""
295
 
296
- #: admin.php:404
297
  msgid "Custom expression guidelines:"
298
  msgstr ""
299
 
300
- #: admin.php:406
 
 
 
 
 
 
 
301
  msgid ""
302
- "The custom expression has to apply <code>class=\"fancybox\"</code> to the "
303
- "links where you want to use FancyBox."
304
  msgstr ""
305
 
306
- #: admin.php:408
307
  msgid ""
308
- "The jQuery <code>addClass()</code> function is a good way to add the class "
309
- "to the desired links conserving any existing class."
 
310
  msgstr ""
311
 
312
- #: admin.php:410
313
  msgid ""
314
- "You can use <code>getTitle()</code> in your expression to copy the title "
315
- "attribute from the <code>IMG</code> tag to the <code>A</code> tag, so that "
316
- "FancyBox can show captions."
317
  msgstr ""
318
 
319
- #: admin.php:412
320
  msgid ""
321
- "Do not call the <code>fancybox()</code> function here, the plugin does this "
322
- "for you."
 
 
 
 
 
 
 
 
 
 
323
  msgstr ""
324
 
325
- #: admin.php:428
326
  msgid "Troubleshooting Settings"
327
  msgstr ""
328
 
329
- #: admin.php:430
330
  msgid ""
331
  "Settings in this section should only be changed if you are having problems "
332
  "with the plugin!"
333
  msgstr ""
334
 
335
- #: admin.php:432
336
  msgid ""
337
  "If the plugin doesn't seem to work, first you should check for other plugins "
338
  "that may be conflicting with this one, especially other Lightbox, Slimbox, "
@@ -340,7 +358,7 @@ msgid ""
340
  "plugin has only been tested in WordPress 2.7 and above)."
341
  msgstr ""
342
 
343
- #: admin.php:434
344
  msgid ""
345
  "Change them one at a time and test to see if they help. Remember that having "
346
  "a cache plugin may prevent changes from taking effect immidiately, so clear "
@@ -348,35 +366,35 @@ msgid ""
348
  "these options."
349
  msgstr ""
350
 
351
- #: admin.php:440
352
  msgid "Do not call jQuery"
353
  msgstr ""
354
 
355
- #: admin.php:446
356
  msgid ""
357
  "Skip jQuery call. Use this only if jQuery is being loaded twice (default: "
358
  "off)"
359
  msgstr ""
360
 
361
- #: admin.php:454
362
  msgid "jQuery \"noConflict\" Mode"
363
  msgstr ""
364
 
365
- #: admin.php:460
366
  msgid "Use jQuery noConflict mode (default: on)"
367
  msgstr ""
368
 
369
- #: admin.php:463
370
  msgid ""
371
  "(Turning this off may cause problems if there are plugins activated that use "
372
  "other js framework like mootools, prototype, scriptaculous, etc.)"
373
  msgstr ""
374
 
375
- #: admin.php:472
376
  msgid "Uninstall"
377
  msgstr ""
378
 
379
- #: admin.php:474
380
  msgid ""
381
  "Like many other plugins, FancyBox for WordPress stores its settings on your "
382
  "WordPress' options database table. Actually, these settings are not using "
@@ -386,20 +404,20 @@ msgid ""
386
  "removed from the database."
387
  msgstr ""
388
 
389
- #: admin.php:480
390
  msgid "Remove settings"
391
  msgstr ""
392
 
393
- #: admin.php:486
394
  msgid ""
395
  "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
396
  "(default: off)"
397
  msgstr ""
398
 
399
- #: admin.php:503
400
  msgid "Save Changes"
401
  msgstr ""
402
 
403
- #: fancybox.php:437
404
  msgid "Settings"
405
  msgstr ""
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-06-26 04:32+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"
88
  "cache until you finish editing these options."
89
  msgstr ""
90
 
91
+ #: admin.php:100
92
  msgid "Border Color"
93
  msgstr ""
94
 
95
+ #: admin.php:106
96
  msgid "HTML color of the border (default: #BBBBBB)"
97
  msgstr ""
98
 
99
+ #: admin.php:114
100
  msgid "Close Button Position"
101
  msgstr ""
102
 
103
+ #: admin.php:120
104
  msgid "Left"
105
  msgstr ""
106
 
107
+ #: admin.php:125
108
  msgid "Right (default)"
109
  msgstr ""
110
 
111
+ #: admin.php:130
112
  msgid "Bottom"
113
  msgstr ""
114
 
115
+ #: admin.php:135
116
  msgid "Top (default)"
117
  msgstr ""
118
 
119
+ #: admin.php:143
120
  msgid "Padding"
121
  msgstr ""
122
 
123
+ #: admin.php:149
124
  msgid "HTML color of the padding (default: #FFFFFF)"
125
  msgstr ""
126
 
127
+ #: admin.php:154
128
  msgid "Padding size in pixels (default: 10)"
129
  msgstr ""
130
 
131
+ #: admin.php:157
132
  msgid ""
133
  "(Set <strong>Border Color</strong> to \"#000000\" and <strong>Padding Size</"
134
  "strong> to \"0\" for the classic FancyBox look)"
135
  msgstr ""
136
 
137
+ #: admin.php:164
138
  msgid "Overlay Options"
139
  msgstr ""
140
 
141
+ #: admin.php:170
142
  msgid "Add overlay (default: on)"
143
  msgstr ""
144
 
145
+ #: admin.php:175
146
  msgid "HTML color of the overlay (default: #666666)"
147
  msgstr ""
148
 
149
+ #: admin.php:188
150
  msgid "Opacity of overlay. 0 is transparent, 1 is opaque (default: 0.3)"
151
  msgstr ""
152
 
153
+ #: admin.php:196
154
  msgid "Zoom Options"
155
  msgstr ""
156
 
157
+ #: admin.php:202
158
  msgid "Change content transparency during zoom animations (default: on)"
159
  msgstr ""
160
 
161
+ #: admin.php:214
162
  msgid "Speed in miliseconds of the zooming-in animation (default: 500)"
163
  msgstr ""
164
 
165
+ #: admin.php:226
166
  msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
167
  msgstr ""
168
 
169
+ #: admin.php:234
170
  msgid "Easing"
171
  msgstr ""
172
 
173
+ #: admin.php:240
174
  msgid "Activate easing (default: off)"
175
  msgstr ""
176
 
177
+ #: admin.php:253
178
  msgid "Easing method when opening FancyBox. (default: easeOutBack)"
179
  msgstr ""
180
 
181
+ #: admin.php:266
182
  msgid "Easing method when closing FancyBox. (default: easeInBack)"
183
  msgstr ""
184
 
185
+ #: admin.php:279
186
  msgid ""
187
  "Easing method when navigating through gallery items. (default: "
188
  "easeInOutQuart)"
189
  msgstr ""
190
 
191
+ #: admin.php:282
192
  msgid ""
193
  "(There are 30 different easing methods, the first ones are the most boring. "
194
  "You can test them <a href=\"http://commadot.com/jquery/easing.php\" target="
196
  "animationtypes.html\" target=\"_blank\">here</a>)"
197
  msgstr ""
198
 
199
+ #: admin.php:291
200
  msgid "Show/Hide Advanced Settings"
201
  msgstr ""
202
 
203
+ #: admin.php:292
204
  msgid "Show/Hide Troubleshooting &amp; Uninstall Settings"
205
  msgstr ""
206
 
207
+ #: admin.php:297
208
  msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
209
  msgstr ""
210
 
211
+ #: admin.php:299
212
  msgid ""
213
  "The following settings should be left on default unless you know what you "
214
  "are doing."
215
  msgstr ""
216
 
217
+ #: admin.php:305
218
  msgid "Auto Resize to Fit"
219
  msgstr ""
220
 
221
+ #: admin.php:311
222
  msgid "Scale images to fit in viewport (default: on)"
223
  msgstr ""
224
 
225
+ #: admin.php:319
226
  msgid "Center on Scroll"
227
  msgstr ""
228
 
229
+ #: admin.php:325
230
  msgid ""
231
  "Keep image in the center of the browser window when scrolling (default: on)"
232
  msgstr ""
233
 
234
+ #: admin.php:333
235
  msgid "Close on Click"
236
  msgstr ""
237
 
238
+ #: admin.php:339
239
  msgid "Close FancyBox by clicking on the image (default: off)"
240
  msgstr ""
241
 
242
+ #: admin.php:342
243
  msgid ""
244
  "(You may want to leave this off if you display iframed or inline content and "
245
  "it containts clickable elements - for example: play buttons for movies, "
246
  "links to other pages)"
247
  msgstr ""
248
 
249
+ #: admin.php:352
250
  msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
251
  msgstr ""
252
 
253
+ #: admin.php:354
254
  msgid ""
255
  "Here you can choose if you want the plugin to group all images into a "
256
  "gallery, or make a gallery for each post. You can also define you own jQuery "
257
  "expression if you like."
258
  msgstr ""
259
 
260
+ #: admin.php:360
261
  msgid "Frame Size"
262
  msgstr ""
263
 
264
+ #: admin.php:366
265
  msgid "Width in pixels of FancyBox when showing iframe content (default: 640)"
266
  msgstr ""
267
 
268
+ #: admin.php:371
269
  msgid "Height in pixels of FancyBox when showing iframe content (default: 500)"
270
  msgstr ""
271
 
272
+ #: admin.php:379
273
  msgid "Gallery Type"
274
  msgstr ""
275
 
276
+ #: admin.php:385
277
  msgid "Make a gallery for all images on the page (default)"
278
  msgstr ""
279
 
280
+ #: admin.php:390
281
  msgid ""
282
  "Do not group images in gallery automatically (use this if you want to make "
283
  "galleries manually with the <code>REL</code> attribute)"
284
  msgstr ""
285
 
286
+ #: admin.php:395
287
  msgid ""
288
  "Make a gallery for each post (will only work if your theme uses <code>class="
289
  "\"post\"</code> on each post, which is common in WordPress"
290
  msgstr ""
291
 
292
+ #: admin.php:400
293
  msgid "Use a custom expression to apply FancyBox"
294
  msgstr ""
295
 
296
+ #: admin.php:409
297
  msgid "Custom expression guidelines:"
298
  msgstr ""
299
 
300
+ #: admin.php:411
301
+ msgid ""
302
+ "&middot; The custom expression has to apply <code>class=\"fancybox\"</code> "
303
+ "to the links where you want to use FancyBox. Do not call the <code>fancybox()"
304
+ "</code> function here, the plugin does this for you."
305
+ msgstr ""
306
+
307
+ #: admin.php:413
308
  msgid ""
309
+ "&middot; The jQuery <code>addClass()</code> function is a good way to add "
310
+ "the class to the desired links conserving any existing class."
311
  msgstr ""
312
 
313
+ #: admin.php:415
314
  msgid ""
315
+ "&middot; You can use <code>getTitle()</code> in your expression to copy the "
316
+ "title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so "
317
+ "that FancyBox can show captions."
318
  msgstr ""
319
 
320
+ #: admin.php:417
321
  msgid ""
322
+ "&middot; You can use <code>jQuery(thumbnails)</code> like in the example "
323
+ "expression to apply FancyBox to thumbnails that link to these extensions: "
324
+ "BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase)."
325
  msgstr ""
326
 
327
+ #: admin.php:419
328
  msgid ""
329
+ "&middot; If you want to do it manually you can use something like "
330
+ "<code>jQuery(\"a:has(img)[href$='.jpg']\")</code> or whatever works for you."
331
+ msgstr ""
332
+
333
+ #: admin.php:421
334
+ msgid ""
335
+ "See the <a href=\"http://docs.jquery.com/\" target=\"_blank\">jQuery "
336
+ "Documentation</a> for more help."
337
+ msgstr ""
338
+
339
+ #: admin.php:423
340
+ msgid "Examples:"
341
  msgstr ""
342
 
343
+ #: admin.php:443
344
  msgid "Troubleshooting Settings"
345
  msgstr ""
346
 
347
+ #: admin.php:445
348
  msgid ""
349
  "Settings in this section should only be changed if you are having problems "
350
  "with the plugin!"
351
  msgstr ""
352
 
353
+ #: admin.php:447
354
  msgid ""
355
  "If the plugin doesn't seem to work, first you should check for other plugins "
356
  "that may be conflicting with this one, especially other Lightbox, Slimbox, "
358
  "plugin has only been tested in WordPress 2.7 and above)."
359
  msgstr ""
360
 
361
+ #: admin.php:449
362
  msgid ""
363
  "Change them one at a time and test to see if they help. Remember that having "
364
  "a cache plugin may prevent changes from taking effect immidiately, so clear "
366
  "these options."
367
  msgstr ""
368
 
369
+ #: admin.php:455
370
  msgid "Do not call jQuery"
371
  msgstr ""
372
 
373
+ #: admin.php:461
374
  msgid ""
375
  "Skip jQuery call. Use this only if jQuery is being loaded twice (default: "
376
  "off)"
377
  msgstr ""
378
 
379
+ #: admin.php:469
380
  msgid "jQuery \"noConflict\" Mode"
381
  msgstr ""
382
 
383
+ #: admin.php:475
384
  msgid "Use jQuery noConflict mode (default: on)"
385
  msgstr ""
386
 
387
+ #: admin.php:478
388
  msgid ""
389
  "(Turning this off may cause problems if there are plugins activated that use "
390
  "other js framework like mootools, prototype, scriptaculous, etc.)"
391
  msgstr ""
392
 
393
+ #: admin.php:487
394
  msgid "Uninstall"
395
  msgstr ""
396
 
397
+ #: admin.php:489
398
  msgid ""
399
  "Like many other plugins, FancyBox for WordPress stores its settings on your "
400
  "WordPress' options database table. Actually, these settings are not using "
404
  "removed from the database."
405
  msgstr ""
406
 
407
+ #: admin.php:495
408
  msgid "Remove settings"
409
  msgstr ""
410
 
411
+ #: admin.php:501
412
  msgid ""
413
  "Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
414
  "(default: off)"
415
  msgstr ""
416
 
417
+ #: admin.php:517
418
  msgid "Save Changes"
419
  msgstr ""
420
 
421
+ #: fancybox.php:373
422
  msgid "Settings"
423
  msgstr ""
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, image, gallery
5
  Requires at least: 2.7
6
- Tested up to: 2.7.1
7
- Stable tag: 2.5.1
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,13 +15,28 @@ 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 image links that open an image. This includes posts, the sidebar, etc, so you can activate it and it will be applied automatically.
19
 
20
  Finally, i have only tested the plugin in WordPress 2.7, so it's very recomended to use it with WordPress 2.7 or later. After all, there's no reason why you shouldn't be already using WP2.7, is there? ;)
21
 
22
 
23
  = Changelog =
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  2.5.1 Updates:
26
 
27
  * Fixed the plugin not working when selecting Gallery Type "By Post"
@@ -92,7 +107,8 @@ Finally, i have only tested the plugin in WordPress 2.7, so it's very recomended
92
 
93
  = Known Bugs =
94
 
95
- * Shadows not perfect yet on IE6/7, but close
 
96
 
97
 
98
  == Installation ==
3
  Donate link: https://www.asmallorange.com/extras/donate/?id=10218
4
  Tags: fancybox, lightbox, jquery, image, gallery
5
  Requires at least: 2.7
6
+ Tested up to: 2.8
7
+ Stable tag: 2.6.0
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://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
  Finally, i have only tested the plugin in WordPress 2.7, so it's very recomended to use it with WordPress 2.7 or later. After all, there's no reason why you shouldn't be already using WP2.7, is there? ;)
21
 
22
 
23
  = Changelog =
24
 
25
+ 2.6.0 Updates:
26
+
27
+ * Optimized the JavaScript code used to apply FancyBox
28
+ * Updated Custom Expression section in Options Page
29
+ * Fixed uppercase image extensions not being recognized
30
+ * CSS is now loaded before the JavaScript for better parallelization
31
+ * jquery.easing.1.3.js compressed (from 8,10kb to 3,47kb) and renamed to jquery.easing.1.3.pack.js
32
+ * Added Turkish translation (some strings missing)
33
+ * Added Japanese translation (some strings missing)
34
+ * Updated Spanish translation
35
+ * Updated to use new Plugin API in WP2.7 for better forward compatibility
36
+ * Removed /wp-content/ reference in fancybox.php for better WP2.8 support
37
+ * Optimized some code readability
38
+
39
+
40
  2.5.1 Updates:
41
 
42
  * Fixed the plugin not working when selecting Gallery Type "By Post"
107
 
108
  = Known Bugs =
109
 
110
+ * Shadows not perfect on IE6/7
111
+ * Options page may not work on WordPress MU
112
 
113
 
114
  == Installation ==