Version Description
- Fixed the Revert Options button.
- Fixed wrong version number being shown on the plugin's settings page.
- Updated plugin and author links in readme and settings page.
- Updated localization catalog (POT file).
- Updated Spanish translation with minor updates.
- Updated Frequently Asked Questions in readme file.
- Removed version number from printed html source code.
- Removed outdated/incomplete translation binaries.
Download this release
Release Info
Developer | moskis |
Plugin | FancyBox for WordPress |
Version | 3.0.5 |
Comparing to | |
See all releases |
Code changes from version 3.0.4 to 3.0.5
- admin.php +1 -1
- fancybox.php +6 -7
- languages/mfbfw-de_DE.mo +0 -0
- languages/mfbfw-es_ES.mo +0 -0
- languages/mfbfw-es_ES.po +427 -123
- languages/mfbfw-ja.mo +0 -0
- languages/mfbfw-tr_TR.mo +0 -0
- languages/mfbfw.pot +39 -32
- lib/admin-tab-info.php +2 -4
- lib/admin-tab-support.php +0 -1
- readme.txt +37 -4
admin.php
CHANGED
@@ -8,7 +8,7 @@ function mfbfw_options_page() {
|
|
8 |
|
9 |
<div class="wrap">
|
10 |
|
11 |
-
<div id="icon-plugins" class="icon32"></div><h2><?php printf( __('Fancybox for WordPress (version %s)', 'mfbfw'),
|
12 |
|
13 |
<br />
|
14 |
|
8 |
|
9 |
<div class="wrap">
|
10 |
|
11 |
+
<div id="icon-plugins" class="icon32"></div><h2><?php printf( __('Fancybox for WordPress (version %s)', 'mfbfw'), FBFW_VERSION ); ?></h2>
|
12 |
|
13 |
<br />
|
14 |
|
fancybox.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: FancyBox for WordPress
|
4 |
-
Plugin URI:
|
5 |
Description: Integrates <a href="http://fancybox.net/">FancyBox</a> by <a href="http://klade.lv/">Janis Skarnelis</a> into WordPress.
|
6 |
-
Version: 3.0.
|
7 |
Author: José Pardilla
|
8 |
-
Author URI: http://
|
9 |
|
10 |
* FancyBox is Copyright (c) 2008 - 2010 Janis Skarnelis
|
11 |
* Dual licensed under the MIT and GPL licenses:
|
@@ -20,7 +20,7 @@ Author URI: http://josepardilla.com/
|
|
20 |
* Constants
|
21 |
*/
|
22 |
|
23 |
-
define( 'FBFW_VERSION', '3.0.
|
24 |
define( 'FBFW_PATH', plugin_dir_path(__FILE__) );
|
25 |
define( 'FBFW_URL', plugin_dir_url(__FILE__) );
|
26 |
|
@@ -217,9 +217,8 @@ add_action( 'wp_enqueue_scripts', 'mfbfw_styles' );
|
|
217 |
function mfbfw_init() {
|
218 |
|
219 |
$settings = get_option( 'mfbfw' );
|
220 |
-
$version = get_option( 'mfbfw_active_version' );
|
221 |
|
222 |
-
echo "\n<!-- Fancybox for WordPress
|
223 |
|
224 |
<script type="text/javascript">
|
225 |
jQuery(function(){
|
@@ -341,7 +340,7 @@ function mfbfw_admin_options() {
|
|
341 |
|
342 |
if ( isset($_GET['page']) && $_GET['page'] == 'fancybox-for-wordpress' ) {
|
343 |
|
344 |
-
if ( isset($_REQUEST['action']) && 'reset' == $_REQUEST['action'] && check_admin_referer( 'mfbfw-options-
|
345 |
|
346 |
$defaults_array = mfbfw_defaults(); // Store defaults in an array
|
347 |
update_option( 'mfbfw', $defaults_array ); // Write defaults to database
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: FancyBox for WordPress
|
4 |
+
Plugin URI: https://wordpress.org/plugins/fancybox-for-wordpress/
|
5 |
Description: Integrates <a href="http://fancybox.net/">FancyBox</a> by <a href="http://klade.lv/">Janis Skarnelis</a> into WordPress.
|
6 |
+
Version: 3.0.5
|
7 |
Author: José Pardilla
|
8 |
+
Author URI: http://twitter.com/moskis
|
9 |
|
10 |
* FancyBox is Copyright (c) 2008 - 2010 Janis Skarnelis
|
11 |
* Dual licensed under the MIT and GPL licenses:
|
20 |
* Constants
|
21 |
*/
|
22 |
|
23 |
+
define( 'FBFW_VERSION', '3.0.5' );
|
24 |
define( 'FBFW_PATH', plugin_dir_path(__FILE__) );
|
25 |
define( 'FBFW_URL', plugin_dir_url(__FILE__) );
|
26 |
|
217 |
function mfbfw_init() {
|
218 |
|
219 |
$settings = get_option( 'mfbfw' );
|
|
|
220 |
|
221 |
+
echo "\n<!-- Fancybox for WordPress -->"; ?>
|
222 |
|
223 |
<script type="text/javascript">
|
224 |
jQuery(function(){
|
340 |
|
341 |
if ( isset($_GET['page']) && $_GET['page'] == 'fancybox-for-wordpress' ) {
|
342 |
|
343 |
+
if ( isset($_REQUEST['action']) && 'reset' == $_REQUEST['action'] && check_admin_referer( 'mfbfw-options-reset' ) ) {
|
344 |
|
345 |
$defaults_array = mfbfw_defaults(); // Store defaults in an array
|
346 |
update_option( 'mfbfw', $defaults_array ); // Write defaults to database
|
languages/mfbfw-de_DE.mo
DELETED
Binary file
|
languages/mfbfw-es_ES.mo
CHANGED
Binary file
|
languages/mfbfw-es_ES.po
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: FancyBox for WordPress Español\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/
|
5 |
-
"
|
|
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Jose Pardilla <
|
8 |
"Language-Team: Moskis <jose@moskis.net>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-
|
13 |
-
"X-Poedit-Country: SPAIN\n"
|
14 |
|
15 |
#: admin.php:11
|
16 |
msgid "Fancybox for WordPress (version %s)"
|
@@ -48,13 +49,11 @@ msgstr "Llamadas Extra"
|
|
48 |
msgid "Troubleshooting"
|
49 |
msgstr "Ayuda"
|
50 |
|
51 |
-
#: admin.php:30
|
52 |
-
#: lib/admin-tab-support.php:1
|
53 |
msgid "Support"
|
54 |
msgstr "Soporte"
|
55 |
|
56 |
-
#: admin.php:31
|
57 |
-
#: lib/admin-tab-uninstall.php:1
|
58 |
msgid "Uninstall"
|
59 |
msgstr "Desinstalar"
|
60 |
|
@@ -62,23 +61,24 @@ msgstr "Desinstalar"
|
|
62 |
msgid "Save Changes"
|
63 |
msgstr "Guardar Cambios"
|
64 |
|
65 |
-
#: admin.php:
|
66 |
msgid "Revert to defaults"
|
67 |
msgstr "Restaurar valores por defecto"
|
68 |
|
69 |
-
#: admin.php:
|
70 |
msgid "If you use FancyBox and like it, buy the author a beer!"
|
71 |
msgstr "Si usas FancyBox y te gusta, cómprale una cerveza al autor!"
|
72 |
|
73 |
-
#: admin.php:
|
74 |
msgid "The author of this WordPress Plugin also likes beer :P"
|
75 |
-
msgstr "
|
|
|
76 |
|
77 |
-
#: admin.php:
|
78 |
msgid "Follow me on Twitter for more WordPress Plugins and Themes"
|
79 |
msgstr "Sígueme en Twitter para más Plugins y Temas de WordPress"
|
80 |
|
81 |
-
#: fancybox.php:
|
82 |
msgid "Settings"
|
83 |
msgstr "Opciones"
|
84 |
|
@@ -87,8 +87,12 @@ msgid "Animation Settings <span style=\"color:green\">(basic)</span>"
|
|
87 |
msgstr "Opciones de Animación <span style=\"color:green\">(básico)</span>"
|
88 |
|
89 |
#: lib/admin-tab-animations.php:3
|
90 |
-
msgid "
|
91 |
-
|
|
|
|
|
|
|
|
|
92 |
|
93 |
#: lib/admin-tab-animations.php:9
|
94 |
msgid "Zoom Options"
|
@@ -107,8 +111,12 @@ msgid "Speed in miliseconds of the zooming-out animation (default: 500)"
|
|
107 |
msgstr "Velocidad en milisegundos del efecto de Zoom Out (por defecto: 500)"
|
108 |
|
109 |
#: lib/admin-tab-animations.php:51
|
110 |
-
msgid "
|
111 |
-
|
|
|
|
|
|
|
|
|
112 |
|
113 |
#: lib/admin-tab-animations.php:59
|
114 |
msgid "Transition Type"
|
@@ -151,20 +159,36 @@ msgid "(Requires closing transition type to be set to elastic)"
|
|
151 |
msgstr "(Requiere el tipo de transición de cerrado elástico)"
|
152 |
|
153 |
#: lib/admin-tab-animations.php:147
|
154 |
-
msgid "
|
155 |
-
|
|
|
|
|
|
|
156 |
|
157 |
#: lib/admin-tab-animations.php:150
|
158 |
-
msgid "
|
159 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
#: lib/admin-tab-appearance.php:1
|
162 |
msgid "Appearance Settings <span style=\"color:green\">(basic)</span>"
|
163 |
msgstr "Opciones de Apariencia <span style=\"color:green\">(básico)</span>"
|
164 |
|
165 |
#: lib/admin-tab-appearance.php:3
|
166 |
-
msgid "
|
167 |
-
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
#: lib/admin-tab-appearance.php:9
|
170 |
msgid "Border"
|
@@ -215,8 +239,12 @@ msgid "HTML color of the padding (default: #FFFFFF)"
|
|
215 |
msgstr "Color HTML del margen (por defecto: #FFFFFF)"
|
216 |
|
217 |
#: lib/admin-tab-appearance.php:80
|
218 |
-
msgid "
|
219 |
-
|
|
|
|
|
|
|
|
|
220 |
|
221 |
#: lib/admin-tab-appearance.php:84
|
222 |
msgid "Padding size in pixels (default: 10)"
|
@@ -279,8 +307,12 @@ msgid "Behavior Settings <span style=\"color:orange\">(medium)</span>"
|
|
279 |
msgstr "Opciones de Comportamiento <span style=\"color:orange\">(medio)</span>"
|
280 |
|
281 |
#: lib/admin-tab-behaviour.php:3
|
282 |
-
msgid "
|
283 |
-
|
|
|
|
|
|
|
|
|
284 |
|
285 |
#: lib/admin-tab-behaviour.php:9
|
286 |
msgid "Auto Resize to Fit"
|
@@ -288,15 +320,20 @@ msgstr "Ajustar Tamaño"
|
|
288 |
|
289 |
#: lib/admin-tab-behaviour.php:15
|
290 |
msgid "Scale images to fit in viewport (default: on)"
|
291 |
-
msgstr "
|
|
|
|
|
292 |
|
293 |
#: lib/admin-tab-behaviour.php:23
|
294 |
msgid "Center on Scroll"
|
295 |
msgstr "Centrar al hacer Scroll"
|
296 |
|
297 |
#: lib/admin-tab-behaviour.php:29
|
298 |
-
msgid "
|
299 |
-
|
|
|
|
|
|
|
300 |
|
301 |
#: lib/admin-tab-behaviour.php:37
|
302 |
msgid "Close on Content Click"
|
@@ -307,8 +344,14 @@ msgid "Close FancyBox by clicking on the image (default: off)"
|
|
307 |
msgstr "Cerrar FancyBox al hacer click en la imagen (por defecto: desactivado)"
|
308 |
|
309 |
#: lib/admin-tab-behaviour.php:46
|
310 |
-
msgid "
|
311 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
|
313 |
#: lib/admin-tab-behaviour.php:53
|
314 |
msgid "Close on Overlay Click"
|
@@ -324,15 +367,21 @@ msgstr "Cerrar con "Esc""
|
|
324 |
|
325 |
#: lib/admin-tab-behaviour.php:73
|
326 |
msgid "Close FancyBox when "Escape" key is pressed (default: on)"
|
327 |
-
msgstr "
|
|
|
|
|
328 |
|
329 |
#: lib/admin-tab-behaviour.php:81
|
330 |
msgid "Cyclic Galleries"
|
331 |
msgstr "Galerías Cíclicas"
|
332 |
|
333 |
#: lib/admin-tab-behaviour.php:87
|
334 |
-
msgid "
|
335 |
-
|
|
|
|
|
|
|
|
|
336 |
|
337 |
#: lib/admin-tab-behaviour.php:95
|
338 |
msgid "Mouse Wheel Navigation"
|
@@ -340,7 +389,9 @@ msgstr "Navegación por rueda del ratón"
|
|
340 |
|
341 |
#: lib/admin-tab-behaviour.php:101
|
342 |
msgid "Lets visitors navigate galleries with the mouse wheel (default: off)"
|
343 |
-
msgstr "
|
|
|
|
|
344 |
|
345 |
#: lib/admin-tab-behaviour.php:104
|
346 |
msgid "(Will load one additional javascript file, 3KB)"
|
@@ -351,12 +402,25 @@ msgid "Extra FancyBox Calls <span style=\"color:red\">(advanced)</span>"
|
|
351 |
msgstr "Llamadas Extra de FancyBox <span style=\"color:red\">(avanzado)</span>"
|
352 |
|
353 |
#: lib/admin-tab-calls.php:3
|
354 |
-
msgid "
|
355 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
|
357 |
#: lib/admin-tab-calls.php:5
|
358 |
-
msgid "
|
359 |
-
|
|
|
|
|
|
|
|
|
|
|
360 |
|
361 |
#: lib/admin-tab-calls.php:11
|
362 |
msgid "Additional FancyBox Calls"
|
@@ -366,8 +430,7 @@ msgstr "Llamadas Extra de FancyBox"
|
|
366 |
msgid "Additional FancyBox Calls (default: off)"
|
367 |
msgstr "Llamadas Extra de FancyBox (por defecto: desactivado)"
|
368 |
|
369 |
-
#: lib/admin-tab-calls.php:26
|
370 |
-
#: lib/admin-tab-other.php:89
|
371 |
msgid "Example:"
|
372 |
msgstr "Ejemplo:"
|
373 |
|
@@ -376,8 +439,14 @@ msgid "Gallery Settings <span style=\"color:red\">(advanced)</span>"
|
|
376 |
msgstr "Opciones de Galería <span style=\"color:red\">(avanzado)</span>"
|
377 |
|
378 |
#: lib/admin-tab-galleries.php:3
|
379 |
-
msgid "
|
380 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
|
382 |
#: lib/admin-tab-galleries.php:9
|
383 |
msgid "Gallery Type"
|
@@ -385,15 +454,27 @@ msgstr "Tipo de Galería"
|
|
385 |
|
386 |
#: lib/admin-tab-galleries.php:15
|
387 |
msgid "Make a gallery for all images on the page (default)"
|
388 |
-
msgstr "
|
|
|
|
|
389 |
|
390 |
#: lib/admin-tab-galleries.php:20
|
391 |
-
msgid "
|
392 |
-
|
|
|
|
|
|
|
|
|
|
|
393 |
|
394 |
#: lib/admin-tab-galleries.php:25
|
395 |
-
msgid "
|
396 |
-
|
|
|
|
|
|
|
|
|
|
|
397 |
|
398 |
#: lib/admin-tab-galleries.php:30
|
399 |
msgid "Use a custom expression to apply FancyBox"
|
@@ -404,28 +485,61 @@ msgid "Custom expression guidelines:"
|
|
404 |
msgstr "Indicaciones para expresiones personalizadas:"
|
405 |
|
406 |
#: lib/admin-tab-galleries.php:41
|
407 |
-
msgid "
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
#: lib/admin-tab-galleries.php:43
|
411 |
-
msgid "
|
412 |
-
|
|
|
|
|
|
|
|
|
413 |
|
414 |
#: lib/admin-tab-galleries.php:45
|
415 |
-
msgid "
|
416 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
#: lib/admin-tab-galleries.php:47
|
419 |
-
msgid "
|
420 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
|
422 |
#: lib/admin-tab-galleries.php:49
|
423 |
-
msgid "
|
424 |
-
|
|
|
|
|
|
|
|
|
|
|
425 |
|
426 |
#: lib/admin-tab-galleries.php:51
|
427 |
-
msgid "
|
428 |
-
|
|
|
|
|
|
|
|
|
429 |
|
430 |
#: lib/admin-tab-galleries.php:53
|
431 |
msgid "Examples:"
|
@@ -436,24 +550,49 @@ msgid "Information"
|
|
436 |
msgstr "Información"
|
437 |
|
438 |
#: lib/admin-tab-info.php:3
|
439 |
-
msgid "
|
440 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
|
442 |
#: lib/admin-tab-info.php:5
|
443 |
-
msgid "
|
444 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
#: lib/admin-tab-info.php:7
|
447 |
-
msgid "
|
448 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
|
450 |
#: lib/admin-tab-info.php:9
|
451 |
-
msgid "
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
|
|
|
|
|
|
457 |
|
458 |
#: lib/admin-tab-other.php:1
|
459 |
msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
|
@@ -472,28 +611,53 @@ msgid "Auto detect dimensions (default: on)"
|
|
472 |
msgstr "Auto detectar dimensiones (por defecto: activado)"
|
473 |
|
474 |
#: lib/admin-tab-other.php:18
|
475 |
-
msgid "
|
476 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
|
478 |
#: lib/admin-tab-other.php:22
|
479 |
-
msgid "
|
480 |
-
|
|
|
|
|
|
|
|
|
481 |
|
482 |
#: lib/admin-tab-other.php:27
|
483 |
-
msgid "
|
484 |
-
|
|
|
|
|
|
|
|
|
485 |
|
486 |
#: lib/admin-tab-other.php:35
|
487 |
msgid "Load JavaScript in Footer"
|
488 |
msgstr "Cargar JavaScript en el Pié de página"
|
489 |
|
490 |
#: lib/admin-tab-other.php:41
|
491 |
-
msgid "
|
492 |
-
|
|
|
|
|
|
|
493 |
|
494 |
#: lib/admin-tab-other.php:44
|
495 |
-
msgid "
|
496 |
-
|
|
|
|
|
|
|
|
|
497 |
|
498 |
#: lib/admin-tab-other.php:51
|
499 |
msgid "Callbacks"
|
@@ -508,24 +672,44 @@ msgid "Enabling this will show additional settings."
|
|
508 |
msgstr "Activar esta opcíón mostrará opociones adicionales."
|
509 |
|
510 |
#: lib/admin-tab-other.php:65
|
511 |
-
msgid "
|
512 |
-
|
|
|
|
|
|
|
|
|
513 |
|
514 |
#: lib/admin-tab-other.php:70
|
515 |
-
msgid "
|
516 |
-
|
|
|
|
|
|
|
|
|
517 |
|
518 |
#: lib/admin-tab-other.php:75
|
519 |
-
msgid "
|
520 |
-
|
|
|
|
|
|
|
|
|
521 |
|
522 |
#: lib/admin-tab-other.php:80
|
523 |
-
msgid "
|
524 |
-
|
|
|
|
|
|
|
|
|
525 |
|
526 |
#: lib/admin-tab-other.php:85
|
527 |
-
msgid "
|
528 |
-
|
|
|
|
|
|
|
|
|
529 |
|
530 |
#: lib/admin-tab-other.php:91
|
531 |
msgid "Leave empty any speciic callbacks you don't need to use."
|
@@ -536,72 +720,192 @@ msgid "Help with Fancybox"
|
|
536 |
msgstr "Ayuda sobre ancyBox"
|
537 |
|
538 |
#: lib/admin-tab-support.php:5
|
539 |
-
msgid "
|
540 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
|
542 |
#: lib/admin-tab-support.php:8
|
543 |
msgid "Help with Fancybox for WordPress plugin"
|
544 |
msgstr "Ayuda para el plugin Fancybox for WordPress"
|
545 |
|
546 |
#: lib/admin-tab-support.php:10
|
547 |
-
msgid "
|
548 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
|
550 |
#: lib/admin-tab-support.php:11
|
551 |
-
msgid "
|
552 |
-
|
|
|
|
|
|
|
553 |
|
554 |
#: lib/admin-tab-support.php:12
|
555 |
-
msgid "
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
|
562 |
-
#: lib/admin-tab-support.php:
|
563 |
msgid "IMPORTANT:"
|
564 |
msgstr "IMPORTANTE:"
|
565 |
|
566 |
-
#: lib/admin-tab-support.php:
|
567 |
-
msgid "
|
568 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
|
570 |
#: lib/admin-tab-troubleshooting.php:1
|
571 |
msgid "Troubleshooting Settings"
|
572 |
msgstr "Resolución de Problemas"
|
573 |
|
574 |
#: lib/admin-tab-troubleshooting.php:3
|
575 |
-
msgid "
|
576 |
-
|
|
|
|
|
|
|
|
|
577 |
|
578 |
#: lib/admin-tab-troubleshooting.php:5
|
579 |
-
msgid "
|
580 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
#: lib/admin-tab-troubleshooting.php:7
|
583 |
-
msgid "
|
584 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
|
586 |
#: lib/admin-tab-troubleshooting.php:13
|
587 |
msgid "Do not call jQuery"
|
588 |
msgstr "No cargar jQuery"
|
589 |
|
590 |
#: lib/admin-tab-troubleshooting.php:19
|
591 |
-
msgid "
|
592 |
-
|
|
|
|
|
|
|
|
|
593 |
|
594 |
#: lib/admin-tab-uninstall.php:3
|
595 |
-
msgid "
|
596 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
|
598 |
#: lib/admin-tab-uninstall.php:9
|
599 |
msgid "Remove settings"
|
600 |
msgstr "Eliminar Opciones"
|
601 |
|
602 |
#: lib/admin-tab-uninstall.php:15
|
603 |
-
msgid "
|
604 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
|
606 |
#~ msgid "Callback on Start event (default: empty)"
|
607 |
#~ msgstr "Retrollamada en el evento de Inicio (por defecto: vacío)"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: FancyBox for WordPress Español\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/fancybox-for-"
|
5 |
+
"wordpress\n"
|
6 |
+
"POT-Creation-Date: 2015-02-07 02:02:19+00:00\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
+
"Last-Translator: Jose Pardilla <jose@moskis.net>\n"
|
9 |
"Language-Team: Moskis <jose@moskis.net>\n"
|
10 |
+
"Language: es_ES\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.7.4\n"
|
|
|
15 |
|
16 |
#: admin.php:11
|
17 |
msgid "Fancybox for WordPress (version %s)"
|
49 |
msgid "Troubleshooting"
|
50 |
msgstr "Ayuda"
|
51 |
|
52 |
+
#: admin.php:30 lib/admin-tab-support.php:1
|
|
|
53 |
msgid "Support"
|
54 |
msgstr "Soporte"
|
55 |
|
56 |
+
#: admin.php:31 lib/admin-tab-uninstall.php:1
|
|
|
57 |
msgid "Uninstall"
|
58 |
msgstr "Desinstalar"
|
59 |
|
61 |
msgid "Save Changes"
|
62 |
msgstr "Guardar Cambios"
|
63 |
|
64 |
+
#: admin.php:85
|
65 |
msgid "Revert to defaults"
|
66 |
msgstr "Restaurar valores por defecto"
|
67 |
|
68 |
+
#: admin.php:93
|
69 |
msgid "If you use FancyBox and like it, buy the author a beer!"
|
70 |
msgstr "Si usas FancyBox y te gusta, cómprale una cerveza al autor!"
|
71 |
|
72 |
+
#: admin.php:110
|
73 |
msgid "The author of this WordPress Plugin also likes beer :P"
|
74 |
+
msgstr ""
|
75 |
+
"Al autor de este plugin para WordPress también le gusta la cerveza :P"
|
76 |
|
77 |
+
#: admin.php:120
|
78 |
msgid "Follow me on Twitter for more WordPress Plugins and Themes"
|
79 |
msgstr "Sígueme en Twitter para más Plugins y Temas de WordPress"
|
80 |
|
81 |
+
#: fancybox.php:404
|
82 |
msgid "Settings"
|
83 |
msgstr "Opciones"
|
84 |
|
87 |
msgstr "Opciones de Animación <span style=\"color:green\">(básico)</span>"
|
88 |
|
89 |
#: lib/admin-tab-animations.php:3
|
90 |
+
msgid ""
|
91 |
+
"These settings control the animations when opening and closing Fancybox, and "
|
92 |
+
"the optional easing effects."
|
93 |
+
msgstr ""
|
94 |
+
"Estas opciones controlan las animaciones al abrir y cerrar Fancybox, y los "
|
95 |
+
"efectos opcionales de animación."
|
96 |
|
97 |
#: lib/admin-tab-animations.php:9
|
98 |
msgid "Zoom Options"
|
111 |
msgstr "Velocidad en milisegundos del efecto de Zoom Out (por defecto: 500)"
|
112 |
|
113 |
#: lib/admin-tab-animations.php:51
|
114 |
+
msgid ""
|
115 |
+
"Speed in miliseconds of the animation when navigating thorugh gallery items "
|
116 |
+
"(default: 300)"
|
117 |
+
msgstr ""
|
118 |
+
"Velocidad en milisegundos de la animación al navegar entre los elementos de "
|
119 |
+
"una galería (por defecto: 300)"
|
120 |
|
121 |
#: lib/admin-tab-animations.php:59
|
122 |
msgid "Transition Type"
|
159 |
msgstr "(Requiere el tipo de transición de cerrado elástico)"
|
160 |
|
161 |
#: lib/admin-tab-animations.php:147
|
162 |
+
msgid ""
|
163 |
+
"Easing method when navigating through gallery items. (default: "
|
164 |
+
"easeInOutQuart)"
|
165 |
+
msgstr ""
|
166 |
+
"Efecto de animación al navegar por galerías. (por defecto: easoInOutQuart)"
|
167 |
|
168 |
#: lib/admin-tab-animations.php:150
|
169 |
+
msgid ""
|
170 |
+
"(There are 30 different easing methods, the first ones are the most boring. "
|
171 |
+
"You can test them <a href=\"http://commadot.com/jquery/easing.php\" target="
|
172 |
+
"\"_blank\">here</a> or <a href=\"http://hosted.zeh.com.br/mctween/"
|
173 |
+
"animationtypes.html\" target=\"_blank\">here</a>)"
|
174 |
+
msgstr ""
|
175 |
+
"(Hay 30 efectos diferentes, los primeros son los más aburridos. Puedes "
|
176 |
+
"probarlos <a href=\"http://commadot.com/jquery/easing.php\" target=\"_blank"
|
177 |
+
"\">aquí</a> o <a href=\"http://hosted.zeh.com.br/mctween/animationtypes.html"
|
178 |
+
"\" target=\"_blank\">aquí</a>)"
|
179 |
|
180 |
#: lib/admin-tab-appearance.php:1
|
181 |
msgid "Appearance Settings <span style=\"color:green\">(basic)</span>"
|
182 |
msgstr "Opciones de Apariencia <span style=\"color:green\">(básico)</span>"
|
183 |
|
184 |
#: lib/admin-tab-appearance.php:3
|
185 |
+
msgid ""
|
186 |
+
"These setting control how Fancybox looks, they let you tweak color, borders "
|
187 |
+
"and position of elements, like the image title and closing buttons."
|
188 |
+
msgstr ""
|
189 |
+
"Estas opciones controlan el aspecto general de FancyBox, te permiten ajustar "
|
190 |
+
"los colores, bordes y posición de elementos como el título de la imagen y el "
|
191 |
+
"botón de cerrar."
|
192 |
|
193 |
#: lib/admin-tab-appearance.php:9
|
194 |
msgid "Border"
|
239 |
msgstr "Color HTML del margen (por defecto: #FFFFFF)"
|
240 |
|
241 |
#: lib/admin-tab-appearance.php:80
|
242 |
+
msgid ""
|
243 |
+
"(This should be left on #FFFFFF (white) if you want to display anything "
|
244 |
+
"other than images, like inline or framed content)"
|
245 |
+
msgstr ""
|
246 |
+
"(Esta opción debería dejarse en #FFFFFF (blanco) si vas a mostrar algo que "
|
247 |
+
"no sean imágenes, como contenido anidado)"
|
248 |
|
249 |
#: lib/admin-tab-appearance.php:84
|
250 |
msgid "Padding size in pixels (default: 10)"
|
307 |
msgstr "Opciones de Comportamiento <span style=\"color:orange\">(medio)</span>"
|
308 |
|
309 |
#: lib/admin-tab-behaviour.php:3
|
310 |
+
msgid ""
|
311 |
+
"The following settings should be left alone unless you know what you are "
|
312 |
+
"doing."
|
313 |
+
msgstr ""
|
314 |
+
"Las siguientes opciones sólo deberían ser editadas si sabes lo que estás "
|
315 |
+
"haciendo."
|
316 |
|
317 |
#: lib/admin-tab-behaviour.php:9
|
318 |
msgid "Auto Resize to Fit"
|
320 |
|
321 |
#: lib/admin-tab-behaviour.php:15
|
322 |
msgid "Scale images to fit in viewport (default: on)"
|
323 |
+
msgstr ""
|
324 |
+
"Ajusta el tamaño de las imagenes a la ventana del navegador (por defecto: "
|
325 |
+
"activado)"
|
326 |
|
327 |
#: lib/admin-tab-behaviour.php:23
|
328 |
msgid "Center on Scroll"
|
329 |
msgstr "Centrar al hacer Scroll"
|
330 |
|
331 |
#: lib/admin-tab-behaviour.php:29
|
332 |
+
msgid ""
|
333 |
+
"Keep image in the center of the browser window when scrolling (default: on)"
|
334 |
+
msgstr ""
|
335 |
+
"Mantiene la imagen en el centro de la ventana del naegador al hacer scroll "
|
336 |
+
"(por defecto: activado)"
|
337 |
|
338 |
#: lib/admin-tab-behaviour.php:37
|
339 |
msgid "Close on Content Click"
|
344 |
msgstr "Cerrar FancyBox al hacer click en la imagen (por defecto: desactivado)"
|
345 |
|
346 |
#: lib/admin-tab-behaviour.php:46
|
347 |
+
msgid ""
|
348 |
+
"(You may want to leave this off if you display iframed or inline content "
|
349 |
+
"that containts clickable elements - for example: play buttons for movies, "
|
350 |
+
"links to other pages)"
|
351 |
+
msgstr ""
|
352 |
+
"(Puedes que quieras dejar esta opción desactivada si vas a usar contendido "
|
353 |
+
"anidado que incluya enlaces - for ejemplo: botones de play, enlaces a otras "
|
354 |
+
"páginas)"
|
355 |
|
356 |
#: lib/admin-tab-behaviour.php:53
|
357 |
msgid "Close on Overlay Click"
|
367 |
|
368 |
#: lib/admin-tab-behaviour.php:73
|
369 |
msgid "Close FancyBox when "Escape" key is pressed (default: on)"
|
370 |
+
msgstr ""
|
371 |
+
"Cerrar Fancybox cuando se pulse la tecla "Escape" (por defecto: "
|
372 |
+
"activado)"
|
373 |
|
374 |
#: lib/admin-tab-behaviour.php:81
|
375 |
msgid "Cyclic Galleries"
|
376 |
msgstr "Galerías Cíclicas"
|
377 |
|
378 |
#: lib/admin-tab-behaviour.php:87
|
379 |
+
msgid ""
|
380 |
+
"This will make galleries cyclic, allowing you to keep pressing next/back "
|
381 |
+
"(default: off)"
|
382 |
+
msgstr ""
|
383 |
+
"Esta oción generará galerías cíclicas, permitíendote pulsar los botones de "
|
384 |
+
"navegación indefinidamene (por defecto: desactivado)"
|
385 |
|
386 |
#: lib/admin-tab-behaviour.php:95
|
387 |
msgid "Mouse Wheel Navigation"
|
389 |
|
390 |
#: lib/admin-tab-behaviour.php:101
|
391 |
msgid "Lets visitors navigate galleries with the mouse wheel (default: off)"
|
392 |
+
msgstr ""
|
393 |
+
"Permita a los visitantes navegar por las galerías con la rueda del ratón "
|
394 |
+
"(por defecto: desactivado)"
|
395 |
|
396 |
#: lib/admin-tab-behaviour.php:104
|
397 |
msgid "(Will load one additional javascript file, 3KB)"
|
402 |
msgstr "Llamadas Extra de FancyBox <span style=\"color:red\">(avanzado)</span>"
|
403 |
|
404 |
#: lib/admin-tab-calls.php:3
|
405 |
+
msgid ""
|
406 |
+
"Here you can add as many additional calls to fancybox as you want, with "
|
407 |
+
"different settings. For example, if you want to use fancybox with iframes or "
|
408 |
+
"ajax on any specific link, you can configure those calls here without "
|
409 |
+
"affecting the settings for images."
|
410 |
+
msgstr ""
|
411 |
+
"Aquí puedes añadir todas las llamadas adicionales a FancyBox que quieras, "
|
412 |
+
"con distintas opciones. Por ejemplo, si quieres usar FancyBox con iframes o "
|
413 |
+
"con Ajax en cualquier enlace concreto, aquí puedes configurarlo sin afectar "
|
414 |
+
"al resto de opciones."
|
415 |
|
416 |
#: lib/admin-tab-calls.php:5
|
417 |
+
msgid ""
|
418 |
+
"For information on the options available you can use here see <a href="
|
419 |
+
"\"http://fancybox.net/api\">FancyBox's API & Options page</a>."
|
420 |
+
msgstr ""
|
421 |
+
"Para más información acerca de las opciones que puedes usar en este campo, "
|
422 |
+
"lee esta página sobre la <a href=\"http://fancybox.net/api\">API y Opciones "
|
423 |
+
"de FancyBox</a>."
|
424 |
|
425 |
#: lib/admin-tab-calls.php:11
|
426 |
msgid "Additional FancyBox Calls"
|
430 |
msgid "Additional FancyBox Calls (default: off)"
|
431 |
msgstr "Llamadas Extra de FancyBox (por defecto: desactivado)"
|
432 |
|
433 |
+
#: lib/admin-tab-calls.php:26 lib/admin-tab-other.php:89
|
|
|
434 |
msgid "Example:"
|
435 |
msgstr "Ejemplo:"
|
436 |
|
439 |
msgstr "Opciones de Galería <span style=\"color:red\">(avanzado)</span>"
|
440 |
|
441 |
#: lib/admin-tab-galleries.php:3
|
442 |
+
msgid ""
|
443 |
+
"Here you can choose if you want the plugin to group all images into a "
|
444 |
+
"gallery, or make a gallery for each post. You can also define you own jQuery "
|
445 |
+
"expression if you like."
|
446 |
+
msgstr ""
|
447 |
+
"Aquí puedes elegir si quieres que el plugin agrupe las imágenes en una "
|
448 |
+
"galería, o hacer una galería para cada entrada. También puedes definir tu "
|
449 |
+
"propia expresión en jQuery."
|
450 |
|
451 |
#: lib/admin-tab-galleries.php:9
|
452 |
msgid "Gallery Type"
|
454 |
|
455 |
#: lib/admin-tab-galleries.php:15
|
456 |
msgid "Make a gallery for all images on the page (default)"
|
457 |
+
msgstr ""
|
458 |
+
"Incluir todas las imágenes de la página en una única galería (opción por "
|
459 |
+
"defecto)"
|
460 |
|
461 |
#: lib/admin-tab-galleries.php:20
|
462 |
+
msgid ""
|
463 |
+
"Do not group images in gallery automatically (use this if you want to make "
|
464 |
+
"galleries manually with the <code>REL</code> attribute)"
|
465 |
+
msgstr ""
|
466 |
+
"No agrupar imágenes en galerías automáticamente (usa "
|
467 |
+
"esta opción si quieres agrupar las imagenes manualmente con el "
|
468 |
+
"atributo <code>REL</code>)"
|
469 |
|
470 |
#: lib/admin-tab-galleries.php:25
|
471 |
+
msgid ""
|
472 |
+
"Make a gallery for each post (will only work if your theme uses <code>class="
|
473 |
+
"\"post\"</code> on each post, which is common in WordPress"
|
474 |
+
msgstr ""
|
475 |
+
"Hacer una galería para cada post (solo funcionará si el tema "
|
476 |
+
"usa <code>class=\"post\"</code> en cada post, que es lo más "
|
477 |
+
"común en WordPress"
|
478 |
|
479 |
#: lib/admin-tab-galleries.php:30
|
480 |
msgid "Use a custom expression to apply FancyBox"
|
485 |
msgstr "Indicaciones para expresiones personalizadas:"
|
486 |
|
487 |
#: lib/admin-tab-galleries.php:41
|
488 |
+
msgid ""
|
489 |
+
"· The custom expression has to apply <code>class=\"fancybox\"</code> "
|
490 |
+
"to the links where you want to use FancyBox. Do not call the "
|
491 |
+
"<code>fancybox()</code> function here, the plugin does this for you."
|
492 |
+
msgstr ""
|
493 |
+
"· La expresión personalizada tiene que aplicar el atributo "
|
494 |
+
"<code>class=\"fancybox\"</code> a los enlaces en los que quieras usar "
|
495 |
+
"FancyBox. No llames a la función <code>fancybox()</code> aquí, "
|
496 |
+
"de eso ya se encarga el plugin."
|
497 |
|
498 |
#: lib/admin-tab-galleries.php:43
|
499 |
+
msgid ""
|
500 |
+
"· The jQuery <code>addClass()</code> function is a good way to add "
|
501 |
+
"the class to the desired links conserving any existing class."
|
502 |
+
msgstr ""
|
503 |
+
"· La función <code>addClass()</code> de jQuery es una buena "
|
504 |
+
"forma de añadir el class a los links deseados."
|
505 |
|
506 |
#: lib/admin-tab-galleries.php:45
|
507 |
+
msgid ""
|
508 |
+
"· You can use <code>getTitle()</code> in your expression to copy the "
|
509 |
+
"title attribute from the <code>IMG</code> tag to the <code>A</code> tag, so "
|
510 |
+
"that FancyBox can show captions."
|
511 |
+
msgstr ""
|
512 |
+
"· Puedes usar <code>getTitle()</code> en tu expresión para "
|
513 |
+
"copiar el atributo title desde el tag <code>IMG</code> al tag <code>A</"
|
514 |
+
"code>, para que FancyBox pueda mostrar el título de la imagen."
|
515 |
|
516 |
#: lib/admin-tab-galleries.php:47
|
517 |
+
msgid ""
|
518 |
+
"· You can use <code>jQuery(thumbnails)</code> like in the example "
|
519 |
+
"expression to apply FancyBox to thumbnails that link to these extensions: "
|
520 |
+
"BMP, GIF, JPG, JPEG, PNG (both lowercase and uppercase)."
|
521 |
+
msgstr ""
|
522 |
+
"· Puedes usar <code>jQuery(thumbnails)</code> como en el ejemplo para "
|
523 |
+
"aplicar FancyBox a las miniaturas de im%aacute;genes que enlazen a estas "
|
524 |
+
"extensiones: BMP, GIF, JPG, JPEG, PNG tanto en minúscula como en "
|
525 |
+
"mayúscula)."
|
526 |
|
527 |
#: lib/admin-tab-galleries.php:49
|
528 |
+
msgid ""
|
529 |
+
"· If you want to do it manually you can use something like "
|
530 |
+
"<code>jQuery(\"a:has(img)[href$='.jpg']\")</code> or whatever works for you."
|
531 |
+
msgstr ""
|
532 |
+
"· Si prefieres hacerlo manualmente puedes usar algo como "
|
533 |
+
"<code>jQuery(\"a:has(img)[href$='.jpg']\")</code> o lo que más se "
|
534 |
+
"ajuste a tu blog."
|
535 |
|
536 |
#: lib/admin-tab-galleries.php:51
|
537 |
+
msgid ""
|
538 |
+
"See the <a href=\"http://docs.jquery.com/\" target=\"_blank\">jQuery "
|
539 |
+
"Documentation</a> for more help."
|
540 |
+
msgstr ""
|
541 |
+
"Visita la <a href=\"http://docs.jquery.com/\" target=\"_blank"
|
542 |
+
"\">Documentación de jQuery</a> para encontrar más ayuda."
|
543 |
|
544 |
#: lib/admin-tab-galleries.php:53
|
545 |
msgid "Examples:"
|
550 |
msgstr "Información"
|
551 |
|
552 |
#: lib/admin-tab-info.php:3
|
553 |
+
msgid ""
|
554 |
+
"<a target=\"_blank\" href=\"http://fancybox.net\">FancyBox</a> developed by "
|
555 |
+
"<a target=\"_blank\" href=\"http://fancybox.net\">Janis Skarnelis</a>, "
|
556 |
+
"ported to WordPress by <a target=\"_blank\" href=\"http://twitter.com/moskis"
|
557 |
+
"\">José Pardilla</a>. Licensed under the <a target=\"_blank\" href="
|
558 |
+
"\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
|
559 |
+
msgstr ""
|
560 |
+
"<a href=\"http://fancybox.net\">FancyBox</a> desarrollado por <a href="
|
561 |
+
"\"http://fancybox.net\">Janis Skarnelis</a>, adaptado a WordPress por <a "
|
562 |
+
"href=\"http://http://twitter.com/moskis\">José Pardilla</a>. "
|
563 |
+
"Licenciado bajo <a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/"
|
564 |
+
"MIT_License\">Licencia MIT</a>."
|
565 |
|
566 |
#: lib/admin-tab-info.php:5
|
567 |
+
msgid ""
|
568 |
+
"As you can see, this plugin has many options you can edit, but have no fear, "
|
569 |
+
"you can leave everything as it is if you don't want to get your hands dirty, "
|
570 |
+
"since the default options should be a good start... :)"
|
571 |
+
msgstr ""
|
572 |
+
"Como puedes ver, este plugin te permite editar muchas opciones, pero no te "
|
573 |
+
"preocupes, puedes dejarlo todo como está, ya que las opciones predefinidas "
|
574 |
+
"no están mal para empezar... :)"
|
575 |
|
576 |
#: lib/admin-tab-info.php:7
|
577 |
+
msgid ""
|
578 |
+
"If you are an advanced user you can <a target=\"_blank\" href=\"https://"
|
579 |
+
"github.com/moskis/fancybox-for-wordpress\">follow the plugin in Github</a>, "
|
580 |
+
"fork it or help submitting fixes!"
|
581 |
+
msgstr ""
|
582 |
+
"Si eres un usuario avanzado, puedes <a target=\"_blank\" href=\"https://"
|
583 |
+
"github.com/moskis/fancybox-for-wordpress\">seguir el plugin en Github</a>, y "
|
584 |
+
"colaborar aportando correcciones!"
|
585 |
|
586 |
#: lib/admin-tab-info.php:9
|
587 |
+
msgid ""
|
588 |
+
"<strong>Note:</strong> Having a cache plugin may prevent changes from taking "
|
589 |
+
"effect immidiately, if this happens clear cache after saving changes here or "
|
590 |
+
"deactivate cache until you finish editing these options."
|
591 |
+
msgstr ""
|
592 |
+
"<strong>Nota:</strong> Usar un plugin de caché puede hacer que los cambios "
|
593 |
+
"no surjan efecto inmediatamente, si esto ocurre vacía el cache después de "
|
594 |
+
"guardar los cambios o desactívalo hasta que termines de ajustar estas "
|
595 |
+
"opciones."
|
596 |
|
597 |
#: lib/admin-tab-other.php:1
|
598 |
msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
|
611 |
msgstr "Auto detectar dimensiones (por defecto: activado)"
|
612 |
|
613 |
#: lib/admin-tab-other.php:18
|
614 |
+
msgid ""
|
615 |
+
"Only works with <strong>Ajax</strong> and <strong>Inline</strong> content! "
|
616 |
+
"Flash dimensions won't be autodetected so specify them below if necessary. "
|
617 |
+
"If you want to insert several pieces of flash content with different "
|
618 |
+
"dimensions you will have to use the <strong>Additional FancyBox Calls</"
|
619 |
+
"strong> option."
|
620 |
+
msgstr ""
|
621 |
+
"Sólo funciona con <strong>Ajax</strong> y <strong>Contenido en línea</"
|
622 |
+
"strong>! Las dimenciones de elementos Flash no se autodetectan así que "
|
623 |
+
"especifícalas aquí debajo si lo necesitas. Si necesitas insertar varios "
|
624 |
+
"elementos Flash de tamaños distintos tendrás que usar el apartado de "
|
625 |
+
"<strong>Llamadas Extra</strong>."
|
626 |
|
627 |
#: lib/admin-tab-other.php:22
|
628 |
+
msgid ""
|
629 |
+
"Width for iframe and swf content. Also set for inline content if "
|
630 |
+
"<em>autoDimensions</em> is disabled (default: 560)"
|
631 |
+
msgstr ""
|
632 |
+
"Ancho para iframes y contenido Flash. También afecta a contenido en línea si "
|
633 |
+
"<em>Auto detectar dimensiones</em> está desactivado (por defecto: 560)"
|
634 |
|
635 |
#: lib/admin-tab-other.php:27
|
636 |
+
msgid ""
|
637 |
+
"Height for iframe and swf content. Also set for inline content if "
|
638 |
+
"<em>autoDimensions</em> is disabled (default: 340)"
|
639 |
+
msgstr ""
|
640 |
+
"Alto para iframes y contenido Flash. También afecta a contenido en línea si "
|
641 |
+
"<em>Auto detectar dimensiones</em> está desactivado (por defecto: 340)"
|
642 |
|
643 |
#: lib/admin-tab-other.php:35
|
644 |
msgid "Load JavaScript in Footer"
|
645 |
msgstr "Cargar JavaScript en el Pié de página"
|
646 |
|
647 |
#: lib/admin-tab-other.php:41
|
648 |
+
msgid ""
|
649 |
+
"Loads JavaScript at the end of the blog's HTML (experimental) (default: off)"
|
650 |
+
msgstr ""
|
651 |
+
"Carga el JavaScript al final del código HTML del blog (experimental) (por "
|
652 |
+
"defecto: desactivado)"
|
653 |
|
654 |
#: lib/admin-tab-other.php:44
|
655 |
+
msgid ""
|
656 |
+
"This option won't be recognized if you use <strong>Parallel Load</strong> "
|
657 |
+
"plugin. In that case, you can do this from Parallel Load's options."
|
658 |
+
msgstr ""
|
659 |
+
"Esta opción será ignorada si el plugin <strong>Parallel Load</strong> está "
|
660 |
+
"instalado. Si es así, usa las opciones del plugin Parallel Load."
|
661 |
|
662 |
#: lib/admin-tab-other.php:51
|
663 |
msgid "Callbacks"
|
672 |
msgstr "Activar esta opcíón mostrará opociones adicionales."
|
673 |
|
674 |
#: lib/admin-tab-other.php:65
|
675 |
+
msgid ""
|
676 |
+
"Callback on <strong>Start</strong> event: Will be called right before "
|
677 |
+
"attempting to load the content"
|
678 |
+
msgstr ""
|
679 |
+
"Retrollamada en evento <strong>Inicio</strong>: Se ejecutará justo antes de "
|
680 |
+
"intentar cargar el contenido"
|
681 |
|
682 |
#: lib/admin-tab-other.php:70
|
683 |
+
msgid ""
|
684 |
+
"Callback on <strong>Cancel</strong> event: Will be called after loading is "
|
685 |
+
"canceled"
|
686 |
+
msgstr ""
|
687 |
+
"Retrollamada en evento <strong>Cancelar</strong>: Se ejecutará tras cancelar "
|
688 |
+
"la carga del contenido"
|
689 |
|
690 |
#: lib/admin-tab-other.php:75
|
691 |
+
msgid ""
|
692 |
+
"Callback on <strong>Complete</strong> event: Will be called once the content "
|
693 |
+
"is displayed"
|
694 |
+
msgstr ""
|
695 |
+
"Retrollamada en evento <strong>Completado</strong>: Se ejecutará una vez se "
|
696 |
+
"termine de mostrar el contenido"
|
697 |
|
698 |
#: lib/admin-tab-other.php:80
|
699 |
+
msgid ""
|
700 |
+
"Callback on <strong>CleanUp</strong> event: Will be called just before "
|
701 |
+
"closing"
|
702 |
+
msgstr ""
|
703 |
+
"Retrollamada en evento <strong>Limpieza</strong>: Se ejecutará justo antes "
|
704 |
+
"de empezar a ocultar el contenido"
|
705 |
|
706 |
#: lib/admin-tab-other.php:85
|
707 |
+
msgid ""
|
708 |
+
"Callback on <strong>Closed</strong> event: Will be called once FancyBox is "
|
709 |
+
"closed"
|
710 |
+
msgstr ""
|
711 |
+
"Retrollamada en evento <strong>Cerrado</strong>: Se ejecutará tras cerrar "
|
712 |
+
"FancyBox"
|
713 |
|
714 |
#: lib/admin-tab-other.php:91
|
715 |
msgid "Leave empty any speciic callbacks you don't need to use."
|
720 |
msgstr "Ayuda sobre ancyBox"
|
721 |
|
722 |
#: lib/admin-tab-support.php:5
|
723 |
+
msgid ""
|
724 |
+
"If you have problems or questions about FancyBox itself (and not this "
|
725 |
+
"WordPress plugin), please start with these links: <a target=\"_blank\" href="
|
726 |
+
"\"http://fancybox.net/howto\">How-To</a> & <a target=\"_blank\" href="
|
727 |
+
"\"http://fancybox.net/faq\">FAQ</a>.<br />If that does not help, go to <a "
|
728 |
+
"href=\"http://groups.google.com/group/fancybox\">the FancyBox Google Group</"
|
729 |
+
"a>, use the <strong>Search</strong> option, and if necesary, post your "
|
730 |
+
"question."
|
731 |
+
msgstr ""
|
732 |
+
"Si tienes problemas o dudas acerca de FancyBox (y no este plugin en sí), por "
|
733 |
+
"favor visita estos enlaces (en inglés): <a href=\"http://fancybox.net/howto"
|
734 |
+
"\">How-To</a> & <a href=\"http://fancybox.net/faq\">FAQ</a>.<br />Si eso no "
|
735 |
+
"ayuda, ves al <a href=\"http://groups.google.com/group/fancybox\">Grupo de "
|
736 |
+
"Google de FancyBox</a>, usa la opción de <strong>Búsqueda</strong>, y si no "
|
737 |
+
"encuentras lo que buscas, pregunta allí."
|
738 |
|
739 |
#: lib/admin-tab-support.php:8
|
740 |
msgid "Help with Fancybox for WordPress plugin"
|
741 |
msgstr "Ayuda para el plugin Fancybox for WordPress"
|
742 |
|
743 |
#: lib/admin-tab-support.php:10
|
744 |
+
msgid ""
|
745 |
+
"Try to localize the problem (switch your theme and deactivate plugins until "
|
746 |
+
"you find the source of the problem). You can also try the Troubleshooting "
|
747 |
+
"settings of this plugin if necesary."
|
748 |
+
msgstr ""
|
749 |
+
"Intenta localizar la fuente del problema (cambia de tema y/o desactiva "
|
750 |
+
"plugins hasta que encuentres lo que causa el problema). También puedes usar "
|
751 |
+
"las optiones de Resolución de Errores que hay al final de esta página."
|
752 |
|
753 |
#: lib/admin-tab-support.php:11
|
754 |
+
msgid ""
|
755 |
+
"Try reverting the plugin's settings to their defaults with the button below."
|
756 |
+
msgstr ""
|
757 |
+
"Prueba a resetear las opciones a sus valores originales con el botón al pie "
|
758 |
+
"de esta página."
|
759 |
|
760 |
#: lib/admin-tab-support.php:12
|
761 |
+
msgid ""
|
762 |
+
"If you still can not get the plugin to work, <a target=\"_blank\" href="
|
763 |
+
"\"http://wordpress.org/support/plugin/fancybox-for-wordpress#postform"
|
764 |
+
"\">write a post in the WordPress Support forums</a> explaining the problem "
|
765 |
+
"or take a look and the <a target=\"_blank\" href=\"http://wordpress.org/"
|
766 |
+
"support/plugin/fancybox-for-wordpress\">already posted messages</a>."
|
767 |
+
msgstr ""
|
768 |
+
"Si aún no puedes hacer funcionar el plugin, <a target=\"_blank\" href="
|
769 |
+
"\"http://wordpress.org/support/plugin/fancybox-for-wordpress#postform"
|
770 |
+
"\">escribe en el foro de Soporte de WordPress</a> o echa un vistazo a <a "
|
771 |
+
"target=\"_blank\" href=\"\"http://wordpress.org/support/plugin/fancybox-for-"
|
772 |
+
"wordpress\">los mensajes ya escritos en dicho foro</a>."
|
773 |
|
774 |
+
#: lib/admin-tab-support.php:15
|
775 |
msgid "IMPORTANT:"
|
776 |
msgstr "IMPORTANTE:"
|
777 |
|
778 |
+
#: lib/admin-tab-support.php:15
|
779 |
+
msgid ""
|
780 |
+
"When posting your problem please provide a link to your blog and the page "
|
781 |
+
"where the error is found, and all relevant information you can, especially "
|
782 |
+
"your theme, plugins, etc."
|
783 |
+
msgstr ""
|
784 |
+
"Cuando expliques tu problema, por favor deja un enlace a tu blog y una "
|
785 |
+
"página donde FancyBox falla, así como cualquier información reelevante, como "
|
786 |
+
"el tema de WordPress y plugins que usas."
|
787 |
|
788 |
#: lib/admin-tab-troubleshooting.php:1
|
789 |
msgid "Troubleshooting Settings"
|
790 |
msgstr "Resolución de Problemas"
|
791 |
|
792 |
#: lib/admin-tab-troubleshooting.php:3
|
793 |
+
msgid ""
|
794 |
+
"Settings in this section should only be changed if you are having problems "
|
795 |
+
"with the plugin!"
|
796 |
+
msgstr ""
|
797 |
+
"Las opciones de esta sección solo deben ser editadas si tienes problemas con "
|
798 |
+
"el plugin!"
|
799 |
|
800 |
#: lib/admin-tab-troubleshooting.php:5
|
801 |
+
msgid ""
|
802 |
+
"If the plugin doesn't seem to work, first you should check for other plugins "
|
803 |
+
"that may be conflicting with this one, especially other Lightbox, Slimbox, "
|
804 |
+
"etc. Make sure all your plugins and WordPress itself are up to date (this "
|
805 |
+
"plugin has only been tested in WordPress 2.7 and above)."
|
806 |
+
msgstr ""
|
807 |
+
"Si el plugin no funciona, lo primero que deberías hacer es comprobar que no "
|
808 |
+
"haya un conflicto con otros plugins, especialmente otro tipo de Lightbox, "
|
809 |
+
"Slimbox, etc. Asegúrate de que todos tus plugins y tu WordPress están "
|
810 |
+
"actualizados (este plugin solo se ha testado con WordPress 2.7 y superiores)."
|
811 |
|
812 |
#: lib/admin-tab-troubleshooting.php:7
|
813 |
+
msgid ""
|
814 |
+
"Change them one at a time and test to see if they help. Remember that having "
|
815 |
+
"a cache plugin may prevent changes from taking effect immidiately, so clear "
|
816 |
+
"cache after saving changes here or deactivate cache until you finish editing "
|
817 |
+
"these options."
|
818 |
+
msgstr ""
|
819 |
+
"Cámbialas de una en una y comprueba si solucionan tu problema. Recuqerda que "
|
820 |
+
"usar un plugin de caché puede hacer que los cambios no surjan efecto "
|
821 |
+
"inmediatamente, vacía el cache después de guardar los cambios or desactivalo "
|
822 |
+
"hasta que termines de ajustar estas opciones."
|
823 |
|
824 |
#: lib/admin-tab-troubleshooting.php:13
|
825 |
msgid "Do not call jQuery"
|
826 |
msgstr "No cargar jQuery"
|
827 |
|
828 |
#: lib/admin-tab-troubleshooting.php:19
|
829 |
+
msgid ""
|
830 |
+
"Skip jQuery call. Use this only if jQuery is being loaded twice (default: "
|
831 |
+
"off)"
|
832 |
+
msgstr ""
|
833 |
+
"Omitir llamada a jQuery. Usa esta opción sólo si jQuery se está cargando dos "
|
834 |
+
"veces por error. (por defecto: desactivado)"
|
835 |
|
836 |
#: lib/admin-tab-uninstall.php:3
|
837 |
+
msgid ""
|
838 |
+
"Like many other plugins, FancyBox for WordPress stores its settings on your "
|
839 |
+
"WordPress' options database table. Actually, these settings are not using "
|
840 |
+
"more than a couple of kilobytes of space, but if you want to completely "
|
841 |
+
"uninstall this plugin, check the option below, then save changes, and "
|
842 |
+
"<strong>when you deactivate the plugin</strong>, all its settings will be "
|
843 |
+
"removed from the database."
|
844 |
+
msgstr ""
|
845 |
+
"Al igual que otros plugins, FancyBox for WordPress guarda sus opciones en la "
|
846 |
+
"tabla de opciones de la base de datos de WordPress. En realidad, estas "
|
847 |
+
"opcines no ocupam más que unos kilobytes de espacio, pero si quieres "
|
848 |
+
"eliminar el plugin por completo, activa la siguiente opción, guarda los "
|
849 |
+
"cambios, y <strong>cuando desactives el plugin</strong>, todas las opciones "
|
850 |
+
"se eliminarán de la base de datos."
|
851 |
|
852 |
#: lib/admin-tab-uninstall.php:9
|
853 |
msgid "Remove settings"
|
854 |
msgstr "Eliminar Opciones"
|
855 |
|
856 |
#: lib/admin-tab-uninstall.php:15
|
857 |
+
msgid ""
|
858 |
+
"Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
|
859 |
+
"(default: off)"
|
860 |
+
msgstr ""
|
861 |
+
"Eliminar opciones cuando se desactive el plugin desde la página \"Gestionar "
|
862 |
+
"Plugins\". (por defecto: desactivado)"
|
863 |
+
|
864 |
+
#. Plugin Name of the plugin/theme
|
865 |
+
msgid "FancyBox for WordPress"
|
866 |
+
msgstr "FancyBox for WordPress"
|
867 |
+
|
868 |
+
#. Plugin URI of the plugin/theme
|
869 |
+
msgid "https://wordpress.org/plugins/fancybox-for-wordpress/"
|
870 |
+
msgstr "https://wordpress.org/plugins/fancybox-for-wordpress/"
|
871 |
+
|
872 |
+
#. Description of the plugin/theme
|
873 |
+
msgid ""
|
874 |
+
"Integrates <a href=\"http://fancybox.net/\">FancyBox</a> by <a href=\"http://"
|
875 |
+
"klade.lv/\">Janis Skarnelis</a> into WordPress."
|
876 |
+
msgstr ""
|
877 |
+
"Integra <a href=\"http://fancybox.net/\">FancyBox</a> por <a href=\"http://"
|
878 |
+
"klade.lv/\">Janis Skarnelis</a> en WordPress."
|
879 |
+
|
880 |
+
#. Author of the plugin/theme
|
881 |
+
msgid "José Pardilla"
|
882 |
+
msgstr "José Pardilla"
|
883 |
+
|
884 |
+
#. Author URI of the plugin/theme
|
885 |
+
msgid "http://twitter.com/moskis"
|
886 |
+
msgstr "http://twitter.com/moskis"
|
887 |
+
|
888 |
+
#~ msgid ""
|
889 |
+
#~ "<strong>Note:</strong> If update to version 3.0.0 breaks fancybox on your "
|
890 |
+
#~ "blog you will probably have to reset your settings (with the white button "
|
891 |
+
#~ "below). I have tested this issue on several WordPress installations and "
|
892 |
+
#~ "it always worked, so it might depend on the server. Sorry for the "
|
893 |
+
#~ "inconvinience."
|
894 |
+
#~ msgstr ""
|
895 |
+
#~ "<strong>Nota:</strong> Si la actualización a la versión 3.0.0 estropea "
|
896 |
+
#~ "FancyBox en tu blog, posiblemente tengas que reestablecer las opciones "
|
897 |
+
#~ "del plugin (desde el botón blanco de abajo)."
|
898 |
+
|
899 |
+
#~ msgid ""
|
900 |
+
#~ "If you are having trouble with this plugin take a look at this <a target="
|
901 |
+
#~ "\"_blank\" href=\"http://plugins.josepardilla.com/fancybox-for-wordpress/"
|
902 |
+
#~ "faq\">FAQ</a> where i will try to cover the most common problems and "
|
903 |
+
#~ "their solutions."
|
904 |
+
#~ msgstr ""
|
905 |
+
#~ "Si tienes problemas para hacer funcionar este plugin echa un vistazo a "
|
906 |
+
#~ "esta página de <a target=\"_blank\" href=\"http://plugins.josepardilla."
|
907 |
+
#~ "com/fancybox-for-wordpress/faq\">Preguntas Frecuentes</a> donde intentaré "
|
908 |
+
#~ "explicar los problemas más habituales y cómo resolverlos."
|
909 |
|
910 |
#~ msgid "Callback on Start event (default: empty)"
|
911 |
#~ msgstr "Retrollamada en el evento de Inicio (por defecto: vacío)"
|
languages/mfbfw-ja.mo
DELETED
Binary file
|
languages/mfbfw-tr_TR.mo
DELETED
Binary file
|
languages/mfbfw.pot
CHANGED
@@ -1,14 +1,15 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/
|
7 |
-
"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
@@ -60,23 +61,23 @@ msgstr ""
|
|
60 |
msgid "Save Changes"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: admin.php:
|
64 |
msgid "Revert to defaults"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: admin.php:
|
68 |
msgid "If you use FancyBox and like it, buy the author a beer!"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.php:
|
72 |
msgid "The author of this WordPress Plugin also likes beer :P"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin.php:
|
76 |
msgid "Follow me on Twitter for more WordPress Plugins and Themes"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: fancybox.php:
|
80 |
msgid "Settings"
|
81 |
msgstr ""
|
82 |
|
@@ -486,7 +487,7 @@ msgstr ""
|
|
486 |
msgid ""
|
487 |
"<a target=\"_blank\" href=\"http://fancybox.net\">FancyBox</a> developed by "
|
488 |
"<a target=\"_blank\" href=\"http://fancybox.net\">Janis Skarnelis</a>, "
|
489 |
-
"ported to WordPress by <a target=\"_blank\" href=\"http://
|
490 |
"\">José Pardilla</a>. Licensed under the <a target=\"_blank\" href="
|
491 |
"\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
|
492 |
msgstr ""
|
@@ -512,14 +513,6 @@ msgid ""
|
|
512 |
"deactivate cache until you finish editing these options."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: lib/admin-tab-info.php:11
|
516 |
-
msgid ""
|
517 |
-
"<strong>Note:</strong> If update to version 3.0.0 breaks fancybox on your "
|
518 |
-
"blog you will probably have to reset your settings (with the white button "
|
519 |
-
"below). I have tested this issue on several WordPress installations and it "
|
520 |
-
"always worked, so it might depend on the server. Sorry for the inconvinience."
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
#: lib/admin-tab-other.php:1
|
524 |
msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
|
525 |
msgstr ""
|
@@ -639,25 +632,17 @@ msgstr ""
|
|
639 |
|
640 |
#: lib/admin-tab-support.php:10
|
641 |
msgid ""
|
642 |
-
"If you are having trouble with this plugin take a look at this <a target="
|
643 |
-
"\"_blank\" href=\"http://plugins.josepardilla.com/fancybox-for-wordpress/faq"
|
644 |
-
"\">FAQ</a> where i will try to cover the most common problems and their "
|
645 |
-
"solutions."
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: lib/admin-tab-support.php:11
|
649 |
-
msgid ""
|
650 |
"Try to localize the problem (switch your theme and deactivate plugins until "
|
651 |
"you find the source of the problem). You can also try the Troubleshooting "
|
652 |
"settings of this plugin if necesary."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: lib/admin-tab-support.php:
|
656 |
msgid ""
|
657 |
"Try reverting the plugin's settings to their defaults with the button below."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: lib/admin-tab-support.php:
|
661 |
msgid ""
|
662 |
"If you still can not get the plugin to work, <a target=\"_blank\" href="
|
663 |
"\"http://wordpress.org/support/plugin/fancybox-for-wordpress#postform"
|
@@ -666,11 +651,11 @@ msgid ""
|
|
666 |
"support/plugin/fancybox-for-wordpress\">already posted messages</a>."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: lib/admin-tab-support.php:
|
670 |
msgid "IMPORTANT:"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: lib/admin-tab-support.php:
|
674 |
msgid ""
|
675 |
"When posting your problem please provide a link to your blog and the page "
|
676 |
"where the error is found, and all relevant information you can, especially "
|
@@ -732,3 +717,25 @@ msgid ""
|
|
732 |
"Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
|
733 |
"(default: off)"
|
734 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 FancyBox for WordPress
|
2 |
+
# This file is distributed under the same license as the FancyBox for WordPress package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: FancyBox for WordPress 3.0.5\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/fancybox-for-"
|
7 |
+
"wordpress\n"
|
8 |
+
"POT-Creation-Date: 2015-02-07 01:56:01+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
61 |
msgid "Save Changes"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.php:85
|
65 |
msgid "Revert to defaults"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.php:93
|
69 |
msgid "If you use FancyBox and like it, buy the author a beer!"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: admin.php:110
|
73 |
msgid "The author of this WordPress Plugin also likes beer :P"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.php:120
|
77 |
msgid "Follow me on Twitter for more WordPress Plugins and Themes"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: fancybox.php:404
|
81 |
msgid "Settings"
|
82 |
msgstr ""
|
83 |
|
487 |
msgid ""
|
488 |
"<a target=\"_blank\" href=\"http://fancybox.net\">FancyBox</a> developed by "
|
489 |
"<a target=\"_blank\" href=\"http://fancybox.net\">Janis Skarnelis</a>, "
|
490 |
+
"ported to WordPress by <a target=\"_blank\" href=\"http://twitter.com/moskis"
|
491 |
"\">José Pardilla</a>. Licensed under the <a target=\"_blank\" href="
|
492 |
"\"http://en.wikipedia.org/wiki/MIT_License\">MIT License</a>."
|
493 |
msgstr ""
|
513 |
"deactivate cache until you finish editing these options."
|
514 |
msgstr ""
|
515 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#: lib/admin-tab-other.php:1
|
517 |
msgid "Other Settings <span style=\"color:red\">(advanced)</span>"
|
518 |
msgstr ""
|
632 |
|
633 |
#: lib/admin-tab-support.php:10
|
634 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
"Try to localize the problem (switch your theme and deactivate plugins until "
|
636 |
"you find the source of the problem). You can also try the Troubleshooting "
|
637 |
"settings of this plugin if necesary."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: lib/admin-tab-support.php:11
|
641 |
msgid ""
|
642 |
"Try reverting the plugin's settings to their defaults with the button below."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: lib/admin-tab-support.php:12
|
646 |
msgid ""
|
647 |
"If you still can not get the plugin to work, <a target=\"_blank\" href="
|
648 |
"\"http://wordpress.org/support/plugin/fancybox-for-wordpress#postform"
|
651 |
"support/plugin/fancybox-for-wordpress\">already posted messages</a>."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lib/admin-tab-support.php:15
|
655 |
msgid "IMPORTANT:"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: lib/admin-tab-support.php:15
|
659 |
msgid ""
|
660 |
"When posting your problem please provide a link to your blog and the page "
|
661 |
"where the error is found, and all relevant information you can, especially "
|
717 |
"Remove Settings when plugin is deactivated from the \"Manage Plugins\" page. "
|
718 |
"(default: off)"
|
719 |
msgstr ""
|
720 |
+
|
721 |
+
#. Plugin Name of the plugin/theme
|
722 |
+
msgid "FancyBox for WordPress"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#. Plugin URI of the plugin/theme
|
726 |
+
msgid "https://wordpress.org/plugins/fancybox-for-wordpress/"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#. Description of the plugin/theme
|
730 |
+
msgid ""
|
731 |
+
"Integrates <a href=\"http://fancybox.net/\">FancyBox</a> by <a href=\"http://"
|
732 |
+
"klade.lv/\">Janis Skarnelis</a> into WordPress."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#. Author of the plugin/theme
|
736 |
+
msgid "José Pardilla"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#. Author URI of the plugin/theme
|
740 |
+
msgid "http://twitter.com/moskis"
|
741 |
+
msgstr ""
|
lib/admin-tab-info.php
CHANGED
@@ -1,11 +1,9 @@
|
|
1 |
<h2><?php _e('Information', 'mfbfw'); ?></h2>
|
2 |
|
3 |
-
<p><?php _e('<a target="_blank" href="http://fancybox.net">FancyBox</a> developed by <a target="_blank" href="http://fancybox.net">Janis Skarnelis</a>, ported to WordPress by <a target="_blank" href="http://
|
4 |
|
5 |
<p><?php _e('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 don\'t want to get your hands dirty, since the default options should be a good start... :)', 'mfbfw'); ?></p>
|
6 |
|
7 |
<p><?php _e('If you are an advanced user you can <a target="_blank" href="https://github.com/moskis/fancybox-for-wordpress">follow the plugin in Github</a>, fork it or help submitting fixes!', 'mfbfw'); ?></p>
|
8 |
|
9 |
-
<small><em><?php _e('<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, if this happens clear cache after saving changes here or deactivate cache until you finish editing these options.', 'mfbfw'); ?></em></small><br />
|
10 |
-
|
11 |
-
<small style="color:red;"><em><?php _e('<strong>Note:</strong> If update to version 3.0.0 breaks fancybox on your blog you will probably have to reset your settings (with the white button below). I have tested this issue on several WordPress installations and it always worked, so it might depend on the server. Sorry for the inconvinience.', 'mfbfw'); ?></em></small><br /><br />
|
1 |
<h2><?php _e('Information', 'mfbfw'); ?></h2>
|
2 |
|
3 |
+
<p><?php _e('<a target="_blank" href="http://fancybox.net">FancyBox</a> developed by <a target="_blank" href="http://fancybox.net">Janis Skarnelis</a>, ported to WordPress by <a target="_blank" href="http://twitter.com/moskis">José Pardilla</a>. Licensed under the <a target="_blank" href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.', 'mfbfw'); ?></p>
|
4 |
|
5 |
<p><?php _e('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 don\'t want to get your hands dirty, since the default options should be a good start... :)', 'mfbfw'); ?></p>
|
6 |
|
7 |
<p><?php _e('If you are an advanced user you can <a target="_blank" href="https://github.com/moskis/fancybox-for-wordpress">follow the plugin in Github</a>, fork it or help submitting fixes!', 'mfbfw'); ?></p>
|
8 |
|
9 |
+
<small><em><?php _e('<strong>Note:</strong> Having a cache plugin may prevent changes from taking effect immidiately, if this happens clear cache after saving changes here or deactivate cache until you finish editing these options.', 'mfbfw'); ?></em></small><br /><br />
|
|
|
|
lib/admin-tab-support.php
CHANGED
@@ -7,7 +7,6 @@
|
|
7 |
|
8 |
<h3><?php _e('Help with Fancybox for WordPress plugin'); ?></h3>
|
9 |
<ul style="list-style-type:disc;padding-left:15px;">
|
10 |
-
<li><?php _e('If you are having trouble with this plugin take a look at this <a target="_blank" href="http://plugins.josepardilla.com/fancybox-for-wordpress/faq">FAQ</a> where i will try to cover the most common problems and their solutions.', 'mfbfw'); ?></li>
|
11 |
<li><?php _e('Try to localize the problem (switch your theme and deactivate plugins until you find the source of the problem). You can also try the Troubleshooting settings of this plugin if necesary.', 'mfbfw'); ?></li>
|
12 |
<li><?php _e("Try reverting the plugin's settings to their defaults with the button below.", 'mfbfw'); ?></li>
|
13 |
<li><?php _e('If you still can not get the plugin to work, <a target="_blank" href="http://wordpress.org/support/plugin/fancybox-for-wordpress#postform">write a post in the WordPress Support forums</a> explaining the problem or take a look and the <a target="_blank" href="http://wordpress.org/support/plugin/fancybox-for-wordpress">already posted messages</a>.', 'mfbfw'); ?></li>
|
7 |
|
8 |
<h3><?php _e('Help with Fancybox for WordPress plugin'); ?></h3>
|
9 |
<ul style="list-style-type:disc;padding-left:15px;">
|
|
|
10 |
<li><?php _e('Try to localize the problem (switch your theme and deactivate plugins until you find the source of the problem). You can also try the Troubleshooting settings of this plugin if necesary.', 'mfbfw'); ?></li>
|
11 |
<li><?php _e("Try reverting the plugin's settings to their defaults with the button below.", 'mfbfw'); ?></li>
|
12 |
<li><?php _e('If you still can not get the plugin to work, <a target="_blank" href="http://wordpress.org/support/plugin/fancybox-for-wordpress#postform">write a post in the WordPress Support forums</a> explaining the problem or take a look and the <a target="_blank" href="http://wordpress.org/support/plugin/fancybox-for-wordpress">already posted messages</a>.', 'mfbfw'); ?></li>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: moskis
|
|
3 |
Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.1
|
6 |
-
Stable tag: 3.0.
|
7 |
License: GPL/MIT
|
8 |
|
9 |
Seamlessly integrates FancyBox into your blog: Upload, activate, and you're done. Additional configuration optional.
|
@@ -19,12 +19,23 @@ By default, the plugin will use jQuery to apply [FancyBox](http://fancybox.net/)
|
|
19 |
|
20 |
= Demo =
|
21 |
|
22 |
-
You can see the plugin working on [this blog](http://
|
|
|
23 |
|
24 |
== Changelog ==
|
25 |
|
26 |
This changelog is for the WordPress plugin. For the Fancybox main changelog go to its [home page](http://fancybox.net/changelog/).
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
= 3.0.4 =
|
29 |
* Renamed the setting affected by the security issue mentioned in 3.0.3. This should stop the malicious code from appearing on sites where the plugin is updated without removing the malicious code.
|
30 |
|
@@ -169,6 +180,12 @@ This changelog is for the WordPress plugin. For the Fancybox main changelog go t
|
|
169 |
* Moved images to /img/ folder
|
170 |
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
== Installation ==
|
173 |
|
174 |
1. Upload the `fancybox-for-wordpress` folder to the `/wp-content/plugins/` directory
|
@@ -179,10 +196,26 @@ This changelog is for the WordPress plugin. For the Fancybox main changelog go t
|
|
179 |
|
180 |
== Screenshots ==
|
181 |
|
182 |
-
1. Simple example of fancybox on a post. [Live demo here](http://
|
183 |
2. Basic settings on Options Page in the Admin Panel. This makes it very easy to customize the plugin to your needs
|
184 |
|
185 |
|
186 |
== Frequently Asked Questions ==
|
187 |
|
188 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.1
|
6 |
+
Stable tag: 3.0.5
|
7 |
License: GPL/MIT
|
8 |
|
9 |
Seamlessly integrates FancyBox into your blog: Upload, activate, and you're done. Additional configuration optional.
|
19 |
|
20 |
= Demo =
|
21 |
|
22 |
+
You can see the plugin working on [this blog](http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/) although there's nothing amazing to see, just a FancyBox simple implementation, that's the point ;) You can take a look at the code if you're curious, though.
|
23 |
+
|
24 |
|
25 |
== Changelog ==
|
26 |
|
27 |
This changelog is for the WordPress plugin. For the Fancybox main changelog go to its [home page](http://fancybox.net/changelog/).
|
28 |
|
29 |
+
= 3.0.5 =
|
30 |
+
* Fixed the Revert Options button.
|
31 |
+
* Fixed wrong version number being shown on the plugin's settings page.
|
32 |
+
* Updated plugin and author links in readme and settings page.
|
33 |
+
* Updated localization catalog (POT file).
|
34 |
+
* Updated Spanish translation with minor updates.
|
35 |
+
* Updated Frequently Asked Questions in readme file.
|
36 |
+
* Removed version number from printed html source code.
|
37 |
+
* Removed outdated/incomplete translation binaries.
|
38 |
+
|
39 |
= 3.0.4 =
|
40 |
* Renamed the setting affected by the security issue mentioned in 3.0.3. This should stop the malicious code from appearing on sites where the plugin is updated without removing the malicious code.
|
41 |
|
180 |
* Moved images to /img/ folder
|
181 |
|
182 |
|
183 |
+
== Upgrade Notice ==
|
184 |
+
|
185 |
+
= 3.0.5 =
|
186 |
+
Fixes the Revert options button and wrong version number on settings page. Also updates links in settings page and readme file.
|
187 |
+
|
188 |
+
|
189 |
== Installation ==
|
190 |
|
191 |
1. Upload the `fancybox-for-wordpress` folder to the `/wp-content/plugins/` directory
|
196 |
|
197 |
== Screenshots ==
|
198 |
|
199 |
+
1. Simple example of fancybox on a post. [Live demo here](http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/)
|
200 |
2. Basic settings on Options Page in the Admin Panel. This makes it very easy to customize the plugin to your needs
|
201 |
|
202 |
|
203 |
== Frequently Asked Questions ==
|
204 |
|
205 |
+
**- There was a vulnerability detected in versions 3.0.2 and lower, is my site in danger?**
|
206 |
+
|
207 |
+
This vulnerability was patched in version 3.0.3.
|
208 |
+
|
209 |
+
An additional change was introduced in version 3.0.4 to make sure that the malicious code can't be printed to visitors even if it still remains in the database.
|
210 |
+
|
211 |
+
If you think your site might still be using a vulnerable version of the plugin please log in to your WordPress admin panel, disable the plugin and clear any cache if your site uses a cache system.
|
212 |
+
|
213 |
+
If you wish to continue using the plugin, check that the plugin is updated to the latest version from your admin panel and enable it. Then check the plugin's settings page and make sure there's no abnormal code in any of the fields, especially on the Extra Calls tab. If you are not sure about the code you see in the settings please use the Revert to Defaults button at the bottom of the settings page.
|
214 |
+
|
215 |
+
If you think your site might be compromised in any other way check this guide: [WordPress Codex - FAQ My site was hacked](http://codex.wordpress.org/FAQ_My_site_was_hacked).
|
216 |
+
|
217 |
+
**- Is the FancyBox script vulnerable or unsafe?**
|
218 |
+
|
219 |
+
No, there's nothing wrong with the actual FancyBox script that i know of.
|
220 |
+
|
221 |
+
The vulnerability detected in versions 3.0.2 and lower of the "FancyBox for WordPress" plugin was limited to the plugin itself. Other FancyBox plugins or manual implementations of FancyBox are unrelated to this issue.
|