Version Description
(2010-12-24) = * NEW: Spanish translation by Inma P.-Zubizarreta * BUGFIX: re-added the option to hide flash objects behind the colorbox overlay.
Download this release
Release Info
Developer | techotronic |
Plugin | jQuery Colorbox |
Version | 3.8.3 |
Comparing to | |
See all releases |
Code changes from version 3.8.2 to 3.8.3
- includes/settings-page.php +5 -5
- jquery-colorbox.php +12 -4
- localization/jquery-colorbox-es_ES.mo +0 -0
- localization/jquery-colorbox-es_ES.po +514 -0
- readme.txt +6 -1
includes/settings-page.php
CHANGED
@@ -135,15 +135,15 @@
|
|
135 |
<br/><?php __('Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar).', JQUERYCOLORBOX_TEXTDOMAIN); ?>
|
136 |
</td>
|
137 |
</tr-->
|
138 |
-
|
139 |
<th scope="row">
|
140 |
-
<label for="jquery-colorbox-autoHideFlash"><?php
|
141 |
</th>
|
142 |
<td>
|
143 |
-
<input type="checkbox" name="<?php
|
144 |
-
<br/><?php
|
145 |
</td>
|
146 |
-
</tr
|
147 |
<!--tr>
|
148 |
<th scope="row">
|
149 |
<label for="jquery-colorbox-javascriptInFooter"><?php __('Add JavaScript to footer', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
|
135 |
<br/><?php __('Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar).', JQUERYCOLORBOX_TEXTDOMAIN); ?>
|
136 |
</td>
|
137 |
</tr-->
|
138 |
+
<tr>
|
139 |
<th scope="row">
|
140 |
+
<label for="jquery-colorbox-autoHideFlash"><?php _e('Automate hiding of flash objects', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
|
141 |
</th>
|
142 |
<td>
|
143 |
+
<input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoHideFlash]" id="jquery-colorbox-autoHideFlash" value="true" <?php echo ($this->colorboxSettings['autoHideFlash']) ? 'checked="checked"' : '';?>/>
|
144 |
+
<br/><?php _e('Automatically hide embeded flash objects behind the Colorbox layer.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
|
145 |
</td>
|
146 |
+
</tr>
|
147 |
<!--tr>
|
148 |
<th scope="row">
|
149 |
<label for="jquery-colorbox-javascriptInFooter"><?php __('Add JavaScript to footer', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
|
jquery-colorbox.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Plugin Name: jQuery Colorbox
|
7 |
* Plugin URI: http://www.techotronic.de/plugins/jquery-colorbox/
|
8 |
* Description: Used to overlay images on the current page. Images in one post are grouped automatically.
|
9 |
-
* Version: 3.8.
|
10 |
* Author: Arne Franken
|
11 |
* Author URI: http://www.techotronic.de/
|
12 |
* License: GPL
|
@@ -19,7 +19,7 @@
|
|
19 |
?>
|
20 |
<?php
|
21 |
//define constants
|
22 |
-
define('JQUERYCOLORBOX_VERSION', '3.8.
|
23 |
define('COLORBOXLIBRARY_VERSION', '1.3.15');
|
24 |
|
25 |
if (!defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
|
@@ -188,7 +188,7 @@ class jQueryColorbox {
|
|
188 |
}
|
189 |
}
|
190 |
|
191 |
-
//jQueryColorbox()
|
192 |
|
193 |
/**
|
194 |
* Renders plugin link in Meta widget
|
@@ -201,6 +201,8 @@ class jQueryColorbox {
|
|
201 |
<li id="colorboxLink"><?php _e('Using',JQUERYCOLORBOX_TEXTDOMAIN);?> <a href="http://www.techotronic.de/plugins/jquery-colorbox/" title="<?php echo JQUERYCOLORBOX_NAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a></li>
|
202 |
<?php }
|
203 |
|
|
|
|
|
204 |
/**
|
205 |
* Add Colorbox group Id to images.
|
206 |
* function is called for every page or post rendering.
|
@@ -243,7 +245,7 @@ class jQueryColorbox {
|
|
243 |
return $content;
|
244 |
}
|
245 |
|
246 |
-
//addColorboxGroupIdToImages()
|
247 |
|
248 |
/**
|
249 |
* Add colorbox-CSS-Class to WP Galleries
|
@@ -383,6 +385,8 @@ class jQueryColorbox {
|
|
383 |
}
|
384 |
}
|
385 |
|
|
|
|
|
386 |
/**
|
387 |
* Registers the warning for admins
|
388 |
*
|
@@ -405,6 +409,8 @@ class jQueryColorbox {
|
|
405 |
|
406 |
}
|
407 |
|
|
|
|
|
408 |
/**
|
409 |
* Default array of jQuery Colorbox settings
|
410 |
*
|
@@ -461,6 +467,8 @@ class jQueryColorbox {
|
|
461 |
);
|
462 |
}
|
463 |
|
|
|
|
|
464 |
/**
|
465 |
* Update jQuery Colorbox settings wrapper
|
466 |
*
|
6 |
* Plugin Name: jQuery Colorbox
|
7 |
* Plugin URI: http://www.techotronic.de/plugins/jquery-colorbox/
|
8 |
* Description: Used to overlay images on the current page. Images in one post are grouped automatically.
|
9 |
+
* Version: 3.8.3
|
10 |
* Author: Arne Franken
|
11 |
* Author URI: http://www.techotronic.de/
|
12 |
* License: GPL
|
19 |
?>
|
20 |
<?php
|
21 |
//define constants
|
22 |
+
define('JQUERYCOLORBOX_VERSION', '3.8.3');
|
23 |
define('COLORBOXLIBRARY_VERSION', '1.3.15');
|
24 |
|
25 |
if (!defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
|
188 |
}
|
189 |
}
|
190 |
|
191 |
+
// jQueryColorbox()
|
192 |
|
193 |
/**
|
194 |
* Renders plugin link in Meta widget
|
201 |
<li id="colorboxLink"><?php _e('Using',JQUERYCOLORBOX_TEXTDOMAIN);?> <a href="http://www.techotronic.de/plugins/jquery-colorbox/" title="<?php echo JQUERYCOLORBOX_NAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a></li>
|
202 |
<?php }
|
203 |
|
204 |
+
// renderMetaLink()
|
205 |
+
|
206 |
/**
|
207 |
* Add Colorbox group Id to images.
|
208 |
* function is called for every page or post rendering.
|
245 |
return $content;
|
246 |
}
|
247 |
|
248 |
+
// addColorboxGroupIdToImages()
|
249 |
|
250 |
/**
|
251 |
* Add colorbox-CSS-Class to WP Galleries
|
385 |
}
|
386 |
}
|
387 |
|
388 |
+
// registerAdminNotice()
|
389 |
+
|
390 |
/**
|
391 |
* Registers the warning for admins
|
392 |
*
|
409 |
|
410 |
}
|
411 |
|
412 |
+
// registerAdminWarning()
|
413 |
+
|
414 |
/**
|
415 |
* Default array of jQuery Colorbox settings
|
416 |
*
|
467 |
);
|
468 |
}
|
469 |
|
470 |
+
// jQueryColorboxDefaultSettings()
|
471 |
+
|
472 |
/**
|
473 |
* Update jQuery Colorbox settings wrapper
|
474 |
*
|
localization/jquery-colorbox-es_ES.mo
ADDED
Binary file
|
localization/jquery-colorbox-es_ES.po
ADDED
@@ -0,0 +1,514 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: jQuery-Colorbox\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-12-20 22:25+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-12-21 12:27+0100\n"
|
7 |
+
"Last-Translator: Inma <inzubi@redywebs.com>\n"
|
8 |
+
"Language-Team: Techotronic <blog@techotronic.de>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: English\n"
|
13 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-Country: GERMANY\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: jquery-colorbox.php:124
|
19 |
+
msgid "Theme #1"
|
20 |
+
msgstr "Tema #1"
|
21 |
+
|
22 |
+
#: jquery-colorbox.php:125
|
23 |
+
msgid "Theme #2"
|
24 |
+
msgstr "Tema #2"
|
25 |
+
|
26 |
+
#: jquery-colorbox.php:126
|
27 |
+
msgid "Theme #3"
|
28 |
+
msgstr "Tema #3"
|
29 |
+
|
30 |
+
#: jquery-colorbox.php:127
|
31 |
+
msgid "Theme #4"
|
32 |
+
msgstr "Tema #4"
|
33 |
+
|
34 |
+
#: jquery-colorbox.php:128
|
35 |
+
msgid "Theme #5"
|
36 |
+
msgstr "Tema #5"
|
37 |
+
|
38 |
+
#: jquery-colorbox.php:129
|
39 |
+
msgid "Theme #6"
|
40 |
+
msgstr "Tema #6"
|
41 |
+
|
42 |
+
#: jquery-colorbox.php:130
|
43 |
+
msgid "Theme #7"
|
44 |
+
msgstr "Tema #7"
|
45 |
+
|
46 |
+
#: jquery-colorbox.php:131
|
47 |
+
msgid "Theme #8"
|
48 |
+
msgstr "Tema #8"
|
49 |
+
|
50 |
+
#: jquery-colorbox.php:132
|
51 |
+
msgid "Theme #9"
|
52 |
+
msgstr "Tema #9"
|
53 |
+
|
54 |
+
#: jquery-colorbox.php:133
|
55 |
+
msgid "Theme #10"
|
56 |
+
msgstr "Tema #10"
|
57 |
+
|
58 |
+
#: jquery-colorbox.php:134
|
59 |
+
msgid "Theme #11"
|
60 |
+
msgstr "Tema #11"
|
61 |
+
|
62 |
+
#: jquery-colorbox.php:140
|
63 |
+
msgid "Theme #12"
|
64 |
+
msgstr "Tema #12"
|
65 |
+
|
66 |
+
#: jquery-colorbox.php:141
|
67 |
+
msgid "Theme #13"
|
68 |
+
msgstr "Tema #13"
|
69 |
+
|
70 |
+
#: jquery-colorbox.php:142
|
71 |
+
msgid "Theme #14"
|
72 |
+
msgstr "Tema #14"
|
73 |
+
|
74 |
+
#: jquery-colorbox.php:143
|
75 |
+
msgid "Theme #15"
|
76 |
+
msgstr "Tema #15"
|
77 |
+
|
78 |
+
#: jquery-colorbox.php:148
|
79 |
+
msgid "percent"
|
80 |
+
msgstr "porcentaje"
|
81 |
+
|
82 |
+
#: jquery-colorbox.php:149
|
83 |
+
msgid "pixels"
|
84 |
+
msgstr "píxeles"
|
85 |
+
|
86 |
+
#: jquery-colorbox.php:154
|
87 |
+
msgid "elastic"
|
88 |
+
msgstr "elastico"
|
89 |
+
|
90 |
+
#: jquery-colorbox.php:155
|
91 |
+
msgid "fade"
|
92 |
+
msgstr "fundido"
|
93 |
+
|
94 |
+
#: jquery-colorbox.php:156
|
95 |
+
msgid "none"
|
96 |
+
msgstr "ninguno"
|
97 |
+
|
98 |
+
#: jquery-colorbox.php:206
|
99 |
+
msgid "Using"
|
100 |
+
msgstr "Utilizando"
|
101 |
+
|
102 |
+
#: jquery-colorbox.php:301
|
103 |
+
#: includes/settings-page.php:105
|
104 |
+
msgid "Settings"
|
105 |
+
msgstr "Opciones"
|
106 |
+
|
107 |
+
#: jquery-colorbox.php:363
|
108 |
+
#, php-format
|
109 |
+
msgid "Successfully updated %1$s settings."
|
110 |
+
msgstr "Actualizadas %1$s opciones."
|
111 |
+
|
112 |
+
#: jquery-colorbox.php:365
|
113 |
+
#, php-format
|
114 |
+
msgid "%1$s settings were successfully deleted."
|
115 |
+
msgstr "Han sido eliminadas %1$s opciones."
|
116 |
+
|
117 |
+
#: jquery-colorbox.php:406
|
118 |
+
msgid "needs attention: the plugin is not activated to work for all images."
|
119 |
+
msgstr "atención: el plugin no se ha activado para funcionar con todas las imágenes."
|
120 |
+
|
121 |
+
#: jquery-colorbox.php:481
|
122 |
+
msgid "Did not update settings, you do not have the necessary rights."
|
123 |
+
msgstr "No se han actualizado las opciones, no tienes los permisos necesarios."
|
124 |
+
|
125 |
+
#: jquery-colorbox.php:528
|
126 |
+
#, php-format
|
127 |
+
msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
|
128 |
+
msgstr "No se han eliminado %1$s opciones. O bien no tiene los permisos necesarios o aún no ha marcado la casilla."
|
129 |
+
|
130 |
+
#: jquery-colorbox.php:713
|
131 |
+
msgid "does not work with PHP 4. Please update or uninstall the plugin."
|
132 |
+
msgstr "no funciona con PHP4. Actualice por favor o desinstale el plugin."
|
133 |
+
|
134 |
+
#: includes/colorbox-javascript.php:49
|
135 |
+
msgid "close"
|
136 |
+
msgstr "cerrar"
|
137 |
+
|
138 |
+
#: includes/colorbox-javascript.php:50
|
139 |
+
msgid "next"
|
140 |
+
msgstr "siguiente"
|
141 |
+
|
142 |
+
#: includes/colorbox-javascript.php:51
|
143 |
+
msgid "previous"
|
144 |
+
msgstr "anterior"
|
145 |
+
|
146 |
+
#: includes/colorbox-javascript.php:52
|
147 |
+
msgid "start slideshow"
|
148 |
+
msgstr "comenzar slideshow"
|
149 |
+
|
150 |
+
#: includes/colorbox-javascript.php:53
|
151 |
+
msgid "stop slideshow"
|
152 |
+
msgstr "parar slideshow"
|
153 |
+
|
154 |
+
#: includes/colorbox-javascript.php:54
|
155 |
+
msgid "{current} of {total} images"
|
156 |
+
msgstr "{current} de {total} imágenes"
|
157 |
+
|
158 |
+
#: includes/settings-page.php:95
|
159 |
+
#, php-format
|
160 |
+
msgid "%1$s Settings"
|
161 |
+
msgstr "%1$s Opciones"
|
162 |
+
|
163 |
+
#: includes/settings-page.php:106
|
164 |
+
msgid "Plugin settings"
|
165 |
+
msgstr "Opciones del plugin"
|
166 |
+
|
167 |
+
#: includes/settings-page.php:113
|
168 |
+
#, php-format
|
169 |
+
msgid "Automate %1$s for all images"
|
170 |
+
msgstr "Automatizar %1$s para todas las imágenes"
|
171 |
+
|
172 |
+
#: includes/settings-page.php:113
|
173 |
+
#, php-format
|
174 |
+
msgid "Automate %1$s for all images in pages, posts and galleries"
|
175 |
+
msgstr "Automatizar %1$s para todas las imágenes en páginas, entradas y galerías"
|
176 |
+
|
177 |
+
#: includes/settings-page.php:117
|
178 |
+
msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
|
179 |
+
msgstr "Añadir automáticamente colorbox-class a todas las imágenes en entradas y páginas. Añade también colorbox-class a las galerías. Las imágenes de una página o entrada son agrupadas automáticamente."
|
180 |
+
|
181 |
+
#: includes/settings-page.php:122
|
182 |
+
#, php-format
|
183 |
+
msgid "Automate %1$s for images in WordPress galleries"
|
184 |
+
msgstr "Automatizar %1$s para las imágenes en las galerías WordPress"
|
185 |
+
|
186 |
+
#: includes/settings-page.php:122
|
187 |
+
#, php-format
|
188 |
+
msgid "Automate %1$s for images in WordPress galleries only"
|
189 |
+
msgstr "Automatizar %1$s solo para las imágenes en las galerías WordPress"
|
190 |
+
|
191 |
+
#: includes/settings-page.php:126
|
192 |
+
msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
|
193 |
+
msgstr "Añadir automáticamente colorbox-class a todas las imágenes en las galerías WordPress, pero en ningún otro sitio. Las imágenes de una página o entrada son agrupadas automáticamente."
|
194 |
+
|
195 |
+
#: includes/settings-page.php:131
|
196 |
+
#, php-format
|
197 |
+
msgid "Automate %1$s for all other images"
|
198 |
+
msgstr "Automatizar %1$s para todas las otras imágenes"
|
199 |
+
|
200 |
+
#: includes/settings-page.php:135
|
201 |
+
msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
|
202 |
+
msgstr "Añadir automáticamente colorbox-class a todas las imágenes no incluídas en páginas o entradas (ej. la barra lateral)."
|
203 |
+
|
204 |
+
#: includes/settings-page.php:140
|
205 |
+
msgid "Automate hiding of flash objects"
|
206 |
+
msgstr "Automatizar la ocultación de objetos flash"
|
207 |
+
|
208 |
+
#: includes/settings-page.php:144
|
209 |
+
msgid "Automatically hide embeded flash objects behind the Colorbox layer."
|
210 |
+
msgstr "Ocultar automáticamente objetos flash incrustados detrás de la capa Colorbox."
|
211 |
+
|
212 |
+
#: includes/settings-page.php:149
|
213 |
+
msgid "Add JavaScript to footer"
|
214 |
+
msgstr "Añadir JavaScript al pie de página"
|
215 |
+
|
216 |
+
#: includes/settings-page.php:153
|
217 |
+
msgid "Add JavaScript to footer instead of the header."
|
218 |
+
msgstr "Añadir JavaScript en el pie de página en lugar de en el encabezado."
|
219 |
+
|
220 |
+
#: includes/settings-page.php:158
|
221 |
+
msgid "Remove link from Meta-box"
|
222 |
+
msgstr "Quitar vínculo del Meta-box"
|
223 |
+
|
224 |
+
#: includes/settings-page.php:162
|
225 |
+
msgid "Remove the link to the developers site from the WordPress meta-box."
|
226 |
+
msgstr "Eliminar el vínculo con el sitio de los desarrolladores del meta-box de WordPress."
|
227 |
+
|
228 |
+
#: includes/settings-page.php:167
|
229 |
+
msgid "Activate debug mode"
|
230 |
+
msgstr "Activar modo de depuración"
|
231 |
+
|
232 |
+
#: includes/settings-page.php:171
|
233 |
+
msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
|
234 |
+
msgstr "Añade información de depuración y el JavaScript completo a la página. Útil para la solución de problemas."
|
235 |
+
|
236 |
+
#: includes/settings-page.php:176
|
237 |
+
msgid "Disable warning"
|
238 |
+
msgstr "Deshabilitar advertencia"
|
239 |
+
|
240 |
+
#: includes/settings-page.php:180
|
241 |
+
msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
|
242 |
+
msgstr "Deshabilita la advertencia que se muestra si el plugin está activado pero la función de auto-colorbox para todas las imágenes está desactivada."
|
243 |
+
|
244 |
+
#: includes/settings-page.php:186
|
245 |
+
#: includes/settings-page.php:481
|
246 |
+
msgid "Save Changes"
|
247 |
+
msgstr "Guardar cambios"
|
248 |
+
|
249 |
+
#: includes/settings-page.php:191
|
250 |
+
msgid "Colorbox settings"
|
251 |
+
msgstr "Configuración Colorbox"
|
252 |
+
|
253 |
+
#: includes/settings-page.php:198
|
254 |
+
msgid "Theme"
|
255 |
+
msgstr "Tema"
|
256 |
+
|
257 |
+
#: includes/settings-page.php:210
|
258 |
+
msgid "Select the theme you want to use on your blog."
|
259 |
+
msgstr "Selecciona el tema que deseas usar en tu blog."
|
260 |
+
|
261 |
+
#: includes/settings-page.php:215
|
262 |
+
msgid "Theme screenshot"
|
263 |
+
msgstr "Vista previa del tema"
|
264 |
+
|
265 |
+
#: includes/settings-page.php:226
|
266 |
+
msgid "Add Slideshow to groups"
|
267 |
+
msgstr "Añadir Slideshow a los grupos"
|
268 |
+
|
269 |
+
#: includes/settings-page.php:230
|
270 |
+
#, php-format
|
271 |
+
msgid "Add Slideshow functionality for %1$s Groups"
|
272 |
+
msgstr "Añadir la funcionalidad Slideshow para %1$s Grupos"
|
273 |
+
|
274 |
+
#: includes/settings-page.php:235
|
275 |
+
msgid "Start Slideshow automatically"
|
276 |
+
msgstr "Comenzar automáticamente el Slideshow"
|
277 |
+
|
278 |
+
#: includes/settings-page.php:239
|
279 |
+
#, php-format
|
280 |
+
msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
|
281 |
+
msgstr "Comenzar automáticamente el Slideshow si la funcionalidad slideshow se ha añadido a %1$s Grupos"
|
282 |
+
|
283 |
+
#: includes/settings-page.php:244
|
284 |
+
msgid "Speed of the slideshow"
|
285 |
+
msgstr "Velocidad del slideshow"
|
286 |
+
|
287 |
+
#: includes/settings-page.php:247
|
288 |
+
#: includes/settings-page.php:456
|
289 |
+
msgid "milliseconds"
|
290 |
+
msgstr "milisegundos"
|
291 |
+
|
292 |
+
#: includes/settings-page.php:248
|
293 |
+
msgid "Sets the speed of the slideshow, in milliseconds"
|
294 |
+
msgstr "Determina la velocidad del slideshow, en milisegundos"
|
295 |
+
|
296 |
+
#: includes/settings-page.php:253
|
297 |
+
msgid "Disable loop"
|
298 |
+
msgstr "Deshabilitar bucle"
|
299 |
+
|
300 |
+
#: includes/settings-page.php:257
|
301 |
+
msgid "Disable looping through image groups"
|
302 |
+
msgstr "Deshabilita bucle de los grupos de imágenes"
|
303 |
+
|
304 |
+
#: includes/settings-page.php:262
|
305 |
+
msgid "Disable keys"
|
306 |
+
msgstr "Deshabilitar teclado"
|
307 |
+
|
308 |
+
#: includes/settings-page.php:266
|
309 |
+
msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
|
310 |
+
msgstr "Deshabilita ESC para cerrar Colorbox y las teclas de flecha para ir a las imágenes anterior y posterior"
|
311 |
+
|
312 |
+
#: includes/settings-page.php:271
|
313 |
+
msgid "Maximum width of an image"
|
314 |
+
msgstr "Ancho máximo de imagen"
|
315 |
+
|
316 |
+
#: includes/settings-page.php:275
|
317 |
+
#: includes/settings-page.php:321
|
318 |
+
msgid "Do not set width"
|
319 |
+
msgstr "No establecer ancho"
|
320 |
+
|
321 |
+
#: includes/settings-page.php:278
|
322 |
+
msgid "Set maximum width of an image"
|
323 |
+
msgstr "Establecer el ancho máximo de imagen"
|
324 |
+
|
325 |
+
#: includes/settings-page.php:289
|
326 |
+
msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
|
327 |
+
msgstr "Establece el ancho máximo de la imagen en la Colorbox en relación con la ventana del navegador, en porcentaje o píxeles. Si no se establece ancho máximo, la imagen será tan amplia como la Colorbox"
|
328 |
+
|
329 |
+
#: includes/settings-page.php:294
|
330 |
+
msgid "Maximum height of an image"
|
331 |
+
msgstr "Altura máxima de imagen"
|
332 |
+
|
333 |
+
#: includes/settings-page.php:298
|
334 |
+
#: includes/settings-page.php:344
|
335 |
+
msgid "Do not set height"
|
336 |
+
msgstr "No establecer alto"
|
337 |
+
|
338 |
+
#: includes/settings-page.php:301
|
339 |
+
msgid "Set maximum height of an image"
|
340 |
+
msgstr "Establecer la altura máxima de imagen"
|
341 |
+
|
342 |
+
#: includes/settings-page.php:312
|
343 |
+
msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
|
344 |
+
msgstr "Establece el alto máximo de la imagen en la Colorbox en relación con la ventana del navegador, en porcentaje o píxeles. Si no se establece altura máxima, la imagen será tan alta como la Colorbox"
|
345 |
+
|
346 |
+
#: includes/settings-page.php:317
|
347 |
+
msgid "Maximum width of the Colorbox"
|
348 |
+
msgstr "Ancho máximo de la Colorbox"
|
349 |
+
|
350 |
+
#: includes/settings-page.php:324
|
351 |
+
msgid "Set width of the Colorbox"
|
352 |
+
msgstr "Establecer el ancho máximo de la Colorbox"
|
353 |
+
|
354 |
+
#: includes/settings-page.php:335
|
355 |
+
msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
|
356 |
+
msgstr "Establece el ancho máximo de la propia Colorbox en relación con la ventana del navegador, en porcentaje o píxeles. Si la imagen es mayor que el colorbox, se mostrarán las barras de desplazamiento. Si el ancho no está establecido, la Colorbox será tan amplia como la imagen en ella."
|
357 |
+
|
358 |
+
#: includes/settings-page.php:340
|
359 |
+
msgid "Maximum height of the Colorbox"
|
360 |
+
msgstr "Altura máxima de la Colorbox"
|
361 |
+
|
362 |
+
#: includes/settings-page.php:347
|
363 |
+
msgid "Set height of the Colorbox"
|
364 |
+
msgstr "Establecer el alto máximo de la Colorbox"
|
365 |
+
|
366 |
+
#: includes/settings-page.php:358
|
367 |
+
msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
|
368 |
+
msgstr "Establece la altura máxima de la propia Colorbox en relación con la ventana del navegador, en porcentaje o píxeles. Si la imagen es mayor que el colorbox, se mostrarán las barras de desplazamiento. Si el alto no está establecido, la Colorbox será tan alta como la imagen en ella."
|
369 |
+
|
370 |
+
#: includes/settings-page.php:363
|
371 |
+
msgid "Maximum width of the Colorbox used for links"
|
372 |
+
msgstr "Ancho máximo de la Colorbox utilizada para los vínculos"
|
373 |
+
|
374 |
+
#: includes/settings-page.php:386
|
375 |
+
msgid "Maximum height of the Colorbox used for links"
|
376 |
+
msgstr "Altura máxima de la Colorbox utilizada para los vínculos"
|
377 |
+
|
378 |
+
#: includes/settings-page.php:409
|
379 |
+
msgid "Resize images"
|
380 |
+
msgstr "Escalar imágenes"
|
381 |
+
|
382 |
+
#: includes/settings-page.php:413
|
383 |
+
msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
|
384 |
+
msgstr "Si está habilitado y si el ancho máximo de las imágenes, la altura máxima de las imágenes, el ancho de la Colorbox, o la altura de la Colorbox se han definido, ColorBox escalará las imágenes para ajustarse a esos valores"
|
385 |
+
|
386 |
+
#: includes/settings-page.php:418
|
387 |
+
msgid "Close Colorbox on overlay click"
|
388 |
+
msgstr "Cerrar la Colorbox al clicar en la capa superpuesta"
|
389 |
+
|
390 |
+
#: includes/settings-page.php:422
|
391 |
+
msgid "If checked, enables closing ColorBox by clicking on the background overlay"
|
392 |
+
msgstr "Si está activada, permite cerrar ColorBox haciendo clic en la superposición de fondo"
|
393 |
+
|
394 |
+
#: includes/settings-page.php:427
|
395 |
+
msgid "Preload images"
|
396 |
+
msgstr "Precargar imágenes"
|
397 |
+
|
398 |
+
#: includes/settings-page.php:431
|
399 |
+
msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
|
400 |
+
msgstr "Permite la precarga del contenido \"anterior\" y \"posterior\" en un grupo, después de que el contenido actual haya terminado de cargar. Desmarque la casilla para desactivar."
|
401 |
+
|
402 |
+
#: includes/settings-page.php:436
|
403 |
+
msgid "Transition type"
|
404 |
+
msgstr "Tipo de transición"
|
405 |
+
|
406 |
+
#: includes/settings-page.php:448
|
407 |
+
msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
|
408 |
+
msgstr "El tipo de transición usado en la Color box. Puede ser configurado como \"elastico\", \"fundido\", o \"ninguno\""
|
409 |
+
|
410 |
+
#: includes/settings-page.php:453
|
411 |
+
msgid "Transition speed"
|
412 |
+
msgstr "Velocidad de transición"
|
413 |
+
|
414 |
+
#: includes/settings-page.php:457
|
415 |
+
msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
|
416 |
+
msgstr "Establece la velocidad de \"fundido\" y \"elástico\" de las transiciones, en milisegundos"
|
417 |
+
|
418 |
+
#: includes/settings-page.php:462
|
419 |
+
msgid "Opacity"
|
420 |
+
msgstr "Opacidad"
|
421 |
+
|
422 |
+
#: includes/settings-page.php:466
|
423 |
+
msgid "The overlay opacity level. Range: 0 to 1"
|
424 |
+
msgstr "La opacidad de la superposición. Rango: de 0 a 1"
|
425 |
+
|
426 |
+
#: includes/settings-page.php:471
|
427 |
+
msgid "Make images draggable"
|
428 |
+
msgstr "Hacer que las imágenes puedan arrastrarse"
|
429 |
+
|
430 |
+
#: includes/settings-page.php:475
|
431 |
+
msgid "Make images draggable instead of scrollable"
|
432 |
+
msgstr "Hace que las imágenes puedan arrastrarse en lugar de desplazarse"
|
433 |
+
|
434 |
+
#: includes/settings-page.php:491
|
435 |
+
#: includes/settings-page.php:500
|
436 |
+
msgid "Delete Settings"
|
437 |
+
msgstr "Borrar Opciones"
|
438 |
+
|
439 |
+
#: includes/settings-page.php:494
|
440 |
+
msgid "Check the box and click this button to delete settings of this plugin."
|
441 |
+
msgstr "Marque la casilla y haga clic en este botón para eliminar la configuración de este plugin."
|
442 |
+
|
443 |
+
#: includes/settings-page.php:511
|
444 |
+
msgid "Top donations"
|
445 |
+
msgstr "Máximas donaciones"
|
446 |
+
|
447 |
+
#: includes/settings-page.php:520
|
448 |
+
msgid "Latest donations"
|
449 |
+
msgstr "ültimas donaciones"
|
450 |
+
|
451 |
+
#: includes/settings-page.php:529
|
452 |
+
msgid "Donate"
|
453 |
+
msgstr "Hacer donación"
|
454 |
+
|
455 |
+
#: includes/settings-page.php:533
|
456 |
+
msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
|
457 |
+
msgstr "Si deseas hacer una pequeña (o grande) contribución al futuro desarrollo, por favor considera hacer una donación."
|
458 |
+
|
459 |
+
#: includes/settings-page.php:535
|
460 |
+
msgid "Donate using Paypal"
|
461 |
+
msgstr "Donar usando Paypal"
|
462 |
+
|
463 |
+
#: includes/settings-page.php:539
|
464 |
+
msgid "Techotronic Development Support"
|
465 |
+
msgstr "Techotronic Development Support"
|
466 |
+
|
467 |
+
#: includes/settings-page.php:543
|
468 |
+
msgid "Please enter the URL you'd like me to link to in the donors lists"
|
469 |
+
msgstr "Introduce la dirección URL a la que te gustaría que yo enlace en las listas de donantes"
|
470 |
+
|
471 |
+
#: includes/settings-page.php:545
|
472 |
+
msgid "Return to Your Dashboard"
|
473 |
+
msgstr "Volver a tu escritorio"
|
474 |
+
|
475 |
+
#: includes/settings-page.php:549
|
476 |
+
msgid "Select Preset Amount"
|
477 |
+
msgstr "Selecciona la cantidad preestablecida"
|
478 |
+
|
479 |
+
#: includes/settings-page.php:557
|
480 |
+
#: includes/settings-page.php:561
|
481 |
+
msgid "USD"
|
482 |
+
msgstr "USD"
|
483 |
+
|
484 |
+
#: includes/settings-page.php:558
|
485 |
+
msgid "Or"
|
486 |
+
msgstr "o"
|
487 |
+
|
488 |
+
#: includes/settings-page.php:559
|
489 |
+
msgid "Enter Custom Amount"
|
490 |
+
msgstr "Introduce otra cantidad"
|
491 |
+
|
492 |
+
#: includes/settings-page.php:563
|
493 |
+
msgid "Submit"
|
494 |
+
msgstr "Enviar"
|
495 |
+
|
496 |
+
#: includes/settings-page.php:570
|
497 |
+
msgid "Translation"
|
498 |
+
msgstr "Traducción"
|
499 |
+
|
500 |
+
#: includes/settings-page.php:573
|
501 |
+
msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
|
502 |
+
msgstr "La traducción al español ha sido realizada por <a href=\"http://www.redywebs.com\">Inma Zubizarreta</a>."
|
503 |
+
|
504 |
+
#~ msgid "maxWidth"
|
505 |
+
#~ msgstr "Maximum width of an image"
|
506 |
+
|
507 |
+
#~ msgid "maxHeight"
|
508 |
+
#~ msgstr "Maximum height of an image"
|
509 |
+
|
510 |
+
#~ msgid "width"
|
511 |
+
#~ msgstr "Maxinmum width of the Colorbox"
|
512 |
+
|
513 |
+
#~ msgid "height"
|
514 |
+
#~ msgstr "Maximum height of the Colorbox"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.techotronic.de/donate/
|
|
4 |
Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay, nextgen gallery, nextgen-gallery, image, picture, photo, media, slideshow, ngg, mu
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.0
|
7 |
-
Stable tag: 3.8.
|
8 |
|
9 |
Adds Colorbox/Lightbox functionality to images, grouped by post or page. Works for WordPress and NextGEN galleries. Comes with different themes.
|
10 |
|
@@ -40,6 +40,7 @@ Localization
|
|
40 |
* Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
|
41 |
* Russian (ru_RU) by <a href="http://drive2life.ru">Drive2Life.ru</a>
|
42 |
* Slovak (sk_SK) by <a href="http://itec.sk/">Stefan Stieranka</a>
|
|
|
43 |
* Swedish (sv_SE) by <a href="http://www.theindiaexperience.se/">Christian</a>
|
44 |
* Turkish (tr_TR) by <a href="http://www.serhatyolacan.com/">Serhat Yolaçan</a>
|
45 |
* Ukrainian (uk) by <a href="http://www.politcult.com/">Yuri Kryzhanivskyi</a>
|
@@ -166,6 +167,10 @@ Feel free to write an email to blog [at] techotronic.de or open a thread at <a h
|
|
166 |
I'll include new FAQs in every new version. Promise.
|
167 |
|
168 |
== Changelog ==
|
|
|
|
|
|
|
|
|
169 |
= 3.8.2 (2010-12-21) =
|
170 |
* BUGFIX: Last bugfix broke minor functionality.
|
171 |
|
4 |
Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay, nextgen gallery, nextgen-gallery, image, picture, photo, media, slideshow, ngg, mu
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.0
|
7 |
+
Stable tag: 3.8.3
|
8 |
|
9 |
Adds Colorbox/Lightbox functionality to images, grouped by post or page. Works for WordPress and NextGEN galleries. Comes with different themes.
|
10 |
|
40 |
* Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
|
41 |
* Russian (ru_RU) by <a href="http://drive2life.ru">Drive2Life.ru</a>
|
42 |
* Slovak (sk_SK) by <a href="http://itec.sk/">Stefan Stieranka</a>
|
43 |
+
* Spanish (es_ES) by <a href="http://www.redywebs.com/">Inma P.-Zubizarreta</a>
|
44 |
* Swedish (sv_SE) by <a href="http://www.theindiaexperience.se/">Christian</a>
|
45 |
* Turkish (tr_TR) by <a href="http://www.serhatyolacan.com/">Serhat Yolaçan</a>
|
46 |
* Ukrainian (uk) by <a href="http://www.politcult.com/">Yuri Kryzhanivskyi</a>
|
167 |
I'll include new FAQs in every new version. Promise.
|
168 |
|
169 |
== Changelog ==
|
170 |
+
= 3.8.3 (2010-12-24) =
|
171 |
+
* NEW: Spanish translation by <a href="http://www.redywebs.com/">Inma P.-Zubizarreta</a>
|
172 |
+
* BUGFIX: re-added the option to hide flash objects behind the colorbox overlay.
|
173 |
+
|
174 |
= 3.8.2 (2010-12-21) =
|
175 |
* BUGFIX: Last bugfix broke minor functionality.
|
176 |
|