Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.70

Version Description

  • Changed: Blog style view scroll load.
  • Changed: Lightbox buttons responsiveness.
  • Fixed: Spanish translation by Alexandro Lacadena.
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Photo Gallery by WD – Responsive Photo Gallery
Version 1.2.70
Comparing to
See all releases

Code changes from version 1.2.69 to 1.2.70

css/bwg_frontend.css CHANGED
@@ -208,3 +208,14 @@ div[id^="bwg_container"] a {
208
  word-wrap: break-word;
209
  z-index: 11;
210
  }
 
 
 
 
 
 
 
 
 
 
 
208
  word-wrap: break-word;
209
  z-index: 11;
210
  }
211
+
212
+ @media screen and (max-width: 465px) {
213
+ .bwg_ctrl_btn {
214
+ margin-bottom:0 !important;
215
+ }
216
+
217
+ .bwg_ctrl_btn_container {
218
+ height:auto !important;
219
+ }
220
+ }
221
+
frontend/views/BWGViewGalleryBox.php CHANGED
@@ -248,14 +248,14 @@ class BWGViewGalleryBox {
248
  ?>
249
  border-bottom-left-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
250
  border-bottom-right-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
251
- top: <?php echo $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top; ?>px;
252
  <?php
253
  }
254
  else {
255
  ?>
256
  border-top-left-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
257
  border-top-right-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
258
- bottom: <?php echo $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top; ?>px;
259
  <?php
260
  }?>
261
  cursor: pointer;
@@ -1369,38 +1369,38 @@ class BWGViewGalleryBox {
1369
  });
1370
  if (typeof data[key] != 'undefined') {
1371
  if (typeof data[current_key] != 'undefined') {
1372
- if (jQuery('.bwg_ctrl_btn').hasClass('fa-pause')) {
1373
- bwg_play();
1374
- }
1375
- if (!from_effect) {
1376
- /* Change image key.*/
1377
- jQuery("#bwg_current_image_key").val(key);
1378
- /*if (current_key == '-1') {
1379
- current_key = jQuery(".bwg_thumb_active").children("img").attr("image_key");
1380
- }*/
1381
- }
1382
- if (bwg_trans_in_progress) {
1383
- event_stack.push(current_key + '-' + key);
1384
- return;
1385
- }
1386
- var direction = 'right';
1387
- if (bwg_current_key > key) {
1388
- var direction = 'left';
1389
- }
1390
- else if (bwg_current_key == key) {
1391
- return;
1392
- }
1393
- /*jQuery("#spider_popup_left").hover().css({"display": "inline"});
1394
- jQuery("#spider_popup_right").hover().css({"display": "inline"});*/
1395
- jQuery(".bwg_image_count").html(data[key]["number"]);
1396
- /* Set filmstrip initial position.*/
1397
- jQuery(".bwg_watermark").css({display: 'none'});
1398
- /* Set active thumbnail position.*/
1399
- bwg_current_filmstrip_pos = key * (jQuery(".bwg_filmstrip_thumbnail").width() + 2 + 2 * <?php echo $theme_row->lightbox_filmstrip_thumb_border_width; ?>);
1400
- bwg_current_key = key;
1401
- /* Change image id.*/
1402
- jQuery("#bwg_popup_image").attr('image_id', data[key]["id"]);
1403
- /* Change image title, description.*/
1404
  jQuery(".bwg_image_title").html(jQuery('<span style="display: block;" />').html(data[key]["alt"]).text());
1405
  jQuery(".bwg_image_description").html(jQuery('<span style="display: block;" />').html(data[key]["description"]).text());
1406
  jQuery(".bwg_image_info").removeAttr("style");
@@ -1674,6 +1674,12 @@ class BWGViewGalleryBox {
1674
  jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1675
  }
1676
  }
 
 
 
 
 
 
1677
  }
1678
  jQuery(window).resize(function() {
1679
  if (typeof jQuery().fullscreen !== 'undefined') {
@@ -2185,8 +2191,8 @@ class BWGViewGalleryBox {
2185
  });
2186
  /* Play/pause.*/
2187
  jQuery(".bwg_play_pause, .bwg_popup_image").on(bwg_click, function () {
2188
- if (jQuery(".bwg_ctrl_btn").hasClass("fa-play")) {
2189
- /* PLay.*/
2190
  bwg_play();
2191
  jQuery(".bwg_play_pause").attr("title", "<?php echo __('Pause', 'bwg'); ?>");
2192
  jQuery(".bwg_play_pause").attr("class", "bwg_ctrl_btn bwg_play_pause fa fa-pause");
@@ -2317,9 +2323,9 @@ class BWGViewGalleryBox {
2317
  }
2318
  jQuery(window).focus(function() {
2319
  /* event_stack = [];*/
2320
- if (!jQuery(".bwg_ctrl_btn").hasClass("fa-play")) {
2321
- bwg_play();
2322
- }
2323
  /*var i = 0;
2324
  jQuery(".bwg_slider").children("span").each(function () {
2325
  if (jQuery(this).css('opacity') == 1) {
@@ -2332,6 +2338,7 @@ class BWGViewGalleryBox {
2332
  event_stack = [];
2333
  window.clearInterval(bwg_playInterval);
2334
  });
 
2335
  </script>
2336
  <?php
2337
  die();
248
  ?>
249
  border-bottom-left-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
250
  border-bottom-right-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
251
+ /*top: <?php echo $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top; ?>px;*/
252
  <?php
253
  }
254
  else {
255
  ?>
256
  border-top-left-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
257
  border-top-right-radius: <?php echo $theme_row->lightbox_ctrl_cont_border_radius; ?>px;
258
+ /*bottom: <?php echo $theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top; ?>px;*/
259
  <?php
260
  }?>
261
  cursor: pointer;
1369
  });
1370
  if (typeof data[key] != 'undefined') {
1371
  if (typeof data[current_key] != 'undefined') {
1372
+ if (jQuery(".bwg_play_pause") && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
1373
+ bwg_play();
1374
+ }
1375
+ if (!from_effect) {
1376
+ /* Change image key.*/
1377
+ jQuery("#bwg_current_image_key").val(key);
1378
+ /*if (current_key == '-1') {
1379
+ current_key = jQuery(".bwg_thumb_active").children("img").attr("image_key");
1380
+ }*/
1381
+ }
1382
+ if (bwg_trans_in_progress) {
1383
+ event_stack.push(current_key + '-' + key);
1384
+ return;
1385
+ }
1386
+ var direction = 'right';
1387
+ if (bwg_current_key > key) {
1388
+ var direction = 'left';
1389
+ }
1390
+ else if (bwg_current_key == key) {
1391
+ return;
1392
+ }
1393
+ /*jQuery("#spider_popup_left").hover().css({"display": "inline"});
1394
+ jQuery("#spider_popup_right").hover().css({"display": "inline"});*/
1395
+ jQuery(".bwg_image_count").html(data[key]["number"]);
1396
+ /* Set filmstrip initial position.*/
1397
+ jQuery(".bwg_watermark").css({display: 'none'});
1398
+ /* Set active thumbnail position.*/
1399
+ bwg_current_filmstrip_pos = key * (jQuery(".bwg_filmstrip_thumbnail").width() + 2 + 2 * <?php echo $theme_row->lightbox_filmstrip_thumb_border_width; ?>);
1400
+ bwg_current_key = key;
1401
+ /* Change image id.*/
1402
+ jQuery("#bwg_popup_image").attr('image_id', data[key]["id"]);
1403
+ /* Change image title, description.*/
1404
  jQuery(".bwg_image_title").html(jQuery('<span style="display: block;" />').html(data[key]["alt"]).text());
1405
  jQuery(".bwg_image_description").html(jQuery('<span style="display: block;" />').html(data[key]["description"]).text());
1406
  jQuery(".bwg_image_info").removeAttr("style");
1674
  jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1675
  }
1676
  }
1677
+ if ( "<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>" == 'bottom') {
1678
+ jQuery(".bwg_toggle_container").css("bottom", jQuery(".bwg_ctrl_btn_container").height() + "px");
1679
+ }
1680
+ if ( "<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>" == 'top') {
1681
+ jQuery(".bwg_toggle_container").css("top", jQuery(".bwg_ctrl_btn_container").height() + "px");
1682
+ }
1683
  }
1684
  jQuery(window).resize(function() {
1685
  if (typeof jQuery().fullscreen !== 'undefined') {
2191
  });
2192
  /* Play/pause.*/
2193
  jQuery(".bwg_play_pause, .bwg_popup_image").on(bwg_click, function () {
2194
+ if (jQuery(".bwg_play_pause") && jQuery(".bwg_play_pause").hasClass("fa-play")) {
2195
+ /* Play.*/
2196
  bwg_play();
2197
  jQuery(".bwg_play_pause").attr("title", "<?php echo __('Pause', 'bwg'); ?>");
2198
  jQuery(".bwg_play_pause").attr("class", "bwg_ctrl_btn bwg_play_pause fa fa-pause");
2323
  }
2324
  jQuery(window).focus(function() {
2325
  /* event_stack = [];*/
2326
+ if (jQuery(".bwg_play_pause") && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
2327
+ bwg_play();
2328
+ }
2329
  /*var i = 0;
2330
  jQuery(".bwg_slider").children("span").each(function () {
2331
  if (jQuery(this).css('opacity') == 1) {
2338
  event_stack = [];
2339
  window.clearInterval(bwg_playInterval);
2340
  });
2341
+ var lightbox_ctrl_btn_pos = "<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>";
2342
  </script>
2343
  <?php
2344
  die();
js/bwg_frontend.js CHANGED
@@ -72,6 +72,9 @@ function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_a
72
  }
73
  }
74
  ).success(function(jqXHR, textStatus, errorThrown) {
 
 
 
75
  jQuery("#ajax_loading_" + current_view).css('display', 'none');
76
  jQuery("#bwg_tags_id_" + id).val(jQuery("#bwg_tag_id_" + id).val());
77
 
72
  }
73
  }
74
  ).success(function(jqXHR, textStatus, errorThrown) {
75
+ jQuery(".blog_style_image_buttons_conteiner_" + current_view).find(jQuery(".bwg_blog_style_img_" + current_view)).load(function(){
76
+ jQuery(".bwg_blog_style_img_" + current_view).closest(jQuery(".blog_style_image_buttons_conteiner_" + current_view)).show();
77
+ })
78
  jQuery("#ajax_loading_" + current_view).css('display', 'none');
79
  jQuery("#bwg_tags_id_" + id).val(jQuery("#bwg_tag_id_" + id).val());
80
 
js/bwg_gallery_box.js CHANGED
@@ -45,6 +45,12 @@ function spider_receivedpopup(description, lifetime) {
45
  var date = new Date();
46
  date.setDate(date.getDate() + lifetime);
47
  document.cookie = description + "=true;expires=" + date.toUTCString() + ";path=/";
 
 
 
 
 
 
48
  }
49
 
50
  function spider_isunsupporteduseragent() {
45
  var date = new Date();
46
  date.setDate(date.getDate() + lifetime);
47
  document.cookie = description + "=true;expires=" + date.toUTCString() + ";path=/";
48
+ if (lightbox_ctrl_btn_pos == 'bottom') {
49
+ jQuery(".bwg_toggle_container").css("bottom", jQuery(".bwg_ctrl_btn_container").height() + "px");
50
+ }
51
+ else if (lightbox_ctrl_btn_pos == 'top') {
52
+ jQuery(".bwg_toggle_container").css("top", jQuery(".bwg_ctrl_btn_container").height() + "px");
53
+ }
54
  }
55
 
56
  function spider_isunsupporteduseragent() {
languages/backend/bwg_back-es_ES.mo CHANGED
Binary file
languages/backend/bwg_back-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: photo-gallery\n"
4
  "POT-Creation-Date: 15-11-02 09:15+000\n"
5
- "PO-Revision-Date: 2015-11-02 14:06+0400\n"
6
  "Last-Translator: admin < a@mail.ru >\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
@@ -10,11 +10,11 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.5.4\n"
14
 
15
  #: ../photo-gallery-notices.php:188
16
  msgid "Leave A Review?"
17
- msgstr "Deje un comentario?"
18
 
19
  #: ../photo-gallery-notices.php:189
20
  #, php-format
@@ -22,8 +22,8 @@ msgid ""
22
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
23
  "review on WordPress.org?"
24
  msgstr ""
25
- "Esperamos que hayas disfrutado utilizando WordPress% s! ¿Consideraría usted "
26
- "que nos deja un comentario para WordPress.org?"
27
 
28
  #: ../photo-gallery-notices.php:190
29
  msgid "Sure! I'd love to!"
@@ -35,7 +35,7 @@ msgstr "Yo ya he dejado una reseña"
35
 
36
  #: ../photo-gallery-notices.php:192
37
  msgid "Maybe Later"
38
- msgstr "Quizas despues"
39
 
40
  #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
41
  msgid "Never show again"
@@ -51,8 +51,8 @@ msgid ""
51
  "Thank you for using WordPress %s! We hope that you've found everything you "
52
  "need, but if you have any questions:"
53
  msgstr ""
54
- "Gracias por usar WordPress% s usted! Esperamos que usted haya encontrado "
55
- "todo lo que necesita, pero si usted tiene alguna pregunta:"
56
 
57
  #: ../photo-gallery-notices.php:201
58
  msgid "Check out User Guide"
@@ -64,7 +64,7 @@ msgstr "Conseguir un poco de ayuda"
64
 
65
  #. Name of the plugin
66
  msgid "Photo Gallery"
67
- msgstr "Galería de fotos"
68
 
69
  #. URI of the plugin
70
  msgid "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
@@ -77,9 +77,9 @@ msgid ""
77
  "and pages. You can create unlimited number of galleries, combine them into "
78
  "albums, and provide descriptions and tags."
79
  msgstr ""
80
- "Este plugin es una galería Plugin responda plenamente con funcionalidad "
81
- "avanzada. Permite tener diferentes galerías de imágenes para tus mensajes y "
82
- "páginas. Usted puede crear un número ilimitado de galerías, combinarlos en "
83
  "álbumes, y proporcionar descripciones y etiquetas."
84
 
85
  #. Author of the plugin
@@ -114,7 +114,7 @@ msgstr "Temas"
114
 
115
  #: ../photo-gallery.php:95
116
  msgid "Generate Shortcode"
117
- msgstr "Generar Código corto"
118
 
119
  #: ../photo-gallery.php:97
120
  msgid "Licensing"
@@ -122,7 +122,7 @@ msgstr "Licencias"
122
 
123
  #: ../photo-gallery.php:100
124
  msgid "Featured Plugins"
125
- msgstr "Plugins destacado"
126
 
127
  #: ../photo-gallery.php:101
128
  msgid "Featured Themes"
@@ -134,7 +134,7 @@ msgstr "Desinstalar"
134
 
135
  #: ../photo-gallery.php:2446 ../photo-gallery.php:2615
136
  msgid "field is required."
137
- msgstr "Se requiere campo."
138
 
139
  #: ../photo-gallery.php:2447
140
  msgid "You must select an image file."
@@ -149,21 +149,20 @@ msgid ""
149
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
150
  "options. "
151
  msgstr ""
152
- "Usted no tiene Instagram CLIENT_ID. Introducir su valor en las opciones "
153
- "Opciones-> Incrustar."
154
 
155
  #: ../photo-gallery.php:2450
156
  msgid "Instagram recent post number must be between 1 and 33."
157
- msgstr "Instagram número reciente post debe estar entre 1 y 33."
158
 
159
  #: ../photo-gallery.php:2451
160
  msgid "The gallery is not empty. Please delete all the images first."
161
- msgstr ""
162
- "La galería no está vacío. Por favor, borrar todas las imágenes primero."
163
 
164
  #: ../photo-gallery.php:2452
165
  msgid "Please enter url to embed."
166
- msgstr "Por favor, introduzca url para incrustar."
167
 
168
  #: ../photo-gallery.php:2453
169
  msgid "Error: cannot get response from the server."
@@ -179,14 +178,14 @@ msgstr "Error"
179
 
180
  #: ../photo-gallery.php:2456
181
  msgid "Show order column"
182
- msgstr "Columna Mostrar pedido"
183
 
184
  #: ../photo-gallery.php:2457 ../admin/views/BWGViewAlbums_bwg.php:63 ..
185
  #: /admin/views/BWGViewGalleries_bwg.php:63
186
  #: ../admin/views/BWGViewGalleries_bwg. php:521
187
  #: ../admin/views/BWGViewGalleries_bwg.php:725
188
  msgid "Hide order column"
189
- msgstr "Ocultar columna de orden"
190
 
191
  #: ../photo-gallery.php:2458
192
  msgid "Selected"
@@ -194,33 +193,33 @@ msgstr "Seleccionado"
194
 
195
  #: ../photo-gallery.php:2459 ../framework/WDWLibrary.php:436
196
  msgid "item"
197
- msgstr "artículo"
198
 
199
  #: ../photo-gallery.php:2460
200
  msgid "Items Succesfully Saved."
201
- msgstr "Artículos Succesfully guardados."
202
 
203
  #: ../photo-gallery.php:2461
204
  msgid "Item Succesfully Recovered."
205
- msgstr "Artículo Succesfully Recuperado."
206
 
207
  #: ../photo-gallery.php:2462
208
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:953
209
  #: ../framework/WDWLibrary.php:94
210
  msgid "Item Succesfully Published."
211
- msgstr "Artículo Succesfully Publicado."
212
 
213
  #: ../photo-gallery.php:2463
214
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:990
215
  #: ../framework/WDWLibrary.php:106
216
  msgid "Item Succesfully Unpublished."
217
- msgstr "Artículo Succesfully inédito."
218
 
219
  #: ../photo-gallery.php:2464
220
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:908
221
  #: ../framework/WDWLibrary.php:58
222
  msgid "Item Succesfully Deleted."
223
- msgstr "Artículo Succesfully eliminados."
224
 
225
  #: ../photo-gallery.php:2465
226
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:944
@@ -233,19 +232,19 @@ msgstr "Debe seleccionar al menos un elemento."
233
 
234
  #: ../photo-gallery.php:2466
235
  msgid "Items Succesfully resized."
236
- msgstr "Artículos Succesfully cambiar de tamaño."
237
 
238
  #: ../photo-gallery.php:2467
239
  msgid "Watermarks Succesfully Set."
240
- msgstr "Marcas de agua Succesfully Set."
241
 
242
  #: ../photo-gallery.php:2468
243
  msgid "Items Succesfully Reset."
244
- msgstr "Artículos Succesfully Reiniciar."
245
 
246
  #: ../photo-gallery.php:2616
247
  msgid "This is not a valid email address."
248
- msgstr "Esto no es una dirección de correo electrónico válida."
249
 
250
  #: ../photo-gallery.php:2617
251
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:744
@@ -259,7 +258,7 @@ msgstr "Seleccionar etiqueta."
259
 
260
  #: ../addons/addons.php:5
261
  msgid "Photo Gallery Facebook"
262
- msgstr "Galería de fotos de Facebook"
263
 
264
  #: ../addons/addons.php:7
265
  msgid ""
@@ -268,14 +267,14 @@ msgid ""
268
  "galleries, embed individual images and videos or include Facebook albums "
269
  "within mixed type albums."
270
  msgstr ""
271
- "Galería de fotos Facebook es un add-on, que ayuda a mostrar las fotos de "
272
- "Facebook y videos en Galería de fotos plugin. Puede crear de Facebook de "
273
- "sólo galerías, imágenes individuales incrustar y videos o incluir álbumes de "
274
  "Facebook dentro de álbumes de tipo mixto."
275
 
276
  #: ../addons/addons.php:12
277
  msgid "NextGen Gallery Import to Photo Gallery"
278
- msgstr "NextGen Gallery de importación a la galería de fotos"
279
 
280
  #: ../addons/addons.php:14
281
  msgid ""
@@ -287,7 +286,7 @@ msgstr ""
287
 
288
  #: ../addons/addons.php:19
289
  msgid "Photo Gallery Export / Import"
290
- msgstr "Galería de Fotos de exportación / importación"
291
 
292
  #: ../addons/addons.php:21
293
  msgid ""
@@ -295,33 +294,33 @@ msgid ""
295
  "one site to another. This way you can save the gallery/album options and "
296
  "manual modifications."
297
  msgstr ""
298
- "Galería de Fotos de exportación / importación ayuda a mover las galerías y "
299
- "álbumes creados a partir de un sitio a otro. De esta manera usted puede "
300
- "guardar los galería / opciones de álbumes y modificaciones manuales."
301
 
302
  #: ../addons/addons.php:30
303
  msgid "Photo Gallery Add-ons"
304
- msgstr "Galería de fotos de complementos"
305
 
306
  #: ../addons/addons.php:33
307
  msgid "Attention"
308
- msgstr "¡Atención"
309
 
310
  #: ../addons/addons.php:34
311
  msgid "Add-ons are supported by premium version of Photo Gallery"
312
  msgstr ""
313
- "Los complementos son compatibles con la versión premium de Galería de fotos"
314
 
315
  #: ../addons/addons.php:69
316
  msgid "GET THIS ADD ON"
317
- msgstr "Obtener esta AÑADIR EN"
318
 
319
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:727 ..
320
  #: /admin/controllers/BWGControllerGalleries_bwg.php:868
321
  #: /admin/controllers/BWGControllerOptions_bwg.php:384
322
  #: /admin/views/BWGViewTags_bwg.php:52 ../framework/WDWLibrary.php:46
323
  msgid "Item Succesfully Saved."
324
- msgstr "Artículo Succesfully Guardados."
325
 
326
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
327
  #: /admin/controllers/BWGControllerGalleries_bwg.php:911
@@ -334,40 +333,40 @@ msgstr "Error. Por favor, instale el plugin de nuevo."
334
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:894 ..
335
  #: /framework/WDWLibrary.php:118
336
  msgid "Ordering Succesfully Saved."
337
- msgstr "Pedidos Succesfully Guardados."
338
 
339
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:941 ..
340
  #: /framework/WDWLibrary.php:70
341
  msgid "Items Succesfully Deleted."
342
- msgstr "Artículos Succesfully eliminados."
343
 
344
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:978 ..
345
  #: /framework/WDWLibrary.php:100
346
  msgid "Items Succesfully Published."
347
- msgstr "Artículos Succesfully publicados."
348
 
349
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:1015 ..
350
  #: /framework/WDWLibrary.php:112
351
  msgid "Items Succesfully Unpublished."
352
- msgstr "Artículos Succesfully inédito."
353
 
354
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:1100
355
  msgid "Thumb Succesfully Resized"
356
- msgstr "Pulgar Succesfully redimensionada"
357
 
358
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:45
359
  msgid "Albums/Galleries"
360
  msgstr "Álbumes / Galerías"
361
 
362
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
363
- #: /admin/views/BWGViewAddAlbumsGalleries.php:77
364
- #: ../admin/views/BWGViewAddTags. php:51 ../admin/views/BWGViewAddTags.php:68
365
  #: ../admin/views/BWGViewAlbums_bwg. php:75
366
  #: ../admin/views/BWGViewAlbums_bwg.php:96
367
  #: /admin/views/BWGViewGalleries_bwg.php:75
368
  #: ../admin/views/BWGViewGalleries_bwg. php:97
369
- #: ../admin/views/BWGViewTags_bwg.php:71 ../admin/views/BWGViewTags_bwg.
370
- #: php:91 ../admin/views/BWGViewThemes_bwg.php:110
371
  msgid "Name"
372
  msgstr "Nombre"
373
 
@@ -375,12 +374,12 @@ msgstr "Nombre"
375
  #: /admin/views/BWGViewBWGShortcode.php:214
376
  #: ../admin/views/BWGViewGalleries_bwg. php:908
377
  msgid "Type"
378
- msgstr "Escribe"
379
 
380
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
381
  #: ../admin/views/BWGViewWidget. php:111
382
  msgid "Album"
383
- msgstr "Album"
384
 
385
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
386
  #: ../admin/views/BWGViewWidget. php:110
@@ -401,52 +400,46 @@ msgstr "Esta sección le permite crear, editar y eliminar álbumes."
401
  #: ../admin/views/BWGViewAlbums_bwg.php:41
402
  #: ../admin/views/BWGViewAlbums_bwg.php:203
403
  #: ../admin/views/BWGViewGalleries_bwg.php:41 ..
404
- #: /admin/views/BWGViewGalleries_bwg.php:219
405
- #: ../admin/views/BWGViewOptions_bwg. php:31
406
- #: ../admin/views/BWGViewTags_bwg.php:44 ../admin/views/BWGViewThemes_bwg.
407
- #: php:40 ../admin/views/BWGViewThemes_bwg.php:251
408
  msgid "Read More in User Manual"
409
  msgstr "Leer más en el manual del usuario"
410
 
411
- #: ../admin/views/BWGViewAlbums_bwg.php:55
412
- #: ../admin/views/BWGViewGalleries_bwg. php:55
413
- #: ../admin/views/BWGViewThemes_bwg.php:80
414
  msgid "Add new"
415
  msgstr "Añadir nuevo"
416
 
417
- #: ../admin/views/BWGViewAlbums_bwg.php:57
418
- #: ../admin/views/BWGViewGalleries_bwg. php:57
419
- #: ../admin/views/BWGViewGalleries_bwg.php:700
420
  msgid "Changes made in this table should be saved."
421
  msgstr "Los cambios realizados en esta tabla se deben guardar."
422
 
423
- #: ../admin/views/BWGViewAlbums_bwg.php:61
424
- #: ../admin/views/BWGViewGalleries_bwg. php:61
425
- #: ../admin/views/BWGViewGalleries_bwg.php:723 ../filemanager/view.php:268
426
- #: ../filemanager/view.php:353
427
  msgid "Select All"
428
  msgstr "Seleccionar todo"
429
 
430
- #: ../admin/views/BWGViewAlbums_bwg.php:64
431
- #: ../admin/views/BWGViewGalleries_bwg. php:64
432
  msgid "Save Order"
433
- msgstr "Guardar Orden"
434
 
435
- #: ../admin/views/BWGViewAlbums_bwg.php:65
436
- #: ../admin/views/BWGViewGalleries_bwg. php:65
437
- #: ../admin/views/BWGViewGalleries_bwg.php:743
438
  msgid "Publish"
439
  msgstr "Publicar"
440
 
441
- #: ../admin/views/BWGViewAlbums_bwg.php:66
442
- #: ../admin/views/BWGViewGalleries_bwg. php:66
443
- #: ../admin/views/BWGViewGalleries_bwg.php:746
444
  msgid "Unpublish"
445
  msgstr "Despublicar"
446
 
447
- #: ../admin/views/BWGViewAlbums_bwg.php:67
448
- #: ../admin/views/BWGViewGalleries_bwg. php:67
449
- #: ../admin/views/BWGViewGalleries_bwg.php:747 ..
450
  #: /admin/views/BWGViewThemes_bwg.php:83
451
  msgid "Do you want to delete selected items?"
452
  msgstr "¿Desea eliminar los elementos seleccionados?"
@@ -460,8 +453,7 @@ msgstr "¿Desea eliminar los elementos seleccionados?"
460
  #: /admin/views/BWGViewGalleries_bwg.php:753 php:874
461
  #: ../admin/views/BWGViewGalleries_bwg.php:980
462
  #: /admin/views/BWGViewTags_bwg.php:63 ../admin/views/BWGViewTags_bwg.php:111
463
- #: /admin/views/BWGViewTags_bwg.php:163
464
- #: ../admin/views/BWGViewThemes_bwg.php:87
465
  #: /admin/views/BWGViewThemes_bwg.php:120
466
  #: ../admin/views/BWGViewThemes_bwg.php:167
467
  msgid "Delete"
@@ -474,9 +466,8 @@ msgstr "Borrar"
474
  msgid "Thumbnail"
475
  msgstr "Miniatura"
476
 
477
- #: ../admin/views/BWGViewAlbums_bwg.php:113
478
- #: ../admin/views/BWGViewBWGShortcode. php:209
479
- #: ../admin/views/BWGViewGalleries_bwg.php:122 ..
480
  #: /admin/views/BWGViewGalleries_bwg.php:863
481
  msgid "Order"
482
  msgstr "Orden"
@@ -523,8 +514,7 @@ msgstr "Esta sección le permite añadir / editar álbum."
523
  #: ../admin/views/BWGViewAlbums_bwg.php:271
524
  #: ../admin/views/BWGViewGalleries_bwg. php:535
525
  #: ../admin/views/BWGViewOptions_bwg.php:94 ..
526
- #: /admin/views/BWGViewTags_bwg.php:58
527
- #: ../admin/views/BWGViewThemes_bwg.php:264
528
  msgid "Save"
529
  msgstr "Guardar"
530
 
@@ -566,7 +556,7 @@ msgstr "Autor:"
566
  #: ../admin/views/BWGViewAlbums_bwg.php:309
567
  #: ../admin/views/BWGViewGalleries_bwg. php:624
568
  msgid "Published:"
569
- msgstr "Fecha de publicación:"
570
 
571
  #: ../admin/views/BWGViewAlbums_bwg.php:312
572
  #: ../admin/views/BWGViewGalleries_bwg. php:627
@@ -621,11 +611,10 @@ msgstr "Fecha de publicación:"
621
  #: ../admin/views/BWGViewWidgetTags.php:125
622
  #: /admin/views/BWGViewWidgetTags.php:146
623
  msgid "No"
624
- msgstr "Sin"
625
 
626
- #: ../admin/views/BWGViewAlbums_bwg.php:314
627
- #: ../admin/views/BWGViewBWGShortcode. php:230
628
- #: ../admin/views/BWGViewGalleries_bwg.php:629 ..
629
  #: /admin/views/BWGViewOptions_bwg.php:146
630
  #: ../admin/views/BWGViewOptions_bwg.php:156
631
  #: ../admin/views/BWGViewOptions_bwg.php:166
@@ -673,9 +662,8 @@ msgstr "Sin"
673
  #: ../admin/views/BWGViewThemes_bwg.php:621
674
  #: ../admin/views/BWGViewThemes_bwg.php:1362 ../admin/views/BWGViewThemes_bwg.
675
  #: php:1594 ../admin/views/BWGViewThemes_bwg.php:3312
676
- #: /admin/views/BWGViewThemes_bwg.php:3357
677
- #: ../admin/views/BWGViewUninstall_bwg. php:79
678
- #: ../admin/views/BWGViewWidgetSlideshow.php:143
679
  #: /admin/views/BWGViewWidgetTags.php:124
680
  #: ../admin/views/BWGViewWidgetTags.php:145
681
  msgid "Yes"
@@ -689,7 +677,7 @@ msgstr "Previsualización de imagen:"
689
  #: ../admin/views/BWGViewAlbums_bwg.php:333
690
  #: ../admin/views/BWGViewGalleries_bwg. php:646
691
  msgid "Add Preview Image"
692
- msgstr "Añadir Imagen previa"
693
 
694
  #: ../admin/views/BWGViewAlbums_bwg.php:344
695
  msgid "Albums And Galleries:"
@@ -697,15 +685,14 @@ msgstr "Álbumes y Galerías:"
697
 
698
  #: ../admin/views/BWGViewAlbums_bwg.php:354
699
  msgid "Add Albums/Galleries"
700
- msgstr "Añadir Albums / Galerías"
701
 
702
  #: ../admin/views/BWGViewAlbums_bwg.php:366
703
  msgid "Drag to re-order"
704
  msgstr "Arrastre para reordenar"
705
 
706
- #: ../admin/views/BWGViewBWGShortcode.php:34
707
- #: ../admin/views/BWGViewOptions_bwg. php:307
708
- #: ../admin/views/BWGViewOptions_bwg.php:460 ..
709
  #: /admin/views/BWGViewThemes_bwg.php:196
710
  #: ../admin/views/BWGViewThemes_bwg.php:229
711
  msgid "None"
@@ -725,19 +712,19 @@ msgstr "Fundido"
725
 
726
  #: ../admin/views/BWGViewBWGShortcode.php:38
727
  msgid "Slice Horizontal"
728
- msgstr "Slice Horizontal"
729
 
730
  #: ../admin/views/BWGViewBWGShortcode.php:39
731
  msgid "Slice Vertical"
732
- msgstr "Slice Vertical"
733
 
734
  #: ../admin/views/BWGViewBWGShortcode.php:40
735
  msgid "Slide Horizontal"
736
- msgstr "Deslice Horizontal"
737
 
738
  #: ../admin/views/BWGViewBWGShortcode.php:41
739
  msgid "Slide Vertical"
740
- msgstr "Deslice Vertical"
741
 
742
  #: ../admin/views/BWGViewBWGShortcode.php:42
743
  msgid "Scale Out"
@@ -745,7 +732,7 @@ msgstr "Escalar"
745
 
746
  #: ../admin/views/BWGViewBWGShortcode.php:43
747
  msgid "Scale In"
748
- msgstr "Escala En"
749
 
750
  #: ../admin/views/BWGViewBWGShortcode.php:44
751
  msgid "Block Scale"
@@ -761,24 +748,24 @@ msgstr "Admirador"
761
 
762
  #: ../admin/views/BWGViewBWGShortcode.php:47
763
  msgid "Blind Horizontal"
764
- msgstr "Ciegos Horizontal"
765
 
766
  #: ../admin/views/BWGViewBWGShortcode.php:48
767
  msgid "Blind Vertical"
768
- msgstr "Ciegos Vertical"
769
 
770
  #: ../admin/views/BWGViewBWGShortcode.php:49
771
  #: ../admin/views/BWGViewBWGShortcode. php:216
772
  #: ../admin/views/BWGViewWidget.php:139 ../framework/WDWLibrary.php:851
773
  msgid "Random"
774
- msgstr "Random"
775
 
776
  #: ../admin/views/BWGViewBWGShortcode.php:97
777
  msgid "Display"
778
- msgstr "Monitor"
779
 
780
- #: ../admin/views/BWGViewBWGShortcode.php:116
781
- #: ../admin/views/BWGViewThemes_bwg. php:274
782
  msgid "Thumbnails"
783
  msgstr "Miniaturas"
784
 
@@ -787,16 +774,16 @@ msgstr "Miniaturas"
787
  #: ../admin/views/BWGViewBWGShortcode.php:139 ..
788
  #: /admin/views/BWGViewBWGShortcode.php:147 php:151
789
  msgid "This view is disabled in free version."
790
- msgstr "Este punto de vista está desactivada en la versión gratuita."
791
 
792
  #: ../admin/views/BWGViewBWGShortcode.php:120
793
  #: ../admin/views/BWGViewOptions_bwg. php:983
794
  #: ../admin/views/BWGViewThemes_bwg.php:275
795
  msgid "Masonry"
796
- msgstr "Albañilería"
797
 
798
- #: ../admin/views/BWGViewBWGShortcode.php:124
799
- #: ../admin/views/BWGViewThemes_bwg. php:276
800
  msgid "Mosaic"
801
  msgstr "Mosaico"
802
 
@@ -804,32 +791,32 @@ msgstr "Mosaico"
804
  #: ../admin/views/BWGViewOptions_bwg. php:109
805
  #: ../admin/views/BWGViewThemes_bwg.php:277
806
  msgid "Slideshow"
807
- msgstr "Diapositivas"
808
 
809
- #: ../admin/views/BWGViewBWGShortcode.php:132
810
- #: ../admin/views/BWGViewThemes_bwg. php:278
811
  msgid "Image Browser"
812
  msgstr "Image Browser"
813
 
814
- #: ../admin/views/BWGViewBWGShortcode.php:136
815
- #: ../admin/views/BWGViewThemes_bwg. php:279
816
  msgid "Compact Album"
817
- msgstr "Compacto álbum"
818
 
819
- #: ../admin/views/BWGViewBWGShortcode.php:140
820
- #: ../admin/views/BWGViewThemes_bwg. php:280
821
  msgid "Masonry Album"
822
- msgstr "Albañilería álbum"
823
 
824
- #: ../admin/views/BWGViewBWGShortcode.php:144
825
- #: ../admin/views/BWGViewThemes_bwg. php:281
826
  msgid "Extended Album"
827
  msgstr "Álbum extendido"
828
 
829
- #: ../admin/views/BWGViewBWGShortcode.php:148
830
- #: ../admin/views/BWGViewThemes_bwg. php:282
831
  msgid "Blog Style"
832
- msgstr "Blog Estilo"
833
 
834
  #: ../admin/views/BWGViewBWGShortcode.php:152
835
  #: ../admin/views/BWGViewOptions_bwg. php:113
@@ -843,11 +830,11 @@ msgstr "Tema:"
843
 
844
  #: ../admin/views/BWGViewBWGShortcode.php:164
845
  msgid "Select Theme"
846
- msgstr "Seleccione el tema"
847
 
848
  #: ../admin/views/BWGViewBWGShortcode.php:176
849
  msgid "Gallery:"
850
- msgstr "Galería de fotos:"
851
 
852
  #: ../admin/views/BWGViewBWGShortcode.php:179
853
  #: ../admin/views/BWGViewWidget.php:116
@@ -857,7 +844,7 @@ msgstr "Seleccionar Galería"
857
 
858
  #: ../admin/views/BWGViewBWGShortcode.php:191
859
  msgid "The selected album expanded content will be displayed."
860
- msgstr "Se mostrará el álbum ampliado contenido seleccionado."
861
 
862
  #: ../admin/views/BWGViewBWGShortcode.php:191
863
  msgid "Album:"
@@ -866,14 +853,14 @@ msgstr "Álbum:"
866
  #: ../admin/views/BWGViewBWGShortcode.php:194
867
  #: ../admin/views/BWGViewWidget.php:128
868
  msgid "Select Album"
869
- msgstr "Seleccione Álbum"
870
 
871
  #: ../admin/views/BWGViewBWGShortcode.php:206
872
  msgid "Sort images by:"
873
  msgstr "Ordenar las imágenes por:"
874
 
875
- #: ../admin/views/BWGViewBWGShortcode.php:210
876
- #: ../admin/views/BWGViewThemes_bwg. php:91
877
  msgid "Title"
878
  msgstr "Título"
879
 
@@ -883,14 +870,13 @@ msgstr "Fecha"
883
 
884
  #: ../admin/views/BWGViewBWGShortcode.php:212
885
  #: ../admin/views/BWGViewGalleries_bwg. php:822
886
- #: ../admin/views/BWGViewGalleries_bwg.php:838 ../framework/WDWLibrary.
887
- #: php:849
888
  msgid "Filename"
889
  msgstr "Nombre del archivo"
890
 
891
  #: ../admin/views/BWGViewBWGShortcode.php:213 ../framework/WDWLibrary.php:850
892
  msgid "Size"
893
- msgstr "tamaño"
894
 
895
  #: ../admin/views/BWGViewBWGShortcode.php:215
896
  msgid "Resolution"
@@ -898,7 +884,7 @@ msgstr "Resolución"
898
 
899
  #: ../admin/views/BWGViewBWGShortcode.php:221
900
  msgid "Order images"
901
- msgstr "Solicitar imágenes"
902
 
903
  #: ../admin/views/BWGViewBWGShortcode.php:223
904
  msgid "Ascending"
@@ -919,7 +905,7 @@ msgstr "No se puede recortar este tipo de imagen."
919
 
920
  #: ../admin/views/BWGViewEditThumb.php:224
921
  msgid "The thumbnail successfully croped."
922
- msgstr "La miniatura croped éxito."
923
 
924
  #: ../admin/views/BWGViewEditThumb.php:227
925
  msgid "Select the area for the thumbnail."
@@ -939,7 +925,7 @@ msgstr "Negativo"
939
 
940
  #: ../admin/views/BWGViewEditThumb.php:721
941
  msgid "Removal"
942
- msgstr "Remoción"
943
 
944
  #: ../admin/views/BWGViewEditThumb.php:725
945
  msgid "Sepia"
@@ -953,11 +939,10 @@ msgstr "Pizarra"
953
  msgid "Saturate"
954
  msgstr "Saturar"
955
 
956
- #: ../admin/views/BWGViewEditThumb.php:737
957
- #: ../admin/views/BWGViewGalleries_bwg. php:370
958
- #: ../admin/views/BWGViewGalleries_bwg.php:925
959
  msgid "Do you want to reset the image?"
960
- msgstr "¿Usted desea restablecer la imagen?"
961
 
962
  #: ../admin/views/BWGViewEditThumb.php:737
963
  msgid "Reset image"
@@ -970,7 +955,7 @@ msgstr "Brillo"
970
  #: ../admin/views/BWGViewEditThumb.php:765
971
  #: ../admin/views/BWGViewEditThumb.php:790
972
  msgid "Press for result"
973
- msgstr "Presione para el resultado"
974
 
975
  #: ../admin/views/BWGViewEditThumb.php:788
976
  msgid "Contrast"
@@ -986,7 +971,7 @@ msgstr "Galerías"
986
 
987
  #: ../admin/views/BWGViewGalleries_bwg.php:116
988
  msgid "Images count"
989
- msgstr "Imágenes cuentan"
990
 
991
  #: ../admin/views/BWGViewGalleries_bwg.php:211
992
  msgid "Edit gallery "
@@ -1003,7 +988,7 @@ msgstr "Esta sección le permite añadir / Galería de edición."
1003
  #: ../admin/views/BWGViewGalleries_bwg.php:354 ..
1004
  #: /admin/views/BWGViewGalleries_bwg.php:918
1005
  msgid "Crop"
1006
- msgstr "Cultivos"
1007
 
1008
  #: ../admin/views/BWGViewGalleries_bwg.php:371 ..
1009
  #: /admin/views/BWGViewGalleries_bwg.php:733
@@ -1022,20 +1007,20 @@ msgstr "Añadir etiqueta"
1022
 
1023
  #: ../admin/views/BWGViewGalleries_bwg.php:553
1024
  msgid "Gallery content type:"
1025
- msgstr "Gallery Tipo de contenido:"
1026
 
1027
  #: ../admin/views/BWGViewGalleries_bwg.php:556
1028
  msgid "Standard"
1029
- msgstr "Patrón"
1030
 
1031
  #: ../admin/views/BWGViewGalleries_bwg.php:557
1032
  msgid "Instagram only"
1033
- msgstr "Instagram única"
1034
 
1035
  #: ../admin/views/BWGViewGalleries_bwg.php:565 ..
1036
  #: /admin/views/BWGViewGalleries_bwg.php:788
1037
  msgid "Instagram username:"
1038
- msgstr "Instagram nombre de usuario:"
1039
 
1040
  #: ../admin/views/BWGViewGalleries_bwg.php:566
1041
  #: ../admin/views/BWGViewOptions_bwg. php:670
@@ -1059,12 +1044,12 @@ msgstr "Esta opción está desactivada en la versión gratuita."
1059
 
1060
  #: ../admin/views/BWGViewGalleries_bwg.php:569
1061
  msgid "Number of Instagram recent posts to add to gallery: "
1062
- msgstr "Número de Instagram mensajes recientes para agregar a la galería:"
1063
 
1064
  #: ../admin/views/BWGViewGalleries_bwg.php:573 ..
1065
  #: /admin/views/BWGViewGalleries_bwg.php:796
1066
  msgid "Instagram embed type:"
1067
- msgstr "Instagram tipo de inserción:"
1068
 
1069
  #: ../admin/views/BWGViewGalleries_bwg.php:576 ..
1070
  #: /admin/views/BWGViewGalleries_bwg.php:799
@@ -1074,11 +1059,11 @@ msgstr "Contenido"
1074
  #: ../admin/views/BWGViewGalleries_bwg.php:578 ..
1075
  #: /admin/views/BWGViewGalleries_bwg.php:801
1076
  msgid "Whole post"
1077
- msgstr "Todo el mensaje"
1078
 
1079
  #: ../admin/views/BWGViewGalleries_bwg.php:582
1080
  msgid "Gallery autoupdate option:"
1081
- msgstr "Galería opción de actualización automática:"
1082
 
1083
  #: ../admin/views/BWGViewGalleries_bwg.php:585
1084
  msgid "No update"
@@ -1086,16 +1071,15 @@ msgstr "Ninguna actualización"
1086
 
1087
  #: ../admin/views/BWGViewGalleries_bwg.php:587
1088
  msgid "Add new media, keep old ones published."
1089
- msgstr ""
1090
- "Añadir nuevos medios de comunicación, mantener los antiguos publicados."
1091
 
1092
  #: ../admin/views/BWGViewGalleries_bwg.php:589
1093
  msgid "Add new media, unpublish old ones."
1094
- msgstr "Añadir nuevos medios de comunicación, los viejos UNPUBLISH."
1095
 
1096
  #: ../admin/views/BWGViewGalleries_bwg.php:595
1097
  msgid "Add Instagram Gallery"
1098
- msgstr "Añadir Instagram Galería"
1099
 
1100
  #: ../admin/views/BWGViewGalleries_bwg.php:707 ..
1101
  #: /admin/views/BWGViewGalleries_bwg.php:708
@@ -1104,11 +1088,11 @@ msgstr "Añadir Imágenes"
1104
 
1105
  #: ../admin/views/BWGViewGalleries_bwg.php:717
1106
  msgid "Embed Media"
1107
- msgstr "Insertar Medios"
1108
 
1109
  #: ../admin/views/BWGViewGalleries_bwg.php:718
1110
  msgid "Bulk Embed"
1111
- msgstr "Integrar a granel"
1112
 
1113
  #: ../admin/views/BWGViewGalleries_bwg.php:728
1114
  msgid "Set Watermark"
@@ -1117,7 +1101,7 @@ msgstr "Establecer Watermark"
1117
  #: ../admin/views/BWGViewGalleries_bwg.php:729 ..
1118
  #: /admin/views/BWGViewGalleries_bwg.php:816
1119
  msgid "Resize"
1120
- msgstr "Cambiar el tamaño"
1121
 
1122
  #: ../admin/views/BWGViewGalleries_bwg.php:730
1123
  msgid "Recreate Thumbnail"
@@ -1130,7 +1114,8 @@ msgstr "Añadir a la galería"
1130
 
1131
  #: ../admin/views/BWGViewGalleries_bwg.php:761
1132
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1133
- msgstr "Introduzca YouTube, Vimeo, Instagram, Flickr o Dailymotion URL aquí."
 
1134
 
1135
  #: ../admin/views/BWGViewGalleries_bwg.php:761
1136
  msgid "Help"
@@ -1138,7 +1123,7 @@ msgstr "Ayuda"
1138
 
1139
  #: ../admin/views/BWGViewGalleries_bwg.php:764
1140
  msgid "Close"
1141
- msgstr "Cerca"
1142
 
1143
  #: ../admin/views/BWGViewGalleries_bwg.php:765 ..
1144
  #: /admin/views/BWGViewGalleries_bwg.php:766
@@ -1154,19 +1139,19 @@ msgstr "Añadir"
1154
 
1155
  #: ../admin/views/BWGViewGalleries_bwg.php:767
1156
  msgid "post"
1157
- msgstr "puesto"
1158
 
1159
  #: ../admin/views/BWGViewGalleries_bwg.php:767
1160
  msgid ""
1161
  "to the end of URL if you want to embed the whole Instagram post, not only "
1162
  "its content."
1163
  msgstr ""
1164
- "al final de la URL si desea incrustar el post entero Instagram, no sólo su "
1165
- "contenido."
1166
 
1167
  #: ../admin/views/BWGViewGalleries_bwg.php:779
1168
  msgid "Bulk embed from:"
1169
- msgstr "Embed granel de:"
1170
 
1171
  #: ../admin/views/BWGViewGalleries_bwg.php:781
1172
  msgid "instagram"
@@ -1178,15 +1163,17 @@ msgstr "Instagram"
1178
 
1179
  #: ../admin/views/BWGViewGalleries_bwg.php:789
1180
  msgid "Bulk embed from Instagram is disabled in free version"
1181
- msgstr "Embed granel de Instagram está deshabilitado en la versión gratuita"
 
 
1182
 
1183
  #: ../admin/views/BWGViewGalleries_bwg.php:792
1184
  msgid "Number of Instagram recent posts to add to gallery:"
1185
- msgstr "Número de Instagram mensajes recientes para agregar a la galería:"
1186
 
1187
  #: ../admin/views/BWGViewGalleries_bwg.php:810
1188
  msgid "Resize images to: "
1189
- msgstr "Cambiar el tamaño de imágenes para:"
1190
 
1191
  #: ../admin/views/BWGViewGalleries_bwg.php:818
1192
  msgid "The maximum size of resized image."
@@ -1222,19 +1209,19 @@ msgstr "amistoso"
1222
 
1223
  #: ../admin/views/BWGViewLicensing_bwg.php:31
1224
  msgid "Responsive Design and Layout"
1225
- msgstr "Diseño Sensible y diseño"
1226
 
1227
  #: ../admin/views/BWGViewLicensing_bwg.php:32
1228
  msgid "5 Standard Gallery/Album Views"
1229
- msgstr "5 Standard Galería / Álbum Vistas"
1230
 
1231
  #: ../admin/views/BWGViewLicensing_bwg.php:33
1232
  msgid "Watermarking/ Advertising Possibility"
1233
- msgstr "Marca de agua / Publicidad Posibilidad"
1234
 
1235
  #: ../admin/views/BWGViewLicensing_bwg.php:34
1236
  msgid "Basic Tag Cloud Widget"
1237
- msgstr "Tag Básica Nube Widget"
1238
 
1239
  #: ../admin/views/BWGViewLicensing_bwg.php:35
1240
  msgid "Image Download"
@@ -1242,39 +1229,39 @@ msgstr "Descargar imagen"
1242
 
1243
  #: ../admin/views/BWGViewLicensing_bwg.php:36
1244
  msgid "Photo Gallery Slideshow Widget"
1245
- msgstr "Galería de fotos Presentación Widget"
1246
 
1247
  #: ../admin/views/BWGViewLicensing_bwg.php:37
1248
  msgid "Photo Gallery Widget"
1249
- msgstr "Galería de fotos Widget"
1250
 
1251
  #: ../admin/views/BWGViewLicensing_bwg.php:38
1252
  msgid "Slideshow/Lightbox Effects"
1253
- msgstr "Presentación / mesa de luz Efectos"
1254
 
1255
  #: ../admin/views/BWGViewLicensing_bwg.php:39
1256
  msgid "Possibility of Editing/Creating New Themes"
1257
- msgstr "Posibilidad de Edición / creación de nuevos temas"
1258
 
1259
  #: ../admin/views/BWGViewLicensing_bwg.php:40
1260
  msgid "10 Pro Gallery/Album Views"
1261
- msgstr "10 Pro Gallery / Álbum Vistas"
1262
 
1263
  #: ../admin/views/BWGViewLicensing_bwg.php:41
1264
  msgid "Image Commenting"
1265
- msgstr "Imagen Comentando"
1266
 
1267
  #: ../admin/views/BWGViewLicensing_bwg.php:42
1268
  msgid "Image Social Sharing"
1269
- msgstr "Imagen Sharing Social"
1270
 
1271
  #: ../admin/views/BWGViewLicensing_bwg.php:43
1272
  msgid "Photo Gallery Tags Cloud Widget"
1273
- msgstr "Galería de fotos Nube de Tags Widget"
1274
 
1275
  #: ../admin/views/BWGViewLicensing_bwg.php:44
1276
  msgid "Instagram Integration"
1277
- msgstr "Integración Instagram"
1278
 
1279
  #: ../admin/views/BWGViewLicensing_bwg.php:45
1280
  msgid "Integration"
@@ -1298,15 +1285,15 @@ msgstr "Después de comprar la versión comercial siga estos pasos:"
1298
 
1299
  #: ../admin/views/BWGViewLicensing_bwg.php:99
1300
  msgid "Deactivate Photo Gallery plugin."
1301
- msgstr "Desactivar Galería de fotos plugin."
1302
 
1303
  #: ../admin/views/BWGViewLicensing_bwg.php:100
1304
  msgid "Delete Photo Gallery plugin."
1305
- msgstr "Eliminar Galería de fotos plugin."
1306
 
1307
  #: ../admin/views/BWGViewLicensing_bwg.php:101
1308
  msgid "Install the downloaded commercial version of the plugin."
1309
- msgstr "Instale la versión comercial descargado del plugin."
1310
 
1311
  #: ../admin/views/BWGViewOptions_bwg.php:30
1312
  msgid ""
@@ -1318,12 +1305,12 @@ msgstr ""
1318
 
1319
  #: ../admin/views/BWGViewOptions_bwg.php:91
1320
  msgid "Edit options"
1321
- msgstr "Opciones de edición"
1322
 
1323
  #: ../admin/views/BWGViewOptions_bwg.php:95
1324
  #: ../admin/views/BWGViewThemes_bwg.php:267
1325
  msgid "Do you want to reset to default?"
1326
- msgstr "¿Quieres restablecen a los predeterminados?"
1327
 
1328
  #: ../admin/views/BWGViewOptions_bwg.php:99
1329
  msgid "Reset all options"
@@ -1331,7 +1318,7 @@ msgstr "Restablecer todas las opciones"
1331
 
1332
  #: ../admin/views/BWGViewOptions_bwg.php:104
1333
  msgid "Global options"
1334
- msgstr "Las opciones globales"
1335
 
1336
  #: ../admin/views/BWGViewOptions_bwg.php:105
1337
  msgid "Watermark"
@@ -1344,15 +1331,15 @@ msgstr "Publicidad"
1344
  #: ../admin/views/BWGViewOptions_bwg.php:107
1345
  #: ../admin/views/BWGViewThemes_bwg.php:283
1346
  msgid "Lightbox"
1347
- msgstr "Caja ligera"
1348
 
1349
  #: ../admin/views/BWGViewOptions_bwg.php:108
1350
  msgid "Album options"
1351
- msgstr "Opciones Album"
1352
 
1353
  #: ../admin/views/BWGViewOptions_bwg.php:110
1354
  msgid "Thumbnail options"
1355
- msgstr "Opciones miniatura"
1356
 
1357
  #: ../admin/views/BWGViewOptions_bwg.php:111
1358
  msgid "Image options"
@@ -1360,45 +1347,45 @@ msgstr "Opciones de imagen"
1360
 
1361
  #: ../admin/views/BWGViewOptions_bwg.php:112
1362
  msgid "Embed options"
1363
- msgstr "Opciones Incrustar"
1364
 
1365
  #: ../admin/views/BWGViewOptions_bwg.php:123
1366
  msgid "Images directory:"
1367
- msgstr "Imágenes directorio:"
1368
 
1369
  #: ../admin/views/BWGViewOptions_bwg.php:128
1370
  msgid ""
1371
  "Input an existing directory inside the Wordpress directory to store uploaded "
1372
  "images.<br />Old directory content will be moved to the new one."
1373
  msgstr ""
1374
- "Entrada de un directorio existente dentro del directorio los Wordpress para "
1375
- "almacenar las imágenes subidas. <br /> Contenido del directorio antiguo se "
1376
- "trasladará a la nueva."
1377
 
1378
- #: ../admin/views/BWGViewOptions_bwg.php:133
1379
- #: ../admin/views/BWGViewOptions_bwg. php:1550
1380
  msgid "Image dimensions:"
1381
  msgstr "Dimensiones de la imagen:"
1382
 
1383
  #: ../admin/views/BWGViewOptions_bwg.php:138
1384
  msgid "The maximum size of the uploaded image (0 for original size)."
1385
- msgstr "El tamaño máximo de la imagen cargada (0 para el tamaño original)."
1386
 
1387
  #: ../admin/views/BWGViewOptions_bwg.php:143
1388
  msgid "Right click protection:"
1389
- msgstr "Derecho de protección clic:"
1390
 
1391
  #: ../admin/views/BWGViewOptions_bwg.php:148
1392
  msgid "Disable image right click possibility."
1393
- msgstr "Imagen Desactivar clic derecho posibilidad."
1394
 
1395
  #: ../admin/views/BWGViewOptions_bwg.php:153
1396
  msgid "Gallery role:"
1397
- msgstr "Papel galería:"
1398
 
1399
  #: ../admin/views/BWGViewOptions_bwg.php:178
1400
  msgid "Only author can change an image."
1401
- msgstr "Sólo autor puede cambiar una imagen."
1402
 
1403
  #: ../admin/views/BWGViewOptions_bwg.php:193
1404
  msgid "Search box width:"
@@ -1406,7 +1393,7 @@ msgstr "Ancho de la caja de búsqueda:"
1406
 
1407
  #: ../admin/views/BWGViewOptions_bwg.php:202
1408
  msgid "Show \"Order by\" dropdown list:"
1409
- msgstr "Show \"Orden por la \" lista desplegable:"
1410
 
1411
  #: ../admin/views/BWGViewOptions_bwg.php:212
1412
  msgid "Show tag box:"
@@ -1414,19 +1401,19 @@ msgstr "Mostrar cuadro de la etiqueta:"
1414
 
1415
  #: ../admin/views/BWGViewOptions_bwg.php:222
1416
  msgid "Preload images:"
1417
- msgstr "Imágenes de precarga:"
1418
 
1419
  #: ../admin/views/BWGViewOptions_bwg.php:232
1420
  msgid "Count of images:"
1421
- msgstr "Conde de imágenes:"
1422
 
1423
  #: ../admin/views/BWGViewOptions_bwg.php:236
1424
  msgid "Count of images to preload (0 for all)."
1425
- msgstr "Conde de imágenes para precarga (0 para todos)."
1426
 
1427
  #: ../admin/views/BWGViewOptions_bwg.php:241
1428
  msgid "Import from Media Library:"
1429
- msgstr "Importe de medios de la biblioteca:"
1430
 
1431
  #: ../admin/views/BWGViewOptions_bwg.php:246
1432
  msgid "Enable import from Media Library in file manager."
@@ -1439,65 +1426,63 @@ msgstr "Habilitar atributo href:"
1439
 
1440
  #: ../admin/views/BWGViewOptions_bwg.php:256
1441
  msgid "Disable this option only if it conflicts with your theme."
1442
- msgstr "Desactive esta opción sólo si está en conflicto con su tema."
1443
 
1444
  #: ../admin/views/BWGViewOptions_bwg.php:261
1445
  msgid "Meta auto-fill:"
1446
- msgstr "Meta de auto-llenado:"
1447
 
1448
  #: ../admin/views/BWGViewOptions_bwg.php:266
1449
  msgid ""
1450
  "Enabling this option the meta description of the image will be automatically "
1451
  "filled in image description field."
1452
  msgstr ""
1453
- "Al activar esta opción, la meta descripción de la imagen se rellena "
1454
- "automáticamente descripción de la imagen de campo."
1455
 
1456
  #: ../admin/views/BWGViewOptions_bwg.php:272
1457
  msgid "Show/hide custom post types:"
1458
- msgstr "Mostrar / ocultar los tipos de correos personalizados:"
1459
 
1460
  #: ../admin/views/BWGViewOptions_bwg.php:282
1461
  msgid "Show/hide comments for custom post types:"
1462
- msgstr "Mostrar / ocultar comentarios para tipos de correos personalizados:"
1463
 
1464
  #: ../admin/views/BWGViewOptions_bwg.php:303
1465
  msgid "Watermark type: "
1466
- msgstr "Tipo de Marca de agua:"
1467
 
1468
- #: ../admin/views/BWGViewOptions_bwg.php:309
1469
- #: ../admin/views/BWGViewOptions_bwg. php:462
1470
- #: ../admin/views/BWGViewThemes_bwg.php:3366 ..
1471
  #: /admin/views/BWGViewWidgetTags.php:118
1472
  msgid "Text"
1473
  msgstr "Texto"
1474
 
1475
- #: ../admin/views/BWGViewOptions_bwg.php:311
1476
- #: ../admin/views/BWGViewOptions_bwg. php:464
1477
- #: ../admin/views/BWGViewWidgetTags.php:119
1478
  msgid "Image"
1479
  msgstr "Imagen"
1480
 
1481
  #: ../admin/views/BWGViewOptions_bwg.php:317
1482
  msgid "Watermark url: "
1483
- msgstr "Url Marca de agua:"
1484
 
1485
- #: ../admin/views/BWGViewOptions_bwg.php:330
1486
- #: ../admin/views/BWGViewOptions_bwg. php:485
1487
  msgid "Add Image"
1488
  msgstr "Añadir imagen"
1489
 
1490
  #: ../admin/views/BWGViewOptions_bwg.php:332
1491
  msgid "Only .png format is supported."
1492
- msgstr "Sólo formato .png es compatible."
1493
 
1494
  #: ../admin/views/BWGViewOptions_bwg.php:337
1495
  msgid "Watermark text: "
1496
- msgstr "Texto de marca de agua:"
1497
 
1498
  #: ../admin/views/BWGViewOptions_bwg.php:346
1499
  msgid "Watermark size: "
1500
- msgstr "Tamaño Marca de agua:"
1501
 
1502
  #: ../admin/views/BWGViewOptions_bwg.php:350
1503
  msgid "Enter size of watermark in percents according to image."
@@ -1511,19 +1496,19 @@ msgstr "Tamaño de la fuente de marca de agua:"
1511
 
1512
  #: ../admin/views/BWGViewOptions_bwg.php:364
1513
  msgid "Watermark font style: "
1514
- msgstr "Estilo de fuente de marca de agua:"
1515
 
1516
  #: ../admin/views/BWGViewOptions_bwg.php:393
1517
  msgid "Watermark color:"
1518
- msgstr "El color de marca de agua:"
1519
 
1520
  #: ../admin/views/BWGViewOptions_bwg.php:402
1521
  msgid "Watermark opacity:"
1522
- msgstr "Opacidad Marca de agua:"
1523
 
1524
  #: ../admin/views/BWGViewOptions_bwg.php:406
1525
  msgid "Opacity value must be in the range of 0 to 100."
1526
- msgstr "Valor de Opacidad debe estar en el rango de 0 a 100."
1527
 
1528
  #: ../admin/views/BWGViewOptions_bwg.php:411
1529
  msgid "Watermark position:"
@@ -1531,27 +1516,27 @@ msgstr "Posición de marca de agua:"
1531
 
1532
  #: ../admin/views/BWGViewOptions_bwg.php:456
1533
  msgid "Advertisement type:"
1534
- msgstr "Tipo de Anuncio:"
1535
 
1536
  #: ../admin/views/BWGViewOptions_bwg.php:470
1537
  msgid "Advertisement url:"
1538
- msgstr "Publicidad url:"
1539
 
1540
  #: ../admin/views/BWGViewOptions_bwg.php:487
1541
  msgid ""
1542
  "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
1543
  "png,.gif formats are supported)"
1544
  msgstr ""
1545
- "Introduzca absoluta url archivo de imagen o añadir el archivo de la página "
1546
- "Opciones. (.jpg, .jpeg, .png, .gif se admiten los formatos)"
1547
 
1548
  #: ../admin/views/BWGViewOptions_bwg.php:492
1549
  msgid "Advertisement text:"
1550
- msgstr "Publicidad de texto:"
1551
 
1552
  #: ../admin/views/BWGViewOptions_bwg.php:501
1553
  msgid "Advertisement link:"
1554
- msgstr "Enlace Publicidad:"
1555
 
1556
  #: ../admin/views/BWGViewOptions_bwg.php:505
1557
  msgid "Enter a URL to open when the advertisement banner is clicked."
@@ -1561,11 +1546,11 @@ msgstr ""
1561
 
1562
  #: ../admin/views/BWGViewOptions_bwg.php:510
1563
  msgid "Advertisement dimensions:"
1564
- msgstr "Dimensiones Publicidad:"
1565
 
1566
  #: ../admin/views/BWGViewOptions_bwg.php:515
1567
  msgid "Maximum values for watermark image width and height."
1568
- msgstr "Los valores máximos de anchura y altura de la imagen marca de agua."
1569
 
1570
  #: ../admin/views/BWGViewOptions_bwg.php:520
1571
  msgid "Advertisement font size:"
@@ -1573,15 +1558,15 @@ msgstr "Tamaño de la fuente Publicidad:"
1573
 
1574
  #: ../admin/views/BWGViewOptions_bwg.php:529
1575
  msgid "Advertisement font style:"
1576
- msgstr "Estilo de fuente Publicidad:"
1577
 
1578
  #: ../admin/views/BWGViewOptions_bwg.php:546
1579
  msgid "Advertisement color:"
1580
- msgstr "Color de Anuncio:"
1581
 
1582
  #: ../admin/views/BWGViewOptions_bwg.php:555
1583
  msgid "Advertisement opacity:"
1584
- msgstr "Publicidad opacidad:"
1585
 
1586
  #: ../admin/views/BWGViewOptions_bwg.php:559
1587
  #: ../admin/views/BWGViewThemes_bwg.php:403
@@ -1604,23 +1589,23 @@ msgstr "El valor debe estar entre 0 y 100."
1604
 
1605
  #: ../admin/views/BWGViewOptions_bwg.php:564
1606
  msgid "Advertisement position:"
1607
- msgstr "Publicidad posición:"
1608
 
1609
  #: ../admin/views/BWGViewOptions_bwg.php:609
1610
  msgid "Full width lightbox:"
1611
- msgstr "Ancho total de luz:"
1612
 
1613
  #: ../admin/views/BWGViewOptions_bwg.php:614
1614
  msgid "Enable full width feature for the lightbox."
1615
- msgstr "Habilitar función de ancho para la caja de luz."
1616
 
1617
  #: ../admin/views/BWGViewOptions_bwg.php:619
1618
  msgid "Lightbox dimensions:"
1619
- msgstr "Dimensiones mesa de luz:"
1620
 
1621
  #: ../admin/views/BWGViewOptions_bwg.php:629
1622
  msgid "Lightbox effect:"
1623
- msgstr "La mesa de luz efecto:"
1624
 
1625
  #: ../admin/views/BWGViewOptions_bwg.php:636
1626
  msgid "This effect is disabled in free version."
@@ -1628,44 +1613,43 @@ msgstr "Este efecto está desactivado en la versión gratuita."
1628
 
1629
  #: ../admin/views/BWGViewOptions_bwg.php:646
1630
  msgid "Lightbox autoplay:"
1631
- msgstr "La mesa de luz de reproducción automática:"
1632
 
1633
- #: ../admin/views/BWGViewOptions_bwg.php:656
1634
- #: ../admin/views/BWGViewOptions_bwg. php:1067
1635
- #: ../admin/views/BWGViewOptions_bwg.php:1523 ..
1636
  #: /admin/views/BWGViewWidgetSlideshow.php:138
1637
  msgid "Time interval:"
1638
  msgstr "Intervalo de tiempo:"
1639
 
1640
  #: ../admin/views/BWGViewOptions_bwg.php:665
1641
  msgid "Enable filmstrip:"
1642
- msgstr "Habilitar tira de película:"
1643
 
1644
  #: ../admin/views/BWGViewOptions_bwg.php:675
1645
  msgid "Filmstrip size:"
1646
- msgstr "Tamaño Tira de imágenes:"
1647
 
1648
  #: ../admin/views/BWGViewOptions_bwg.php:684
1649
  msgid "Display hit counter:"
1650
- msgstr "Mostrar contador de acierto:"
1651
 
1652
- #: ../admin/views/BWGViewOptions_bwg.php:694
1653
- #: ../admin/views/BWGViewOptions_bwg. php:1106
1654
  msgid "Show Next / Previous buttons:"
1655
- msgstr "Mostrar botones Siguiente / Anterior:"
1656
 
1657
- #: ../admin/views/BWGViewOptions_bwg.php:697
1658
- #: ../admin/views/BWGViewOptions_bwg. php:1109
1659
  msgid "On hover"
1660
- msgstr "En vuelo estacionario"
1661
 
1662
- #: ../admin/views/BWGViewOptions_bwg.php:698
1663
- #: ../admin/views/BWGViewOptions_bwg. php:1110
1664
  msgid "Always"
1665
  msgstr "Siempre"
1666
 
1667
- #: ../admin/views/BWGViewOptions_bwg.php:704
1668
- #: ../admin/views/BWGViewOptions_bwg. php:1116
1669
  msgid "Enable control buttons:"
1670
  msgstr "Habilitar botones de control:"
1671
 
@@ -1683,13 +1667,11 @@ msgstr "Mostrar información de forma predeterminada:"
1683
 
1684
  #: ../admin/views/BWGViewOptions_bwg.php:768
1685
  msgid "Full width info:"
1686
- msgstr "Completa información anchura:"
1687
 
1688
  #: ../admin/views/BWGViewOptions_bwg.php:773
1689
  msgid "Display image information based on the lightbox dimensions."
1690
- msgstr ""
1691
- "Información de la imagen de visualización basado en las dimensiones "
1692
- "selección."
1693
 
1694
  #: ../admin/views/BWGViewOptions_bwg.php:784
1695
  msgid "Enable rating:"
@@ -1701,11 +1683,11 @@ msgstr "Habilitar comentarios:"
1701
 
1702
  #: ../admin/views/BWGViewOptions_bwg.php:808
1703
  msgid "Enable comments moderation:"
1704
- msgstr "Habilitar comentarios moderación:"
1705
 
1706
  #: ../admin/views/BWGViewOptions_bwg.php:818
1707
  msgid "Enable Email for comments:"
1708
- msgstr "Habilitar correo para comentarios:"
1709
 
1710
  #: ../admin/views/BWGViewOptions_bwg.php:828
1711
  msgid "Enable Captcha for comments:"
@@ -1713,7 +1695,7 @@ msgstr "Habilitar Captcha para comentarios:"
1713
 
1714
  #: ../admin/views/BWGViewOptions_bwg.php:838
1715
  msgid "Enable original image display button:"
1716
- msgstr "Habilitar botón original de visualización de la imagen:"
1717
 
1718
  #: ../admin/views/BWGViewOptions_bwg.php:848
1719
  msgid "Enable download button:"
@@ -1741,7 +1723,7 @@ msgstr "Habilitar botón Tumblr:"
1741
 
1742
  #: ../admin/views/BWGViewOptions_bwg.php:908
1743
  msgid "Show images count:"
1744
- msgstr "Mostrar imágenes cuentan:"
1745
 
1746
  #: ../admin/views/BWGViewOptions_bwg.php:918
1747
  msgid "Enable loop:"
@@ -1753,7 +1735,7 @@ msgstr "Habilitar"
1753
 
1754
  #: ../admin/views/BWGViewOptions_bwg.php:951
1755
  msgid "Number of album columns:"
1756
- msgstr "Número de columnas de álbum:"
1757
 
1758
  #: ../admin/views/BWGViewOptions_bwg.php:960
1759
  msgid "Albums per page:"
@@ -1765,51 +1747,51 @@ msgstr "Habilitar paginación:"
1765
 
1766
  #: ../admin/views/BWGViewOptions_bwg.php:979
1767
  msgid "Album view type:"
1768
- msgstr "Album tipo de vista:"
1769
 
1770
  #: ../admin/views/BWGViewOptions_bwg.php:989
1771
  msgid "Show title:"
1772
  msgstr "Mostrar título:"
1773
 
1774
- #: ../admin/views/BWGViewOptions_bwg.php:992
1775
- #: ../admin/views/BWGViewOptions_bwg. php:1344
1776
  msgid "Show on hover"
1777
- msgstr "Mostrar en vuelo estacionario"
1778
 
1779
- #: ../admin/views/BWGViewOptions_bwg.php:993
1780
- #: ../admin/views/BWGViewOptions_bwg. php:1345
1781
  msgid "Always show"
1782
- msgstr "Siempre muestra"
1783
 
1784
- #: ../admin/views/BWGViewOptions_bwg.php:994
1785
- #: ../admin/views/BWGViewOptions_bwg. php:1346
1786
  msgid "Don't show"
1787
  msgstr "No volver a mostrar"
1788
 
1789
  #: ../admin/views/BWGViewOptions_bwg.php:1000
1790
  msgid "Show album/gallery name:"
1791
- msgstr "Mostrar el nombre del álbum / galería:"
1792
 
1793
  #: ../admin/views/BWGViewOptions_bwg.php:1010
1794
  msgid "Enable extended album description:"
1795
- msgstr "Habilitar Descripción álbum extendida:"
1796
 
1797
  #: ../admin/views/BWGViewOptions_bwg.php:1020
1798
  msgid "Album thumbnail dimensions:"
1799
- msgstr "Álbum dimensiones miniatura:"
1800
 
1801
  #: ../admin/views/BWGViewOptions_bwg.php:1030
1802
  msgid "Extended album height:"
1803
- msgstr "Extended altura álbum:"
1804
 
1805
  #: ../admin/views/BWGViewOptions_bwg.php:1050 ..
1806
  #: /admin/views/BWGViewWidgetSlideshow.php:126
1807
  msgid "Slideshow effect:"
1808
- msgstr "Presentación efecto:"
1809
 
1810
  #: ../admin/views/BWGViewOptions_bwg.php:1076
1811
  msgid "Slideshow dimensions:"
1812
- msgstr "Dimensiones de diapositivas:"
1813
 
1814
  #: ../admin/views/BWGViewOptions_bwg.php:1086
1815
  #: ../admin/views/BWGViewOptions_bwg. php:1582
@@ -1819,60 +1801,58 @@ msgstr "Activar reproducción automática:"
1819
  #: ../admin/views/BWGViewOptions_bwg.php:1096 ..
1820
  #: /admin/views/BWGViewWidgetSlideshow.php:142
1821
  msgid "Enable shuffle:"
1822
- msgstr "Activar Shuffle:"
1823
 
1824
  #: ../admin/views/BWGViewOptions_bwg.php:1125
1825
  msgid "Enable slideshow filmstrip:"
1826
- msgstr "Habilitar tira de película de diapositivas:"
1827
 
1828
  #: ../admin/views/BWGViewOptions_bwg.php:1133
1829
  msgid "Slideshow filmstrip size:"
1830
- msgstr "Slideshow tamaño tira de película:"
1831
 
1832
  #: ../admin/views/BWGViewOptions_bwg.php:1146
1833
  #: ../admin/views/BWGViewOptions_bwg. php:1573
1834
  msgid "Enable image title:"
1835
  msgstr "Habilitar título de la imagen:"
1836
 
1837
- #: ../admin/views/BWGViewOptions_bwg.php:1154
1838
- #: ../admin/views/BWGViewThemes_bwg. php:440
1839
- #: ../admin/views/BWGViewThemes_bwg.php:1420
1840
  msgid "Title position:"
1841
- msgstr "Posición Título:"
1842
 
1843
  #: ../admin/views/BWGViewOptions_bwg.php:1175
1844
  msgid "Image title position on slideshow"
1845
- msgstr "Imagen posición del título en slideshow"
1846
 
1847
  #: ../admin/views/BWGViewOptions_bwg.php:1180
1848
  msgid "Full width title:"
1849
- msgstr "Título completo ancho:"
1850
 
1851
  #: ../admin/views/BWGViewOptions_bwg.php:1185
1852
  msgid "Display image title based on the slideshow dimensions."
1853
  msgstr ""
1854
- "Título de la imagen de visualización basado en las dimensiones de "
1855
- "diapositivas."
1856
 
1857
  #: ../admin/views/BWGViewOptions_bwg.php:1189
1858
  msgid "Enable image description: "
1859
- msgstr "Habilitar descripción de la imagen:"
1860
 
1861
  #: ../admin/views/BWGViewOptions_bwg.php:1197
1862
  msgid "Description position:"
1863
- msgstr "Descripción posición:"
1864
 
1865
  #: ../admin/views/BWGViewOptions_bwg.php:1218
1866
  msgid "Image description position on slideshow"
1867
- msgstr "Descripción de la imagen posición sobre slideshow"
1868
 
1869
  #: ../admin/views/BWGViewOptions_bwg.php:1223
1870
  msgid "Enable slideshow Music:"
1871
- msgstr "Habilitar Música diapositivas:"
1872
 
1873
  #: ../admin/views/BWGViewOptions_bwg.php:1233
1874
  msgid "Music url:"
1875
- msgstr "Url Música:"
1876
 
1877
  #: ../admin/views/BWGViewOptions_bwg.php:1246
1878
  msgid "Add Music"
@@ -1884,11 +1864,11 @@ msgstr "Sólo"
1884
 
1885
  #: ../admin/views/BWGViewOptions_bwg.php:1248
1886
  msgid "formats are supported."
1887
- msgstr "formatos son compatibles."
1888
 
1889
  #: ../admin/views/BWGViewOptions_bwg.php:1264
1890
  msgid "Masonry:"
1891
- msgstr "Albañilería:"
1892
 
1893
  #: ../admin/views/BWGViewOptions_bwg.php:1267
1894
  #: ../admin/views/BWGViewOptions_bwg. php:1278
@@ -1906,19 +1886,19 @@ msgstr "Mosaico:"
1906
 
1907
  #: ../admin/views/BWGViewOptions_bwg.php:1284
1908
  msgid "Resizable mosaic:"
1909
- msgstr "Mosaico de tamaño variable:"
1910
 
1911
  #: ../admin/views/BWGViewOptions_bwg.php:1294
1912
  msgid "Total width of mosaic:"
1913
- msgstr "Ancho total de mosaico:"
1914
 
1915
  #: ../admin/views/BWGViewOptions_bwg.php:1298
1916
  msgid "Width of mosaic as a percentage of container's width."
1917
- msgstr "Ancho de mosaico como un porcentaje del ancho de contenedor."
1918
 
1919
  #: ../admin/views/BWGViewOptions_bwg.php:1303
1920
  msgid "Number of image columns:"
1921
- msgstr "Número de columnas de imagen:"
1922
 
1923
  #: ../admin/views/BWGViewOptions_bwg.php:1312
1924
  msgid "Images per page:"
@@ -1926,24 +1906,25 @@ msgstr "Imágenes por página:"
1926
 
1927
  #: ../admin/views/BWGViewOptions_bwg.php:1321
1928
  msgid "Generated thumbnail dimensions:"
1929
- msgstr "Dimensiones en miniatura de creación:"
1930
 
1931
  #: ../admin/views/BWGViewOptions_bwg.php:1326
1932
  msgid ""
1933
  "The maximum size of the generated thumbnail. Its dimensions should be larger "
1934
  "than the ones of the frontend thumbnail."
1935
  msgstr ""
1936
- "El tamaño máximo de la imagen generada. Sus dimensiones deben ser más "
1937
  "grandes que las de la miniatura frontend."
1938
 
1939
  #: ../admin/views/BWGViewOptions_bwg.php:1331
1940
  msgid "Frontend thumbnail dimensions:"
1941
- msgstr "Dimensiones miniatura Frontend:"
1942
 
1943
  #: ../admin/views/BWGViewOptions_bwg.php:1336
1944
  msgid ""
1945
  "The default size of the thumbnail which will be displayed in the website"
1946
- msgstr "El tamaño predeterminado de la imagen que se mostrará en la página web"
 
1947
 
1948
  #: ../admin/views/BWGViewOptions_bwg.php:1341
1949
  msgid "Show image title:"
@@ -1955,19 +1936,19 @@ msgstr "Mostrar nombre de la galería:"
1955
 
1956
  #: ../admin/views/BWGViewOptions_bwg.php:1360
1957
  msgid "Show description in Vertical Masonry view:"
1958
- msgstr "Mostrar descripción en vista Albañilería Vertical:"
1959
 
1960
  #: ../admin/views/BWGViewOptions_bwg.php:1369
1961
  msgid "Enable image pagination:"
1962
- msgstr "Habilitar paginación imagen:"
1963
 
1964
  #: ../admin/views/BWGViewOptions_bwg.php:1377
1965
  msgid "Thumbnail click action:"
1966
- msgstr "Miniatura clic acción:"
1967
 
1968
  #: ../admin/views/BWGViewOptions_bwg.php:1379
1969
  msgid "Open lightbox"
1970
- msgstr "Abrir caja de luz"
1971
 
1972
  #: ../admin/views/BWGViewOptions_bwg.php:1380
1973
  msgid "Redirect to url"
@@ -1975,7 +1956,7 @@ msgstr "Redireccionar a URL"
1975
 
1976
  #: ../admin/views/BWGViewOptions_bwg.php:1381
1977
  msgid "Do Nothing"
1978
- msgstr "Hacer nada"
1979
 
1980
  #: ../admin/views/BWGViewOptions_bwg.php:1386
1981
  msgid "Open in a new window:"
@@ -1983,11 +1964,11 @@ msgstr "Abrir en una nueva ventana:"
1983
 
1984
  #: ../admin/views/BWGViewOptions_bwg.php:1394
1985
  msgid "Play icon over the video thumbnail:"
1986
- msgstr "Juega icono sobre la miniatura del vídeo:"
1987
 
1988
  #: ../admin/views/BWGViewOptions_bwg.php:1411
1989
  msgid "Enable image title for Image Browser view:"
1990
- msgstr "Habilitar título de la imagen para una vista Image Browser:"
1991
 
1992
  #: ../admin/views/BWGViewOptions_bwg.php:1421
1993
  msgid "Enable image description for Image Browser view:"
@@ -1995,35 +1976,35 @@ msgstr "Habilitar descripción de la imagen para una vista Image Browser:"
1995
 
1996
  #: ../admin/views/BWGViewOptions_bwg.php:1431
1997
  msgid "Image width for Image Browser view:"
1998
- msgstr "Ancho de la imagen para una vista Image Browser:"
1999
 
2000
  #: ../admin/views/BWGViewOptions_bwg.php:1440
2001
  msgid "The Blog Style view is disabled in free version."
2002
- msgstr "La vista Blog Style está deshabilitado en la versión gratuita."
2003
 
2004
  #: ../admin/views/BWGViewOptions_bwg.php:1445
2005
  msgid "Enable image title for Blog Style view:"
2006
- msgstr "Habilitar título de la imagen para una vista Blog Estilo:"
2007
 
2008
  #: ../admin/views/BWGViewOptions_bwg.php:1455
2009
  msgid "Image width for Blog Style view:"
2010
- msgstr "Ancho de la imagen de vista Blog Estilo:"
2011
 
2012
  #: ../admin/views/BWGViewOptions_bwg.php:1464
2013
  msgid "Images per page in Blog Style view:"
2014
- msgstr "Imágenes por página en vista Blog Estilo:"
2015
 
2016
  #: ../admin/views/BWGViewOptions_bwg.php:1473
2017
  msgid "Enable pagination for Blog Style view:"
2018
- msgstr "Habilitar paginación para vista Blog Estilo:"
2019
 
2020
  #: ../admin/views/BWGViewOptions_bwg.php:1490
2021
  msgid "Gallery autoupdate interval:"
2022
- msgstr "Galería intervalo de actualización automática:"
2023
 
2024
  #: ../admin/views/BWGViewOptions_bwg.php:1494
2025
  msgid "hour"
2026
- msgstr "horas"
2027
 
2028
  #: ../admin/views/BWGViewOptions_bwg.php:1496
2029
  msgid "min"
@@ -2031,19 +2012,21 @@ msgstr "min"
2031
 
2032
  #: ../admin/views/BWGViewOptions_bwg.php:1497
2033
  msgid "Autoupdatable galleries are disabled in free version."
2034
- msgstr "Galerías Autoupdatable están deshabilitadas en la versión gratuita."
 
 
2035
 
2036
  #: ../admin/views/BWGViewOptions_bwg.php:1507
2037
  msgid "galleries are disabled in free version."
2038
- msgstr "galerías están deshabilitadas en la versión gratuita."
2039
 
2040
  #: ../admin/views/BWGViewOptions_bwg.php:1532
2041
  msgid "Max. number of images:"
2042
- msgstr "Max. número de imágenes:"
2043
 
2044
  #: ../admin/views/BWGViewOptions_bwg.php:1541
2045
  msgid "Carousel image ratio:"
2046
- msgstr "Relación imagen Carrusel:"
2047
 
2048
  #: ../admin/views/BWGViewOptions_bwg.php:1560
2049
  msgid "Fixed width:"
@@ -2051,19 +2034,19 @@ msgstr "Ancho fijo:"
2051
 
2052
  #: ../admin/views/BWGViewOptions_bwg.php:1592
2053
  msgid "Container fit:"
2054
- msgstr "En forma de contenedor:"
2055
 
2056
  #: ../admin/views/BWGViewOptions_bwg.php:1602
2057
  msgid "Next/Previous buttons:"
2058
- msgstr "Siguiente / botones Anterior:"
2059
 
2060
  #: ../admin/views/BWGViewOptions_bwg.php:1612
2061
  msgid "Play/Pause button:"
2062
- msgstr "Botón del juego / pausa:"
2063
 
2064
  #: ../admin/views/BWGViewOptions_bwg.php:1625
2065
  msgid "Carousel view is disabled in free version."
2066
- msgstr "Vista del carrusel está deshabilitado en la versión gratuita."
2067
 
2068
  #: ../admin/views/BWGViewTags_bwg.php:43
2069
  msgid "This section allows you to create, edit and delete tags."
@@ -2071,11 +2054,11 @@ msgstr "Esta sección le permite crear, editar y eliminar las etiquetas."
2071
 
2072
  #: ../admin/views/BWGViewTags_bwg.php:107
2073
  msgid "Count"
2074
- msgstr "Contar"
2075
 
2076
  #: ../admin/views/BWGViewTags_bwg.php:126
2077
  msgid "Add Tag"
2078
- msgstr "Añadir etiqueta"
2079
 
2080
  #: ../admin/views/BWGViewThemes_bwg.php:39
2081
  msgid "This section allows you to create, edit and delete themes."
@@ -2099,7 +2082,7 @@ msgstr "Punteada"
2099
 
2100
  #: ../admin/views/BWGViewThemes_bwg.php:199
2101
  msgid "Dashed"
2102
- msgstr "La"
2103
 
2104
  #: ../admin/views/BWGViewThemes_bwg.php:200
2105
  #: ../admin/views/BWGViewThemes_bwg.php:237
@@ -2116,7 +2099,7 @@ msgstr "Cresta"
2116
 
2117
  #: ../admin/views/BWGViewThemes_bwg.php:203
2118
  msgid "Inset"
2119
- msgstr "Inserción"
2120
 
2121
  #: ../admin/views/BWGViewThemes_bwg.php:204
2122
  msgid "Outset"
@@ -2138,35 +2121,35 @@ msgstr "Centro"
2138
  #: ../admin/views/BWGViewThemes_bwg.php:2564 ../admin/views/BWGViewThemes_bwg.
2139
  #: php:3022
2140
  msgid "Right"
2141
- msgstr "Correcto"
2142
 
2143
  #: ../admin/views/BWGViewThemes_bwg.php:224
2144
  msgid "Lighter"
2145
- msgstr "Encendedor"
2146
 
2147
  #: ../admin/views/BWGViewThemes_bwg.php:225
2148
  msgid "Normal"
2149
- msgstr "Normalidad"
2150
 
2151
  #: ../admin/views/BWGViewThemes_bwg.php:226
2152
  msgid "Bold"
2153
- msgstr "Audaz"
2154
 
2155
  #: ../admin/views/BWGViewThemes_bwg.php:230
2156
  msgid "Rotate"
2157
- msgstr "Girar"
2158
 
2159
  #: ../admin/views/BWGViewThemes_bwg.php:231
2160
  msgid "Scale"
2161
- msgstr "Nivel"
2162
 
2163
  #: ../admin/views/BWGViewThemes_bwg.php:232
2164
  msgid "Skew"
2165
- msgstr "Skew"
2166
 
2167
  #: ../admin/views/BWGViewThemes_bwg.php:235
2168
  msgid "Chevron"
2169
- msgstr "Cheurón"
2170
 
2171
  #: ../admin/views/BWGViewThemes_bwg.php:236
2172
  msgid "Angle"
@@ -2178,7 +2161,7 @@ msgstr "Estrella"
2178
 
2179
  #: ../admin/views/BWGViewThemes_bwg.php:241
2180
  msgid "Bell"
2181
- msgstr "Campanilla"
2182
 
2183
  #: ../admin/views/BWGViewThemes_bwg.php:242
2184
  msgid "Circle"
@@ -2206,7 +2189,7 @@ msgstr "Esta ficha está deshabilitado en la versión gratuita"
2206
 
2207
  #: ../admin/views/BWGViewThemes_bwg.php:284
2208
  msgid "Page Navigation"
2209
- msgstr "Page Navigation"
2210
 
2211
  #: ../admin/views/BWGViewThemes_bwg.php:289
2212
  msgid "Parameters"
@@ -2226,7 +2209,7 @@ msgstr "Margen:"
2226
  #: php:1284 ../admin/views/BWGViewThemes_bwg.php:1721 ..
2227
  #: /admin/views/BWGViewThemes_bwg.php:2079 3289
2228
  msgid "Padding:"
2229
- msgstr "Relleno:"
2230
 
2231
  #: ../admin/views/BWGViewThemes_bwg.php:316
2232
  #: ../admin/views/BWGViewThemes_bwg.php:518
@@ -2242,7 +2225,7 @@ msgstr "Anchura del borde:"
2242
  #: php:1304 ../admin/views/BWGViewThemes_bwg.php:2131 ..
2243
  #: /admin/views/BWGViewThemes_bwg.php:3249
2244
  msgid "Border style:"
2245
- msgstr "Estilo de borde:"
2246
 
2247
  #: ../admin/views/BWGViewThemes_bwg.php:336
2248
  #: ../admin/views/BWGViewThemes_bwg.php:538
@@ -2258,7 +2241,7 @@ msgstr "Color de la frontera:"
2258
  #: php:1324 ../admin/views/BWGViewThemes_bwg.php:1740 ..
2259
  #: /admin/views/BWGViewThemes_bwg.php:2151 3269
2260
  msgid "Border radius:"
2261
- msgstr "Radio Frontera:"
2262
 
2263
  #: ../admin/views/BWGViewThemes_bwg.php:345
2264
  #: ../admin/views/BWGViewThemes_bwg.php:352
@@ -2315,33 +2298,33 @@ msgstr "Sombra:"
2315
  #: ../admin/views/BWGViewThemes_bwg.php:597
2316
  #: ../admin/views/BWGViewThemes_bwg.php:1338
2317
  msgid "Hover effect:"
2318
- msgstr "Sitúe efecto:"
2319
 
2320
  #: ../admin/views/BWGViewThemes_bwg.php:370
2321
  #: ../admin/views/BWGViewThemes_bwg.php:611
2322
  #: ../admin/views/BWGViewThemes_bwg.php:1352 ../admin/views/BWGViewThemes_bwg.
2323
  #: php:1635
2324
  msgid "Hover effect value:"
2325
- msgstr "Pase el ratón valor efecto:"
2326
 
2327
  #: ../admin/views/BWGViewThemes_bwg.php:373
2328
  #: ../admin/views/BWGViewThemes_bwg.php:1638
2329
  msgid "E.g. Rotate:"
2330
- msgstr "Por ejemplo Rotar:"
2331
 
2332
  #: ../admin/views/BWGViewThemes_bwg.php:373
2333
  #: ../admin/views/BWGViewThemes_bwg.php:614
2334
  #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2335
  #: php:1638
2336
  msgid "Scale:"
2337
- msgstr "Escala:"
2338
 
2339
  #: ../admin/views/BWGViewThemes_bwg.php:373
2340
  #: ../admin/views/BWGViewThemes_bwg.php:614
2341
  #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2342
  #: php:1638
2343
  msgid "Skew:"
2344
- msgstr "Sesgar:"
2345
 
2346
  #: ../admin/views/BWGViewThemes_bwg.php:377
2347
  #: ../admin/views/BWGViewThemes_bwg.php:618
@@ -2352,7 +2335,7 @@ msgstr "Transición:"
2352
  #: ../admin/views/BWGViewThemes_bwg.php:1374
2353
  #: ../admin/views/BWGViewThemes_bwg.php:1642
2354
  msgid "Thumbnail background color:"
2355
- msgstr "Miniatura color de fondo:"
2356
 
2357
  #: ../admin/views/BWGViewThemes_bwg.php:400
2358
  #: ../admin/views/BWGViewThemes_bwg.php:1380
@@ -2364,12 +2347,12 @@ msgstr "Transparencia en miniatura:"
2364
  #: ../admin/views/BWGViewThemes_bwg.php:1043
2365
  #: ../admin/views/BWGViewThemes_bwg.php:1387
2366
  msgid "Full background color:"
2367
- msgstr "A todo color de fondo:"
2368
 
2369
  #: ../admin/views/BWGViewThemes_bwg.php:413
2370
  #: ../admin/views/BWGViewThemes_bwg.php:1049
2371
  msgid "Full background transparency:"
2372
- msgstr "Fondo total transparencia:"
2373
 
2374
  #: ../admin/views/BWGViewThemes_bwg.php:420
2375
  #: ../admin/views/BWGViewThemes_bwg.php:577
@@ -2387,7 +2370,7 @@ msgstr "Alineación:"
2387
  #: ../admin/views/BWGViewThemes_bwg.php:2849
2388
  #: /admin/views/BWGViewThemes_bwg.php:3334
2389
  msgid "Top"
2390
- msgstr "Cima"
2391
 
2392
  #: ../admin/views/BWGViewThemes_bwg.php:445
2393
  #: ../admin/views/BWGViewThemes_bwg.php:782
@@ -2397,46 +2380,46 @@ msgstr "Cima"
2397
  #: ../admin/views/BWGViewThemes_bwg.php:2851
2398
  #: /admin/views/BWGViewThemes_bwg.php:3336
2399
  msgid "Bottom"
2400
- msgstr "Fondo"
2401
 
2402
  #: ../admin/views/BWGViewThemes_bwg.php:449
2403
  #: ../admin/views/BWGViewThemes_bwg.php:948
2404
  #: ../admin/views/BWGViewThemes_bwg.php:1429 ../admin/views/BWGViewThemes_bwg.
2405
  #: php:1911 ../admin/views/BWGViewThemes_bwg.php:2963
2406
  msgid "Title font size:"
2407
- msgstr "Título tamaño de la fuente:"
2408
 
2409
  #: ../admin/views/BWGViewThemes_bwg.php:455
2410
  #: ../admin/views/BWGViewThemes_bwg.php:1435
2411
  #: ../admin/views/BWGViewThemes_bwg.php:1917 ..
2412
  #: /admin/views/BWGViewThemes_bwg.php:2929
2413
  msgid "Title font color:"
2414
- msgstr "Color de fuente Título:"
2415
 
2416
  #: ../admin/views/BWGViewThemes_bwg.php:461
2417
  #: ../admin/views/BWGViewThemes_bwg.php:960
2418
  #: ../admin/views/BWGViewThemes_bwg.php:1441 ../admin/views/BWGViewThemes_bwg.
2419
  #: php:1923 ../admin/views/BWGViewThemes_bwg.php:2935
2420
  msgid "Title font family:"
2421
- msgstr "Familia tipográfica Título:"
2422
 
2423
  #: ../admin/views/BWGViewThemes_bwg.php:475
2424
  #: ../admin/views/BWGViewThemes_bwg.php:1455
2425
  #: ../admin/views/BWGViewThemes_bwg.php:1937 ..
2426
  #: /admin/views/BWGViewThemes_bwg.php:2949
2427
  msgid "Title font weight:"
2428
- msgstr "Título peso de la fuente:"
2429
 
2430
  #: ../admin/views/BWGViewThemes_bwg.php:489
2431
  #: ../admin/views/BWGViewThemes_bwg.php:1469
2432
  msgid "Title box shadow:"
2433
- msgstr "Cuadro Título sombra:"
2434
 
2435
  #: ../admin/views/BWGViewThemes_bwg.php:496
2436
  #: ../admin/views/BWGViewThemes_bwg.php:1476
2437
  #: ../admin/views/BWGViewThemes_bwg.php:1872
2438
  msgid "Title margin:"
2439
- msgstr "Margen Título:"
2440
 
2441
  #: ../admin/views/BWGViewThemes_bwg.php:557
2442
  msgid "Transparency:"
@@ -2454,7 +2437,7 @@ msgstr "Color de fondo:"
2454
  #: ../admin/views/BWGViewThemes_bwg.php:1733 ..
2455
  #: /admin/views/BWGViewThemes_bwg.php:2051
2456
  msgid "Background transparency:"
2457
- msgstr "La transparencia del fondo:"
2458
 
2459
  #: ../admin/views/BWGViewThemes_bwg.php:614
2460
  msgid "Rotate:"
@@ -2465,246 +2448,247 @@ msgstr "Rotar:"
2465
  #: ../admin/views/BWGViewThemes_bwg.php:1984 ..
2466
  #: /admin/views/BWGViewThemes_bwg.php:3004
2467
  msgid "Description font size:"
2468
- msgstr "Descripción tamaño de la fuente:"
2469
 
2470
  #: ../admin/views/BWGViewThemes_bwg.php:633
2471
  #: ../admin/views/BWGViewThemes_bwg.php:1990
2472
  #: ../admin/views/BWGViewThemes_bwg.php:2970
2473
  msgid "Description font color:"
2474
- msgstr "Descripción color de la fuente:"
2475
 
2476
  #: ../admin/views/BWGViewThemes_bwg.php:639
2477
  #: ../admin/views/BWGViewThemes_bwg.php:1996
2478
  #: ../admin/views/BWGViewThemes_bwg.php:2976
2479
  msgid "Description font family:"
2480
- msgstr "Descripción de letra:"
2481
 
2482
  #: ../admin/views/BWGViewThemes_bwg.php:668
2483
  #: ../admin/views/BWGViewThemes_bwg.php:2509
2484
  msgid "Right, left buttons size:"
2485
- msgstr "Derecha, izquierda tamaño de los botones:"
2486
 
2487
  #: ../admin/views/BWGViewThemes_bwg.php:674
2488
  msgid "Play, pause buttons size:"
2489
- msgstr "Reproducir, pausar tamaño de los botones:"
2490
 
2491
  #: ../admin/views/BWGViewThemes_bwg.php:680
2492
  #: ../admin/views/BWGViewThemes_bwg.php:2177
2493
  msgid "Buttons color:"
2494
- msgstr "Botones de color:"
2495
 
2496
  #: ../admin/views/BWGViewThemes_bwg.php:686
2497
  msgid "Buttons transparency:"
2498
- msgstr "Botones transparencia:"
2499
 
2500
  #: ../admin/views/BWGViewThemes_bwg.php:689
2501
  msgid "alue must be between 0 to 100."
2502
- msgstr "alue debe estar entre 0 a 100."
2503
 
2504
  #: ../admin/views/BWGViewThemes_bwg.php:693
2505
  msgid "Buttons hover color:"
2506
- msgstr "Botones activables de color:"
2507
 
2508
  #: ../admin/views/BWGViewThemes_bwg.php:699
2509
  #: ../admin/views/BWGViewThemes_bwg.php:2503
2510
  msgid "Right, left buttons width:"
2511
- msgstr "Derecha, botones izquierdo Ancho:"
2512
 
2513
  #: ../admin/views/BWGViewThemes_bwg.php:705
2514
  #: ../admin/views/BWGViewThemes_bwg.php:2497
2515
  msgid "Right, left buttons height:"
2516
- msgstr "Derecha, izquierda botones de altura:"
2517
 
2518
  #: ../admin/views/BWGViewThemes_bwg.php:711
2519
  #: ../admin/views/BWGViewThemes_bwg.php:2478
2520
  msgid "Right, left buttons background color:"
2521
- msgstr "Derecha, izquierda botones color de fondo:"
2522
 
2523
  #: ../admin/views/BWGViewThemes_bwg.php:717
2524
  msgid "Right, left buttons border width:"
2525
- msgstr "Derecha, botones izquierdo ancho del borde:"
2526
 
2527
  #: ../admin/views/BWGViewThemes_bwg.php:723
2528
  #: ../admin/views/BWGViewThemes_bwg.php:2540
2529
  msgid "Right, left buttons border style: "
2530
- msgstr "Derecha, izquierda botones estilo de borde:"
2531
 
2532
  #: ../admin/views/BWGViewThemes_bwg.php:737
2533
  msgid "Right, left buttons border color:"
2534
- msgstr "Derecha, izquierda botones color del borde:"
2535
 
2536
  #: ../admin/views/BWGViewThemes_bwg.php:743
2537
  #: ../admin/views/BWGViewThemes_bwg.php:2527
2538
  msgid "Right, left buttons border radius: "
2539
- msgstr "Derecha, izquierda botones radio de frontera:"
2540
 
2541
  #: ../admin/views/BWGViewThemes_bwg.php:750
2542
  #: ../admin/views/BWGViewThemes_bwg.php:2464
2543
  msgid "Right, left buttons style:"
2544
- msgstr "Derecha, izquierda botones de estilo:"
2545
 
2546
  #: ../admin/views/BWGViewThemes_bwg.php:764
2547
  #: ../admin/views/BWGViewThemes_bwg.php:2490
2548
  msgid "Right, left buttons box shadow:"
2549
- msgstr "Derecha, botones izquierdo caja de sombra:"
2550
 
2551
  #: ../admin/views/BWGViewThemes_bwg.php:777
2552
  msgid "Filmstrip/Slider bullet position: "
2553
- msgstr "Tira de película / deslizante posición bala:"
2554
 
2555
  #: ../admin/views/BWGViewThemes_bwg.php:788
2556
  msgid "Filmstrip margin:"
2557
- msgstr "Margen de tira de diapositivas:"
2558
 
2559
  #: ../admin/views/BWGViewThemes_bwg.php:795
2560
  msgid "Filmstrip border width:"
2561
- msgstr "Filmstrip ancho del borde:"
2562
 
2563
  #: ../admin/views/BWGViewThemes_bwg.php:801
2564
  msgid "Filmstrip border style: "
2565
- msgstr "Estilo de borde Tira de imágenes:"
2566
 
2567
  #: ../admin/views/BWGViewThemes_bwg.php:816
2568
  msgid "Filmstrip border color: "
2569
- msgstr "Tira de diapositivas color del borde:"
2570
 
2571
  #: ../admin/views/BWGViewThemes_bwg.php:822
2572
  msgid "Filmstrip border radius: "
2573
- msgstr "Filmstrip radio de frontera:"
2574
 
2575
  #: ../admin/views/BWGViewThemes_bwg.php:829
2576
  msgid "Filmstrip active border width:"
2577
- msgstr "Filmstrip ancho del borde activo:"
2578
 
2579
  #: ../admin/views/BWGViewThemes_bwg.php:835
2580
  msgid "Filmstrip active border color:"
2581
- msgstr "Tira de diapositivas color del borde activo:"
2582
 
2583
  #: ../admin/views/BWGViewThemes_bwg.php:841
2584
  msgid "Filmstrip deactive transparency:"
2585
- msgstr "Tira de imágenes transparencia inactivos:"
2586
 
2587
  #: ../admin/views/BWGViewThemes_bwg.php:848
2588
  msgid "Filmstrip right, left buttons background color:"
2589
- msgstr "Derecha tira de diapositivas, botones izquierdo color de fondo:"
 
2590
 
2591
  #: ../admin/views/BWGViewThemes_bwg.php:854
2592
  msgid "Filmstrip right, left buttons color: "
2593
- msgstr "Derecha tira de diapositivas, la izquierda botones de color:"
2594
 
2595
  #: ../admin/views/BWGViewThemes_bwg.php:860
2596
  #: ../admin/views/BWGViewThemes_bwg.php:2630
2597
  msgid "Filmstrip right, left buttons size: "
2598
- msgstr "Derecha tira de diapositivas, dada tamaño botones:"
2599
 
2600
  #: ../admin/views/BWGViewThemes_bwg.php:866
2601
  msgid "Slider bullet width: "
2602
- msgstr "Deslizador ancho de bala:"
2603
 
2604
  #: ../admin/views/BWGViewThemes_bwg.php:872
2605
  msgid "Slider bullet height: "
2606
- msgstr "Deslizador altura de bala:"
2607
 
2608
  #: ../admin/views/BWGViewThemes_bwg.php:878
2609
  msgid "Slider bullet border radius:"
2610
- msgstr "Deslizador radio frontera bala:"
2611
 
2612
  #: ../admin/views/BWGViewThemes_bwg.php:885
2613
  msgid "Slider bullet background color: "
2614
- msgstr "Deslizador color de fondo de bala:"
2615
 
2616
  #: ../admin/views/BWGViewThemes_bwg.php:891
2617
  msgid "Slider bullet margin:"
2618
- msgstr "Deslizador margen de bala:"
2619
 
2620
  #: ../admin/views/BWGViewThemes_bwg.php:897
2621
  msgid "Slider bullet active background color:"
2622
- msgstr "Bala deslizante color de fondo activo:"
2623
 
2624
  #: ../admin/views/BWGViewThemes_bwg.php:903
2625
  msgid "Slider bullet active border width: "
2626
- msgstr "Bala deslizante ancho del borde activo:"
2627
 
2628
  #: ../admin/views/BWGViewThemes_bwg.php:909
2629
  msgid "Slider bullet active border color:"
2630
- msgstr "Bala deslizante color del borde activo:"
2631
 
2632
  #: ../admin/views/BWGViewThemes_bwg.php:921
2633
  msgid "Title background color:"
2634
- msgstr "Título color de fondo:"
2635
 
2636
  #: ../admin/views/BWGViewThemes_bwg.php:927
2637
  msgid "Title transparency: "
2638
- msgstr "Título transparencia:"
2639
 
2640
  #: ../admin/views/BWGViewThemes_bwg.php:934
2641
  msgid "Title border radius:"
2642
- msgstr "Título radio de frontera:"
2643
 
2644
  #: ../admin/views/BWGViewThemes_bwg.php:941
2645
  #: ../admin/views/BWGViewThemes_bwg.php:1878
2646
  msgid "Title padding:"
2647
- msgstr "Título padding:"
2648
 
2649
  #: ../admin/views/BWGViewThemes_bwg.php:954
2650
  msgid "Title color:"
2651
- msgstr "Título de color:"
2652
 
2653
  #: ../admin/views/BWGViewThemes_bwg.php:974
2654
  msgid "Description background color:"
2655
- msgstr "Descripción color de fondo:"
2656
 
2657
  #: ../admin/views/BWGViewThemes_bwg.php:980
2658
  msgid "Description transparency: "
2659
- msgstr "Descripción transparencia:"
2660
 
2661
  #: ../admin/views/BWGViewThemes_bwg.php:987
2662
  msgid "Description border radius: "
2663
- msgstr "Descripción radio de frontera:"
2664
 
2665
  #: ../admin/views/BWGViewThemes_bwg.php:994
2666
  #: ../admin/views/BWGViewThemes_bwg.php:1229
2667
  #: ../admin/views/BWGViewThemes_bwg.php:1951
2668
  msgid "Description padding:"
2669
- msgstr "Descripción padding:"
2670
 
2671
  #: ../admin/views/BWGViewThemes_bwg.php:1007
2672
  msgid "Description color: "
2673
- msgstr "Descripción del color:"
2674
 
2675
  #: ../admin/views/BWGViewThemes_bwg.php:1013
2676
  msgid "Description font family: "
2677
- msgstr "Descripción de letra:"
2678
 
2679
  #: ../admin/views/BWGViewThemes_bwg.php:1036
2680
  msgid "Full padding:"
2681
- msgstr "Acolchado completo:"
2682
 
2683
  #: ../admin/views/BWGViewThemes_bwg.php:1056
2684
  msgid "Full border radius:"
2685
- msgstr "Completo radio de frontera:"
2686
 
2687
  #: ../admin/views/BWGViewThemes_bwg.php:1063
2688
  msgid "Full border width:"
2689
- msgstr "Completo ancho del borde:"
2690
 
2691
  #: ../admin/views/BWGViewThemes_bwg.php:1069
2692
  msgid "Full border style:"
2693
- msgstr "Estilo de borde completo:"
2694
 
2695
  #: ../admin/views/BWGViewThemes_bwg.php:1083
2696
  msgid "Full border color:"
2697
- msgstr "A todo color frontera:"
2698
 
2699
  #: ../admin/views/BWGViewThemes_bwg.php:1169
2700
  #: ../admin/views/BWGViewThemes_bwg.php:2086
2701
  #: ../admin/views/BWGViewThemes_bwg.php:3318
2702
  msgid "Box shadow:"
2703
- msgstr "Caja de sombra:"
2704
 
2705
  #: ../admin/views/BWGViewThemes_bwg.php:1182
2706
  msgid "Title alignment:"
2707
- msgstr "Título alineación:"
2708
 
2709
  #: ../admin/views/BWGViewThemes_bwg.php:1196
2710
  #: ../admin/views/BWGViewThemes_bwg.php:1483
@@ -2725,49 +2709,49 @@ msgstr "Color de fuente:"
2725
  #: ../admin/views/BWGViewThemes_bwg.php:2099 ..
2726
  #: /admin/views/BWGViewThemes_bwg.php:3215
2727
  msgid "Font family:"
2728
- msgstr "Familia tipográfica:"
2729
 
2730
  #: ../admin/views/BWGViewThemes_bwg.php:1222
2731
  msgid "Description margin:"
2732
- msgstr "Descripción margen:"
2733
 
2734
  #: ../admin/views/BWGViewThemes_bwg.php:1236
2735
  msgid "Description border width: "
2736
- msgstr "Descripción ancho del borde:"
2737
 
2738
  #: ../admin/views/BWGViewThemes_bwg.php:1242
2739
  msgid "Description border style: "
2740
- msgstr "Descripción estilo de borde:"
2741
 
2742
  #: ../admin/views/BWGViewThemes_bwg.php:1256
2743
  msgid "Description border color: "
2744
- msgstr "Descripción color del borde:"
2745
 
2746
  #: ../admin/views/BWGViewThemes_bwg.php:1262
2747
  msgid "Description border radius:"
2748
- msgstr "Descripción radio de frontera:"
2749
 
2750
  #: ../admin/views/BWGViewThemes_bwg.php:1269
2751
  msgid "Description background color: "
2752
- msgstr "Descripción color de fondo:"
2753
 
2754
  #: ../admin/views/BWGViewThemes_bwg.php:1294
2755
  #: ../admin/views/BWGViewThemes_bwg.php:2082
2756
  msgid "se CSS type values."
2757
- msgstr "valores de tipo CSS."
2758
 
2759
  #: ../admin/views/BWGViewThemes_bwg.php:1355
2760
  msgid "E.g. Rotate"
2761
- msgstr "Por ejemplo Girar"
2762
 
2763
  #: ../admin/views/BWGViewThemes_bwg.php:1359
2764
  #: ../admin/views/BWGViewThemes_bwg.php:1591
2765
  msgid "Thumbnail transition:"
2766
- msgstr "Transición en miniatura:"
2767
 
2768
  #: ../admin/views/BWGViewThemes_bwg.php:1393
2769
  msgid "Full background transparency: "
2770
- msgstr "Fondo total transparencia:"
2771
 
2772
  #: ../admin/views/BWGViewThemes_bwg.php:1509
2773
  #: ../admin/views/BWGViewThemes_bwg.php:3229
@@ -2777,75 +2761,75 @@ msgstr "Peso de la fuente:"
2777
  #: ../admin/views/BWGViewThemes_bwg.php:1523
2778
  #: ../admin/views/BWGViewThemes_bwg.php:1773
2779
  msgid "Back padding:"
2780
- msgstr "Carnes de Espalda:"
2781
 
2782
  #: ../admin/views/BWGViewThemes_bwg.php:1539
2783
  msgid "Thumbnail margin:"
2784
- msgstr "Margen miniatura:"
2785
 
2786
  #: ../admin/views/BWGViewThemes_bwg.php:1545
2787
  msgid "Thumbnail padding:"
2788
- msgstr "Padding miniatura:"
2789
 
2790
  #: ../admin/views/BWGViewThemes_bwg.php:1551
2791
  msgid "Thumbnail border width:"
2792
- msgstr "Miniatura ancho del borde:"
2793
 
2794
  #: ../admin/views/BWGViewThemes_bwg.php:1557
2795
  msgid "Thumbnail border style:"
2796
- msgstr "Estilo de borde en miniatura:"
2797
 
2798
  #: ../admin/views/BWGViewThemes_bwg.php:1571
2799
  msgid "Thumbnail border color:"
2800
- msgstr "Miniatura color del borde:"
2801
 
2802
  #: ../admin/views/BWGViewThemes_bwg.php:1577
2803
  msgid "Thumbnail border radius:"
2804
- msgstr "Miniatura radio de frontera:"
2805
 
2806
  #: ../admin/views/BWGViewThemes_bwg.php:1584
2807
  msgid "Thumbnail box shadow:"
2808
- msgstr "Miniatura sombra cuadro:"
2809
 
2810
  #: ../admin/views/BWGViewThemes_bwg.php:1600
2811
  msgid "Thumbnail alignment:"
2812
- msgstr "Alineación miniatura:"
2813
 
2814
  #: ../admin/views/BWGViewThemes_bwg.php:1621
2815
  msgid "Thumbnail hover effect: "
2816
- msgstr "Miniatura efecto hover:"
2817
 
2818
  #: ../admin/views/BWGViewThemes_bwg.php:1648
2819
  msgid "Thumbnails background color:"
2820
- msgstr "Miniaturas color de fondo:"
2821
 
2822
  #: ../admin/views/BWGViewThemes_bwg.php:1654
2823
  msgid "Thumbnail background transparency:"
2824
- msgstr "Fondo Miniatura transparencia:"
2825
 
2826
  #: ../admin/views/BWGViewThemes_bwg.php:1667
2827
  msgid "Thumbnail div padding:"
2828
- msgstr "Miniatura acolchado div:"
2829
 
2830
  #: ../admin/views/BWGViewThemes_bwg.php:1674
2831
  msgid "Thumbnail div background color:"
2832
- msgstr "Miniatura div color de fondo:"
2833
 
2834
  #: ../admin/views/BWGViewThemes_bwg.php:1680
2835
  msgid "Thumbnail div border width:"
2836
- msgstr "Miniatura div ancho del borde:"
2837
 
2838
  #: ../admin/views/BWGViewThemes_bwg.php:1687
2839
  msgid "Thumbnail div border style:"
2840
- msgstr "Estilo de borde en miniatura div:"
2841
 
2842
  #: ../admin/views/BWGViewThemes_bwg.php:1701
2843
  msgid "Thumbnail div border color:"
2844
- msgstr "Miniatura div color del borde:"
2845
 
2846
  #: ../admin/views/BWGViewThemes_bwg.php:1707
2847
  msgid "Thumbnail div border radius:"
2848
- msgstr "Miniatura div radio de frontera:"
2849
 
2850
  #: ../admin/views/BWGViewThemes_bwg.php:1747
2851
  msgid "Separator width:"
@@ -2853,92 +2837,92 @@ msgstr "Ancho del separador:"
2853
 
2854
  #: ../admin/views/BWGViewThemes_bwg.php:1753
2855
  msgid "Separator style:"
2856
- msgstr "Estilo Separador:"
2857
 
2858
  #: ../admin/views/BWGViewThemes_bwg.php:1767
2859
  msgid "Separator color:"
2860
- msgstr "De color Separador:"
2861
 
2862
  #: ../admin/views/BWGViewThemes_bwg.php:1780
2863
  msgid "Back font size:"
2864
- msgstr "Tamaño de la fuente Back:"
2865
 
2866
  #: ../admin/views/BWGViewThemes_bwg.php:1786
2867
  msgid "Back font color:"
2868
- msgstr "Volver color de la fuente:"
2869
 
2870
  #: ../admin/views/BWGViewThemes_bwg.php:1792
2871
  msgid "Back font family:"
2872
- msgstr "Volver familia de fuentes:"
2873
 
2874
  #: ../admin/views/BWGViewThemes_bwg.php:1806
2875
  msgid "Back font weight:"
2876
- msgstr "Volver peso de la fuente:"
2877
 
2878
  #: ../admin/views/BWGViewThemes_bwg.php:1826
2879
  msgid "Text div padding:"
2880
- msgstr "Texto div padding:"
2881
 
2882
  #: ../admin/views/BWGViewThemes_bwg.php:1833
2883
  msgid "Text div border width:"
2884
- msgstr "Texto ancho del borde div:"
2885
 
2886
  #: ../admin/views/BWGViewThemes_bwg.php:1839
2887
  msgid "Text border style:"
2888
- msgstr "Texto estilo de borde:"
2889
 
2890
  #: ../admin/views/BWGViewThemes_bwg.php:1853
2891
  msgid "Text border color:"
2892
- msgstr "Texto Color del borde:"
2893
 
2894
  #: ../admin/views/BWGViewThemes_bwg.php:1859
2895
  msgid "Text div border radius:"
2896
- msgstr "Texto radio frontera div:"
2897
 
2898
  #: ../admin/views/BWGViewThemes_bwg.php:1866
2899
  msgid "Text background color:"
2900
- msgstr "Texto color de fondo:"
2901
 
2902
  #: ../admin/views/BWGViewThemes_bwg.php:1885
2903
  msgid "Title border width:"
2904
- msgstr "Título ancho del borde:"
2905
 
2906
  #: ../admin/views/BWGViewThemes_bwg.php:1891
2907
  msgid "Title border style:"
2908
- msgstr "Estilo de borde Título:"
2909
 
2910
  #: ../admin/views/BWGViewThemes_bwg.php:1905
2911
  msgid "Title border color:"
2912
- msgstr "Título color del borde:"
2913
 
2914
  #: ../admin/views/BWGViewThemes_bwg.php:1958
2915
  msgid "Description border width:"
2916
- msgstr "Descripción ancho del borde:"
2917
 
2918
  #: ../admin/views/BWGViewThemes_bwg.php:1964
2919
  msgid "Description border style:"
2920
- msgstr "Descripción estilo de borde:"
2921
 
2922
  #: ../admin/views/BWGViewThemes_bwg.php:1978
2923
  msgid "Description border color:"
2924
- msgstr "Descripción color del borde:"
2925
 
2926
  #: ../admin/views/BWGViewThemes_bwg.php:2010
2927
  #: ../admin/views/BWGViewThemes_bwg.php:2990
2928
  msgid "Description font weight:"
2929
- msgstr "Descripción peso de la fuente:"
2930
 
2931
  #: ../admin/views/BWGViewThemes_bwg.php:2024
2932
  msgid "Description more size:"
2933
- msgstr "Descripción tamaño más:"
2934
 
2935
  #: ../admin/views/BWGViewThemes_bwg.php:2030
2936
  msgid "Description more color:"
2937
- msgstr "Descripción más color:"
2938
 
2939
  #: ../admin/views/BWGViewThemes_bwg.php:2164
2940
  msgid "Buttons and title margin:"
2941
- msgstr "Botones y margen del título:"
2942
 
2943
  #: ../admin/views/BWGViewThemes_bwg.php:2171
2944
  msgid "Buttons size:"
@@ -2946,31 +2930,31 @@ msgstr "Tamaño de los botones:"
2946
 
2947
  #: ../admin/views/BWGViewThemes_bwg.php:2183
2948
  msgid "Buttons and title border width:"
2949
- msgstr "Botones y ancho título frontera:"
2950
 
2951
  #: ../admin/views/BWGViewThemes_bwg.php:2189
2952
  msgid "Buttons and title border style:"
2953
- msgstr "Botones y estilo de título frontera:"
2954
 
2955
  #: ../admin/views/BWGViewThemes_bwg.php:2203
2956
  msgid "Buttons and title border color:"
2957
- msgstr "Botones y el color del título frontera:"
2958
 
2959
  #: ../admin/views/BWGViewThemes_bwg.php:2209
2960
  msgid "Buttons and title border radius:"
2961
- msgstr "Botones y radio título frontera:"
2962
 
2963
  #: ../admin/views/BWGViewThemes_bwg.php:2216
2964
  msgid "Buttons and title background color:"
2965
- msgstr "Botones y color de fondo del título:"
2966
 
2967
  #: ../admin/views/BWGViewThemes_bwg.php:2222
2968
  msgid "Buttons and title background transparency:"
2969
- msgstr "Botones y fondo del título transparencia:"
2970
 
2971
  #: ../admin/views/BWGViewThemes_bwg.php:2229
2972
  msgid "Buttons or title alignment:"
2973
- msgstr "Botones o la alineación del título:"
2974
 
2975
  #: ../admin/views/BWGViewThemes_bwg.php:2252
2976
  msgid "Overlay background color:"
@@ -2978,343 +2962,346 @@ msgstr "Superposición de color de fondo:"
2978
 
2979
  #: ../admin/views/BWGViewThemes_bwg.php:2258
2980
  msgid "Overlay background transparency:"
2981
- msgstr "Fondo Overlay transparencia:"
2982
 
2983
  #: ../admin/views/BWGViewThemes_bwg.php:2265
2984
  msgid "Lightbox background color:"
2985
- msgstr "La mesa de luz color de fondo:"
2986
 
2987
  #: ../admin/views/BWGViewThemes_bwg.php:2271
2988
  msgid "Control buttons height:"
2989
- msgstr "Botones de control de altura:"
2990
 
2991
  #: ../admin/views/BWGViewThemes_bwg.php:2277
2992
  msgid "Control buttons margin (top):"
2993
- msgstr "Margen de botones de control (arriba):"
2994
 
2995
  #: ../admin/views/BWGViewThemes_bwg.php:2283
2996
  msgid "Control buttons margin (left):"
2997
- msgstr "Margen de botones de control (izquierda):"
2998
 
2999
  #: ../admin/views/BWGViewThemes_bwg.php:2289
3000
  msgid "Control buttons position:"
3001
- msgstr "Botones de control de posición:"
3002
 
3003
  #: ../admin/views/BWGViewThemes_bwg.php:2298
3004
  msgid "Control buttons background color: "
3005
- msgstr "Control de color de los botones de fondo:"
3006
 
3007
  #: ../admin/views/BWGViewThemes_bwg.php:2304
3008
  msgid "Control buttons container border radius:"
3009
- msgstr "Control de radio botones frontera contenedor:"
3010
 
3011
  #: ../admin/views/BWGViewThemes_bwg.php:2311
3012
  msgid "Control buttons container background transparency: "
3013
- msgstr "Control de botones envase fondo transparencia:"
3014
 
3015
  #: ../admin/views/BWGViewThemes_bwg.php:2318
3016
  msgid "Control buttons alignment: "
3017
- msgstr "Botones de control de alineación:"
3018
 
3019
  #: ../admin/views/BWGViewThemes_bwg.php:2332
3020
  msgid "Control buttons color:"
3021
- msgstr "Botones de control del color:"
3022
 
3023
  #: ../admin/views/BWGViewThemes_bwg.php:2338
3024
  msgid "Control buttons transparency:"
3025
- msgstr "Botones de control de transparencia:"
3026
 
3027
  #: ../admin/views/BWGViewThemes_bwg.php:2345
3028
  msgid "Toggle button height: "
3029
- msgstr "Alternar altura botón:"
3030
 
3031
  #: ../admin/views/BWGViewThemes_bwg.php:2351
3032
  msgid "Toggle button width: "
3033
- msgstr "Alternar anchura botón:"
3034
 
3035
  #: ../admin/views/BWGViewThemes_bwg.php:2357
3036
  msgid "Close button border radius:"
3037
- msgstr "Cerrar radio botón de frontera:"
3038
 
3039
  #: ../admin/views/BWGViewThemes_bwg.php:2365
3040
  msgid "Close button border width:"
3041
- msgstr "Cerrar anchura botón de frontera:"
3042
 
3043
  #: ../admin/views/BWGViewThemes_bwg.php:2371
3044
  msgid "Close button border style: "
3045
- msgstr "Cerrar estilo de botón frontera:"
3046
 
3047
  #: ../admin/views/BWGViewThemes_bwg.php:2385
3048
  msgid "Close button border color:"
3049
- msgstr "Cerrar color del botón frontera:"
3050
 
3051
  #: ../admin/views/BWGViewThemes_bwg.php:2391
3052
  msgid "Close button box shadow:"
3053
- msgstr "Cerrar cuadro de botón de la sombra:"
3054
 
3055
  #: ../admin/views/BWGViewThemes_bwg.php:2398
3056
  msgid "Close button background color:"
3057
- msgstr "Cerrar botón color de fondo:"
3058
 
3059
  #: ../admin/views/BWGViewThemes_bwg.php:2404
3060
  msgid "Close button transparency:"
3061
- msgstr "Botón Cerrar la transparencia:"
3062
 
3063
  #: ../admin/views/BWGViewThemes_bwg.php:2410
3064
  msgid "Close button width:"
3065
- msgstr "Cerrar anchura botón:"
3066
 
3067
  #: ../admin/views/BWGViewThemes_bwg.php:2416
3068
  msgid "Close button height:"
3069
- msgstr "Botón Cerrar altura:"
3070
 
3071
  #: ../admin/views/BWGViewThemes_bwg.php:2422
3072
  msgid "Close button top:"
3073
- msgstr "Cerrar botón superior:"
3074
 
3075
  #: ../admin/views/BWGViewThemes_bwg.php:2428
3076
  msgid "Close button right:"
3077
- msgstr "Cerrar botón derecho:"
3078
 
3079
  #: ../admin/views/BWGViewThemes_bwg.php:2434
3080
  msgid "Close button size:"
3081
- msgstr "Cerrar tamaño del botón:"
3082
 
3083
  #: ../admin/views/BWGViewThemes_bwg.php:2440
3084
  msgid "Close button color:"
3085
- msgstr "Cerrar botón de color:"
3086
 
3087
  #: ../admin/views/BWGViewThemes_bwg.php:2446
3088
  msgid "Fullscreen close button color:"
3089
- msgstr "Pantalla Completa botón de cierre de color:"
3090
 
3091
  #: ../admin/views/BWGViewThemes_bwg.php:2452
3092
  msgid "Share buttons color:"
3093
- msgstr "Acciones botones de colores:"
3094
 
3095
  #: ../admin/views/BWGViewThemes_bwg.php:2484
3096
  msgid "Right, left buttons transparency: "
3097
- msgstr "Derecha, izquierda botones de transparencia:"
3098
 
3099
  #: ../admin/views/BWGViewThemes_bwg.php:2515
3100
  msgid "Right, left, close buttons hover color:"
3101
- msgstr "Derecha, izquierda, botones cercanos rondan el color:"
3102
 
3103
  #: ../admin/views/BWGViewThemes_bwg.php:2521
3104
  msgid "Right, left buttons color:"
3105
- msgstr "Derecha, izquierda botones de colores:"
3106
 
3107
  #: ../admin/views/BWGViewThemes_bwg.php:2534
3108
  msgid "Right, left buttons border width: "
3109
- msgstr "Derecha, botones izquierdo ancho del borde:"
3110
 
3111
  #: ../admin/views/BWGViewThemes_bwg.php:2554
3112
  msgid "Right, left buttons border color: "
3113
- msgstr "Derecha, izquierda botones color del borde:"
3114
 
3115
  #: ../admin/views/BWGViewThemes_bwg.php:2560
3116
  msgid "Filmstrip position: "
3117
- msgstr "Posición Tira de imágenes:"
3118
 
3119
  #: ../admin/views/BWGViewThemes_bwg.php:2571
3120
  msgid "Filmstrip thumbnail margin:"
3121
- msgstr "Margen miniatura tira de diapositivas:"
3122
 
3123
  #: ../admin/views/BWGViewThemes_bwg.php:2578
3124
  msgid "Filmstrip thumbnail border width: "
3125
- msgstr "Filmstrip ancho del borde miniatura:"
3126
 
3127
  #: ../admin/views/BWGViewThemes_bwg.php:2584
3128
  msgid "Filmstrip thumbnail border style:"
3129
- msgstr "Tira de imágenes miniatura estilo de borde:"
3130
 
3131
  #: ../admin/views/BWGViewThemes_bwg.php:2598
3132
  msgid "Filmstrip thumbnail border color:"
3133
- msgstr "Tira de diapositivas color del borde miniatura:"
3134
 
3135
  #: ../admin/views/BWGViewThemes_bwg.php:2604
3136
  msgid "Filmstrip thumbnail border radius:"
3137
- msgstr "Filmstrip radio frontera miniatura:"
3138
 
3139
  #: ../admin/views/BWGViewThemes_bwg.php:2611
3140
  msgid "Filmstrip thumbnail active border width:"
3141
- msgstr "Tira de imágenes miniatura ancho del borde activo:"
 
3142
 
3143
  #: ../admin/views/BWGViewThemes_bwg.php:2617
3144
  msgid "Filmstrip thumbnail active border color:"
3145
- msgstr "Tira de imágenes miniatura color del borde activo:"
 
3146
 
3147
  #: ../admin/views/BWGViewThemes_bwg.php:2623
3148
  msgid "Filmstrip thumbnail deactive transparency: "
3149
- msgstr "Tira de imágenes miniatura transparencia inactivos:"
3150
 
3151
  #: ../admin/views/BWGViewThemes_bwg.php:2636
3152
  msgid "Filmstrip right, left buttons color:"
3153
- msgstr "Derecha tira de diapositivas, la izquierda botones de color:"
3154
 
3155
  #: ../admin/views/BWGViewThemes_bwg.php:2642
3156
  msgid "Filmstrip right, left button background color:"
3157
- msgstr "Derecha tira de diapositivas, el botón izquierdo del color de fondo:"
 
3158
 
3159
  #: ../admin/views/BWGViewThemes_bwg.php:2648
3160
  msgid "Rating position: "
3161
- msgstr "Posición Clasificación:"
3162
 
3163
  #: ../admin/views/BWGViewThemes_bwg.php:2657
3164
  msgid "Rating alignment: "
3165
- msgstr "Alineación Clasificación:"
3166
 
3167
  #: ../admin/views/BWGViewThemes_bwg.php:2671
3168
  msgid "Rating icon:"
3169
- msgstr "Clasificación icono:"
3170
 
3171
  #: ../admin/views/BWGViewThemes_bwg.php:2685
3172
  msgid "Rating color:"
3173
- msgstr "De color Clasificación:"
3174
 
3175
  #: ../admin/views/BWGViewThemes_bwg.php:2691
3176
  msgid "Rating hover color:"
3177
- msgstr "Valoración de la libración de color:"
3178
 
3179
  #: ../admin/views/BWGViewThemes_bwg.php:2697
3180
  msgid "Rating size:"
3181
- msgstr "Tamaño Valoración:"
3182
 
3183
  #: ../admin/views/BWGViewThemes_bwg.php:2703
3184
  msgid "Rating icon count:"
3185
- msgstr "Contar icono Clasificación:"
3186
 
3187
  #: ../admin/views/BWGViewThemes_bwg.php:2709
3188
  msgid "Rating padding:"
3189
- msgstr "Clasificación padding:"
3190
 
3191
  #: ../admin/views/BWGViewThemes_bwg.php:2716
3192
  msgid "Hit counter position:"
3193
- msgstr "Hit posición del contador:"
3194
 
3195
  #: ../admin/views/BWGViewThemes_bwg.php:2725
3196
  msgid "Hit counter alignment:"
3197
- msgstr "Hit alineación contador:"
3198
 
3199
  #: ../admin/views/BWGViewThemes_bwg.php:2739
3200
  msgid "Hit counter background color:"
3201
- msgstr "Hit de color contra el fondo:"
3202
 
3203
  #: ../admin/views/BWGViewThemes_bwg.php:2745
3204
  msgid "Hit counter background transparency: "
3205
- msgstr "Hit counter transparencia de fondo:"
3206
 
3207
  #: ../admin/views/BWGViewThemes_bwg.php:2752
3208
  msgid "Hit counter border width: "
3209
- msgstr "Hit counter ancho del borde:"
3210
 
3211
  #: ../admin/views/BWGViewThemes_bwg.php:2758
3212
  msgid "Hit counter border style:"
3213
- msgstr "Hit estilo de borde contador:"
3214
 
3215
  #: ../admin/views/BWGViewThemes_bwg.php:2772
3216
  msgid "Hit counter border color:"
3217
- msgstr "Hit de color contador de frontera:"
3218
 
3219
  #: ../admin/views/BWGViewThemes_bwg.php:2778
3220
  msgid "Hit counter border radius:"
3221
- msgstr "Hit counter radio de frontera:"
3222
 
3223
  #: ../admin/views/BWGViewThemes_bwg.php:2785
3224
  msgid "Hit counter padding:"
3225
- msgstr "Hit counter padding:"
3226
 
3227
  #: ../admin/views/BWGViewThemes_bwg.php:2792
3228
  msgid "Hit counter margin:"
3229
- msgstr "Hit margen de contador:"
3230
 
3231
  #: ../admin/views/BWGViewThemes_bwg.php:2799
3232
  msgid "Hit counter font color:"
3233
- msgstr "Hit de color contra la fuente:"
3234
 
3235
  #: ../admin/views/BWGViewThemes_bwg.php:2805
3236
  msgid "Hit counter font family:"
3237
- msgstr "Hit de la familia contra la fuente:"
3238
 
3239
  #: ../admin/views/BWGViewThemes_bwg.php:2819
3240
  msgid "Hit counter font weight:"
3241
- msgstr "Hit contrapeso de la fuente:"
3242
 
3243
  #: ../admin/views/BWGViewThemes_bwg.php:2833
3244
  msgid "Hit counter font size:"
3245
- msgstr "Hit tamaño de la fuente contador:"
3246
 
3247
  #: ../admin/views/BWGViewThemes_bwg.php:2846
3248
  msgid "Info position:"
3249
- msgstr "Información de posición:"
3250
 
3251
  #: ../admin/views/BWGViewThemes_bwg.php:2855
3252
  msgid "Info alignment:"
3253
- msgstr "Información de la alineación:"
3254
 
3255
  #: ../admin/views/BWGViewThemes_bwg.php:2869
3256
  msgid "Info background color:"
3257
- msgstr "Información de color de fondo:"
3258
 
3259
  #: ../admin/views/BWGViewThemes_bwg.php:2875
3260
  msgid "Info background transparency:"
3261
- msgstr "Información de transparencia de fondo:"
3262
 
3263
  #: ../admin/views/BWGViewThemes_bwg.php:2882
3264
  msgid "Info border width:"
3265
- msgstr "Información del ancho del borde:"
3266
 
3267
  #: ../admin/views/BWGViewThemes_bwg.php:2888
3268
  msgid "Info border style:"
3269
- msgstr "Información de estilo de borde:"
3270
 
3271
  #: ../admin/views/BWGViewThemes_bwg.php:2902
3272
  msgid "Info border color:"
3273
- msgstr "Información del color del borde:"
3274
 
3275
  #: ../admin/views/BWGViewThemes_bwg.php:2908
3276
  msgid "Info border radius:"
3277
- msgstr "Info radio de frontera:"
3278
 
3279
  #: ../admin/views/BWGViewThemes_bwg.php:2915
3280
  msgid "Info padding:"
3281
- msgstr "Información padding:"
3282
 
3283
  #: ../admin/views/BWGViewThemes_bwg.php:2922
3284
  msgid "Info margin:"
3285
- msgstr "Margen de Información:"
3286
 
3287
  #: ../admin/views/BWGViewThemes_bwg.php:3011
3288
  msgid "Comments Width:"
3289
- msgstr "Comentarios Anchura:"
3290
 
3291
  #: ../admin/views/BWGViewThemes_bwg.php:3017
3292
  msgid "Comments position:"
3293
- msgstr "Comentarios del puesto:"
3294
 
3295
  #: ../admin/views/BWGViewThemes_bwg.php:3026
3296
  msgid "Comments background color:"
3297
- msgstr "Comentarios del color de fondo:"
3298
 
3299
  #: ../admin/views/BWGViewThemes_bwg.php:3032
3300
  msgid "Comments font size:"
3301
- msgstr "Comentarios del tamaño de la fuente:"
3302
 
3303
  #: ../admin/views/BWGViewThemes_bwg.php:3038
3304
  msgid "Comments font color:"
3305
- msgstr "Comentarios del color de la fuente:"
3306
 
3307
  #: ../admin/views/BWGViewThemes_bwg.php:3044
3308
  msgid "Comments font family:"
3309
- msgstr "Comentarios de letra:"
3310
 
3311
  #: ../admin/views/BWGViewThemes_bwg.php:3058
3312
  msgid "Comments author font size:"
3313
- msgstr "Tamaño Comentarios Autor de la fuente:"
3314
 
3315
  #: ../admin/views/BWGViewThemes_bwg.php:3065
3316
  msgid "Comments date font size:"
3317
- msgstr "Tamaño Comentarios fecha de la fuente:"
3318
 
3319
  #: ../admin/views/BWGViewThemes_bwg.php:3071
3320
  msgid "Comments body font size:"
@@ -3322,75 +3309,75 @@ msgstr "Tamaño de letra Comentarios cuerpo:"
3322
 
3323
  #: ../admin/views/BWGViewThemes_bwg.php:3077
3324
  msgid "Comment input border width: "
3325
- msgstr "Comentario ancho del borde de entrada:"
3326
 
3327
  #: ../admin/views/BWGViewThemes_bwg.php:3083
3328
  msgid "Comment input border style: "
3329
- msgstr "Comentario estilo de borde de entrada:"
3330
 
3331
  #: ../admin/views/BWGViewThemes_bwg.php:3097
3332
  msgid "Comment input border color:"
3333
- msgstr "Comentario color del borde de entrada:"
3334
 
3335
  #: ../admin/views/BWGViewThemes_bwg.php:3103
3336
  msgid "Comment input border radius:"
3337
- msgstr "Comentario de entrada radio de frontera:"
3338
 
3339
  #: ../admin/views/BWGViewThemes_bwg.php:3109
3340
  msgid "Comment input padding:"
3341
- msgstr "Comentario acolchado de entrada:"
3342
 
3343
  #: ../admin/views/BWGViewThemes_bwg.php:3116
3344
  msgid "Comment input background color:"
3345
- msgstr "Comentario color de fondo de entrada:"
3346
 
3347
  #: ../admin/views/BWGViewThemes_bwg.php:3122
3348
  msgid "Comment button background color:"
3349
- msgstr "Comentario botón de color de fondo:"
3350
 
3351
  #: ../admin/views/BWGViewThemes_bwg.php:3128
3352
  msgid "Comment button padding:"
3353
- msgstr "Comentario botón padding:"
3354
 
3355
  #: ../admin/views/BWGViewThemes_bwg.php:3135
3356
  msgid "Comment button border width:"
3357
- msgstr "Comentario botón ancho del borde:"
3358
 
3359
  #: ../admin/views/BWGViewThemes_bwg.php:3141
3360
  msgid "Comment button border style:"
3361
- msgstr "Comentario botón de estilo de borde:"
3362
 
3363
  #: ../admin/views/BWGViewThemes_bwg.php:3155
3364
  msgid "Comment button border color:"
3365
- msgstr "Comentario botón de color del borde:"
3366
 
3367
  #: ../admin/views/BWGViewThemes_bwg.php:3161
3368
  msgid "Comment button border radius:"
3369
- msgstr "Comentario botón de radio de la frontera:"
3370
 
3371
  #: ../admin/views/BWGViewThemes_bwg.php:3168
3372
  msgid "Comment separator width:"
3373
- msgstr "Comentario ancho del separador:"
3374
 
3375
  #: ../admin/views/BWGViewThemes_bwg.php:3174
3376
  msgid "Comment separator style:"
3377
- msgstr "Comentario estilo separador:"
3378
 
3379
  #: ../admin/views/BWGViewThemes_bwg.php:3188
3380
  msgid "Comment separator color:"
3381
- msgstr "Comentario de color separador:"
3382
 
3383
  #: ../admin/views/BWGViewThemes_bwg.php:3296
3384
  msgid "Button background color:"
3385
- msgstr "Botón de color de fondo:"
3386
 
3387
  #: ../admin/views/BWGViewThemes_bwg.php:3302
3388
  msgid "Button background transparency:"
3389
- msgstr "Botón de transparencia de fondo:"
3390
 
3391
  #: ../admin/views/BWGViewThemes_bwg.php:3309
3392
  msgid "Button transition:"
3393
- msgstr "Botón de transición:"
3394
 
3395
  #: ../admin/views/BWGViewThemes_bwg.php:3331
3396
  msgid "Position:"
@@ -3402,29 +3389,29 @@ msgstr "Numeración:"
3402
 
3403
  #: ../admin/views/BWGViewThemes_bwg.php:3363
3404
  msgid "Button text:"
3405
- msgstr "Boton de texto:"
3406
 
3407
  #: ../admin/views/BWGViewThemes_bwg.php:3368
3408
  msgid "Arrow"
3409
- msgstr "Arrow"
3410
 
3411
  #: ../admin/views/BWGViewThemes_bwg.php:3369
3412
  msgid "Next, previous buttons values."
3413
- msgstr "Valores botones siguiente, anterior."
3414
 
3415
  #: ../admin/views/BWGViewUninstall_bwg.php:33
3416
  #: ../admin/views/BWGViewUninstall_bwg. php:155
3417
  msgid "Uninstall Photo Gallery"
3418
- msgstr "Desinstalar Galería de fotos"
3419
 
3420
  #: ../admin/views/BWGViewUninstall_bwg.php:35
3421
  msgid ""
3422
  "Deactivating Photo Gallery plugin does not remove any data that may have "
3423
  "been created. To completely remove this plugin, you can uninstall it here."
3424
  msgstr ""
3425
- "Desactivación Galería de fotos plugin no eliminar cualquier dato que pueda "
3426
- "haber sido creado. Para eliminar completamente este plugin, puede "
3427
- "desinstalar desde aquí."
3428
 
3429
  #: ../admin/views/BWGViewUninstall_bwg.php:38
3430
  msgid "WARNING:"
@@ -3435,17 +3422,17 @@ msgid ""
3435
  "Once uninstalled, this can't be undone. You should use a Database Backup "
3436
  "plugin of WordPress to back up all the data first."
3437
  msgstr ""
3438
- "Una vez desinstalado, esto no se puede deshacer. Usted debe usar un plugin "
3439
- "de WordPress Database Backup para copias de seguridad de todos los datos "
3440
- "primero."
3441
 
3442
  #: ../admin/views/BWGViewUninstall_bwg.php:42
3443
  msgid "The following Database Tables will be deleted:"
3444
- msgstr "Se eliminarán las siguientes tablas de bases de datos:"
3445
 
3446
  #: ../admin/views/BWGViewUninstall_bwg.php:47
3447
  msgid "Database Tables"
3448
- msgstr "Tablas de base de datos"
3449
 
3450
  #: ../admin/views/BWGViewUninstall_bwg.php:70
3451
  msgid "Delete the folder containing uploaded images."
@@ -3453,19 +3440,19 @@ msgstr "Elimine la carpeta que contiene las imágenes cargadas."
3453
 
3454
  #: ../admin/views/BWGViewUninstall_bwg.php:76
3455
  msgid "Do you really want to uninstall Photo Gallery?"
3456
- msgstr "¿De verdad quieres desinstalar Galería de fotos?"
3457
 
3458
  #: ../admin/views/BWGViewUninstall_bwg.php:83
3459
  msgid ""
3460
  "You are About to Uninstall Photo Gallery from WordPress.\n"
3461
  "This Action Is Not Reversible."
3462
  msgstr ""
3463
- "Vas a Desinstalar Galería de fotos de WordPress.\n"
3464
  " Esta acción no es reversible."
3465
 
3466
  #: ../admin/views/BWGViewUninstall_bwg.php:133
3467
  msgid "The following Database Tables successfully deleted:"
3468
- msgstr "Las siguientes tablas de la base eliminan con éxito:"
3469
 
3470
  #: ../admin/views/BWGViewUninstall_bwg.php:149
3471
  msgid "The folder was successfully deleted."
@@ -3477,14 +3464,14 @@ msgstr "Se produjo un error al borrar la carpeta."
3477
 
3478
  #: ../admin/views/BWGViewUninstall_bwg.php:156
3479
  msgid "Click Here"
3480
- msgstr "Clickea aquí"
3481
 
3482
  #: ../admin/views/BWGViewUninstall_bwg.php:156
3483
  msgid ""
3484
  "To Finish the Uninstallation and Photo Gallery will be Deactivated "
3485
  "Automatically."
3486
  msgstr ""
3487
- "Para finalizar la desinstalación y Galería de fotos se desactivará "
3488
  "automáticamente."
3489
 
3490
  #: ../admin/views/BWGViewWidget.php:106
@@ -3495,7 +3482,7 @@ msgstr "Título:"
3495
 
3496
  #: ../admin/views/BWGViewWidget.php:140 ../framework/WDWLibrary.php:521
3497
  msgid "First"
3498
- msgstr "primero"
3499
 
3500
  #: ../admin/views/BWGViewWidget.php:141 ../framework/WDWLibrary.php:524
3501
  msgid "Last"
@@ -3503,7 +3490,7 @@ msgstr "Último"
3503
 
3504
  #: ../admin/views/BWGViewWidget.php:145
3505
  msgid "Count:"
3506
- msgstr "Incluido:"
3507
 
3508
  #: ../admin/views/BWGViewWidget.php:149
3509
  #: ../admin/views/BWGViewWidgetSlideshow.php:117
@@ -3513,7 +3500,7 @@ msgstr "Dimensiones:"
3513
 
3514
  #: ../admin/views/BWGViewWidgetSlideshow.php:122
3515
  msgid "Filmstrip height:"
3516
- msgstr "Altura Tira de imágenes:"
3517
 
3518
  #: ../admin/views/BWGViewWidgetTags.php:123
3519
  msgid "Show Tag Names:"
@@ -3521,7 +3508,7 @@ msgstr "Mostrar nombres de las etiquetas:"
3521
 
3522
  #: ../admin/views/BWGViewWidgetTags.php:129
3523
  msgid "Open in:"
3524
- msgstr "Ábrelo:"
3525
 
3526
  #: ../admin/views/BWGViewWidgetTags.php:130
3527
  msgid "page"
@@ -3529,7 +3516,7 @@ msgstr "página"
3529
 
3530
  #: ../admin/views/BWGViewWidgetTags.php:131
3531
  msgid "lightbox"
3532
- msgstr "caja ligera"
3533
 
3534
  #: ../admin/views/BWGViewWidgetTags.php:135
3535
  msgid "Number (0 for all):"
@@ -3537,7 +3524,7 @@ msgstr "Número (0 para todos):"
3537
 
3538
  #: ../admin/views/BWGViewWidgetTags.php:144
3539
  msgid "Transparent Background:"
3540
- msgstr "Fondo transparente:"
3541
 
3542
  #: ../admin/views/BWGViewWidgetTags.php:150
3543
  msgid "Background Color:"
@@ -3553,7 +3540,7 @@ msgstr "Robar"
3553
 
3554
  #: ../filemanager/view.php:63
3555
  msgid "File loading failed"
3556
- msgstr "Carga de archivos no"
3557
 
3558
  #: ../filemanager/view.php:65
3559
  msgid "Are you sure you want to permanently remove selected items?"
@@ -3562,7 +3549,7 @@ msgstr ""
3562
 
3563
  #: ../filemanager/view.php:66
3564
  msgid "This will cancel uploads. Continue?"
3565
- msgstr "Esto cancelará los archivos subidos. Continuar?"
3566
 
3567
  #: ../filemanager/view.php:68
3568
  msgid "Enter directory name"
@@ -3574,7 +3561,7 @@ msgstr "Introduzca el nuevo nombre"
3574
 
3575
  #: ../filemanager/view.php:70
3576
  msgid "Processing uploaded files..."
3577
- msgstr "Procesamiento subido archivos ..."
3578
 
3579
  #: ../filemanager/view.php:118
3580
  msgid "Up"
@@ -3586,11 +3573,11 @@ msgstr "Cree un directorio"
3586
 
3587
  #: ../filemanager/view.php:120
3588
  msgid "Rename item"
3589
- msgstr "Cambiar el nombre de elemento"
3590
 
3591
  #: ../filemanager/view.php:122
3592
  msgid "Copy"
3593
- msgstr "Copia"
3594
 
3595
  #: ../filemanager/view.php:123
3596
  msgid "Cut"
@@ -3606,15 +3593,15 @@ msgstr "Quitar elementos"
3606
 
3607
  #: ../filemanager/view.php:128
3608
  msgid "Upload files"
3609
- msgstr "Subir archivos"
3610
 
3611
  #: ../filemanager/view.php:133
3612
  msgid "Media library"
3613
- msgstr "Mediateca"
3614
 
3615
  #: ../filemanager/view.php:142
3616
  msgid "View thumbs"
3617
- msgstr "Ver los pulgares"
3618
 
3619
  #: ../filemanager/view.php:143
3620
  msgid "View list"
@@ -3622,7 +3609,7 @@ msgstr "Ver lista"
3622
 
3623
  #: ../filemanager/view.php:150
3624
  msgid "To change upload directory go to Options page."
3625
- msgstr "Para cambiar directorio de carga ir a la página Opciones."
3626
 
3627
  #: ../filemanager/view.php:275
3628
  msgid "Add selected images to gallery"
@@ -3630,17 +3617,17 @@ msgstr "Añadir imágenes seleccionadas a la galería"
3630
 
3631
  #: ../filemanager/view.php:285 ../filemanager/view.php:368
3632
  msgid "Thumbnail Maximum Dimensions:"
3633
- msgstr "Miniatura Dimensiones máximas:"
3634
 
3635
  #: ../filemanager/view.php:290 ../filemanager/view.php:373 ..
3636
  #: /frontend/views/BWGViewAlbum_compact_preview.php:603
3637
  #: /frontend/views/BWGViewAlbum_extended_preview.php:584
3638
  msgid "Back"
3639
- msgstr "atrás"
3640
 
3641
  #: ../filemanager/view.php:293 ../filemanager/view.php:376
3642
  msgid "Image Maximum Dimensions:"
3643
- msgstr "Dimensiones de la imagen Máximo:"
3644
 
3645
  #: ../filemanager/view.php:360
3646
  msgid "Import selected images"
@@ -3664,7 +3651,7 @@ msgstr "No se puede eliminar el tema por defecto"
3664
 
3665
  #: ../framework/WDWLibrary.php:82
3666
  msgid "The item is successfully set as default."
3667
- msgstr "El elemento se establece con éxito como predeterminado."
3668
 
3669
  #: ../framework/WDWLibrary.php:88
3670
  msgid "Options Succesfully Saved."
@@ -3672,15 +3659,15 @@ msgstr "Opciones guardadas satisfactoriamente."
3672
 
3673
  #: ../framework/WDWLibrary.php:124
3674
  msgid "A term with the name provided already exists."
3675
- msgstr "Existe un plazo con el nombre proporcionado ya."
3676
 
3677
  #: ../framework/WDWLibrary.php:130
3678
  msgid "Name field is required."
3679
- msgstr "Se requiere campo Nombre."
3680
 
3681
  #: ../framework/WDWLibrary.php:136
3682
  msgid "The slug must be unique."
3683
- msgstr "La bala debe ser único."
3684
 
3685
  #: ../framework/WDWLibrary.php:142
3686
  msgid "Changes must be saved."
@@ -3698,7 +3685,7 @@ msgstr "de"
3698
 
3699
  #: ../framework/WDWLibrary.php:516
3700
  msgid " item(s)"
3701
- msgstr "artículos)"
3702
 
3703
  #: ../framework/WDWLibrary.php:522
3704
  msgid "Previous"
@@ -3726,7 +3713,7 @@ msgstr "Ir a la última página"
3726
 
3727
  #: ../framework/WDWLibrary.php:562
3728
  msgid "Load More..."
3729
- msgstr "Carga más..."
3730
 
3731
  #: ../framework/WDWLibrary.php:846
3732
  msgid "Order by: "
@@ -3759,12 +3746,12 @@ msgstr "No hay imágenes en esta galería."
3759
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:626 ..
3760
  #: /frontend/views/BWGViewAlbum_extended_preview.php:595
3761
  msgid "Album is empty."
3762
- msgstr "Álbum está vacío."
3763
 
3764
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:749 ..
3765
  #: /frontend/views/BWGViewAlbum_extended_preview.php:731
3766
  msgid "Gallery is empty."
3767
- msgstr "Galería está vacía."
3768
 
3769
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:805 ..
3770
  #: /frontend/views/BWGViewAlbum_extended_preview.php:775
@@ -3773,7 +3760,7 @@ msgstr "Galería está vacía."
3773
  #: ../frontend/views/BWGViewSlideshow.php:1443
3774
  #: /frontend/views/BWGViewThumbnails.php:457
3775
  msgid "Play"
3776
- msgstr "Jugar"
3777
 
3778
  #: ../frontend/views/BWGViewAlbum_extended_preview.php:696 ..
3779
  #: /frontend/views/BWGViewAlbum_extended_preview.php:819
@@ -3786,7 +3773,7 @@ msgstr "Esconder"
3786
 
3787
  #: ../frontend/views/BWGViewGalleryBox.php:815
3788
  msgid "The image has been deleted."
3789
- msgstr "La imagen ha sido eliminado."
3790
 
3791
  #: ../frontend/views/BWGViewGalleryBox.php:839 ..
3792
  #: /frontend/views/BWGViewGalleryBox.php:1575
@@ -3820,7 +3807,7 @@ msgstr "Mostrar comentarios"
3820
 
3821
  #: ../frontend/views/BWGViewGalleryBox.php:1766
3822
  msgid "Hide Comments"
3823
- msgstr "Ocultar Comentarios"
3824
 
3825
  #: ../frontend/views/BWGViewGalleryBox.php:1911
3826
  msgid "Hide info"
@@ -3840,10 +3827,10 @@ msgstr "Salir de pantalla completa"
3840
  #: ../frontend/views/BWGViewSlideshow. php:1434
3841
  #: ../frontend/views/BWGViewSlideshow.php:1452
3842
  msgid "Pause"
3843
- msgstr "Pausa"
3844
 
3845
  #: ../frontend/views/BWGViewImage_browser.php:77 ..
3846
  #: /frontend/views/BWGViewSlideshow.php:124
3847
  #: ../frontend/views/BWGViewThumbnails. php:164
3848
  msgid "There is no gallery selected or the gallery was deleted."
3849
- msgstr "No hay galería seleccionada o la galería se ha eliminado."
2
  msgstr ""
3
  "Project-Id-Version: photo-gallery\n"
4
  "POT-Creation-Date: 15-11-02 09:15+000\n"
5
+ "PO-Revision-Date: 2015-11-11 18:22+0100\n"
6
  "Last-Translator: admin < a@mail.ru >\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
 
15
  #: ../photo-gallery-notices.php:188
16
  msgid "Leave A Review?"
17
+ msgstr "¿Quiere dejar un comentario?"
18
 
19
  #: ../photo-gallery-notices.php:189
20
  #, php-format
22
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
23
  "review on WordPress.org?"
24
  msgstr ""
25
+ "Esperamos que hayas disfrutado utilizando WordPress% s! ¿Dejaría un "
26
+ "comentario con su opinión en WordPress.org?"
27
 
28
  #: ../photo-gallery-notices.php:190
29
  msgid "Sure! I'd love to!"
35
 
36
  #: ../photo-gallery-notices.php:192
37
  msgid "Maybe Later"
38
+ msgstr "Quizá después"
39
 
40
  #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
41
  msgid "Never show again"
51
  "Thank you for using WordPress %s! We hope that you've found everything you "
52
  "need, but if you have any questions:"
53
  msgstr ""
54
+ "Gracias por usar WordPress% s ! Esperamos que haya encontrado todo lo que "
55
+ "necesita, pero si usted tiene alguna pregunta:"
56
 
57
  #: ../photo-gallery-notices.php:201
58
  msgid "Check out User Guide"
64
 
65
  #. Name of the plugin
66
  msgid "Photo Gallery"
67
+ msgstr "Photo Gallery"
68
 
69
  #. URI of the plugin
70
  msgid "https://web-dorado.com/products/wordpress-photo-gallery-plugin.html"
77
  "and pages. You can create unlimited number of galleries, combine them into "
78
  "albums, and provide descriptions and tags."
79
  msgstr ""
80
+ "Este plugin es una galería plenamente responsiva con funcionalidades "
81
+ "avanzada. Permite tener diferentes galerías de imágenes para tus posts y "
82
+ "páginas. Puedes crear un número ilimitado de galerías, combinarlas en "
83
  "álbumes, y proporcionar descripciones y etiquetas."
84
 
85
  #. Author of the plugin
114
 
115
  #: ../photo-gallery.php:95
116
  msgid "Generate Shortcode"
117
+ msgstr "Generar chortcode"
118
 
119
  #: ../photo-gallery.php:97
120
  msgid "Licensing"
122
 
123
  #: ../photo-gallery.php:100
124
  msgid "Featured Plugins"
125
+ msgstr "Plugins destacados"
126
 
127
  #: ../photo-gallery.php:101
128
  msgid "Featured Themes"
134
 
135
  #: ../photo-gallery.php:2446 ../photo-gallery.php:2615
136
  msgid "field is required."
137
+ msgstr "Se requiere el campo."
138
 
139
  #: ../photo-gallery.php:2447
140
  msgid "You must select an image file."
149
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
150
  "options. "
151
  msgstr ""
152
+ "No tiene el CLIENT_ID de Instagram. Debe introducir su valor en las opciones "
153
+ "Opciones-> Opciones para incrustar. "
154
 
155
  #: ../photo-gallery.php:2450
156
  msgid "Instagram recent post number must be between 1 and 33."
157
+ msgstr "El número de posts recientes de Instagram debe estar entre 1 y 33."
158
 
159
  #: ../photo-gallery.php:2451
160
  msgid "The gallery is not empty. Please delete all the images first."
161
+ msgstr "La galería no está vacía. Por favor, borre todas las imágenes primero."
 
162
 
163
  #: ../photo-gallery.php:2452
164
  msgid "Please enter url to embed."
165
+ msgstr "Por favor, introduzca la url para incrustar."
166
 
167
  #: ../photo-gallery.php:2453
168
  msgid "Error: cannot get response from the server."
178
 
179
  #: ../photo-gallery.php:2456
180
  msgid "Show order column"
181
+ msgstr "Mostrar orden de la columna"
182
 
183
  #: ../photo-gallery.php:2457 ../admin/views/BWGViewAlbums_bwg.php:63 ..
184
  #: /admin/views/BWGViewGalleries_bwg.php:63
185
  #: ../admin/views/BWGViewGalleries_bwg. php:521
186
  #: ../admin/views/BWGViewGalleries_bwg.php:725
187
  msgid "Hide order column"
188
+ msgstr "Ocultar la columna de orden"
189
 
190
  #: ../photo-gallery.php:2458
191
  msgid "Selected"
193
 
194
  #: ../photo-gallery.php:2459 ../framework/WDWLibrary.php:436
195
  msgid "item"
196
+ msgstr "objeto"
197
 
198
  #: ../photo-gallery.php:2460
199
  msgid "Items Succesfully Saved."
200
+ msgstr "Objeto correctamente guardado."
201
 
202
  #: ../photo-gallery.php:2461
203
  msgid "Item Succesfully Recovered."
204
+ msgstr "Objeto correctamente recuperado."
205
 
206
  #: ../photo-gallery.php:2462
207
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:953
208
  #: ../framework/WDWLibrary.php:94
209
  msgid "Item Succesfully Published."
210
+ msgstr "Objeto correctamente publicado."
211
 
212
  #: ../photo-gallery.php:2463
213
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:990
214
  #: ../framework/WDWLibrary.php:106
215
  msgid "Item Succesfully Unpublished."
216
+ msgstr "Objeto correctamente despublicado."
217
 
218
  #: ../photo-gallery.php:2464
219
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:908
220
  #: ../framework/WDWLibrary.php:58
221
  msgid "Item Succesfully Deleted."
222
+ msgstr "Objeto correctamente eliminado."
223
 
224
  #: ../photo-gallery.php:2465
225
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:944
232
 
233
  #: ../photo-gallery.php:2466
234
  msgid "Items Succesfully resized."
235
+ msgstr "Objeto redimensionado correctamente."
236
 
237
  #: ../photo-gallery.php:2467
238
  msgid "Watermarks Succesfully Set."
239
+ msgstr "Marcas de agua correctamente colocadas."
240
 
241
  #: ../photo-gallery.php:2468
242
  msgid "Items Succesfully Reset."
243
+ msgstr "Objeto correctamente reseteado."
244
 
245
  #: ../photo-gallery.php:2616
246
  msgid "This is not a valid email address."
247
+ msgstr "Esta no es una dirección de correo electrónico válida."
248
 
249
  #: ../photo-gallery.php:2617
250
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:744
258
 
259
  #: ../addons/addons.php:5
260
  msgid "Photo Gallery Facebook"
261
+ msgstr "Facebook para Photo Gallery"
262
 
263
  #: ../addons/addons.php:7
264
  msgid ""
267
  "galleries, embed individual images and videos or include Facebook albums "
268
  "within mixed type albums."
269
  msgstr ""
270
+ "Facebook para Photo Gallery es un add-on, que ayuda a mostrar las fotos y "
271
+ "vídeos de Facebook en Photo Gallery. Puede crear galerías que sean solo de "
272
+ "Facebook, incrustar imágenes y videos individuales, o incluir álbumes de "
273
  "Facebook dentro de álbumes de tipo mixto."
274
 
275
  #: ../addons/addons.php:12
276
  msgid "NextGen Gallery Import to Photo Gallery"
277
+ msgstr "Importar de NextGen Gallery a Photo Gallery"
278
 
279
  #: ../addons/addons.php:14
280
  msgid ""
286
 
287
  #: ../addons/addons.php:19
288
  msgid "Photo Gallery Export / Import"
289
+ msgstr "Importar/Exportar Photo Gallery"
290
 
291
  #: ../addons/addons.php:21
292
  msgid ""
294
  "one site to another. This way you can save the gallery/album options and "
295
  "manual modifications."
296
  msgstr ""
297
+ "Exportar/Importar Photo Gallery ayuda a mover las galerías y álbumes creados "
298
+ "a partir de un sitio a otro. De esta manera usted puede guardar las "
299
+ "galería / opciones de álbumes y modificaciones manuales."
300
 
301
  #: ../addons/addons.php:30
302
  msgid "Photo Gallery Add-ons"
303
+ msgstr "Complementos para Photo Gallery"
304
 
305
  #: ../addons/addons.php:33
306
  msgid "Attention"
307
+ msgstr "Atención"
308
 
309
  #: ../addons/addons.php:34
310
  msgid "Add-ons are supported by premium version of Photo Gallery"
311
  msgstr ""
312
+ "Los complementos son compatibles con la versión premium de Photo Gallery"
313
 
314
  #: ../addons/addons.php:69
315
  msgid "GET THIS ADD ON"
316
+ msgstr "OBTENER ESTE COMPLEMENTO"
317
 
318
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:727 ..
319
  #: /admin/controllers/BWGControllerGalleries_bwg.php:868
320
  #: /admin/controllers/BWGControllerOptions_bwg.php:384
321
  #: /admin/views/BWGViewTags_bwg.php:52 ../framework/WDWLibrary.php:46
322
  msgid "Item Succesfully Saved."
323
+ msgstr "Objeto correctamente guardado."
324
 
325
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
326
  #: /admin/controllers/BWGControllerGalleries_bwg.php:911
333
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:894 ..
334
  #: /framework/WDWLibrary.php:118
335
  msgid "Ordering Succesfully Saved."
336
+ msgstr "Reordenado guardado correctamente."
337
 
338
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:941 ..
339
  #: /framework/WDWLibrary.php:70
340
  msgid "Items Succesfully Deleted."
341
+ msgstr "Objeto correctamente eliminado."
342
 
343
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:978 ..
344
  #: /framework/WDWLibrary.php:100
345
  msgid "Items Succesfully Published."
346
+ msgstr "Objeto correctamente publicado."
347
 
348
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:1015 ..
349
  #: /framework/WDWLibrary.php:112
350
  msgid "Items Succesfully Unpublished."
351
+ msgstr "Objeto correctamente despublicado."
352
 
353
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:1100
354
  msgid "Thumb Succesfully Resized"
355
+ msgstr "Miniatura redimensionada correctamente"
356
 
357
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:45
358
  msgid "Albums/Galleries"
359
  msgstr "Álbumes / Galerías"
360
 
361
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
362
+ #: /admin/views/BWGViewAddAlbumsGalleries.php:77 ../admin/views/BWGViewAddTags.
363
+ #: php:51 ../admin/views/BWGViewAddTags.php:68
364
  #: ../admin/views/BWGViewAlbums_bwg. php:75
365
  #: ../admin/views/BWGViewAlbums_bwg.php:96
366
  #: /admin/views/BWGViewGalleries_bwg.php:75
367
  #: ../admin/views/BWGViewGalleries_bwg. php:97
368
+ #: ../admin/views/BWGViewTags_bwg.php:71 ../admin/views/BWGViewTags_bwg. php:91
369
+ #: ../admin/views/BWGViewThemes_bwg.php:110
370
  msgid "Name"
371
  msgstr "Nombre"
372
 
374
  #: /admin/views/BWGViewBWGShortcode.php:214
375
  #: ../admin/views/BWGViewGalleries_bwg. php:908
376
  msgid "Type"
377
+ msgstr "Tipo"
378
 
379
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
380
  #: ../admin/views/BWGViewWidget. php:111
381
  msgid "Album"
382
+ msgstr "Álbum"
383
 
384
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:91
385
  #: ../admin/views/BWGViewWidget. php:110
400
  #: ../admin/views/BWGViewAlbums_bwg.php:41
401
  #: ../admin/views/BWGViewAlbums_bwg.php:203
402
  #: ../admin/views/BWGViewGalleries_bwg.php:41 ..
403
+ #: /admin/views/BWGViewGalleries_bwg.php:219 ../admin/views/BWGViewOptions_bwg.
404
+ #: php:31 ../admin/views/BWGViewTags_bwg.php:44
405
+ #: ../admin/views/BWGViewThemes_bwg. php:40
406
+ #: ../admin/views/BWGViewThemes_bwg.php:251
407
  msgid "Read More in User Manual"
408
  msgstr "Leer más en el manual del usuario"
409
 
410
+ #: ../admin/views/BWGViewAlbums_bwg.php:55 ../admin/views/BWGViewGalleries_bwg.
411
+ #: php:55 ../admin/views/BWGViewThemes_bwg.php:80
 
412
  msgid "Add new"
413
  msgstr "Añadir nuevo"
414
 
415
+ #: ../admin/views/BWGViewAlbums_bwg.php:57 ../admin/views/BWGViewGalleries_bwg.
416
+ #: php:57 ../admin/views/BWGViewGalleries_bwg.php:700
 
417
  msgid "Changes made in this table should be saved."
418
  msgstr "Los cambios realizados en esta tabla se deben guardar."
419
 
420
+ #: ../admin/views/BWGViewAlbums_bwg.php:61 ../admin/views/BWGViewGalleries_bwg.
421
+ #: php:61 ../admin/views/BWGViewGalleries_bwg.php:723
422
+ #: ../filemanager/view.php:268 ../filemanager/view.php:353
 
423
  msgid "Select All"
424
  msgstr "Seleccionar todo"
425
 
426
+ #: ../admin/views/BWGViewAlbums_bwg.php:64 ../admin/views/BWGViewGalleries_bwg.
427
+ #: php:64
428
  msgid "Save Order"
429
+ msgstr "Guardar orden"
430
 
431
+ #: ../admin/views/BWGViewAlbums_bwg.php:65 ../admin/views/BWGViewGalleries_bwg.
432
+ #: php:65 ../admin/views/BWGViewGalleries_bwg.php:743
 
433
  msgid "Publish"
434
  msgstr "Publicar"
435
 
436
+ #: ../admin/views/BWGViewAlbums_bwg.php:66 ../admin/views/BWGViewGalleries_bwg.
437
+ #: php:66 ../admin/views/BWGViewGalleries_bwg.php:746
 
438
  msgid "Unpublish"
439
  msgstr "Despublicar"
440
 
441
+ #: ../admin/views/BWGViewAlbums_bwg.php:67 ../admin/views/BWGViewGalleries_bwg.
442
+ #: php:67 ../admin/views/BWGViewGalleries_bwg.php:747 ..
 
443
  #: /admin/views/BWGViewThemes_bwg.php:83
444
  msgid "Do you want to delete selected items?"
445
  msgstr "¿Desea eliminar los elementos seleccionados?"
453
  #: /admin/views/BWGViewGalleries_bwg.php:753 php:874
454
  #: ../admin/views/BWGViewGalleries_bwg.php:980
455
  #: /admin/views/BWGViewTags_bwg.php:63 ../admin/views/BWGViewTags_bwg.php:111
456
+ #: /admin/views/BWGViewTags_bwg.php:163 ../admin/views/BWGViewThemes_bwg.php:87
 
457
  #: /admin/views/BWGViewThemes_bwg.php:120
458
  #: ../admin/views/BWGViewThemes_bwg.php:167
459
  msgid "Delete"
466
  msgid "Thumbnail"
467
  msgstr "Miniatura"
468
 
469
+ #: ../admin/views/BWGViewAlbums_bwg.php:113 ../admin/views/BWGViewBWGShortcode.
470
+ #: php:209 ../admin/views/BWGViewGalleries_bwg.php:122 ..
 
471
  #: /admin/views/BWGViewGalleries_bwg.php:863
472
  msgid "Order"
473
  msgstr "Orden"
514
  #: ../admin/views/BWGViewAlbums_bwg.php:271
515
  #: ../admin/views/BWGViewGalleries_bwg. php:535
516
  #: ../admin/views/BWGViewOptions_bwg.php:94 ..
517
+ #: /admin/views/BWGViewTags_bwg.php:58 ../admin/views/BWGViewThemes_bwg.php:264
 
518
  msgid "Save"
519
  msgstr "Guardar"
520
 
556
  #: ../admin/views/BWGViewAlbums_bwg.php:309
557
  #: ../admin/views/BWGViewGalleries_bwg. php:624
558
  msgid "Published:"
559
+ msgstr "Publicado:"
560
 
561
  #: ../admin/views/BWGViewAlbums_bwg.php:312
562
  #: ../admin/views/BWGViewGalleries_bwg. php:627
611
  #: ../admin/views/BWGViewWidgetTags.php:125
612
  #: /admin/views/BWGViewWidgetTags.php:146
613
  msgid "No"
614
+ msgstr "No"
615
 
616
+ #: ../admin/views/BWGViewAlbums_bwg.php:314 ../admin/views/BWGViewBWGShortcode.
617
+ #: php:230 ../admin/views/BWGViewGalleries_bwg.php:629 ..
 
618
  #: /admin/views/BWGViewOptions_bwg.php:146
619
  #: ../admin/views/BWGViewOptions_bwg.php:156
620
  #: ../admin/views/BWGViewOptions_bwg.php:166
662
  #: ../admin/views/BWGViewThemes_bwg.php:621
663
  #: ../admin/views/BWGViewThemes_bwg.php:1362 ../admin/views/BWGViewThemes_bwg.
664
  #: php:1594 ../admin/views/BWGViewThemes_bwg.php:3312
665
+ #: /admin/views/BWGViewThemes_bwg.php:3357 ../admin/views/BWGViewUninstall_bwg.
666
+ #: php:79 ../admin/views/BWGViewWidgetSlideshow.php:143
 
667
  #: /admin/views/BWGViewWidgetTags.php:124
668
  #: ../admin/views/BWGViewWidgetTags.php:145
669
  msgid "Yes"
677
  #: ../admin/views/BWGViewAlbums_bwg.php:333
678
  #: ../admin/views/BWGViewGalleries_bwg. php:646
679
  msgid "Add Preview Image"
680
+ msgstr "Añadir vista previa de la imágen"
681
 
682
  #: ../admin/views/BWGViewAlbums_bwg.php:344
683
  msgid "Albums And Galleries:"
685
 
686
  #: ../admin/views/BWGViewAlbums_bwg.php:354
687
  msgid "Add Albums/Galleries"
688
+ msgstr "Añadir Álbumes / Galerías"
689
 
690
  #: ../admin/views/BWGViewAlbums_bwg.php:366
691
  msgid "Drag to re-order"
692
  msgstr "Arrastre para reordenar"
693
 
694
+ #: ../admin/views/BWGViewBWGShortcode.php:34 ../admin/views/BWGViewOptions_bwg.
695
+ #: php:307 ../admin/views/BWGViewOptions_bwg.php:460 ..
 
696
  #: /admin/views/BWGViewThemes_bwg.php:196
697
  #: ../admin/views/BWGViewThemes_bwg.php:229
698
  msgid "None"
712
 
713
  #: ../admin/views/BWGViewBWGShortcode.php:38
714
  msgid "Slice Horizontal"
715
+ msgstr "Presentación horizontal"
716
 
717
  #: ../admin/views/BWGViewBWGShortcode.php:39
718
  msgid "Slice Vertical"
719
+ msgstr "Presentación vertical"
720
 
721
  #: ../admin/views/BWGViewBWGShortcode.php:40
722
  msgid "Slide Horizontal"
723
+ msgstr "Presentación horizontal"
724
 
725
  #: ../admin/views/BWGViewBWGShortcode.php:41
726
  msgid "Slide Vertical"
727
+ msgstr "Presentación vertical"
728
 
729
  #: ../admin/views/BWGViewBWGShortcode.php:42
730
  msgid "Scale Out"
732
 
733
  #: ../admin/views/BWGViewBWGShortcode.php:43
734
  msgid "Scale In"
735
+ msgstr "Escalar a"
736
 
737
  #: ../admin/views/BWGViewBWGShortcode.php:44
738
  msgid "Block Scale"
748
 
749
  #: ../admin/views/BWGViewBWGShortcode.php:47
750
  msgid "Blind Horizontal"
751
+ msgstr "Ciego horizontal"
752
 
753
  #: ../admin/views/BWGViewBWGShortcode.php:48
754
  msgid "Blind Vertical"
755
+ msgstr "Ciego vertical"
756
 
757
  #: ../admin/views/BWGViewBWGShortcode.php:49
758
  #: ../admin/views/BWGViewBWGShortcode. php:216
759
  #: ../admin/views/BWGViewWidget.php:139 ../framework/WDWLibrary.php:851
760
  msgid "Random"
761
+ msgstr "Aleatorio"
762
 
763
  #: ../admin/views/BWGViewBWGShortcode.php:97
764
  msgid "Display"
765
+ msgstr "Mostrar"
766
 
767
+ #: ../admin/views/BWGViewBWGShortcode.php:116 ../admin/views/BWGViewThemes_bwg.
768
+ #: php:274
769
  msgid "Thumbnails"
770
  msgstr "Miniaturas"
771
 
774
  #: ../admin/views/BWGViewBWGShortcode.php:139 ..
775
  #: /admin/views/BWGViewBWGShortcode.php:147 php:151
776
  msgid "This view is disabled in free version."
777
+ msgstr "Esta vista está desactivada en la versión gratuita."
778
 
779
  #: ../admin/views/BWGViewBWGShortcode.php:120
780
  #: ../admin/views/BWGViewOptions_bwg. php:983
781
  #: ../admin/views/BWGViewThemes_bwg.php:275
782
  msgid "Masonry"
783
+ msgstr "Masonry"
784
 
785
+ #: ../admin/views/BWGViewBWGShortcode.php:124 ../admin/views/BWGViewThemes_bwg.
786
+ #: php:276
787
  msgid "Mosaic"
788
  msgstr "Mosaico"
789
 
791
  #: ../admin/views/BWGViewOptions_bwg. php:109
792
  #: ../admin/views/BWGViewThemes_bwg.php:277
793
  msgid "Slideshow"
794
+ msgstr "Presentación de diapositivas"
795
 
796
+ #: ../admin/views/BWGViewBWGShortcode.php:132 ../admin/views/BWGViewThemes_bwg.
797
+ #: php:278
798
  msgid "Image Browser"
799
  msgstr "Image Browser"
800
 
801
+ #: ../admin/views/BWGViewBWGShortcode.php:136 ../admin/views/BWGViewThemes_bwg.
802
+ #: php:279
803
  msgid "Compact Album"
804
+ msgstr "Álbum compacto"
805
 
806
+ #: ../admin/views/BWGViewBWGShortcode.php:140 ../admin/views/BWGViewThemes_bwg.
807
+ #: php:280
808
  msgid "Masonry Album"
809
+ msgstr "Álbum Mansonry"
810
 
811
+ #: ../admin/views/BWGViewBWGShortcode.php:144 ../admin/views/BWGViewThemes_bwg.
812
+ #: php:281
813
  msgid "Extended Album"
814
  msgstr "Álbum extendido"
815
 
816
+ #: ../admin/views/BWGViewBWGShortcode.php:148 ../admin/views/BWGViewThemes_bwg.
817
+ #: php:282
818
  msgid "Blog Style"
819
+ msgstr "Estilo blog"
820
 
821
  #: ../admin/views/BWGViewBWGShortcode.php:152
822
  #: ../admin/views/BWGViewOptions_bwg. php:113
830
 
831
  #: ../admin/views/BWGViewBWGShortcode.php:164
832
  msgid "Select Theme"
833
+ msgstr "Seleccionar el tema"
834
 
835
  #: ../admin/views/BWGViewBWGShortcode.php:176
836
  msgid "Gallery:"
837
+ msgstr "Galería:"
838
 
839
  #: ../admin/views/BWGViewBWGShortcode.php:179
840
  #: ../admin/views/BWGViewWidget.php:116
844
 
845
  #: ../admin/views/BWGViewBWGShortcode.php:191
846
  msgid "The selected album expanded content will be displayed."
847
+ msgstr "Se mostrará el contenido del álbum ampliado seleccionado."
848
 
849
  #: ../admin/views/BWGViewBWGShortcode.php:191
850
  msgid "Album:"
853
  #: ../admin/views/BWGViewBWGShortcode.php:194
854
  #: ../admin/views/BWGViewWidget.php:128
855
  msgid "Select Album"
856
+ msgstr "Seleccionar álbum"
857
 
858
  #: ../admin/views/BWGViewBWGShortcode.php:206
859
  msgid "Sort images by:"
860
  msgstr "Ordenar las imágenes por:"
861
 
862
+ #: ../admin/views/BWGViewBWGShortcode.php:210 ../admin/views/BWGViewThemes_bwg.
863
+ #: php:91
864
  msgid "Title"
865
  msgstr "Título"
866
 
870
 
871
  #: ../admin/views/BWGViewBWGShortcode.php:212
872
  #: ../admin/views/BWGViewGalleries_bwg. php:822
873
+ #: ../admin/views/BWGViewGalleries_bwg.php:838 ../framework/WDWLibrary. php:849
 
874
  msgid "Filename"
875
  msgstr "Nombre del archivo"
876
 
877
  #: ../admin/views/BWGViewBWGShortcode.php:213 ../framework/WDWLibrary.php:850
878
  msgid "Size"
879
+ msgstr "Tamaño"
880
 
881
  #: ../admin/views/BWGViewBWGShortcode.php:215
882
  msgid "Resolution"
884
 
885
  #: ../admin/views/BWGViewBWGShortcode.php:221
886
  msgid "Order images"
887
+ msgstr "Ordenar imágenes"
888
 
889
  #: ../admin/views/BWGViewBWGShortcode.php:223
890
  msgid "Ascending"
905
 
906
  #: ../admin/views/BWGViewEditThumb.php:224
907
  msgid "The thumbnail successfully croped."
908
+ msgstr "La miniatura se ha recortado con éxito."
909
 
910
  #: ../admin/views/BWGViewEditThumb.php:227
911
  msgid "Select the area for the thumbnail."
925
 
926
  #: ../admin/views/BWGViewEditThumb.php:721
927
  msgid "Removal"
928
+ msgstr "Eliminación"
929
 
930
  #: ../admin/views/BWGViewEditThumb.php:725
931
  msgid "Sepia"
939
  msgid "Saturate"
940
  msgstr "Saturar"
941
 
942
+ #: ../admin/views/BWGViewEditThumb.php:737 ../admin/views/BWGViewGalleries_bwg.
943
+ #: php:370 ../admin/views/BWGViewGalleries_bwg.php:925
 
944
  msgid "Do you want to reset the image?"
945
+ msgstr "¿Deseas restablecer la imagen?"
946
 
947
  #: ../admin/views/BWGViewEditThumb.php:737
948
  msgid "Reset image"
955
  #: ../admin/views/BWGViewEditThumb.php:765
956
  #: ../admin/views/BWGViewEditThumb.php:790
957
  msgid "Press for result"
958
+ msgstr "Presione para ver el resultado"
959
 
960
  #: ../admin/views/BWGViewEditThumb.php:788
961
  msgid "Contrast"
971
 
972
  #: ../admin/views/BWGViewGalleries_bwg.php:116
973
  msgid "Images count"
974
+ msgstr "Contador de imágenes"
975
 
976
  #: ../admin/views/BWGViewGalleries_bwg.php:211
977
  msgid "Edit gallery "
988
  #: ../admin/views/BWGViewGalleries_bwg.php:354 ..
989
  #: /admin/views/BWGViewGalleries_bwg.php:918
990
  msgid "Crop"
991
+ msgstr "Cortar"
992
 
993
  #: ../admin/views/BWGViewGalleries_bwg.php:371 ..
994
  #: /admin/views/BWGViewGalleries_bwg.php:733
1007
 
1008
  #: ../admin/views/BWGViewGalleries_bwg.php:553
1009
  msgid "Gallery content type:"
1010
+ msgstr "Tipo de contenido de la galería:"
1011
 
1012
  #: ../admin/views/BWGViewGalleries_bwg.php:556
1013
  msgid "Standard"
1014
+ msgstr "Estandar"
1015
 
1016
  #: ../admin/views/BWGViewGalleries_bwg.php:557
1017
  msgid "Instagram only"
1018
+ msgstr "Solo Instagram"
1019
 
1020
  #: ../admin/views/BWGViewGalleries_bwg.php:565 ..
1021
  #: /admin/views/BWGViewGalleries_bwg.php:788
1022
  msgid "Instagram username:"
1023
+ msgstr "Nombre de usuario de Instagram:"
1024
 
1025
  #: ../admin/views/BWGViewGalleries_bwg.php:566
1026
  #: ../admin/views/BWGViewOptions_bwg. php:670
1044
 
1045
  #: ../admin/views/BWGViewGalleries_bwg.php:569
1046
  msgid "Number of Instagram recent posts to add to gallery: "
1047
+ msgstr "Número de posts recientes de Instagram para añadir a la galería:"
1048
 
1049
  #: ../admin/views/BWGViewGalleries_bwg.php:573 ..
1050
  #: /admin/views/BWGViewGalleries_bwg.php:796
1051
  msgid "Instagram embed type:"
1052
+ msgstr "Tipo de inserción de Instagram:"
1053
 
1054
  #: ../admin/views/BWGViewGalleries_bwg.php:576 ..
1055
  #: /admin/views/BWGViewGalleries_bwg.php:799
1059
  #: ../admin/views/BWGViewGalleries_bwg.php:578 ..
1060
  #: /admin/views/BWGViewGalleries_bwg.php:801
1061
  msgid "Whole post"
1062
+ msgstr "Todo el post"
1063
 
1064
  #: ../admin/views/BWGViewGalleries_bwg.php:582
1065
  msgid "Gallery autoupdate option:"
1066
+ msgstr "Opciones de las actualizaciones automáticas de la galería:"
1067
 
1068
  #: ../admin/views/BWGViewGalleries_bwg.php:585
1069
  msgid "No update"
1071
 
1072
  #: ../admin/views/BWGViewGalleries_bwg.php:587
1073
  msgid "Add new media, keep old ones published."
1074
+ msgstr "Añadir nuevos contenidos multimedia, mantener los antiguos publicados."
 
1075
 
1076
  #: ../admin/views/BWGViewGalleries_bwg.php:589
1077
  msgid "Add new media, unpublish old ones."
1078
+ msgstr "Añadir nuevos contenidos multimedia, despublicar los viejos."
1079
 
1080
  #: ../admin/views/BWGViewGalleries_bwg.php:595
1081
  msgid "Add Instagram Gallery"
1082
+ msgstr "Añadir galería de Instagram"
1083
 
1084
  #: ../admin/views/BWGViewGalleries_bwg.php:707 ..
1085
  #: /admin/views/BWGViewGalleries_bwg.php:708
1088
 
1089
  #: ../admin/views/BWGViewGalleries_bwg.php:717
1090
  msgid "Embed Media"
1091
+ msgstr "Incrustar multimedia"
1092
 
1093
  #: ../admin/views/BWGViewGalleries_bwg.php:718
1094
  msgid "Bulk Embed"
1095
+ msgstr "Integración masiva"
1096
 
1097
  #: ../admin/views/BWGViewGalleries_bwg.php:728
1098
  msgid "Set Watermark"
1101
  #: ../admin/views/BWGViewGalleries_bwg.php:729 ..
1102
  #: /admin/views/BWGViewGalleries_bwg.php:816
1103
  msgid "Resize"
1104
+ msgstr "Redimensionar"
1105
 
1106
  #: ../admin/views/BWGViewGalleries_bwg.php:730
1107
  msgid "Recreate Thumbnail"
1114
 
1115
  #: ../admin/views/BWGViewGalleries_bwg.php:761
1116
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1117
+ msgstr ""
1118
+ "Introduzca la url de YouTube, Vimeo, Instagram, Flickr o Dailymotion aquí."
1119
 
1120
  #: ../admin/views/BWGViewGalleries_bwg.php:761
1121
  msgid "Help"
1123
 
1124
  #: ../admin/views/BWGViewGalleries_bwg.php:764
1125
  msgid "Close"
1126
+ msgstr "Cerrar"
1127
 
1128
  #: ../admin/views/BWGViewGalleries_bwg.php:765 ..
1129
  #: /admin/views/BWGViewGalleries_bwg.php:766
1139
 
1140
  #: ../admin/views/BWGViewGalleries_bwg.php:767
1141
  msgid "post"
1142
+ msgstr "post"
1143
 
1144
  #: ../admin/views/BWGViewGalleries_bwg.php:767
1145
  msgid ""
1146
  "to the end of URL if you want to embed the whole Instagram post, not only "
1147
  "its content."
1148
  msgstr ""
1149
+ "al final de la URL si desea incrustar el post entero de Instagram, no sólo "
1150
+ "su contenido."
1151
 
1152
  #: ../admin/views/BWGViewGalleries_bwg.php:779
1153
  msgid "Bulk embed from:"
1154
+ msgstr "Incrustación desde:"
1155
 
1156
  #: ../admin/views/BWGViewGalleries_bwg.php:781
1157
  msgid "instagram"
1163
 
1164
  #: ../admin/views/BWGViewGalleries_bwg.php:789
1165
  msgid "Bulk embed from Instagram is disabled in free version"
1166
+ msgstr ""
1167
+ "La incrustación de fotos de Instagram está deshabilitada en la versión "
1168
+ "gratuita."
1169
 
1170
  #: ../admin/views/BWGViewGalleries_bwg.php:792
1171
  msgid "Number of Instagram recent posts to add to gallery:"
1172
+ msgstr "Número de posts recientes de Instagram para añadir a la galería:"
1173
 
1174
  #: ../admin/views/BWGViewGalleries_bwg.php:810
1175
  msgid "Resize images to: "
1176
+ msgstr "Redimensionar las imágenes para: "
1177
 
1178
  #: ../admin/views/BWGViewGalleries_bwg.php:818
1179
  msgid "The maximum size of resized image."
1209
 
1210
  #: ../admin/views/BWGViewLicensing_bwg.php:31
1211
  msgid "Responsive Design and Layout"
1212
+ msgstr "Diseño y plantilla responsivo:"
1213
 
1214
  #: ../admin/views/BWGViewLicensing_bwg.php:32
1215
  msgid "5 Standard Gallery/Album Views"
1216
+ msgstr "5 visitas Standard Galería / Álbum"
1217
 
1218
  #: ../admin/views/BWGViewLicensing_bwg.php:33
1219
  msgid "Watermarking/ Advertising Possibility"
1220
+ msgstr "Opción para marca de agua / Publicidad"
1221
 
1222
  #: ../admin/views/BWGViewLicensing_bwg.php:34
1223
  msgid "Basic Tag Cloud Widget"
1224
+ msgstr "Widget básico de nube de etiquetas"
1225
 
1226
  #: ../admin/views/BWGViewLicensing_bwg.php:35
1227
  msgid "Image Download"
1229
 
1230
  #: ../admin/views/BWGViewLicensing_bwg.php:36
1231
  msgid "Photo Gallery Slideshow Widget"
1232
+ msgstr "Widget de presentación de fotos de Photo Gallery"
1233
 
1234
  #: ../admin/views/BWGViewLicensing_bwg.php:37
1235
  msgid "Photo Gallery Widget"
1236
+ msgstr "Widget Photo Gallery"
1237
 
1238
  #: ../admin/views/BWGViewLicensing_bwg.php:38
1239
  msgid "Slideshow/Lightbox Effects"
1240
+ msgstr "Efectos del lightbox/presentación de diapositivas."
1241
 
1242
  #: ../admin/views/BWGViewLicensing_bwg.php:39
1243
  msgid "Possibility of Editing/Creating New Themes"
1244
+ msgstr "Opción para editar/crear nuevos temas"
1245
 
1246
  #: ../admin/views/BWGViewLicensing_bwg.php:40
1247
  msgid "10 Pro Gallery/Album Views"
1248
+ msgstr "10 Visitas Pro Gallery / Álbum"
1249
 
1250
  #: ../admin/views/BWGViewLicensing_bwg.php:41
1251
  msgid "Image Commenting"
1252
+ msgstr "Comentarios de imagen"
1253
 
1254
  #: ../admin/views/BWGViewLicensing_bwg.php:42
1255
  msgid "Image Social Sharing"
1256
+ msgstr "Compartir imagen en redes sociales"
1257
 
1258
  #: ../admin/views/BWGViewLicensing_bwg.php:43
1259
  msgid "Photo Gallery Tags Cloud Widget"
1260
+ msgstr "Widget de nube de etiquetas de Photo Gallery"
1261
 
1262
  #: ../admin/views/BWGViewLicensing_bwg.php:44
1263
  msgid "Instagram Integration"
1264
+ msgstr "Integración de Instagram"
1265
 
1266
  #: ../admin/views/BWGViewLicensing_bwg.php:45
1267
  msgid "Integration"
1285
 
1286
  #: ../admin/views/BWGViewLicensing_bwg.php:99
1287
  msgid "Deactivate Photo Gallery plugin."
1288
+ msgstr "Desactivar el plugin Photo Gallery:"
1289
 
1290
  #: ../admin/views/BWGViewLicensing_bwg.php:100
1291
  msgid "Delete Photo Gallery plugin."
1292
+ msgstr "Eliminar el plugin Photo Gallery."
1293
 
1294
  #: ../admin/views/BWGViewLicensing_bwg.php:101
1295
  msgid "Install the downloaded commercial version of the plugin."
1296
+ msgstr "Instale la versión comercial descargada del plugin."
1297
 
1298
  #: ../admin/views/BWGViewOptions_bwg.php:30
1299
  msgid ""
1305
 
1306
  #: ../admin/views/BWGViewOptions_bwg.php:91
1307
  msgid "Edit options"
1308
+ msgstr "Editar opciones"
1309
 
1310
  #: ../admin/views/BWGViewOptions_bwg.php:95
1311
  #: ../admin/views/BWGViewThemes_bwg.php:267
1312
  msgid "Do you want to reset to default?"
1313
+ msgstr "¿Quieres restablecer los valores predeterminados?"
1314
 
1315
  #: ../admin/views/BWGViewOptions_bwg.php:99
1316
  msgid "Reset all options"
1318
 
1319
  #: ../admin/views/BWGViewOptions_bwg.php:104
1320
  msgid "Global options"
1321
+ msgstr "Opciones globales"
1322
 
1323
  #: ../admin/views/BWGViewOptions_bwg.php:105
1324
  msgid "Watermark"
1331
  #: ../admin/views/BWGViewOptions_bwg.php:107
1332
  #: ../admin/views/BWGViewThemes_bwg.php:283
1333
  msgid "Lightbox"
1334
+ msgstr "Lightbox"
1335
 
1336
  #: ../admin/views/BWGViewOptions_bwg.php:108
1337
  msgid "Album options"
1338
+ msgstr "Opciones de álbum"
1339
 
1340
  #: ../admin/views/BWGViewOptions_bwg.php:110
1341
  msgid "Thumbnail options"
1342
+ msgstr "Opciones de miniatura"
1343
 
1344
  #: ../admin/views/BWGViewOptions_bwg.php:111
1345
  msgid "Image options"
1347
 
1348
  #: ../admin/views/BWGViewOptions_bwg.php:112
1349
  msgid "Embed options"
1350
+ msgstr "Opciones para incrustar"
1351
 
1352
  #: ../admin/views/BWGViewOptions_bwg.php:123
1353
  msgid "Images directory:"
1354
+ msgstr "Directorio de las imágenes:"
1355
 
1356
  #: ../admin/views/BWGViewOptions_bwg.php:128
1357
  msgid ""
1358
  "Input an existing directory inside the Wordpress directory to store uploaded "
1359
  "images.<br />Old directory content will be moved to the new one."
1360
  msgstr ""
1361
+ "Introduce un directorio existente dentro del directorio de Wordpress para "
1362
+ "almacenar las imágenes subidas. <br /> El contenido del directorio antiguo "
1363
+ "se trasladará a la nueva localización."
1364
 
1365
+ #: ../admin/views/BWGViewOptions_bwg.php:133 ../admin/views/BWGViewOptions_bwg.
1366
+ #: php:1550
1367
  msgid "Image dimensions:"
1368
  msgstr "Dimensiones de la imagen:"
1369
 
1370
  #: ../admin/views/BWGViewOptions_bwg.php:138
1371
  msgid "The maximum size of the uploaded image (0 for original size)."
1372
+ msgstr "El tamaño máximo de la imagen subida (0 para el tamaño original)."
1373
 
1374
  #: ../admin/views/BWGViewOptions_bwg.php:143
1375
  msgid "Right click protection:"
1376
+ msgstr "Protección de click derecho:"
1377
 
1378
  #: ../admin/views/BWGViewOptions_bwg.php:148
1379
  msgid "Disable image right click possibility."
1380
+ msgstr "Desactivar que se pueda hacer click derecho en las fotos."
1381
 
1382
  #: ../admin/views/BWGViewOptions_bwg.php:153
1383
  msgid "Gallery role:"
1384
+ msgstr "Papel en la galería:"
1385
 
1386
  #: ../admin/views/BWGViewOptions_bwg.php:178
1387
  msgid "Only author can change an image."
1388
+ msgstr "Sólo el autor puede cambiar una imagen."
1389
 
1390
  #: ../admin/views/BWGViewOptions_bwg.php:193
1391
  msgid "Search box width:"
1393
 
1394
  #: ../admin/views/BWGViewOptions_bwg.php:202
1395
  msgid "Show \"Order by\" dropdown list:"
1396
+ msgstr "Mostrar el menú desplegable \"Ordenar por\":"
1397
 
1398
  #: ../admin/views/BWGViewOptions_bwg.php:212
1399
  msgid "Show tag box:"
1401
 
1402
  #: ../admin/views/BWGViewOptions_bwg.php:222
1403
  msgid "Preload images:"
1404
+ msgstr "Precargar imágenes:"
1405
 
1406
  #: ../admin/views/BWGViewOptions_bwg.php:232
1407
  msgid "Count of images:"
1408
+ msgstr "Contador de imágenes:"
1409
 
1410
  #: ../admin/views/BWGViewOptions_bwg.php:236
1411
  msgid "Count of images to preload (0 for all)."
1412
+ msgstr "Número de imágenes para precargar (0 para todas)"
1413
 
1414
  #: ../admin/views/BWGViewOptions_bwg.php:241
1415
  msgid "Import from Media Library:"
1416
+ msgstr "Importar medios de la biblioteca:"
1417
 
1418
  #: ../admin/views/BWGViewOptions_bwg.php:246
1419
  msgid "Enable import from Media Library in file manager."
1426
 
1427
  #: ../admin/views/BWGViewOptions_bwg.php:256
1428
  msgid "Disable this option only if it conflicts with your theme."
1429
+ msgstr "Desactive esta opción sólo si crea un conflicto con su tema."
1430
 
1431
  #: ../admin/views/BWGViewOptions_bwg.php:261
1432
  msgid "Meta auto-fill:"
1433
+ msgstr "Auto rellenado con datos meta:"
1434
 
1435
  #: ../admin/views/BWGViewOptions_bwg.php:266
1436
  msgid ""
1437
  "Enabling this option the meta description of the image will be automatically "
1438
  "filled in image description field."
1439
  msgstr ""
1440
+ "Al activar esta opción, la meta descripción de la imagen se pondrá "
1441
+ "automáticamente en el campo de descripción de la imagen."
1442
 
1443
  #: ../admin/views/BWGViewOptions_bwg.php:272
1444
  msgid "Show/hide custom post types:"
1445
+ msgstr "Mostrar/ocultar los tipos de posts personalizados:"
1446
 
1447
  #: ../admin/views/BWGViewOptions_bwg.php:282
1448
  msgid "Show/hide comments for custom post types:"
1449
+ msgstr "Mostrar/ocultar comentarios para tipos de posts personalizados:"
1450
 
1451
  #: ../admin/views/BWGViewOptions_bwg.php:303
1452
  msgid "Watermark type: "
1453
+ msgstr "Tipo de marca de agua:"
1454
 
1455
+ #: ../admin/views/BWGViewOptions_bwg.php:309 ../admin/views/BWGViewOptions_bwg.
1456
+ #: php:462 ../admin/views/BWGViewThemes_bwg.php:3366 ..
 
1457
  #: /admin/views/BWGViewWidgetTags.php:118
1458
  msgid "Text"
1459
  msgstr "Texto"
1460
 
1461
+ #: ../admin/views/BWGViewOptions_bwg.php:311 ../admin/views/BWGViewOptions_bwg.
1462
+ #: php:464 ../admin/views/BWGViewWidgetTags.php:119
 
1463
  msgid "Image"
1464
  msgstr "Imagen"
1465
 
1466
  #: ../admin/views/BWGViewOptions_bwg.php:317
1467
  msgid "Watermark url: "
1468
+ msgstr "URL de la marca de agua:"
1469
 
1470
+ #: ../admin/views/BWGViewOptions_bwg.php:330 ../admin/views/BWGViewOptions_bwg.
1471
+ #: php:485
1472
  msgid "Add Image"
1473
  msgstr "Añadir imagen"
1474
 
1475
  #: ../admin/views/BWGViewOptions_bwg.php:332
1476
  msgid "Only .png format is supported."
1477
+ msgstr "Sólo el formato .png es compatible."
1478
 
1479
  #: ../admin/views/BWGViewOptions_bwg.php:337
1480
  msgid "Watermark text: "
1481
+ msgstr "Texto de la marca de agua:"
1482
 
1483
  #: ../admin/views/BWGViewOptions_bwg.php:346
1484
  msgid "Watermark size: "
1485
+ msgstr "Tamaño de la marca de agua:"
1486
 
1487
  #: ../admin/views/BWGViewOptions_bwg.php:350
1488
  msgid "Enter size of watermark in percents according to image."
1496
 
1497
  #: ../admin/views/BWGViewOptions_bwg.php:364
1498
  msgid "Watermark font style: "
1499
+ msgstr "Estilo de fuente de la marca de agua:"
1500
 
1501
  #: ../admin/views/BWGViewOptions_bwg.php:393
1502
  msgid "Watermark color:"
1503
+ msgstr "Color de la marca de agua:"
1504
 
1505
  #: ../admin/views/BWGViewOptions_bwg.php:402
1506
  msgid "Watermark opacity:"
1507
+ msgstr "Opacidad de la marca de agua:"
1508
 
1509
  #: ../admin/views/BWGViewOptions_bwg.php:406
1510
  msgid "Opacity value must be in the range of 0 to 100."
1511
+ msgstr "El valor de opacidad debe estar en el rango de 0 a 100."
1512
 
1513
  #: ../admin/views/BWGViewOptions_bwg.php:411
1514
  msgid "Watermark position:"
1516
 
1517
  #: ../admin/views/BWGViewOptions_bwg.php:456
1518
  msgid "Advertisement type:"
1519
+ msgstr "Tipo de anuncio:"
1520
 
1521
  #: ../admin/views/BWGViewOptions_bwg.php:470
1522
  msgid "Advertisement url:"
1523
+ msgstr "URL del anuncio:"
1524
 
1525
  #: ../admin/views/BWGViewOptions_bwg.php:487
1526
  msgid ""
1527
  "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
1528
  "png,.gif formats are supported)"
1529
  msgstr ""
1530
+ "Introduce la url completa del archivo de imagen o añade el archivo desde la "
1531
+ "página de Opciones. (.jpg, .jpeg, .png, .gif son formatos admitidos)"
1532
 
1533
  #: ../admin/views/BWGViewOptions_bwg.php:492
1534
  msgid "Advertisement text:"
1535
+ msgstr "Texto del anuncio:"
1536
 
1537
  #: ../admin/views/BWGViewOptions_bwg.php:501
1538
  msgid "Advertisement link:"
1539
+ msgstr "Enlace al anuncio:"
1540
 
1541
  #: ../admin/views/BWGViewOptions_bwg.php:505
1542
  msgid "Enter a URL to open when the advertisement banner is clicked."
1546
 
1547
  #: ../admin/views/BWGViewOptions_bwg.php:510
1548
  msgid "Advertisement dimensions:"
1549
+ msgstr "Dimensiones del anuncio:"
1550
 
1551
  #: ../admin/views/BWGViewOptions_bwg.php:515
1552
  msgid "Maximum values for watermark image width and height."
1553
+ msgstr "Valores máximos de anchura y altura de la marca de agua."
1554
 
1555
  #: ../admin/views/BWGViewOptions_bwg.php:520
1556
  msgid "Advertisement font size:"
1558
 
1559
  #: ../admin/views/BWGViewOptions_bwg.php:529
1560
  msgid "Advertisement font style:"
1561
+ msgstr "Estilo de la fuente del anuncio:"
1562
 
1563
  #: ../admin/views/BWGViewOptions_bwg.php:546
1564
  msgid "Advertisement color:"
1565
+ msgstr "Color del anuncio:"
1566
 
1567
  #: ../admin/views/BWGViewOptions_bwg.php:555
1568
  msgid "Advertisement opacity:"
1569
+ msgstr "Opacidad del anuncio:"
1570
 
1571
  #: ../admin/views/BWGViewOptions_bwg.php:559
1572
  #: ../admin/views/BWGViewThemes_bwg.php:403
1589
 
1590
  #: ../admin/views/BWGViewOptions_bwg.php:564
1591
  msgid "Advertisement position:"
1592
+ msgstr "Posición del anuncio:"
1593
 
1594
  #: ../admin/views/BWGViewOptions_bwg.php:609
1595
  msgid "Full width lightbox:"
1596
+ msgstr "Ancho total del lightbox:"
1597
 
1598
  #: ../admin/views/BWGViewOptions_bwg.php:614
1599
  msgid "Enable full width feature for the lightbox."
1600
+ msgstr "Habilitar la función de anchura completa para el lightbox."
1601
 
1602
  #: ../admin/views/BWGViewOptions_bwg.php:619
1603
  msgid "Lightbox dimensions:"
1604
+ msgstr "Dimensiones del lightbox:"
1605
 
1606
  #: ../admin/views/BWGViewOptions_bwg.php:629
1607
  msgid "Lightbox effect:"
1608
+ msgstr "Efecto del lightbox:"
1609
 
1610
  #: ../admin/views/BWGViewOptions_bwg.php:636
1611
  msgid "This effect is disabled in free version."
1613
 
1614
  #: ../admin/views/BWGViewOptions_bwg.php:646
1615
  msgid "Lightbox autoplay:"
1616
+ msgstr "Reproducción automática del lightbox:"
1617
 
1618
+ #: ../admin/views/BWGViewOptions_bwg.php:656 ../admin/views/BWGViewOptions_bwg.
1619
+ #: php:1067 ../admin/views/BWGViewOptions_bwg.php:1523 ..
 
1620
  #: /admin/views/BWGViewWidgetSlideshow.php:138
1621
  msgid "Time interval:"
1622
  msgstr "Intervalo de tiempo:"
1623
 
1624
  #: ../admin/views/BWGViewOptions_bwg.php:665
1625
  msgid "Enable filmstrip:"
1626
+ msgstr "Habilitar tira de imágenes:"
1627
 
1628
  #: ../admin/views/BWGViewOptions_bwg.php:675
1629
  msgid "Filmstrip size:"
1630
+ msgstr "Tamaño de la tira de imágenes:"
1631
 
1632
  #: ../admin/views/BWGViewOptions_bwg.php:684
1633
  msgid "Display hit counter:"
1634
+ msgstr "Mostrar contador de visitas:"
1635
 
1636
+ #: ../admin/views/BWGViewOptions_bwg.php:694 ../admin/views/BWGViewOptions_bwg.
1637
+ #: php:1106
1638
  msgid "Show Next / Previous buttons:"
1639
+ msgstr "Mostrar botones Siguiente/Anterior:"
1640
 
1641
+ #: ../admin/views/BWGViewOptions_bwg.php:697 ../admin/views/BWGViewOptions_bwg.
1642
+ #: php:1109
1643
  msgid "On hover"
1644
+ msgstr "Flotando"
1645
 
1646
+ #: ../admin/views/BWGViewOptions_bwg.php:698 ../admin/views/BWGViewOptions_bwg.
1647
+ #: php:1110
1648
  msgid "Always"
1649
  msgstr "Siempre"
1650
 
1651
+ #: ../admin/views/BWGViewOptions_bwg.php:704 ../admin/views/BWGViewOptions_bwg.
1652
+ #: php:1116
1653
  msgid "Enable control buttons:"
1654
  msgstr "Habilitar botones de control:"
1655
 
1667
 
1668
  #: ../admin/views/BWGViewOptions_bwg.php:768
1669
  msgid "Full width info:"
1670
+ msgstr "Anchura completa de la información:"
1671
 
1672
  #: ../admin/views/BWGViewOptions_bwg.php:773
1673
  msgid "Display image information based on the lightbox dimensions."
1674
+ msgstr "Mostrar la información de la imagen según el tamaño del lightbox."
 
 
1675
 
1676
  #: ../admin/views/BWGViewOptions_bwg.php:784
1677
  msgid "Enable rating:"
1683
 
1684
  #: ../admin/views/BWGViewOptions_bwg.php:808
1685
  msgid "Enable comments moderation:"
1686
+ msgstr "Habilitar la moderación de comentarios:"
1687
 
1688
  #: ../admin/views/BWGViewOptions_bwg.php:818
1689
  msgid "Enable Email for comments:"
1690
+ msgstr "Habilitar correo electrónico para comentarios:"
1691
 
1692
  #: ../admin/views/BWGViewOptions_bwg.php:828
1693
  msgid "Enable Captcha for comments:"
1695
 
1696
  #: ../admin/views/BWGViewOptions_bwg.php:838
1697
  msgid "Enable original image display button:"
1698
+ msgstr "Habilitar botón de visualización de la imagen original:"
1699
 
1700
  #: ../admin/views/BWGViewOptions_bwg.php:848
1701
  msgid "Enable download button:"
1723
 
1724
  #: ../admin/views/BWGViewOptions_bwg.php:908
1725
  msgid "Show images count:"
1726
+ msgstr "Mostrar contador de imágenes:"
1727
 
1728
  #: ../admin/views/BWGViewOptions_bwg.php:918
1729
  msgid "Enable loop:"
1735
 
1736
  #: ../admin/views/BWGViewOptions_bwg.php:951
1737
  msgid "Number of album columns:"
1738
+ msgstr "Número de columnas del álbum:"
1739
 
1740
  #: ../admin/views/BWGViewOptions_bwg.php:960
1741
  msgid "Albums per page:"
1747
 
1748
  #: ../admin/views/BWGViewOptions_bwg.php:979
1749
  msgid "Album view type:"
1750
+ msgstr "Tipo de vista del álbum:"
1751
 
1752
  #: ../admin/views/BWGViewOptions_bwg.php:989
1753
  msgid "Show title:"
1754
  msgstr "Mostrar título:"
1755
 
1756
+ #: ../admin/views/BWGViewOptions_bwg.php:992 ../admin/views/BWGViewOptions_bwg.
1757
+ #: php:1344
1758
  msgid "Show on hover"
1759
+ msgstr "Mostrar al pasar por encima"
1760
 
1761
+ #: ../admin/views/BWGViewOptions_bwg.php:993 ../admin/views/BWGViewOptions_bwg.
1762
+ #: php:1345
1763
  msgid "Always show"
1764
+ msgstr "Mostrar siempre"
1765
 
1766
+ #: ../admin/views/BWGViewOptions_bwg.php:994 ../admin/views/BWGViewOptions_bwg.
1767
+ #: php:1346
1768
  msgid "Don't show"
1769
  msgstr "No volver a mostrar"
1770
 
1771
  #: ../admin/views/BWGViewOptions_bwg.php:1000
1772
  msgid "Show album/gallery name:"
1773
+ msgstr "Mostrar el nombre del álbum/galería:"
1774
 
1775
  #: ../admin/views/BWGViewOptions_bwg.php:1010
1776
  msgid "Enable extended album description:"
1777
+ msgstr "Habilitar descripción de álbum extendida:"
1778
 
1779
  #: ../admin/views/BWGViewOptions_bwg.php:1020
1780
  msgid "Album thumbnail dimensions:"
1781
+ msgstr "Dimensiones de la miniatura del álbum:"
1782
 
1783
  #: ../admin/views/BWGViewOptions_bwg.php:1030
1784
  msgid "Extended album height:"
1785
+ msgstr "Altura del álbum extendido:"
1786
 
1787
  #: ../admin/views/BWGViewOptions_bwg.php:1050 ..
1788
  #: /admin/views/BWGViewWidgetSlideshow.php:126
1789
  msgid "Slideshow effect:"
1790
+ msgstr "Efecto en la presentación:"
1791
 
1792
  #: ../admin/views/BWGViewOptions_bwg.php:1076
1793
  msgid "Slideshow dimensions:"
1794
+ msgstr "Dimensión de la presentación:"
1795
 
1796
  #: ../admin/views/BWGViewOptions_bwg.php:1086
1797
  #: ../admin/views/BWGViewOptions_bwg. php:1582
1801
  #: ../admin/views/BWGViewOptions_bwg.php:1096 ..
1802
  #: /admin/views/BWGViewWidgetSlideshow.php:142
1803
  msgid "Enable shuffle:"
1804
+ msgstr "Activar función aleatoria:"
1805
 
1806
  #: ../admin/views/BWGViewOptions_bwg.php:1125
1807
  msgid "Enable slideshow filmstrip:"
1808
+ msgstr "Habilitar tira de imágenes en la presentación:"
1809
 
1810
  #: ../admin/views/BWGViewOptions_bwg.php:1133
1811
  msgid "Slideshow filmstrip size:"
1812
+ msgstr "Tamaño de la tira de imágenes en la presentación:"
1813
 
1814
  #: ../admin/views/BWGViewOptions_bwg.php:1146
1815
  #: ../admin/views/BWGViewOptions_bwg. php:1573
1816
  msgid "Enable image title:"
1817
  msgstr "Habilitar título de la imagen:"
1818
 
1819
+ #: ../admin/views/BWGViewOptions_bwg.php:1154 ../admin/views/BWGViewThemes_bwg.
1820
+ #: php:440 ../admin/views/BWGViewThemes_bwg.php:1420
 
1821
  msgid "Title position:"
1822
+ msgstr "Posición del título:"
1823
 
1824
  #: ../admin/views/BWGViewOptions_bwg.php:1175
1825
  msgid "Image title position on slideshow"
1826
+ msgstr "Posición del título de la foto en la presentación"
1827
 
1828
  #: ../admin/views/BWGViewOptions_bwg.php:1180
1829
  msgid "Full width title:"
1830
+ msgstr "Anchura completa del título:"
1831
 
1832
  #: ../admin/views/BWGViewOptions_bwg.php:1185
1833
  msgid "Display image title based on the slideshow dimensions."
1834
  msgstr ""
1835
+ "Mostrar el título de la imagen en función del tamaño de la presentación."
 
1836
 
1837
  #: ../admin/views/BWGViewOptions_bwg.php:1189
1838
  msgid "Enable image description: "
1839
+ msgstr "Habilitar descripción de la imagen: "
1840
 
1841
  #: ../admin/views/BWGViewOptions_bwg.php:1197
1842
  msgid "Description position:"
1843
+ msgstr "Posición de la descripción:"
1844
 
1845
  #: ../admin/views/BWGViewOptions_bwg.php:1218
1846
  msgid "Image description position on slideshow"
1847
+ msgstr "Posición de la descripción en la presentación de imágenes"
1848
 
1849
  #: ../admin/views/BWGViewOptions_bwg.php:1223
1850
  msgid "Enable slideshow Music:"
1851
+ msgstr "Habilitar música en la presentación de imágenes:"
1852
 
1853
  #: ../admin/views/BWGViewOptions_bwg.php:1233
1854
  msgid "Music url:"
1855
+ msgstr "URL de la música:"
1856
 
1857
  #: ../admin/views/BWGViewOptions_bwg.php:1246
1858
  msgid "Add Music"
1864
 
1865
  #: ../admin/views/BWGViewOptions_bwg.php:1248
1866
  msgid "formats are supported."
1867
+ msgstr "formatos compatibles."
1868
 
1869
  #: ../admin/views/BWGViewOptions_bwg.php:1264
1870
  msgid "Masonry:"
1871
+ msgstr "Mansonry:"
1872
 
1873
  #: ../admin/views/BWGViewOptions_bwg.php:1267
1874
  #: ../admin/views/BWGViewOptions_bwg. php:1278
1886
 
1887
  #: ../admin/views/BWGViewOptions_bwg.php:1284
1888
  msgid "Resizable mosaic:"
1889
+ msgstr "Mosaico redimensionable:"
1890
 
1891
  #: ../admin/views/BWGViewOptions_bwg.php:1294
1892
  msgid "Total width of mosaic:"
1893
+ msgstr "Ancho total del mosaico:"
1894
 
1895
  #: ../admin/views/BWGViewOptions_bwg.php:1298
1896
  msgid "Width of mosaic as a percentage of container's width."
1897
+ msgstr "Ancho del mosaico como un porcentaje del ancho de contenedor."
1898
 
1899
  #: ../admin/views/BWGViewOptions_bwg.php:1303
1900
  msgid "Number of image columns:"
1901
+ msgstr "Número de columnas de imágenes:"
1902
 
1903
  #: ../admin/views/BWGViewOptions_bwg.php:1312
1904
  msgid "Images per page:"
1906
 
1907
  #: ../admin/views/BWGViewOptions_bwg.php:1321
1908
  msgid "Generated thumbnail dimensions:"
1909
+ msgstr "Dimensiones de las miniaturas generadas:"
1910
 
1911
  #: ../admin/views/BWGViewOptions_bwg.php:1326
1912
  msgid ""
1913
  "The maximum size of the generated thumbnail. Its dimensions should be larger "
1914
  "than the ones of the frontend thumbnail."
1915
  msgstr ""
1916
+ "El tamaño máximo de la miniatura generada. Sus dimensiones deben ser más "
1917
  "grandes que las de la miniatura frontend."
1918
 
1919
  #: ../admin/views/BWGViewOptions_bwg.php:1331
1920
  msgid "Frontend thumbnail dimensions:"
1921
+ msgstr "Dimensiones de la miniatura Frontend:"
1922
 
1923
  #: ../admin/views/BWGViewOptions_bwg.php:1336
1924
  msgid ""
1925
  "The default size of the thumbnail which will be displayed in the website"
1926
+ msgstr ""
1927
+ "El tamaño predeterminado de la miniatura que se mostrará en la página web"
1928
 
1929
  #: ../admin/views/BWGViewOptions_bwg.php:1341
1930
  msgid "Show image title:"
1936
 
1937
  #: ../admin/views/BWGViewOptions_bwg.php:1360
1938
  msgid "Show description in Vertical Masonry view:"
1939
+ msgstr "Mostrar descripción en la vista vertical Masonry:"
1940
 
1941
  #: ../admin/views/BWGViewOptions_bwg.php:1369
1942
  msgid "Enable image pagination:"
1943
+ msgstr "Habilitar paginación en las imagen:"
1944
 
1945
  #: ../admin/views/BWGViewOptions_bwg.php:1377
1946
  msgid "Thumbnail click action:"
1947
+ msgstr "Acción del click sobre la miniatura:"
1948
 
1949
  #: ../admin/views/BWGViewOptions_bwg.php:1379
1950
  msgid "Open lightbox"
1951
+ msgstr "Abrir lightbox"
1952
 
1953
  #: ../admin/views/BWGViewOptions_bwg.php:1380
1954
  msgid "Redirect to url"
1956
 
1957
  #: ../admin/views/BWGViewOptions_bwg.php:1381
1958
  msgid "Do Nothing"
1959
+ msgstr "No hacer nada"
1960
 
1961
  #: ../admin/views/BWGViewOptions_bwg.php:1386
1962
  msgid "Open in a new window:"
1964
 
1965
  #: ../admin/views/BWGViewOptions_bwg.php:1394
1966
  msgid "Play icon over the video thumbnail:"
1967
+ msgstr "Icono de reproducir sobre la miniatura del vídeo:"
1968
 
1969
  #: ../admin/views/BWGViewOptions_bwg.php:1411
1970
  msgid "Enable image title for Image Browser view:"
1971
+ msgstr "Habilitar título de la imagen para la vista Image Browser"
1972
 
1973
  #: ../admin/views/BWGViewOptions_bwg.php:1421
1974
  msgid "Enable image description for Image Browser view:"
1976
 
1977
  #: ../admin/views/BWGViewOptions_bwg.php:1431
1978
  msgid "Image width for Image Browser view:"
1979
+ msgstr "Ancho de la imagen en la vista tipo navegador:"
1980
 
1981
  #: ../admin/views/BWGViewOptions_bwg.php:1440
1982
  msgid "The Blog Style view is disabled in free version."
1983
+ msgstr "La vista estilo Blog está deshabilitada en la versión gratuita."
1984
 
1985
  #: ../admin/views/BWGViewOptions_bwg.php:1445
1986
  msgid "Enable image title for Blog Style view:"
1987
+ msgstr "Habilitar título de la imagen para la vista en el estilo Blog:"
1988
 
1989
  #: ../admin/views/BWGViewOptions_bwg.php:1455
1990
  msgid "Image width for Blog Style view:"
1991
+ msgstr "Ancho de la imagen en la vista tipo blog:"
1992
 
1993
  #: ../admin/views/BWGViewOptions_bwg.php:1464
1994
  msgid "Images per page in Blog Style view:"
1995
+ msgstr "Imágenes por página en la vista tipo Blog:"
1996
 
1997
  #: ../admin/views/BWGViewOptions_bwg.php:1473
1998
  msgid "Enable pagination for Blog Style view:"
1999
+ msgstr "Habilitar paginación para la vista estilo Blog:"
2000
 
2001
  #: ../admin/views/BWGViewOptions_bwg.php:1490
2002
  msgid "Gallery autoupdate interval:"
2003
+ msgstr "Intervalo de actualizaciones automáticas de la galería:"
2004
 
2005
  #: ../admin/views/BWGViewOptions_bwg.php:1494
2006
  msgid "hour"
2007
+ msgstr "hora"
2008
 
2009
  #: ../admin/views/BWGViewOptions_bwg.php:1496
2010
  msgid "min"
2012
 
2013
  #: ../admin/views/BWGViewOptions_bwg.php:1497
2014
  msgid "Autoupdatable galleries are disabled in free version."
2015
+ msgstr ""
2016
+ "Las actualización automáticas de las galerías están desactivadas en la "
2017
+ "versión gratuita."
2018
 
2019
  #: ../admin/views/BWGViewOptions_bwg.php:1507
2020
  msgid "galleries are disabled in free version."
2021
+ msgstr "galerías están desactivadas en la versión gratuita."
2022
 
2023
  #: ../admin/views/BWGViewOptions_bwg.php:1532
2024
  msgid "Max. number of images:"
2025
+ msgstr "Número máximo de imágenes:"
2026
 
2027
  #: ../admin/views/BWGViewOptions_bwg.php:1541
2028
  msgid "Carousel image ratio:"
2029
+ msgstr "Relación de imagen del Carrusel:"
2030
 
2031
  #: ../admin/views/BWGViewOptions_bwg.php:1560
2032
  msgid "Fixed width:"
2034
 
2035
  #: ../admin/views/BWGViewOptions_bwg.php:1592
2036
  msgid "Container fit:"
2037
+ msgstr "Ajuste del contenedor:"
2038
 
2039
  #: ../admin/views/BWGViewOptions_bwg.php:1602
2040
  msgid "Next/Previous buttons:"
2041
+ msgstr "Botones Siguiente/Previo:"
2042
 
2043
  #: ../admin/views/BWGViewOptions_bwg.php:1612
2044
  msgid "Play/Pause button:"
2045
+ msgstr "Botón de Reproducir/Pausar:"
2046
 
2047
  #: ../admin/views/BWGViewOptions_bwg.php:1625
2048
  msgid "Carousel view is disabled in free version."
2049
+ msgstr "La vista de carrusel está deshabilitada en la versión gratuita."
2050
 
2051
  #: ../admin/views/BWGViewTags_bwg.php:43
2052
  msgid "This section allows you to create, edit and delete tags."
2054
 
2055
  #: ../admin/views/BWGViewTags_bwg.php:107
2056
  msgid "Count"
2057
+ msgstr "Contador"
2058
 
2059
  #: ../admin/views/BWGViewTags_bwg.php:126
2060
  msgid "Add Tag"
2061
+ msgstr "Añadir Etiqueta"
2062
 
2063
  #: ../admin/views/BWGViewThemes_bwg.php:39
2064
  msgid "This section allows you to create, edit and delete themes."
2082
 
2083
  #: ../admin/views/BWGViewThemes_bwg.php:199
2084
  msgid "Dashed"
2085
+ msgstr "Discontinuado"
2086
 
2087
  #: ../admin/views/BWGViewThemes_bwg.php:200
2088
  #: ../admin/views/BWGViewThemes_bwg.php:237
2099
 
2100
  #: ../admin/views/BWGViewThemes_bwg.php:203
2101
  msgid "Inset"
2102
+ msgstr "En el set"
2103
 
2104
  #: ../admin/views/BWGViewThemes_bwg.php:204
2105
  msgid "Outset"
2121
  #: ../admin/views/BWGViewThemes_bwg.php:2564 ../admin/views/BWGViewThemes_bwg.
2122
  #: php:3022
2123
  msgid "Right"
2124
+ msgstr "Derecha"
2125
 
2126
  #: ../admin/views/BWGViewThemes_bwg.php:224
2127
  msgid "Lighter"
2128
+ msgstr "Más claro"
2129
 
2130
  #: ../admin/views/BWGViewThemes_bwg.php:225
2131
  msgid "Normal"
2132
+ msgstr "Normal"
2133
 
2134
  #: ../admin/views/BWGViewThemes_bwg.php:226
2135
  msgid "Bold"
2136
+ msgstr "Negrita"
2137
 
2138
  #: ../admin/views/BWGViewThemes_bwg.php:230
2139
  msgid "Rotate"
2140
+ msgstr "Rotar"
2141
 
2142
  #: ../admin/views/BWGViewThemes_bwg.php:231
2143
  msgid "Scale"
2144
+ msgstr "Escalar"
2145
 
2146
  #: ../admin/views/BWGViewThemes_bwg.php:232
2147
  msgid "Skew"
2148
+ msgstr "Distorsionar perspectiva:"
2149
 
2150
  #: ../admin/views/BWGViewThemes_bwg.php:235
2151
  msgid "Chevron"
2152
+ msgstr "Chevron"
2153
 
2154
  #: ../admin/views/BWGViewThemes_bwg.php:236
2155
  msgid "Angle"
2161
 
2162
  #: ../admin/views/BWGViewThemes_bwg.php:241
2163
  msgid "Bell"
2164
+ msgstr "Timbre"
2165
 
2166
  #: ../admin/views/BWGViewThemes_bwg.php:242
2167
  msgid "Circle"
2189
 
2190
  #: ../admin/views/BWGViewThemes_bwg.php:284
2191
  msgid "Page Navigation"
2192
+ msgstr "Navegación en las páginas"
2193
 
2194
  #: ../admin/views/BWGViewThemes_bwg.php:289
2195
  msgid "Parameters"
2209
  #: php:1284 ../admin/views/BWGViewThemes_bwg.php:1721 ..
2210
  #: /admin/views/BWGViewThemes_bwg.php:2079 3289
2211
  msgid "Padding:"
2212
+ msgstr "Movimiento:"
2213
 
2214
  #: ../admin/views/BWGViewThemes_bwg.php:316
2215
  #: ../admin/views/BWGViewThemes_bwg.php:518
2225
  #: php:1304 ../admin/views/BWGViewThemes_bwg.php:2131 ..
2226
  #: /admin/views/BWGViewThemes_bwg.php:3249
2227
  msgid "Border style:"
2228
+ msgstr "Estilo del borde:"
2229
 
2230
  #: ../admin/views/BWGViewThemes_bwg.php:336
2231
  #: ../admin/views/BWGViewThemes_bwg.php:538
2241
  #: php:1324 ../admin/views/BWGViewThemes_bwg.php:1740 ..
2242
  #: /admin/views/BWGViewThemes_bwg.php:2151 3269
2243
  msgid "Border radius:"
2244
+ msgstr "Radio del borde:"
2245
 
2246
  #: ../admin/views/BWGViewThemes_bwg.php:345
2247
  #: ../admin/views/BWGViewThemes_bwg.php:352
2298
  #: ../admin/views/BWGViewThemes_bwg.php:597
2299
  #: ../admin/views/BWGViewThemes_bwg.php:1338
2300
  msgid "Hover effect:"
2301
+ msgstr "Efecto al pasar por encima:"
2302
 
2303
  #: ../admin/views/BWGViewThemes_bwg.php:370
2304
  #: ../admin/views/BWGViewThemes_bwg.php:611
2305
  #: ../admin/views/BWGViewThemes_bwg.php:1352 ../admin/views/BWGViewThemes_bwg.
2306
  #: php:1635
2307
  msgid "Hover effect value:"
2308
+ msgstr "Valor al pasar por encima:"
2309
 
2310
  #: ../admin/views/BWGViewThemes_bwg.php:373
2311
  #: ../admin/views/BWGViewThemes_bwg.php:1638
2312
  msgid "E.g. Rotate:"
2313
+ msgstr "Ejemplo: rotar"
2314
 
2315
  #: ../admin/views/BWGViewThemes_bwg.php:373
2316
  #: ../admin/views/BWGViewThemes_bwg.php:614
2317
  #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2318
  #: php:1638
2319
  msgid "Scale:"
2320
+ msgstr "Escalar:"
2321
 
2322
  #: ../admin/views/BWGViewThemes_bwg.php:373
2323
  #: ../admin/views/BWGViewThemes_bwg.php:614
2324
  #: ../admin/views/BWGViewThemes_bwg.php:1355 ../admin/views/BWGViewThemes_bwg.
2325
  #: php:1638
2326
  msgid "Skew:"
2327
+ msgstr "Distorsionar perspectiva:"
2328
 
2329
  #: ../admin/views/BWGViewThemes_bwg.php:377
2330
  #: ../admin/views/BWGViewThemes_bwg.php:618
2335
  #: ../admin/views/BWGViewThemes_bwg.php:1374
2336
  #: ../admin/views/BWGViewThemes_bwg.php:1642
2337
  msgid "Thumbnail background color:"
2338
+ msgstr "Color de fondo de la miniatura:"
2339
 
2340
  #: ../admin/views/BWGViewThemes_bwg.php:400
2341
  #: ../admin/views/BWGViewThemes_bwg.php:1380
2347
  #: ../admin/views/BWGViewThemes_bwg.php:1043
2348
  #: ../admin/views/BWGViewThemes_bwg.php:1387
2349
  msgid "Full background color:"
2350
+ msgstr "Color del fondo:"
2351
 
2352
  #: ../admin/views/BWGViewThemes_bwg.php:413
2353
  #: ../admin/views/BWGViewThemes_bwg.php:1049
2354
  msgid "Full background transparency:"
2355
+ msgstr "Transparencia del fondo a tamaño completo:"
2356
 
2357
  #: ../admin/views/BWGViewThemes_bwg.php:420
2358
  #: ../admin/views/BWGViewThemes_bwg.php:577
2370
  #: ../admin/views/BWGViewThemes_bwg.php:2849
2371
  #: /admin/views/BWGViewThemes_bwg.php:3334
2372
  msgid "Top"
2373
+ msgstr "Superior"
2374
 
2375
  #: ../admin/views/BWGViewThemes_bwg.php:445
2376
  #: ../admin/views/BWGViewThemes_bwg.php:782
2380
  #: ../admin/views/BWGViewThemes_bwg.php:2851
2381
  #: /admin/views/BWGViewThemes_bwg.php:3336
2382
  msgid "Bottom"
2383
+ msgstr "Parte inferior"
2384
 
2385
  #: ../admin/views/BWGViewThemes_bwg.php:449
2386
  #: ../admin/views/BWGViewThemes_bwg.php:948
2387
  #: ../admin/views/BWGViewThemes_bwg.php:1429 ../admin/views/BWGViewThemes_bwg.
2388
  #: php:1911 ../admin/views/BWGViewThemes_bwg.php:2963
2389
  msgid "Title font size:"
2390
+ msgstr "Tamaño de la fuente del título:"
2391
 
2392
  #: ../admin/views/BWGViewThemes_bwg.php:455
2393
  #: ../admin/views/BWGViewThemes_bwg.php:1435
2394
  #: ../admin/views/BWGViewThemes_bwg.php:1917 ..
2395
  #: /admin/views/BWGViewThemes_bwg.php:2929
2396
  msgid "Title font color:"
2397
+ msgstr "Color de fuente del título:"
2398
 
2399
  #: ../admin/views/BWGViewThemes_bwg.php:461
2400
  #: ../admin/views/BWGViewThemes_bwg.php:960
2401
  #: ../admin/views/BWGViewThemes_bwg.php:1441 ../admin/views/BWGViewThemes_bwg.
2402
  #: php:1923 ../admin/views/BWGViewThemes_bwg.php:2935
2403
  msgid "Title font family:"
2404
+ msgstr "Familia de la fuente del título:"
2405
 
2406
  #: ../admin/views/BWGViewThemes_bwg.php:475
2407
  #: ../admin/views/BWGViewThemes_bwg.php:1455
2408
  #: ../admin/views/BWGViewThemes_bwg.php:1937 ..
2409
  #: /admin/views/BWGViewThemes_bwg.php:2949
2410
  msgid "Title font weight:"
2411
+ msgstr "Peso de la fuente del título:"
2412
 
2413
  #: ../admin/views/BWGViewThemes_bwg.php:489
2414
  #: ../admin/views/BWGViewThemes_bwg.php:1469
2415
  msgid "Title box shadow:"
2416
+ msgstr "Sombra de la caja del título:"
2417
 
2418
  #: ../admin/views/BWGViewThemes_bwg.php:496
2419
  #: ../admin/views/BWGViewThemes_bwg.php:1476
2420
  #: ../admin/views/BWGViewThemes_bwg.php:1872
2421
  msgid "Title margin:"
2422
+ msgstr "Margen del título:"
2423
 
2424
  #: ../admin/views/BWGViewThemes_bwg.php:557
2425
  msgid "Transparency:"
2437
  #: ../admin/views/BWGViewThemes_bwg.php:1733 ..
2438
  #: /admin/views/BWGViewThemes_bwg.php:2051
2439
  msgid "Background transparency:"
2440
+ msgstr "Transparencia del fondo:"
2441
 
2442
  #: ../admin/views/BWGViewThemes_bwg.php:614
2443
  msgid "Rotate:"
2448
  #: ../admin/views/BWGViewThemes_bwg.php:1984 ..
2449
  #: /admin/views/BWGViewThemes_bwg.php:3004
2450
  msgid "Description font size:"
2451
+ msgstr "Tamaño de la fuente de la descripción:"
2452
 
2453
  #: ../admin/views/BWGViewThemes_bwg.php:633
2454
  #: ../admin/views/BWGViewThemes_bwg.php:1990
2455
  #: ../admin/views/BWGViewThemes_bwg.php:2970
2456
  msgid "Description font color:"
2457
+ msgstr "Color de fuente de la descripción:"
2458
 
2459
  #: ../admin/views/BWGViewThemes_bwg.php:639
2460
  #: ../admin/views/BWGViewThemes_bwg.php:1996
2461
  #: ../admin/views/BWGViewThemes_bwg.php:2976
2462
  msgid "Description font family:"
2463
+ msgstr "Fuente del texto la descripción:"
2464
 
2465
  #: ../admin/views/BWGViewThemes_bwg.php:668
2466
  #: ../admin/views/BWGViewThemes_bwg.php:2509
2467
  msgid "Right, left buttons size:"
2468
+ msgstr "Tamaño de los botones izquierda/derecha:"
2469
 
2470
  #: ../admin/views/BWGViewThemes_bwg.php:674
2471
  msgid "Play, pause buttons size:"
2472
+ msgstr "Tamaño de los botones de reproducir/pausar:"
2473
 
2474
  #: ../admin/views/BWGViewThemes_bwg.php:680
2475
  #: ../admin/views/BWGViewThemes_bwg.php:2177
2476
  msgid "Buttons color:"
2477
+ msgstr "Color de los botones:"
2478
 
2479
  #: ../admin/views/BWGViewThemes_bwg.php:686
2480
  msgid "Buttons transparency:"
2481
+ msgstr "Transparencia de los botones:"
2482
 
2483
  #: ../admin/views/BWGViewThemes_bwg.php:689
2484
  msgid "alue must be between 0 to 100."
2485
+ msgstr "el valor debe estar entre 0 y 100."
2486
 
2487
  #: ../admin/views/BWGViewThemes_bwg.php:693
2488
  msgid "Buttons hover color:"
2489
+ msgstr "Color de los botones al pasar por encima:"
2490
 
2491
  #: ../admin/views/BWGViewThemes_bwg.php:699
2492
  #: ../admin/views/BWGViewThemes_bwg.php:2503
2493
  msgid "Right, left buttons width:"
2494
+ msgstr "Anchura de los botones izquierda/derecha:"
2495
 
2496
  #: ../admin/views/BWGViewThemes_bwg.php:705
2497
  #: ../admin/views/BWGViewThemes_bwg.php:2497
2498
  msgid "Right, left buttons height:"
2499
+ msgstr "Altura de los botones izquierda/derecha:"
2500
 
2501
  #: ../admin/views/BWGViewThemes_bwg.php:711
2502
  #: ../admin/views/BWGViewThemes_bwg.php:2478
2503
  msgid "Right, left buttons background color:"
2504
+ msgstr "Color de fondo de los botones izquierda/derecha:"
2505
 
2506
  #: ../admin/views/BWGViewThemes_bwg.php:717
2507
  msgid "Right, left buttons border width:"
2508
+ msgstr "Anchura del borde de los botones izquierda/derecha:"
2509
 
2510
  #: ../admin/views/BWGViewThemes_bwg.php:723
2511
  #: ../admin/views/BWGViewThemes_bwg.php:2540
2512
  msgid "Right, left buttons border style: "
2513
+ msgstr "Estilo del borde de los botones izquierda/derecha:"
2514
 
2515
  #: ../admin/views/BWGViewThemes_bwg.php:737
2516
  msgid "Right, left buttons border color:"
2517
+ msgstr "Color del borde de los botones izquierda/derecha:"
2518
 
2519
  #: ../admin/views/BWGViewThemes_bwg.php:743
2520
  #: ../admin/views/BWGViewThemes_bwg.php:2527
2521
  msgid "Right, left buttons border radius: "
2522
+ msgstr "Radio del borde de los botones izquierda/derecha:"
2523
 
2524
  #: ../admin/views/BWGViewThemes_bwg.php:750
2525
  #: ../admin/views/BWGViewThemes_bwg.php:2464
2526
  msgid "Right, left buttons style:"
2527
+ msgstr "Estilo de los botones izquierda/derecha:"
2528
 
2529
  #: ../admin/views/BWGViewThemes_bwg.php:764
2530
  #: ../admin/views/BWGViewThemes_bwg.php:2490
2531
  msgid "Right, left buttons box shadow:"
2532
+ msgstr "Sombra de los botones izquierda/derecha:"
2533
 
2534
  #: ../admin/views/BWGViewThemes_bwg.php:777
2535
  msgid "Filmstrip/Slider bullet position: "
2536
+ msgstr "Posición del punto en la tira de imágenes/presentación: "
2537
 
2538
  #: ../admin/views/BWGViewThemes_bwg.php:788
2539
  msgid "Filmstrip margin:"
2540
+ msgstr "Margen de la tira de imágenes:"
2541
 
2542
  #: ../admin/views/BWGViewThemes_bwg.php:795
2543
  msgid "Filmstrip border width:"
2544
+ msgstr "Anchura del borde de la tira de imágenes:"
2545
 
2546
  #: ../admin/views/BWGViewThemes_bwg.php:801
2547
  msgid "Filmstrip border style: "
2548
+ msgstr "Estilo del borde de la tira de imágenes: "
2549
 
2550
  #: ../admin/views/BWGViewThemes_bwg.php:816
2551
  msgid "Filmstrip border color: "
2552
+ msgstr "Color del borde de la tira de imágenes: "
2553
 
2554
  #: ../admin/views/BWGViewThemes_bwg.php:822
2555
  msgid "Filmstrip border radius: "
2556
+ msgstr "Radio del borde de la tira de imágenes: "
2557
 
2558
  #: ../admin/views/BWGViewThemes_bwg.php:829
2559
  msgid "Filmstrip active border width:"
2560
+ msgstr "Anchura del borde de la imagen activa de la tira de imágenes:"
2561
 
2562
  #: ../admin/views/BWGViewThemes_bwg.php:835
2563
  msgid "Filmstrip active border color:"
2564
+ msgstr "Color del borde de la imagen activa de la tira de imágenes:"
2565
 
2566
  #: ../admin/views/BWGViewThemes_bwg.php:841
2567
  msgid "Filmstrip deactive transparency:"
2568
+ msgstr "Desactivar transparencia de la tira de imágenes:"
2569
 
2570
  #: ../admin/views/BWGViewThemes_bwg.php:848
2571
  msgid "Filmstrip right, left buttons background color:"
2572
+ msgstr ""
2573
+ "Color de fondo de los botones izquierda/derecha de la tira de imágenes:"
2574
 
2575
  #: ../admin/views/BWGViewThemes_bwg.php:854
2576
  msgid "Filmstrip right, left buttons color: "
2577
+ msgstr "Color de los botones izquierda/derecha de la tira de imágenes:"
2578
 
2579
  #: ../admin/views/BWGViewThemes_bwg.php:860
2580
  #: ../admin/views/BWGViewThemes_bwg.php:2630
2581
  msgid "Filmstrip right, left buttons size: "
2582
+ msgstr "Tamaño de los botones izquierda/derecha de la tira de imágenes:"
2583
 
2584
  #: ../admin/views/BWGViewThemes_bwg.php:866
2585
  msgid "Slider bullet width: "
2586
+ msgstr "Anchura del punto de la presentación:"
2587
 
2588
  #: ../admin/views/BWGViewThemes_bwg.php:872
2589
  msgid "Slider bullet height: "
2590
+ msgstr "Altura del punto de la presentación:"
2591
 
2592
  #: ../admin/views/BWGViewThemes_bwg.php:878
2593
  msgid "Slider bullet border radius:"
2594
+ msgstr "Radio del borde del punto de la presentación:"
2595
 
2596
  #: ../admin/views/BWGViewThemes_bwg.php:885
2597
  msgid "Slider bullet background color: "
2598
+ msgstr "Color de fondo del punto de la presentación:"
2599
 
2600
  #: ../admin/views/BWGViewThemes_bwg.php:891
2601
  msgid "Slider bullet margin:"
2602
+ msgstr "Margen del punto de la presentación:"
2603
 
2604
  #: ../admin/views/BWGViewThemes_bwg.php:897
2605
  msgid "Slider bullet active background color:"
2606
+ msgstr "Color del fondo del punto activo del slider:"
2607
 
2608
  #: ../admin/views/BWGViewThemes_bwg.php:903
2609
  msgid "Slider bullet active border width: "
2610
+ msgstr "Ancho del borde del punto activo del slider:"
2611
 
2612
  #: ../admin/views/BWGViewThemes_bwg.php:909
2613
  msgid "Slider bullet active border color:"
2614
+ msgstr "Color del borde del punto activo del slider:"
2615
 
2616
  #: ../admin/views/BWGViewThemes_bwg.php:921
2617
  msgid "Title background color:"
2618
+ msgstr "Color de fondo el título:"
2619
 
2620
  #: ../admin/views/BWGViewThemes_bwg.php:927
2621
  msgid "Title transparency: "
2622
+ msgstr "Transparencia del título: "
2623
 
2624
  #: ../admin/views/BWGViewThemes_bwg.php:934
2625
  msgid "Title border radius:"
2626
+ msgstr "Radio del borde del titulo:"
2627
 
2628
  #: ../admin/views/BWGViewThemes_bwg.php:941
2629
  #: ../admin/views/BWGViewThemes_bwg.php:1878
2630
  msgid "Title padding:"
2631
+ msgstr "Espaciado del título:"
2632
 
2633
  #: ../admin/views/BWGViewThemes_bwg.php:954
2634
  msgid "Title color:"
2635
+ msgstr "Color del título:"
2636
 
2637
  #: ../admin/views/BWGViewThemes_bwg.php:974
2638
  msgid "Description background color:"
2639
+ msgstr "Color de fondo de la descripción:"
2640
 
2641
  #: ../admin/views/BWGViewThemes_bwg.php:980
2642
  msgid "Description transparency: "
2643
+ msgstr "Transparencia de la descripción:"
2644
 
2645
  #: ../admin/views/BWGViewThemes_bwg.php:987
2646
  msgid "Description border radius: "
2647
+ msgstr "Radio del borde de la descripción:"
2648
 
2649
  #: ../admin/views/BWGViewThemes_bwg.php:994
2650
  #: ../admin/views/BWGViewThemes_bwg.php:1229
2651
  #: ../admin/views/BWGViewThemes_bwg.php:1951
2652
  msgid "Description padding:"
2653
+ msgstr "Espacio de la descripción:"
2654
 
2655
  #: ../admin/views/BWGViewThemes_bwg.php:1007
2656
  msgid "Description color: "
2657
+ msgstr "Color de la descripción: "
2658
 
2659
  #: ../admin/views/BWGViewThemes_bwg.php:1013
2660
  msgid "Description font family: "
2661
+ msgstr "Fuente del texto la descripción: "
2662
 
2663
  #: ../admin/views/BWGViewThemes_bwg.php:1036
2664
  msgid "Full padding:"
2665
+ msgstr "Movimiento completo:"
2666
 
2667
  #: ../admin/views/BWGViewThemes_bwg.php:1056
2668
  msgid "Full border radius:"
2669
+ msgstr "Radio completo del borde:"
2670
 
2671
  #: ../admin/views/BWGViewThemes_bwg.php:1063
2672
  msgid "Full border width:"
2673
+ msgstr "Anchura completa del borde:"
2674
 
2675
  #: ../admin/views/BWGViewThemes_bwg.php:1069
2676
  msgid "Full border style:"
2677
+ msgstr "Estilo del borde completo:"
2678
 
2679
  #: ../admin/views/BWGViewThemes_bwg.php:1083
2680
  msgid "Full border color:"
2681
+ msgstr "Color del borde:"
2682
 
2683
  #: ../admin/views/BWGViewThemes_bwg.php:1169
2684
  #: ../admin/views/BWGViewThemes_bwg.php:2086
2685
  #: ../admin/views/BWGViewThemes_bwg.php:3318
2686
  msgid "Box shadow:"
2687
+ msgstr "Sombra de la caja:"
2688
 
2689
  #: ../admin/views/BWGViewThemes_bwg.php:1182
2690
  msgid "Title alignment:"
2691
+ msgstr "Alineación del título:"
2692
 
2693
  #: ../admin/views/BWGViewThemes_bwg.php:1196
2694
  #: ../admin/views/BWGViewThemes_bwg.php:1483
2709
  #: ../admin/views/BWGViewThemes_bwg.php:2099 ..
2710
  #: /admin/views/BWGViewThemes_bwg.php:3215
2711
  msgid "Font family:"
2712
+ msgstr "Familia de fuente del título:"
2713
 
2714
  #: ../admin/views/BWGViewThemes_bwg.php:1222
2715
  msgid "Description margin:"
2716
+ msgstr "Margen de la descripción:"
2717
 
2718
  #: ../admin/views/BWGViewThemes_bwg.php:1236
2719
  msgid "Description border width: "
2720
+ msgstr "Anchura del borde de la descripción: "
2721
 
2722
  #: ../admin/views/BWGViewThemes_bwg.php:1242
2723
  msgid "Description border style: "
2724
+ msgstr "Estilo del borde de la descripción: "
2725
 
2726
  #: ../admin/views/BWGViewThemes_bwg.php:1256
2727
  msgid "Description border color: "
2728
+ msgstr "Color del borde de la descripción: "
2729
 
2730
  #: ../admin/views/BWGViewThemes_bwg.php:1262
2731
  msgid "Description border radius:"
2732
+ msgstr "Radio del borde de la descripción:"
2733
 
2734
  #: ../admin/views/BWGViewThemes_bwg.php:1269
2735
  msgid "Description background color: "
2736
+ msgstr "Color de fondo de la descripción:"
2737
 
2738
  #: ../admin/views/BWGViewThemes_bwg.php:1294
2739
  #: ../admin/views/BWGViewThemes_bwg.php:2082
2740
  msgid "se CSS type values."
2741
+ msgstr "Usar valores de tipo CSS."
2742
 
2743
  #: ../admin/views/BWGViewThemes_bwg.php:1355
2744
  msgid "E.g. Rotate"
2745
+ msgstr "Ejemplo: rotar"
2746
 
2747
  #: ../admin/views/BWGViewThemes_bwg.php:1359
2748
  #: ../admin/views/BWGViewThemes_bwg.php:1591
2749
  msgid "Thumbnail transition:"
2750
+ msgstr "Transición en miniaturas:"
2751
 
2752
  #: ../admin/views/BWGViewThemes_bwg.php:1393
2753
  msgid "Full background transparency: "
2754
+ msgstr "Transparencia del fondo a tamaño completo:"
2755
 
2756
  #: ../admin/views/BWGViewThemes_bwg.php:1509
2757
  #: ../admin/views/BWGViewThemes_bwg.php:3229
2761
  #: ../admin/views/BWGViewThemes_bwg.php:1523
2762
  #: ../admin/views/BWGViewThemes_bwg.php:1773
2763
  msgid "Back padding:"
2764
+ msgstr "Espaciado de la opción Volver:"
2765
 
2766
  #: ../admin/views/BWGViewThemes_bwg.php:1539
2767
  msgid "Thumbnail margin:"
2768
+ msgstr "Margen de laminiatura:"
2769
 
2770
  #: ../admin/views/BWGViewThemes_bwg.php:1545
2771
  msgid "Thumbnail padding:"
2772
+ msgstr "Espaciado de miniatura:"
2773
 
2774
  #: ../admin/views/BWGViewThemes_bwg.php:1551
2775
  msgid "Thumbnail border width:"
2776
+ msgstr "Anchura del borde de la miniatura:"
2777
 
2778
  #: ../admin/views/BWGViewThemes_bwg.php:1557
2779
  msgid "Thumbnail border style:"
2780
+ msgstr "Estilo del borde de la miniatura:"
2781
 
2782
  #: ../admin/views/BWGViewThemes_bwg.php:1571
2783
  msgid "Thumbnail border color:"
2784
+ msgstr "Color del borde de la miniatura:"
2785
 
2786
  #: ../admin/views/BWGViewThemes_bwg.php:1577
2787
  msgid "Thumbnail border radius:"
2788
+ msgstr "Radio del borde de la miniatura:"
2789
 
2790
  #: ../admin/views/BWGViewThemes_bwg.php:1584
2791
  msgid "Thumbnail box shadow:"
2792
+ msgstr "Sombra de la miniatura:"
2793
 
2794
  #: ../admin/views/BWGViewThemes_bwg.php:1600
2795
  msgid "Thumbnail alignment:"
2796
+ msgstr "Alineación de la miniatura:"
2797
 
2798
  #: ../admin/views/BWGViewThemes_bwg.php:1621
2799
  msgid "Thumbnail hover effect: "
2800
+ msgstr "Effecto al pasar por encima de la miniatura:"
2801
 
2802
  #: ../admin/views/BWGViewThemes_bwg.php:1648
2803
  msgid "Thumbnails background color:"
2804
+ msgstr "Color de fondo de la miniatura:"
2805
 
2806
  #: ../admin/views/BWGViewThemes_bwg.php:1654
2807
  msgid "Thumbnail background transparency:"
2808
+ msgstr "Transparencia del fondo de la miniatura:"
2809
 
2810
  #: ../admin/views/BWGViewThemes_bwg.php:1667
2811
  msgid "Thumbnail div padding:"
2812
+ msgstr "Espaciado del div de la miniatura:"
2813
 
2814
  #: ../admin/views/BWGViewThemes_bwg.php:1674
2815
  msgid "Thumbnail div background color:"
2816
+ msgstr "Color de fondo del div de la miniatura:"
2817
 
2818
  #: ../admin/views/BWGViewThemes_bwg.php:1680
2819
  msgid "Thumbnail div border width:"
2820
+ msgstr "Anchura del borde del div de la miniatura:"
2821
 
2822
  #: ../admin/views/BWGViewThemes_bwg.php:1687
2823
  msgid "Thumbnail div border style:"
2824
+ msgstr "Estilo de borde del div de la miniatura:"
2825
 
2826
  #: ../admin/views/BWGViewThemes_bwg.php:1701
2827
  msgid "Thumbnail div border color:"
2828
+ msgstr "Color del borde del div de la miniatura:"
2829
 
2830
  #: ../admin/views/BWGViewThemes_bwg.php:1707
2831
  msgid "Thumbnail div border radius:"
2832
+ msgstr "Radio del borde del div de la miniatura:"
2833
 
2834
  #: ../admin/views/BWGViewThemes_bwg.php:1747
2835
  msgid "Separator width:"
2837
 
2838
  #: ../admin/views/BWGViewThemes_bwg.php:1753
2839
  msgid "Separator style:"
2840
+ msgstr "Estilo del separador:"
2841
 
2842
  #: ../admin/views/BWGViewThemes_bwg.php:1767
2843
  msgid "Separator color:"
2844
+ msgstr "Color de separación:"
2845
 
2846
  #: ../admin/views/BWGViewThemes_bwg.php:1780
2847
  msgid "Back font size:"
2848
+ msgstr "Tamaño de la fuente de Volver:"
2849
 
2850
  #: ../admin/views/BWGViewThemes_bwg.php:1786
2851
  msgid "Back font color:"
2852
+ msgstr "Color de fuente de la opción Volver:"
2853
 
2854
  #: ../admin/views/BWGViewThemes_bwg.php:1792
2855
  msgid "Back font family:"
2856
+ msgstr "Fuente de la opción Volver:"
2857
 
2858
  #: ../admin/views/BWGViewThemes_bwg.php:1806
2859
  msgid "Back font weight:"
2860
+ msgstr "Peso de la opción Volver:"
2861
 
2862
  #: ../admin/views/BWGViewThemes_bwg.php:1826
2863
  msgid "Text div padding:"
2864
+ msgstr "Espaciado del div del texto:"
2865
 
2866
  #: ../admin/views/BWGViewThemes_bwg.php:1833
2867
  msgid "Text div border width:"
2868
+ msgstr "Anchura del borde del div del texto:"
2869
 
2870
  #: ../admin/views/BWGViewThemes_bwg.php:1839
2871
  msgid "Text border style:"
2872
+ msgstr "Estilo del borde del texto:"
2873
 
2874
  #: ../admin/views/BWGViewThemes_bwg.php:1853
2875
  msgid "Text border color:"
2876
+ msgstr "Color del borde del texto:"
2877
 
2878
  #: ../admin/views/BWGViewThemes_bwg.php:1859
2879
  msgid "Text div border radius:"
2880
+ msgstr "Radio del borde del div del texto:"
2881
 
2882
  #: ../admin/views/BWGViewThemes_bwg.php:1866
2883
  msgid "Text background color:"
2884
+ msgstr "Color de fondo del texto:"
2885
 
2886
  #: ../admin/views/BWGViewThemes_bwg.php:1885
2887
  msgid "Title border width:"
2888
+ msgstr "Anchura del borde del título:"
2889
 
2890
  #: ../admin/views/BWGViewThemes_bwg.php:1891
2891
  msgid "Title border style:"
2892
+ msgstr "Estilo del borde del título:"
2893
 
2894
  #: ../admin/views/BWGViewThemes_bwg.php:1905
2895
  msgid "Title border color:"
2896
+ msgstr "Color del borde del título:"
2897
 
2898
  #: ../admin/views/BWGViewThemes_bwg.php:1958
2899
  msgid "Description border width:"
2900
+ msgstr "Anchura del borde de la descripción: "
2901
 
2902
  #: ../admin/views/BWGViewThemes_bwg.php:1964
2903
  msgid "Description border style:"
2904
+ msgstr "Estilo del borde de la descripción:"
2905
 
2906
  #: ../admin/views/BWGViewThemes_bwg.php:1978
2907
  msgid "Description border color:"
2908
+ msgstr "Color del borde de la descripción: "
2909
 
2910
  #: ../admin/views/BWGViewThemes_bwg.php:2010
2911
  #: ../admin/views/BWGViewThemes_bwg.php:2990
2912
  msgid "Description font weight:"
2913
+ msgstr "Peso de la fuente de la descripción:"
2914
 
2915
  #: ../admin/views/BWGViewThemes_bwg.php:2024
2916
  msgid "Description more size:"
2917
+ msgstr "Más tamaño de la fuente de la descripción:"
2918
 
2919
  #: ../admin/views/BWGViewThemes_bwg.php:2030
2920
  msgid "Description more color:"
2921
+ msgstr "Más color de la descripción:"
2922
 
2923
  #: ../admin/views/BWGViewThemes_bwg.php:2164
2924
  msgid "Buttons and title margin:"
2925
+ msgstr "Márgenes de los botones y el título:"
2926
 
2927
  #: ../admin/views/BWGViewThemes_bwg.php:2171
2928
  msgid "Buttons size:"
2930
 
2931
  #: ../admin/views/BWGViewThemes_bwg.php:2183
2932
  msgid "Buttons and title border width:"
2933
+ msgstr "Anchura de los bordes de los botones y título:"
2934
 
2935
  #: ../admin/views/BWGViewThemes_bwg.php:2189
2936
  msgid "Buttons and title border style:"
2937
+ msgstr "Estilo del borde de los botones y el título:"
2938
 
2939
  #: ../admin/views/BWGViewThemes_bwg.php:2203
2940
  msgid "Buttons and title border color:"
2941
+ msgstr "Color del borde de los botones y título:"
2942
 
2943
  #: ../admin/views/BWGViewThemes_bwg.php:2209
2944
  msgid "Buttons and title border radius:"
2945
+ msgstr "Radio del borde de los botones y el título:"
2946
 
2947
  #: ../admin/views/BWGViewThemes_bwg.php:2216
2948
  msgid "Buttons and title background color:"
2949
+ msgstr "Color de fondo de los botones y título:"
2950
 
2951
  #: ../admin/views/BWGViewThemes_bwg.php:2222
2952
  msgid "Buttons and title background transparency:"
2953
+ msgstr "Transparencia del fondo de los botones y el título:"
2954
 
2955
  #: ../admin/views/BWGViewThemes_bwg.php:2229
2956
  msgid "Buttons or title alignment:"
2957
+ msgstr "Alineación de los botones o título:"
2958
 
2959
  #: ../admin/views/BWGViewThemes_bwg.php:2252
2960
  msgid "Overlay background color:"
2962
 
2963
  #: ../admin/views/BWGViewThemes_bwg.php:2258
2964
  msgid "Overlay background transparency:"
2965
+ msgstr "Transparencia de la superposición del fondo:"
2966
 
2967
  #: ../admin/views/BWGViewThemes_bwg.php:2265
2968
  msgid "Lightbox background color:"
2969
+ msgstr "Color de fondo del lightbox:"
2970
 
2971
  #: ../admin/views/BWGViewThemes_bwg.php:2271
2972
  msgid "Control buttons height:"
2973
+ msgstr "Altura de los botones de control:"
2974
 
2975
  #: ../admin/views/BWGViewThemes_bwg.php:2277
2976
  msgid "Control buttons margin (top):"
2977
+ msgstr "Margen de los botones de control (superior):"
2978
 
2979
  #: ../admin/views/BWGViewThemes_bwg.php:2283
2980
  msgid "Control buttons margin (left):"
2981
+ msgstr "Margen de los botones de control (izquierda):"
2982
 
2983
  #: ../admin/views/BWGViewThemes_bwg.php:2289
2984
  msgid "Control buttons position:"
2985
+ msgstr "Posición de los botones de control:"
2986
 
2987
  #: ../admin/views/BWGViewThemes_bwg.php:2298
2988
  msgid "Control buttons background color: "
2989
+ msgstr "Color del fondo de los botones de control:"
2990
 
2991
  #: ../admin/views/BWGViewThemes_bwg.php:2304
2992
  msgid "Control buttons container border radius:"
2993
+ msgstr "Radio del borde de los botones de control:"
2994
 
2995
  #: ../admin/views/BWGViewThemes_bwg.php:2311
2996
  msgid "Control buttons container background transparency: "
2997
+ msgstr "Transparencia del fondo de los contenedores de los botones de control:"
2998
 
2999
  #: ../admin/views/BWGViewThemes_bwg.php:2318
3000
  msgid "Control buttons alignment: "
3001
+ msgstr "Alineación de los botones de control:"
3002
 
3003
  #: ../admin/views/BWGViewThemes_bwg.php:2332
3004
  msgid "Control buttons color:"
3005
+ msgstr "Color de los botones de control:"
3006
 
3007
  #: ../admin/views/BWGViewThemes_bwg.php:2338
3008
  msgid "Control buttons transparency:"
3009
+ msgstr "Transparencia de los botones de control:"
3010
 
3011
  #: ../admin/views/BWGViewThemes_bwg.php:2345
3012
  msgid "Toggle button height: "
3013
+ msgstr "Alternar altura del botón:"
3014
 
3015
  #: ../admin/views/BWGViewThemes_bwg.php:2351
3016
  msgid "Toggle button width: "
3017
+ msgstr "Alternar anchura de botón:"
3018
 
3019
  #: ../admin/views/BWGViewThemes_bwg.php:2357
3020
  msgid "Close button border radius:"
3021
+ msgstr "Radio del borde del botón Cerrar:"
3022
 
3023
  #: ../admin/views/BWGViewThemes_bwg.php:2365
3024
  msgid "Close button border width:"
3025
+ msgstr "Anchura del borde del botón Cerrar:"
3026
 
3027
  #: ../admin/views/BWGViewThemes_bwg.php:2371
3028
  msgid "Close button border style: "
3029
+ msgstr "Estilo del borde del botón Cerrar:"
3030
 
3031
  #: ../admin/views/BWGViewThemes_bwg.php:2385
3032
  msgid "Close button border color:"
3033
+ msgstr "Color del borde del botón Cerrar:"
3034
 
3035
  #: ../admin/views/BWGViewThemes_bwg.php:2391
3036
  msgid "Close button box shadow:"
3037
+ msgstr "Sombra de la caja del botón Cerrar:"
3038
 
3039
  #: ../admin/views/BWGViewThemes_bwg.php:2398
3040
  msgid "Close button background color:"
3041
+ msgstr "Color de fondo del botón Cerrar:"
3042
 
3043
  #: ../admin/views/BWGViewThemes_bwg.php:2404
3044
  msgid "Close button transparency:"
3045
+ msgstr "Transparencia del botón Cerrar:"
3046
 
3047
  #: ../admin/views/BWGViewThemes_bwg.php:2410
3048
  msgid "Close button width:"
3049
+ msgstr "Anchura del botón Cerrar:"
3050
 
3051
  #: ../admin/views/BWGViewThemes_bwg.php:2416
3052
  msgid "Close button height:"
3053
+ msgstr "Altura del botón Cerrar:"
3054
 
3055
  #: ../admin/views/BWGViewThemes_bwg.php:2422
3056
  msgid "Close button top:"
3057
+ msgstr "Parte superior del botón cerrar:"
3058
 
3059
  #: ../admin/views/BWGViewThemes_bwg.php:2428
3060
  msgid "Close button right:"
3061
+ msgstr "Derecha del botón cerrar:"
3062
 
3063
  #: ../admin/views/BWGViewThemes_bwg.php:2434
3064
  msgid "Close button size:"
3065
+ msgstr "Tamaño del botón Cerrar:"
3066
 
3067
  #: ../admin/views/BWGViewThemes_bwg.php:2440
3068
  msgid "Close button color:"
3069
+ msgstr "Color del botón cerrar:"
3070
 
3071
  #: ../admin/views/BWGViewThemes_bwg.php:2446
3072
  msgid "Fullscreen close button color:"
3073
+ msgstr "Color del botón cerrar en la pantalla completa:"
3074
 
3075
  #: ../admin/views/BWGViewThemes_bwg.php:2452
3076
  msgid "Share buttons color:"
3077
+ msgstr "Color del botón de compartir:"
3078
 
3079
  #: ../admin/views/BWGViewThemes_bwg.php:2484
3080
  msgid "Right, left buttons transparency: "
3081
+ msgstr "Transparencia de los botones izquierda/derecha:"
3082
 
3083
  #: ../admin/views/BWGViewThemes_bwg.php:2515
3084
  msgid "Right, left, close buttons hover color:"
3085
+ msgstr "Color de los botones izquierda/derecha/cerrar al pasar por encima:"
3086
 
3087
  #: ../admin/views/BWGViewThemes_bwg.php:2521
3088
  msgid "Right, left buttons color:"
3089
+ msgstr "Color de los botones izquierda/derecha:"
3090
 
3091
  #: ../admin/views/BWGViewThemes_bwg.php:2534
3092
  msgid "Right, left buttons border width: "
3093
+ msgstr "Anchura del borde de los botones izquierda/derecha:"
3094
 
3095
  #: ../admin/views/BWGViewThemes_bwg.php:2554
3096
  msgid "Right, left buttons border color: "
3097
+ msgstr "Color del borde de los botones izquierda/derecha:"
3098
 
3099
  #: ../admin/views/BWGViewThemes_bwg.php:2560
3100
  msgid "Filmstrip position: "
3101
+ msgstr "Posición de la tira de imágenes:"
3102
 
3103
  #: ../admin/views/BWGViewThemes_bwg.php:2571
3104
  msgid "Filmstrip thumbnail margin:"
3105
+ msgstr "Margen de las miniatura de la tira de diapositivas:"
3106
 
3107
  #: ../admin/views/BWGViewThemes_bwg.php:2578
3108
  msgid "Filmstrip thumbnail border width: "
3109
+ msgstr "Anchura del borde de la miniatura de la tira de imágenes:"
3110
 
3111
  #: ../admin/views/BWGViewThemes_bwg.php:2584
3112
  msgid "Filmstrip thumbnail border style:"
3113
+ msgstr "Estilo del borde de las miniaturas de la tira de imágenes:"
3114
 
3115
  #: ../admin/views/BWGViewThemes_bwg.php:2598
3116
  msgid "Filmstrip thumbnail border color:"
3117
+ msgstr "Color del borde de las miniaturas de la tira de imágenes:"
3118
 
3119
  #: ../admin/views/BWGViewThemes_bwg.php:2604
3120
  msgid "Filmstrip thumbnail border radius:"
3121
+ msgstr "Radio del borde de las miniaturas de la tira de imágenes:"
3122
 
3123
  #: ../admin/views/BWGViewThemes_bwg.php:2611
3124
  msgid "Filmstrip thumbnail active border width:"
3125
+ msgstr ""
3126
+ "Anchura del borde de la miniatura de imagen activa de la tira de imágenes:"
3127
 
3128
  #: ../admin/views/BWGViewThemes_bwg.php:2617
3129
  msgid "Filmstrip thumbnail active border color:"
3130
+ msgstr ""
3131
+ "Color del borde de la miniatura de imagen activa de la tira de imágenes:"
3132
 
3133
  #: ../admin/views/BWGViewThemes_bwg.php:2623
3134
  msgid "Filmstrip thumbnail deactive transparency: "
3135
+ msgstr "Desactivar transparencia de las miniaturas de la tira de imágenes: "
3136
 
3137
  #: ../admin/views/BWGViewThemes_bwg.php:2636
3138
  msgid "Filmstrip right, left buttons color:"
3139
+ msgstr "Color de los botones izquierda/derecha de la tira de imágenes:"
3140
 
3141
  #: ../admin/views/BWGViewThemes_bwg.php:2642
3142
  msgid "Filmstrip right, left button background color:"
3143
+ msgstr ""
3144
+ "Color de fondo de los botones izquierda/derecha de la tira de imágenes:"
3145
 
3146
  #: ../admin/views/BWGViewThemes_bwg.php:2648
3147
  msgid "Rating position: "
3148
+ msgstr "Posición de la calificación:"
3149
 
3150
  #: ../admin/views/BWGViewThemes_bwg.php:2657
3151
  msgid "Rating alignment: "
3152
+ msgstr "Alineación de la clasificación:"
3153
 
3154
  #: ../admin/views/BWGViewThemes_bwg.php:2671
3155
  msgid "Rating icon:"
3156
+ msgstr "Icono de calificación:"
3157
 
3158
  #: ../admin/views/BWGViewThemes_bwg.php:2685
3159
  msgid "Rating color:"
3160
+ msgstr "Clasificación de color:"
3161
 
3162
  #: ../admin/views/BWGViewThemes_bwg.php:2691
3163
  msgid "Rating hover color:"
3164
+ msgstr "Color al pasar por encima de la calificación:"
3165
 
3166
  #: ../admin/views/BWGViewThemes_bwg.php:2697
3167
  msgid "Rating size:"
3168
+ msgstr "Tamaño de la calificación:"
3169
 
3170
  #: ../admin/views/BWGViewThemes_bwg.php:2703
3171
  msgid "Rating icon count:"
3172
+ msgstr "Contador del icono de puntuación:"
3173
 
3174
  #: ../admin/views/BWGViewThemes_bwg.php:2709
3175
  msgid "Rating padding:"
3176
+ msgstr "Espacio de las puntuaciones:"
3177
 
3178
  #: ../admin/views/BWGViewThemes_bwg.php:2716
3179
  msgid "Hit counter position:"
3180
+ msgstr "Posición del contador de visitas:"
3181
 
3182
  #: ../admin/views/BWGViewThemes_bwg.php:2725
3183
  msgid "Hit counter alignment:"
3184
+ msgstr "Alineación del contador de visitas:"
3185
 
3186
  #: ../admin/views/BWGViewThemes_bwg.php:2739
3187
  msgid "Hit counter background color:"
3188
+ msgstr "Color de fondo del contador de visitas:"
3189
 
3190
  #: ../admin/views/BWGViewThemes_bwg.php:2745
3191
  msgid "Hit counter background transparency: "
3192
+ msgstr "Transparencia del fondo del contador de visitas:"
3193
 
3194
  #: ../admin/views/BWGViewThemes_bwg.php:2752
3195
  msgid "Hit counter border width: "
3196
+ msgstr "Anchura del borde del contador de visitas:"
3197
 
3198
  #: ../admin/views/BWGViewThemes_bwg.php:2758
3199
  msgid "Hit counter border style:"
3200
+ msgstr "Estilo de borde del contador de visitas:"
3201
 
3202
  #: ../admin/views/BWGViewThemes_bwg.php:2772
3203
  msgid "Hit counter border color:"
3204
+ msgstr "Color del borde del contador de visitas:"
3205
 
3206
  #: ../admin/views/BWGViewThemes_bwg.php:2778
3207
  msgid "Hit counter border radius:"
3208
+ msgstr "Radio del borde del contador de visitas:"
3209
 
3210
  #: ../admin/views/BWGViewThemes_bwg.php:2785
3211
  msgid "Hit counter padding:"
3212
+ msgstr "Espacio del contador de visitas:"
3213
 
3214
  #: ../admin/views/BWGViewThemes_bwg.php:2792
3215
  msgid "Hit counter margin:"
3216
+ msgstr "Margen del contador de visitas:"
3217
 
3218
  #: ../admin/views/BWGViewThemes_bwg.php:2799
3219
  msgid "Hit counter font color:"
3220
+ msgstr "Color de fuente del contador de visitas:"
3221
 
3222
  #: ../admin/views/BWGViewThemes_bwg.php:2805
3223
  msgid "Hit counter font family:"
3224
+ msgstr "Tipo de fuente del contador de visitas:"
3225
 
3226
  #: ../admin/views/BWGViewThemes_bwg.php:2819
3227
  msgid "Hit counter font weight:"
3228
+ msgstr "Altura de fuente del contador de visitas:"
3229
 
3230
  #: ../admin/views/BWGViewThemes_bwg.php:2833
3231
  msgid "Hit counter font size:"
3232
+ msgstr "Tamaño de fuente del contador de visitas:"
3233
 
3234
  #: ../admin/views/BWGViewThemes_bwg.php:2846
3235
  msgid "Info position:"
3236
+ msgstr "Posición de la info:"
3237
 
3238
  #: ../admin/views/BWGViewThemes_bwg.php:2855
3239
  msgid "Info alignment:"
3240
+ msgstr "Alineación de la info:"
3241
 
3242
  #: ../admin/views/BWGViewThemes_bwg.php:2869
3243
  msgid "Info background color:"
3244
+ msgstr "Color de fondo de la info:"
3245
 
3246
  #: ../admin/views/BWGViewThemes_bwg.php:2875
3247
  msgid "Info background transparency:"
3248
+ msgstr "Transparencia del fondo de la info:"
3249
 
3250
  #: ../admin/views/BWGViewThemes_bwg.php:2882
3251
  msgid "Info border width:"
3252
+ msgstr "Anchura del borde de la info:"
3253
 
3254
  #: ../admin/views/BWGViewThemes_bwg.php:2888
3255
  msgid "Info border style:"
3256
+ msgstr "Estilo de borde de la info:"
3257
 
3258
  #: ../admin/views/BWGViewThemes_bwg.php:2902
3259
  msgid "Info border color:"
3260
+ msgstr "Color del borde de la info:"
3261
 
3262
  #: ../admin/views/BWGViewThemes_bwg.php:2908
3263
  msgid "Info border radius:"
3264
+ msgstr "Radio del borde de la info:"
3265
 
3266
  #: ../admin/views/BWGViewThemes_bwg.php:2915
3267
  msgid "Info padding:"
3268
+ msgstr "Espacio de la info:"
3269
 
3270
  #: ../admin/views/BWGViewThemes_bwg.php:2922
3271
  msgid "Info margin:"
3272
+ msgstr "Margen de la info:"
3273
 
3274
  #: ../admin/views/BWGViewThemes_bwg.php:3011
3275
  msgid "Comments Width:"
3276
+ msgstr "Anchura de los comentarios:"
3277
 
3278
  #: ../admin/views/BWGViewThemes_bwg.php:3017
3279
  msgid "Comments position:"
3280
+ msgstr "Posición de los comentarios:"
3281
 
3282
  #: ../admin/views/BWGViewThemes_bwg.php:3026
3283
  msgid "Comments background color:"
3284
+ msgstr "Color de fondo de los comentarios:"
3285
 
3286
  #: ../admin/views/BWGViewThemes_bwg.php:3032
3287
  msgid "Comments font size:"
3288
+ msgstr "Tamaño de fuente de los comentarios:"
3289
 
3290
  #: ../admin/views/BWGViewThemes_bwg.php:3038
3291
  msgid "Comments font color:"
3292
+ msgstr "Color de fuente de los comentarios:"
3293
 
3294
  #: ../admin/views/BWGViewThemes_bwg.php:3044
3295
  msgid "Comments font family:"
3296
+ msgstr "Tipo de fuente de los comentarios:"
3297
 
3298
  #: ../admin/views/BWGViewThemes_bwg.php:3058
3299
  msgid "Comments author font size:"
3300
+ msgstr "Tamaño de fuente del autor de comentario:"
3301
 
3302
  #: ../admin/views/BWGViewThemes_bwg.php:3065
3303
  msgid "Comments date font size:"
3304
+ msgstr "Tamaño de fuente de la fecha de comentarios:"
3305
 
3306
  #: ../admin/views/BWGViewThemes_bwg.php:3071
3307
  msgid "Comments body font size:"
3309
 
3310
  #: ../admin/views/BWGViewThemes_bwg.php:3077
3311
  msgid "Comment input border width: "
3312
+ msgstr "Ancho del borde del campo de comentario:"
3313
 
3314
  #: ../admin/views/BWGViewThemes_bwg.php:3083
3315
  msgid "Comment input border style: "
3316
+ msgstr "Estilo del borde del campo de introducir comentario:"
3317
 
3318
  #: ../admin/views/BWGViewThemes_bwg.php:3097
3319
  msgid "Comment input border color:"
3320
+ msgstr "Color del borde del campo de introducir comentario:"
3321
 
3322
  #: ../admin/views/BWGViewThemes_bwg.php:3103
3323
  msgid "Comment input border radius:"
3324
+ msgstr "Radio del borde del campo de introducir comentario:"
3325
 
3326
  #: ../admin/views/BWGViewThemes_bwg.php:3109
3327
  msgid "Comment input padding:"
3328
+ msgstr "Espacio de la entrada de comentario:"
3329
 
3330
  #: ../admin/views/BWGViewThemes_bwg.php:3116
3331
  msgid "Comment input background color:"
3332
+ msgstr "Color de fondo del campo de introducir comentario:"
3333
 
3334
  #: ../admin/views/BWGViewThemes_bwg.php:3122
3335
  msgid "Comment button background color:"
3336
+ msgstr "Color de fondo del botón de comentar:"
3337
 
3338
  #: ../admin/views/BWGViewThemes_bwg.php:3128
3339
  msgid "Comment button padding:"
3340
+ msgstr "Espacio del botón de comentar:"
3341
 
3342
  #: ../admin/views/BWGViewThemes_bwg.php:3135
3343
  msgid "Comment button border width:"
3344
+ msgstr "Anchura del borde del botón de comentar:"
3345
 
3346
  #: ../admin/views/BWGViewThemes_bwg.php:3141
3347
  msgid "Comment button border style:"
3348
+ msgstr "Estilo del borde del botón de comentar:"
3349
 
3350
  #: ../admin/views/BWGViewThemes_bwg.php:3155
3351
  msgid "Comment button border color:"
3352
+ msgstr "Color del borde del botón de comentarios:"
3353
 
3354
  #: ../admin/views/BWGViewThemes_bwg.php:3161
3355
  msgid "Comment button border radius:"
3356
+ msgstr "Radio del borde del botón de comentar:"
3357
 
3358
  #: ../admin/views/BWGViewThemes_bwg.php:3168
3359
  msgid "Comment separator width:"
3360
+ msgstr "Anchura del separador de comentarios:"
3361
 
3362
  #: ../admin/views/BWGViewThemes_bwg.php:3174
3363
  msgid "Comment separator style:"
3364
+ msgstr "Estilo del separador de comentarios:"
3365
 
3366
  #: ../admin/views/BWGViewThemes_bwg.php:3188
3367
  msgid "Comment separator color:"
3368
+ msgstr "Color del separador de comentarios:"
3369
 
3370
  #: ../admin/views/BWGViewThemes_bwg.php:3296
3371
  msgid "Button background color:"
3372
+ msgstr "Color de fondo del botón:"
3373
 
3374
  #: ../admin/views/BWGViewThemes_bwg.php:3302
3375
  msgid "Button background transparency:"
3376
+ msgstr "Transparencia del fondo del botón:"
3377
 
3378
  #: ../admin/views/BWGViewThemes_bwg.php:3309
3379
  msgid "Button transition:"
3380
+ msgstr "Transición del botón:"
3381
 
3382
  #: ../admin/views/BWGViewThemes_bwg.php:3331
3383
  msgid "Position:"
3389
 
3390
  #: ../admin/views/BWGViewThemes_bwg.php:3363
3391
  msgid "Button text:"
3392
+ msgstr "Texto del botón:"
3393
 
3394
  #: ../admin/views/BWGViewThemes_bwg.php:3368
3395
  msgid "Arrow"
3396
+ msgstr "Flecha"
3397
 
3398
  #: ../admin/views/BWGViewThemes_bwg.php:3369
3399
  msgid "Next, previous buttons values."
3400
+ msgstr "Valores de botones siguiente/anterior."
3401
 
3402
  #: ../admin/views/BWGViewUninstall_bwg.php:33
3403
  #: ../admin/views/BWGViewUninstall_bwg. php:155
3404
  msgid "Uninstall Photo Gallery"
3405
+ msgstr "Desinstalar Photo Gallery"
3406
 
3407
  #: ../admin/views/BWGViewUninstall_bwg.php:35
3408
  msgid ""
3409
  "Deactivating Photo Gallery plugin does not remove any data that may have "
3410
  "been created. To completely remove this plugin, you can uninstall it here."
3411
  msgstr ""
3412
+ "Desactivar el plugin Photo Gallery no elimina cualquier dato que pueda "
3413
+ "haberse creado. Para eliminar completamente este plugin, puede desinstalarlo "
3414
+ "desde aquí."
3415
 
3416
  #: ../admin/views/BWGViewUninstall_bwg.php:38
3417
  msgid "WARNING:"
3422
  "Once uninstalled, this can't be undone. You should use a Database Backup "
3423
  "plugin of WordPress to back up all the data first."
3424
  msgstr ""
3425
+ "Una vez desinstalado, esto no se podrá deshacer. Debe usar un plugin de "
3426
+ "copia de seguridad de la base de datos de WordPress para hacer copias de "
3427
+ "seguridad de todos los datos antes de hacer esto."
3428
 
3429
  #: ../admin/views/BWGViewUninstall_bwg.php:42
3430
  msgid "The following Database Tables will be deleted:"
3431
+ msgstr "Se eliminarán las siguientes tablas de la base de datos:"
3432
 
3433
  #: ../admin/views/BWGViewUninstall_bwg.php:47
3434
  msgid "Database Tables"
3435
+ msgstr "Tablas de la base de datos"
3436
 
3437
  #: ../admin/views/BWGViewUninstall_bwg.php:70
3438
  msgid "Delete the folder containing uploaded images."
3440
 
3441
  #: ../admin/views/BWGViewUninstall_bwg.php:76
3442
  msgid "Do you really want to uninstall Photo Gallery?"
3443
+ msgstr "¿De verdad quieres desinstalar Photo Gallery?"
3444
 
3445
  #: ../admin/views/BWGViewUninstall_bwg.php:83
3446
  msgid ""
3447
  "You are About to Uninstall Photo Gallery from WordPress.\n"
3448
  "This Action Is Not Reversible."
3449
  msgstr ""
3450
+ "Vas a desinstalar Photo Gallery para WordPress.\n"
3451
  " Esta acción no es reversible."
3452
 
3453
  #: ../admin/views/BWGViewUninstall_bwg.php:133
3454
  msgid "The following Database Tables successfully deleted:"
3455
+ msgstr "Las siguientes tablas de la base de datos se eliminaron con éxito:"
3456
 
3457
  #: ../admin/views/BWGViewUninstall_bwg.php:149
3458
  msgid "The folder was successfully deleted."
3464
 
3465
  #: ../admin/views/BWGViewUninstall_bwg.php:156
3466
  msgid "Click Here"
3467
+ msgstr "Clicka aquí"
3468
 
3469
  #: ../admin/views/BWGViewUninstall_bwg.php:156
3470
  msgid ""
3471
  "To Finish the Uninstallation and Photo Gallery will be Deactivated "
3472
  "Automatically."
3473
  msgstr ""
3474
+ "Para finalizar la desinstalación, Photo Gallery se desactivará "
3475
  "automáticamente."
3476
 
3477
  #: ../admin/views/BWGViewWidget.php:106
3482
 
3483
  #: ../admin/views/BWGViewWidget.php:140 ../framework/WDWLibrary.php:521
3484
  msgid "First"
3485
+ msgstr "Primero"
3486
 
3487
  #: ../admin/views/BWGViewWidget.php:141 ../framework/WDWLibrary.php:524
3488
  msgid "Last"
3490
 
3491
  #: ../admin/views/BWGViewWidget.php:145
3492
  msgid "Count:"
3493
+ msgstr "Contador:"
3494
 
3495
  #: ../admin/views/BWGViewWidget.php:149
3496
  #: ../admin/views/BWGViewWidgetSlideshow.php:117
3500
 
3501
  #: ../admin/views/BWGViewWidgetSlideshow.php:122
3502
  msgid "Filmstrip height:"
3503
+ msgstr "Altura de la tira de imágenes:"
3504
 
3505
  #: ../admin/views/BWGViewWidgetTags.php:123
3506
  msgid "Show Tag Names:"
3508
 
3509
  #: ../admin/views/BWGViewWidgetTags.php:129
3510
  msgid "Open in:"
3511
+ msgstr "Abrir en:"
3512
 
3513
  #: ../admin/views/BWGViewWidgetTags.php:130
3514
  msgid "page"
3516
 
3517
  #: ../admin/views/BWGViewWidgetTags.php:131
3518
  msgid "lightbox"
3519
+ msgstr "lightbox"
3520
 
3521
  #: ../admin/views/BWGViewWidgetTags.php:135
3522
  msgid "Number (0 for all):"
3524
 
3525
  #: ../admin/views/BWGViewWidgetTags.php:144
3526
  msgid "Transparent Background:"
3527
+ msgstr "Transparencia del fondo:"
3528
 
3529
  #: ../admin/views/BWGViewWidgetTags.php:150
3530
  msgid "Background Color:"
3540
 
3541
  #: ../filemanager/view.php:63
3542
  msgid "File loading failed"
3543
+ msgstr "Falló la carga de archivos"
3544
 
3545
  #: ../filemanager/view.php:65
3546
  msgid "Are you sure you want to permanently remove selected items?"
3549
 
3550
  #: ../filemanager/view.php:66
3551
  msgid "This will cancel uploads. Continue?"
3552
+ msgstr "Esto cancelará la subida de archivos ¿Continuar?"
3553
 
3554
  #: ../filemanager/view.php:68
3555
  msgid "Enter directory name"
3561
 
3562
  #: ../filemanager/view.php:70
3563
  msgid "Processing uploaded files..."
3564
+ msgstr "Procesando los archivos cargados..."
3565
 
3566
  #: ../filemanager/view.php:118
3567
  msgid "Up"
3573
 
3574
  #: ../filemanager/view.php:120
3575
  msgid "Rename item"
3576
+ msgstr "Renombrar elemento"
3577
 
3578
  #: ../filemanager/view.php:122
3579
  msgid "Copy"
3580
+ msgstr "Copiar"
3581
 
3582
  #: ../filemanager/view.php:123
3583
  msgid "Cut"
3593
 
3594
  #: ../filemanager/view.php:128
3595
  msgid "Upload files"
3596
+ msgstr "Cargar archivos"
3597
 
3598
  #: ../filemanager/view.php:133
3599
  msgid "Media library"
3600
+ msgstr "Librería multimedia"
3601
 
3602
  #: ../filemanager/view.php:142
3603
  msgid "View thumbs"
3604
+ msgstr "Ver miniaturas"
3605
 
3606
  #: ../filemanager/view.php:143
3607
  msgid "View list"
3609
 
3610
  #: ../filemanager/view.php:150
3611
  msgid "To change upload directory go to Options page."
3612
+ msgstr "Para cambiar el directorio de carga ir a la página de Opciones."
3613
 
3614
  #: ../filemanager/view.php:275
3615
  msgid "Add selected images to gallery"
3617
 
3618
  #: ../filemanager/view.php:285 ../filemanager/view.php:368
3619
  msgid "Thumbnail Maximum Dimensions:"
3620
+ msgstr "Dimensiones máximas de la miniatura:"
3621
 
3622
  #: ../filemanager/view.php:290 ../filemanager/view.php:373 ..
3623
  #: /frontend/views/BWGViewAlbum_compact_preview.php:603
3624
  #: /frontend/views/BWGViewAlbum_extended_preview.php:584
3625
  msgid "Back"
3626
+ msgstr "Atrás"
3627
 
3628
  #: ../filemanager/view.php:293 ../filemanager/view.php:376
3629
  msgid "Image Maximum Dimensions:"
3630
+ msgstr "Dimensiones máximas de la imagen:"
3631
 
3632
  #: ../filemanager/view.php:360
3633
  msgid "Import selected images"
3651
 
3652
  #: ../framework/WDWLibrary.php:82
3653
  msgid "The item is successfully set as default."
3654
+ msgstr "Se ha establecido correctamente el elemento por defecto."
3655
 
3656
  #: ../framework/WDWLibrary.php:88
3657
  msgid "Options Succesfully Saved."
3659
 
3660
  #: ../framework/WDWLibrary.php:124
3661
  msgid "A term with the name provided already exists."
3662
+ msgstr "Ya existe un valor con el nombre proporcionado."
3663
 
3664
  #: ../framework/WDWLibrary.php:130
3665
  msgid "Name field is required."
3666
+ msgstr "Se requiere el campo Nombre."
3667
 
3668
  #: ../framework/WDWLibrary.php:136
3669
  msgid "The slug must be unique."
3670
+ msgstr "El slug debe ser único."
3671
 
3672
  #: ../framework/WDWLibrary.php:142
3673
  msgid "Changes must be saved."
3685
 
3686
  #: ../framework/WDWLibrary.php:516
3687
  msgid " item(s)"
3688
+ msgstr "objeto(s)"
3689
 
3690
  #: ../framework/WDWLibrary.php:522
3691
  msgid "Previous"
3713
 
3714
  #: ../framework/WDWLibrary.php:562
3715
  msgid "Load More..."
3716
+ msgstr "Cargar más..."
3717
 
3718
  #: ../framework/WDWLibrary.php:846
3719
  msgid "Order by: "
3746
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:626 ..
3747
  #: /frontend/views/BWGViewAlbum_extended_preview.php:595
3748
  msgid "Album is empty."
3749
+ msgstr "El álbum está vacío."
3750
 
3751
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:749 ..
3752
  #: /frontend/views/BWGViewAlbum_extended_preview.php:731
3753
  msgid "Gallery is empty."
3754
+ msgstr "La galería está vacía."
3755
 
3756
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:805 ..
3757
  #: /frontend/views/BWGViewAlbum_extended_preview.php:775
3760
  #: ../frontend/views/BWGViewSlideshow.php:1443
3761
  #: /frontend/views/BWGViewThumbnails.php:457
3762
  msgid "Play"
3763
+ msgstr "Reproducir"
3764
 
3765
  #: ../frontend/views/BWGViewAlbum_extended_preview.php:696 ..
3766
  #: /frontend/views/BWGViewAlbum_extended_preview.php:819
3773
 
3774
  #: ../frontend/views/BWGViewGalleryBox.php:815
3775
  msgid "The image has been deleted."
3776
+ msgstr "La imagen ha sido eliminada."
3777
 
3778
  #: ../frontend/views/BWGViewGalleryBox.php:839 ..
3779
  #: /frontend/views/BWGViewGalleryBox.php:1575
3807
 
3808
  #: ../frontend/views/BWGViewGalleryBox.php:1766
3809
  msgid "Hide Comments"
3810
+ msgstr "Ocultar comentarios"
3811
 
3812
  #: ../frontend/views/BWGViewGalleryBox.php:1911
3813
  msgid "Hide info"
3827
  #: ../frontend/views/BWGViewSlideshow. php:1434
3828
  #: ../frontend/views/BWGViewSlideshow.php:1452
3829
  msgid "Pause"
3830
+ msgstr "Pausar"
3831
 
3832
  #: ../frontend/views/BWGViewImage_browser.php:77 ..
3833
  #: /frontend/views/BWGViewSlideshow.php:124
3834
  #: ../frontend/views/BWGViewThumbnails. php:164
3835
  msgid "There is no gallery selected or the gallery was deleted."
3836
+ msgstr "No hay ninguna galería seleccionada o la galería se ha eliminado."
languages/bwg-es_ES.mo CHANGED
Binary file
languages/bwg-es_ES.po CHANGED
@@ -2,27 +2,27 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2015-04-02 12:19+0400\n"
5
- "PO-Revision-Date: 2015-04-02 12:19+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\plugins\\photo-"
17
  "gallery\n"
18
 
19
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:528
20
  msgid " item(s)"
21
- msgstr "artículo (s)"
22
 
23
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:533
24
  msgid "First"
25
- msgstr "En primer lugar"
26
 
27
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:534
28
  msgid "Previous"
@@ -34,7 +34,7 @@ msgstr "Siguiente"
34
 
35
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:536
36
  msgid "Last"
37
- msgstr "Pasado"
38
 
39
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:562
40
  msgid "Go to the first page"
@@ -62,7 +62,7 @@ msgstr "Restablecer"
62
 
63
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:658
64
  msgid "Search"
65
- msgstr "Búsqueda"
66
 
67
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:700
68
  msgid "Order by: "
@@ -70,19 +70,19 @@ msgstr "Ordenar por"
70
 
71
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:702
72
  msgid "Default"
73
- msgstr "defecto"
74
 
75
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:703
76
  msgid "Filename"
77
- msgstr "Nombre Del Archivo"
78
 
79
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:704
80
  msgid "Size"
81
- msgstr "tamaño"
82
 
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:705
84
  msgid "Random"
85
- msgstr "aleatorio"
86
 
87
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
88
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:99
@@ -95,7 +95,7 @@ msgstr "aleatorio"
95
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:151
96
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:155
97
  msgid "There is no theme selected or the theme was deleted."
98
- msgstr "No hay tema seleccionado o se ha eliminado el tema"
99
 
100
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:161
101
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:193
@@ -123,26 +123,26 @@ msgstr "No hay imágenes en esta galería."
123
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:464
124
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:502
125
  msgid "Back"
126
- msgstr "Back"
127
 
128
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:964
129
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:902
130
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:518
131
  msgid "Album is empty."
132
- msgstr "Álbum está vacío"
133
 
134
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1088
135
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1047
136
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:598
137
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3399
138
  msgid "There are no images matching your search."
139
- msgstr "No hay imágenes que coinciden con su búsqueda."
140
 
141
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1093
142
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1052
143
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:603
144
  msgid "Gallery is empty."
145
- msgstr "Galería está vacía"
146
 
147
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1157
148
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1210
@@ -154,7 +154,7 @@ msgstr "Galería está vacía"
154
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:504
155
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:446
156
  msgid "Play"
157
- msgstr "Juega"
158
 
159
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1006
160
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1188
@@ -172,7 +172,7 @@ msgstr "Ocultar"
172
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:156
173
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:160
174
  msgid "There is no gallery selected or the gallery was deleted."
175
- msgstr "No hay galería seleccionada o la galería se ha eliminado."
176
 
177
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:540
178
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:869
@@ -184,21 +184,21 @@ msgstr "Mostrar comentarios"
184
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:879
185
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:880
186
  msgid "Share on Facebook"
187
- msgstr "Comparte en Facebook"
188
 
189
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:553
190
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:554
191
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:886
192
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:887
193
  msgid "Share on Twitter"
194
- msgstr "Comparte en Twitter"
195
 
196
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:560
197
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:561
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:893
199
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:894
200
  msgid "Share on Google+"
201
- msgstr "Comparte en Google+"
202
 
203
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:567
204
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:568
@@ -234,12 +234,12 @@ msgstr "Pantalla completa"
234
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
235
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2329
236
  msgid "Show info"
237
- msgstr "Mostrar info"
238
 
239
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:871
240
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2340
241
  msgid "Show rating"
242
- msgstr "Mostrar clasificación"
243
 
244
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:915
245
  msgid "Open image in original size."
@@ -251,16 +251,16 @@ msgstr "Descargar la imagen original"
251
 
252
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1033
253
  msgid "Hits: "
254
- msgstr "Hits: "
255
 
256
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1044
257
  msgid "Rated."
258
- msgstr "Puntuación."
259
 
260
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1048
261
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1062
262
  msgid "Not rated yet."
263
- msgstr "No se ha clasificado. "
264
 
265
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1050
266
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1084
@@ -269,20 +269,20 @@ msgstr "Votos: "
269
 
270
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1082
271
  msgid "Cancel your rating."
272
- msgstr "Cancelar su calificación. "
273
 
274
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1084
275
  msgid "You have already rated."
276
- msgstr "Ya has valorado. "
277
 
278
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1183
279
  msgid "Error. Incorrect Verification Code."
280
- msgstr "Error. Incorrecta del código de verificación. "
281
 
282
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1190
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3398
284
  msgid "This is not a valid email address."
285
- msgstr "Esto no es una dirección de correo electrónico válida."
286
 
287
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1198
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
@@ -299,7 +299,7 @@ msgstr "Nombre"
299
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1230
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1237
301
  msgid "Email"
302
- msgstr "Email"
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1215
305
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1230
@@ -325,15 +325,15 @@ msgstr "Eliminar comentario"
325
 
326
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
327
  msgid "Show Comments"
328
- msgstr "Restaurar"
329
 
330
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
331
  msgid "Hide info"
332
- msgstr "Anterior información"
333
 
334
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2336
335
  msgid "Hide rating"
336
- msgstr "Ocultar calificación"
337
 
338
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2533
339
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2753
@@ -349,12 +349,12 @@ msgstr "Salir de pantalla completa"
349
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1629
350
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1647
351
  msgid "Pause"
352
- msgstr "Pausa"
353
 
354
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3397
355
  msgid "field is required."
356
- msgstr "Se requiere campo. "
357
 
358
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3419
359
  msgid "Photo gallery plugin autoupdate interval."
360
- msgstr "Galería de fotos plugin de intervalo de actualización automática."
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2015-04-02 12:19+0400\n"
5
+ "PO-Revision-Date: 2015-11-09 18:06+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:/wamp/www/wordpress/wp-content/plugins/photo-"
17
  "gallery\n"
18
 
19
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:528
20
  msgid " item(s)"
21
+ msgstr "objeto (s)"
22
 
23
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:533
24
  msgid "First"
25
+ msgstr "Primero"
26
 
27
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:534
28
  msgid "Previous"
34
 
35
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:536
36
  msgid "Last"
37
+ msgstr "Último"
38
 
39
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:562
40
  msgid "Go to the first page"
62
 
63
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:658
64
  msgid "Search"
65
+ msgstr "Buscar"
66
 
67
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:700
68
  msgid "Order by: "
70
 
71
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:702
72
  msgid "Default"
73
+ msgstr "Defecto"
74
 
75
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:703
76
  msgid "Filename"
77
+ msgstr "Nombre del archivo"
78
 
79
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:704
80
  msgid "Size"
81
+ msgstr "Tamaño"
82
 
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:705
84
  msgid "Random"
85
+ msgstr "Aleatorio"
86
 
87
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
88
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:99
95
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:151
96
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:155
97
  msgid "There is no theme selected or the theme was deleted."
98
+ msgstr "No hay ningún tema seleccionado o se ha eliminado el tema"
99
 
100
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:161
101
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:193
123
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:464
124
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:502
125
  msgid "Back"
126
+ msgstr "Atrás"
127
 
128
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:964
129
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:902
130
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:518
131
  msgid "Album is empty."
132
+ msgstr "El álbum está vacío"
133
 
134
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1088
135
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1047
136
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:598
137
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3399
138
  msgid "There are no images matching your search."
139
+ msgstr "No hay imágenes que coincidan con su búsqueda."
140
 
141
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1093
142
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1052
143
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_masonry_preview.php:603
144
  msgid "Gallery is empty."
145
+ msgstr "La galería está vacía"
146
 
147
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1157
148
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:1210
154
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:504
155
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:446
156
  msgid "Play"
157
+ msgstr "Reproducir"
158
 
159
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1006
160
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:1188
172
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:156
173
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_mosaic.php:160
174
  msgid "There is no gallery selected or the gallery was deleted."
175
+ msgstr "No hay ninguna galería seleccionada o la galería se ha eliminado."
176
 
177
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:540
178
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:869
184
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:879
185
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:880
186
  msgid "Share on Facebook"
187
+ msgstr "Compartir en Facebook"
188
 
189
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:553
190
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:554
191
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:886
192
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:887
193
  msgid "Share on Twitter"
194
+ msgstr "Compartir en Twitter"
195
 
196
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:560
197
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:561
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:893
199
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:894
200
  msgid "Share on Google+"
201
+ msgstr "Compartir en Google+"
202
 
203
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:567
204
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:568
234
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
235
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2329
236
  msgid "Show info"
237
+ msgstr "Mostrar información"
238
 
239
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:871
240
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2340
241
  msgid "Show rating"
242
+ msgstr "Mostrar puntuación"
243
 
244
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:915
245
  msgid "Open image in original size."
251
 
252
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1033
253
  msgid "Hits: "
254
+ msgstr "Visitas: "
255
 
256
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1044
257
  msgid "Rated."
258
+ msgstr "Puntuado."
259
 
260
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1048
261
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1062
262
  msgid "Not rated yet."
263
+ msgstr "No se ha puntuado todavia. "
264
 
265
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1050
266
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1084
269
 
270
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1082
271
  msgid "Cancel your rating."
272
+ msgstr "Cancelar su voto."
273
 
274
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1084
275
  msgid "You have already rated."
276
+ msgstr "Ya lo has puntuado."
277
 
278
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1183
279
  msgid "Error. Incorrect Verification Code."
280
+ msgstr "Error. Código de verificación incorrecto. "
281
 
282
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1190
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3398
284
  msgid "This is not a valid email address."
285
+ msgstr "Esta no es una dirección de correo electrónico válida."
286
 
287
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1198
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
299
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1230
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1237
301
  msgid "Email"
302
+ msgstr "Correo electrónico"
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1215
305
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1230
325
 
326
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
327
  msgid "Show Comments"
328
+ msgstr "Mostrar comentarios"
329
 
330
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
331
  msgid "Hide info"
332
+ msgstr "Ocultar información"
333
 
334
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2336
335
  msgid "Hide rating"
336
+ msgstr "Ocultar puntuación"
337
 
338
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2533
339
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2753
349
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1629
350
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1647
351
  msgid "Pause"
352
+ msgstr "Pausar"
353
 
354
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3397
355
  msgid "field is required."
356
+ msgstr "se requiere el campo. "
357
 
358
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery/photo-gallery.php:3419
359
  msgid "Photo gallery plugin autoupdate interval."
360
+ msgstr "Iintervalo de actualización automática del plugin Photo gallery."
photo-gallery.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
- * Version: 1.2.69
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -2339,7 +2339,7 @@ function bwg_activate() {
2339
  ));
2340
  }
2341
  $version = get_option("wd_bwg_version");
2342
- $new_version = '1.2.69';
2343
  if ($version && version_compare($version, $new_version, '<')) {
2344
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2345
  bwg_update($version);
@@ -2387,7 +2387,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
2387
 
2388
  function bwg_update_hook() {
2389
  $version = get_option("wd_bwg_version");
2390
- $new_version = '1.2.69';
2391
  if ($version && version_compare($version, $new_version, '<')) {
2392
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2393
  bwg_update($version);
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
+ * Version: 1.2.70
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
2339
  ));
2340
  }
2341
  $version = get_option("wd_bwg_version");
2342
+ $new_version = '1.2.70';
2343
  if ($version && version_compare($version, $new_version, '<')) {
2344
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2345
  bwg_update($version);
2387
 
2388
  function bwg_update_hook() {
2389
  $version = get_option("wd_bwg_version");
2390
+ $new_version = '1.2.70';
2391
  if ($version && version_compare($version, $new_version, '<')) {
2392
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2393
  bwg_update($version);
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
  Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
- Stable tag: 1.2.69
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -97,7 +97,6 @@ Upgrade to [WordPress Photo Gallery Pro](https://web-dorado.com/products/wordpre
97
  * Mosaic gallery View
98
  * Blog Style View.
99
  * Masonry Album view
100
- * Pro lightbox
101
  * Slideshow/Lightbox 15 effects.
102
  * Editable themes.
103
  * Instagram Integration.
@@ -152,7 +151,7 @@ Russian (ru_RU)
152
  Romanian (ro_RO)
153
  Serbian (sr_RS)
154
  Slovak (sk_SK)
155
- Spanish (es_ES)
156
  Swedish (sv_SE)
157
  Tamil (ta)
158
  Thai (th)
@@ -216,6 +215,11 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
216
 
217
  == Changelog ==
218
 
 
 
 
 
 
219
  = 1.2.69 =
220
  * Fixed: Album view bug.
221
 
4
  Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
+ Stable tag: 1.2.70
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
97
  * Mosaic gallery View
98
  * Blog Style View.
99
  * Masonry Album view
 
100
  * Slideshow/Lightbox 15 effects.
101
  * Editable themes.
102
  * Instagram Integration.
151
  Romanian (ro_RO)
152
  Serbian (sr_RS)
153
  Slovak (sk_SK)
154
+ Spanish (es_ES) by Alexandro Lacadena
155
  Swedish (sv_SE)
156
  Tamil (ta)
157
  Thai (th)
215
 
216
  == Changelog ==
217
 
218
+ = 1.2.70 =
219
+ * Changed: Blog style view scroll load.
220
+ * Changed: Lightbox buttons responsiveness.
221
+ * Fixed: Spanish translation by Alexandro Lacadena.
222
+
223
  = 1.2.69 =
224
  * Fixed: Album view bug.
225