Photo Gallery by WD – Responsive Photo Gallery - Version 1.4.6

Version Description

  • Fixed: "The loopback request to your site failed" error.
  • Fixed: Import large amount of images from media library.
  • Fixed: Album random effect from widget.
  • Fixed: Preload images bug, when count is 0.
  • Fixed: Fixed: Load more and scroll load doesn't work for images in extended album view (masonry view of images).
  • Fixed: Show gallery description functionality for Gallery groups.
  • Fixed: Warnings on PHP 7.1.
  • Fixed: Total width of mosaic gallery.
  • Fixed: Gallery title/description in gallery views.
  • Fixed: Add tag to image.
  • Fixed: Watermark image broken thumbnail shows on Carousel view.
  • Fixed: Keep selected theme tab.
  • Fixed: Filmstrip width on Mac.
  • Added: All Galleries option in Gallery group when adding a shortcode.
  • Added: Loading for admin pages.
  • Added: Zoom effect for thumbnail view.
  • Added: Resizable functionality for thumbnails.
  • Added: Distance from container frame option.
  • Changed: Removed hover effect from mobile devices.
  • Improved: Distance between thumbnails in standard thumbnail view.
  • Improved: Spanish translation (thanks to Pedro Javier Fernandez Ruiz).
  • Improved: Greek translation (thanks to John Fy).
Download this release

Release Info

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

Code changes from version 1.4.5 to 1.4.6

Files changed (44) hide show
  1. admin/controllers/Options.php +15 -15
  2. admin/controllers/Themes.php +118 -90
  3. admin/models/Galleries.php +2 -2
  4. admin/models/Themes.php +1 -1
  5. admin/views/AddTags.php +9 -8
  6. admin/views/Albumsgalleries.php +32 -34
  7. admin/views/Options.php +22 -4
  8. admin/views/Shortcode.php +2 -7
  9. admin/views/Themes.php +65 -54
  10. admin/views/Widget.php +7 -4
  11. css/bwg_frontend.css +168 -17
  12. css/bwg_tables.css +5 -2
  13. filemanager/UploadHandler.php +3 -4
  14. framework/BWGOptions.php +3 -0
  15. framework/WDWLibrary.php +400 -361
  16. frontend/controllers/BWGControllerAlbum_compact_preview.php +11 -0
  17. frontend/controllers/BWGControllerAlbum_extended_preview.php +25 -5
  18. frontend/controllers/BWGControllerAlbum_masonry_preview.php +13 -1
  19. frontend/controllers/BWGControllerGalleryBox.php +1 -1
  20. frontend/controllers/BWGControllerThumbnails.php +0 -19
  21. frontend/controllers/controller.php +154 -0
  22. frontend/models/BWGModelAlbum_extended_preview.php +0 -31
  23. frontend/models/BWGModelGalleryBox.php +16 -16
  24. frontend/models/BWGModelThumbnails.php +0 -3
  25. frontend/models/model.php +120 -0
  26. frontend/views/BWGViewAlbum_compact_preview.php +40 -27
  27. frontend/views/BWGViewAlbum_extended_preview.php +30 -8
  28. frontend/views/BWGViewGalleryBox.php +85 -1210
  29. frontend/views/BWGViewImage_browser.php +5 -5
  30. frontend/views/BWGViewSlideshow.php +10 -212
  31. frontend/views/BWGViewThumbnails.php +158 -612
  32. frontend/views/view.php +482 -0
  33. images/ajax_loader.gif +0 -0
  34. images/ajax_loader.png +0 -0
  35. insert.php +2 -2
  36. js/bwg.js +69 -36
  37. js/bwg_frontend.js +1322 -10
  38. js/bwg_gallery_box.js +0 -2
  39. languages/bwg-el.mo +0 -0
  40. languages/bwg-el.po +1167 -1510
  41. languages/bwg-es_ES.mo +0 -0
  42. languages/bwg-es_ES.po +1142 -1371
  43. photo-gallery.php +22 -11
  44. readme.txt +25 -1
admin/controllers/Options.php CHANGED
@@ -249,24 +249,24 @@ class OptionsController_bwg {
249
  $image = wp_get_image_editor( $file_path );
250
  if ( ! is_wp_error( $image ) ) {
251
  $image_size = $image->get_size();
252
- $img_width = $image_size['width'];
253
- $img_height = $image_size['height'];
254
- }
255
- if (!$img_width || !$img_height) {
256
- continue;
257
- }
258
- $max_width = BWG()->options->upload_thumb_width;
259
- $max_height = BWG()->options->upload_thumb_height;
260
- $scale = min(
261
  $max_width / $img_width,
262
  $max_height / $img_height
263
- );
264
- $new_width = $img_width * $scale;
265
- $new_height = $img_height * $scale;
266
 
267
- $image->set_quality(BWG()->options->image_quality);
268
- $image->resize($new_width, $new_height, false);
269
- $image->save($new_file_path);
 
270
  }
271
  }
272
  }
249
  $image = wp_get_image_editor( $file_path );
250
  if ( ! is_wp_error( $image ) ) {
251
  $image_size = $image->get_size();
252
+ $img_width = $image_size[ 'width' ];
253
+ $img_height = $image_size[ 'height' ];
254
+ if ( !$img_width || !$img_height ) {
255
+ continue;
256
+ }
257
+ $max_width = BWG()->options->upload_thumb_width;
258
+ $max_height = BWG()->options->upload_thumb_height;
259
+ $scale = min(
 
260
  $max_width / $img_width,
261
  $max_height / $img_height
262
+ );
263
+ $new_width = $img_width * $scale;
264
+ $new_height = $img_height * $scale;
265
 
266
+ $image->set_quality( BWG()->options->image_quality );
267
+ $image->resize( $new_width, $new_height, false );
268
+ $image->save( $new_file_path );
269
+ }
270
  }
271
  }
272
  }
admin/controllers/Themes.php CHANGED
@@ -223,101 +223,127 @@ class ThemesController_bwg {
223
  * @param int $id
224
  * @param bool $bulk
225
  */
226
- public function edit( $id = 0, $bulk = FALSE ) {
227
- $reset = WDWLibrary::get('reset', FALSE);
228
- // Get Theme data.
229
- $row = $this->model->get_row_data($id, $reset);
230
- $current_type = WDWLibrary::get('current_type', 'Thumbnail');
231
- $form_action = add_query_arg(array(
232
- 'page' => 'themes_' . BWG()->prefix,
233
- 'current_id' => $id,
234
- BWG()->nonce => wp_create_nonce(BWG()->nonce),
235
- ), admin_url('admin.php'));
236
- $tabs = array(
237
- 'Thumbnail' => __('Thumbnail', BWG()->prefix),
238
- 'Masonry' => __('Masonry', BWG()->prefix),
239
- 'Mosaic' => __('Mosaic', BWG()->prefix),
240
- 'Slideshow' => __('Slideshow', BWG()->prefix),
241
- 'Image_browser' => __('Image browser', BWG()->prefix),
242
- 'Compact_album' => __('Compact album', BWG()->prefix),
243
- 'Masonry_album' => __('Masonry album', BWG()->prefix),
244
- 'Extended_album' => __('Extended album', BWG()->prefix),
245
- 'Blog_style' => __('Blog style', BWG()->prefix),
246
- 'Lightbox' => __('Lightbox', BWG()->prefix),
247
- 'Navigation' => __('Navigation', BWG()->prefix),
248
- 'Carousel' => __('Carousel', BWG()->prefix),
249
- );
250
- $border_styles = array(
251
- 'none' => __('None', BWG()->prefix),
252
- 'solid' => __('Solid', BWG()->prefix),
253
- 'dotted' => __('Dotted', BWG()->prefix),
254
- 'dashed' => __('Dashed', BWG()->prefix),
255
- 'double' => __('Double', BWG()->prefix),
256
- 'groove' => __('Groove', BWG()->prefix),
257
- 'ridge' => __('Ridge', BWG()->prefix),
258
- 'inset' => __('Inset', BWG()->prefix),
259
- 'outset' => __('Outset', BWG()->prefix),
260
- );
261
- $google_fonts = WDWLibrary::get_google_fonts();
262
- $font_families = array(
263
- 'arial' => 'Arial',
264
- 'lucida grande' => 'Lucida grande',
265
- 'segoe ui' => 'Segoe ui',
266
- 'tahoma' => 'Tahoma',
267
- 'trebuchet ms' => 'Trebuchet ms',
268
- 'verdana' => 'Verdana',
269
- 'cursive' => 'Cursive',
270
- 'fantasy' => 'Fantasy',
271
- 'monospace' => 'Monospace',
272
- 'serif' => 'Serif',
273
- );
274
- $aligns = array(
275
- 'left' => __('Left', BWG()->prefix),
276
- 'center' => __('Center', BWG()->prefix),
277
- 'right' => __('Right', BWG()->prefix),
278
- );
279
- $font_weights = array(
280
- 'lighter' => __('Lighter', BWG()->prefix),
281
- 'normal' => __('Normal', BWG()->prefix),
282
- 'bold' => __('Bold', BWG()->prefix),
283
- );
284
- $hover_effects = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  'none' => __('None', BWG()->prefix),
286
  'rotate' => __('Rotate', BWG()->prefix),
287
  'scale' => __('Scale', BWG()->prefix),
 
288
  'skew' => __('Skew', BWG()->prefix),
289
  );
290
- $button_styles = array(
291
- 'fa-chevron' => __('Chevron', BWG()->prefix),
292
- 'fa-angle' => __('Angle', BWG()->prefix),
293
- 'fa-angle-double' => __('Double', BWG()->prefix),
294
- );
295
- $rate_icons = array(
296
- 'star' => __('Star', BWG()->prefix),
297
- 'bell' => __('Bell', BWG()->prefix),
298
- 'circle' => __('Circle', BWG()->prefix),
299
- 'flag' => __('Flag', BWG()->prefix),
300
- 'heart' => __('Heart', BWG()->prefix),
301
- 'square' => __('Square', BWG()->prefix),
302
- );
303
- $params = array(
304
- 'id' => $id,
305
- 'row' => $row,
306
- 'reset' => $reset,
307
- 'form_action' => $form_action,
308
- 'tabs' => $tabs,
309
- 'current_type' => $current_type,
310
- 'border_styles' => $border_styles,
311
- 'google_fonts' => $google_fonts,
312
- 'font_families' => $font_families,
313
- 'aligns' => $aligns,
314
- 'font_weights' => $font_weights,
315
- 'hover_effects' => $hover_effects,
316
- 'button_styles' => $button_styles,
317
- 'rate_icons' => $rate_icons,
318
- );
319
- $this->view->edit($params);
320
- }
 
 
 
 
 
 
 
 
321
 
322
  /**
323
  * Reset by id.
@@ -340,12 +366,14 @@ class ThemesController_bwg {
340
  */
341
  public function save( $id = 0 ) {
342
  $data = $this->save_db($id);
 
343
  $page = WDWLibrary::get('page');
344
  $query_url = wp_nonce_url(admin_url('admin.php'), 'themes_bwg', 'bwg_nonce');
345
  $query_url = add_query_arg(array(
346
  'page' => $page,
347
  'task' => 'edit',
348
  'current_id' => $data['id'],
 
349
  'message' => $data['msg'],
350
  ), $query_url);
351
  WDWLibrary::spider_redirect($query_url);
223
  * @param int $id
224
  * @param bool $bulk
225
  */
226
+ public function edit( $id = 0, $bulk = FALSE ) {
227
+ $reset = WDWLibrary::get('reset', FALSE);
228
+ // Get Theme data.
229
+ $row = $this->model->get_row_data($id, $reset);
230
+ if (!isset($row->container_margin)) {
231
+ $row->container_margin = 1;
232
+ }
233
+ $current_type = WDWLibrary::get('current_type', 'Thumbnail');
234
+ $form_action = add_query_arg( array(
235
+ 'page' => 'themes_' . BWG()->prefix,
236
+ 'current_id' => $id,
237
+ BWG()->nonce => wp_create_nonce(BWG()->nonce),
238
+ ), admin_url('admin.php') );
239
+
240
+ $tabs = array(
241
+ 'Thumbnail' => __('Thumbnail', BWG()->prefix),
242
+ 'Masonry' => __('Masonry', BWG()->prefix),
243
+ 'Mosaic' => __('Mosaic', BWG()->prefix),
244
+ 'Slideshow' => __('Slideshow', BWG()->prefix),
245
+ 'Image_browser' => __('Image browser', BWG()->prefix),
246
+ 'Compact_album' => __('Compact album', BWG()->prefix),
247
+ 'Masonry_album' => __('Masonry album', BWG()->prefix),
248
+ 'Extended_album' => __('Extended album', BWG()->prefix),
249
+ 'Blog_style' => __('Blog style', BWG()->prefix),
250
+ 'Lightbox' => __('Lightbox', BWG()->prefix),
251
+ 'Navigation' => __('Navigation', BWG()->prefix),
252
+ 'Carousel' => __('Carousel', BWG()->prefix),
253
+ );
254
+
255
+ $border_styles = array(
256
+ 'none' => __('None', BWG()->prefix),
257
+ 'solid' => __('Solid', BWG()->prefix),
258
+ 'dotted' => __('Dotted', BWG()->prefix),
259
+ 'dashed' => __('Dashed', BWG()->prefix),
260
+ 'double' => __('Double', BWG()->prefix),
261
+ 'groove' => __('Groove', BWG()->prefix),
262
+ 'ridge' => __('Ridge', BWG()->prefix),
263
+ 'inset' => __('Inset', BWG()->prefix),
264
+ 'outset' => __('Outset', BWG()->prefix),
265
+ );
266
+
267
+ $google_fonts = WDWLibrary::get_google_fonts();
268
+ $font_families = array(
269
+ 'arial' => 'Arial',
270
+ 'lucida grande' => 'Lucida grande',
271
+ 'segoe ui' => 'Segoe ui',
272
+ 'tahoma' => 'Tahoma',
273
+ 'trebuchet ms' => 'Trebuchet ms',
274
+ 'verdana' => 'Verdana',
275
+ 'cursive' =>'Cursive',
276
+ 'fantasy' => 'Fantasy',
277
+ 'monospace' => 'Monospace',
278
+ 'serif' => 'Serif',
279
+ );
280
+
281
+ $aligns = array(
282
+ 'left' => __('Left', BWG()->prefix),
283
+ 'center' => __('Center', BWG()->prefix),
284
+ 'right' => __('Right', BWG()->prefix),
285
+ );
286
+
287
+ $font_weights = array(
288
+ 'lighter' => __('Lighter', BWG()->prefix),
289
+ 'normal' => __('Normal', BWG()->prefix),
290
+ 'bold' => __('Bold', BWG()->prefix),
291
+ );
292
+
293
+ // ToDO: Remove after global update.
294
+ $hover_effects = array(
295
+ 'none' => __('None', BWG()->prefix),
296
+ 'rotate' => __('Rotate', BWG()->prefix),
297
+ 'scale' => __('Scale', BWG()->prefix),
298
+ 'skew' => __('Skew', BWG()->prefix),
299
+ );
300
+
301
+ $thumbnail_hover_effects = array(
302
  'none' => __('None', BWG()->prefix),
303
  'rotate' => __('Rotate', BWG()->prefix),
304
  'scale' => __('Scale', BWG()->prefix),
305
+ 'zoom' => __('Zoom', BWG()->prefix),
306
  'skew' => __('Skew', BWG()->prefix),
307
  );
308
+
309
+ $button_styles = array(
310
+ 'fa-chevron' => __('Chevron', BWG()->prefix),
311
+ 'fa-angle' => __('Angle', BWG()->prefix),
312
+ 'fa-angle-double' => __('Double', BWG()->prefix),
313
+ );
314
+
315
+ $rate_icons = array(
316
+ 'star' => __('Star', BWG()->prefix),
317
+ 'bell' => __('Bell', BWG()->prefix),
318
+ 'circle' => __('Circle', BWG()->prefix),
319
+ 'flag' => __('Flag', BWG()->prefix),
320
+ 'heart' => __('Heart', BWG()->prefix),
321
+ 'square' => __('Square', BWG()->prefix),
322
+ );
323
+
324
+ $active_tab = WDWLibrary::get('active_tab','Thumbnail');
325
+
326
+ $params = array(
327
+ 'id' => $id,
328
+ 'row' => $row,
329
+ 'reset' => $reset,
330
+ 'form_action' => $form_action,
331
+ 'tabs' => $tabs,
332
+ 'current_type' => $current_type,
333
+ 'border_styles' => $border_styles,
334
+ 'google_fonts' => $google_fonts,
335
+ 'font_families' => $font_families,
336
+ 'aligns' => $aligns,
337
+ 'font_weights' => $font_weights,
338
+ 'hover_effects' => $hover_effects,
339
+ 'thumbnail_hover_effects' => $thumbnail_hover_effects,
340
+ 'button_styles' => $button_styles,
341
+ 'rate_icons' => $rate_icons,
342
+ 'active_tab' => $active_tab,
343
+ );
344
+ $this->view->edit( $params );
345
+ }
346
+
347
 
348
  /**
349
  * Reset by id.
366
  */
367
  public function save( $id = 0 ) {
368
  $data = $this->save_db($id);
369
+ $active_tab = WDWLibrary::get('active_tab','Thumbnail');
370
  $page = WDWLibrary::get('page');
371
  $query_url = wp_nonce_url(admin_url('admin.php'), 'themes_bwg', 'bwg_nonce');
372
  $query_url = add_query_arg(array(
373
  'page' => $page,
374
  'task' => 'edit',
375
  'current_id' => $data['id'],
376
+ 'active_tab' => $active_tab,
377
  'message' => $data['msg'],
378
  ), $query_url);
379
  WDWLibrary::spider_redirect($query_url);
admin/models/Galleries.php CHANGED
@@ -876,14 +876,14 @@ class GalleriesModel_bwg {
876
  $gallery_id = (int) WDWLibrary::get('current_id', 0);
877
  $image_width = (int) WDWLibrary::get('image_width', 1600);
878
  $image_height = (int) WDWLibrary::get('image_height', 1200);
879
- $where = ( ($gallery_id) ? ' WHERE gallery_id=' . $gallery_id . ( $image_id ? ' AND id=' . $image_id : '' ) : '' );
880
  $images = $wpdb->get_results('SELECT * FROM `' . $wpdb->prefix . 'bwg_image` ' . $where );
881
  if ( !empty($images) ) {
882
  foreach ( $images as $image ) {
883
  $this->scaled_image(ABSPATH . BWG()->upload_dir . $image->image_url, $image_width, $image_height);
884
  }
885
  }
886
- WDWLibrary::update_image_modifie_date( $where );
887
 
888
  return 24;
889
  }
876
  $gallery_id = (int) WDWLibrary::get('current_id', 0);
877
  $image_width = (int) WDWLibrary::get('image_width', 1600);
878
  $image_height = (int) WDWLibrary::get('image_height', 1200);
879
+ $where = ( ($gallery_id) ? ' gallery_id=' . $gallery_id . ( $image_id ? ' AND id=' . $image_id : '' ) : '' );
880
  $images = $wpdb->get_results('SELECT * FROM `' . $wpdb->prefix . 'bwg_image` ' . $where );
881
  if ( !empty($images) ) {
882
  foreach ( $images as $image ) {
883
  $this->scaled_image(ABSPATH . BWG()->upload_dir . $image->image_url, $image_width, $image_height);
884
  }
885
  }
886
+ WDWLibrary::update_image_modified_date( $where );
887
 
888
  return 24;
889
  }
admin/models/Themes.php CHANGED
@@ -416,7 +416,7 @@ class ThemesModel_bwg {
416
  }
417
  }
418
  else {
419
- $theme_defaults = '{"thumb_margin":"2","thumb_padding":"0","thumb_border_radius":"0","thumb_border_width":0,"thumb_border_style":"none","thumb_border_color":"CCCCCC","thumb_bg_color":"FFFFFF","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"scale","thumb_hover_effect_value":"1.08","thumb_transition":1,"thumb_title_margin":"2px","thumb_title_font_style":"Ubuntu","thumb_title_pos":"bottom","thumb_title_font_color":"CCCCCC","thumb_title_shadow":"0px 0px 0px #888888","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"solid","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FFFFFF","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":100,"lightbox_ctrl_btn_color":"808080","lightbox_toggle_btn_height":20,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"FFFFFF","lightbox_ctrl_cont_border_radius":4,"lightbox_ctrl_cont_transparent":85,"lightbox_close_btn_bg_color":"FFFFFF","lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_width":2,"lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"0","lightbox_close_btn_color":"808080","lightbox_close_btn_size":20,"lightbox_close_btn_width":30,"lightbox_close_btn_height":30,"lightbox_close_btn_top":"-20","lightbox_close_btn_right":"-15","lightbox_close_btn_full_color":"000000","lightbox_close_btn_transparent":60,"lightbox_rl_btn_bg_color":"FFFFFF","lightbox_rl_btn_transparent":"60","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":0,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"ADADAD","lightbox_rl_btn_height":35,"lightbox_rl_btn_width":35,"lightbox_rl_btn_size":25,"lightbox_close_rl_btn_hover_color":"808080","lightbox_comment_pos":"left","lightbox_comment_width":350,"lightbox_comment_bg_color":"FFFFFF","lightbox_comment_font_color":"7A7A7A","lightbox_comment_font_style":"Ubuntu","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"2F2F2F","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"7px","lightbox_comment_button_padding":"10px 10px","lightbox_comment_input_bg_color":"F7F8F9","lightbox_comment_input_border_color":"EBEBEB","lightbox_comment_input_border_width":2,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"7px","lightbox_comment_input_padding":"5px","lightbox_comment_separator_width":20,"lightbox_comment_separator_style":"none","lightbox_comment_separator_color":"383838","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"808080","lightbox_filmstrip_rl_bg_color":"EBEBEB","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"808080","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_pos":"bottom","lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_overlay_bg_transparent":60,"lightbox_bg_color":"FFFFFF","lightbox_overlay_bg_color":"EEEEEE","lightbox_rl_btn_style":"fa-angle","lightbox_bg_transparent":100,"blog_style_margin":"2px","blog_style_padding":"0","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"solid","blog_style_border_color":"F5F5F5","blog_style_bg_color":"FFFFFF","blog_style_transparent":80,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_font_size":20,"blog_style_share_buttons_color":"B3AFAF","blog_style_share_buttons_bg_transparent":0,"blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"0","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"F5F5F5","image_browser_bg_color":"EBEBEB","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"0px 5px 0px 5px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"EBEBEB","image_browser_image_description_align":"center","image_browser_img_font_size":15,"image_browser_img_font_family":"Ubuntu","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":2,"image_browser_full_border_style":"none","image_browser_full_border_color":"F7F7F7","image_browser_full_bg_color":"F5F5F5","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","album_compact_title_margin":"2px","album_compact_thumb_margin":2,"album_compact_back_padding":"0","album_compact_thumb_padding":0,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":0,"album_compact_title_font_style":"segoe ui","album_compact_back_font_color":"000000","album_compact_title_font_color":"FFFFFF","album_compact_title_shadow":"0px 0px 0px #888888","album_compact_thumb_bg_transparent":0,"album_compact_thumb_box_shadow":"0px 0px 0px #888888","album_compact_thumb_transition":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"CCCCCC","album_compact_thumb_bg_color":"FFFFFF","album_compact_back_font_weight":"bold","album_compact_back_font_size":16,"album_compact_back_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_thumbs_bg_color":"FFFFFF","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"scale","album_compact_thumb_transparent":100,"album_compact_thumb_hover_effect_value":"1.08","album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":0,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":0,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"CCCCCC","album_extended_thumb_bg_color":"FFFFFF","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":0,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"scale","album_extended_thumb_hover_effect_value":"1.08","album_extended_thumb_transition":1,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":20,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0 0 0 0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"solid","album_extended_div_separator_color":"E0E0E0","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":1,"album_extended_thumb_div_border_style":"solid","album_extended_thumb_div_border_color":"E8E8E8","album_extended_thumb_div_padding":"5px","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"solid","album_extended_text_div_border_color":"E8E8E8","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"F2D22E","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","slideshow_cont_bg_color":"F2F2F2","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"FFFFFF","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"0px 0px 0px #000000","slideshow_rl_btn_color":"D6D6D6","slideshow_rl_btn_height":37,"slideshow_rl_btn_size":12,"slideshow_rl_btn_width":37,"slideshow_close_rl_btn_hover_color":"BABABA","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":0,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0px 2px 0 0 ","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":100,"slideshow_filmstrip_rl_bg_color":"F2F2F2","slideshow_filmstrip_rl_btn_color":"BABABA","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"0 0 0 0","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":12,"slideshow_dots_height":12,"slideshow_dots_border_radius":"5px","slideshow_dots_background_color":"F2D22E","slideshow_dots_margin":3,"slideshow_dots_active_background_color":"FFFFFF","slideshow_dots_active_border_width":1,"slideshow_dots_active_border_color":"000000","slideshow_play_pause_btn_size":35,"slideshow_rl_btn_style":"fa-chevron","masonry_thumb_padding":"2","masonry_thumb_border_radius":"0","masonry_thumb_border_width":"0","masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":"0","masonry_thumb_transparent":"100","masonry_thumb_align":"center","masonry_thumb_hover_effect":"scale","masonry_thumb_hover_effect_value":"1.08","masonry_thumb_transition":"1","masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","mosaic_thumb_padding":"2","mosaic_thumb_border_radius":"0","mosaic_thumb_border_width":"0","mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":"0","mosaic_thumb_transparent":"100","mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"scale","mosaic_thumb_hover_effect_value":"1.08","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_title_font_weight":"bold","mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","lightbox_info_pos":"bottom","lightbox_info_align":"left","lightbox_info_bg_color":"FFFFFF","lightbox_info_bg_transparent":"70","lightbox_info_border_width":"1","lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"0px","lightbox_info_padding":"10px 7px 44px 10px","lightbox_info_margin":"10px 10px -5px 10px","lightbox_title_color":"808080","lightbox_title_font_style":"Ubuntu","lightbox_title_font_weight":"bold","lightbox_title_font_size":"16","lightbox_description_color":"B0B0B0","lightbox_description_font_style":"Ubuntu","lightbox_description_font_weight":"bold","lightbox_description_font_size":"13","lightbox_rate_pos":"top","lightbox_rate_align":"left","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":"20","lightbox_rate_stars_count":"5","lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":"70","lightbox_hit_border_width":"1","lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":"14","masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":16,"album_masonry_back_font_weight":"bold","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"","album_masonry_title_shadow":"0px 0px 0px #888888","album_masonry_thumb_margin":0,"album_masonry_thumb_padding":0,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":0,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"CCCCCC","album_masonry_thumb_bg_color":"FFFFFF","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":0,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"scale","album_masonry_thumb_hover_effect_value":"1.08","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":50,"carousel_rl_btn_bg_color":"FFFFFF","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"303030","carousel_rl_btn_height":35,"carousel_rl_btn_size":15,"carousel_play_pause_btn_size":25,"carousel_rl_btn_width":35,"carousel_close_rl_btn_hover_color":"191919","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"arial","carousel_feature_border_width":2,"carousel_feature_border_style":"none","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":"1"}';
420
  $theme_defaults = json_decode($theme_defaults);
421
  foreach ($theme_defaults as $key => $value) {
422
  $row->$key = $value;
416
  }
417
  }
418
  else {
419
+ $theme_defaults = '{"thumb_margin":"4","container_margin":"1","thumb_padding":"0","thumb_border_radius":"0","thumb_border_width":0,"thumb_border_style":"none","thumb_border_color":"CCCCCC","thumb_bg_color":"FFFFFF","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"zoom","thumb_hover_effect_value":"1.08","thumb_transition":1,"thumb_title_margin":"2px","thumb_title_font_style":"Ubuntu","thumb_title_pos":"bottom","thumb_title_font_color":"CCCCCC","thumb_title_shadow":"0px 0px 0px #888888","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"solid","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FFFFFF","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":100,"lightbox_ctrl_btn_color":"808080","lightbox_toggle_btn_height":20,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"FFFFFF","lightbox_ctrl_cont_border_radius":4,"lightbox_ctrl_cont_transparent":85,"lightbox_close_btn_bg_color":"FFFFFF","lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_width":2,"lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"0","lightbox_close_btn_color":"808080","lightbox_close_btn_size":20,"lightbox_close_btn_width":30,"lightbox_close_btn_height":30,"lightbox_close_btn_top":"-20","lightbox_close_btn_right":"-15","lightbox_close_btn_full_color":"000000","lightbox_close_btn_transparent":60,"lightbox_rl_btn_bg_color":"FFFFFF","lightbox_rl_btn_transparent":"60","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":0,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"ADADAD","lightbox_rl_btn_height":35,"lightbox_rl_btn_width":35,"lightbox_rl_btn_size":25,"lightbox_close_rl_btn_hover_color":"808080","lightbox_comment_pos":"left","lightbox_comment_width":350,"lightbox_comment_bg_color":"FFFFFF","lightbox_comment_font_color":"7A7A7A","lightbox_comment_font_style":"Ubuntu","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"2F2F2F","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"7px","lightbox_comment_button_padding":"10px 10px","lightbox_comment_input_bg_color":"F7F8F9","lightbox_comment_input_border_color":"EBEBEB","lightbox_comment_input_border_width":2,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"7px","lightbox_comment_input_padding":"5px","lightbox_comment_separator_width":20,"lightbox_comment_separator_style":"none","lightbox_comment_separator_color":"383838","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"808080","lightbox_filmstrip_rl_bg_color":"EBEBEB","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"808080","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_pos":"bottom","lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_overlay_bg_transparent":60,"lightbox_bg_color":"FFFFFF","lightbox_overlay_bg_color":"EEEEEE","lightbox_rl_btn_style":"fa-angle","lightbox_bg_transparent":100,"blog_style_margin":"2px","blog_style_padding":"0","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"solid","blog_style_border_color":"F5F5F5","blog_style_bg_color":"FFFFFF","blog_style_transparent":80,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_font_size":20,"blog_style_share_buttons_color":"B3AFAF","blog_style_share_buttons_bg_transparent":0,"blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"0","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"F5F5F5","image_browser_bg_color":"EBEBEB","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"0px 5px 0px 5px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"EBEBEB","image_browser_image_description_align":"center","image_browser_img_font_size":15,"image_browser_img_font_family":"Ubuntu","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":2,"image_browser_full_border_style":"none","image_browser_full_border_color":"F7F7F7","image_browser_full_bg_color":"F5F5F5","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","album_compact_title_margin":"2px","album_compact_thumb_margin":2,"album_compact_back_padding":"0","album_compact_thumb_padding":0,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":0,"album_compact_title_font_style":"segoe ui","album_compact_back_font_color":"000000","album_compact_title_font_color":"FFFFFF","album_compact_title_shadow":"0px 0px 0px #888888","album_compact_thumb_bg_transparent":0,"album_compact_thumb_box_shadow":"0px 0px 0px #888888","album_compact_thumb_transition":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"CCCCCC","album_compact_thumb_bg_color":"FFFFFF","album_compact_back_font_weight":"bold","album_compact_back_font_size":16,"album_compact_back_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_thumbs_bg_color":"FFFFFF","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"scale","album_compact_thumb_transparent":100,"album_compact_thumb_hover_effect_value":"1.08","album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":0,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":0,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"CCCCCC","album_extended_thumb_bg_color":"FFFFFF","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":0,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"scale","album_extended_thumb_hover_effect_value":"1.08","album_extended_thumb_transition":1,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":20,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0 0 0 0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"solid","album_extended_div_separator_color":"E0E0E0","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":1,"album_extended_thumb_div_border_style":"solid","album_extended_thumb_div_border_color":"E8E8E8","album_extended_thumb_div_padding":"5px","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"solid","album_extended_text_div_border_color":"E8E8E8","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"F2D22E","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","slideshow_cont_bg_color":"F2F2F2","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"FFFFFF","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"0px 0px 0px #000000","slideshow_rl_btn_color":"D6D6D6","slideshow_rl_btn_height":37,"slideshow_rl_btn_size":12,"slideshow_rl_btn_width":37,"slideshow_close_rl_btn_hover_color":"BABABA","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":0,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0px 2px 0 0 ","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":100,"slideshow_filmstrip_rl_bg_color":"F2F2F2","slideshow_filmstrip_rl_btn_color":"BABABA","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"0 0 0 0","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":12,"slideshow_dots_height":12,"slideshow_dots_border_radius":"5px","slideshow_dots_background_color":"F2D22E","slideshow_dots_margin":3,"slideshow_dots_active_background_color":"FFFFFF","slideshow_dots_active_border_width":1,"slideshow_dots_active_border_color":"000000","slideshow_play_pause_btn_size":35,"slideshow_rl_btn_style":"fa-chevron","masonry_thumb_padding":"2","masonry_thumb_border_radius":"0","masonry_thumb_border_width":"0","masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":"0","masonry_thumb_transparent":"100","masonry_thumb_align":"center","masonry_thumb_hover_effect":"scale","masonry_thumb_hover_effect_value":"1.08","masonry_thumb_transition":"1","masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","mosaic_thumb_padding":"2","mosaic_thumb_border_radius":"0","mosaic_thumb_border_width":"0","mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":"0","mosaic_thumb_transparent":"100","mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"scale","mosaic_thumb_hover_effect_value":"1.08","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_title_font_weight":"bold","mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","lightbox_info_pos":"bottom","lightbox_info_align":"left","lightbox_info_bg_color":"FFFFFF","lightbox_info_bg_transparent":"70","lightbox_info_border_width":"1","lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"0px","lightbox_info_padding":"10px 7px 44px 10px","lightbox_info_margin":"10px 10px -5px 10px","lightbox_title_color":"808080","lightbox_title_font_style":"Ubuntu","lightbox_title_font_weight":"bold","lightbox_title_font_size":"16","lightbox_description_color":"B0B0B0","lightbox_description_font_style":"Ubuntu","lightbox_description_font_weight":"bold","lightbox_description_font_size":"13","lightbox_rate_pos":"top","lightbox_rate_align":"left","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":"20","lightbox_rate_stars_count":"5","lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":"70","lightbox_hit_border_width":"1","lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":"14","masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":16,"album_masonry_back_font_weight":"bold","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"","album_masonry_title_shadow":"0px 0px 0px #888888","album_masonry_thumb_margin":0,"album_masonry_thumb_padding":0,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":0,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"CCCCCC","album_masonry_thumb_bg_color":"FFFFFF","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":0,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"scale","album_masonry_thumb_hover_effect_value":"1.08","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":50,"carousel_rl_btn_bg_color":"FFFFFF","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"303030","carousel_rl_btn_height":35,"carousel_rl_btn_size":15,"carousel_play_pause_btn_size":25,"carousel_rl_btn_width":35,"carousel_close_rl_btn_hover_color":"191919","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"arial","carousel_feature_border_width":2,"carousel_feature_border_style":"none","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":"1"}';
420
  $theme_defaults = json_decode($theme_defaults);
421
  foreach ($theme_defaults as $key => $value) {
422
  $row->$key = $value;
admin/views/AddTags.php CHANGED
@@ -41,16 +41,17 @@ class AddTagsView_bwg extends AdminView_bwg {
41
  * @param $params
42
  */
43
  public function body( $params ) {
44
- ?>
45
  <div class="wd-table-container">
46
  <?php
47
- $image_id = WDWLibrary::get('image_id', 0);
48
- echo $this->title( array(
49
- 'title' => $params['page_title'],
50
- 'title_class' => 'wd-header',
51
- 'add_new_button' => FALSE,
52
- )
53
- );
 
54
  ?>
55
  <div class="wp-search-wrap">
56
  <?php echo $this->search(); ?>
41
  * @param $params
42
  */
43
  public function body( $params ) {
44
+ ?>
45
  <div class="wd-table-container">
46
  <?php
47
+ $image_id = WDWLibrary::get('image_id', 0);
48
+ echo $this->title( array(
49
+ 'title' => $params['page_title'],
50
+ 'title_class' => 'wd-header',
51
+ 'add_new_button' => FALSE,
52
+ )
53
+ );
54
+ $params['page_url'] = add_query_arg(array('image_id' => $image_id), $params['page_url']);
55
  ?>
56
  <div class="wp-search-wrap">
57
  <?php echo $this->search(); ?>
admin/views/Albumsgalleries.php CHANGED
@@ -52,25 +52,24 @@ class AlbumsgalleriesView_bwg extends AdminView_bwg {
52
  * @param $params
53
  */
54
  public function body( $params ) {
55
- ?>
56
- <div id="loading_div"></div>
57
- <div id="wd-content">
58
- <div class="wd-table-container">
59
- <?php
60
  echo $this->title( array(
61
  'title' => $params['page_title'],
62
  'title_class' => 'wd-header',
63
  'add_new_button' => FALSE,
64
  )
65
  );
66
- ?>
67
  <div class="wp-search-wrap">
68
- <?php echo $this->search(); ?>
69
- <div class="tablenav top">
70
- <?php echo $this->pagination($params['page_url'], $params['total'], $params['items_per_page']); ?>
71
- </div>
72
  </div>
73
- <div>
74
  <table class="wp-list-table widefat fixed pages media">
75
  <thead>
76
  <td class="sortable manage-column column-cb check-column table_small_col">
@@ -84,17 +83,17 @@ class AlbumsgalleriesView_bwg extends AdminView_bwg {
84
  if ($params['rows']) {
85
  $iterator = 0;
86
  foreach ($params['rows'] as $row) {
87
- $alternate = (!isset($alternate) || $alternate == '') ? 'class="alternate"' : '';
88
- $preview_image = BWG()->plugin_url . '/images/no-image.png';
89
- if ( !empty($row->preview_image) ) {
90
- $preview_image = site_url() . '/' . BWG()->upload_dir . $row->preview_image;
91
- }
92
- if ( !empty($row->random_preview_image)) {
93
- $preview_image = site_url() . '/' . BWG()->upload_dir . $row->random_preview_image;
94
- if ( WDWLibrary::check_external_link($row->random_preview_image) ) {
95
- $preview_image = $row->random_preview_image;
96
- }
97
- }
98
  ?>
99
  <tr id="tr_<?php echo $iterator; ?>" <?php echo $alternate; ?>>
100
  <th class="table_small_col check-column">
@@ -109,12 +108,12 @@ class AlbumsgalleriesView_bwg extends AdminView_bwg {
109
  <?php echo $row->name?>
110
  </a>
111
  <?php if ( !$row->published ) { ?>
112
- — <span class="post-state"><?php _e('Unpublished', BWG()->prefix); ?></span>
113
- <?php } ?>
114
  </strong>
115
- <button class="toggle-row" type="button">
116
- <span class="screen-reader-text"><?php _e('Show more details', BWG()->prefix); ?></span>
117
- </button>
118
  </td>
119
  <td id="type_<?php echo $iterator; ?>" class="table_medium_col_uncenter" data-colname="<?php _e('Type', BWG()->prefix); ?>">
120
  <?php echo ($row->is_album ? __("Gallery group", BWG()->prefix) : __("Gallery", BWG()->prefix)) ; ?>
@@ -125,7 +124,7 @@ class AlbumsgalleriesView_bwg extends AdminView_bwg {
125
  }
126
  }
127
  else {
128
- echo WDWLibrary::no_items('galleries or gallery groups',3);
129
  }
130
  ?>
131
  </tbody>
@@ -138,12 +137,11 @@ class AlbumsgalleriesView_bwg extends AdminView_bwg {
138
  <button class="button media-button button-primary button-large media-button-insert" type="button" onclick="jQuery('#loading_div').show(); spider_get_items();"><?php _e('Add to Gallery Group', BWG()->prefix); ?></button>
139
  </div>
140
  </div>
141
- </div>
142
- </div>
143
- <script>
144
- jQuery(window).load(function() {
145
- jQuery("#loading_div", window.parent.document).hide();
146
- });
147
  </script>
148
  <?php
149
  }
52
  * @param $params
53
  */
54
  public function body( $params ) {
55
+ ?>
56
+ <div id="loading_div"></div>
57
+ <div class="wd-table-container">
58
+ <?php
 
59
  echo $this->title( array(
60
  'title' => $params['page_title'],
61
  'title_class' => 'wd-header',
62
  'add_new_button' => FALSE,
63
  )
64
  );
65
+ ?>
66
  <div class="wp-search-wrap">
67
+ <?php echo $this->search(); ?>
68
+ <div class="tablenav top">
69
+ <?php echo $this->pagination($params['page_url'], $params['total'], $params['items_per_page']); ?>
70
+ </div>
71
  </div>
72
+ <div>
73
  <table class="wp-list-table widefat fixed pages media">
74
  <thead>
75
  <td class="sortable manage-column column-cb check-column table_small_col">
83
  if ($params['rows']) {
84
  $iterator = 0;
85
  foreach ($params['rows'] as $row) {
86
+ $alternate = (!isset($alternate) || $alternate == '') ? 'class="alternate"' : '';
87
+ $preview_image = BWG()->plugin_url . '/images/no-image.png';
88
+ if ( !empty($row->preview_image) ) {
89
+ $preview_image = site_url() . '/' . BWG()->upload_dir . $row->preview_image;
90
+ }
91
+ if ( !empty($row->random_preview_image)) {
92
+ $preview_image = site_url() . '/' . BWG()->upload_dir . $row->random_preview_image;
93
+ if ( WDWLibrary::check_external_link($row->random_preview_image) ) {
94
+ $preview_image = $row->random_preview_image;
95
+ }
96
+ }
97
  ?>
98
  <tr id="tr_<?php echo $iterator; ?>" <?php echo $alternate; ?>>
99
  <th class="table_small_col check-column">
108
  <?php echo $row->name?>
109
  </a>
110
  <?php if ( !$row->published ) { ?>
111
+ — <span class="post-state"><?php _e('Unpublished', BWG()->prefix); ?></span>
112
+ <?php } ?>
113
  </strong>
114
+ <button class="toggle-row" type="button">
115
+ <span class="screen-reader-text"><?php _e('Show more details', BWG()->prefix); ?></span>
116
+ </button>
117
  </td>
118
  <td id="type_<?php echo $iterator; ?>" class="table_medium_col_uncenter" data-colname="<?php _e('Type', BWG()->prefix); ?>">
119
  <?php echo ($row->is_album ? __("Gallery group", BWG()->prefix) : __("Gallery", BWG()->prefix)) ; ?>
124
  }
125
  }
126
  else {
127
+ echo WDWLibrary::no_items('galleries or gallery groups', 3);
128
  }
129
  ?>
130
  </tbody>
137
  <button class="button media-button button-primary button-large media-button-insert" type="button" onclick="jQuery('#loading_div').show(); spider_get_items();"><?php _e('Add to Gallery Group', BWG()->prefix); ?></button>
138
  </div>
139
  </div>
140
+ </div>
141
+ <script>
142
+ jQuery(window).load(function() {
143
+ jQuery("#loading_div", window.parent.document).hide();
144
+ });
 
145
  </script>
146
  <?php
147
  }
admin/views/Options.php CHANGED
@@ -27,7 +27,7 @@ class OptionsView_bwg extends AdminView_bwg {
27
 
28
  public function body($params) {
29
  $row = $params['row'];
30
- $instagram_return_url = $params['instagram_return_url'];
31
  $instagram_reset_href = $params['instagram_reset_href'];
32
  if (!$row) {
33
  echo WDWLibrary::message_id(2);
@@ -64,6 +64,7 @@ class OptionsView_bwg extends AdminView_bwg {
64
  'title_class' => 'wd-header',
65
  )
66
  );
 
67
  ?>
68
  <div class="bwg_tabs">
69
  <ul class="bwg-tabs">
@@ -100,7 +101,7 @@ class OptionsView_bwg extends AdminView_bwg {
100
  <p class="description"><?php _e('Provide the path of an existing folder inside the WordPress directory of your website to store uploaded images.<br />The content of the previous directory will be moved to the new one.', BWG()->prefix); ?></p>
101
  </div>
102
  </div>
103
- <div class="wd-box-content wd-width-100">
104
  <div class="wd-group">
105
  <label class="wd-label" for="upload_img_width"><?php _e('Image dimensions', BWG()->prefix); ?></label>
106
  <div class="bwg-flex">
@@ -130,6 +131,16 @@ class OptionsView_bwg extends AdminView_bwg {
130
  <p class="description"><?php _e('Set the quality of gallery images. Provide a value from 0 to 100%.', BWG()->prefix); ?></p>
131
  </div>
132
  </div>
 
 
 
 
 
 
 
 
 
 
133
  <div class="wd-box-content wd-width-100">
134
  <div class="wd-group">
135
  <label class="wd-label"><?php _e('Preload images', BWG()->prefix); ?></label>
@@ -2523,6 +2534,7 @@ class OptionsView_bwg extends AdminView_bwg {
2523
  <input type="number" name="popup_effect_duration" id="popup_effect_duration" value="<?php echo $row->popup_effect_duration; ?>" min="0" step="0.1" /><span>sec.</span>
2524
  </div>
2525
  <p class="description"><?php _e('Set the duration of lightbox animation effect.', BWG()->prefix) ?></p>
 
2526
  </div>
2527
  </div>
2528
  <div class="wd-box-content wd-width-100" id="tr_popup_autoplay">
@@ -2892,14 +2904,18 @@ class OptionsView_bwg extends AdminView_bwg {
2892
  <div class="wd-box-content wd-width-100">
2893
  <div class="wd-group" id="login_with_instagram">
2894
  <input id="instagram_access_token" name="instagram_access_token" type="hidden" size="30" value="<?php echo $row->instagram_access_token; ?>" readonly />
2895
- <?php if ( empty($row->instagram_access_token) ) { ?>
 
 
2896
  <a <?php echo BWG()->is_pro ? 'href="' . $instagram_return_url . '"' : 'disabled="disabled"'; ?>>
2897
  <img src="<?php echo BWG()->plugin_url . '/images/logos/instagram.png'; ?>">
2898
  <span class="bwg-instagram-sign-in"><?php _e('Sign in with Instagram', BWG()->prefix) ?></span>
2899
  </a>
2900
  <p class="bwg-clear description"><?php _e('Press this button to sign in to your Instagram account. This lets you incorporate Instagram API to your website.', BWG()->prefix) ?></p>
2901
  <?php }
2902
- else { ?>
 
 
2903
  <a <?php echo BWG()->is_pro ? 'href="' . $instagram_reset_href . '" onClick="if(confirm(\'' . addslashes(__('Are you sure you want to reset access token, after resetting it you will need to log in with Instagram again for using plugin', BWG()->prefix)) . '\')){ return true; } else { return false; }"' : 'disabled="disabled"'; ?>>
2904
  <img src="<?php echo BWG()->plugin_url . '/images/logos/instagram.png'; ?>">
2905
  <span class="bwg-instagram-sign-out"><?php _e('Sign out from Instagram', BWG()->prefix) ?></span>
@@ -3318,9 +3334,11 @@ class OptionsView_bwg extends AdminView_bwg {
3318
  <script>
3319
  function bwg_add_built_in_watermark_image(files) {
3320
  document.getElementById("built_in_watermark_url").value = '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + files[0]['url'];
 
3321
  }
3322
  function bwg_add_watermark_image(files) {
3323
  document.getElementById("watermark_url").value = '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + files[0]['url'];
 
3324
  }
3325
  jQuery(document).ready(function() {
3326
  bwg_inputs();
27
 
28
  public function body($params) {
29
  $row = $params['row'];
30
+ $instagram_return_url = $params['instagram_return_url'];
31
  $instagram_reset_href = $params['instagram_reset_href'];
32
  if (!$row) {
33
  echo WDWLibrary::message_id(2);
64
  'title_class' => 'wd-header',
65
  )
66
  );
67
+
68
  ?>
69
  <div class="bwg_tabs">
70
  <ul class="bwg-tabs">
101
  <p class="description"><?php _e('Provide the path of an existing folder inside the WordPress directory of your website to store uploaded images.<br />The content of the previous directory will be moved to the new one.', BWG()->prefix); ?></p>
102
  </div>
103
  </div>
104
+ <div class="wd-box-content wd-width-100">
105
  <div class="wd-group">
106
  <label class="wd-label" for="upload_img_width"><?php _e('Image dimensions', BWG()->prefix); ?></label>
107
  <div class="bwg-flex">
131
  <p class="description"><?php _e('Set the quality of gallery images. Provide a value from 0 to 100%.', BWG()->prefix); ?></p>
132
  </div>
133
  </div>
134
+ <div class="wd-box-content wd-width-100">
135
+ <div class="wd-group">
136
+ <label class="wd-label"><?php _e('Resizable thumbnails', BWG()->prefix); ?></label>
137
+ <div class="bwg-flex">
138
+ <input type="radio" name="resizable_thumbnails" id="resizable_thumbnails_1" value="1" <?php if ($row->resizable_thumbnails) echo 'checked="checked"'; ?> /><label for="resizable_thumbnails_1" class="wd-radio-label"><?php _e('Yes', BWG()->prefix); ?></label>
139
+ <input type="radio" name="resizable_thumbnails" id="resizable_thumbnails_0" value="0" <?php if (!$row->resizable_thumbnails) echo 'checked="checked"'; ?> /><label for="resizable_thumbnails_0" class="wd-radio-label"><?php _e('No', BWG()->prefix); ?></label>
140
+ </div>
141
+ <p class="description"><?php _e('Enable this option to allow resizing gallery thumbnails on smaller screens.', BWG()->prefix); ?></p>
142
+ </div>
143
+ </div>
144
  <div class="wd-box-content wd-width-100">
145
  <div class="wd-group">
146
  <label class="wd-label"><?php _e('Preload images', BWG()->prefix); ?></label>
2534
  <input type="number" name="popup_effect_duration" id="popup_effect_duration" value="<?php echo $row->popup_effect_duration; ?>" min="0" step="0.1" /><span>sec.</span>
2535
  </div>
2536
  <p class="description"><?php _e('Set the duration of lightbox animation effect.', BWG()->prefix) ?></p>
2537
+ <p class="description"><?php _e('Note, that the value of Effect Duration can not be greater than 1/4 of Time Interval.', BWG()->prefix) ?></p>
2538
  </div>
2539
  </div>
2540
  <div class="wd-box-content wd-width-100" id="tr_popup_autoplay">
2904
  <div class="wd-box-content wd-width-100">
2905
  <div class="wd-group" id="login_with_instagram">
2906
  <input id="instagram_access_token" name="instagram_access_token" type="hidden" size="30" value="<?php echo $row->instagram_access_token; ?>" readonly />
2907
+ <?php if ( empty($row->instagram_access_token) ) {
2908
+ $instagram_description = __('Press this button to sign in to your Instagram account. In this case, access token will be added automatically.', BWG()->prefix);
2909
+ ?>
2910
  <a <?php echo BWG()->is_pro ? 'href="' . $instagram_return_url . '"' : 'disabled="disabled"'; ?>>
2911
  <img src="<?php echo BWG()->plugin_url . '/images/logos/instagram.png'; ?>">
2912
  <span class="bwg-instagram-sign-in"><?php _e('Sign in with Instagram', BWG()->prefix) ?></span>
2913
  </a>
2914
  <p class="bwg-clear description"><?php _e('Press this button to sign in to your Instagram account. This lets you incorporate Instagram API to your website.', BWG()->prefix) ?></p>
2915
  <?php }
2916
+ else {
2917
+ $instagram_description = __('Press this button to sign out from your Instagram account. The access token will reset.', BWG()->prefix);
2918
+ ?>
2919
  <a <?php echo BWG()->is_pro ? 'href="' . $instagram_reset_href . '" onClick="if(confirm(\'' . addslashes(__('Are you sure you want to reset access token, after resetting it you will need to log in with Instagram again for using plugin', BWG()->prefix)) . '\')){ return true; } else { return false; }"' : 'disabled="disabled"'; ?>>
2920
  <img src="<?php echo BWG()->plugin_url . '/images/logos/instagram.png'; ?>">
2921
  <span class="bwg-instagram-sign-out"><?php _e('Sign out from Instagram', BWG()->prefix) ?></span>
3334
  <script>
3335
  function bwg_add_built_in_watermark_image(files) {
3336
  document.getElementById("built_in_watermark_url").value = '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + files[0]['url'];
3337
+ preview_built_in_watermark();
3338
  }
3339
  function bwg_add_watermark_image(files) {
3340
  document.getElementById("watermark_url").value = '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + files[0]['url'];
3341
+ preview_watermark();
3342
  }
3343
  jQuery(document).ready(function() {
3344
  bwg_inputs();
admin/views/Shortcode.php CHANGED
@@ -263,7 +263,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
263
  </div>
264
  </div>
265
  <div id="custom_options_conainer" class="wd-box-content wd-width-100">
266
- <div class="postbox closed">
267
  <button class="button-link handlediv" type="button" aria-expanded="true">
268
  <span class="screen-reader-text"><?php _e('Toggle panel:', BWG()->prefix); ?></span>
269
  <span class="toggle-indicator" aria-hidden="false"></span>
@@ -2404,6 +2404,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
2404
  <input type="text" name="popup_effect_duration" id="popup_effect_duration" value="<?php echo BWG()->options->popup_effect_duration; ?>" class="spider_int_input" /> sec.
2405
  </div>
2406
  <p class="description"><?php _e("Set the duration of lightbox animation effect.", BWG()->prefix); ?></p>
 
2407
  </div>
2408
  </div>
2409
  <div class="wd-box-content wd-width-100" id="tr_popup_autoplay">
@@ -4298,12 +4299,6 @@ class ShortcodeView_bwg extends AdminView_bwg {
4298
  return "<img src='<?php echo BWG()->plugin_url; ?>/images/icons/gallery-icon.png' class='bwg_shortcode mceItem' title='Best_Wordpress_Gallery" + short_id + "' />";
4299
  });
4300
  }
4301
- //jQuery("#task").val("save");
4302
- //jQuery("#tagtext").val(tagtext);
4303
- //jQuery("#currrent_id").val(shortcode_id);
4304
- //jQuery("#title").val(title);
4305
- //jQuery("#bwg_insert").val((content && !bwg_insert) ? 0 : 1);
4306
- //jQuery("#bwg_shortcode_form").submit();
4307
  var post_data = {};
4308
  var url = '<?php echo add_query_arg(array( 'action' => 'shortcode_bwg' ), admin_url('admin-ajax.php')); ?>';
4309
  post_data['bwg_nonce'] = jQuery("#bwg_nonce").val();
263
  </div>
264
  </div>
265
  <div id="custom_options_conainer" class="wd-box-content wd-width-100">
266
+ <div class="postbox">
267
  <button class="button-link handlediv" type="button" aria-expanded="true">
268
  <span class="screen-reader-text"><?php _e('Toggle panel:', BWG()->prefix); ?></span>
269
  <span class="toggle-indicator" aria-hidden="false"></span>
2404
  <input type="text" name="popup_effect_duration" id="popup_effect_duration" value="<?php echo BWG()->options->popup_effect_duration; ?>" class="spider_int_input" /> sec.
2405
  </div>
2406
  <p class="description"><?php _e("Set the duration of lightbox animation effect.", BWG()->prefix); ?></p>
2407
+ <p class="description"><?php _e('Note, that the value of Effect Duration can not be greater than 1/4 of Time Interval.', BWG()->prefix) ?></p>
2408
  </div>
2409
  </div>
2410
  <div class="wd-box-content wd-width-100" id="tr_popup_autoplay">
4299
  return "<img src='<?php echo BWG()->plugin_url; ?>/images/icons/gallery-icon.png' class='bwg_shortcode mceItem' title='Best_Wordpress_Gallery" + short_id + "' />";
4300
  });
4301
  }
 
 
 
 
 
 
4302
  var post_data = {};
4303
  var url = '<?php echo add_query_arg(array( 'action' => 'shortcode_bwg' ), admin_url('admin-ajax.php')); ?>';
4304
  post_data['bwg_nonce'] = jQuery("#bwg_nonce").val();
admin/views/Themes.php CHANGED
@@ -153,7 +153,7 @@ class ThemesView_bwg extends AdminView_bwg {
153
  'name' => BWG()->prefix . '_themes',
154
  'class' => BWG()->prefix . '_themes wd-form',
155
  'action' => $params['form_action'],
156
- 'current_id' => $params['id']
157
  );
158
  echo $this->form(ob_get_clean(), $form_attr);
159
  }
@@ -164,7 +164,8 @@ class ThemesView_bwg extends AdminView_bwg {
164
  * @param $params
165
  */
166
  public function edit_body( $params ) {
167
- extract($params); ?>
 
168
  <div class="bwg-page-header">
169
  <div class="wd-page-title wd-header">
170
  <h1 class="wp-heading-inline"><?php _e('Theme title', BWG()->prefix); ?></h1>
@@ -174,24 +175,24 @@ class ThemesView_bwg extends AdminView_bwg {
174
  <button class="button button-primary button-large" onclick="if (spider_check_required('name', 'Title')) {return false;}; spider_set_input_value('task', 'save')">
175
  <?php echo !empty($row->name) ? __('Update', BWG()->prefix) : __('Save', BWG()->prefix); ?>
176
  </button>
177
- <?php if( $id ) { ?>
178
- <input title="<?php _e('Reset to default theme', BWG()->prefix); ?>"
179
  class="button preview-button button-large wd-btn-reset" type="submit"
180
  onclick="if (confirm('<?php echo addslashes(__('Do you want to reset to default?', BWG()->prefix)); ?>')) {
181
  spider_set_input_value('task', 'reset');
182
  } else {
183
  return false;
184
- }"
185
  value="<?php echo __('Reset', BWG()->prefix); ?>"/>
186
  <?php } ?>
187
  </div>
188
  <?php } ?>
189
  </div>
190
  <div class="bwg-clear"></div>
191
- </div>
192
  <ul class="bwg-tabs">
193
  <?php foreach($tabs as $key => $value) { ?>
194
- <li data-id="<?php echo $key ?>" class="bwg-tab-item <?php echo ($current_type == $key) ? 'active': ''; ?>"><?php echo $value; ?></li>
195
  <?php } ?>
196
  </ul>
197
  <div>
@@ -203,11 +204,21 @@ class ThemesView_bwg extends AdminView_bwg {
203
  <table style="clear:both;">
204
  <tbody>
205
  <tr>
206
- <td class="spider_label"><label for="thumb_margin"><?php echo __('Margin:', BWG()->prefix); ?> </label></td>
207
  <td>
208
- <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo $row->thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
209
  </td>
210
  </tr>
 
 
 
 
 
 
 
 
 
 
211
  <tr>
212
  <td class="spider_label"><label for="thumb_padding"><?php echo __('Padding:', BWG()->prefix); ?> </label></td>
213
  <td>
@@ -250,16 +261,16 @@ class ThemesView_bwg extends AdminView_bwg {
250
  <tr>
251
  <td class="spider_label"><label for="thumb_box_shadow"><?php echo __('Shadow:', BWG()->prefix); ?> </label></td>
252
  <td>
253
- <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo $row->thumb_box_shadow; ?>" class="spider_box_input" />
254
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
255
  </td>
256
  </tr>
257
  <tr>
258
  <td class="spider_label"><label for="thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
259
  <td>
260
- <select name="thumb_hover_effect" id="thumb_hover_effect" class="spider_int_input select_icon_them">
261
  <?php
262
- foreach ($hover_effects as $key => $hover_effect) {
263
  ?>
264
  <option value="<?php echo $key; ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect, BWG()->prefix); ?></option>
265
  <?php
@@ -272,7 +283,7 @@ class ThemesView_bwg extends AdminView_bwg {
272
  <td class="spider_label"><label for="thumb_hover_effect_value"><?php echo __('Hover effect value:', BWG()->prefix); ?> </label></td>
273
  <td>
274
  <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo $row->thumb_hover_effect_value; ?>" class="spider_char_input"/>
275
- <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg.', BWG()->prefix); ?></div>
276
  </td>
277
  </tr>
278
  <tr>
@@ -337,7 +348,7 @@ class ThemesView_bwg extends AdminView_bwg {
337
  </td>
338
  </tr>
339
  </tbody>
340
- </table>
341
  </div>
342
  </div>
343
  </div>
@@ -371,7 +382,7 @@ class ThemesView_bwg extends AdminView_bwg {
371
  <td class="spider_label"><label for="thumb_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
372
  <td>
373
  <select name="thumb_title_font_style" id="thumb_title_font_style">
374
- <?php
375
  $is_google_fonts = (in_array($row->thumb_title_font_style, $google_fonts)) ? true : false;
376
  $thumb_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
377
  foreach ($thumb_font_families as $key => $font_family) {
@@ -406,7 +417,7 @@ class ThemesView_bwg extends AdminView_bwg {
406
  <tr>
407
  <td class="spider_label"><label for="thumb_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
408
  <td>
409
- <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo $row->thumb_title_shadow; ?>" class="spider_box_input" />
410
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
411
  </td>
412
  </tr>
@@ -420,7 +431,7 @@ class ThemesView_bwg extends AdminView_bwg {
420
  <tr>
421
  <td class="spider_label"><label for="thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
422
  <td>
423
- <input type="text" name="thumb_gal_title_font_size" id="thumb_gal_title_font_size" value="<?php echo
424
  $row->thumb_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
425
  </td>
426
  </tr>
@@ -469,7 +480,7 @@ class ThemesView_bwg extends AdminView_bwg {
469
  <tr>
470
  <td class="spider_label"><label for="thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
471
  <td>
472
- <input type="text" name="thumb_gal_title_shadow" id="thumb_gal_title_shadow" value="<?php echo $row->thumb_gal_title_shadow; ?>" class="spider_box_input" />
473
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
474
  </td>
475
  </tr>
@@ -549,7 +560,7 @@ class ThemesView_bwg extends AdminView_bwg {
549
  </tr>
550
  </tbody>
551
  </table>
552
-
553
  </div>
554
  </div>
555
  </div>
@@ -594,7 +605,7 @@ class ThemesView_bwg extends AdminView_bwg {
594
  </tr>
595
  </tbody>
596
  </table>
597
-
598
  </div>
599
  </div>
600
  </div>
@@ -606,7 +617,7 @@ class ThemesView_bwg extends AdminView_bwg {
606
  <tr>
607
  <td class="spider_label"><label for="masonry_thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
608
  <td>
609
- <select name="masonry_thumb_hover_effect" id="masonry_thumb_hover_effect" class="spider_int_input select_icon_them">
610
  <?php
611
  foreach ($hover_effects as $key => $hover_effect) {
612
  ?>
@@ -647,7 +658,7 @@ class ThemesView_bwg extends AdminView_bwg {
647
  </tr>
648
  <tr>
649
  <td class="spider_label"><label for="masonry_description_font_style"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
650
- <td>
651
  <select name="masonry_description_font_style" id="masonry_description_font_style">
652
  <?php
653
  $is_google_fonts = (in_array($row->masonry_description_font_style, $google_fonts)) ? true : false;
@@ -659,7 +670,7 @@ class ThemesView_bwg extends AdminView_bwg {
659
  }
660
  ?>
661
  </select>
662
- <div>
663
  <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts1" onchange="bwg_change_fonts('masonry_description_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
664
  <label for="masonry_description_google_fonts1" id="masonry_description_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
665
  <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts0" onchange="bwg_change_fonts('masonry_description_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
@@ -718,7 +729,7 @@ class ThemesView_bwg extends AdminView_bwg {
718
  <tr>
719
  <td class="spider_label"><label for="masonry_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
720
  <td>
721
- <input type="text" name="masonry_thumb_gal_title_shadow" id="masonry_thumb_gal_title_shadow" value="<?php echo $row->masonry_thumb_gal_title_shadow; ?>" class="spider_box_input" />
722
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
723
  </td>
724
  </tr>
@@ -853,7 +864,7 @@ class ThemesView_bwg extends AdminView_bwg {
853
  <tr>
854
  <td class="spider_label"><label for="mosaic_thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
855
  <td>
856
- <select name="mosaic_thumb_hover_effect" id="mosaic_thumb_hover_effect" class="spider_int_input select_icon_them">
857
  <?php
858
  foreach ($hover_effects as $key => $hover_effect) {
859
  ?>
@@ -931,7 +942,7 @@ class ThemesView_bwg extends AdminView_bwg {
931
  <tr>
932
  <td class="spider_label"><label for="mosaic_thumb_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
933
  <td>
934
- <input type="text" name="mosaic_thumb_title_shadow" id="mosaic_thumb_title_shadow" value="<?php echo $row->mosaic_thumb_title_shadow; ?>" class="spider_box_input" />
935
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
936
  </td>
937
  </tr>
@@ -993,7 +1004,7 @@ class ThemesView_bwg extends AdminView_bwg {
993
  <tr>
994
  <td class="spider_label"><label for="mosaic_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
995
  <td>
996
- <input type="text" name="mosaic_thumb_gal_title_shadow" id="mosaic_thumb_gal_title_shadow" value="<?php echo $row->mosaic_thumb_gal_title_shadow; ?>" class="spider_box_input" />
997
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
998
  </td>
999
  </tr>
@@ -1137,7 +1148,7 @@ class ThemesView_bwg extends AdminView_bwg {
1137
  <tr>
1138
  <td class="spider_label"><label for="slideshow_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', BWG()->prefix); ?> </label></td>
1139
  <td>
1140
- <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo $row->slideshow_rl_btn_box_shadow; ?>" class="spider_box_input"/>
1141
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1142
  </td>
1143
  </tr>
@@ -1357,7 +1368,7 @@ class ThemesView_bwg extends AdminView_bwg {
1357
  <label for="slideshow_title_google_fonts1" id="slideshow_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1358
  <input type="radio" name="slideshow_title_google_fonts" id="slideshow_title_google_fonts0" onchange="bwg_change_fonts('slideshow_title_font', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1359
  <label for="slideshow_title_google_fonts0" id="slideshow_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1360
- </div>
1361
  </td>
1362
  </tr>
1363
  <tr>
@@ -1575,7 +1586,7 @@ class ThemesView_bwg extends AdminView_bwg {
1575
  <tr>
1576
  <td class="spider_label"><label for="image_browser_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
1577
  <td>
1578
- <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo $row->image_browser_box_shadow; ?>" class="spider_box_input" />
1579
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1580
  </td>
1581
  </tr>
@@ -1702,7 +1713,7 @@ class ThemesView_bwg extends AdminView_bwg {
1702
  <tr>
1703
  <td class="spider_label"><label for="image_browser_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
1704
  <td>
1705
- <input type="text" name="image_browser_gal_title_font_size" id="image_browser_gal_title_font_size" value="<?php echo
1706
  $row->image_browser_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1707
  </td>
1708
  </tr>
@@ -1751,7 +1762,7 @@ class ThemesView_bwg extends AdminView_bwg {
1751
  <tr>
1752
  <td class="spider_label"><label for="image_browser_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
1753
  <td>
1754
- <input type="text" name="image_browser_gal_title_shadow" id="image_browser_gal_title_shadow" value="<?php echo $row->image_browser_gal_title_shadow; ?>" class="spider_box_input" />
1755
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1756
  </td>
1757
  </tr>
@@ -1840,7 +1851,7 @@ class ThemesView_bwg extends AdminView_bwg {
1840
  <tr>
1841
  <td class="spider_label"><label for="album_compact_thumb_box_shadow"><?php echo __('Shadow:', BWG()->prefix); ?> </label></td>
1842
  <td>
1843
- <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo $row->album_compact_thumb_box_shadow; ?>" class="spider_box_input" />
1844
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1845
  </td>
1846
  </tr>
@@ -1994,7 +2005,7 @@ class ThemesView_bwg extends AdminView_bwg {
1994
  <tr>
1995
  <td class="spider_label"><label for="album_compact_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
1996
  <td>
1997
- <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo $row->album_compact_title_shadow; ?>" class="spider_box_input" />
1998
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1999
  </td>
2000
  </tr>
@@ -2111,7 +2122,7 @@ class ThemesView_bwg extends AdminView_bwg {
2111
  <tr>
2112
  <td class="spider_label"><label for="album_compact_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
2113
  <td>
2114
- <input type="text" name="album_compact_gal_title_shadow" id="album_compact_gal_title_shadow" value="<?php echo $row->album_compact_gal_title_shadow; ?>" class="spider_box_input" />
2115
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2116
  </td>
2117
  </tr>
@@ -2198,7 +2209,7 @@ class ThemesView_bwg extends AdminView_bwg {
2198
  <tr>
2199
  <td class="spider_label"><label for="album_extended_thumb_box_shadow"><?php echo __('Thumbnail box shadow:', BWG()->prefix); ?> </label></td>
2200
  <td>
2201
- <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo $row->album_extended_thumb_box_shadow; ?>" class="spider_box_input"/>
2202
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2203
  </td>
2204
  </tr>
@@ -2274,7 +2285,7 @@ class ThemesView_bwg extends AdminView_bwg {
2274
  </tr>
2275
  </tbody>
2276
  </table>
2277
-
2278
  </div>
2279
  </div>
2280
  </div>
@@ -2731,7 +2742,7 @@ class ThemesView_bwg extends AdminView_bwg {
2731
  <tr>
2732
  <td class="spider_label"><label for="album_extended_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
2733
  <td>
2734
- <input type="text" name="album_extended_gal_title_shadow" id="album_extended_gal_title_shadow" value="<?php echo $row->album_extended_gal_title_shadow; ?>" class="spider_box_input" />
2735
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2736
  </td>
2737
  </tr>
@@ -2938,7 +2949,7 @@ class ThemesView_bwg extends AdminView_bwg {
2938
  <tr>
2939
  <td class="spider_label"><label for="album_masonry_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
2940
  <td>
2941
- <input type="text" name="album_masonry_title_shadow" id="album_masonry_title_shadow" value="<?php echo $row->album_masonry_title_shadow; ?>" class="spider_box_input" />
2942
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2943
  </td>
2944
  </tr>
@@ -3048,7 +3059,7 @@ class ThemesView_bwg extends AdminView_bwg {
3048
  <tr>
3049
  <td class="spider_label"><label for="album_masonry_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
3050
  <td>
3051
- <input type="text" name="album_masonry_gal_title_shadow" id="album_masonry_gal_title_shadow" value="<?php echo $row->album_masonry_gal_title_shadow; ?>" class="spider_box_input" />
3052
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3053
  </td>
3054
  </tr>
@@ -3131,7 +3142,7 @@ class ThemesView_bwg extends AdminView_bwg {
3131
  <tr>
3132
  <td class="spider_label"><label for="blog_style_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
3133
  <td>
3134
- <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo $row->blog_style_box_shadow; ?>" class="spider_box_input"/>
3135
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3136
  </td>
3137
  </tr>
@@ -3304,7 +3315,7 @@ class ThemesView_bwg extends AdminView_bwg {
3304
  <tr>
3305
  <td class="spider_label"><label for="blog_style_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
3306
  <td>
3307
- <input type="text" name="blog_style_gal_title_font_size" id="blog_style_gal_title_font_size" value="<?php echo
3308
  $row->blog_style_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3309
  </td>
3310
  </tr>
@@ -3353,7 +3364,7 @@ class ThemesView_bwg extends AdminView_bwg {
3353
  <tr>
3354
  <td class="spider_label"><label for="blog_style_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
3355
  <td>
3356
- <input type="text" name="blog_style_gal_title_shadow" id="blog_style_gal_title_shadow" value="<?php echo $row->blog_style_gal_title_shadow; ?>" class="spider_box_input" />
3357
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3358
  </td>
3359
  </tr>
@@ -3541,7 +3552,7 @@ class ThemesView_bwg extends AdminView_bwg {
3541
  <tr id="lightbox_close3">
3542
  <td class="spider_label"><label for="lightbox_close_btn_box_shadow"><?php echo __('Close button box shadow:', BWG()->prefix); ?> </label></td>
3543
  <td>
3544
- <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo $row->lightbox_close_btn_box_shadow; ?>" class="spider_box_input"/>
3545
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3546
  </td>
3547
  </tr>
@@ -3644,7 +3655,7 @@ class ThemesView_bwg extends AdminView_bwg {
3644
  <tr id="lightbox_right_left3">
3645
  <td class="spider_label"><label for="lightbox_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', BWG()->prefix); ?> </label></td>
3646
  <td>
3647
- <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo $row->lightbox_rl_btn_box_shadow; ?>" class="spider_box_input"/>
3648
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3649
  </td>
3650
  </tr>
@@ -4525,7 +4536,7 @@ class ThemesView_bwg extends AdminView_bwg {
4525
  <tr>
4526
  <td class="spider_label"><label for="page_nav_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
4527
  <td>
4528
- <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo $row->page_nav_box_shadow; ?>" class="spider_box_input"/>
4529
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
4530
  </td>
4531
  </tr>
@@ -4613,7 +4624,7 @@ class ThemesView_bwg extends AdminView_bwg {
4613
  <td>
4614
  <input type="text" name="carousel_rl_btn_size" id="carousel_rl_btn_size" value="<?php echo $row->carousel_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
4615
  </td>
4616
- </tr>
4617
  <tr>
4618
  <td class="spider_label"><label for="carousel_play_pause_btn_size"><?php echo __('Play, pause buttons size:', BWG()->prefix); ?> </label></td>
4619
  <td>
@@ -4703,7 +4714,7 @@ class ThemesView_bwg extends AdminView_bwg {
4703
  ?>
4704
  </select>
4705
  </td>
4706
- </tr>
4707
  </tbody>
4708
  </table>
4709
  </div>
@@ -4719,14 +4730,14 @@ class ThemesView_bwg extends AdminView_bwg {
4719
  <td>
4720
  <input type="text" name="carousel_mergin_bottom" id="carousel_mergin_bottom" value="<?php echo $row->carousel_mergin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
4721
  </td>
4722
- </tr>
4723
  <tr>
4724
  <td class="spider_label"><label for="carousel_feature_border_width"><?php echo __('Image border width:', BWG()->prefix); ?> </label></td>
4725
  <td>
4726
  <input type="text" name="carousel_feature_border_width" id="carousel_feature_border_width" value="<?php echo $row->carousel_feature_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px
4727
  </td>
4728
  </tr>
4729
-
4730
  <tr>
4731
  <td class="spider_label"><label for="carousel_feature_border_style"><?php echo __('Image border style:', BWG()->prefix); ?> </label>
4732
  </td>
@@ -4747,7 +4758,7 @@ class ThemesView_bwg extends AdminView_bwg {
4747
  <td>
4748
  <input type="text" name="carousel_feature_border_color" id="carousel_feature_border_color" value="<?php echo $row->carousel_feature_border_color; ?>" class="color"/>
4749
  </td>
4750
- </tr>
4751
  </tbody>
4752
  </table>
4753
  </div>
@@ -4813,7 +4824,7 @@ class ThemesView_bwg extends AdminView_bwg {
4813
  <label for="carousel_google_fonts0" id="carousel_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4814
  </div>
4815
  </td>
4816
- </tr>
4817
  <td class="spider_label"><label for="carousel_caption_p_font_size"><?php echo __('Title font size:', BWG()->prefix); ?> </label></td>
4818
  <td>
4819
  <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo $row->carousel_caption_p_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
@@ -4824,7 +4835,7 @@ class ThemesView_bwg extends AdminView_bwg {
4824
  <td>
4825
  <input type="text" name="carousel_caption_p_color" id="carousel_caption_p_color" value="<?php echo $row->carousel_caption_p_color; ?>" class="color"/>
4826
  </td>
4827
- </tr>
4828
  <tr>
4829
  <td class="spider_label"><label for="carousel_caption_p_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
4830
  <td>
@@ -4848,7 +4859,7 @@ class ThemesView_bwg extends AdminView_bwg {
4848
  </fieldset>
4849
  </div>
4850
  <input type="hidden" id="default_theme" name="default_theme" value="<?php echo $row->default_theme; ?>"/>
4851
- <input type="hidden" id="current_type" name="current_type" value="<?php echo $current_type; ?>" />
4852
  <?php
4853
  }
4854
  }
153
  'name' => BWG()->prefix . '_themes',
154
  'class' => BWG()->prefix . '_themes wd-form',
155
  'action' => $params['form_action'],
156
+ 'current_id' => $params['id'],
157
  );
158
  echo $this->form(ob_get_clean(), $form_attr);
159
  }
164
  * @param $params
165
  */
166
  public function edit_body( $params ) {
167
+ extract($params);
168
+ ?>
169
  <div class="bwg-page-header">
170
  <div class="wd-page-title wd-header">
171
  <h1 class="wp-heading-inline"><?php _e('Theme title', BWG()->prefix); ?></h1>
175
  <button class="button button-primary button-large" onclick="if (spider_check_required('name', 'Title')) {return false;}; spider_set_input_value('task', 'save')">
176
  <?php echo !empty($row->name) ? __('Update', BWG()->prefix) : __('Save', BWG()->prefix); ?>
177
  </button>
178
+ <?php if( $id ) { ?>
179
+ <input title="<?php _e('Reset to default theme', BWG()->prefix); ?>"
180
  class="button preview-button button-large wd-btn-reset" type="submit"
181
  onclick="if (confirm('<?php echo addslashes(__('Do you want to reset to default?', BWG()->prefix)); ?>')) {
182
  spider_set_input_value('task', 'reset');
183
  } else {
184
  return false;
185
+ }"
186
  value="<?php echo __('Reset', BWG()->prefix); ?>"/>
187
  <?php } ?>
188
  </div>
189
  <?php } ?>
190
  </div>
191
  <div class="bwg-clear"></div>
192
+ </div>
193
  <ul class="bwg-tabs">
194
  <?php foreach($tabs as $key => $value) { ?>
195
+ <li data-id="<?php echo $key ?>" class="bwg-tab-item <?php echo ($params['active_tab'] == $key) ? 'active': ''; ?>"><?php echo $value; ?></li>
196
  <?php } ?>
197
  </ul>
198
  <div>
204
  <table style="clear:both;">
205
  <tbody>
206
  <tr>
207
+ <td class="spider_label"><label for="thumb_margin"><?php _e('Distance between pictures:', BWG()->prefix); ?> </label></td>
208
  <td>
209
+ <input type="text" name="thumb_margin" id="thumb_margin" value="<?php echo $row->thumb_margin; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
210
  </td>
211
  </tr>
212
+ <tr>
213
+ <td class="spider_label"><label><?php _e('Distance from container frame:', BWG()->prefix); ?> </label></td>
214
+ <td>
215
+ <input type="radio" name="container_margin" id="container_margin1" value="1"<?php if ($row->container_margin == 1) echo 'checked="checked"'; ?> />
216
+ <label for="container_margin1"><?php _e('Yes', BWG()->prefix); ?></label>
217
+ <input type="radio" name="container_margin" id="container_margin0" value="0"<?php if ($row->container_margin == 0) echo 'checked="checked"'; ?> />
218
+ <label for="container_margin0"><?php _e('No', BWG()->prefix); ?></label>
219
+ <div class="spider_description"><?php _e('Enable this option to add distance between the parent container and the thumbnails grid.', BWG()->prefix); ?></div>
220
+ </td>
221
+ </tr>
222
  <tr>
223
  <td class="spider_label"><label for="thumb_padding"><?php echo __('Padding:', BWG()->prefix); ?> </label></td>
224
  <td>
261
  <tr>
262
  <td class="spider_label"><label for="thumb_box_shadow"><?php echo __('Shadow:', BWG()->prefix); ?> </label></td>
263
  <td>
264
+ <input type="text" name="thumb_box_shadow" id="thumb_box_shadow" value="<?php echo $row->thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
265
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
266
  </td>
267
  </tr>
268
  <tr>
269
  <td class="spider_label"><label for="thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
270
  <td>
271
+ <select name="thumb_hover_effect" id="thumb_hover_effect">
272
  <?php
273
+ foreach ($thumbnail_hover_effects as $key => $hover_effect) {
274
  ?>
275
  <option value="<?php echo $key; ?>" <?php echo (($row->thumb_hover_effect == $key) ? 'selected="selected"' : ''); ?>><?php echo __($hover_effect, BWG()->prefix); ?></option>
276
  <?php
283
  <td class="spider_label"><label for="thumb_hover_effect_value"><?php echo __('Hover effect value:', BWG()->prefix); ?> </label></td>
284
  <td>
285
  <input type="text" name="thumb_hover_effect_value" id="thumb_hover_effect_value" value="<?php echo $row->thumb_hover_effect_value; ?>" class="spider_char_input"/>
286
+ <div class="spider_description"><?php echo __('E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg.', BWG()->prefix); ?></div>
287
  </td>
288
  </tr>
289
  <tr>
348
  </td>
349
  </tr>
350
  </tbody>
351
+ </table>
352
  </div>
353
  </div>
354
  </div>
382
  <td class="spider_label"><label for="thumb_title_font_style"><?php echo __('Title font family:', BWG()->prefix); ?> </label></td>
383
  <td>
384
  <select name="thumb_title_font_style" id="thumb_title_font_style">
385
+ <?php
386
  $is_google_fonts = (in_array($row->thumb_title_font_style, $google_fonts)) ? true : false;
387
  $thumb_font_families = ($is_google_fonts == true) ? $google_fonts : $font_families;
388
  foreach ($thumb_font_families as $key => $font_family) {
417
  <tr>
418
  <td class="spider_label"><label for="thumb_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
419
  <td>
420
+ <input type="text" name="thumb_title_shadow" id="thumb_title_shadow" value="<?php echo $row->thumb_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
421
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
422
  </td>
423
  </tr>
431
  <tr>
432
  <td class="spider_label"><label for="thumb_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
433
  <td>
434
+ <input type="text" name="thumb_gal_title_font_size" id="thumb_gal_title_font_size" value="<?php echo
435
  $row->thumb_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
436
  </td>
437
  </tr>
480
  <tr>
481
  <td class="spider_label"><label for="thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
482
  <td>
483
+ <input type="text" name="thumb_gal_title_shadow" id="thumb_gal_title_shadow" value="<?php echo $row->thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
484
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
485
  </td>
486
  </tr>
560
  </tr>
561
  </tbody>
562
  </table>
563
+
564
  </div>
565
  </div>
566
  </div>
605
  </tr>
606
  </tbody>
607
  </table>
608
+
609
  </div>
610
  </div>
611
  </div>
617
  <tr>
618
  <td class="spider_label"><label for="masonry_thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
619
  <td>
620
+ <select name="masonry_thumb_hover_effect" id="masonry_thumb_hover_effect">
621
  <?php
622
  foreach ($hover_effects as $key => $hover_effect) {
623
  ?>
658
  </tr>
659
  <tr>
660
  <td class="spider_label"><label for="masonry_description_font_style"><?php echo __('Description font family:', BWG()->prefix); ?> </label></td>
661
+ <td>
662
  <select name="masonry_description_font_style" id="masonry_description_font_style">
663
  <?php
664
  $is_google_fonts = (in_array($row->masonry_description_font_style, $google_fonts)) ? true : false;
670
  }
671
  ?>
672
  </select>
673
+ <div>
674
  <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts1" onchange="bwg_change_fonts('masonry_description_font_style', jQuery(this).attr('id'))" value="1" <?php if ($is_google_fonts == true) echo 'checked="checked"'; ?> />
675
  <label for="masonry_description_google_fonts1" id="masonry_description_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
676
  <input type="radio" name="masonry_description_google_fonts" id="masonry_description_google_fonts0" onchange="bwg_change_fonts('masonry_description_font_style', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
729
  <tr>
730
  <td class="spider_label"><label for="masonry_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
731
  <td>
732
+ <input type="text" name="masonry_thumb_gal_title_shadow" id="masonry_thumb_gal_title_shadow" value="<?php echo $row->masonry_thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
733
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
734
  </td>
735
  </tr>
864
  <tr>
865
  <td class="spider_label"><label for="mosaic_thumb_hover_effect"><?php echo __('Hover effect:', BWG()->prefix); ?> </label></td>
866
  <td>
867
+ <select name="mosaic_thumb_hover_effect" id="mosaic_thumb_hover_effect">
868
  <?php
869
  foreach ($hover_effects as $key => $hover_effect) {
870
  ?>
942
  <tr>
943
  <td class="spider_label"><label for="mosaic_thumb_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
944
  <td>
945
+ <input type="text" name="mosaic_thumb_title_shadow" id="mosaic_thumb_title_shadow" value="<?php echo $row->mosaic_thumb_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
946
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
947
  </td>
948
  </tr>
1004
  <tr>
1005
  <td class="spider_label"><label for="mosaic_thumb_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
1006
  <td>
1007
+ <input type="text" name="mosaic_thumb_gal_title_shadow" id="mosaic_thumb_gal_title_shadow" value="<?php echo $row->mosaic_thumb_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
1008
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1009
  </td>
1010
  </tr>
1148
  <tr>
1149
  <td class="spider_label"><label for="slideshow_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', BWG()->prefix); ?> </label></td>
1150
  <td>
1151
+ <input type="text" name="slideshow_rl_btn_box_shadow" id="slideshow_rl_btn_box_shadow" value="<?php echo $row->slideshow_rl_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
1152
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1153
  </td>
1154
  </tr>
1368
  <label for="slideshow_title_google_fonts1" id="slideshow_title_google_fonts1_lbl"><?php echo __('Google fonts', BWG()->prefix); ?></label>
1369
  <input type="radio" name="slideshow_title_google_fonts" id="slideshow_title_google_fonts0" onchange="bwg_change_fonts('slideshow_title_font', '')" value="0" <?php if ($is_google_fonts == false) echo 'checked="checked"'; ?> />
1370
  <label for="slideshow_title_google_fonts0" id="slideshow_title_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
1371
+ </div>
1372
  </td>
1373
  </tr>
1374
  <tr>
1586
  <tr>
1587
  <td class="spider_label"><label for="image_browser_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
1588
  <td>
1589
+ <input type="text" name="image_browser_box_shadow" id="image_browser_box_shadow" value="<?php echo $row->image_browser_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
1590
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1591
  </td>
1592
  </tr>
1713
  <tr>
1714
  <td class="spider_label"><label for="image_browser_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
1715
  <td>
1716
+ <input type="text" name="image_browser_gal_title_font_size" id="image_browser_gal_title_font_size" value="<?php echo
1717
  $row->image_browser_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
1718
  </td>
1719
  </tr>
1762
  <tr>
1763
  <td class="spider_label"><label for="image_browser_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
1764
  <td>
1765
+ <input type="text" name="image_browser_gal_title_shadow" id="image_browser_gal_title_shadow" value="<?php echo $row->image_browser_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
1766
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1767
  </td>
1768
  </tr>
1851
  <tr>
1852
  <td class="spider_label"><label for="album_compact_thumb_box_shadow"><?php echo __('Shadow:', BWG()->prefix); ?> </label></td>
1853
  <td>
1854
+ <input type="text" name="album_compact_thumb_box_shadow" id="album_compact_thumb_box_shadow" value="<?php echo $row->album_compact_thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
1855
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
1856
  </td>
1857
  </tr>
2005
  <tr>
2006
  <td class="spider_label"><label for="album_compact_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
2007
  <td>
2008
+ <input type="text" name="album_compact_title_shadow" id="album_compact_title_shadow" value="<?php echo $row->album_compact_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
2009
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2010
  </td>
2011
  </tr>
2122
  <tr>
2123
  <td class="spider_label"><label for="album_compact_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
2124
  <td>
2125
+ <input type="text" name="album_compact_gal_title_shadow" id="album_compact_gal_title_shadow" value="<?php echo $row->album_compact_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
2126
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2127
  </td>
2128
  </tr>
2209
  <tr>
2210
  <td class="spider_label"><label for="album_extended_thumb_box_shadow"><?php echo __('Thumbnail box shadow:', BWG()->prefix); ?> </label></td>
2211
  <td>
2212
+ <input type="text" name="album_extended_thumb_box_shadow" id="album_extended_thumb_box_shadow" value="<?php echo $row->album_extended_thumb_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
2213
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2214
  </td>
2215
  </tr>
2285
  </tr>
2286
  </tbody>
2287
  </table>
2288
+
2289
  </div>
2290
  </div>
2291
  </div>
2742
  <tr>
2743
  <td class="spider_label"><label for="album_extended_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
2744
  <td>
2745
+ <input type="text" name="album_extended_gal_title_shadow" id="album_extended_gal_title_shadow" value="<?php echo $row->album_extended_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
2746
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2747
  </td>
2748
  </tr>
2949
  <tr>
2950
  <td class="spider_label"><label for="album_masonry_title_shadow"><?php echo __('Title box shadow:', BWG()->prefix); ?> </label></td>
2951
  <td>
2952
+ <input type="text" name="album_masonry_title_shadow" id="album_masonry_title_shadow" value="<?php echo $row->album_masonry_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
2953
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
2954
  </td>
2955
  </tr>
3059
  <tr>
3060
  <td class="spider_label"><label for="album_masonry_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
3061
  <td>
3062
+ <input type="text" name="album_masonry_gal_title_shadow" id="album_masonry_gal_title_shadow" value="<?php echo $row->album_masonry_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
3063
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3064
  </td>
3065
  </tr>
3142
  <tr>
3143
  <td class="spider_label"><label for="blog_style_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
3144
  <td>
3145
+ <input type="text" name="blog_style_box_shadow" id="blog_style_box_shadow" value="<?php echo $row->blog_style_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
3146
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3147
  </td>
3148
  </tr>
3315
  <tr>
3316
  <td class="spider_label"><label for="blog_style_gal_title_font_size"><?php echo __('Gallery title/description font size:', BWG()->prefix); ?> </label></td>
3317
  <td>
3318
+ <input type="text" name="blog_style_gal_title_font_size" id="blog_style_gal_title_font_size" value="<?php echo
3319
  $row->blog_style_gal_title_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
3320
  </td>
3321
  </tr>
3364
  <tr>
3365
  <td class="spider_label"><label for="blog_style_gal_title_shadow"><?php echo __('Gallery title/description box shadow:', BWG()->prefix); ?> </label></td>
3366
  <td>
3367
+ <input type="text" name="blog_style_gal_title_shadow" id="blog_style_gal_title_shadow" value="<?php echo $row->blog_style_gal_title_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
3368
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3369
  </td>
3370
  </tr>
3552
  <tr id="lightbox_close3">
3553
  <td class="spider_label"><label for="lightbox_close_btn_box_shadow"><?php echo __('Close button box shadow:', BWG()->prefix); ?> </label></td>
3554
  <td>
3555
+ <input type="text" name="lightbox_close_btn_box_shadow" id="lightbox_close_btn_box_shadow" value="<?php echo $row->lightbox_close_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
3556
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3557
  </td>
3558
  </tr>
3655
  <tr id="lightbox_right_left3">
3656
  <td class="spider_label"><label for="lightbox_rl_btn_box_shadow"><?php echo __('Right, left buttons box shadow:', BWG()->prefix); ?> </label></td>
3657
  <td>
3658
+ <input type="text" name="lightbox_rl_btn_box_shadow" id="lightbox_rl_btn_box_shadow" value="<?php echo $row->lightbox_rl_btn_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
3659
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
3660
  </td>
3661
  </tr>
4536
  <tr>
4537
  <td class="spider_label"><label for="page_nav_box_shadow"><?php echo __('Box shadow:', BWG()->prefix); ?> </label></td>
4538
  <td>
4539
+ <input type="text" name="page_nav_box_shadow" id="page_nav_box_shadow" value="<?php echo $row->page_nav_box_shadow; ?>" class="spider_box_input" placeholder="10px 10px 10px #888888" />
4540
  <div class="spider_description"><?php echo __('Use CSS type values.', BWG()->prefix); ?></div>
4541
  </td>
4542
  </tr>
4624
  <td>
4625
  <input type="text" name="carousel_rl_btn_size" id="carousel_rl_btn_size" value="<?php echo $row->carousel_rl_btn_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
4626
  </td>
4627
+ </tr>
4628
  <tr>
4629
  <td class="spider_label"><label for="carousel_play_pause_btn_size"><?php echo __('Play, pause buttons size:', BWG()->prefix); ?> </label></td>
4630
  <td>
4714
  ?>
4715
  </select>
4716
  </td>
4717
+ </tr>
4718
  </tbody>
4719
  </table>
4720
  </div>
4730
  <td>
4731
  <input type="text" name="carousel_mergin_bottom" id="carousel_mergin_bottom" value="<?php echo $row->carousel_mergin_bottom; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/> px
4732
  </td>
4733
+ </tr>
4734
  <tr>
4735
  <td class="spider_label"><label for="carousel_feature_border_width"><?php echo __('Image border width:', BWG()->prefix); ?> </label></td>
4736
  <td>
4737
  <input type="text" name="carousel_feature_border_width" id="carousel_feature_border_width" value="<?php echo $row->carousel_feature_border_width; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)"/>px
4738
  </td>
4739
  </tr>
4740
+
4741
  <tr>
4742
  <td class="spider_label"><label for="carousel_feature_border_style"><?php echo __('Image border style:', BWG()->prefix); ?> </label>
4743
  </td>
4758
  <td>
4759
  <input type="text" name="carousel_feature_border_color" id="carousel_feature_border_color" value="<?php echo $row->carousel_feature_border_color; ?>" class="color"/>
4760
  </td>
4761
+ </tr>
4762
  </tbody>
4763
  </table>
4764
  </div>
4824
  <label for="carousel_google_fonts0" id="carousel_google_fonts0_lbl"><?php echo __('Default', BWG()->prefix); ?></label>
4825
  </div>
4826
  </td>
4827
+ </tr>
4828
  <td class="spider_label"><label for="carousel_caption_p_font_size"><?php echo __('Title font size:', BWG()->prefix); ?> </label></td>
4829
  <td>
4830
  <input type="text" name="carousel_caption_p_font_size" id="carousel_caption_p_font_size" value="<?php echo $row->carousel_caption_p_font_size; ?>" class="spider_int_input" onkeypress="return spider_check_isnum(event)" /> px
4835
  <td>
4836
  <input type="text" name="carousel_caption_p_color" id="carousel_caption_p_color" value="<?php echo $row->carousel_caption_p_color; ?>" class="color"/>
4837
  </td>
4838
+ </tr>
4839
  <tr>
4840
  <td class="spider_label"><label for="carousel_caption_p_font_weight"><?php echo __('Title font weight:', BWG()->prefix); ?> </label></td>
4841
  <td>
4859
  </fieldset>
4860
  </div>
4861
  <input type="hidden" id="default_theme" name="default_theme" value="<?php echo $row->default_theme; ?>"/>
4862
+ <input type="hidden" id="active_tab" name="active_tab" value="Thumbnail" />
4863
  <?php
4864
  }
4865
  }
admin/views/Widget.php CHANGED
@@ -48,13 +48,15 @@ class WidgetView_bwg {
48
  if ($type == 'gallery') {
49
  if ($view_type == 'thumbnails') {
50
  $gallery_type = 'thumbnails';
51
- require_once(BWG()->plugin_dir . '/frontend/controllers/BWGControllerThumbnails.php');
52
- $controller_class = 'BWGControllerThumbnails';
53
- }
 
54
  else if ($view_type == 'masonry') {
55
  $gallery_type = 'thumbnails_masonry';
56
  require_once(BWG()->plugin_dir . '/frontend/controllers/BWGControllerThumbnails_masonry.php');
57
  $controller_class = 'BWGControllerThumbnails_masonry';
 
58
  }
59
 
60
  $params['gallery_type'] = $gallery_type;
@@ -67,6 +69,7 @@ class WidgetView_bwg {
67
  else {
68
  require_once(BWG()->plugin_dir . '/frontend/controllers/BWGControllerAlbum_compact_preview.php');
69
  $controller_class = 'BWGControllerAlbum_compact_preview';
 
70
 
71
  $params['gallery_type'] = 'album_compact_preview';
72
  $params['album_id'] = $album_id;
@@ -77,7 +80,7 @@ class WidgetView_bwg {
77
  $params['compuct_album_image_thumb_height'] = $height;
78
  $params['compuct_album_enable_page'] = 0;
79
  }
80
- $controller = new $controller_class();
81
  global $bwg;
82
  $pairs = WDWLibrary::get_shortcode_option_params( $params );
83
  $controller->execute($pairs, 1, $bwg);
48
  if ($type == 'gallery') {
49
  if ($view_type == 'thumbnails') {
50
  $gallery_type = 'thumbnails';
51
+ require_once(BWG()->plugin_dir . '/frontend/controllers/controller.php');
52
+ $controller_class = 'BWGControllerSite';
53
+ $view = 'Thumbnails';
54
+ }
55
  else if ($view_type == 'masonry') {
56
  $gallery_type = 'thumbnails_masonry';
57
  require_once(BWG()->plugin_dir . '/frontend/controllers/BWGControllerThumbnails_masonry.php');
58
  $controller_class = 'BWGControllerThumbnails_masonry';
59
+ $view = '';
60
  }
61
 
62
  $params['gallery_type'] = $gallery_type;
69
  else {
70
  require_once(BWG()->plugin_dir . '/frontend/controllers/BWGControllerAlbum_compact_preview.php');
71
  $controller_class = 'BWGControllerAlbum_compact_preview';
72
+ $view = '';
73
 
74
  $params['gallery_type'] = 'album_compact_preview';
75
  $params['album_id'] = $album_id;
80
  $params['compuct_album_image_thumb_height'] = $height;
81
  $params['compuct_album_enable_page'] = 0;
82
  }
83
+ $controller = new $controller_class($view);
84
  global $bwg;
85
  $pairs = WDWLibrary::get_shortcode_option_params( $params );
86
  $controller->execute($pairs, 1, $bwg);
css/bwg_frontend.css CHANGED
@@ -84,7 +84,7 @@ div[id^="bwg_container"] div[id^="bwg_container"] .bwg_img_clear {
84
  .footer-list-block .bwp_gallery .bwg_spider_popup_loading,
85
  .footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading {
86
  /*background: url("../images/ajax_loader.gif") no-repeat scroll 0 0 / 50px 50px rgba(0, 0, 0, 0);*/
87
- background-image: url("../images/ajax_loader.gif");
88
  background-color: rgba(0, 0, 0, 0);
89
  background-repeat: no-repeat;
90
  background-position: 0 0;
@@ -109,16 +109,6 @@ div[id^="bwg_container"] div[id^="bwg_container"] .bwg_img_clear {
109
  .bwg_filmstrip_thumbnail_img {
110
  max-width: none !important;
111
  }
112
- .bwg_spider_ajax_loading {
113
- border: none !important;
114
- margin-top: 200px;
115
- width: 30px;
116
- /* border: none !important;
117
- animation: spin 2.5s infinite linear;
118
- -moz-animation: spin 2.5s infinite linear;
119
- -o-animation: spin 2.5s infinite linear;
120
- -webkit-animation: spin 2.5s infinite linear;*/
121
- }
122
 
123
  .spider_popup_overlay,
124
  .footer-list-block .bwp_gallery .spider_popup_overlay,
@@ -273,10 +263,7 @@ div[id^="bwg_container"] div[id^="bwg_container"] .bwg_img_clear {
273
  }
274
 
275
  @media screen and (max-width: 465px) {
276
- .bwg_ctrl_btn {
277
- margin-bottom:0 !important;
278
- }
279
-
280
  .bwg_ctrl_btn_container {
281
  height:auto !important;
282
  }
@@ -380,7 +367,171 @@ div[id^="bwg_container"] .bwg_download_gallery a {
380
  div[id^="bwg_container"] .bwg_download_gallery a:hover {
381
  color: #7D7D7D;
382
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  .bwg_inst_play_btn_cont,
384
  .bwg_inst_play_btn_cont .bwg_inst_play {
385
- display:block;
386
- }
 
 
 
 
 
 
 
 
 
84
  .footer-list-block .bwp_gallery .bwg_spider_popup_loading,
85
  .footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading {
86
  /*background: url("../images/ajax_loader.gif") no-repeat scroll 0 0 / 50px 50px rgba(0, 0, 0, 0);*/
87
+ background-image: url("../images/ajax_loader.png");
88
  background-color: rgba(0, 0, 0, 0);
89
  background-repeat: no-repeat;
90
  background-position: 0 0;
109
  .bwg_filmstrip_thumbnail_img {
110
  max-width: none !important;
111
  }
 
 
 
 
 
 
 
 
 
 
112
 
113
  .spider_popup_overlay,
114
  .footer-list-block .bwp_gallery .spider_popup_overlay,
263
  }
264
 
265
  @media screen and (max-width: 465px) {
266
+
 
 
 
267
  .bwg_ctrl_btn_container {
268
  height:auto !important;
269
  }
367
  div[id^="bwg_container"] .bwg_download_gallery a:hover {
368
  color: #7D7D7D;
369
  }
370
+
371
+ div[id^="bwg_container"] .bwg-border-box * {
372
+ -moz-box-sizing: border-box;
373
+ box-sizing: border-box;
374
+ }
375
+
376
+ .bwg-flex {
377
+ display: flex;
378
+ }
379
+
380
+ .bwg-width-100 {
381
+ width: 100%;
382
+ max-width: 100%;
383
+ }
384
+
385
+ .bwg-flex-column {
386
+ flex-direction: column;
387
+ }
388
+
389
+ .bwg-flex-row {
390
+ flex-direction: row;
391
+ flex-wrap: wrap;
392
+ }
393
+
394
+ .bwg-container {
395
+ font-size: 0;
396
+ width: 100%;
397
+ max-width: 100%;
398
+ display: flex;
399
+ flex-direction: row;
400
+ flex-wrap: wrap;
401
+ }
402
+
403
+ .bwg-item {
404
+ display: flex;
405
+ flex-direction: column;
406
+ cursor: pointer;
407
+ }
408
+
409
+ .bwg-item0 {
410
+ overflow: hidden;
411
+ z-index: 100;
412
+ }
413
+
414
+ .bwg-item0:hover {
415
+ backface-visibility: hidden;
416
+ -webkit-backface-visibility: hidden;
417
+ -moz-backface-visibility: hidden;
418
+ -ms-backface-visibility: hidden;
419
+ opacity: 1;
420
+ filter: Alpha(opacity=100);
421
+ z-index: 102;
422
+ position: relative;
423
+ }
424
+
425
+ .bwg-item1 {
426
+ overflow: hidden;
427
+ width: 100%;
428
+ position: relative;
429
+ }
430
+
431
+ .bwg-item2 {
432
+ position: absolute;
433
+ top: 0;
434
+ left: 0;
435
+ bottom: 0;
436
+ right: 0;
437
+ width: 100%;
438
+ height: 100%;
439
+ }
440
+
441
+ .bwg-title1,
442
+ .bwg-ecommerce1 {
443
+ opacity: 1;
444
+ filter: Alpha(opacity=100);
445
+ text-align: center;
446
+ width: 100%;
447
+ }
448
+
449
+ .bwg-ecommerce1 {
450
+ text-align: right;
451
+ }
452
+
453
+ .bwg-title2 {
454
+ /*text-overflow: ellipsis;
455
+ overflow: hidden;
456
+ white-space: nowrap;*/
457
+ width: 100%;
458
+ word-wrap: break-word;
459
+ }
460
+
461
+ .bwg-item0:hover .bwg-title1,
462
+ .bwg-item0:hover .bwg-ecommerce1 {
463
+ left: 0 !important;
464
+ opacity: 1 !important;
465
+ filter: Alpha(opacity=100) !important;
466
+ }
467
+
468
+ .bwg-play-icon1 {
469
+ display: flex;
470
+ height: 100%;
471
+ opacity: 1;
472
+ filter: Alpha(opacity=100);
473
+ position: absolute;
474
+ top: 0;
475
+ width: 100%;
476
+ z-index: 100;
477
+ justify-content: center;
478
+ align-content: center;
479
+ flex-direction: column;
480
+ text-align: center;
481
+ }
482
+
483
+ .bwg_loading_div_1 {
484
+ position:absolute;
485
+ width: 100%;
486
+ height: 100%;
487
+ z-index: 115;
488
+ text-align: center;
489
+ vertical-align: middle;
490
+ }
491
+ .bwg_loading_div_2 {
492
+ display: table;
493
+ vertical-align: middle;
494
+ width: 100%;
495
+ height: 100%;
496
+ background-color: #FFFFFF;
497
+ opacity: 0.95;
498
+ filter: Alpha(opacity=95);
499
+ }
500
+ .bwg_loading_div_3 {
501
+ display: table-cell;
502
+ text-align: center;
503
+ position: relative;
504
+ vertical-align: middle;
505
+ }
506
+ .bwg_spider_ajax_loading {
507
+ border: none !important;
508
+ display: inline-block;
509
+ text-align:center;
510
+ position:relative;
511
+ vertical-align:middle;
512
+ background-image:url('../images/ajax_loader.png');
513
+ float: none;
514
+ width:30px;
515
+ height:30px;
516
+ background-size:30px 30px;
517
+ }
518
+ .bwg-hidden {
519
+ visibility: hidden;
520
+ }
521
+ .bwg_container {
522
+ position: relative;
523
+ }
524
+
525
  .bwg_inst_play_btn_cont,
526
  .bwg_inst_play_btn_cont .bwg_inst_play {
527
+ display: block;
528
+ }
529
+
530
+ .hidden {
531
+ display: none;
532
+ }
533
+
534
+ #bwg_download {
535
+ display: inline-block;
536
+ }
537
+
css/bwg_tables.css CHANGED
@@ -1204,7 +1204,10 @@ textarea.bwg_popup_input {
1204
  clear: both;
1205
  display: block;
1206
  }
1207
- #bwg_themes .bwg-tabs { }
 
 
 
1208
  #bwg_themes .bwg-tabs .bwg-tab-item {
1209
  display:inline-block;
1210
  padding: 12px;
@@ -2051,4 +2054,4 @@ li.tabs {
2051
  position: relative;
2052
  top: 0;
2053
  width: 20px;
2054
- }
1204
  clear: both;
1205
  display: block;
1206
  }
1207
+ .bwg_themes td.spider_label {
1208
+ vertical-align: top;
1209
+ padding-top: 6px;
1210
+ }
1211
  #bwg_themes .bwg-tabs .bwg-tab-item {
1212
  display:inline-block;
1213
  padding: 12px;
2054
  position: relative;
2055
  top: 0;
2056
  width: 20px;
2057
+ }
filemanager/UploadHandler.php CHANGED
@@ -173,7 +173,7 @@ class bwg_UploadHandler {
173
  }
174
 
175
  protected function get_user_id() {
176
- @session_start();
177
  return session_id();
178
  }
179
 
@@ -852,8 +852,7 @@ class bwg_UploadHandler {
852
 
853
  public function get($print_response = true) {
854
  if ( isset($_GET['import']) && $_GET['import'] == 1 ) {
855
- $file_names = explode('**@**', (isset($_REQUEST['file_namesML']) ? stripslashes($_REQUEST['file_namesML']) : ''));
856
-
857
  $files = array();
858
  foreach ($file_names as $index => $value) {
859
  $file_name_array = explode('/', $value);
@@ -882,7 +881,7 @@ class bwg_UploadHandler {
882
 
883
  public function post($print_response = true) {
884
  if ( isset($_REQUEST['import']) && $_REQUEST['import'] == 1 ) {
885
- $file_names = explode('**@**', (isset($_REQUEST['file_namesML']) ? stripslashes($_REQUEST['file_namesML']) : ''));
886
 
887
  $files = array();
888
  foreach ($file_names as $index => $value) {
173
  }
174
 
175
  protected function get_user_id() {
176
+ WDWLibrary::bwg_session_start();
177
  return session_id();
178
  }
179
 
852
 
853
  public function get($print_response = true) {
854
  if ( isset($_GET['import']) && $_GET['import'] == 1 ) {
855
+ $file_names = json_decode(isset($_REQUEST['file_namesML']) ? stripslashes($_REQUEST['file_namesML']) : '');
 
856
  $files = array();
857
  foreach ($file_names as $index => $value) {
858
  $file_name_array = explode('/', $value);
881
 
882
  public function post($print_response = true) {
883
  if ( isset($_REQUEST['import']) && $_REQUEST['import'] == 1 ) {
884
+ $file_names = json_decode(isset($_REQUEST['file_namesML']) ? stripslashes($_REQUEST['file_namesML']) : '');
885
 
886
  $files = array();
887
  foreach ($file_names as $index => $value) {
framework/BWGOptions.php CHANGED
@@ -5,6 +5,7 @@ class WD_BWG_Options {
5
 
6
  // General
7
  public $images_directory = null;
 
8
  public $upload_img_width = 1200;
9
  public $upload_img_height = 1200;
10
  public $upload_thumb_width = 500;
@@ -309,12 +310,14 @@ class WD_BWG_Options {
309
  $old_images_directory = $options->images_directory;
310
  if (!$reset) {
311
  if (isset($options)) {
 
312
  foreach ($options as $name => $value) {
313
  $this->$name = $value;
314
  }
315
  }
316
  }
317
  }
 
318
  if ($this->images_directory === null) {
319
  $upload_dir = wp_upload_dir();
320
  if (!isset($this->old_images_directory) && !is_dir($upload_dir['basedir'] . '/photo-gallery') && !$reset) {
5
 
6
  // General
7
  public $images_directory = null;
8
+ public $resizable_thumbnails = 1;
9
  public $upload_img_width = 1200;
10
  public $upload_img_height = 1200;
11
  public $upload_thumb_width = 500;
310
  $old_images_directory = $options->images_directory;
311
  if (!$reset) {
312
  if (isset($options)) {
313
+ $this->resizable_thumbnails = 0;
314
  foreach ($options as $name => $value) {
315
  $this->$name = $value;
316
  }
317
  }
318
  }
319
  }
320
+
321
  if ($this->images_directory === null) {
322
  $upload_dir = wp_upload_dir();
323
  if (!isset($this->old_images_directory) && !is_dir($upload_dir['basedir'] . '/photo-gallery') && !$reset) {
framework/WDWLibrary.php CHANGED
@@ -610,288 +610,6 @@ class WDWLibrary {
610
  }
611
  }
612
 
613
- public static function ajax_html_frontend_page_nav($theme_row, $count_items, $page_number, $form_id, $items_per_page, $current_view, $id, $cur_alb_gal_id = 0, $type = 'album', $enable_seo = false, $pagination = 1) {
614
- $limit = $page_number > 1 ? $items_per_page['load_more_image_count'] : $items_per_page['images_per_page'];
615
- $limit = $limit ? $limit : 1;
616
- $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : $type);
617
- $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : $cur_alb_gal_id);
618
- if ($count_items) {
619
- if ($count_items % $limit) {
620
- $items_county = ($count_items - $count_items % $limit) / $limit + 1;
621
- }
622
- else {
623
- $items_county = ($count_items - $count_items % $limit) / $limit;
624
- }
625
- if ($pagination == 2) {
626
- $items_county++;
627
- }
628
- }
629
- else {
630
- $items_county = 1;
631
- }
632
- if ($page_number > $items_county) {
633
- return;
634
- }
635
- $first_page = "first-page-" . $current_view;
636
- $prev_page = "prev-page-" . $current_view;
637
- $next_page = "next-page-" . $current_view;
638
- $last_page = "last-page-" . $current_view;
639
- ?>
640
- <span class="bwg_nav_cont_<?php echo $current_view; ?>">
641
- <?php
642
- if ($pagination == 1) {
643
- ?>
644
- <div class="tablenav-pages_<?php echo $current_view; ?>">
645
- <?php
646
- if ($theme_row->page_nav_number) {
647
- ?>
648
- <span class="displaying-num_<?php echo $current_view; ?>"><?php echo $count_items . ' ' . __(' item(s)', BWG()->prefix); ?></span>
649
- <?php
650
- }
651
- if ($count_items > $limit) {
652
- if ($theme_row->page_nav_button_text) {
653
- $first_button = __('First', BWG()->prefix);
654
- $previous_button = __('Previous', BWG()->prefix);
655
- $next_button = __('Next', BWG()->prefix);
656
- $last_button = __('Last', BWG()->prefix);
657
- }
658
- else {
659
- $first_button = '«';
660
- $previous_button = '‹';
661
- $next_button = '›';
662
- $last_button = '»';
663
- }
664
- if ($page_number == 1) {
665
- $first_page = "first-page disabled";
666
- $prev_page = "prev-page disabled";
667
- }
668
- if ($page_number >= $items_county) {
669
- $next_page = "next-page disabled";
670
- $last_page = "last-page disabled";
671
- }
672
- ?>
673
- <span class="pagination-links_<?php echo $current_view; ?>">
674
- <a class="<?php echo $first_page; ?>" title="<?php echo __('Go to the first page', BWG()->prefix); ?>"><?php echo $first_button; ?></a>
675
- <a class="<?php echo $prev_page; ?>" title="<?php echo __('Go to the previous page', BWG()->prefix); ?>" <?php echo $page_number > 1 && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number - 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $previous_button; ?></a>
676
- <span class="paging-input_<?php echo $current_view; ?>">
677
- <span class="total-pages_<?php echo $current_view; ?>"><?php echo $page_number; ?></span> <?php echo __('of', BWG()->prefix); ?> <span class="total-pages_<?php echo $current_view; ?>">
678
- <?php echo $items_county; ?>
679
- </span>
680
- </span>
681
- <a class="<?php echo $next_page ?>" title="<?php echo __('Go to the next page', BWG()->prefix); ?>" <?php echo $page_number + 1 <= $items_county && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number + 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $next_button; ?></a>
682
- <a class="<?php echo $last_page ?>" title="<?php echo __('Go to the last page', BWG()->prefix); ?>"><?php echo $last_button; ?></a>
683
- </span>
684
- <?php
685
- }
686
- ?>
687
- </div>
688
- <?php
689
- }
690
- elseif ($pagination == 2) {
691
- if ($count_items > ($limit * ($page_number - 1)) + $items_per_page['images_per_page']) {
692
- ?>
693
- <div id="bwg_load_<?php echo $current_view; ?>" class="tablenav-pages_<?php echo $current_view; ?>">
694
- <a class="bwg_load_btn_<?php echo $current_view; ?> bwg_load_btn" href="javascript:void(0);"><?php echo __('Load More...', BWG()->prefix); ?></a>
695
- <input type="hidden" id="bwg_load_more_<?php echo $current_view; ?>" name="bwg_load_more_<?php echo $current_view; ?>" value="on" />
696
- </div>
697
- <?php
698
- }
699
- }
700
- elseif ($pagination == 3) {
701
- if ($count_items > $limit * $page_number) {
702
- ?>
703
- <script type="text/javascript">
704
- jQuery(window).on("scroll", function() {
705
- if (jQuery(document).scrollTop() + jQuery(window).height() > (jQuery('#<?php echo $form_id; ?>').offset().top + jQuery('#<?php echo $form_id; ?>').height())) {
706
- spider_page_<?php echo $current_view; ?>('', <?php echo $page_number; ?>, 1, true);
707
- jQuery(window).off("scroll");
708
- return false;
709
- }
710
- });
711
- </script>
712
- <?php
713
- }
714
- }
715
- ?>
716
- <input type="hidden" id="page_number_<?php echo $current_view; ?>" name="page_number_<?php echo $current_view; ?>" value="<?php echo ((isset($_POST['page_number_' . $current_view])) ? (int) $_POST['page_number_' . $current_view] : 1); ?>" />
717
- <script type="text/javascript">
718
- function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
719
- if (typeof load_more == "undefined") {
720
- var load_more = false;
721
- }
722
- if (jQuery(cur).hasClass('disabled')) {
723
- return false;
724
- }
725
- var items_county_<?php echo $current_view; ?> = <?php echo $items_county; ?>;
726
- switch (y) {
727
- case 1:
728
- if (x >= items_county_<?php echo $current_view; ?>) {
729
- document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
730
- }
731
- else {
732
- document.getElementById('page_number_<?php echo $current_view; ?>').value = x + 1;
733
- }
734
- break;
735
- case 2:
736
- document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
737
- break;
738
- case -1:
739
- if (x == 1) {
740
- document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
741
- }
742
- else {
743
- document.getElementById('page_number_<?php echo $current_view; ?>').value = x - 1;
744
- }
745
- break;
746
- case -2:
747
- document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
748
- break;
749
- default:
750
- document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
751
- }
752
- spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $id; ?>', '<?php echo $album_gallery_id; ?>', '', '<?php echo $type; ?>', 0, '', '', load_more);
753
- }
754
- jQuery('.<?php echo $first_page; ?>').on('click', function() {
755
- spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -2);
756
- });
757
- jQuery('.<?php echo $prev_page; ?>').on('click', function() {
758
- spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -1);
759
- return false;
760
- });
761
- jQuery('.<?php echo $next_page; ?>').on('click', function() {
762
- spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1);
763
- return false;
764
- });
765
- jQuery('.<?php echo $last_page; ?>').on('click', function() {
766
- spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 2);
767
- });
768
- jQuery('.bwg_load_btn_<?php echo $current_view; ?>').on('click', function() {
769
- spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1, true);
770
- return false;
771
- });
772
- </script>
773
- </span>
774
- <?php
775
- }
776
-
777
- public static function ajax_html_frontend_search_box($form_id, $current_view, $cur_gal_id, $images_count, $search_box_width = 180, $placeholder = '', $album_gallery_id = 0) {
778
- $bwg_search = ((isset($_POST['bwg_search_' . $current_view]) && esc_html($_POST['bwg_search_' . $current_view]) != '') ? esc_html($_POST['bwg_search_' . $current_view]) : '');
779
- $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : ($album_gallery_id ? 'gallery' : 'album'));
780
- $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : ( $album_gallery_id ? $album_gallery_id : 0));
781
- ob_start();
782
- ?>
783
- #bwg_search_container_2_<?php echo $current_view; ?> {
784
- width: <?php echo $search_box_width; ?>px;
785
- }
786
- <?php
787
-
788
- $inline_style = ob_get_clean();
789
- if (BWG()->options->use_inline_stiles_and_scripts) {
790
- wp_add_inline_style('bwg_frontend', $inline_style);
791
- }
792
- else {
793
- echo '<style>' . $inline_style . '</style>';
794
- }
795
- ?>
796
- <script type="text/javascript">
797
- function clear_input_<?php echo $current_view; ?> (current_view) {
798
- jQuery("#bwg_search_input_" + current_view).val('');
799
- }
800
- function check_enter_key_<?php echo $current_view; ?>(e) {
801
- var key_code = e.which || e.keyCode;
802
- if (key_code == 13) {
803
- spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1);
804
- return false;
805
- }
806
- return true;
807
- }
808
- </script>
809
- <div class="bwg_search_container_1" id="bwg_search_container_1_<?php echo $current_view; ?>">
810
- <div class="bwg_search_container_2" id="bwg_search_container_2_<?php echo $current_view; ?>">
811
- <span class="bwg_search_reset_container" >
812
- <i title="<?php echo __('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="clear_input_<?php echo $current_view; ?>('<?php echo $current_view; ?>'),spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
813
- </span>
814
- <span class="bwg_search_loupe_container" >
815
- <i title="<?php echo __('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
816
- </span>
817
- <span class="bwg_search_input_container">
818
- <input id="bwg_search_input_<?php echo $current_view; ?>" class="bwg_search_input" type="text" onkeypress="return check_enter_key_<?php echo $current_view; ?>(event)" name="bwg_search_<?php echo $current_view; ?>" value="<?php echo $bwg_search; ?>" placeholder="<?php echo $placeholder; ?>" />
819
- <input id="bwg_images_count_<?php echo $current_view; ?>" class="bwg_search_input" type="hidden" name="bwg_images_count_<?php echo $current_view; ?>" value="<?php echo $images_count; ?>" >
820
- </span>
821
- </div>
822
- </div>
823
- <?php
824
- }
825
-
826
- public static function ajax_html_frontend_search_tags($form_id, $current_view, $cur_gal_id, $images_count, $tags_rows) {
827
- $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
828
- $bwg_search_tags = (isset($_POST['bwg_tag_id_' . $cur_gal_id]) && $_POST['bwg_tag_id_' . $cur_gal_id] != '' )? $_POST['bwg_tag_id_' . $cur_gal_id] : array();
829
- $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
830
- ?>
831
- <div id="bwg_tag_wrap">
832
- <div id="bwg_tag_container">
833
- <select class="search_tags" id="bwg_tag_id_<?php echo $cur_gal_id; ?>" multiple="multiple">
834
- <?php
835
- foreach($tags_rows as $tags_row) {
836
- $selected = (in_array($tags_row->term_id ? $tags_row->term_id : '', $bwg_search_tags)) ? 'selected="selected"' : '';
837
- ?>
838
- <option value="<?php echo $tags_row->term_id ?>" <?php echo $selected;?>><?php echo $tags_row->name ?></option>
839
- <?php
840
- }
841
- ?>
842
- </select>
843
- <span class="bwg_search_loupe_container" >
844
- <i title="<?php _e('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', false);"></i>
845
- </span>
846
- <span class="bwg_search_reset_container" >
847
- <i title="<?php _e('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', '<?php echo $cur_gal_id; ?>');"></i>
848
- </span>
849
- <input type="hidden" id="bwg_tags_id_<?php echo $cur_gal_id; ?>" value="" />
850
- </div>
851
- <div style="clear:both"></div>
852
- </div>
853
- <script>
854
- jQuery(".search_tags").SumoSelect({
855
- placeholder: bwg_objectsL10n.bwg_select_tag,
856
- search: 1,
857
- searchText: bwg_objectsL10n.bwg_search,
858
- forceCustomRendering: true
859
- });
860
- </script>
861
- <?php
862
- }
863
-
864
- public static function ajax_html_frontend_sort_box($form_id, $current_view, $cur_gal_id, $sort_by = '', $search_box_width = 180) {
865
- $bwg_search = ((isset($_POST['bwg_search_' . $current_view]) && esc_html($_POST['bwg_search_' . $current_view]) != '') ? esc_html($_POST['bwg_search_' . $current_view]) : '');
866
- $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
867
- $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
868
- ob_start();
869
- ?>
870
- #bwg_order_<?php echo $current_view; ?> {
871
- width: <?php echo $search_box_width; ?>px;
872
- }
873
- <?php
874
- $inline_style = ob_get_clean();
875
-
876
- if (BWG()->options->use_inline_stiles_and_scripts) {
877
- wp_add_inline_style('bwg_frontend', $inline_style);
878
- }
879
- else {
880
- echo '<style>' . $inline_style . '</style>';
881
- }
882
- ?>
883
- <div class="bwg_order_cont">
884
- <span class="bwg_order_label"><?php echo __('Order by: ', BWG()->prefix); ?></span>
885
- <select id="bwg_order_<?php echo $current_view; ?>" class="bwg_order" onchange="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1, '', this.value)">
886
- <option <?php if ($sort_by == 'default') echo 'selected'; ?> value="default"><?php echo __('Default', BWG()->prefix); ?></option>
887
- <option <?php if ($sort_by == 'filename') echo 'selected'; ?> value="filename"><?php echo __('Filename', BWG()->prefix); ?></option>
888
- <option <?php if ($sort_by == 'size') echo 'selected'; ?> value="size"><?php echo __('Size', BWG()->prefix); ?></option>
889
- <option <?php if ($sort_by == 'random' || $sort_by == 'RAND()') echo 'selected'; ?> value="random"><?php echo __('Random', BWG()->prefix); ?></option>
890
- </select>
891
- </div>
892
- <?php
893
- }
894
-
895
  public static function spider_hex2rgb($colour) {
896
  if ($colour[0] == '#') {
897
  $colour = substr( $colour, 1 );
@@ -1044,52 +762,10 @@ class WDWLibrary {
1044
  return $google_array;
1045
  }
1046
 
1047
- public static function get_theme_row_data($id) {
1048
  global $wpdb;
1049
- if ($id) {
1050
- $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE id="%d"', $id));
1051
- }
1052
- else {
1053
- $row = $wpdb->get_row('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE default_theme=1');
1054
- }
1055
- if (isset($row->options)) {
1056
- $row = (object) array_merge((array) $row, (array) json_decode($row->options));
1057
- }
1058
- return $row;
1059
- }
1060
-
1061
- public static function get_gallery_row_data($id, $from = '') {
1062
- global $wpdb;
1063
- $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1 AND id="%d"', $id));
1064
- if ($row) {
1065
- $row->permalink = '';
1066
- if ($from != '') {
1067
- $row->permalink = self::get_custom_post_permalink( array( 'slug' => $row->slug, 'post_type' => 'gallery' ) );
1068
- }
1069
- if ( !empty($row->preview_image) ) {
1070
- $row->preview_image = $row->preview_image . '?bwg=' . $row->modified_date;
1071
- }
1072
- if ( !empty($row->random_preview_image) ) {
1073
- $row->random_preview_image = $row->random_preview_image . '?bwg=' . $row->modified_date;
1074
- }
1075
- }
1076
- else if ( $id == 0 ) {
1077
- $row_count = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1');
1078
- if (!$row_count) {
1079
- return false;
1080
- }
1081
- else {
1082
- $row = new stdClass();
1083
- $row->name = '';
1084
- }
1085
- }
1086
- return $row;
1087
- }
1088
-
1089
- public static function get_tags_rows_data($gallery_id) {
1090
- global $wpdb;
1091
- $row = $wpdb->get_results('Select t1.* FROM ' . $wpdb->prefix . 'terms AS t1 LEFT JOIN ' . $wpdb->prefix . 'term_taxonomy AS t2 ON t1.term_id = t2.term_id' . ($gallery_id ? ' LEFT JOIN (SELECT DISTINCT tag_id , gallery_id FROM ' . $wpdb->prefix . 'bwg_image_tag) AS t3 ON t1.term_id=t3.tag_id' : '') . ' WHERE taxonomy="bwg_tag"' . ($gallery_id ? ' AND t3.gallery_id="' . $gallery_id . '"' : '') . ' ORDER BY t1.name ASC');
1092
- return $row;
1093
  }
1094
 
1095
  /**
@@ -1169,8 +845,7 @@ class WDWLibrary {
1169
  global $wpdb;
1170
  $id = $params['id'];
1171
  $type = $params['type'];
1172
- $theme_row = self::get_theme_row_data(0);
1173
- $theme_id = $theme_row->id;
1174
  $shortcode_id = 0;
1175
  if (!empty($type['post_type'])) {
1176
  $shortcode = ' use_option_defaults="1" type="' . $type['post_type'] . '" theme_id="' . $theme_id . '" ';
@@ -1315,6 +990,7 @@ class WDWLibrary {
1315
  }
1316
  $items_in_page = $images_per_page;
1317
  $limit = 0;
 
1318
  if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
1319
  if ( $_REQUEST['page_number_' . $bwg] > 1 ) {
1320
  $items_in_page = $load_more_image_count;
@@ -1350,8 +1026,8 @@ class WDWLibrary {
1350
  if ( !empty($rows) ) {
1351
  foreach ( $rows as $row ) {
1352
  if ( strpos($row->filetype, 'EMBED') === FALSE ) {
1353
- $row->image_url = $row->image_url . '?bwg=' . $row->modified_date;
1354
- $row->thumb_url = $row->thumb_url . '?bwg=' . $row->modified_date;
1355
  }
1356
  $images[] = $row;
1357
  }
@@ -1369,43 +1045,51 @@ class WDWLibrary {
1369
 
1370
  if ( $row ) {
1371
  if ( $from ) {
1372
- //var_dump($row[0]);
1373
  $row->permalink = WDWLibrary::get_custom_post_permalink(array( 'slug' => $row->slug, 'post_type' => 'album' ));
1374
  }
1375
  if ( !empty($row->preview_image) ) {
1376
- $row->preview_image = $row->preview_image . '?bwg=' . $row->modified_date;
1377
  }
1378
  if ( !empty($row->random_preview_image) ) {
1379
- $row->random_preview_image = $row->random_preview_image . '?bwg=' . $row->modified_date;
1380
  }
1381
  }
1382
  return $row;
1383
  }
1384
 
1385
- public static function get_alb_gals_row( $id, $albums_per_page, $sort_by, $bwg, $sort_direction = 'ASC' ) {
1386
  global $wpdb;
 
 
 
 
 
1387
  $limit = 0;
1388
- if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
1389
- $limit = ((int) $_REQUEST['page_number_' . $bwg] - 1) * $albums_per_page;
1390
  }
1391
  $limit_str = '';
1392
  if ( $albums_per_page ) {
1393
  $limit_str = 'LIMIT ' . $limit . ',' . $albums_per_page;
1394
  }
 
 
 
 
 
 
1395
  // Select all galleries
1396
- if( $id == 0) {
1397
- $row = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'bwg_gallery WHERE `published`=1 ' . $limit_str);
1398
- $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_gallery');
1399
-
1400
  } else {
1401
- $row = $wpdb->get_results($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_album_gallery WHERE album_id="%d" ORDER BY `order` ' . $sort_direction . ' ' . $limit_str, $id));
1402
- $total = $wpdb->get_var($wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_album_gallery WHERE album_id="%d"', $id));
1403
-
1404
  }
1405
- $page_nav['total'] = $total;
1406
- $page_nav['limit'] = 1;
1407
- if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
1408
- $page_nav['limit'] = (int) $_REQUEST['page_number_' . $bwg];
1409
  }
1410
  return array( 'rows' => $row, 'page_nav' => $page_nav );
1411
  }
@@ -1599,16 +1283,16 @@ class WDWLibrary {
1599
  $width = BWG()->options->upload_img_width;
1600
  global $wpdb;
1601
  $where = ($gallery_id) ? ' `gallery_id` = ' . $gallery_id : 1;
1602
- $images = $wpdb->get_results('SELECT * FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where);
1603
- if( !empty($images) ) {
1604
- foreach ( $images as $image ) {
1605
- if ( preg_match('/EMBED/', $image->filetype) == 1 ) {
1606
- continue;
1607
- }
1608
- self::recover_image($image, $thumb_width, $width, ($gallery_id == 0 ? 'option_page' : 'gallery_page'));
1609
- }
1610
- }
1611
- self::update_image_modified_date( $where );
1612
  }
1613
 
1614
  public static function recover_image($image, $thumb_width, $width, $page) {
@@ -1824,7 +1508,7 @@ class WDWLibrary {
1824
  * @return array $defauls
1825
  */
1826
  public static function get_shortcode_option_params( $params ) {
1827
- $theme = self::get_theme_row_data(0);
1828
  $use_option_defaults = (isset($params['use_option_defaults']) && $params['use_option_defaults'] == 1) ? TRUE : FALSE;
1829
  $from = (isset($params['from']) && $params['from'] == 'widget' ) ? TRUE : FALSE;
1830
  $defaults = array(
@@ -1833,7 +1517,7 @@ class WDWLibrary {
1833
  'gal_title' => isset($params['gal_title']) ? $params['gal_title'] : '',
1834
  'album_id' => isset($params['album_id']) ? $params['album_id'] : 0,
1835
  'tag' => isset($params['tag']) ? $params['tag'] : 0,
1836
- 'theme_id' => (!$use_option_defaults && isset($params['theme_id'])) ? $params['theme_id'] : $theme->id,
1837
 
1838
  'thumb_click_action' => (($from) ? BWG()->options->thumb_click_action : ($use_option_defaults ? BWG()->options->thumb_click_action : (isset($params['thumb_click_action']) && $params['thumb_click_action'] != 'undefined' ? $params['thumb_click_action'] : 'open_lightbox'))),
1839
  'thumb_link_target' => (($from) ? BWG()->options->thumb_link_target : ($use_option_defaults ? BWG()->options->thumb_link_target : (isset($params['thumb_link_target']) ? $params['thumb_link_target'] : 1))),
@@ -1867,7 +1551,7 @@ class WDWLibrary {
1867
  'watermark_font' => (($from) ? BWG()->options->watermark_font : ($use_option_defaults ? BWG()->options->watermark_font : (isset($params['watermark_font']) ? $params['watermark_font'] : 'Arial'))),
1868
  'watermark_color' => (($from) ? BWG()->options->watermark_color : ($use_option_defaults ? BWG()->options->watermark_color : (isset($params['watermark_color']) ? $params['watermark_color'] : 'FFFFFF'))),
1869
  'watermark_link' => (($from) ? urlencode(BWG()->options->watermark_link) : ($use_option_defaults ? urlencode(BWG()->options->watermark_link) : (isset($params['watermark_link']) ? urlencode($params['watermark_link']) : ''))),
1870
- 'watermark_url' => (($from) ? urlencode(BWG()->options->watermark_url) : ($use_option_defaults ? urlencode(BWG()->options->watermark_url) : (isset($params['watermark_url']) ? urlencode($params['watermark_url']) : ''))),
1871
  'watermark_width' => (($from) ? BWG()->options->watermark_width: ($use_option_defaults ? BWG()->options->watermark_width : (isset($params['watermark_width']) ? $params['watermark_width'] : 90))),
1872
  'watermark_height' => (($from) ? BWG()->options->watermark_height : ($use_option_defaults ? BWG()->options->watermark_height : (isset($params['watermark_height']) ? $params['watermark_height'] : 90))),
1873
  'watermark_opacity' => (($from) ? BWG()->options->watermark_opacity : ($use_option_defaults ? BWG()->options->watermark_opacity : (isset($params['watermark_opacity']) ? $params['watermark_opacity'] : 30))),
@@ -2319,6 +2003,360 @@ class WDWLibrary {
2319
  }
2320
  return $update;
2321
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2322
  }
2323
 
2324
  /**
@@ -2342,3 +2380,4 @@ if ( !function_exists('pre') ) {
2342
  }
2343
  }
2344
  }
 
610
  }
611
  }
612
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
  public static function spider_hex2rgb($colour) {
614
  if ($colour[0] == '#') {
615
  $colour = substr( $colour, 1 );
762
  return $google_array;
763
  }
764
 
765
+ public static function get_default_theme_id() {
766
  global $wpdb;
767
+ $id = $wpdb->get_var('SELECT id FROM ' . $wpdb->prefix . 'bwg_theme WHERE default_theme=1');
768
+ return $id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
  }
770
 
771
  /**
845
  global $wpdb;
846
  $id = $params['id'];
847
  $type = $params['type'];
848
+ $theme_id = self::get_default_theme_id();
 
849
  $shortcode_id = 0;
850
  if (!empty($type['post_type'])) {
851
  $shortcode = ' use_option_defaults="1" type="' . $type['post_type'] . '" theme_id="' . $theme_id . '" ';
990
  }
991
  $items_in_page = $images_per_page;
992
  $limit = 0;
993
+ WDWLibrary::bwg_session_start();
994
  if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
995
  if ( $_REQUEST['page_number_' . $bwg] > 1 ) {
996
  $items_in_page = $load_more_image_count;
1026
  if ( !empty($rows) ) {
1027
  foreach ( $rows as $row ) {
1028
  if ( strpos($row->filetype, 'EMBED') === FALSE ) {
1029
+ $row->image_url = self::image_url_version($row->image_url, $row->modified_date);
1030
+ $row->thumb_url = self::image_url_version($row->thumb_url, $row->modified_date);
1031
  }
1032
  $images[] = $row;
1033
  }
1045
 
1046
  if ( $row ) {
1047
  if ( $from ) {
 
1048
  $row->permalink = WDWLibrary::get_custom_post_permalink(array( 'slug' => $row->slug, 'post_type' => 'album' ));
1049
  }
1050
  if ( !empty($row->preview_image) ) {
1051
+ $row->preview_image = self::image_url_version($row->preview_image, $row->modified_date);
1052
  }
1053
  if ( !empty($row->random_preview_image) ) {
1054
+ $row->random_preview_image = self::image_url_version($row->random_preview_image, $row->modified_date);
1055
  }
1056
  }
1057
  return $row;
1058
  }
1059
 
1060
+ public static function get_alb_gals_row( $bwg, $id, $albums_per_page, $sort_by, $pagination_type = 0 ) {
1061
  global $wpdb;
1062
+ if ( $sort_by == 'random' || $sort_by == 'RAND()' ) {
1063
+ $order_by = 'ORDER BY RAND()';
1064
+ } else {
1065
+ $order_by = 'ORDER BY `order` ASC';
1066
+ }
1067
  $limit = 0;
1068
+ if ( isset( $_REQUEST[ 'page_number_' . $bwg ] ) && $_REQUEST[ 'page_number_' . $bwg ] ) {
1069
+ $limit = ((int)$_REQUEST[ 'page_number_' . $bwg ] - 1) * $albums_per_page;
1070
  }
1071
  $limit_str = '';
1072
  if ( $albums_per_page ) {
1073
  $limit_str = 'LIMIT ' . $limit . ',' . $albums_per_page;
1074
  }
1075
+ if ( isset( $_REQUEST[ 'action_' . $bwg ] ) && $_REQUEST[ 'action_' . $bwg ] == 'back' && ($pagination_type == 2 || $pagination_type == 3) ) {
1076
+ if ( isset( $_REQUEST[ 'page_number_' . $bwg ] ) && $_REQUEST[ 'page_number_' . $bwg ] ) {
1077
+ $limit = $albums_per_page * $_REQUEST[ 'page_number_' . $bwg ];
1078
+ $limit_str = 'LIMIT 0,' . $limit;
1079
+ }
1080
+ }
1081
  // Select all galleries
1082
+ if ( $id == 0 ) {
1083
+ $row = $wpdb->get_results( 'SELECT * FROM ' . $wpdb->prefix . 'bwg_gallery WHERE `published`=1 ' . $order_by . ' ' . $limit_str );
1084
+ $total = $wpdb->get_var( 'SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_gallery' );
 
1085
  } else {
1086
+ $row = $wpdb->get_results( $wpdb->prepare( 'SELECT * FROM ' . $wpdb->prefix . 'bwg_album_gallery WHERE album_id="%d" ' . $order_by . ' ' . $limit_str, $id ) );
1087
+ $total = $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_album_gallery WHERE album_id="%d"', $id ) );
 
1088
  }
1089
+ $page_nav[ 'total' ] = $total;
1090
+ $page_nav[ 'limit' ] = 1;
1091
+ if ( isset( $_REQUEST[ 'page_number_' . $bwg ] ) && $_REQUEST[ 'page_number_' . $bwg ] ) {
1092
+ $page_nav[ 'limit' ] = (int)$_REQUEST[ 'page_number_' . $bwg ];
1093
  }
1094
  return array( 'rows' => $row, 'page_nav' => $page_nav );
1095
  }
1283
  $width = BWG()->options->upload_img_width;
1284
  global $wpdb;
1285
  $where = ($gallery_id) ? ' `gallery_id` = ' . $gallery_id : 1;
1286
+ $images = $wpdb->get_results( 'SELECT * FROM `' . $wpdb->prefix . 'bwg_image` WHERE ' . $where );
1287
+ if ( !empty( $images ) ) {
1288
+ foreach ( $images as $image ) {
1289
+ if ( preg_match( '/EMBED/', $image->filetype ) == 1 ) {
1290
+ continue;
1291
+ }
1292
+ self::recover_image( $image, $thumb_width, $width, ($gallery_id == 0 ? 'option_page' : 'gallery_page') );
1293
+ }
1294
+ }
1295
+ self::update_image_modified_date( $where );
1296
  }
1297
 
1298
  public static function recover_image($image, $thumb_width, $width, $page) {
1508
  * @return array $defauls
1509
  */
1510
  public static function get_shortcode_option_params( $params ) {
1511
+ $theme_id = self::get_default_theme_id();
1512
  $use_option_defaults = (isset($params['use_option_defaults']) && $params['use_option_defaults'] == 1) ? TRUE : FALSE;
1513
  $from = (isset($params['from']) && $params['from'] == 'widget' ) ? TRUE : FALSE;
1514
  $defaults = array(
1517
  'gal_title' => isset($params['gal_title']) ? $params['gal_title'] : '',
1518
  'album_id' => isset($params['album_id']) ? $params['album_id'] : 0,
1519
  'tag' => isset($params['tag']) ? $params['tag'] : 0,
1520
+ 'theme_id' => isset($params['theme_id']) ? $params['theme_id'] : $theme_id,
1521
 
1522
  'thumb_click_action' => (($from) ? BWG()->options->thumb_click_action : ($use_option_defaults ? BWG()->options->thumb_click_action : (isset($params['thumb_click_action']) && $params['thumb_click_action'] != 'undefined' ? $params['thumb_click_action'] : 'open_lightbox'))),
1523
  'thumb_link_target' => (($from) ? BWG()->options->thumb_link_target : ($use_option_defaults ? BWG()->options->thumb_link_target : (isset($params['thumb_link_target']) ? $params['thumb_link_target'] : 1))),
1551
  'watermark_font' => (($from) ? BWG()->options->watermark_font : ($use_option_defaults ? BWG()->options->watermark_font : (isset($params['watermark_font']) ? $params['watermark_font'] : 'Arial'))),
1552
  'watermark_color' => (($from) ? BWG()->options->watermark_color : ($use_option_defaults ? BWG()->options->watermark_color : (isset($params['watermark_color']) ? $params['watermark_color'] : 'FFFFFF'))),
1553
  'watermark_link' => (($from) ? urlencode(BWG()->options->watermark_link) : ($use_option_defaults ? urlencode(BWG()->options->watermark_link) : (isset($params['watermark_link']) ? urlencode($params['watermark_link']) : ''))),
1554
+ 'watermark_url' => (($from) ? BWG()->options->watermark_url : ($use_option_defaults ? BWG()->options->watermark_url : (isset($params['watermark_url']) ? $params['watermark_url'] : ''))),
1555
  'watermark_width' => (($from) ? BWG()->options->watermark_width: ($use_option_defaults ? BWG()->options->watermark_width : (isset($params['watermark_width']) ? $params['watermark_width'] : 90))),
1556
  'watermark_height' => (($from) ? BWG()->options->watermark_height : ($use_option_defaults ? BWG()->options->watermark_height : (isset($params['watermark_height']) ? $params['watermark_height'] : 90))),
1557
  'watermark_opacity' => (($from) ? BWG()->options->watermark_opacity : ($use_option_defaults ? BWG()->options->watermark_opacity : (isset($params['watermark_opacity']) ? $params['watermark_opacity'] : 30))),
2003
  }
2004
  return $update;
2005
  }
2006
+
2007
+ /**
2008
+ * Get description and title from gallery or album tables.
2009
+ *
2010
+ * @param string $type
2011
+ * @param int $id
2012
+ *
2013
+ * @return string
2014
+ */
2015
+ public static function get_album_gallery_title_description( $type, $id ) {
2016
+ global $wpdb;
2017
+ $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_'.$type.' WHERE id="%d"', $id));
2018
+ if($row) {
2019
+ return $row;
2020
+ }
2021
+ return '';
2022
+ }
2023
+
2024
+ /**
2025
+ * Adds date modified to image url to avoid caching.
2026
+ *
2027
+ * @param $url
2028
+ * @param $date_modified
2029
+ * @return string
2030
+ */
2031
+ public static function image_url_version($url, $date_modified) {
2032
+ if ($date_modified && !WDWLibrary::check_external_link($url)) {
2033
+ return $url . '?bwg=' . $date_modified;
2034
+ }
2035
+ return $url;
2036
+ }
2037
+
2038
+ // TODO: To be removed when all views are ready.
2039
+ public static function get_theme_row_data($id) {
2040
+ global $wpdb;
2041
+ if ($id) {
2042
+ $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE id="%d"', $id));
2043
+ }
2044
+ else {
2045
+ $row = $wpdb->get_row('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE default_theme=1');
2046
+ }
2047
+ if (isset($row->options)) {
2048
+ $row = (object) array_merge((array) $row, (array) json_decode($row->options));
2049
+ }
2050
+
2051
+ // TODO: For old views. Delete after changing all views.
2052
+ if ( $row->thumb_hover_effect == 'zoom' ) {
2053
+ $row->thumb_hover_effect = 'scale';
2054
+ }
2055
+
2056
+ return $row;
2057
+ }
2058
+
2059
+ public static function get_gallery_row_data($id, $from = '') {
2060
+ global $wpdb;
2061
+ $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1 AND id="%d"', $id));
2062
+ if ($row) {
2063
+ $row->permalink = '';
2064
+ if ($from != '') {
2065
+ $row->permalink = self::get_custom_post_permalink( array( 'slug' => $row->slug, 'post_type' => 'gallery' ) );
2066
+ }
2067
+ if ( !empty($row->preview_image) ) {
2068
+ $row->preview_image = self::image_url_version($row->preview_image, $row->modified_date);
2069
+ }
2070
+ if ( !empty($row->random_preview_image) ) {
2071
+ $row->random_preview_image = self::image_url_version($row->random_preview_image, $row->modified_date);
2072
+ }
2073
+ }
2074
+ else if ( $id == 0 ) {
2075
+ $row_count = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1');
2076
+ if (!$row_count) {
2077
+ return false;
2078
+ }
2079
+ else {
2080
+ $row = new stdClass();
2081
+ $row->name = '';
2082
+ }
2083
+ }
2084
+ return $row;
2085
+ }
2086
+
2087
+ public static function get_tags_rows_data($gallery_id) {
2088
+ global $wpdb;
2089
+ $row = $wpdb->get_results('Select t1.* FROM ' . $wpdb->prefix . 'terms AS t1 LEFT JOIN ' . $wpdb->prefix . 'term_taxonomy AS t2 ON t1.term_id = t2.term_id' . ($gallery_id ? ' LEFT JOIN (SELECT DISTINCT tag_id , gallery_id FROM ' . $wpdb->prefix . 'bwg_image_tag) AS t3 ON t1.term_id=t3.tag_id' : '') . ' WHERE taxonomy="bwg_tag"' . ($gallery_id ? ' AND t3.gallery_id="' . $gallery_id . '"' : '') . ' ORDER BY t1.name ASC');
2090
+ return $row;
2091
+ }
2092
+
2093
+ public static function ajax_html_frontend_search_box($form_id, $current_view, $cur_gal_id, $images_count, $search_box_width = 180, $placeholder = '', $album_gallery_id = 0) {
2094
+ $bwg_search = ((isset($_POST['bwg_search_' . $current_view]) && esc_html($_POST['bwg_search_' . $current_view]) != '') ? esc_html($_POST['bwg_search_' . $current_view]) : '');
2095
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : ($album_gallery_id ? 'gallery' : 'album'));
2096
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : ( $album_gallery_id ? $album_gallery_id : 0));
2097
+
2098
+ ob_start();
2099
+ ?>
2100
+ #bwg_search_container_2_<?php echo $current_view; ?> {
2101
+ width: <?php echo $search_box_width; ?>px;
2102
+ }
2103
+ <?php
2104
+ $inline_style = ob_get_clean();
2105
+
2106
+ if (BWG()->options->use_inline_stiles_and_scripts) {
2107
+ wp_add_inline_style('bwg_frontend', $inline_style);
2108
+ }
2109
+ else {
2110
+ echo '<style>' . $inline_style . '</style>';
2111
+ }
2112
+ ?>
2113
+ <div class="bwg_search_container_1" id="bwg_search_container_1_<?php echo $current_view; ?>">
2114
+ <div class="bwg_search_container_2" id="bwg_search_container_2_<?php echo $current_view; ?>">
2115
+ <span class="bwg_search_reset_container" >
2116
+ <i title="<?php echo __('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="bwg_clear_search_input('<?php echo $current_view; ?>'),spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
2117
+ </span>
2118
+ <span class="bwg_search_loupe_container" >
2119
+ <i title="<?php echo __('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
2120
+ </span>
2121
+ <span class="bwg_search_input_container">
2122
+ <input id="bwg_search_input_<?php echo $current_view; ?>" class="bwg_search_input" type="text" onkeypress="return bwg_check_search_input_enter(this, event)" name="bwg_search_<?php echo $current_view; ?>" value="<?php echo $bwg_search; ?>" placeholder="<?php echo $placeholder; ?>" />
2123
+ <input id="bwg_images_count_<?php echo $current_view; ?>" class="bwg_search_input" type="hidden" name="bwg_images_count_<?php echo $current_view; ?>" value="<?php echo $images_count; ?>" >
2124
+ </span>
2125
+ </div>
2126
+ </div>
2127
+ <?php
2128
+ }
2129
+
2130
+ public static function ajax_html_frontend_sort_box($form_id, $current_view, $cur_gal_id, $sort_by = '', $search_box_width = 180) {
2131
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
2132
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
2133
+
2134
+ ob_start();
2135
+ ?>
2136
+ #bwg_order_<?php echo $current_view; ?> {
2137
+ width: <?php echo $search_box_width; ?>px;
2138
+ }
2139
+ <?php
2140
+ $inline_style = ob_get_clean();
2141
+
2142
+ if (BWG()->options->use_inline_stiles_and_scripts) {
2143
+ wp_add_inline_style('bwg_frontend', $inline_style);
2144
+ }
2145
+ else {
2146
+ echo '<style>' . $inline_style . '</style>';
2147
+ }
2148
+ ?>
2149
+ <div class="bwg_order_cont">
2150
+ <span class="bwg_order_label"><?php echo __('Order by: ', BWG()->prefix); ?></span>
2151
+ <select id="bwg_order_<?php echo $current_view; ?>" class="bwg_order" onchange="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1, '', this.value)">
2152
+ <option <?php if ($sort_by == 'default') echo 'selected'; ?> value="default"><?php echo __('Default', BWG()->prefix); ?></option>
2153
+ <option <?php if ($sort_by == 'filename') echo 'selected'; ?> value="filename"><?php echo __('Filename', BWG()->prefix); ?></option>
2154
+ <option <?php if ($sort_by == 'size') echo 'selected'; ?> value="size"><?php echo __('Size', BWG()->prefix); ?></option>
2155
+ <option <?php if ($sort_by == 'random' || $sort_by == 'RAND()') echo 'selected'; ?> value="random"><?php echo __('Random', BWG()->prefix); ?></option>
2156
+ </select>
2157
+ </div>
2158
+ <?php
2159
+ }
2160
+
2161
+ public static function ajax_html_frontend_search_tags($form_id, $current_view, $cur_gal_id, $images_count, $tags_rows) {
2162
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
2163
+ $bwg_search_tags = (isset($_POST['bwg_tag_id_' . $cur_gal_id]) && $_POST['bwg_tag_id_' . $cur_gal_id] != '' )? $_POST['bwg_tag_id_' . $cur_gal_id] : array();
2164
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
2165
+ ?>
2166
+ <div id="bwg_tag_wrap">
2167
+ <div id="bwg_tag_container">
2168
+ <select class="search_tags" id="bwg_tag_id_<?php echo $cur_gal_id; ?>" multiple="multiple">
2169
+ <?php
2170
+ foreach($tags_rows as $tags_row) {
2171
+ $selected = (in_array($tags_row->term_id ? $tags_row->term_id : '', $bwg_search_tags)) ? 'selected="selected"' : '';
2172
+ ?>
2173
+ <option value="<?php echo $tags_row->term_id ?>" <?php echo $selected;?>><?php echo $tags_row->name ?></option>
2174
+ <?php
2175
+ }
2176
+ ?>
2177
+ </select>
2178
+ <span class="bwg_search_loupe_container" >
2179
+ <i title="<?php _e('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', false);"></i>
2180
+ </span>
2181
+ <span class="bwg_search_reset_container" >
2182
+ <i title="<?php _e('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', '<?php echo $cur_gal_id; ?>');"></i>
2183
+ </span>
2184
+ <input type="hidden" id="bwg_tags_id_<?php echo $cur_gal_id; ?>" value="" />
2185
+ </div>
2186
+ <div style="clear:both"></div>
2187
+ </div>
2188
+ <?php
2189
+ }
2190
+
2191
+ public static function ajax_html_frontend_page_nav($theme_row, $count_items, $page_number, $form_id, $items_per_page, $current_view, $id, $cur_alb_gal_id = 0, $type = 'album', $enable_seo = false, $pagination = 1) {
2192
+ $limit = $page_number > 1 ? $items_per_page['load_more_image_count'] : $items_per_page['images_per_page'];
2193
+ $limit = $limit ? $limit : 1;
2194
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : $type);
2195
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : $cur_alb_gal_id);
2196
+ if ($count_items) {
2197
+ if ($count_items % $limit) {
2198
+ $items_county = ($count_items - $count_items % $limit) / $limit + 1;
2199
+ }
2200
+ else {
2201
+ $items_county = ($count_items - $count_items % $limit) / $limit;
2202
+ }
2203
+ if ($pagination == 2) {
2204
+ $items_county++;
2205
+ }
2206
+ }
2207
+ else {
2208
+ $items_county = 1;
2209
+ }
2210
+ if ($page_number > $items_county) {
2211
+ return;
2212
+ }
2213
+ $first_page = "first-page-" . $current_view;
2214
+ $prev_page = "prev-page-" . $current_view;
2215
+ $next_page = "next-page-" . $current_view;
2216
+ $last_page = "last-page-" . $current_view;
2217
+ ?>
2218
+ <span class="bwg_nav_cont_<?php echo $current_view; ?>">
2219
+ <?php
2220
+ if ($pagination == 1) {
2221
+ ?>
2222
+ <div class="tablenav-pages_<?php echo $current_view; ?>">
2223
+ <?php
2224
+ if ($theme_row->page_nav_number) {
2225
+ ?>
2226
+ <span class="displaying-num_<?php echo $current_view; ?>"><?php echo $count_items . ' ' . __(' item(s)', BWG()->prefix); ?></span>
2227
+ <?php
2228
+ }
2229
+ if ($count_items > $limit) {
2230
+ if ($theme_row->page_nav_button_text) {
2231
+ $first_button = __('First', BWG()->prefix);
2232
+ $previous_button = __('Previous', BWG()->prefix);
2233
+ $next_button = __('Next', BWG()->prefix);
2234
+ $last_button = __('Last', BWG()->prefix);
2235
+ }
2236
+ else {
2237
+ $first_button = '«';
2238
+ $previous_button = '‹';
2239
+ $next_button = '›';
2240
+ $last_button = '»';
2241
+ }
2242
+ if ($page_number == 1) {
2243
+ $first_page = "first-page disabled";
2244
+ $prev_page = "prev-page disabled";
2245
+ }
2246
+ if ($page_number >= $items_county) {
2247
+ $next_page = "next-page disabled";
2248
+ $last_page = "last-page disabled";
2249
+ }
2250
+ ?>
2251
+ <span class="pagination-links_<?php echo $current_view; ?>">
2252
+ <a class="<?php echo $first_page; ?>" title="<?php echo __('Go to the first page', BWG()->prefix); ?>"><?php echo $first_button; ?></a>
2253
+ <a class="<?php echo $prev_page; ?>" title="<?php echo __('Go to the previous page', BWG()->prefix); ?>" <?php echo $page_number > 1 && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number - 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $previous_button; ?></a>
2254
+ <span class="paging-input_<?php echo $current_view; ?>">
2255
+ <span class="total-pages_<?php echo $current_view; ?>"><?php echo $page_number; ?></span> <?php echo __('of', BWG()->prefix); ?> <span class="total-pages_<?php echo $current_view; ?>">
2256
+ <?php echo $items_county; ?>
2257
+ </span>
2258
+ </span>
2259
+ <a class="<?php echo $next_page ?>" title="<?php echo __('Go to the next page', BWG()->prefix); ?>" <?php echo $page_number + 1 <= $items_county && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number + 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $next_button; ?></a>
2260
+ <a class="<?php echo $last_page ?>" title="<?php echo __('Go to the last page', BWG()->prefix); ?>"><?php echo $last_button; ?></a>
2261
+ </span>
2262
+ <?php
2263
+ }
2264
+ ?>
2265
+ </div>
2266
+ <?php
2267
+ }
2268
+ elseif ($pagination == 2) {
2269
+ if ($count_items > ($limit * ($page_number - 1)) + $items_per_page['images_per_page']) {
2270
+ ?>
2271
+ <div id="bwg_load_<?php echo $current_view; ?>" class="tablenav-pages_<?php echo $current_view; ?>">
2272
+ <a class="bwg_load_btn_<?php echo $current_view; ?> bwg_load_btn" href="javascript:void(0);"><?php echo __('Load More...', BWG()->prefix); ?></a>
2273
+ <input type="hidden" id="bwg_load_more_<?php echo $current_view; ?>" name="bwg_load_more_<?php echo $current_view; ?>" value="on" />
2274
+ </div>
2275
+ <?php
2276
+ }
2277
+ }
2278
+ elseif ($pagination == 3) {
2279
+ if ($count_items > $limit * $page_number) {
2280
+ ?>
2281
+ <script type="text/javascript">
2282
+ jQuery(window).on("scroll", function() {
2283
+ if (jQuery(document).scrollTop() + jQuery(window).height() > (jQuery('#<?php echo $form_id; ?>').offset().top + jQuery('#<?php echo $form_id; ?>').height())) {
2284
+ spider_page_<?php echo $current_view; ?>('', <?php echo $page_number; ?>, 1, true);
2285
+ jQuery(window).off("scroll");
2286
+ return false;
2287
+ }
2288
+ });
2289
+ </script>
2290
+ <?php
2291
+ }
2292
+ }
2293
+ ?>
2294
+ <input type="hidden" id="page_number_<?php echo $current_view; ?>" name="page_number_<?php echo $current_view; ?>" value="<?php echo ((isset($_POST['page_number_' . $current_view])) ? (int) $_POST['page_number_' . $current_view] : 1); ?>" />
2295
+ <script type="text/javascript">
2296
+ function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
2297
+ if (typeof load_more == "undefined") {
2298
+ var load_more = false;
2299
+ }
2300
+ if (jQuery(cur).hasClass('disabled')) {
2301
+ return false;
2302
+ }
2303
+ var items_county_<?php echo $current_view; ?> = <?php echo $items_county; ?>;
2304
+ switch (y) {
2305
+ case 1:
2306
+ if (x >= items_county_<?php echo $current_view; ?>) {
2307
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
2308
+ }
2309
+ else {
2310
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = x + 1;
2311
+ }
2312
+ break;
2313
+ case 2:
2314
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
2315
+ break;
2316
+ case -1:
2317
+ if (x == 1) {
2318
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
2319
+ }
2320
+ else {
2321
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = x - 1;
2322
+ }
2323
+ break;
2324
+ case -2:
2325
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
2326
+ break;
2327
+ default:
2328
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
2329
+ }
2330
+ spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $id; ?>', '<?php echo $album_gallery_id; ?>', '', '<?php echo $type; ?>', 0, '', '', load_more);
2331
+ }
2332
+ jQuery('.<?php echo $first_page; ?>').on('click', function() {
2333
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -2);
2334
+ });
2335
+ jQuery('.<?php echo $prev_page; ?>').on('click', function() {
2336
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -1);
2337
+ return false;
2338
+ });
2339
+ jQuery('.<?php echo $next_page; ?>').on('click', function() {
2340
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1);
2341
+ return false;
2342
+ });
2343
+ jQuery('.<?php echo $last_page; ?>').on('click', function() {
2344
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 2);
2345
+ });
2346
+ jQuery('.bwg_load_btn_<?php echo $current_view; ?>').on('click', function() {
2347
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1, true);
2348
+ return false;
2349
+ });
2350
+ </script>
2351
+ </span>
2352
+ <?php
2353
+ }
2354
+
2355
+ public static function bwg_session_start() {
2356
+ if (session_id() == '' || (function_exists('session_status') && (session_status() == PHP_SESSION_NONE))) {
2357
+ @session_start();
2358
+ }
2359
+ }
2360
  }
2361
 
2362
  /**
2380
  }
2381
  }
2382
  }
2383
+
frontend/controllers/BWGControllerAlbum_compact_preview.php CHANGED
@@ -14,6 +14,17 @@ class BWGControllerAlbum_compact_preview {
14
 
15
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_compact_preview.php";
16
  $view = new BWGViewAlbum_compact_preview($model);
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  $view->display($params, $from_shortcode, $bwg);
19
  }
14
 
15
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_compact_preview.php";
16
  $view = new BWGViewAlbum_compact_preview($model);
17
+ if( isset($params[ 'show_gallery_description' ]) && $params[ 'show_gallery_description' ] ) {
18
+ if ( isset( $_POST[ 'type_' . $bwg ] ) && isset( $_POST[ 'album_gallery_id_' . $bwg ] ) ) {
19
+ $description = WDWLibrary::get_album_gallery_title_description( $_POST[ 'type_' . $bwg ], $_POST[ 'album_gallery_id_' . $bwg ] );
20
+ $params[ 'description' ] = $description->description;
21
+ } else {
22
+ if( $params['album_id'] != 0 ) {
23
+ $description = WDWLibrary::get_album_gallery_title_description('album', $params['album_id']);
24
+ $params[ 'description' ] = $description->description;
25
+ } else $params['description'] = '';
26
+ }
27
+ }
28
 
29
  $view->display($params, $from_shortcode, $bwg);
30
  }
frontend/controllers/BWGControllerAlbum_extended_preview.php CHANGED
@@ -11,15 +11,35 @@ class BWGControllerAlbum_extended_preview {
11
  public function display($params, $from_shortcode = 0, $bwg = 0) {
12
  require_once BWG()->plugin_dir . "/frontend/models/BWGModelAlbum_extended_preview.php";
13
  $model = new BWGModelAlbum_extended_preview();
14
-
15
  if( $params['show_gallery_description'] ) {
16
- if (isset($_POST['type_' . $bwg]) && isset($_POST['album_gallery_id_' . $bwg])) {
17
- $params['description'] = $model->get_album_gallery_description($_POST['type_' . $bwg], $_POST['album_gallery_id_' . $bwg]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  } else {
19
- $params['description'] = $model->get_album_gallery_description('album', $params['album_id']);
 
 
 
 
 
 
20
  }
21
  }
22
- $params['album_title'] = $model->get_album_title($params['album_id']);
23
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_extended_preview.php";
24
  $view = new BWGViewAlbum_extended_preview($model);
25
  $view->display($params, $from_shortcode, $bwg);
11
  public function display($params, $from_shortcode = 0, $bwg = 0) {
12
  require_once BWG()->plugin_dir . "/frontend/models/BWGModelAlbum_extended_preview.php";
13
  $model = new BWGModelAlbum_extended_preview();
 
14
  if( $params['show_gallery_description'] ) {
15
+ if ( isset($_POST['type_' . $bwg]) && isset($_POST['album_gallery_id_' . $bwg]) ) {
16
+ $description = WDWLibrary::get_album_gallery_title_description($_POST['type_' . $bwg], $_POST['album_gallery_id_' . $bwg]);
17
+ $params['description'] = $description->description;
18
+ } else {
19
+ if( $params['album_id'] != 0 ) {
20
+ $description = WDWLibrary::get_album_gallery_title_description('album', $params['album_id']);
21
+ $params['description'] = $description->description;
22
+ } else {
23
+ $params['description'] = '';
24
+ }
25
+ }
26
+
27
+ }
28
+ if( $params['show_album_name'] ) {
29
+ if ( isset($_POST['type_' . $bwg]) && isset($_POST['album_gallery_id_' . $bwg]) ) {
30
+ $album_title = WDWLibrary::get_album_gallery_title_description($_POST['type_' . $bwg], $_POST['album_gallery_id_' . $bwg]);
31
+ $params['album_title'] = $album_title->name;
32
  } else {
33
+ if( $params['album_id'] != 0 ) {
34
+ $album_title = WDWLibrary::get_album_gallery_title_description('album', $params['album_id']);
35
+ $params['album_title'] = $album_title->name;
36
+ }
37
+ else {
38
+ $params['album_title'] = "";
39
+ }
40
  }
41
  }
42
+
43
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_extended_preview.php";
44
  $view = new BWGViewAlbum_extended_preview($model);
45
  $view->display($params, $from_shortcode, $bwg);
frontend/controllers/BWGControllerAlbum_masonry_preview.php CHANGED
@@ -15,6 +15,18 @@ class BWGControllerAlbum_masonry_preview {
15
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_masonry_preview.php";
16
  $view = new BWGViewAlbum_masonry_preview($model);
17
 
18
- $view->display($params, $from_shortcode, $bwg);
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
20
  }
15
  require_once BWG()->plugin_dir . "/frontend/views/BWGViewAlbum_masonry_preview.php";
16
  $view = new BWGViewAlbum_masonry_preview($model);
17
 
18
+ if( isset($params[ 'show_gallery_description' ]) && $params[ 'show_gallery_description' ] ) {
19
+ if ( isset( $_POST[ 'type_' . $bwg ] ) && isset( $_POST[ 'album_gallery_id_' . $bwg ] ) ) {
20
+ $description = WDWLibrary::get_album_gallery_title_description( $_POST[ 'type_' . $bwg ], $_POST[ 'album_gallery_id_' . $bwg ] );
21
+ $params[ 'description' ] = $description->description;
22
+ } else {
23
+ if( $params['album_id'] != 0 ) {
24
+ $description = WDWLibrary::get_album_gallery_title_description('album', $params['album_id']);
25
+ $params[ 'description' ] = $description->description;
26
+ } else $params['description'] = '';
27
+ }
28
+ }
29
+
30
+ $view->display($params, $from_shortcode, $bwg);
31
  }
32
  }
frontend/controllers/BWGControllerGalleryBox.php CHANGED
@@ -33,7 +33,7 @@ class BWGControllerGalleryBox {
33
  }
34
  if (BWG()->options->popup_enable_captcha) {
35
  $bwg_captcha_input = (isset($_POST['bwg_captcha_input']) ? esc_html(stripslashes($_POST['bwg_captcha_input'])) : '');
36
- @session_start();
37
  $bwg_captcha_code = (isset($_SESSION['bwg_captcha_code']) ? esc_html(stripslashes($_SESSION['bwg_captcha_code'])) : '');
38
  if ($bwg_captcha_input === $bwg_captcha_code) {
39
  $captcha = TRUE;
33
  }
34
  if (BWG()->options->popup_enable_captcha) {
35
  $bwg_captcha_input = (isset($_POST['bwg_captcha_input']) ? esc_html(stripslashes($_POST['bwg_captcha_input'])) : '');
36
+ WDWLibrary::bwg_session_start();
37
  $bwg_captcha_code = (isset($_SESSION['bwg_captcha_code']) ? esc_html(stripslashes($_SESSION['bwg_captcha_code'])) : '');
38
  if ($bwg_captcha_input === $bwg_captcha_code) {
39
  $captcha = TRUE;
frontend/controllers/BWGControllerThumbnails.php DELETED
@@ -1,19 +0,0 @@
1
- <?php
2
- class BWGControllerThumbnails {
3
-
4
- public function __construct() {
5
- }
6
-
7
- public function execute($params = array(), $from_shortcode = 0, $bwg = 0) {
8
- $this->display($params, $from_shortcode, $bwg);
9
- }
10
-
11
- public function display($params, $from_shortcode = 0, $bwg = 0) {
12
- require_once BWG()->plugin_dir . "/frontend/models/BWGModelThumbnails.php";
13
- $model = new BWGModelThumbnails();
14
-
15
- require_once BWG()->plugin_dir . "/frontend/views/BWGViewThumbnails.php";
16
- $view = new BWGViewThumbnails($model);
17
- $view->display($params, $from_shortcode, $bwg);
18
- }
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
frontend/controllers/controller.php ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class BWGControllerSite {
3
+
4
+ private $model;
5
+ private $view;
6
+
7
+ public function __construct($view) {
8
+ require_once BWG()->plugin_dir . "/frontend/models/model.php";
9
+ $this->model = new BWGModelSite();
10
+
11
+ require_once BWG()->plugin_dir . "/frontend/views/view.php";
12
+ require_once BWG()->plugin_dir . '/frontend/views/BWGView' . $view . '.php';
13
+ $view_class = 'BWGView' . $view;
14
+ $this->view = new $view_class();
15
+ }
16
+
17
+ public function execute($params = array(), $from_shortcode = 0, $bwg = 0) {
18
+ $theme_id = $params['theme_id'];
19
+ $theme_row = $this->model->get_theme_row_data($theme_id);
20
+ if (!$theme_row) {
21
+ echo WDWLibrary::message(__('There is no theme selected or the theme was deleted.', BWG()->prefix), 'wd_error');
22
+ return;
23
+ }
24
+ else {
25
+ if (!isset($theme_row->thumb_gal_title_font_color)) {
26
+ $theme_row->thumb_gal_title_font_color = 'CCCCCC';
27
+ }
28
+ if (!isset($theme_row->thumb_gal_title_font_style)) {
29
+ $theme_row->thumb_gal_title_font_style = 'segoe ui';
30
+ }
31
+ if (!isset($theme_row->thumb_gal_title_font_size)) {
32
+ $theme_row->thumb_gal_title_font_size = 16;
33
+ }
34
+ if (!isset($theme_row->thumb_gal_title_font_weight)) {
35
+ $theme_row->thumb_gal_title_font_weight = 'bold';
36
+ }
37
+ if (!isset($theme_row->thumb_gal_title_margin)) {
38
+ $theme_row->thumb_gal_title_margin = '2px';
39
+ }
40
+ if (!isset($theme_row->thumb_gal_title_shadow)) {
41
+ $theme_row->thumb_gal_title_shadow = '0px 0px 0px #888888';
42
+ }
43
+ if (!isset($theme_row->thumb_gal_title_align)) {
44
+ $theme_row->thumb_gal_title_align = 'center';
45
+ }
46
+ if (!isset($theme_row->container_margin)) {
47
+ $theme_row->container_margin = 1;
48
+ }
49
+ $params['theme_row'] = $theme_row;
50
+ }
51
+ if (!isset($params['type'])) {
52
+ $params['type'] = '';
53
+ }
54
+ $gallery_row = $this->model->get_gallery_row_data($params['gallery_id']);
55
+ if (!$gallery_row && ($params['type'] == '') && $params["tag"] == 0) {
56
+ echo WDWLibrary::message(__('There is no gallery selected or the gallery was deleted.', BWG()->prefix), 'wd_error');
57
+ return;
58
+ }
59
+ else {
60
+ $params['gallery_row'] = $gallery_row;
61
+ }
62
+
63
+ if ( isset($_POST['sortImagesByValue_' . $bwg]) ) {
64
+ $sort_by = esc_html($_POST['sortImagesByValue_' . $bwg]);
65
+ if ( $sort_by == 'random' ) {
66
+ $params['sort_by'] = 'RAND()';
67
+ }
68
+ else {
69
+ if ( $sort_by == 'default' ) {
70
+ $params['sort_by'] = $params['sort_by'];
71
+ }
72
+ else {
73
+ $params['sort_by'] = $sort_by;
74
+ }
75
+ }
76
+ }
77
+
78
+ $params['load_more_image_count'] = (isset($params['load_more_image_count']) && ($params['image_enable_page'] == 2)) ? $params['load_more_image_count'] : $params['images_per_page'];
79
+ $params['items_per_page'] = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
80
+ $image_rows = $this->model->get_image_rows_data($params['gallery_id'], $bwg, $params['type'], 'bwg_tag_id_bwg_standart_thumbnails_' . $bwg, $params['tag'], $params['images_per_page'], $params['load_more_image_count'], $params['sort_by'], $params['order_by']);
81
+ $images_count = count($image_rows);
82
+ if (!$images_count) {
83
+ if ($params['tag']) {
84
+ echo WDWLibrary::message(__('There are no images.', BWG()->prefix), 'wd_error');
85
+ }
86
+ else {
87
+ echo WDWLibrary::message(__('There are no images in this gallery.', BWG()->prefix), 'wd_error');
88
+ }
89
+ }
90
+ $params['image_rows'] = $image_rows;
91
+ $params['tags_rows'] = $this->model->get_tags_rows_data($params['gallery_id']);
92
+
93
+ $params['current_url'] = (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
94
+
95
+ $params_array = array(
96
+ 'action' => 'GalleryBox',
97
+ 'tags' => (isset($params['tag']) ? $params['tag'] : 0),
98
+ 'current_view' => $bwg,
99
+ 'gallery_id' => $params['gallery_id'],
100
+ 'theme_id' => $params['theme_id'],
101
+ 'thumb_width' => $params['thumb_width'],
102
+ 'thumb_height' => $params['thumb_height'],
103
+ 'open_with_fullscreen' => $params['popup_fullscreen'],
104
+ 'open_with_autoplay' => $params['popup_autoplay'],
105
+ 'image_width' => $params['popup_width'],
106
+ 'image_height' => $params['popup_height'],
107
+ 'image_effect' => $params['popup_effect'],
108
+ 'wd_sor' => ($params['sort_by'] == 'RAND()') ? 'order' : $params['sort_by'],
109
+ 'wd_ord' => $params['order_by'],
110
+ 'enable_image_filmstrip' => $params['popup_enable_filmstrip'],
111
+ 'image_filmstrip_height' => $params['popup_filmstrip_height'],
112
+ 'enable_image_ctrl_btn' => $params['popup_enable_ctrl_btn'],
113
+ 'enable_image_fullscreen' => $params['popup_enable_fullscreen'],
114
+ 'popup_enable_info' => $params['popup_enable_info'],
115
+ 'popup_info_always_show' => $params['popup_info_always_show'],
116
+ 'popup_info_full_width' => $params['popup_info_full_width'],
117
+ 'popup_hit_counter' => $params['popup_hit_counter'],
118
+ 'popup_enable_rate' => $params['popup_enable_rate'],
119
+ 'slideshow_interval' => $params['popup_interval'],
120
+ 'enable_comment_social' => $params['popup_enable_comment'],
121
+ 'enable_image_facebook' => $params['popup_enable_facebook'],
122
+ 'enable_image_twitter' => $params['popup_enable_twitter'],
123
+ 'enable_image_google' => $params['popup_enable_google'],
124
+ 'enable_image_ecommerce' => $params['popup_enable_ecommerce'],
125
+ 'enable_image_pinterest' => $params['popup_enable_pinterest'],
126
+ 'enable_image_tumblr' => $params['popup_enable_tumblr'],
127
+ 'watermark_type' => $params['watermark_type'],
128
+ 'slideshow_effect_duration' => isset($params['popup_effect_duration']) ? $params['popup_effect_duration'] : 1,
129
+ 'current_url' => urlencode($params['current_url'])
130
+ );
131
+ if ($params['watermark_type'] != 'none') {
132
+ $params_array['watermark_link'] = $params['watermark_link'];
133
+ $params_array['watermark_opacity'] = $params['watermark_opacity'];
134
+ $params_array['watermark_position'] = $params['watermark_position'];
135
+ }
136
+ if ($params['watermark_type'] == 'text') {
137
+ $params_array['watermark_text'] = $params['watermark_text'];
138
+ $params_array['watermark_font_size'] = $params['watermark_font_size'];
139
+ $params_array['watermark_font'] = $params['watermark_font'];
140
+ $params_array['watermark_color'] = $params['watermark_color'];
141
+ }
142
+ elseif ($params['watermark_type'] == 'image') {
143
+ $params_array['watermark_url'] = $params['watermark_url'];
144
+ $params_array['watermark_width'] = $params['watermark_width'];
145
+ $params_array['watermark_height'] = $params['watermark_height'];
146
+ }
147
+ $params['params_array'] = $params_array;
148
+ $this->display($params, $from_shortcode, $bwg);
149
+ }
150
+
151
+ public function display($params, $from_shortcode = 0, $bwg = 0) {
152
+ $this->view->display($params, $from_shortcode, $bwg);
153
+ }
154
+ }
frontend/models/BWGModelAlbum_extended_preview.php CHANGED
@@ -1,34 +1,3 @@
1
  <?php
2
  class BWGModelAlbum_extended_preview {
3
-
4
- /**
5
- * Get album title.
6
- *
7
- * @param string $album_id
8
- *
9
- * @return string
10
- */
11
- public function get_album_title( $album_id ) {
12
- global $wpdb;
13
- $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_album WHERE id="%d"', $album_id));
14
- if($row) {
15
- return $row->name;
16
- }
17
- }
18
-
19
- /**
20
- * Get description from gallery or album tables.
21
- *
22
- * @param string $type
23
- * @param int $id
24
- *
25
- * @return string
26
- */
27
- public function get_album_gallery_description( $type, $id ) {
28
- global $wpdb;
29
- $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_'.$type.' WHERE id="%d"', $id));
30
- if($row) {
31
- return $row->description;
32
- }
33
- }
34
  }
1
  <?php
2
  class BWGModelAlbum_extended_preview {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  }
frontend/models/BWGModelGalleryBox.php CHANGED
@@ -20,6 +20,7 @@ class BWGModelGalleryBox {
20
  if (strtolower($order_by) != 'asc') {
21
  $order_by = 'desc';
22
  }
 
23
  $bwg_random_seed = isset($_SESSION['bwg_random_seed_'. $bwg]) ? $_SESSION['bwg_random_seed_'. $bwg] : '';
24
  $filter_tags = (isset($_REQUEST['filter_tag_'. $bwg]) && $_REQUEST['filter_tag_'. $bwg]) ? explode(",", $_REQUEST['filter_tag_'. $bwg]) : array();
25
  $filter_search_name = (isset($_REQUEST['filter_search_name_'. $bwg])) ? esc_html($_REQUEST['filter_search_name_'. $bwg]) : '';
@@ -41,28 +42,27 @@ class BWGModelGalleryBox {
41
 
42
  $rows = $wpdb->get_results('SELECT image.*, rates.rate FROM ' . $wpdb->prefix . 'bwg_image as image LEFT JOIN (SELECT rate, image_id FROM ' . $wpdb->prefix . 'bwg_image_rate WHERE ip="%s") as rates ON image.id=rates.image_id ' . $join . ' WHERE image.published=1 ' . $where . ' ORDER BY ' . str_replace('RAND()', 'RAND(' . $bwg_random_seed . ')', $sort_by) . ' ' . $order_by);
43
 
44
- $images = array();
45
- if ( !empty($rows) ) {
46
- foreach ( $rows as $row ) {
47
- $row->pure_image_url = $row->image_url;
48
- $row->pure_thumb_url = $row->thumb_url;
49
- if ( strpos($row->filetype, 'EMBED') === FALSE ) {
50
- $row->image_url = $row->image_url . '?bwg=' . $row->modified_date;
51
- $row->thumb_url = $row->thumb_url . '?bwg=' . $row->modified_date;
 
 
52
  }
53
- $images[] = $row;
54
- }
55
- }
56
- return $images;
57
  }
58
 
59
  public function get_image_pricelists($pricelist_id) {
60
  $pricelist_data = array();
61
-
62
  return $pricelist_data;
63
  }
64
 
65
  public function get_image_pricelist($image_id) {
66
- return FALSE;
67
- }
68
- }
20
  if (strtolower($order_by) != 'asc') {
21
  $order_by = 'desc';
22
  }
23
+ WDWLibrary::bwg_session_start();
24
  $bwg_random_seed = isset($_SESSION['bwg_random_seed_'. $bwg]) ? $_SESSION['bwg_random_seed_'. $bwg] : '';
25
  $filter_tags = (isset($_REQUEST['filter_tag_'. $bwg]) && $_REQUEST['filter_tag_'. $bwg]) ? explode(",", $_REQUEST['filter_tag_'. $bwg]) : array();
26
  $filter_search_name = (isset($_REQUEST['filter_search_name_'. $bwg])) ? esc_html($_REQUEST['filter_search_name_'. $bwg]) : '';
42
 
43
  $rows = $wpdb->get_results('SELECT image.*, rates.rate FROM ' . $wpdb->prefix . 'bwg_image as image LEFT JOIN (SELECT rate, image_id FROM ' . $wpdb->prefix . 'bwg_image_rate WHERE ip="%s") as rates ON image.id=rates.image_id ' . $join . ' WHERE image.published=1 ' . $where . ' ORDER BY ' . str_replace('RAND()', 'RAND(' . $bwg_random_seed . ')', $sort_by) . ' ' . $order_by);
44
 
45
+ $images = array();
46
+ if ( !empty($rows) ) {
47
+ foreach ( $rows as $row ) {
48
+ $row->pure_image_url = $row->image_url;
49
+ $row->pure_thumb_url = $row->thumb_url;
50
+ if ( strpos($row->filetype, 'EMBED') === FALSE ) {
51
+ $row->image_url = WDWLibrary::image_url_version($row->image_url, $row->modified_date);
52
+ $row->thumb_url = WDWLibrary::image_url_version($row->thumb_url, $row->modified_date);
53
+ }
54
+ $images[] = $row;
55
  }
56
+ }
57
+
58
+ return $images;
 
59
  }
60
 
61
  public function get_image_pricelists($pricelist_id) {
62
  $pricelist_data = array();
 
63
  return $pricelist_data;
64
  }
65
 
66
  public function get_image_pricelist($image_id) {
67
+ return FALSE; }
68
+ }
 
frontend/models/BWGModelThumbnails.php DELETED
@@ -1,3 +0,0 @@
1
- <?php
2
- class BWGModelThumbnails {
3
- }
 
 
 
frontend/models/model.php ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class BWGModelSite {
3
+ public function get_theme_row_data($id) {
4
+ global $wpdb;
5
+ if ($id) {
6
+ $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE id="%d"', $id));
7
+ }
8
+ else {
9
+ $row = $wpdb->get_row('SELECT * FROM ' . $wpdb->prefix . 'bwg_theme WHERE default_theme=1');
10
+ }
11
+ if (isset($row->options)) {
12
+ $row = (object) array_merge((array) $row, (array) json_decode($row->options));
13
+ }
14
+ return $row;
15
+ }
16
+
17
+ public function get_gallery_row_data($id, $from = '') {
18
+ global $wpdb;
19
+ $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1 AND id="%d"', $id));
20
+ if ($row) {
21
+ $row->permalink = '';
22
+ if ($from != '') {
23
+ $row->permalink = self::get_custom_post_permalink( array( 'slug' => $row->slug, 'post_type' => 'gallery' ) );
24
+ }
25
+ if ( !empty($row->preview_image) ) {
26
+ $row->preview_image = WDWLibrary::image_url_version($row->preview_image, $row->modified_date);
27
+ }
28
+ if ( !empty($row->random_preview_image) ) {
29
+ $row->random_preview_image = WDWLibrary::image_url_version($row->random_preview_image, $row->modified_date);
30
+ }
31
+ }
32
+ else if ( $id == 0 ) {
33
+ $row_count = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_gallery WHERE published=1');
34
+ if (!$row_count) {
35
+ return false;
36
+ }
37
+ else {
38
+ $row = new stdClass();
39
+ $row->id = 0;
40
+ $row->name = '';
41
+ }
42
+ }
43
+ return $row;
44
+ }
45
+
46
+ public function get_image_rows_data( $gallery_id, $bwg, $type, $tag_input_name, $tag, $images_per_page, $load_more_image_count, $sort_by, $sort_direction = 'ASC' ) {
47
+ $gallery_id = (int) $gallery_id;
48
+ $tag = (int) $tag;
49
+ global $wpdb;
50
+ $bwg_search = ((isset($_POST['bwg_search_' . $bwg]) && esc_html($_POST['bwg_search_' . $bwg]) != '') ? esc_html($_POST['bwg_search_' . $bwg]) : '');
51
+ $join = '';
52
+ $where = '';
53
+ if ( $bwg_search ) {
54
+ $where = 'AND (image.alt LIKE "%%' . $bwg_search . '%%" OR image.description LIKE "%%' . $bwg_search . '%%")';
55
+ }
56
+ if ( $sort_by == 'size' || $sort_by == 'resolution' ) {
57
+ $sort_by = ' CAST(image.' . $sort_by . ' AS SIGNED) ';
58
+ }
59
+ elseif ( $sort_by == 'random' || $sort_by == 'RAND()' ) {
60
+ $sort_by = 'RAND()';
61
+ }
62
+ elseif ( ($sort_by != 'alt') && ($sort_by != 'date') && ($sort_by != 'filetype') && ($sort_by != 'RAND()') && ($sort_by != 'filename') ) {
63
+ $sort_by = 'image.`order`';
64
+ }
65
+ else {
66
+ $sort_by = 'image.' . $sort_by;
67
+ }
68
+ $items_in_page = $images_per_page;
69
+ $limit = 0;
70
+ WDWLibrary::bwg_session_start();
71
+ if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
72
+ if ( $_REQUEST['page_number_' . $bwg] > 1 ) {
73
+ $items_in_page = $load_more_image_count;
74
+ }
75
+ $limit = (((int) $_REQUEST['page_number_' . $bwg] - 2) * $items_in_page) + $images_per_page;
76
+ $bwg_random_seed = isset($_SESSION['bwg_random_seed_' . $bwg]) ? $_SESSION['bwg_random_seed_' . $bwg] : '';
77
+ }
78
+ else {
79
+ $bwg_random_seed = rand();
80
+ $_SESSION['bwg_random_seed_' . $bwg] = $bwg_random_seed;
81
+ }
82
+ $limit_str = '';
83
+ if ( $images_per_page ) {
84
+ $limit_str = 'LIMIT ' . $limit . ',' . $items_in_page;
85
+ }
86
+ $where .= ($gallery_id ? ' AND image.gallery_id = "' . $gallery_id . '" ' : '') . ($tag ? ' AND tag.tag_id = "' . $tag . '" ' : '');
87
+ $join = $tag ? 'LEFT JOIN ' . $wpdb->prefix . 'bwg_image_tag as tag ON image.id=tag.image_id' : '';
88
+ if ( isset($_REQUEST[$tag_input_name]) && $_REQUEST[$tag_input_name] ) {
89
+ $join .= ' LEFT JOIN (SELECT GROUP_CONCAT(tag_id SEPARATOR ",") AS tags_combined, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag' . ($gallery_id ? ' WHERE gallery_id="' . $gallery_id . '"' : '') . ' GROUP BY image_id) AS tags ON image.id=tags.image_id';
90
+ $where .= ' AND CONCAT(",", tags.tags_combined, ",") REGEXP ",(' . implode("|", $_REQUEST[$tag_input_name]) . ')," ';
91
+ }
92
+ $join .= ' LEFT JOIN '. $wpdb->prefix .'bwg_gallery as gallery ON gallery.id = image.gallery_id';
93
+ $where .= ' AND gallery.published = 1 ';
94
+
95
+ $rows = $wpdb->get_results('SELECT image.* FROM ' . $wpdb->prefix . 'bwg_image as image ' . $join . ' WHERE image.published=1 ' . $where . ' ORDER BY ' . str_replace('RAND()', 'RAND(' . $bwg_random_seed . ')', $sort_by) . ' ' . $sort_direction . ' ' . $limit_str);
96
+ $total = $wpdb->get_var('SELECT COUNT(*) FROM ' . $wpdb->prefix . 'bwg_image as image ' . $join . ' WHERE image.published=1 ' . $where);
97
+ $page_nav['total'] = $total;
98
+ $page_nav['limit'] = 1;
99
+ if ( isset($_REQUEST['page_number_' . $bwg]) && $_REQUEST['page_number_' . $bwg] ) {
100
+ $page_nav['limit'] = (int) $_REQUEST['page_number_' . $bwg];
101
+ }
102
+ $images = array();
103
+ if ( !empty($rows) ) {
104
+ foreach ( $rows as $row ) {
105
+ if ( strpos($row->filetype, 'EMBED') === FALSE ) {
106
+ $row->image_url = WDWLibrary::image_url_version($row->image_url, $row->modified_date);
107
+ $row->thumb_url = WDWLibrary::image_url_version($row->thumb_url, $row->modified_date);
108
+ }
109
+ $images[] = $row;
110
+ }
111
+ }
112
+ return array( 'images' => $images, 'page_nav' => $page_nav );
113
+ }
114
+
115
+ public function get_tags_rows_data($gallery_id) {
116
+ global $wpdb;
117
+ $row = $wpdb->get_results('Select t1.* FROM ' . $wpdb->prefix . 'terms AS t1 LEFT JOIN ' . $wpdb->prefix . 'term_taxonomy AS t2 ON t1.term_id = t2.term_id' . ($gallery_id ? ' LEFT JOIN (SELECT DISTINCT tag_id , gallery_id FROM ' . $wpdb->prefix . 'bwg_image_tag) AS t3 ON t1.term_id=t3.tag_id' : '') . ' WHERE taxonomy="bwg_tag"' . ($gallery_id ? ' AND t3.gallery_id="' . $gallery_id . '"' : '') . ' ORDER BY t1.name ASC');
118
+ return $row;
119
+ }
120
+ }
frontend/views/BWGViewAlbum_compact_preview.php CHANGED
@@ -83,7 +83,8 @@ class BWGViewAlbum_compact_preview {
83
  $items_per_page_arr = array('images_per_page' => $params['compuct_albums_per_page'], 'load_more_image_count' => $params['compuct_albums_per_page']);
84
  $items_col_num = $params['compuct_album_column_number'];
85
  $sort_by = $params['sort_by'];
86
- $album_galleries_row = WDWLibrary::get_alb_gals_row($album_gallery_id, $items_per_page, $sort_by, $bwg, $order_by);
 
87
  $page_nav = $album_galleries_row['page_nav'];
88
  $album_galleries_row = $album_galleries_row['rows'];
89
  if (!$album_galleries_row) {
@@ -231,7 +232,7 @@ class BWGViewAlbum_compact_preview {
231
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display: none;">
232
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color: #FFFFFF; opacity: 0.7; filter: Alpha(opacity=70);">
233
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
234
- <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.gif'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
235
  </div>
236
  </div>
237
  </div>
@@ -251,12 +252,19 @@ class BWGViewAlbum_compact_preview {
251
  <div class="bwg_gal_title_<?php echo $bwg; ?>" ><?php echo isset($_POST['title_' . $bwg]) ? esc_html($_POST['title_' . $bwg]) : ''; ?></div>
252
  <?php
253
  }
254
- else {
255
  ?>
256
- <div class="bwg_back_<?php echo $bwg; ?>"><?php echo $album_gallery_id ? $album_row->name:__('All Galleries', BWG()->prefix); ?></div>
257
  <?php
258
  }
259
  }
 
 
 
 
 
 
 
260
  ?>
261
  <div id="<?php echo $album_gallery_div_id; ?>" class="<?php echo $album_gallery_div_class; ?>">
262
  <input type="hidden" id="bwg_previous_album_id_<?php echo $bwg; ?>" name="bwg_previous_album_id_<?php echo $bwg; ?>" value="<?php echo $bwg_previous_album_id; ?>" />
@@ -580,7 +588,7 @@ class BWGViewAlbum_compact_preview {
580
  ?>
581
  function bwg_document_ready_<?php echo $bwg; ?>() {
582
  var bwg_touch_flag = false;
583
- jQuery(".bwg_lightbox_<?php echo $bwg; ?>").on("click", function () {
584
  if (!bwg_touch_flag) {
585
  bwg_touch_flag = true;
586
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
@@ -600,7 +608,7 @@ class BWGViewAlbum_compact_preview {
600
  }
601
  });
602
  <?php if ($from !== "widget") { ?>
603
- jQuery(".bwg_album_<?php echo $bwg; ?>").on("click", function () {
604
  if (!bwg_touch_flag) {
605
  bwg_touch_flag = true;
606
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
@@ -623,8 +631,10 @@ class BWGViewAlbum_compact_preview {
623
  jQuery(document).ready(function () {
624
  bwg_document_ready_<?php echo $bwg; ?>();
625
  });
626
- function bwg_mosaic_ajax_<?php echo $bwg; ?>(tot_cccount_mosaic_ajax) {}
627
- function bwg_masonry_ajax_<?php echo $bwg; ?>(tot_cccount_masonry_ajax) {}
 
 
628
  </script>
629
  <?php
630
  if ($from_shortcode) {
@@ -642,7 +652,7 @@ class BWGViewAlbum_compact_preview {
642
  $rgb_thumbs_bg_color = WDWLibrary::spider_hex2rgb($theme_row->thumbs_bg_color);
643
 
644
  ?>
645
- /* Style for masonry view.*/
646
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_masonry_thumbnails_<?php echo $bwg; ?> * {
647
  -moz-box-sizing: border-box;
648
  -webkit-box-sizing: border-box;
@@ -909,8 +919,7 @@ class BWGViewAlbum_compact_preview {
909
  transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
910
  }
911
  }
912
-
913
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
914
  border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
915
  border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
916
  box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
@@ -932,17 +941,6 @@ class BWGViewAlbum_compact_preview {
932
  display: inline-block;
933
  text-align: center;
934
  }
935
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_gal_title_<?php echo $bwg; ?> {
936
- background-color: rgba(0, 0, 0, 0);
937
- color: #<?php echo $theme_row->album_compact_gal_title_font_color; ?>;
938
- display: block;
939
- font-family: <?php echo $theme_row->album_compact_gal_title_font_style; ?>;
940
- font-size: <?php echo $theme_row->album_compact_gal_title_font_size; ?>px;
941
- font-weight: <?php echo $theme_row->album_compact_gal_title_font_weight; ?>;
942
- padding: <?php echo $theme_row->album_compact_gal_title_margin; ?>;
943
- text-shadow: <?php echo $theme_row->album_compact_gal_title_shadow; ?>;
944
- text-align: <?php echo $theme_row->album_compact_gal_title_align; ?>;
945
- }
946
  <?php
947
  if(function_exists('BWGEC')){
948
  if( $params['ecommerce_icon'] == 'show' ){
@@ -1015,6 +1013,8 @@ class BWGViewAlbum_compact_preview {
1015
  top: <?php echo $theme_row->thumb_padding; ?>px;
1016
  opacity: 1;
1017
  filter: Alpha(opacity=100);
 
 
1018
  }
1019
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_image_title_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?>{
1020
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
@@ -1142,8 +1142,7 @@ class BWGViewAlbum_compact_preview {
1142
  -webkit-transform: <?php echo $theme_row->masonry_thumb_hover_effect; ?>(<?php echo $theme_row->masonry_thumb_hover_effect_value; ?>);
1143
  }
1144
  }
1145
-
1146
- <?php
1147
  /*for mosaic view of images*/
1148
  else :
1149
  ?>
@@ -1179,8 +1178,7 @@ class BWGViewAlbum_compact_preview {
1179
  -webkit-transform: <?php echo $theme_row->mosaic_thumb_hover_effect; ?>(<?php echo $theme_row->mosaic_thumb_hover_effect_value; ?>);
1180
  }
1181
  }
1182
-
1183
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_mosaic_thumbnails_<?php echo $bwg; ?> {
1184
  background-color: rgba(<?php echo $rgb_thumbs_bg_color['red']; ?>, <?php echo $rgb_thumbs_bg_color['green']; ?>, <?php echo $rgb_thumbs_bg_color['blue']; ?>, <?php echo number_format($theme_row->mosaic_thumb_bg_transparent / 100, 2, ".", ""); ?>);
1185
  font-size: 0;
1186
  position: relative;
@@ -1245,7 +1243,11 @@ class BWGViewAlbum_compact_preview {
1245
  height: 30px;
1246
  line-height: 30px;
1247
  }
1248
-
 
 
 
 
1249
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
1250
  font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
1251
  font-family: <?php echo $theme_row->page_nav_font_style; ?>;
@@ -1334,6 +1336,17 @@ class BWGViewAlbum_compact_preview {
1334
  margin: 0px auto !important;
1335
  }
1336
  }
 
 
 
 
 
 
 
 
 
 
 
1337
  <?php
1338
  return ob_get_clean();
1339
  }
83
  $items_per_page_arr = array('images_per_page' => $params['compuct_albums_per_page'], 'load_more_image_count' => $params['compuct_albums_per_page']);
84
  $items_col_num = $params['compuct_album_column_number'];
85
  $sort_by = $params['sort_by'];
86
+ $pagination_type = $params['compuct_album_enable_page'];
87
+ $album_galleries_row = WDWLibrary::get_alb_gals_row( $bwg, $album_gallery_id, $items_per_page, $sort_by, $pagination_type);
88
  $page_nav = $album_galleries_row['page_nav'];
89
  $album_galleries_row = $album_galleries_row['rows'];
90
  if (!$album_galleries_row) {
232
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display: none;">
233
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color: #FFFFFF; opacity: 0.7; filter: Alpha(opacity=70);">
234
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
235
+ <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.png'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
236
  </div>
237
  </div>
238
  </div>
252
  <div class="bwg_gal_title_<?php echo $bwg; ?>" ><?php echo isset($_POST['title_' . $bwg]) ? esc_html($_POST['title_' . $bwg]) : ''; ?></div>
253
  <?php
254
  }
255
+ elseif ( $params['album_id'] != 0 ) {
256
  ?>
257
+ <div class="bwg_gal_title_<?php echo $bwg; ?>"><?php echo $album_row->name; ?></div>
258
  <?php
259
  }
260
  }
261
+ if (isset($params['show_gallery_description']) && $params['show_gallery_description'] && $params['description'] != '') {
262
+ ?>
263
+ <span class="bwg_gal_title_<?php echo $bwg; ?>">
264
+ <?php echo $params['description']; ?>
265
+ </span>
266
+ <?php
267
+ }
268
  ?>
269
  <div id="<?php echo $album_gallery_div_id; ?>" class="<?php echo $album_gallery_div_class; ?>">
270
  <input type="hidden" id="bwg_previous_album_id_<?php echo $bwg; ?>" name="bwg_previous_album_id_<?php echo $bwg; ?>" value="<?php echo $bwg_previous_album_id; ?>" />
588
  ?>
589
  function bwg_document_ready_<?php echo $bwg; ?>() {
590
  var bwg_touch_flag = false;
591
+ jQuery("#bwg_container2_<?php echo $bwg; ?>").on("click", ".bwg_lightbox_<?php echo $bwg; ?>", function () {
592
  if (!bwg_touch_flag) {
593
  bwg_touch_flag = true;
594
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
608
  }
609
  });
610
  <?php if ($from !== "widget") { ?>
611
+ jQuery("#bwg_container2_<?php echo $bwg; ?>").on("click", ".bwg_album_<?php echo $bwg; ?>", function () {
612
  if (!bwg_touch_flag) {
613
  bwg_touch_flag = true;
614
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
631
  jQuery(document).ready(function () {
632
  bwg_document_ready_<?php echo $bwg; ?>();
633
  });
634
+ function bwg_mosaic_ajax_<?php echo $bwg; ?>(tot_cccount_mosaic_ajax) {
635
+ }
636
+ function bwg_masonry_ajax_<?php echo $bwg; ?>(tot_cccount_masonry_ajax) {
637
+ }
638
  </script>
639
  <?php
640
  if ($from_shortcode) {
652
  $rgb_thumbs_bg_color = WDWLibrary::spider_hex2rgb($theme_row->thumbs_bg_color);
653
 
654
  ?>
655
+ /* Style for masonry view. */
656
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_masonry_thumbnails_<?php echo $bwg; ?> * {
657
  -moz-box-sizing: border-box;
658
  -webkit-box-sizing: border-box;
919
  transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
920
  }
921
  }
922
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
 
923
  border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
924
  border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
925
  box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
941
  display: inline-block;
942
  text-align: center;
943
  }
 
 
 
 
 
 
 
 
 
 
 
944
  <?php
945
  if(function_exists('BWGEC')){
946
  if( $params['ecommerce_icon'] == 'show' ){
1013
  top: <?php echo $theme_row->thumb_padding; ?>px;
1014
  opacity: 1;
1015
  filter: Alpha(opacity=100);
1016
+ overflow : hidden;
1017
+ display : inherit;
1018
  }
1019
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_image_title_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?>{
1020
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
1142
  -webkit-transform: <?php echo $theme_row->masonry_thumb_hover_effect; ?>(<?php echo $theme_row->masonry_thumb_hover_effect_value; ?>);
1143
  }
1144
  }
1145
+ <?php
 
1146
  /*for mosaic view of images*/
1147
  else :
1148
  ?>
1178
  -webkit-transform: <?php echo $theme_row->mosaic_thumb_hover_effect; ?>(<?php echo $theme_row->mosaic_thumb_hover_effect_value; ?>);
1179
  }
1180
  }
1181
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_mosaic_thumbnails_<?php echo $bwg; ?> {
 
1182
  background-color: rgba(<?php echo $rgb_thumbs_bg_color['red']; ?>, <?php echo $rgb_thumbs_bg_color['green']; ?>, <?php echo $rgb_thumbs_bg_color['blue']; ?>, <?php echo number_format($theme_row->mosaic_thumb_bg_transparent / 100, 2, ".", ""); ?>);
1183
  font-size: 0;
1184
  position: relative;
1243
  height: 30px;
1244
  line-height: 30px;
1245
  }
1246
+ @media only screen and (max-width : 320px) {
1247
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
1248
+ display: none;
1249
+ }
1250
+ }
1251
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
1252
  font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
1253
  font-family: <?php echo $theme_row->page_nav_font_style; ?>;
1336
  margin: 0px auto !important;
1337
  }
1338
  }
1339
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_gal_title_<?php echo $bwg; ?> {
1340
+ background-color: rgba(0, 0, 0, 0);
1341
+ color: #<?php echo $theme_row->album_compact_gal_title_font_color; ?>;
1342
+ display: block;
1343
+ font-family: <?php echo $theme_row->album_compact_gal_title_font_style; ?>;
1344
+ font-size: <?php echo $theme_row->album_compact_gal_title_font_size; ?>px;
1345
+ font-weight: <?php echo $theme_row->album_compact_gal_title_font_weight; ?>;
1346
+ padding: <?php echo $theme_row->album_compact_gal_title_margin; ?>;
1347
+ text-shadow: <?php echo $theme_row->album_compact_gal_title_shadow; ?>;
1348
+ text-align: <?php echo $theme_row->album_compact_gal_title_align; ?>;
1349
+ }
1350
  <?php
1351
  return ob_get_clean();
1352
  }
frontend/views/BWGViewAlbum_extended_preview.php CHANGED
@@ -74,7 +74,8 @@ class BWGViewAlbum_extended_preview {
74
  $items_per_page = $params['extended_albums_per_page'];
75
  $items_per_page_arr = array('images_per_page' => $params['extended_albums_per_page'], 'load_more_image_count' => $params['extended_albums_per_page']);
76
  $items_col_num = 1;
77
- $album_galleries_row = WDWLibrary::get_alb_gals_row($album_gallery_id, $items_per_page, 'order', $bwg, 'ASC');
 
78
  $page_nav = $album_galleries_row['page_nav'];
79
  $album_galleries_row = $album_galleries_row['rows'];
80
  if (!$album_galleries_row) {
@@ -222,7 +223,7 @@ class BWGViewAlbum_extended_preview {
222
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display: none;">
223
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color:#FFFFFF; opacity:0.7; filter:Alpha(opacity=70);">
224
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
225
- <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.gif'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
226
  </div>
227
  </div>
228
  </div>
@@ -238,12 +239,12 @@ class BWGViewAlbum_extended_preview {
238
  }
239
  if ($params['show_album_name']) {
240
  ?>
241
- <div class="bwg_gal_title_<?php echo $bwg; ?>" ><?php echo isset($_POST['title_' . $bwg]) ? esc_html($_POST['title_' . $bwg]) : $params['album_title']; ?></div>
242
  <?php
243
  }
244
- if ($params['show_gallery_description']) {
245
  ?>
246
- <span class="bwg_description_spun1_<?php echo $bwg; ?>">
247
  <span class="bwg_description_short_<?php echo $bwg; ?>">
248
  <?php echo $params['description']; ?>
249
  </span>
@@ -583,7 +584,7 @@ class BWGViewAlbum_extended_preview {
583
  ?>
584
  function bwg_document_ready_<?php echo $bwg; ?>() {
585
  var bwg_touch_flag = false;
586
- jQuery(".bwg_lightbox_<?php echo $bwg; ?>").on("click", function () {
587
  if (!bwg_touch_flag) {
588
  bwg_touch_flag = true;
589
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
@@ -602,7 +603,7 @@ class BWGViewAlbum_extended_preview {
602
  return false;
603
  }
604
  });
605
- jQuery(".bwg_album_<?php echo $bwg; ?>").on("click", function () {
606
  if (!bwg_touch_flag) {
607
  bwg_touch_flag = true;
608
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
@@ -797,6 +798,19 @@ class BWGViewAlbum_extended_preview {
797
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_description_short_<?php echo $bwg; ?> {
798
  display: inline;
799
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
800
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_description_full_<?php echo $bwg; ?> {
801
  display: none;
802
  }
@@ -1053,6 +1067,9 @@ class BWGViewAlbum_extended_preview {
1053
  top: <?php echo $theme_row->thumb_padding; ?>px;
1054
  opacity: 1;
1055
  filter: Alpha(opacity=100);
 
 
 
1056
  }
1057
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_image_title_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?>{
1058
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
@@ -1329,6 +1346,11 @@ class BWGViewAlbum_extended_preview {
1329
  box-shadow: <?php echo $theme_row->page_nav_box_shadow; ?>;
1330
  <?php echo ($theme_row->page_nav_button_transition ) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
1331
  }
 
 
 
 
 
1332
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_back_<?php echo $bwg; ?> {
1333
  background-color: rgba(0, 0, 0, 0);
1334
  color: #<?php echo $theme_row->album_compact_back_font_color; ?> !important;
@@ -1375,4 +1397,4 @@ class BWGViewAlbum_extended_preview {
1375
  <?php
1376
  return ob_get_clean();
1377
  }
1378
- }
74
  $items_per_page = $params['extended_albums_per_page'];
75
  $items_per_page_arr = array('images_per_page' => $params['extended_albums_per_page'], 'load_more_image_count' => $params['extended_albums_per_page']);
76
  $items_col_num = 1;
77
+ $pagination_type = $params['extended_album_enable_page'];
78
+ $album_galleries_row = WDWLibrary::get_alb_gals_row( $bwg, $album_gallery_id, $items_per_page, 'order', $pagination_type);
79
  $page_nav = $album_galleries_row['page_nav'];
80
  $album_galleries_row = $album_galleries_row['rows'];
81
  if (!$album_galleries_row) {
223
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display: none;">
224
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color:#FFFFFF; opacity:0.7; filter:Alpha(opacity=70);">
225
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
226
+ <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.png'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
227
  </div>
228
  </div>
229
  </div>
239
  }
240
  if ($params['show_album_name']) {
241
  ?>
242
+ <div class="bwg_gal_title_<?php echo $bwg; ?>" ><?php echo $params['album_title']; ?></div>
243
  <?php
244
  }
245
+ if ($params['show_gallery_description'] && $params['description'] != '') {
246
  ?>
247
+ <span class="bwg_description_spun1_<?php echo $bwg; ?> bwg_gal_description">
248
  <span class="bwg_description_short_<?php echo $bwg; ?>">
249
  <?php echo $params['description']; ?>
250
  </span>
584
  ?>
585
  function bwg_document_ready_<?php echo $bwg; ?>() {
586
  var bwg_touch_flag = false;
587
+ jQuery("#bwg_container2_<?php echo $bwg; ?>").on("click", ".bwg_lightbox_<?php echo $bwg; ?>", function () {
588
  if (!bwg_touch_flag) {
589
  bwg_touch_flag = true;
590
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
603
  return false;
604
  }
605
  });
606
+ jQuery("#bwg_container2_<?php echo $bwg; ?>").on("click", ".bwg_album_<?php echo $bwg; ?>", function () {
607
  if (!bwg_touch_flag) {
608
  bwg_touch_flag = true;
609
  setTimeout(function(){ bwg_touch_flag = false; }, 100);
798
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_description_short_<?php echo $bwg; ?> {
799
  display: inline;
800
  }
801
+
802
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_gal_description {
803
+ background-color: rgba(0, 0, 0, 0);
804
+ color: #<?php echo $theme_row->album_extended_gal_title_font_color; ?>;
805
+ display: block;
806
+ font-family: <?php echo $theme_row->album_extended_gal_title_font_style; ?>;
807
+ font-size: <?php echo $theme_row->album_extended_gal_title_font_size; ?>px;
808
+ font-weight: <?php echo $theme_row->album_extended_gal_title_font_weight; ?>;
809
+ padding: <?php echo $theme_row->album_extended_gal_title_margin; ?>;
810
+ text-shadow: <?php echo $theme_row->album_extended_gal_title_shadow; ?>;
811
+ text-align: <?php echo $theme_row->album_extended_gal_title_align; ?>;
812
+ }
813
+
814
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_description_full_<?php echo $bwg; ?> {
815
  display: none;
816
  }
1067
  top: <?php echo $theme_row->thumb_padding; ?>px;
1068
  opacity: 1;
1069
  filter: Alpha(opacity=100);
1070
+ overflow:hidden;
1071
+ display:inherit;
1072
+ padding: 0 5px;
1073
  }
1074
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_image_title_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?>{
1075
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
1346
  box-shadow: <?php echo $theme_row->page_nav_box_shadow; ?>;
1347
  <?php echo ($theme_row->page_nav_button_transition ) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
1348
  }
1349
+ @media only screen and (max-width : 320px) {
1350
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
1351
+ display: none;
1352
+ }
1353
+ }
1354
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_back_<?php echo $bwg; ?> {
1355
  background-color: rgba(0, 0, 0, 0);
1356
  color: #<?php echo $theme_row->album_compact_back_font_color; ?> !important;
1397
  <?php
1398
  return ob_get_clean();
1399
  }
1400
+ }
frontend/views/BWGViewGalleryBox.php CHANGED
@@ -47,15 +47,15 @@ class BWGViewGalleryBox {
47
 
48
  $watermark_type = (isset($_GET['watermark_type']) ? esc_html($_GET['watermark_type']) : 'none');
49
  $watermark_text = (isset($_GET['watermark_text']) ? esc_html($_GET['watermark_text']) : '');
50
- $watermark_font_size = (isset($_GET['watermark_font_size']) ? esc_html($_GET['watermark_font_size']) : 12);
51
  $watermark_font = (isset($_GET['watermark_font']) ? WDWLibrary::get_fonts(esc_html($_GET['watermark_font'])) : 'Arial');
52
  $watermark_color = (isset($_GET['watermark_color']) ? esc_html($_GET['watermark_color']) : 'FFFFFF');
53
- $watermark_opacity = (isset($_GET['watermark_opacity']) ? esc_html($_GET['watermark_opacity']) : 30);
54
  $watermark_position = explode('-', (isset($_GET['watermark_position']) ? esc_html($_GET['watermark_position']) : 'bottom-right'));
55
  $watermark_link = (isset($_GET['watermark_link']) ? esc_html($_GET['watermark_link']) : '');
56
  $watermark_url = (isset($_GET['watermark_url']) ? esc_html($_GET['watermark_url']) : '');
57
- $watermark_width = (isset($_GET['watermark_width']) ? esc_html($_GET['watermark_width']) : 90);
58
- $watermark_height = (isset($_GET['watermark_height']) ? esc_html($_GET['watermark_height']) : 90);
59
 
60
  $image_right_click = isset(BWG()->options->image_right_click) ? BWG()->options->image_right_click : 0;
61
  $comment_moderation = isset(BWG()->options->comment_moderation) ? BWG()->options->comment_moderation : 0;
@@ -467,13 +467,6 @@ class BWGViewGalleryBox {
467
  border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?> <?php echo $theme_row->lightbox_comment_button_border_radius; ?> 0 0;
468
  position:relative;
469
  }
470
- .pge_tabs li:hover , .pge_tabs li.pge_active {
471
- border-top: 1px solid #<?php echo $theme_row->lightbox_comment_font_color; ?>!important;
472
- border-left: 1px solid #<?php echo $theme_row->lightbox_comment_font_color; ?>!important;
473
- border-right: 1px solid #<?php echo $theme_row->lightbox_comment_font_color; ?>!important;
474
- border-bottom:none!important;
475
- bottom:-1px;
476
- }
477
 
478
  .pge_tabs li a, .pge_tabs li a:hover, .pge_tabs li.pge_active a{
479
  text-decoration:none;
@@ -486,14 +479,17 @@ class BWGViewGalleryBox {
486
  }
487
  .pge_tabs li a{
488
  color:#<?php echo $theme_row->lightbox_comment_bg_color; ?>!important;
489
- background:#808080!important;
 
 
490
  border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?>;
 
491
  }
492
- .pge_tabs li:hover a , .pge_tabs li.pge_active a{
493
- color:#<?php echo $theme_row->lightbox_comment_font_color; ?>!important;
494
- background:#<?php echo $theme_row->lightbox_bg_color; ?>!important;
495
- border-radius:0!important;
496
- }
497
  .pge_tabs_container{
498
  border:1px solid #<?php echo $theme_row->lightbox_comment_font_color; ?>;
499
  border-radius: 0 0 <?php echo $theme_row->lightbox_comment_button_border_radius; ?> <?php echo $theme_row->lightbox_comment_button_border_radius; ?>;
@@ -517,6 +513,7 @@ class BWGViewGalleryBox {
517
  }
518
  .pge_add_to_cart_title{
519
  font-size:17px;
 
520
  }
521
  .pge_add_to_cart div:first-child{
522
  float:left;
@@ -887,6 +884,7 @@ class BWGViewGalleryBox {
887
  <?php } ?>
888
  padding: <?php echo $theme_row->lightbox_info_padding; ?>;
889
  <?php echo ((!$enable_image_filmstrip || $theme_row->lightbox_filmstrip_pos != 'top') && $theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') ? 'top: ' . ($theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;' : '' ?>
 
890
  }
891
  .bwg_image_info::-webkit-scrollbar {
892
  width: 4px;
@@ -911,6 +909,7 @@ class BWGViewGalleryBox {
911
  font-family: <?php echo $theme_row->lightbox_description_font_style; ?>;
912
  font-size: <?php echo $theme_row->lightbox_description_font_size; ?>px;
913
  font-weight: <?php echo $theme_row->lightbox_description_font_weight; ?>;
 
914
  }
915
  .bwg_image_rate_spun {
916
  text-align: <?php echo $theme_row->lightbox_rate_align; ?>;
@@ -1102,7 +1101,7 @@ class BWGViewGalleryBox {
1102
  $thumb_top = ($image_filmstrip_height - $image_thumb_height) / 2;
1103
  ?>
1104
  <div id="bwg_filmstrip_thumbnail_<?php echo $key; ?>" class="bwg_filmstrip_thumbnail <?php echo (($image_row->id == $current_image_id) ? 'bwg_thumb_active' : 'bwg_thumb_deactive'); ?>">
1105
- <img style="width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" class="bwg_filmstrip_thumbnail_img" src="<?php echo ($is_embed ? "" : site_url() . '/' . BWG()->upload_dir) . $image_row->thumb_url; ?>" onclick="bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), '<?php echo $key; ?>', data)" ontouchend="bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), '<?php echo $key; ?>', data)" image_id="<?php echo $image_row->id; ?>" image_key="<?php echo $key; ?>" alt="<?php echo $image_row->alt; ?>" />
1106
  </div>
1107
  <?php
1108
  }
@@ -1224,19 +1223,12 @@ class BWGViewGalleryBox {
1224
  $download_href = site_url() . '/' . BWG()->upload_dir . str_replace('/thumb/', '/.original/', $current_thumb_url);
1225
  $style = 'inline-block';
1226
  }
1227
- elseif (preg_match('/FLICKR/', $current_filetype) == 1) {
1228
- $download_href = $current_filename;
1229
- $style = 'inline-block';
1230
- }
1231
- elseif (preg_match('/INSTAGRAM/', $current_filetype) == 1) {
1232
- $download_href = substr_replace($current_thumb_url, 'l', -1);
1233
- $style = 'inline-block';
1234
- }
1235
- ?>
1236
- <a id="bwg_download" href="<?php echo $download_href; ?>" target="_blank" download="<?php echo end($current_image_arr); ?>" style="display: <?php echo $style; ?>;">
1237
- <i title="<?php echo __('Download original image', BWG()->prefix); ?>" class="bwg_ctrl_btn fa fa-download"></i>
1238
- </a>
1239
- <?php
1240
  }
1241
  if(function_exists('BWGEC') && $enable_image_ecommerce == 1 ){
1242
 
@@ -1293,6 +1285,7 @@ class BWGViewGalleryBox {
1293
  score: function() {
1294
  return jQuery(this).attr("data-score");
1295
  },
 
1296
  number : <?php echo $theme_row->lightbox_rate_stars_count; ?>,
1297
  size : <?php echo $theme_row->lightbox_rate_size; ?>,
1298
  readOnly : function() {
@@ -1411,6 +1404,40 @@ class BWGViewGalleryBox {
1411
  <a class="spider_popup_close" onclick="spider_destroypopup(1000); return false;" ontouchend="spider_destroypopup(1000); return false;"><span><i class="bwg_close_btn fa fa-times"></i></span></a>
1412
  <script language="javascript" type="text/javascript" src="<?php echo BWG()->plugin_url . '/js/bwg_embed.js?ver=' . BWG()->plugin_version; ?>"></script>
1413
  <script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1414
  <?php
1415
  if (BWG()->is_pro && BWG()->options->enable_addthis && BWG()->options->addthis_profile_id) {
1416
  ?>
@@ -1420,6 +1447,7 @@ class BWGViewGalleryBox {
1420
  <?php
1421
  }
1422
  ?>
 
1423
  var bwg_image_info_pos = (jQuery(".bwg_ctrl_btn_container").length) ? jQuery(".bwg_ctrl_btn_container").height() : 0;
1424
  setTimeout(function(){
1425
  if(jQuery(".bwg_image_info_container1").height() < (jQuery(".bwg_image_info").height() + jQuery(".bwg_toggle_container").height() + bwg_image_info_pos + 2*(parseInt("<?php echo $theme_row->lightbox_info_margin; ?>")))) {
@@ -1430,7 +1458,7 @@ class BWGViewGalleryBox {
1430
  }
1431
  }, 100);
1432
  var bwg_trans_in_progress = false;
1433
- var bwg_transition_duration = <?php echo (($slideshow_interval < 4) && ($slideshow_interval != 0)) ? ($slideshow_interval * 1000) / 4 : ($slideshow_effect_duration * 1000); ?>;
1434
  var bwg_playInterval;
1435
  if ((jQuery("#spider_popup_wrap").width() >= jQuery(window).width()) || (jQuery("#spider_popup_wrap").height() >= jQuery(window).height())) {
1436
  jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
@@ -1438,677 +1466,9 @@ class BWGViewGalleryBox {
1438
  /* Stop autoplay.*/
1439
  window.clearInterval(bwg_playInterval);
1440
  /* Set watermark container size.*/
1441
- function bwg_change_watermark_container() {
1442
- jQuery(".bwg_slider").children().each(function() {
1443
- if (jQuery(this).css("zIndex") == 2) {
1444
- /* This may be neither img nor iframe.*/
1445
- var bwg_current_image_span = jQuery(this).find("img");
1446
- if (!bwg_current_image_span.length) {
1447
- bwg_current_image_span = jQuery(this).find("iframe");
1448
- }
1449
- if (!bwg_current_image_span.length) {
1450
- bwg_current_image_span = jQuery(this).find("video");
1451
- }
1452
- /*set timeout for video to get size according to style, and then put watermark*/
1453
- setTimeout(function () {
1454
- var width = bwg_current_image_span.width();
1455
- var height = bwg_current_image_span.height();
1456
-
1457
 
1458
- jQuery(".bwg_watermark_spun").width(width);
1459
- jQuery(".bwg_watermark_spun").height(height);
1460
- jQuery(".bwg_watermark").css({display: ''});
1461
- /* Set watermark image size.*/
1462
- var comment_container_width = 0;
1463
- if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ) {
1464
- comment_container_width = <?php echo $theme_row->lightbox_comment_width; ?>;
1465
- }
1466
- if (width <= (jQuery(window).width() - comment_container_width)) {
1467
- jQuery(".bwg_watermark_image").css({
1468
- width: ((jQuery(".spider_popup_wrap").width() - comment_container_width) * <?php echo $watermark_width / $image_width; ?>)
1469
- });
1470
- jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({
1471
- fontSize: ((jQuery(".spider_popup_wrap").width() - comment_container_width) * <?php echo $watermark_font_size / $image_width; ?>)
1472
- });
1473
- }
1474
- }, 100);
1475
- }
1476
- });
1477
- }
1478
- var bwg_current_key = '<?php echo $current_key; ?>';
1479
  var bwg_current_filmstrip_pos = <?php echo $current_pos; ?>;
1480
  /* Set filmstrip initial position.*/
1481
- function bwg_set_filmstrip_pos(filmStripWidth) {
1482
- var selectedImagePos = -bwg_current_filmstrip_pos - (jQuery(".bwg_filmstrip_thumbnail").<?php echo $outerWidth_or_outerHeight; ?>(true)) / 2;
1483
- var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_filmstrip_thumbnails").<?php echo $width_or_height; ?>(), selectedImagePos + filmStripWidth / 2));
1484
- jQuery(".bwg_filmstrip_thumbnails").animate({
1485
- <?php echo $left_or_top; ?>: imagesContainerLeft
1486
- }, {
1487
- duration: 500,
1488
- complete: function () { bwg_filmstrip_arrows(); }
1489
- });
1490
- }
1491
- function bwg_move_filmstrip() {
1492
- var image_left = jQuery(".bwg_thumb_active").position().<?php echo $left_or_top; ?>;
1493
- var image_right = jQuery(".bwg_thumb_active").position().<?php echo $left_or_top; ?> + jQuery(".bwg_thumb_active").<?php echo $outerWidth_or_outerHeight; ?>(true);
1494
- var bwg_filmstrip_width = jQuery(".bwg_filmstrip").<?php echo $outerWidth_or_outerHeight; ?>(true);
1495
- var bwg_filmstrip_thumbnails_width = jQuery(".bwg_filmstrip_thumbnails").<?php echo $outerWidth_or_outerHeight; ?>(true);
1496
- var long_filmstrip_cont_left = jQuery(".bwg_filmstrip_thumbnails").position().<?php echo $left_or_top; ?>;
1497
- var long_filmstrip_cont_right = Math.abs(jQuery(".bwg_filmstrip_thumbnails").position().<?php echo $left_or_top; ?>) + bwg_filmstrip_width;
1498
- if (bwg_filmstrip_width > bwg_filmstrip_thumbnails_width) {
1499
- return;
1500
- }
1501
- if (image_left < Math.abs(long_filmstrip_cont_left)) {
1502
- jQuery(".bwg_filmstrip_thumbnails").animate({
1503
- <?php echo $left_or_top; ?>: -image_left
1504
- }, {
1505
- duration: 500,
1506
- complete: function () { bwg_filmstrip_arrows(); }
1507
- });
1508
- }
1509
- else if (image_right > long_filmstrip_cont_right) {
1510
- jQuery(".bwg_filmstrip_thumbnails").animate({
1511
- <?php echo $left_or_top; ?>: -(image_right - bwg_filmstrip_width)
1512
- }, {
1513
- duration: 500,
1514
- complete: function () { bwg_filmstrip_arrows(); }
1515
- });
1516
- }
1517
- }
1518
- /* Show/hide filmstrip arrows.*/
1519
- function bwg_filmstrip_arrows() {
1520
- if (jQuery(".bwg_filmstrip_thumbnails").<?php echo $width_or_height; ?>() < jQuery(".bwg_filmstrip").<?php echo $width_or_height; ?>()) {
1521
- jQuery(".bwg_filmstrip_left").hide();
1522
- jQuery(".bwg_filmstrip_right").hide();
1523
- }
1524
- else {
1525
- jQuery(".bwg_filmstrip_left").show();
1526
- jQuery(".bwg_filmstrip_right").show();
1527
- }
1528
- }
1529
- function bwg_testBrowser_cssTransitions() {
1530
- return bwg_testDom('Transition');
1531
- }
1532
- function bwg_testBrowser_cssTransforms3d() {
1533
- return bwg_testDom('Perspective');
1534
- }
1535
- function bwg_testDom(prop) {
1536
- /* Browser vendor CSS prefixes.*/
1537
- var browserVendors = ['', '-webkit-', '-moz-', '-ms-', '-o-', '-khtml-'];
1538
- /* Browser vendor DOM prefixes.*/
1539
- var domPrefixes = ['', 'Webkit', 'Moz', 'ms', 'O', 'Khtml'];
1540
- var i = domPrefixes.length;
1541
- while (i--) {
1542
- if (typeof document.body.style[domPrefixes[i] + prop] !== 'undefined') {
1543
- return true;
1544
- }
1545
- }
1546
- return false;
1547
- }
1548
- function bwg_cube(tz, ntx, nty, nrx, nry, wrx, wry, current_image_class, next_image_class, direction) {
1549
- /* If browser does not support 3d transforms/CSS transitions.*/
1550
- if (!bwg_testBrowser_cssTransitions()) {
1551
- return bwg_fallback(current_image_class, next_image_class, direction);
1552
- }
1553
- if (!bwg_testBrowser_cssTransforms3d()) {
1554
- return bwg_fallback3d(current_image_class, next_image_class, direction);
1555
- }
1556
- bwg_trans_in_progress = true;
1557
- /* Set active thumbnail.*/
1558
- jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
1559
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
1560
- jQuery(".bwg_slide_bg").css('perspective', 1000);
1561
- jQuery(current_image_class).css({
1562
- transform : 'translateZ(' + tz + 'px)',
1563
- backfaceVisibility : 'hidden'
1564
- });
1565
- jQuery(next_image_class).css({
1566
- opacity : 1,
1567
- filter: 'Alpha(opacity=100)',
1568
- backfaceVisibility : 'hidden',
1569
- transform : 'translateY(' + nty + 'px) translateX(' + ntx + 'px) rotateY('+ nry +'deg) rotateX('+ nrx +'deg)'
1570
- });
1571
- jQuery(".bwg_slider").css({
1572
- transform: 'translateZ(-' + tz + 'px)',
1573
- transformStyle: 'preserve-3d'
1574
- });
1575
- /* Execution steps.*/
1576
- setTimeout(function () {
1577
- jQuery(".bwg_slider").css({
1578
- transition: 'all ' + bwg_transition_duration + 'ms ease-in-out',
1579
- transform: 'translateZ(-' + tz + 'px) rotateX('+ wrx +'deg) rotateY('+ wry +'deg)'
1580
- });
1581
- }, 20);
1582
- /* After transition.*/
1583
- jQuery(".bwg_slider").one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
1584
- function bwg_after_trans() {
1585
- jQuery(current_image_class).removeAttr('style');
1586
- jQuery(next_image_class).removeAttr('style');
1587
- jQuery(".bwg_slider").removeAttr('style');
1588
- jQuery(current_image_class).css({'opacity' : 0, filter: 'Alpha(opacity=0)', 'z-index': 1});
1589
- jQuery(next_image_class).css({'opacity' : 1, filter: 'Alpha(opacity=100)', 'z-index' : 2});
1590
- jQuery(".bwg_image_info").show();
1591
- bwg_trans_in_progress = false;
1592
- jQuery(current_image_class).html('');
1593
- if (typeof event_stack !== 'undefined') {
1594
- if (event_stack.length > 0) {
1595
- key = event_stack[0].split("-");
1596
- event_stack.shift();
1597
- bwg_change_image(key[0], key[1], data, true);
1598
- }
1599
- }
1600
- bwg_change_watermark_container();
1601
- }
1602
- if (bwg_transition_duration == 0) {
1603
- bwg_after_trans();
1604
- }
1605
- }
1606
- function bwg_cubeH(current_image_class, next_image_class, direction) {
1607
- /* Set to half of image width.*/
1608
- var dimension = jQuery(current_image_class).width() / 2;
1609
- if (direction == 'right') {
1610
- bwg_cube(dimension, dimension, 0, 0, 90, 0, -90, current_image_class, next_image_class, direction);
1611
- }
1612
- else if (direction == 'left') {
1613
- bwg_cube(dimension, -dimension, 0, 0, -90, 0, 90, current_image_class, next_image_class, direction);
1614
- }
1615
- }
1616
- /* For browsers that does not support transitions.*/
1617
- function bwg_fallback(current_image_class, next_image_class, direction) {
1618
- bwg_fade(current_image_class, next_image_class, direction);
1619
- }
1620
- /* For browsers that support transitions, but not 3d transforms (only used if primary transition makes use of 3d-transforms).*/
1621
- function bwg_fallback3d(current_image_class, next_image_class, direction) {
1622
- bwg_sliceV(current_image_class, next_image_class, direction);
1623
- }
1624
- function bwg_none(current_image_class, next_image_class, direction) {
1625
- jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
1626
- jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
1627
- jQuery(".bwg_image_info").show();
1628
- /* Set active thumbnail.*/
1629
- jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
1630
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
1631
- bwg_trans_in_progress = false;
1632
- jQuery(current_image_class).html('');
1633
- bwg_change_watermark_container();
1634
- }
1635
- function bwg_fade(current_image_class, next_image_class, direction) {
1636
- /* Set active thumbnail.*/
1637
- jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
1638
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
1639
- function bwg_after_trans() {
1640
- jQuery(".bwg_image_info").show();
1641
- bwg_change_watermark_container();
1642
- }
1643
- if (bwg_testBrowser_cssTransitions()) {
1644
- jQuery(next_image_class).css('transition', 'opacity ' + bwg_transition_duration + 'ms linear');
1645
- jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
1646
- jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
1647
- jQuery(next_image_class).one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
1648
- }
1649
- else {
1650
- jQuery(current_image_class).animate({'opacity' : 0, 'z-index' : 1}, bwg_transition_duration);
1651
- jQuery(next_image_class).animate({
1652
- 'opacity' : 1,
1653
- 'z-index': 2
1654
- }, {
1655
- duration: bwg_transition_duration,
1656
- complete: function () {
1657
- bwg_trans_in_progress = false;
1658
- jQuery(current_image_class).html('');
1659
- bwg_after_trans()
1660
- }
1661
- });
1662
- /* For IE.*/
1663
- jQuery(current_image_class).fadeTo(bwg_transition_duration, 0);
1664
- jQuery(next_image_class).fadeTo(bwg_transition_duration, 1);
1665
- }
1666
- if (bwg_transition_duration == 0) {
1667
- bwg_after_trans();
1668
- }
1669
- }
1670
- function bwg_grid(cols, rows, ro, tx, ty, sc, op, current_image_class, next_image_class, direction) {
1671
- /* If browser does not support CSS transitions.*/
1672
- if (!bwg_testBrowser_cssTransitions()) {
1673
- return bwg_fallback(current_image_class, next_image_class, direction);
1674
- }
1675
- bwg_trans_in_progress = true;
1676
- /* Set active thumbnail.*/
1677
- jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
1678
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
1679
- /* The time (in ms) added to/subtracted from the delay total for each new gridlet.*/
1680
- var count = (bwg_transition_duration) / (cols + rows);
1681
- /* Gridlet creator (divisions of the image grid, positioned with background-images to replicate the look of an entire slide image when assembled)*/
1682
- function bwg_gridlet(width, height, top, img_top, left, img_left, src, imgWidth, imgHeight, c, r) {
1683
- var delay = (c + r) * count;
1684
- /* Return a gridlet elem with styles for specific transition.*/
1685
- return jQuery('<span class="bwg_gridlet" />').css({
1686
- display : "block",
1687
- width : width,
1688
- height : height,
1689
- top : top,
1690
- left : left,
1691
- backgroundImage : 'url("' + src + '")',
1692
- backgroundColor: jQuery(".spider_popup_wrap").css("background-color"),
1693
- /*backgroundColor: 'rgba(0, 0, 0, 0)',*/
1694
- backgroundRepeat: 'no-repeat',
1695
- backgroundPosition : img_left + 'px ' + img_top + 'px',
1696
- backgroundSize : imgWidth + 'px ' + imgHeight + 'px',
1697
- transition : 'all ' + bwg_transition_duration + 'ms ease-in-out ' + delay + 'ms',
1698
- transform : 'none'
1699
- });
1700
- }
1701
- /* Get the current slide's image.*/
1702
- var cur_img = jQuery(current_image_class).find('img');
1703
- /* Create a grid to hold the gridlets.*/
1704
- var grid = jQuery('<span style="display: block;" />').addClass('bwg_grid');
1705
- /* Prepend the grid to the next slide (i.e. so it's above the slide image).*/
1706
- jQuery(current_image_class).prepend(grid);
1707
- /* Vars to calculate positioning/size of gridlets.*/
1708
- var cont = jQuery(".bwg_slide_bg");
1709
- var imgWidth = cur_img.width();
1710
- var imgHeight = cur_img.height();
1711
- var contWidth = cont.width(),
1712
- contHeight = cont.height(),
1713
- colWidth = Math.floor(contWidth / cols),
1714
- rowHeight = Math.floor(contHeight / rows),
1715
- colRemainder = contWidth - (cols * colWidth),
1716
- colAdd = Math.ceil(colRemainder / cols),
1717
- rowRemainder = contHeight - (rows * rowHeight),
1718
- rowAdd = Math.ceil(rowRemainder / rows),
1719
- leftDist = 0,
1720
- img_leftDist = Math.ceil((jQuery(".bwg_slide_bg").width() - cur_img.width()) / 2);
1721
- var imgSrc = typeof cur_img.attr('src')=='undefined' ? '' :cur_img.attr('src');
1722
- /* tx/ty args can be passed as 'auto'/'min-auto' (meaning use slide width/height or negative slide width/height).*/
1723
- tx = tx === 'auto' ? contWidth : tx;
1724
- tx = tx === 'min-auto' ? - contWidth : tx;
1725
- ty = ty === 'auto' ? contHeight : ty;
1726
- ty = ty === 'min-auto' ? - contHeight : ty;
1727
- /* Loop through cols.*/
1728
- for (var i = 0; i < cols; i++) {
1729
- var topDist = 0,
1730
- img_topDst = Math.floor((jQuery(".bwg_slide_bg").height() - cur_img.height()) / 2),
1731
- newColWidth = colWidth;
1732
- /* If imgWidth (px) does not divide cleanly into the specified number of cols, adjust individual col widths to create correct total.*/
1733
- if (colRemainder > 0) {
1734
- var add = colRemainder >= colAdd ? colAdd : colRemainder;
1735
- newColWidth += add;
1736
- colRemainder -= add;
1737
- }
1738
- /* Nested loop to create row gridlets for each col.*/
1739
- for (var j = 0; j < rows; j++) {
1740
- var newRowHeight = rowHeight,
1741
- newRowRemainder = rowRemainder;
1742
- /* If contHeight (px) does not divide cleanly into the specified number of rows, adjust individual row heights to create correct total.*/
1743
- if (newRowRemainder > 0) {
1744
- add = newRowRemainder >= rowAdd ? rowAdd : rowRemainder;
1745
- newRowHeight += add;
1746
- newRowRemainder -= add;
1747
- }
1748
- /* Create & append gridlet to grid.*/
1749
- grid.append(bwg_gridlet(newColWidth, newRowHeight, topDist, img_topDst, leftDist, img_leftDist, imgSrc, imgWidth, imgHeight, i, j));
1750
- topDist += newRowHeight;
1751
- img_topDst -= newRowHeight;
1752
- }
1753
- img_leftDist -= newColWidth;
1754
- leftDist += newColWidth;
1755
- }
1756
- /* Set event listener on last gridlet to finish transitioning.*/
1757
- var last_gridlet = grid.children().last();
1758
- /* Show grid & hide the image it replaces.*/
1759
- grid.show();
1760
- cur_img.css('opacity', 0);
1761
- /* Add identifying classes to corner gridlets (useful if applying border radius).*/
1762
- grid.children().first().addClass('rs-top-left');
1763
- grid.children().last().addClass('rs-bottom-right');
1764
- grid.children().eq(rows - 1).addClass('rs-bottom-left');
1765
- grid.children().eq(- rows).addClass('rs-top-right');
1766
- /* Execution steps.*/
1767
- setTimeout(function () {
1768
- grid.children().css({
1769
- opacity: op,
1770
- transform: 'rotate('+ ro +'deg) translateX('+ tx +'px) translateY('+ ty +'px) scale('+ sc +')'
1771
- });
1772
- }, 1);
1773
- jQuery(next_image_class).css('opacity', 1);
1774
- /* After transition.*/
1775
- jQuery(last_gridlet).one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
1776
- function bwg_after_trans() {
1777
- jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
1778
- jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
1779
- cur_img.css('opacity', 1);
1780
- grid.remove();
1781
- bwg_trans_in_progress = false;
1782
- jQuery(".bwg_image_info").show();
1783
- jQuery(current_image_class).html('');
1784
- if (typeof event_stack !== 'undefined') {
1785
- if (event_stack.length > 0) {
1786
- key = event_stack[0].split("-");
1787
- event_stack.shift();
1788
- bwg_change_image(key[0], key[1], data, true);
1789
- }
1790
- }
1791
- bwg_change_watermark_container();
1792
- }
1793
- if (bwg_transition_duration == 0) {
1794
- bwg_after_trans();
1795
- }
1796
- }
1797
- function bwg_sliceV(current_image_class, next_image_class, direction) {
1798
- if (direction == 'right') {
1799
- var translateY = 'min-auto';
1800
- }
1801
- else if (direction == 'left') {
1802
- var translateY = 'auto';
1803
- }
1804
- bwg_grid(10, 1, 0, 0, translateY, 1, 0, current_image_class, next_image_class, direction);
1805
- }
1806
- function bwg_scaleOut(current_image_class, next_image_class, direction) {
1807
- bwg_grid(1, 1, 0, 0, 0, 1.5, 0, current_image_class, next_image_class, direction);
1808
- }
1809
- function bwg_blindV(current_image_class, next_image_class, direction) {
1810
- bwg_grid(1, 8, 0, 0, 0, .7, 0, current_image_class, next_image_class);
1811
- }
1812
- function bwg_blindH(current_image_class, next_image_class, direction) {
1813
- bwg_grid(10, 1, 0, 0, 0, .7, 0, current_image_class, next_image_class);
1814
- }
1815
- function bwg_change_image(current_key, key, data, from_effect) {
1816
- // var bwg_image_info_pos = jQuery(".bwg_ctrl_btn_container").height();
1817
- jQuery(".bwg_image_info").css("height","auto");
1818
- setTimeout(function(){
1819
- if(jQuery(".bwg_image_info_container1").height() < (jQuery(".bwg_image_info").height() + jQuery(".bwg_toggle_container").height() + bwg_image_info_pos + 2*(parseInt("<?php echo $theme_row->lightbox_info_margin; ?>")))) {
1820
- if("<?php echo $theme_row->lightbox_ctrl_btn_pos ; ?>" == 'top') {
1821
- jQuery(".bwg_image_info").css("top",bwg_image_info_pos + "px");
1822
- }
1823
- jQuery(".bwg_image_info").height(jQuery(".bwg_image_info_container1").height() - jQuery(".bwg_toggle_container").height() - bwg_image_info_pos - 2*(parseInt("<?php echo $theme_row->lightbox_info_margin; ?>")));
1824
- }
1825
- }, 200);
1826
- jQuery("#spider_popup_left").show();
1827
- jQuery("#spider_popup_right").show();
1828
- jQuery(".bwg_image_info").hide();
1829
- if (<?php echo BWG()->options->enable_loop; ?> == 0) {
1830
- if (key == (parseInt(data.length) - 1)) {
1831
- jQuery("#spider_popup_right").hide();
1832
- }
1833
- if (key == 0) {
1834
- jQuery("#spider_popup_left").hide();
1835
- }
1836
- }
1837
- var ecommerceACtive = '<?php echo (function_exists('BWGEC') ) == true ? 1 : 0 ; ?>';
1838
- if( ecommerceACtive == 1 && <?php echo $enable_image_ecommerce;?> == 1 ) {
1839
- if( data[key]["pricelist"] == 0) {
1840
- jQuery(".bwg_ecommerce").hide();
1841
- }
1842
- else {
1843
- jQuery(".bwg_ecommerce").show();
1844
- jQuery(".pge_tabs li").hide();
1845
- jQuery("#downloads").hide();
1846
- jQuery("#manual").hide();
1847
- var pricelistSections = data[key]["pricelist_sections"].split(",");
1848
-
1849
- if(pricelistSections){
1850
- jQuery("#" + pricelistSections[0]).show();
1851
- jQuery("[name=type]").val(pricelistSections[0]);
1852
- if(pricelistSections.length > 1){
1853
- jQuery(".pge_tabs").show();
1854
- for( k=0 ; k<pricelistSections.length; k++ ){
1855
- jQuery("#" + pricelistSections[k] + "_li").show();
1856
- }
1857
- }
1858
- else{
1859
- jQuery(".pge_tabs").hide();
1860
- }
1861
- }
1862
- else{
1863
- jQuery("[name=type]").val("");
1864
- }
1865
- }
1866
- }
1867
- /* Pause videos.*/
1868
- jQuery("#bwg_image_container").find("iframe").each(function () {
1869
- jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
1870
- jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }', "*");
1871
- jQuery(this)[0].contentWindow.postMessage('pause', '*');
1872
- });
1873
- jQuery("#bwg_image_container<?php echo $bwg; ?>").find("video").each(function () {
1874
- jQuery(this).trigger('pause');
1875
- });
1876
- if (typeof data[key] != 'undefined') {
1877
- if (typeof data[current_key] != 'undefined') {
1878
- if (jQuery(".bwg_play_pause").length && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
1879
- bwg_play();
1880
- }
1881
- if (!from_effect) {
1882
- /* Change image key.*/
1883
- jQuery("#bwg_current_image_key").val(key);
1884
- /*if (current_key == '-1') {
1885
- current_key = jQuery(".bwg_thumb_active").children("img").attr("image_key");
1886
- }*/
1887
- }
1888
- if (bwg_trans_in_progress) {
1889
- event_stack.push(current_key + '-' + key);
1890
- return;
1891
- }
1892
- var direction = 'right';
1893
- if (bwg_current_key > key) {
1894
- var direction = 'left';
1895
- }
1896
- else if (bwg_current_key == key) {
1897
- return;
1898
- }
1899
- /*jQuery("#spider_popup_left").hover().css({"display": "inline"});
1900
- jQuery("#spider_popup_right").hover().css({"display": "inline"});*/
1901
- jQuery(".bwg_image_count").html(data[key]["number"]);
1902
- /* Set filmstrip initial position.*/
1903
- jQuery(".bwg_watermark").css({display: 'none'});
1904
- /* Set active thumbnail position.*/
1905
- bwg_current_filmstrip_pos = key * (jQuery(".bwg_filmstrip_thumbnail").<?php echo $width_or_height; ?>() + 2 + 2 * <?php echo $theme_row->lightbox_filmstrip_thumb_border_width; ?>);
1906
- bwg_current_key = key;
1907
- <?php
1908
- if ( BWG()->is_pro ) {
1909
- ?>
1910
- /* Change hash.*/
1911
- window.location.hash = "bwg<?php echo $gallery_id; ?>/" + data[key]["id"];
1912
- <?php
1913
- }
1914
- ?>
1915
- /* Change image id for rating.*/
1916
- <?php if ($popup_enable_rate) { ?>
1917
- jQuery("#bwg_rate_form input[name='image_id']").val(data[key]["id"]);
1918
- jQuery("#bwg_star").attr("data-score", data[key]["avg_rating"]);
1919
- jQuery("#bwg_star").removeAttr("title");
1920
- bwg_rating(data[key]["rate"], data[key]["rate_count"], data[key]["avg_rating"], key);
1921
- <?php } ?>
1922
- <?php
1923
- if ( BWG()->is_pro ) {
1924
- ?>
1925
- /* Increase image hit counter.*/
1926
- spider_set_input_value('rate_ajax_task', 'save_hit_count');
1927
- spider_rate_ajax_save('bwg_rate_form');
1928
- jQuery(".bwg_image_hits span").html(++data[key]["hit_count"]);
1929
- /* Change image rating.*/
1930
- if (jQuery(".bwg_image_rate_container1").css("display") != 'none') {
1931
- jQuery(".bwg_image_rate_container1").css("display", "table-cell");
1932
- }
1933
- else {
1934
- jQuery(".bwg_image_rate_container1").css("display", "none");
1935
- }
1936
- <?php
1937
- }
1938
- ?>
1939
- /* Change image id.*/
1940
- jQuery("#bwg_popup_image").attr('image_id', data[key]["id"]);
1941
- /* Change image title, description.*/
1942
- jQuery(".bwg_image_title").html(jQuery('<span style="display: block;" />').html(data[key]["alt"]).text());
1943
- jQuery(".bwg_image_description").html(jQuery('<span style="display: block;" />').html(data[key]["description"]).text());
1944
- /*jQuery(".bwg_image_info").removeAttr("style");*/
1945
- if (data[key]["alt"].trim() == "") {
1946
- if (data[key]["description"].trim() == "") {
1947
- jQuery(".bwg_image_info").css("background", "none");
1948
- }
1949
- }
1950
- if (jQuery(".bwg_image_info_container1").css("display") != 'none') {
1951
- jQuery(".bwg_image_info_container1").css("display", "table-cell");
1952
- }
1953
- else {
1954
- jQuery(".bwg_image_info_container1").css("display", "none");
1955
- }
1956
- var current_image_class = jQuery(".bwg_popup_image_spun").css("zIndex") == 2 ? ".bwg_popup_image_spun" : ".bwg_popup_image_second_spun";
1957
- var next_image_class = current_image_class == ".bwg_popup_image_second_spun" ? ".bwg_popup_image_spun" : ".bwg_popup_image_second_spun";
1958
-
1959
- var is_embed = data[key]['filetype'].indexOf("EMBED_") > -1 ? true : false;
1960
- var is_embed_instagram_post = data[key]['filetype'].indexOf('INSTAGRAM_POST') > -1 ? true : false;
1961
- var is_embed_instagram_video = data[key]['filetype'].indexOf('INSTAGRAM_VIDEO') > -1 ? true : false;
1962
- var cur_height = jQuery(current_image_class).height();
1963
- var cur_width = jQuery(current_image_class).width();
1964
- var innhtml = '<span class="bwg_popup_image_spun1" style="display: ' + (!is_embed ? 'table' : 'block') + ' ;width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display: ' + (!is_embed ? 'table-cell' : 'block') + '; vertical-align: middle; text-align: center; height: 100%;">';
1965
- if (!is_embed) {
1966
- innhtml += '<img style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px;" class="bwg_popup_image bwg_popup_watermark" src="<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + jQuery('<span style="display: block;" />').html(data[key]["image_url"]).text() + '" alt="' + data[key]["alt"] + '" />';
1967
- }
1968
- else { /*is_embed*/
1969
- /*innhtml += '<span style="height: ' + cur_height + 'px; width: ' + cur_width + 'px;" class="bwg_popup_embed bwg_popup_watermark">';*/
1970
- innhtml += '<span class="bwg_popup_embed bwg_popup_watermark" style="display: block; table-layout: fixed; height: 100%;">' + (is_embed_instagram_video ? '<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>' : ' ');
1971
- if (is_embed_instagram_post) {
1972
- var post_width = 0;
1973
- var post_height = 0;
1974
- if (cur_height < cur_width + 88) {
1975
- post_height = cur_height;
1976
- post_width = post_height - 88;
1977
- }
1978
- else {
1979
- post_width = cur_width;
1980
- post_height = post_width + 88;
1981
- }
1982
- innhtml += spider_display_embed(data[key]['filetype'], data[key]['image_url'], data[key]['filename'], {class:"bwg_embed_frame", 'data-width': data[key]['image_width'], 'data-height': data[key]['image_height'], frameborder: "0", allowfullscreen: "allowfullscreen", style: "width:" + post_width + "px; height:" + post_height + "px; vertical-align:middle; display:inline-block; position:relative;"});
1983
- }
1984
- else {
1985
- innhtml += spider_display_embed(data[key]['filetype'],data[key]['image_url'], data[key]['filename'], {class:"bwg_embed_frame", frameborder:"0", allowfullscreen:"allowfullscreen", style:"width:inherit; height:inherit; vertical-align:middle; display:block;" });
1986
- }
1987
- innhtml += "</span>";
1988
- }
1989
- innhtml += '</span></span>';
1990
- jQuery(next_image_class).html(innhtml);
1991
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1992
- maxWidth: cur_width,
1993
- maxHeight: cur_height,
1994
- height: 'auto',
1995
- });
1996
- function bwg_afterload() {
1997
- <?php
1998
- if (BWG()->options->preload_images) {
1999
- echo 'bwg_preload_images(key);';
2000
- }
2001
- ?>
2002
- bwg_<?php echo $image_effect; ?>(current_image_class, next_image_class, direction);
2003
-
2004
- /* Pause videos facebook video.*/
2005
- jQuery(current_image_class).find('.bwg_fb_video').each(function () {
2006
- jQuery(this).attr('src', '');
2007
- });
2008
- jQuery("#bwg_download").show();
2009
- if (!is_embed) {
2010
- jQuery("#bwg_fullsize_image").attr("href", "<?php echo site_url() . '/' . BWG()->upload_dir; ?>" + data[key]['pure_image_url']);
2011
- jQuery("#bwg_download").attr("href", "<?php echo site_url() . '/' . BWG()->upload_dir; ?>" + data[key]['pure_thumb_url'].replace('/thumb/', '/.original/'));
2012
- }
2013
- else {
2014
- jQuery("#bwg_fullsize_image").attr("href", data[key]['pure_image_url']);
2015
- if (data[key]['filetype'].indexOf("FLICKR_") > -1) {
2016
- jQuery("#bwg_download").attr("href", data[key]['filename']);
2017
- }
2018
- else if (data[key]['filetype'].indexOf("INSTAGRAM_") > -1) {
2019
- jQuery("#bwg_download").attr("href", data[key]['thumb_url'].substring(0, data[key]['thumb_url'].length - 1) + 'l');
2020
- }
2021
- else {
2022
- jQuery("#bwg_download").hide();
2023
- }
2024
- }
2025
- var image_arr = data[key]['pure_image_url'].split("/");
2026
- jQuery("#bwg_download").attr("download", image_arr[image_arr.length - 1]);
2027
- <?php
2028
- if ( BWG()->is_pro ) {
2029
- ?>
2030
- /* Change image social networks urls.*/
2031
- var bwg_share_url = encodeURIComponent("<?php echo add_query_arg(array('curr_url' => $current_url, 'image_id' => ''), WDWLibrary::get_share_page()); ?>") + "=" + data[key]['id'] + encodeURIComponent('#bwg<?php echo $gallery_id; ?>/') + data[key]['id'];
2032
-
2033
- if (is_embed) {
2034
- var bwg_share_image_url = encodeURIComponent(data[key]['pure_thumb_url']);
2035
- }
2036
- else {
2037
- var bwg_share_image_url = "<?php echo urlencode(site_url() . '/' . BWG()->upload_dir); ?>" + encodeURIComponent(encodeURIComponent(data[key]['pure_image_url']));
2038
- }
2039
- bwg_share_image_url = bwg_share_image_url.replace(/%252F/g, '%2F');
2040
- if (typeof addthis_share != "undefined") {
2041
- addthis_share.url = bwg_share_url;
2042
- }
2043
- jQuery("#bwg_facebook_a").attr("href", "https://www.facebook.com/sharer/sharer.php?u=" + bwg_share_url);
2044
- jQuery("#bwg_twitter_a").attr("href", "https://twitter.com/share?url=" + bwg_share_url);
2045
- jQuery("#bwg_google_a").attr("href", "https://plus.google.com/share?url=" + bwg_share_url);
2046
- jQuery("#bwg_pinterest_a").attr("href", "http://pinterest.com/pin/create/button/?s=100&url=" + bwg_share_url + "&media=" + bwg_share_image_url + "&description=" + data[key]['alt'] + '%0A' + data[key]['description']);
2047
- jQuery("#bwg_tumblr_a").attr("href", "https://www.tumblr.com/share/photo?source=" + bwg_share_image_url + "&caption=" + data[key]['alt'] + "&clickthru=" + bwg_share_url);
2048
- if (jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
2049
- /* Pricelist */
2050
- if(data[key]["pricelist"] == 0){
2051
- /* Close ecommerce.*/
2052
- bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
2053
- bwg_animate_image_box_for_hide_sidebar();
2054
-
2055
- jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
2056
- jQuery(".bwg_ecommerce").attr("title", "<?php echo __('Show Ecommerce', BWG()->prefix); ?>");
2057
- jQuery(".spider_popup_close_fullscreen").show();
2058
- }
2059
- else{
2060
- get_ajax_pricelist();
2061
- }
2062
- }
2063
- <?php
2064
- }
2065
- ?>
2066
- /* Load comments.*/
2067
- if (jQuery(".bwg_comment_container").hasClass("bwg_open")) {
2068
- if (data[key]["comment_count"] == 0) {
2069
- jQuery("#bwg_added_comments").hide();
2070
- }
2071
- else {
2072
- jQuery("#bwg_added_comments").show();
2073
- spider_set_input_value('ajax_task', 'display');
2074
- spider_set_input_value('image_id', jQuery('#bwg_popup_image').attr('image_id'));
2075
- spider_ajax_save('bwg_comment_form');
2076
- }
2077
- }
2078
- /* Update custom scroll.*/
2079
- if (typeof jQuery().mCustomScrollbar !== 'undefined') {
2080
- if (jQuery.isFunction(jQuery().mCustomScrollbar)) {
2081
- jQuery(".bwg_comments").mCustomScrollbar({
2082
- advanced:{
2083
- updateOnContentResize: true
2084
- }
2085
- });
2086
- }
2087
- }
2088
- jQuery(".bwg_comments .mCSB_scrollTools").hide();
2089
- <?php
2090
- if ($enable_image_filmstrip) {
2091
- ?>
2092
- bwg_move_filmstrip();
2093
- <?php
2094
- }
2095
- ?>
2096
- bwg_resize_instagram_post();
2097
- }
2098
- if (!is_embed) {
2099
- var cur_img = jQuery(next_image_class).find('img');
2100
- cur_img.one('load', function() {
2101
- bwg_afterload();
2102
- }).each(function() {
2103
- if(this.complete) jQuery(this).load();
2104
- });
2105
- }
2106
- else {
2107
- bwg_afterload();
2108
- }
2109
- }
2110
- }
2111
- }
2112
  jQuery(document).on('keydown', function (e) {
2113
  if (jQuery("#bwg_name").is(":focus") || jQuery("#bwg_email").is(":focus") || jQuery("#bwg_comment").is(":focus") || jQuery("#bwg_captcha_input").is(":focus")) {
2114
  return;
@@ -2126,167 +1486,8 @@ class BWGViewGalleryBox {
2126
  jQuery(".bwg_play_pause").trigger('click');
2127
  }
2128
  });
2129
- function bwg_preload_images(key) {
2130
- count = <?php echo (int) BWG()->options->preload_images_count / 2; ?>;
2131
- var count_all = data.length;
2132
- if (count_all < <?php echo BWG()->options->preload_images_count; ?>) {
2133
- count = 0;
2134
- }
2135
- if (count != 0) {
2136
- for (var i = key - count; i < key + count; i++) {
2137
- var index = parseInt((i + count_all) % count_all);
2138
- var is_embed = data[index]['filetype'].indexOf("EMBED_") > -1 ? true : false;
2139
- if (typeof data[index] != "undefined") {
2140
- if (!is_embed) {
2141
- jQuery("<img/>").attr("src", '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + jQuery('<span style="display: block;" />').html(data[index]["image_url"]).text());
2142
- }
2143
- }
2144
- }
2145
- }
2146
- else {
2147
- for (var i = 0; i < data.length; i++) {
2148
- var is_embed = data[i]['filetype'].indexOf("EMBED_") > -1 ? true : false;
2149
- if (typeof data[i] != "undefined") {
2150
- if (!is_embed) {
2151
- jQuery("<img/>").attr("src", '<?php echo site_url() . '/' . BWG()->upload_dir; ?>' + jQuery('<span style="display: block;" />').html(data[i]["image_url"]).text());
2152
- }
2153
- }
2154
- }
2155
- }
2156
- }
2157
- function bwg_popup_resize() {
2158
- if (typeof jQuery().fullscreen !== 'undefined') {
2159
- if (jQuery.isFunction(jQuery().fullscreen)) {
2160
- if (!jQuery.fullscreen.isFullScreen()) {
2161
- jQuery(".bwg_resize-full").show();
2162
- jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-full");
2163
- jQuery(".bwg_resize-full").attr("title", "<?php echo __('Maximize', BWG()->prefix); ?>");
2164
- jQuery(".bwg_fullscreen").attr("class", "bwg_ctrl_btn bwg_fullscreen fa fa-fullscreen");
2165
- jQuery(".bwg_fullscreen").attr("title", "<?php echo __('Fullscreen', BWG()->prefix); ?>");
2166
- }
2167
- }
2168
- }
2169
- var comment_container_width = 0;
2170
- if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
2171
- comment_container_width = <?php echo $theme_row->lightbox_comment_width; ?>;
2172
- }
2173
- if (comment_container_width > jQuery(window).width()) {
2174
- comment_container_width = jQuery(window).width();
2175
- jQuery(".bwg_comment_container").css({
2176
- width: comment_container_width
2177
- });
2178
- jQuery(".bwg_ecommerce_container").css({
2179
- width: comment_container_width
2180
- });
2181
- jQuery(".spider_popup_close_fullscreen").hide();
2182
- }
2183
- else {
2184
- jQuery(".spider_popup_close_fullscreen").show();
2185
- }
2186
- if (!(!(jQuery(window).height() > <?php echo $image_height; ?>) || !(<?php echo $open_with_fullscreen; ?> != 1))) {
2187
- jQuery("#spider_popup_wrap").css({
2188
- height: <?php echo $image_height; ?>,
2189
- top: '50%',
2190
- marginTop: -<?php echo $image_height / 2; ?>,
2191
- zIndex: 100000
2192
- });
2193
- jQuery(".bwg_image_container").css({height: (<?php echo $image_height - ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>)});
2194
- jQuery(".bwg_popup_image").css({
2195
- maxHeight: <?php echo $image_height - ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2196
- });
2197
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
2198
- maxHeight: <?php echo $image_height - ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2199
- });
2200
- <?php if ($filmstrip_direction == 'vertical') { ?>
2201
- jQuery(".bwg_filmstrip_container").css({height: <?php echo $image_height; ?>});
2202
- jQuery(".bwg_filmstrip").css({height: (<?php echo $image_height; ?> - 40)});
2203
- <?php } ?>
2204
- bwg_popup_current_height = <?php echo $image_height; ?>;
2205
- }
2206
- else {
2207
- jQuery("#spider_popup_wrap").css({
2208
- height: jQuery(window).height(),
2209
- top: 0,
2210
- marginTop: 0,
2211
- zIndex: 100000
2212
- });
2213
- jQuery(".bwg_image_container").css({height: (jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>)});
2214
- jQuery(".bwg_popup_image").css({
2215
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2216
- });
2217
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
2218
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2219
- });
2220
- <?php if ($filmstrip_direction == 'vertical') { ?>
2221
- jQuery(".bwg_filmstrip_container").css({height: (jQuery(window).height())});
2222
- jQuery(".bwg_filmstrip").css({height: (jQuery(window).height() - 40)});
2223
- <?php } ?>
2224
- bwg_popup_current_height = jQuery(window).height();
2225
- }
2226
- if (!(!(jQuery(window).width() >= <?php echo $image_width; ?>) || !(<?php echo $open_with_fullscreen; ?> != 1))) {
2227
- jQuery("#spider_popup_wrap").css({
2228
- width: <?php echo $image_width; ?>,
2229
- left: '50%',
2230
- marginLeft: -<?php echo $image_width / 2; ?>,
2231
- zIndex: 100000
2232
- });
2233
- jQuery(".bwg_image_wrap").css({width: <?php echo $image_width; ?> - comment_container_width});
2234
- jQuery(".bwg_image_container").css({width: (<?php echo $image_width - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width)});
2235
- jQuery(".bwg_popup_image").css({
2236
- maxWidth: <?php echo $image_width - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width
2237
- });
2238
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
2239
- maxWidth: <?php echo $image_width - ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width
2240
- });
2241
- <?php if ($filmstrip_direction == 'horizontal') { ?>
2242
- jQuery(".bwg_filmstrip_container").css({width: <?php echo $image_width; ?> - comment_container_width});
2243
- jQuery(".bwg_filmstrip").css({width: (<?php echo $image_width; ?> - comment_container_width- 40)});
2244
- <?php } ?>
2245
- bwg_popup_current_width = <?php echo $image_width; ?>;
2246
- }
2247
- else {
2248
- jQuery("#spider_popup_wrap").css({
2249
- width: jQuery(window).width(),
2250
- left: 0,
2251
- marginLeft: 0,
2252
- zIndex: 100000
2253
- });
2254
- jQuery(".bwg_image_wrap").css({width: (jQuery(window).width() - comment_container_width)});
2255
- jQuery(".bwg_image_container").css({width: (jQuery(window).width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width)});
2256
- jQuery(".bwg_popup_image").css({
2257
- maxWidth: jQuery(window).width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width
2258
- });
2259
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
2260
- maxWidth: jQuery(window).width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - comment_container_width
2261
- });
2262
- <?php if ($filmstrip_direction == 'horizontal') { ?>
2263
- jQuery(".bwg_filmstrip_container").css({width: (jQuery(window).width() - comment_container_width)});
2264
- jQuery(".bwg_filmstrip").css({width: (jQuery(window).width() - comment_container_width - 40)});
2265
- <?php } ?>
2266
- bwg_popup_current_width = jQuery(window).width();
2267
- }
2268
- /* Set watermark container size.*/
2269
- bwg_resize_instagram_post();
2270
- bwg_change_watermark_container();
2271
- if (!(!(jQuery(window).height() > <?php echo $image_height - 2 * $theme_row->lightbox_close_btn_top; ?>) || !(jQuery(window).width() >= <?php echo $image_width - 2 * $theme_row->lightbox_close_btn_right; ?>) || !(<?php echo $open_with_fullscreen; ?> != 1))) {
2272
- jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
2273
- }
2274
- else {
2275
- if (!(!(jQuery("#spider_popup_wrap").width() < jQuery(window).width()) || !(jQuery("#spider_popup_wrap").height() < jQuery(window).height()))) {
2276
- jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
2277
- }
2278
- }
2279
- if ("<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>" == 'bottom') {
2280
- if (jQuery(".bwg_toggle_container i").hasClass('fa-angle-down')) {
2281
- jQuery(".bwg_toggle_container").css("bottom", jQuery(".bwg_ctrl_btn_container").height() + "px");
2282
- }
2283
- }
2284
- if ("<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>" == 'top') {
2285
- if (jQuery(".bwg_toggle_container i").hasClass('fa-angle-up')) {
2286
- jQuery(".bwg_toggle_container").css("top", jQuery(".bwg_ctrl_btn_container").height() + "px");
2287
- }
2288
- }
2289
- }
2290
  jQuery(window).resize(function() {
2291
  if (typeof jQuery().fullscreen !== 'undefined') {
2292
  if (jQuery.isFunction(jQuery().fullscreen)) {
@@ -2299,163 +1500,8 @@ class BWGViewGalleryBox {
2299
  /* Popup current width/height.*/
2300
  var bwg_popup_current_width = <?php echo $image_width; ?>;
2301
  var bwg_popup_current_height = <?php echo $image_height; ?>;
2302
- // open popup sidebar
2303
- function bwg_popup_sidebar_open(obj){
2304
- var comment_container_width = <?php echo $theme_row->lightbox_comment_width; ?>;
2305
- if (comment_container_width > jQuery(window).width()) {
2306
- comment_container_width = jQuery(window).width();
2307
- obj.css({
2308
- width: comment_container_width
2309
- });
2310
- jQuery(".spider_popup_close_fullscreen").hide();
2311
- jQuery(".spider_popup_close").hide();
2312
- if (jQuery(".bwg_ctrl_btn").hasClass("fa-pause")) {
2313
- var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
2314
- jQuery(".bwg_play_pause").trigger(isMobile ? 'touchend' : 'click');
2315
- }
2316
- }
2317
- else {
2318
- jQuery(".spider_popup_close_fullscreen").show();
2319
- }
2320
-
2321
- obj.animate({<?php echo $theme_row->lightbox_comment_pos; ?>: 0}, 100);
2322
-
2323
- }
2324
- function bwg_popup_sidebar_close(obj){
2325
- var border_width = parseInt(obj.css('borderRightWidth'));
2326
- if (!border_width) {
2327
- border_width = 0;
2328
- }
2329
- obj.animate({<?php echo $theme_row->lightbox_comment_pos; ?>: -obj.width() - border_width}, 100);
2330
- }
2331
- function bwg_animate_image_box_for_hide_sidebar(){
2332
- jQuery(".bwg_image_wrap").animate({
2333
- <?php echo $theme_row->lightbox_comment_pos; ?>: 0,
2334
- width: jQuery("#spider_popup_wrap").width()
2335
- }, 100);
2336
- jQuery(".bwg_image_container").animate({
2337
- width: jQuery("#spider_popup_wrap").width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>}, 100);
2338
- jQuery(".bwg_popup_image").animate({
2339
- maxWidth: jQuery("#spider_popup_wrap").width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>
2340
- }, {
2341
- duration: 100,
2342
- complete: function () { bwg_change_watermark_container(); }
2343
- });
2344
- jQuery(".bwg_popup_embed").animate({
2345
- width: jQuery("#spider_popup_wrap").width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>
2346
- }, {
2347
- duration: 100,
2348
- complete: function () {
2349
- bwg_resize_instagram_post();
2350
- bwg_change_watermark_container(); }
2351
- });
2352
- jQuery(".bwg_filmstrip_container").animate({<?php echo $width_or_height; ?>: jQuery(".spider_popup_wrap").<?php echo $width_or_height; ?>()}, 100);
2353
- jQuery(".bwg_filmstrip").animate({<?php echo $width_or_height; ?>: jQuery(".spider_popup_wrap").<?php echo $width_or_height; ?>() - 40}, 100);
2354
- /* Set filmstrip initial position.*/
2355
- bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width() - 40);
2356
- jQuery(".spider_popup_close_fullscreen").show(100);
2357
- }
2358
-
2359
- function bwg_animate_image_box_for_show_sidebar(){
2360
- var bwg_comment_container = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
2361
- jQuery(".bwg_image_wrap").animate({
2362
- <?php echo $theme_row->lightbox_comment_pos; ?>: bwg_comment_container,
2363
- width: jQuery("#spider_popup_wrap").width() - bwg_comment_container}, 100);
2364
- jQuery(".bwg_image_container").animate({
2365
- width: jQuery("#spider_popup_wrap").width() - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?> - bwg_comment_container}, 100);
2366
- jQuery(".bwg_popup_image").animate({
2367
- maxWidth: jQuery("#spider_popup_wrap").width() - bwg_comment_container - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>
2368
- }, {
2369
- duration: 100,
2370
- complete: function () { bwg_change_watermark_container(); }
2371
- });
2372
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
2373
- maxWidth: jQuery("#spider_popup_wrap").width() - bwg_comment_container - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>
2374
- }, {
2375
- duration: 100,
2376
- complete: function () {
2377
- bwg_resize_instagram_post();
2378
- bwg_change_watermark_container(); }
2379
- });
2380
- jQuery(".bwg_filmstrip_container").css({<?php echo $width_or_height; ?>: jQuery("#spider_popup_wrap").<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'vertical' ? 0: 'bwg_comment_container'); ?>});
2381
- jQuery(".bwg_filmstrip").animate({<?php echo $width_or_height; ?>: jQuery(".bwg_filmstrip_container").<?php echo $width_or_height; ?>() - 40}, 100);
2382
- /* Set filmstrip initial position.*/
2383
- bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").<?php echo $width_or_height; ?>() - 40);
2384
-
2385
- }
2386
- /* Open/close comments.*/
2387
- function bwg_comment() {
2388
- jQuery(".bwg_watermark").css({display: 'none'});
2389
- jQuery(".bwg_ecommerce_wrap").css("z-index","-1");
2390
- jQuery(".bwg_comment_wrap").css("z-index","25");
2391
- if(jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ){
2392
- bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
2393
- jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
2394
- jQuery(".bwg_ecommerce").attr("title", "<?php echo __('Show Ecommerce', BWG()->prefix); ?>");
2395
-
2396
- }
2397
- if (jQuery(".bwg_comment_container").hasClass("bwg_open") ) {
2398
- /* Close comment.*/
2399
- bwg_popup_sidebar_close(jQuery(".bwg_comment_container"));
2400
- bwg_animate_image_box_for_hide_sidebar();
2401
- jQuery(".bwg_comment_wrap").css("z-index","-1");
2402
- jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_close");
2403
- jQuery(".bwg_comment").attr("title", "<?php echo __('Show Comments', BWG()->prefix); ?>");
2404
- jQuery(".spider_popup_close_fullscreen").show();
2405
- }
2406
- else {
2407
 
2408
- /* Open comment.*/
2409
- bwg_popup_sidebar_open(jQuery(".bwg_comment_container"));
2410
- bwg_animate_image_box_for_show_sidebar();
2411
- jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_open");
2412
- jQuery(".bwg_comment").attr("title", "<?php echo __('Hide Comments', BWG()->prefix); ?>");
2413
- /* Load comments.*/
2414
- var cur_image_key = parseInt(jQuery("#bwg_current_image_key").val());
2415
- if (data[cur_image_key]["comment_count"] != 0) {
2416
- jQuery("#bwg_added_comments").show();
2417
- spider_set_input_value('ajax_task', 'display');
2418
- spider_set_input_value('image_id', jQuery('#bwg_popup_image').attr('image_id'));
2419
- spider_ajax_save('bwg_comment_form');
2420
- }
2421
- }
2422
- }
2423
- /* Open/close ecommerce.*/
2424
- function bwg_ecommerce() {
2425
- jQuery(".bwg_watermark").css({display: 'none'});
2426
- jQuery(".bwg_ecommerce_wrap").css("z-index","25");
2427
- jQuery(".bwg_comment_wrap").css("z-index","-1");
2428
- if (jQuery(".bwg_comment_container").hasClass("bwg_open")) {
2429
- bwg_popup_sidebar_close(jQuery(".bwg_comment_container"));
2430
- jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_close");
2431
- jQuery(".bwg_comment").attr("title", "<?php echo __('Show Comments', BWG()->prefix); ?>");
2432
- }
2433
- if (jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
2434
- /* Close ecommerce.*/
2435
- bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
2436
- bwg_animate_image_box_for_hide_sidebar();
2437
- jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
2438
- jQuery(".bwg_ecommerce").attr("title", "<?php echo __('Show Ecommerce', BWG()->prefix); ?>");
2439
- // jQuery(".spider_popup_close_fullscreen").show();
2440
- }
2441
- else {
2442
- /* Open ecommerce.*/
2443
- bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container"));
2444
- bwg_animate_image_box_for_show_sidebar();
2445
- jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_open");
2446
- jQuery(".bwg_ecommerce").attr("title", "<?php echo __('Hide Ecommerce', BWG()->prefix); ?>");
2447
- get_ajax_pricelist();
2448
- }
2449
- }
2450
- function bwg_reset_zoom() {
2451
- var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
2452
- var viewportmeta = document.querySelector('meta[name="viewport"]');
2453
- if (isMobile) {
2454
- if (viewportmeta) {
2455
- viewportmeta.content = 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0';
2456
- }
2457
- }
2458
- }
2459
  /* jQuery(document).ready(function () { */
2460
  <?php
2461
  if ( BWG()->is_pro ) {
@@ -2665,7 +1711,7 @@ class BWGViewGalleryBox {
2665
  var bottom = jQuery(".bwg_ctrl_btn_container").height();
2666
 
2667
  <?php
2668
- if ($theme_row->lightbox_ctrl_btn_pos == 'top') {
2669
  ?>
2670
  if (jQuery(".bwg_image_info_container1").height() < image_info) {
2671
  jQuery(".bwg_image_info").animate({top: top + "px", height: info_height}, 500);
@@ -2678,10 +1724,18 @@ class BWGViewGalleryBox {
2678
  elseif ($theme_row->lightbox_ctrl_btn_pos == 'bottom') {
2679
  ?>
2680
  if (jQuery(".bwg_image_info_container1").height() < image_info) {
2681
- jQuery(".bwg_image_info").animate({bottom: 0, height: info_height}, 500);
2682
- }
2683
- else {
2684
- jQuery(".bwg_image_info").animate({top: 0}, 500);
 
 
 
 
 
 
 
 
2685
  }
2686
  <?php
2687
  }
@@ -2733,11 +1787,12 @@ class BWGViewGalleryBox {
2733
  var top = parseInt(jQuery(".bwg_image_info").css("top")) + jQuery(".bwg_ctrl_btn_container").height();
2734
  /* Open controll buttons.*/
2735
  <?php
2736
- if ($theme_row->lightbox_ctrl_btn_pos == 'top') {
 
2737
  ?>
2738
  if(jQuery(".bwg_image_info_container1").height() < image_info) {
2739
  jQuery(".bwg_image_info").animate({top: top + "px", height: info_height}, 500);
2740
- }
2741
  else {
2742
  jQuery(".bwg_image_info").animate({top: top + "px"}, 500);
2743
  }
@@ -2793,106 +1848,11 @@ class BWGViewGalleryBox {
2793
  });
2794
  }
2795
  });
 
 
2796
  /* Maximize/minimize.*/
2797
  jQuery(".bwg_resize-full").on(bwg_click, function () {
2798
- jQuery(".bwg_watermark").css({display: 'none'});
2799
- var comment_container_width = 0;
2800
- if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ) {
2801
- comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
2802
- }
2803
- if (jQuery(".bwg_resize-full").hasClass("fa-resize-small")) {
2804
- if (jQuery(window).width() > <?php echo $image_width; ?>) {
2805
- bwg_popup_current_width = <?php echo $image_width; ?>;
2806
- }
2807
- if (jQuery(window).height() > <?php echo $image_height; ?>) {
2808
- bwg_popup_current_height = <?php echo $image_height; ?>;
2809
- }
2810
- /* Minimize.*/
2811
- jQuery("#spider_popup_wrap").animate({
2812
- width: bwg_popup_current_width,
2813
- height: bwg_popup_current_height,
2814
- left: '50%',
2815
- top: '50%',
2816
- marginLeft: -bwg_popup_current_width / 2,
2817
- marginTop: -bwg_popup_current_height / 2,
2818
- zIndex: 100000
2819
- }, 500);
2820
- jQuery(".bwg_image_wrap").animate({width: bwg_popup_current_width - comment_container_width}, 500);
2821
- jQuery(".bwg_image_container").animate({height: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>, width: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>}, 500);
2822
- jQuery(".bwg_popup_image").animate({
2823
- maxWidth: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
2824
- maxHeight: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2825
- }, {
2826
- duration: 500,
2827
- complete: function () {
2828
- bwg_change_watermark_container();
2829
- if ((jQuery("#spider_popup_wrap").width() < jQuery(window).width())) {
2830
- if (jQuery("#spider_popup_wrap").height() < jQuery(window).height()) {
2831
- jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
2832
- }
2833
- }
2834
- }
2835
- });
2836
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
2837
- maxWidth: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
2838
- maxHeight: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2839
- }, {
2840
- duration: 500,
2841
- complete: function () {
2842
- bwg_resize_instagram_post();
2843
- bwg_change_watermark_container();
2844
- if (jQuery("#spider_popup_wrap").width() < jQuery(window).width()) {
2845
- if (jQuery("#spider_popup_wrap").height() < jQuery(window).height()) {
2846
- jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
2847
- }
2848
- }
2849
- }
2850
- });
2851
- jQuery(".bwg_filmstrip_container").animate({<?php echo $width_or_height; ?>: bwg_popup_current_<?php echo $width_or_height; ?> - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?>}, 500);
2852
- jQuery(".bwg_filmstrip").animate({<?php echo $width_or_height; ?>: bwg_popup_current_<?php echo $width_or_height; ?> - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?> - 40}, 500);
2853
- /* Set filmstrip initial position.*/
2854
- bwg_set_filmstrip_pos(bwg_popup_current_<?php echo $width_or_height; ?> - 40);
2855
- jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-full");
2856
- jQuery(".bwg_resize-full").attr("title", "<?php echo __('Maximize', BWG()->prefix); ?>");
2857
- }
2858
- else {
2859
- bwg_popup_current_width = jQuery(window).width();
2860
- bwg_popup_current_height = jQuery(window).height();
2861
- /* Maximize.*/
2862
- jQuery("#spider_popup_wrap").animate({
2863
- width: jQuery(window).width(),
2864
- height: jQuery(window).height(),
2865
- left: 0,
2866
- top: 0,
2867
- margin: 0,
2868
- zIndex: 100000
2869
- }, 500);
2870
- jQuery(".bwg_image_wrap").animate({width: (jQuery(window).width() - comment_container_width)}, 500);
2871
- jQuery(".bwg_image_container").animate({height: (bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>), width: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>}, 500);
2872
- jQuery(".bwg_popup_image").animate({
2873
- maxWidth: jQuery(window).width() - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
2874
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2875
- }, {
2876
- duration: 500,
2877
- complete: function () { bwg_change_watermark_container(); }
2878
- });
2879
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
2880
- maxWidth: jQuery(window).width() - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
2881
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
2882
- }, {
2883
- duration: 500,
2884
- complete: function () {
2885
- bwg_resize_instagram_post();
2886
- bwg_change_watermark_container(); }
2887
- });
2888
- jQuery(".bwg_filmstrip_container").animate({<?php echo $width_or_height; ?>: jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?>}, 500);
2889
- jQuery(".bwg_filmstrip").animate({<?php echo $width_or_height; ?>: jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?> - 40}, 500);
2890
- /* Set filmstrip initial position.*/
2891
- bwg_set_filmstrip_pos(jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?> - 40);
2892
- jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-small");
2893
- jQuery(".bwg_resize-full").attr("title", "<?php echo __('Restore', BWG()->prefix); ?>");
2894
- jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
2895
- }
2896
  });
2897
  /* Fullscreen.*/
2898
  /*Toggle with mouse click*/
@@ -2902,7 +1862,7 @@ class BWGViewGalleryBox {
2902
  if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
2903
  comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
2904
  }
2905
- function bwg_exit_fullscreen() {
2906
  if (jQuery(window).width() > <?php echo $image_width; ?>) {
2907
  bwg_popup_current_width = <?php echo $image_width; ?>;
2908
  }
@@ -2914,7 +1874,7 @@ class BWGViewGalleryBox {
2914
  if ($open_with_fullscreen) {
2915
  ?>
2916
  bwg_popup_current_width = jQuery(window).width();
2917
- bwg_popup_current_height = jQuery(window).height();
2918
  <?php
2919
  }
2920
  ?>
@@ -2930,8 +1890,6 @@ class BWGViewGalleryBox {
2930
  });
2931
  jQuery(".bwg_image_wrap").css({width: bwg_popup_current_width - comment_container_width});
2932
  jQuery(".bwg_image_container").css({height: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>, width: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>});
2933
- /*jQuery(".bwg_slide_bg").css({height: bwg_popup_current_height - <?php echo $image_filmstrip_height; ?>});
2934
- jQuery(".bwg_popup_image_spun1").css({height: bwg_popup_current_height - <?php echo $image_filmstrip_height; ?>});*/
2935
  jQuery(".bwg_popup_image").css({
2936
  maxWidth: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
2937
  maxHeight: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
@@ -2964,7 +1922,7 @@ class BWGViewGalleryBox {
2964
  if (jQuery.fullscreen.isFullScreen()) {
2965
  /* Exit Fullscreen.*/
2966
  jQuery.fullscreen.exit();
2967
- bwg_exit_fullscreen();
2968
  }
2969
  else {
2970
  /* Fullscreen.*/
@@ -2983,7 +1941,6 @@ class BWGViewGalleryBox {
2983
  });
2984
  jQuery(".bwg_image_wrap").css({width: screen_width - comment_container_width});
2985
  jQuery(".bwg_image_container").css({height: (screen_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>), width: screen_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>});
2986
- /* jQuery(".bwg_slide_bg").css({height: screen_height - <?php echo $image_filmstrip_height; ?>});*/
2987
  jQuery(".bwg_popup_image").css({
2988
  maxWidth: (screen_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>),
2989
  maxHeight: (screen_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>)
@@ -3054,89 +2011,7 @@ class BWGViewGalleryBox {
3054
  jQuery(".bwg_popup_image").removeAttr("width");
3055
  jQuery(".bwg_popup_image").removeAttr("height");
3056
  /* }); */
3057
- /* Open with fullscreen.*/
3058
- function bwg_open_with_fullscreen() {
3059
- jQuery(".bwg_watermark").css({display: 'none'});
3060
- var comment_container_width = 0;
3061
- if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
3062
- comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
3063
- }
3064
- bwg_popup_current_width = jQuery(window).width();
3065
- bwg_popup_current_height = jQuery(window).height();
3066
- jQuery("#spider_popup_wrap").css({
3067
- width: jQuery(window).width(),
3068
- height: jQuery(window).height(),
3069
- left: 0,
3070
- top: 0,
3071
- margin: 0,
3072
- zIndex: 100000
3073
- });
3074
- jQuery(".bwg_image_wrap").css({width: (jQuery(window).width() - comment_container_width)});
3075
- jQuery(".bwg_image_container").css({height: (bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>), width: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>});
3076
- jQuery(".bwg_popup_image").css({
3077
- maxWidth: jQuery(window).width() - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
3078
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
3079
- }, {
3080
- complete: function () { bwg_change_watermark_container(); }
3081
- });
3082
- jQuery(".bwg_popup_video").css({
3083
- width: jQuery(window).width() - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
3084
- height: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
3085
- }, {
3086
- complete: function () { bwg_change_watermark_container(); }
3087
- });
3088
- jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
3089
- maxWidth: jQuery(window).width() - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
3090
- maxHeight: jQuery(window).height() - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
3091
- }, {
3092
- complete: function () {
3093
- bwg_resize_instagram_post();
3094
- bwg_change_watermark_container(); }
3095
- });
3096
- jQuery(".bwg_filmstrip_container").css({<?php echo $width_or_height; ?>: jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?>});
3097
- jQuery(".bwg_filmstrip").css({<?php echo $width_or_height; ?>: jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?> - 40});
3098
- /* Set filmstrip initial position.*/
3099
- bwg_set_filmstrip_pos(jQuery(window).<?php echo $width_or_height; ?>() - <?php echo ($filmstrip_direction == 'horizontal' ? 'comment_container_width' : 0); ?> - 40);
3100
 
3101
- jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-small");
3102
- jQuery(".bwg_resize-full").attr("title", "<?php echo __('Restore', BWG()->prefix); ?>");
3103
- jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
3104
- }
3105
-
3106
- function bwg_resize_instagram_post() {
3107
- if (jQuery('.inner_instagram_iframe_bwg_embed_frame').length) {
3108
- var post_width = jQuery(".bwg_image_container").width();
3109
- var post_height = jQuery(".bwg_image_container").height();
3110
- var FeedbackSocialProofHeight = 132;
3111
- jQuery('.inner_instagram_iframe_bwg_embed_frame').each(function() {
3112
- var parent_container = jQuery(this).parent();
3113
- if (post_height / (parseInt(parent_container.attr('data-height')) + FeedbackSocialProofHeight) < post_width / parseInt(parent_container.attr('data-width'))) {
3114
- parent_container.height(post_height);
3115
- parent_container.width((parent_container.height() - FeedbackSocialProofHeight) * parent_container.attr('data-width') / parent_container.attr('data-height') + 16);
3116
- }
3117
- else {
3118
- parent_container.width(post_width);
3119
- parent_container.height((parent_container.width() - 16) * parent_container.attr('data-height') / parent_container.attr('data-width') + 96);
3120
- }
3121
- parent_container.css({top: 0.5 * (post_height - parent_container.height())});
3122
- });
3123
- bwg_change_watermark_container();
3124
- }
3125
- }
3126
-
3127
- function bwg_play() {
3128
- window.clearInterval(bwg_playInterval);
3129
- bwg_playInterval = setInterval(function () {
3130
- if (!data[parseInt(jQuery('#bwg_current_image_key').val()) + 1]) {
3131
- if (<?php echo BWG()->options->enable_loop; ?> == 1) {
3132
- /* Wrap around.*/
3133
- bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), 0, data);
3134
- }
3135
- return;
3136
- }
3137
- bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), parseInt(jQuery('#bwg_current_image_key').val()) + 1, data)
3138
- }, '<?php echo $slideshow_interval * 1000; ?>');
3139
- }
3140
  jQuery(window).focus(function() {
3141
  /* event_stack = [];*/
3142
  if (jQuery(".bwg_play_pause").length && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
47
 
48
  $watermark_type = (isset($_GET['watermark_type']) ? esc_html($_GET['watermark_type']) : 'none');
49
  $watermark_text = (isset($_GET['watermark_text']) ? esc_html($_GET['watermark_text']) : '');
50
+ $watermark_font_size = (isset($_GET['watermark_font_size']) ? (int) $_GET['watermark_font_size'] : 12);
51
  $watermark_font = (isset($_GET['watermark_font']) ? WDWLibrary::get_fonts(esc_html($_GET['watermark_font'])) : 'Arial');
52
  $watermark_color = (isset($_GET['watermark_color']) ? esc_html($_GET['watermark_color']) : 'FFFFFF');
53
+ $watermark_opacity = (isset($_GET['watermark_opacity']) ? (int) $_GET['watermark_opacity'] : 30);
54
  $watermark_position = explode('-', (isset($_GET['watermark_position']) ? esc_html($_GET['watermark_position']) : 'bottom-right'));
55
  $watermark_link = (isset($_GET['watermark_link']) ? esc_html($_GET['watermark_link']) : '');
56
  $watermark_url = (isset($_GET['watermark_url']) ? esc_html($_GET['watermark_url']) : '');
57
+ $watermark_width = (isset($_GET['watermark_width']) ? (int) $_GET['watermark_width'] : 90);
58
+ $watermark_height = (isset($_GET['watermark_height']) ? (int) $_GET['watermark_height'] : 90);
59
 
60
  $image_right_click = isset(BWG()->options->image_right_click) ? BWG()->options->image_right_click : 0;
61
  $comment_moderation = isset(BWG()->options->comment_moderation) ? BWG()->options->comment_moderation : 0;
467
  border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?> <?php echo $theme_row->lightbox_comment_button_border_radius; ?> 0 0;
468
  position:relative;
469
  }
 
 
 
 
 
 
 
470
 
471
  .pge_tabs li a, .pge_tabs li a:hover, .pge_tabs li.pge_active a{
472
  text-decoration:none;
479
  }
480
  .pge_tabs li a{
481
  color:#<?php echo $theme_row->lightbox_comment_bg_color; ?>!important;
482
+ }
483
+
484
+ .pge_tabs li.pge_active a, .pge_tabs li a:hover {
485
  border-radius: <?php echo $theme_row->lightbox_comment_button_border_radius; ?>;
486
+
487
  }
488
+ .pge_tabs li.pge_active a>span, .pge_tabs li a>span:hover {
489
+ color:#<?php echo $theme_row->lightbox_comment_button_bg_color; ?> !important;
490
+ border-bottom: 1px solid #<?php echo $theme_row->lightbox_comment_button_bg_color; ?>;
491
+ padding-bottom: 2px;
492
+ }
493
  .pge_tabs_container{
494
  border:1px solid #<?php echo $theme_row->lightbox_comment_font_color; ?>;
495
  border-radius: 0 0 <?php echo $theme_row->lightbox_comment_button_border_radius; ?> <?php echo $theme_row->lightbox_comment_button_border_radius; ?>;
513
  }
514
  .pge_add_to_cart_title{
515
  font-size:17px;
516
+ padding: 5px;
517
  }
518
  .pge_add_to_cart div:first-child{
519
  float:left;
884
  <?php } ?>
885
  padding: <?php echo $theme_row->lightbox_info_padding; ?>;
886
  <?php echo ((!$enable_image_filmstrip || $theme_row->lightbox_filmstrip_pos != 'top') && $theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') ? 'top: ' . ($theme_row->lightbox_ctrl_btn_height + 2 * $theme_row->lightbox_ctrl_btn_margin_top) . 'px;' : '' ?>
887
+ word-break : break-all;
888
  }
889
  .bwg_image_info::-webkit-scrollbar {
890
  width: 4px;
909
  font-family: <?php echo $theme_row->lightbox_description_font_style; ?>;
910
  font-size: <?php echo $theme_row->lightbox_description_font_size; ?>px;
911
  font-weight: <?php echo $theme_row->lightbox_description_font_weight; ?>;
912
+ word-break: break-all;
913
  }
914
  .bwg_image_rate_spun {
915
  text-align: <?php echo $theme_row->lightbox_rate_align; ?>;
1101
  $thumb_top = ($image_filmstrip_height - $image_thumb_height) / 2;
1102
  ?>
1103
  <div id="bwg_filmstrip_thumbnail_<?php echo $key; ?>" class="bwg_filmstrip_thumbnail <?php echo (($image_row->id == $current_image_id) ? 'bwg_thumb_active' : 'bwg_thumb_deactive'); ?>">
1104
+ <img style="width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" class="bwg_filmstrip_thumbnail_img" src="<?php echo ($is_embed ? "" : site_url() . '/' . BWG()->upload_dir) . $image_row->thumb_url; ?>" onclick="bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), '<?php echo $key; ?>', data)" ontouchend="bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), '<?php echo $key; ?>', data,'',<?php echo $bwg; ?>)" image_id="<?php echo $image_row->id; ?>" image_key="<?php echo $key; ?>" alt="<?php echo $image_row->alt; ?>" />
1105
  </div>
1106
  <?php
1107
  }
1223
  $download_href = site_url() . '/' . BWG()->upload_dir . str_replace('/thumb/', '/.original/', $current_thumb_url);
1224
  $style = 'inline-block';
1225
  }
1226
+ ?>
1227
+ <a id="bwg_download" <?php if ($is_embed) { ?> class="hidden" <?php } ?> href="<?php echo $download_href; ?>" target="_blank" download="<?php echo end($current_image_arr); ?>">
1228
+ <i title="<?php echo __('Download original image', BWG()->prefix); ?>" class="bwg_ctrl_btn fa fa-download"></i>
1229
+ </a>
1230
+ <?php
1231
+
 
 
 
 
 
 
 
1232
  }
1233
  if(function_exists('BWGEC') && $enable_image_ecommerce == 1 ){
1234
 
1285
  score: function() {
1286
  return jQuery(this).attr("data-score");
1287
  },
1288
+ starType: 'i',
1289
  number : <?php echo $theme_row->lightbox_rate_stars_count; ?>,
1290
  size : <?php echo $theme_row->lightbox_rate_size; ?>,
1291
  readOnly : function() {
1404
  <a class="spider_popup_close" onclick="spider_destroypopup(1000); return false;" ontouchend="spider_destroypopup(1000); return false;"><span><i class="bwg_close_btn fa fa-times"></i></span></a>
1405
  <script language="javascript" type="text/javascript" src="<?php echo BWG()->plugin_url . '/js/bwg_embed.js?ver=' . BWG()->plugin_version; ?>"></script>
1406
  <script>
1407
+ var bwg_param = {
1408
+ bwg : <?php echo $bwg; ?>,
1409
+ bwg_current_key : '<?php echo $current_key; ?>',
1410
+ enable_loop : <?php echo BWG()->options->enable_loop; ?>,
1411
+ ecommerceACtive : '<?php echo (function_exists('BWGEC') ) == true ? 1 : 0 ; ?>',
1412
+ enable_image_ecommerce : <?php echo $enable_image_ecommerce; ?>,
1413
+ lightbox_ctrl_btn_pos : '<?php echo $theme_row->lightbox_ctrl_btn_pos ; ?>',
1414
+ lightbox_close_btn_top : '<?php $theme_row->lightbox_close_btn_top; ?>',
1415
+ lightbox_close_btn_right : '<?php $theme_row->lightbox_close_btn_right; ?>',
1416
+ popup_enable_rate : <?php echo $popup_enable_rate ?>,
1417
+ lightbox_filmstrip_thumb_border_width : <?php echo $theme_row->lightbox_filmstrip_thumb_border_width ?>,
1418
+ width_or_height: '<?php echo $width_or_height ?>',
1419
+ preload_images : <?php echo BWG()->options->preload_images; ?>,
1420
+ preload_images_count : <?php echo (int) BWG()->options->preload_images_count; ?>,
1421
+ bwg_image_effect : '<?php echo $image_effect; ?>',
1422
+ enable_image_filmstrip : <?php echo ($enable_image_filmstrip == '') ? 0 : $enable_image_filmstrip; ?>,
1423
+ gallery_id : <?php echo $gallery_id; ?>,
1424
+ site_url : '<?php echo site_url() . '/' . BWG()->upload_dir; ?>',
1425
+ lightbox_comment_width : <?php echo $theme_row->lightbox_comment_width; ?>,
1426
+ watermark_width : <?php echo $watermark_width; ?>,
1427
+ image_width : <?php echo $image_width; ?>,
1428
+ image_height : <?php echo $image_height; ?>,
1429
+ outerWidth_or_outerHeight : '<?php echo $outerWidth_or_outerHeight; ?>',
1430
+ left_or_top : '<?php echo $left_or_top; ?>',
1431
+ lightbox_comment_pos : '<?php echo $theme_row->lightbox_comment_pos; ?>',
1432
+ filmstrip_direction : '<?php echo $filmstrip_direction; ?>',
1433
+ image_filmstrip_width : <?php echo $image_filmstrip_width; ?>,
1434
+ image_filmstrip_height : <?php echo $image_filmstrip_height; ?>,
1435
+ lightbox_info_margin : '<?php echo $theme_row->lightbox_info_margin; ?>',
1436
+ bwg_share_url : '<?php echo add_query_arg(array('curr_url' => $current_url, 'image_id' => ''), WDWLibrary::get_share_page()); ?>',
1437
+ bwg_share_image_url : "<?php echo urlencode(site_url() . '/' . BWG()->upload_dir); ?>",
1438
+ slideshow_interval : <?php echo $slideshow_interval; ?>,
1439
+ open_with_fullscreen : <?php echo $open_with_fullscreen; ?>,
1440
+ };
1441
  <?php
1442
  if (BWG()->is_pro && BWG()->options->enable_addthis && BWG()->options->addthis_profile_id) {
1443
  ?>
1447
  <?php
1448
  }
1449
  ?>
1450
+ var lightbox_comment_pos = bwg_param['lightbox_comment_pos'];
1451
  var bwg_image_info_pos = (jQuery(".bwg_ctrl_btn_container").length) ? jQuery(".bwg_ctrl_btn_container").height() : 0;
1452
  setTimeout(function(){
1453
  if(jQuery(".bwg_image_info_container1").height() < (jQuery(".bwg_image_info").height() + jQuery(".bwg_toggle_container").height() + bwg_image_info_pos + 2*(parseInt("<?php echo $theme_row->lightbox_info_margin; ?>")))) {
1458
  }
1459
  }, 100);
1460
  var bwg_trans_in_progress = false;
1461
+ var bwg_transition_duration = <?php echo (($slideshow_interval < 4 * $slideshow_effect_duration) && ($slideshow_interval != 0)) ? ($slideshow_interval * 1000) / 4 : ($slideshow_effect_duration * 1000); ?>;
1462
  var bwg_playInterval;
1463
  if ((jQuery("#spider_popup_wrap").width() >= jQuery(window).width()) || (jQuery("#spider_popup_wrap").height() >= jQuery(window).height())) {
1464
  jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1466
  /* Stop autoplay.*/
1467
  window.clearInterval(bwg_playInterval);
1468
  /* Set watermark container size.*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1469
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1470
  var bwg_current_filmstrip_pos = <?php echo $current_pos; ?>;
1471
  /* Set filmstrip initial position.*/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1472
  jQuery(document).on('keydown', function (e) {
1473
  if (jQuery("#bwg_name").is(":focus") || jQuery("#bwg_email").is(":focus") || jQuery("#bwg_comment").is(":focus") || jQuery("#bwg_captcha_input").is(":focus")) {
1474
  return;
1486
  jQuery(".bwg_play_pause").trigger('click');
1487
  }
1488
  });
1489
+
1490
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1491
  jQuery(window).resize(function() {
1492
  if (typeof jQuery().fullscreen !== 'undefined') {
1493
  if (jQuery.isFunction(jQuery().fullscreen)) {
1500
  /* Popup current width/height.*/
1501
  var bwg_popup_current_width = <?php echo $image_width; ?>;
1502
  var bwg_popup_current_height = <?php echo $image_height; ?>;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1503
 
1504
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1505
  /* jQuery(document).ready(function () { */
1506
  <?php
1507
  if ( BWG()->is_pro ) {
1711
  var bottom = jQuery(".bwg_ctrl_btn_container").height();
1712
 
1713
  <?php
1714
+ if ($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') {
1715
  ?>
1716
  if (jQuery(".bwg_image_info_container1").height() < image_info) {
1717
  jQuery(".bwg_image_info").animate({top: top + "px", height: info_height}, 500);
1724
  elseif ($theme_row->lightbox_ctrl_btn_pos == 'bottom') {
1725
  ?>
1726
  if (jQuery(".bwg_image_info_container1").height() < image_info) {
1727
+ jQuery(".bwg_image_info").animate({bottom: 0, height: info_height}, 500);
1728
+ } else {
1729
+ <?php
1730
+ if ($theme_row->lightbox_info_pos == 'bottom') {
1731
+ ?>
1732
+ jQuery(".bwg_image_info").animate({top: -top + "px"}, 500);
1733
+ <?php
1734
+ } else {
1735
+ ?>
1736
+ jQuery(".bwg_image_info").animate({top: 0}, 500);
1737
+ <?php
1738
+ } ?>
1739
  }
1740
  <?php
1741
  }
1787
  var top = parseInt(jQuery(".bwg_image_info").css("top")) + jQuery(".bwg_ctrl_btn_container").height();
1788
  /* Open controll buttons.*/
1789
  <?php
1790
+ if ($theme_row->lightbox_ctrl_btn_pos == 'top' && $theme_row->lightbox_info_pos == 'top') {
1791
+
1792
  ?>
1793
  if(jQuery(".bwg_image_info_container1").height() < image_info) {
1794
  jQuery(".bwg_image_info").animate({top: top + "px", height: info_height}, 500);
1795
+ }
1796
  else {
1797
  jQuery(".bwg_image_info").animate({top: top + "px"}, 500);
1798
  }
1848
  });
1849
  }
1850
  });
1851
+ /* Set window height not full screen */
1852
+ var bwg_windowheight = jQuery(window).height();
1853
  /* Maximize/minimize.*/
1854
  jQuery(".bwg_resize-full").on(bwg_click, function () {
1855
+ bwg_resize_full();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  });
1857
  /* Fullscreen.*/
1858
  /*Toggle with mouse click*/
1862
  if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
1863
  comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
1864
  }
1865
+ function bwg_exit_fullscreen(windowheight) {
1866
  if (jQuery(window).width() > <?php echo $image_width; ?>) {
1867
  bwg_popup_current_width = <?php echo $image_width; ?>;
1868
  }
1874
  if ($open_with_fullscreen) {
1875
  ?>
1876
  bwg_popup_current_width = jQuery(window).width();
1877
+ bwg_popup_current_height = windowheight;
1878
  <?php
1879
  }
1880
  ?>
1890
  });
1891
  jQuery(".bwg_image_wrap").css({width: bwg_popup_current_width - comment_container_width});
1892
  jQuery(".bwg_image_container").css({height: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>, width: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>});
 
 
1893
  jQuery(".bwg_popup_image").css({
1894
  maxWidth: bwg_popup_current_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>,
1895
  maxHeight: bwg_popup_current_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>
1922
  if (jQuery.fullscreen.isFullScreen()) {
1923
  /* Exit Fullscreen.*/
1924
  jQuery.fullscreen.exit();
1925
+ bwg_exit_fullscreen(bwg_windowheight);
1926
  }
1927
  else {
1928
  /* Fullscreen.*/
1941
  });
1942
  jQuery(".bwg_image_wrap").css({width: screen_width - comment_container_width});
1943
  jQuery(".bwg_image_container").css({height: (screen_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>), width: screen_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>});
 
1944
  jQuery(".bwg_popup_image").css({
1945
  maxWidth: (screen_width - comment_container_width - <?php echo ($filmstrip_direction == 'vertical' ? $image_filmstrip_width : 0); ?>),
1946
  maxHeight: (screen_height - <?php echo ($filmstrip_direction == 'horizontal' ? $image_filmstrip_height : 0); ?>)
2011
  jQuery(".bwg_popup_image").removeAttr("width");
2012
  jQuery(".bwg_popup_image").removeAttr("height");
2013
  /* }); */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2014
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2015
  jQuery(window).focus(function() {
2016
  /* event_stack = [];*/
2017
  if (jQuery(".bwg_play_pause").length && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
frontend/views/BWGViewImage_browser.php CHANGED
@@ -174,7 +174,7 @@ class BWGViewImage_browser {
174
  <form id="gal_front_form_<?php echo $bwg; ?>" method="post" action="#" data-current="<?php echo $bwg; ?>">
175
  <?php
176
  if ($params['show_search_box']) {
177
- WDWLibrary::ajax_html_frontend_search_box('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $images_count, $params['search_box_width'], $placeholder);
178
  }
179
  if ($params['showthumbs_name'] && $gallery_row->name != '') {
180
  ?>
@@ -191,15 +191,15 @@ class BWGViewImage_browser {
191
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display:none;">
192
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color: #FFFFFF; opacity: 0.7; filter: Alpha(opacity=70);">
193
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
194
- <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.gif'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
195
  </div>
196
  </div>
197
  </div>
198
  </div>
199
- <div class="image_browser_images_<?php echo $bwg; ?>" id="bwg_standart_thumbnails_<?php echo $bwg; ?>" >
200
  <?php
201
  if ( $theme_row->page_nav_position == 'top') {
202
- WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo);
203
  }
204
  foreach ($image_rows as $image_row) {
205
  $params_array['image_id'] = (isset($_POST['image_id']) ? esc_html($_POST['image_id']) : $image_row->id);
@@ -348,7 +348,7 @@ class BWGViewImage_browser {
348
  <?php
349
  }
350
  if ( $theme_row->page_nav_position == 'bottom') {
351
- WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo);
352
  }
353
  ?>
354
  </div>
174
  <form id="gal_front_form_<?php echo $bwg; ?>" method="post" action="#" data-current="<?php echo $bwg; ?>">
175
  <?php
176
  if ($params['show_search_box']) {
177
+ WDWLibrary::ajax_html_frontend_search_box('gal_front_form_' . $bwg, $bwg, 'bwg_image_browser_' . $bwg, $images_count, $params['search_box_width'], $placeholder);
178
  }
179
  if ($params['showthumbs_name'] && $gallery_row->name != '') {
180
  ?>
191
  <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display:none;">
192
  <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color: #FFFFFF; opacity: 0.7; filter: Alpha(opacity=70);">
193
  <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
194
+ <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.png'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
195
  </div>
196
  </div>
197
  </div>
198
  </div>
199
+ <div class="image_browser_images_<?php echo $bwg; ?>" id="bwg_image_browser_<?php echo $bwg; ?>" >
200
  <?php
201
  if ( $theme_row->page_nav_position == 'top') {
202
+ WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_image_browser_' . $bwg, 0, 'album', BWG()->options->enable_seo);
203
  }
204
  foreach ($image_rows as $image_row) {
205
  $params_array['image_id'] = (isset($_POST['image_id']) ? esc_html($_POST['image_id']) : $image_row->id);
348
  <?php
349
  }
350
  if ( $theme_row->page_nav_position == 'bottom') {
351
+ WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_image_browser_' . $bwg, 0, 'album', BWG()->options->enable_seo);
352
  }
353
  ?>
354
  </div>
frontend/views/BWGViewSlideshow.php CHANGED
@@ -192,7 +192,7 @@ class BWGViewSlideshow {
192
  <div id="bwg_container2_<?php echo $bwg; ?>">
193
  <div class="bwg_slideshow_image_wrap_<?php echo $bwg; ?>">
194
  <div id="ajax_loading_<?php echo $bwg; ?>" style="text-align: center; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999;">
195
- <img src="<?php echo BWG()->plugin_url . '/images/ajax_loader.gif'; ?>" style="width: 30px; border: medium none; visibility: visible;">
196
  </div>
197
  <?php
198
  $current_pos = 0;
@@ -573,11 +573,18 @@ class BWGViewSlideshow {
573
  /* For images.*/
574
  var bwg_current_image_span = jQuery(this).find("img");
575
  if (bwg_current_image_span.length) {
576
- bwg_current_image_span.on("load", function () {
577
  var width = bwg_current_image_span.width();
578
  var height = bwg_current_image_span.height();
579
  bwg_change_each_watermark_container_<?php echo $bwg; ?>(width, height);
580
- });
 
 
 
 
 
 
 
581
  }
582
  else {
583
  /* For embeds and videos.*/
@@ -705,80 +712,10 @@ class BWGViewSlideshow {
705
  }
706
  return false;
707
  }
708
- function bwg_cube_<?php echo $bwg; ?>(tz, ntx, nty, nrx, nry, wrx, wry, current_image_class, next_image_class, direction) {
709
- /* If browser does not support 3d transforms/CSS transitions.*/
710
- if (!bwg_testBrowser_cssTransitions_<?php echo $bwg; ?>()) {
711
- return bwg_fallback_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
712
- }
713
- if (!bwg_testBrowser_cssTransforms3d_<?php echo $bwg; ?>()) {
714
- return bwg_fallback3d_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
715
- }
716
- bwg_trans_in_progress_<?php echo $bwg; ?> = true;
717
- /* Set active thumbnail.*/
718
- jQuery(".bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?>").removeClass("bwg_slideshow_thumb_active_<?php echo $bwg; ?>").addClass("bwg_slideshow_thumb_deactive_<?php echo $bwg; ?>");
719
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key_<?php echo $bwg; ?> + "_<?php echo $bwg; ?>").removeClass("bwg_slideshow_thumb_deactive_<?php echo $bwg; ?>").addClass("bwg_slideshow_thumb_active_<?php echo $bwg; ?>");
720
- jQuery(".bwg_slideshow_dots_<?php echo $bwg; ?>").removeClass("bwg_slideshow_dots_active_<?php echo $bwg; ?>").addClass("bwg_slideshow_dots_deactive_<?php echo $bwg; ?>");
721
- jQuery("#bwg_dots_" + bwg_current_key_<?php echo $bwg; ?> + "_<?php echo $bwg; ?>").removeClass("bwg_slideshow_dots_deactive_<?php echo $bwg; ?>").addClass("bwg_slideshow_dots_active_<?php echo $bwg; ?>");
722
- jQuery(".bwg_slide_bg_<?php echo $bwg; ?>").css('perspective', 1000);
723
- jQuery(current_image_class).css({
724
- transform : 'translateZ(' + tz + 'px)',
725
- backfaceVisibility : 'hidden'
726
- });
727
- jQuery(next_image_class).css({
728
- opacity : 1,
729
- filter: 'Alpha(opacity=100)',
730
- zIndex: 2,
731
- backfaceVisibility : 'hidden',
732
- transform : 'translateY(' + nty + 'px) translateX(' + ntx + 'px) rotateY('+ nry +'deg) rotateX('+ nrx +'deg)'
733
- });
734
- jQuery(".bwg_slider_<?php echo $bwg; ?>").css({
735
- transform: 'translateZ(-' + tz + 'px)',
736
- transformStyle: 'preserve-3d'
737
- });
738
- /* Execution steps.*/
739
- setTimeout(function () {
740
- jQuery(".bwg_slider_<?php echo $bwg; ?>").css({
741
- transition: 'all ' + bwg_transition_duration_<?php echo $bwg; ?> + 'ms ease-in-out',
742
- transform: 'translateZ(-' + tz + 'px) rotateX('+ wrx +'deg) rotateY('+ wry +'deg)'
743
- });
744
- }, 20);
745
- /* After transition.*/
746
- jQuery(".bwg_slider_<?php echo $bwg; ?>").one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
747
- function bwg_after_trans() {
748
- jQuery(current_image_class).removeAttr('style');
749
- jQuery(next_image_class).removeAttr('style');
750
- jQuery(".bwg_slider_<?php echo $bwg; ?>").removeAttr('style');
751
- jQuery(current_image_class).css({'opacity' : 0, filter: 'Alpha(opacity=0)', 'z-index': 1});
752
- jQuery(next_image_class).css({'opacity' : 1, filter: 'Alpha(opacity=100)', 'z-index' : 2});
753
- bwg_change_watermark_container_<?php echo $bwg; ?>();
754
- bwg_trans_in_progress_<?php echo $bwg; ?> = false;
755
- if (typeof event_stack_<?php echo $bwg; ?> !== 'undefined') {
756
- if (event_stack_<?php echo $bwg; ?>.length > 0) {
757
- key = event_stack_<?php echo $bwg; ?>[0].split("-");
758
- event_stack_<?php echo $bwg; ?>.shift();
759
- bwg_change_image_<?php echo $bwg; ?>(key[0], key[1], data_<?php echo $bwg; ?>, true);
760
- }
761
- }
762
- }
763
- }
764
- function bwg_cubeH_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
765
- /* Set to half of image width.*/
766
- var dimension = jQuery(current_image_class).width() / 2;
767
- if (direction == 'right') {
768
- bwg_cube_<?php echo $bwg; ?>(dimension, dimension, 0, 0, 90, 0, -90, current_image_class, next_image_class, direction);
769
- }
770
- else if (direction == 'left') {
771
- bwg_cube_<?php echo $bwg; ?>(dimension, -dimension, 0, 0, -90, 0, 90, current_image_class, next_image_class, direction);
772
- }
773
- }
774
  /* For browsers that does not support transitions.*/
775
  function bwg_fallback_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
776
  bwg_fade_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
777
  }
778
- /* For browsers that support transitions, but not 3d transforms (only used if primary transition makes use of 3d-transforms).*/
779
- function bwg_fallback3d_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
780
- bwg_sliceV_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
781
- }
782
  function bwg_none_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
783
  jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
784
  jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
@@ -815,145 +752,6 @@ class BWGViewSlideshow {
815
  jQuery(next_image_class).fadeTo(bwg_transition_duration_<?php echo $bwg; ?>, 1);
816
  }
817
  }
818
- function bwg_grid_<?php echo $bwg; ?>(cols, rows, ro, tx, ty, sc, op, current_image_class, next_image_class, direction) {
819
- /* If browser does not support CSS transitions.*/
820
- if (!bwg_testBrowser_cssTransitions_<?php echo $bwg; ?>()) {
821
- return bwg_fallback_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
822
- }
823
- bwg_trans_in_progress_<?php echo $bwg; ?> = true;
824
- /* Set active thumbnail.*/
825
- jQuery(".bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?>").removeClass("bwg_slideshow_thumb_active_<?php echo $bwg; ?>").addClass("bwg_slideshow_thumb_deactive_<?php echo $bwg; ?>");
826
- jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key_<?php echo $bwg; ?> + "_<?php echo $bwg; ?>").removeClass("bwg_slideshow_thumb_deactive_<?php echo $bwg; ?>").addClass("bwg_slideshow_thumb_active_<?php echo $bwg; ?>");
827
- jQuery(".bwg_slideshow_dots_<?php echo $bwg; ?>").removeClass("bwg_slideshow_dots_active_<?php echo $bwg; ?>").addClass("bwg_slideshow_dots_deactive_<?php echo $bwg; ?>");
828
- jQuery("#bwg_dots_" + bwg_current_key_<?php echo $bwg; ?> + "_<?php echo $bwg; ?>").removeClass("bwg_slideshow_dots_deactive_<?php echo $bwg; ?>").addClass("bwg_slideshow_dots_active_<?php echo $bwg; ?>");
829
- /* The time (in ms) added to/subtracted from the delay total for each new gridlet.*/
830
- var count = (bwg_transition_duration_<?php echo $bwg; ?>) / (cols + rows);
831
- /* Gridlet creator (divisions of the image grid, positioned with background-images to replicate the look of an entire slide image when assembled)*/
832
- function bwg_gridlet(width, height, top, img_top, left, img_left, src, imgWidth, imgHeight, c, r) {
833
- var delay = (c + r) * count;
834
- /* Return a gridlet elem with styles for specific transition.*/
835
- return jQuery('<span class="bwg_gridlet_<?php echo $bwg; ?>" />').css({
836
- display : "block",
837
- width : width,
838
- height : height,
839
- top : top,
840
- left : left,
841
- backgroundImage : 'url("' + src + '")',
842
- backgroundColor: jQuery(".bwg_slideshow_image_wrap_<?php echo $bwg; ?>").css("background-color"),
843
- /*backgroundColor: rgba(0, 0, 0, 0),*/
844
- backgroundRepeat: 'no-repeat',
845
- backgroundPosition : img_left + 'px ' + img_top + 'px',
846
- backgroundSize : imgWidth + 'px ' + imgHeight + 'px',
847
- transition : 'all ' + bwg_transition_duration_<?php echo $bwg; ?> + 'ms ease-in-out ' + delay + 'ms',
848
- transform : 'none'
849
- });
850
- }
851
- /* Get the current slide's image.*/
852
- var cur_img = jQuery(current_image_class).find('img');
853
- /* Create a grid to hold the gridlets.*/
854
- var grid = jQuery('<span style="display: block;" />').addClass('bwg_grid_<?php echo $bwg; ?>');
855
- /* Prepend the grid to the next slide (i.e. so it's above the slide image).*/
856
- jQuery(current_image_class).prepend(grid);
857
- /* vars to calculate positioning/size of gridlets*/
858
- var cont = jQuery(".bwg_slide_bg_<?php echo $bwg; ?>");
859
- var imgWidth = cur_img.width();
860
- var imgHeight = cur_img.height();
861
- var contWidth = cont.width(),
862
- contHeight = cont.height(),
863
- imgSrc = cur_img.attr('src'),/*.replace('/thumb', ''),*/
864
- colWidth = Math.floor(contWidth / cols),
865
- rowHeight = Math.floor(contHeight / rows),
866
- colRemainder = contWidth - (cols * colWidth),
867
- colAdd = Math.ceil(colRemainder / cols),
868
- rowRemainder = contHeight - (rows * rowHeight),
869
- rowAdd = Math.ceil(rowRemainder / rows),
870
- leftDist = 0,
871
- img_leftDist = (jQuery(".bwg_slide_bg_<?php echo $bwg; ?>").width() - cur_img.width()) / 2;
872
- /* tx/ty args can be passed as 'auto'/'min-auto' (meaning use slide width/height or negative slide width/height).*/
873
- tx = tx === 'auto' ? contWidth : tx;
874
- tx = tx === 'min-auto' ? - contWidth : tx;
875
- ty = ty === 'auto' ? contHeight : ty;
876
- ty = ty === 'min-auto' ? - contHeight : ty;
877
- /* Loop through cols*/
878
- for (var i = 0; i < cols; i++) {
879
- var topDist = 0,
880
- img_topDst = (jQuery(".bwg_slide_bg_<?php echo $bwg; ?>").height() - cur_img.height()) / 2,
881
- newColWidth = colWidth;
882
- /* If imgWidth (px) does not divide cleanly into the specified number of cols, adjust individual col widths to create correct total.*/
883
- if (colRemainder > 0) {
884
- var add = colRemainder >= colAdd ? colAdd : colRemainder;
885
- newColWidth += add;
886
- colRemainder -= add;
887
- }
888
- /* Nested loop to create row gridlets for each col.*/
889
- for (var j = 0; j < rows; j++) {
890
- var newRowHeight = rowHeight,
891
- newRowRemainder = rowRemainder;
892
- /* If contHeight (px) does not divide cleanly into the specified number of rows, adjust individual row heights to create correct total.*/
893
- if (newRowRemainder > 0) {
894
- add = newRowRemainder >= rowAdd ? rowAdd : rowRemainder;
895
- newRowHeight += add;
896
- newRowRemainder -= add;
897
- }
898
- /* Create & append gridlet to grid.*/
899
- grid.append(bwg_gridlet(newColWidth, newRowHeight, topDist, img_topDst, leftDist, img_leftDist, imgSrc, imgWidth, imgHeight, i, j));
900
- topDist += newRowHeight;
901
- img_topDst -= newRowHeight;
902
- }
903
- img_leftDist -= newColWidth;
904
- leftDist += newColWidth;
905
- }
906
- /* Set event listener on last gridlet to finish transitioning.*/
907
- var last_gridlet = grid.children().last();
908
- /* Show grid & hide the image it replaces.*/
909
- grid.show();
910
- cur_img.css('opacity', 0);
911
- /* Add identifying classes to corner gridlets (useful if applying border radius).*/
912
- grid.children().first().addClass('rs-top-left');
913
- grid.children().last().addClass('rs-bottom-right');
914
- grid.children().eq(rows - 1).addClass('rs-bottom-left');
915
- grid.children().eq(- rows).addClass('rs-top-right');
916
- /* Execution steps.*/
917
- setTimeout(function () {
918
- grid.children().css({
919
- opacity: op,
920
- transform: 'rotate('+ ro +'deg) translateX('+ tx +'px) translateY('+ ty +'px) scale('+ sc +')'
921
- });
922
- }, 1);
923
- jQuery(next_image_class).css('opacity', 1);
924
- /* After transition.*/
925
- jQuery(last_gridlet).one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
926
- function bwg_after_trans() {
927
- jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
928
- jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
929
- cur_img.css('opacity', 1);
930
- bwg_change_watermark_container_<?php echo $bwg; ?>();
931
- grid.remove();
932
- bwg_trans_in_progress_<?php echo $bwg; ?> = false;
933
- if (typeof event_stack_<?php echo $bwg; ?> !== 'undefined') {
934
- if (event_stack_<?php echo $bwg; ?>.length > 0) {
935
- key = event_stack_<?php echo $bwg; ?>[0].split("-");
936
- event_stack_<?php echo $bwg; ?>.shift();
937
- bwg_change_image_<?php echo $bwg; ?>(key[0], key[1], data_<?php echo $bwg; ?>, true);
938
- }
939
- }
940
- }
941
- }
942
- function bwg_sliceV_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
943
- if (direction == 'right') {
944
- var translateY = 'min-auto';
945
- }
946
- else if (direction == 'left') {
947
- var translateY = 'auto';
948
- }
949
- bwg_grid_<?php echo $bwg; ?>(10, 1, 0, 0, translateY, 1, 0, current_image_class, next_image_class, direction);
950
- }
951
- function bwg_scaleOut_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
952
- bwg_grid_<?php echo $bwg; ?>(1, 1, 0, 0, 0, 1.5, 0, current_image_class, next_image_class, direction);
953
- }
954
- function bwg_blindH_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
955
- bwg_grid_<?php echo $bwg; ?>(10, 1, 0, 0, 0, .7, 0, current_image_class, next_image_class);
956
- }
957
  function bwg_iterator_<?php echo $bwg; ?>() {
958
  var iterator = 1;
959
  if (<?php echo $enable_slideshow_shuffle; ?>) {
192
  <div id="bwg_container2_<?php echo $bwg; ?>">
193
  <div class="bwg_slideshow_image_wrap_<?php echo $bwg; ?>">
194
  <div id="ajax_loading_<?php echo $bwg; ?>" style="text-align: center; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999;">
195
+ <img src="<?php echo BWG()->plugin_url . '/images/ajax_loader.png'; ?>" style="width: 30px; border: medium none; visibility: visible;">
196
  </div>
197
  <?php
198
  $current_pos = 0;
573
  /* For images.*/
574
  var bwg_current_image_span = jQuery(this).find("img");
575
  if (bwg_current_image_span.length) {
576
+ if (bwg_current_image_span.prop('complete')) {
577
  var width = bwg_current_image_span.width();
578
  var height = bwg_current_image_span.height();
579
  bwg_change_each_watermark_container_<?php echo $bwg; ?>(width, height);
580
+ }
581
+ else {
582
+ bwg_current_image_span.on("load", function () {
583
+ var width = bwg_current_image_span.width();
584
+ var height = bwg_current_image_span.height();
585
+ bwg_change_each_watermark_container_<?php echo $bwg; ?>(width, height);
586
+ });
587
+ }
588
  }
589
  else {
590
  /* For embeds and videos.*/
712
  }
713
  return false;
714
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  /* For browsers that does not support transitions.*/
716
  function bwg_fallback_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
717
  bwg_fade_<?php echo $bwg; ?>(current_image_class, next_image_class, direction);
718
  }
 
 
 
 
719
  function bwg_none_<?php echo $bwg; ?>(current_image_class, next_image_class, direction) {
720
  jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
721
  jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
752
  jQuery(next_image_class).fadeTo(bwg_transition_duration_<?php echo $bwg; ?>, 1);
753
  }
754
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  function bwg_iterator_<?php echo $bwg; ?>() {
756
  var iterator = 1;
757
  if (<?php echo $enable_slideshow_shuffle; ?>) {
frontend/views/BWGViewThumbnails.php CHANGED
@@ -1,418 +1,79 @@
1
  <?php
2
- class BWGViewThumbnails {
3
  public function display($params, $from_shortcode = 0, $bwg = 0) {
4
- require_once(BWG()->plugin_dir . '/framework/WDWLibrary.php');
5
-
6
- $theme_id = $params['theme_id'];
7
- $order_by = $params['order_by'];
8
- $image_right_click = isset(BWG()->options->image_right_click) ? BWG()->options->image_right_click : 0;
9
- $placeholder = $params['placeholder'];
10
- $gallery_download = $params['gallery_download'];
11
- $play_icon = $params['play_icon'];
12
- if ( isset($_POST['sortImagesByValue_' . $bwg]) ) {
13
- $sort_by = esc_html($_POST['sortImagesByValue_' . $bwg]);
14
- if ( $sort_by == 'random' ) {
15
- $params['sort_by'] = 'RAND()';
16
- }
17
- else {
18
- if ( $sort_by == 'default' ) {
19
- $params['sort_by'] = $params['sort_by'];
20
- }
21
- else {
22
- $params['sort_by'] = $sort_by;
23
- }
24
- }
25
- }
26
- $theme_row = WDWLibrary::get_theme_row_data($theme_id);
27
- if (!$theme_row) {
28
- echo WDWLibrary::message(__('There is no theme selected or the theme was deleted.', BWG()->prefix), 'wd_error');
29
- return;
30
- }
31
- $type = "";
32
- if (isset($params['type'])) {
33
- $type = $params['type'];
34
- }
35
-
36
- if (!isset($theme_row->thumb_gal_title_font_color)) {
37
- $theme_row->thumb_gal_title_font_color = 'CCCCCC';
38
- }
39
- if (!isset($theme_row->thumb_gal_title_font_style)) {
40
- $theme_row->thumb_gal_title_font_style = 'segoe ui';
41
- }
42
- if (!isset($theme_row->thumb_gal_title_font_size)) {
43
- $theme_row->thumb_gal_title_font_size = 16;
44
- }
45
- if (!isset($theme_row->thumb_gal_title_font_weight)) {
46
- $theme_row->thumb_gal_title_font_weight = 'bold';
47
- }
48
- if (!isset($theme_row->thumb_gal_title_margin)) {
49
- $theme_row->thumb_gal_title_margin = '2px';
50
- }
51
- if (!isset($theme_row->thumb_gal_title_shadow)) {
52
- $theme_row->thumb_gal_title_shadow = '0px 0px 0px #888888';
53
- }
54
- if (!isset($theme_row->thumb_gal_title_align)) {
55
- $theme_row->thumb_gal_title_align = 'center';
56
- }
57
- $gallery_row = WDWLibrary::get_gallery_row_data($params['gallery_id']);
58
- if ( !isset($gallery_row) || (!$gallery_row && ($type == '') && $params["tag"] == 0) ) {
59
- echo WDWLibrary::message(__('There is no gallery selected or the gallery was deleted.', BWG()->prefix), 'wd_error');
60
- return;
61
- }
62
- $params['load_more_image_count'] = (isset($params['load_more_image_count']) && ($params['image_enable_page'] == 2)) ? $params['load_more_image_count'] : $params['images_per_page'];
63
- $items_per_page = array('images_per_page' => $params['images_per_page'], 'load_more_image_count' => $params['load_more_image_count']);
64
- $image_rows = WDWLibrary::get_image_rows_data($params['gallery_id'], $bwg, $type, 'bwg_tag_id_bwg_standart_thumbnails_' . $bwg, $params['tag'], $params['images_per_page'], $params['load_more_image_count'], $params['sort_by'], $order_by);
65
- if ($params['image_enable_page'] && $params['images_per_page']) {
66
- $page_nav = $image_rows['page_nav'];
67
- }
68
  $image_rows = $image_rows['images'];
69
- $images_count = count($image_rows);
70
- if (!$images_count) {
71
- if ($params['tag']) {
72
- echo WDWLibrary::message(__('There are no images.', BWG()->prefix), 'wd_error');
73
- }
74
- else {
75
- echo WDWLibrary::message(__('There are no images in this gallery.', BWG()->prefix), 'wd_error');
76
- }
77
- }
78
- $tags_rows = WDWLibrary::get_tags_rows_data($params['gallery_id']);
79
  $inline_style = $this->inline_styles($bwg, $theme_row, $params);
80
  if (BWG()->options->use_inline_stiles_and_scripts) {
81
- wp_enqueue_style('bwg_frontend');
82
  wp_add_inline_style('bwg_frontend', $inline_style);
83
- wp_enqueue_style('bwg_font-awesome');
84
- wp_enqueue_style('bwg_mCustomScrollbar');
85
- wp_enqueue_style('bwg_googlefonts');
86
- if (isset($params['show_tag_box']) && $params['show_tag_box']) {
87
- wp_enqueue_style('bwg_sumoselect');
88
- if (!wp_script_is('bwg_sumoselect', 'done')) {
89
- wp_print_scripts('bwg_sumoselect');
90
- }
91
- }
92
- if ($params['thumb_click_action'] == 'open_lightbox') {
93
- if (!wp_script_is('bwg_mCustomScrollbar', 'done')) {
94
- wp_print_scripts('bwg_mCustomScrollbar');
95
- }
96
- if (!wp_script_is('jquery-fullscreen', 'done')) {
97
- wp_print_scripts('jquery-fullscreen');
98
- }
99
- if (!wp_script_is('bwg_gallery_box', 'done')) {
100
- wp_print_scripts('bwg_gallery_box');
101
- }
102
- if ( BWG()->is_pro && !wp_script_is('bwg_raty', 'done') ) {
103
- wp_print_scripts('bwg_raty');
104
- }
105
- }
106
- if (!wp_script_is('bwg_frontend', 'done')) {
107
- wp_print_scripts('bwg_frontend');
108
- }
109
- if (!wp_script_is('bwg_jquery_mobile', 'done')) {
110
- wp_print_scripts('bwg_jquery_mobile');
111
- }
112
  }
113
  else {
114
  echo '<style>' . $inline_style . '</style>';
115
  }
 
116
  ?>
117
- <div id="bwg_container1_<?php echo $bwg; ?>">
118
- <div id="bwg_container2_<?php echo $bwg; ?>">
119
- <form id="gal_front_form_<?php echo $bwg; ?>" method="post" action="#" data-current="<?php echo $bwg; ?>">
120
- <?php
121
- if ($params['show_search_box']) {
122
- WDWLibrary::ajax_html_frontend_search_box('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $images_count, $params['search_box_width'], $placeholder);
123
- }
124
- if (isset($params['show_sort_images']) && $params['show_sort_images']) {
125
- WDWLibrary::ajax_html_frontend_sort_box('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $params['sort_by'], $params['search_box_width']);
126
- }
127
- if (isset($params['show_tag_box']) && $params['show_tag_box']) {
128
- WDWLibrary::ajax_html_frontend_search_tags('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $images_count, $tags_rows);
129
- }
130
- if ($params['showthumbs_name'] && $gallery_row->name != '') {
131
- ?>
132
- <div class="bwg_gal_title_<?php echo $bwg; ?>"><?php echo $gallery_row->name; ?></div>
133
- <?php
134
- }
135
- if ($params['show_gallery_description'] && $gallery_row->name != '') {
136
- ?>
137
- <div class="bwg_gal_title_<?php echo $bwg; ?>"><?php echo $gallery_row->description; ?></div>
138
- <?php
139
- }
140
- ?>
141
- <div style="background-color:rgba(0, 0, 0, 0); text-align: <?php echo $theme_row->thumb_align; ?>; width:100%; position: relative;">
142
- <div id="ajax_loading_<?php echo $bwg; ?>" style="position:absolute;width: 100%; z-index: 115; text-align: center; height: 100%; vertical-align: middle; display:none;">
143
- <div style="display: table; vertical-align: middle; width: 100%; height: 100%; background-color: #FFFFFF; opacity: 0.7; filter: Alpha(opacity=70);">
144
- <div style="display: table-cell; text-align: center; position: relative; vertical-align: middle;" >
145
- <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading" style="display: inline-block; text-align:center; position:relative; vertical-align:middle; background-image:url(<?php echo BWG()->plugin_url . '/images/ajax_loader.gif'; ?>); float: none; width:30px;height:30px;background-size:30px 30px;">
146
- </div>
147
- </div>
148
- </div>
149
- </div>
150
- <?php
151
- if ($params['image_enable_page'] && $params['images_per_page'] && ($theme_row->page_nav_position == 'top')) {
152
- WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo, $params['image_enable_page']);
153
- }
154
- ?>
155
- <div id="bwg_standart_thumbnails_<?php echo $bwg; ?>" class="bwg_standart_thumbnails_<?php echo $bwg; ?>">
156
- <?php
157
- foreach ($image_rows as $image_row) {
158
- $is_embed = preg_match('/EMBED/',$image_row->filetype) == 1 ? true :false;
159
- $is_embed_video = preg_match('/VIDEO/',$image_row->filetype) == 1 ? true :false;
160
- $is_embed_instagram = preg_match('/EMBED_OEMBED_INSTAGRAM/',$image_row->filetype) == 1 ? true : false;
161
- if (!$is_embed) {
162
- $thumb_image_url = htmlspecialchars_decode(ABSPATH . BWG()->upload_dir . $image_row->thumb_url, ENT_COMPAT | ENT_QUOTES);
163
- $thumb_image_url = explode('?bwg',$thumb_image_url);
164
- list($image_thumb_width, $image_thumb_height) = getimagesize($thumb_image_url[0]);
165
- }
166
- else {
167
- $image_thumb_width = $params['thumb_width'];
168
- if($image_row->resolution != ''){
169
- if (!$is_embed_instagram) {
170
- $resolution_arr = explode(" ", $image_row->resolution);
171
- $resolution_w = intval($resolution_arr[0]);
172
- $resolution_h = intval($resolution_arr[2]);
173
- if($resolution_w != 0 && $resolution_h != 0){
174
- $scale = $scale = max($params['thumb_width'] / $resolution_w, $params['thumb_height'] / $resolution_h);
175
- $image_thumb_width = $resolution_w * $scale;
176
- $image_thumb_height = $resolution_h * $scale;
177
- }
178
- else{
179
- $image_thumb_width = $params['thumb_width'];
180
- $image_thumb_height = $params['thumb_height'];
181
- }
182
- }
183
- else {
184
- // this will be ok while instagram thumbnails width and height are the same
185
- $image_thumb_width = min($params['thumb_width'], $params['thumb_height']);
186
- $image_thumb_height = $image_thumb_width;
187
- }
188
- }
189
- else{
190
- $image_thumb_width = $params['thumb_width'];
191
- $image_thumb_height = $params['thumb_height'];
192
- }
193
- }
194
- $scale = max($params['thumb_width'] / $image_thumb_width, $params['thumb_height'] / $image_thumb_height);
195
- $image_thumb_width *= $scale;
196
- $image_thumb_height *= $scale;
197
- $thumb_left = ($params['thumb_width'] - $image_thumb_width) / 2;
198
- $thumb_top = ($params['thumb_height'] - $image_thumb_height) / 2;
199
- ?>
200
- <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . (BWG()->options->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . BWG()->upload_dir . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '"' ) : ($params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
201
- <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
202
- <?php
203
- if ($params['image_title'] == 'show' and $theme_row->thumb_title_pos == 'top') {
204
- ?>
205
- <span class="bwg_title_spun1_<?php echo $bwg; ?>">
206
- <span class="bwg_title_spun2_<?php echo $bwg; ?>">
207
- <?php echo $image_row->alt; ?>
208
- </span>
209
- </span>
210
- <?php
211
- }
212
- ?>
213
- <span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>" >
214
- <span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
215
- <?php
216
- if ( $is_embed_video && $play_icon ) {
217
- ?>
218
- <span class="bwg_play_icon_spun_<?php echo $bwg; ?>">
219
- <i title="<?php echo __('Play', BWG()->prefix); ?>" class="fa fa-play bwg_play_icon_<?php echo $bwg; ?>"></i>
220
- </span>
221
- <?php
222
- }
223
- if ($params['image_title'] == 'hover') {
224
- ?>
225
- <span class="bwg_title_spun1_<?php echo $bwg; ?>">
226
- <span class="bwg_title_spun2_<?php echo $bwg; ?>">
227
- <?php echo $image_row->alt; ?>
228
- </span>
229
- </span>
230
- <?php
231
- }
232
- if(function_exists('BWGEC') && $params['ecommerce_icon'] == 'hover' && $image_row->pricelist_id){
233
- ?>
234
- <span class="bwg_ecommerce_spun1_<?php echo $bwg; ?>">
235
- <span class="bwg_ecommerce_spun2_<?php echo $bwg; ?>">
236
- <i title="<?php echo __('Open', BWG()->prefix); ?>" class="bwg_ctrl_btn bwg_open fa fa-share-square" ></i>
237
- <i title="<?php echo __('Ecommerce', BWG()->prefix); ?>" class="bwg_ctrl_btn bwg_ecommerce fa fa-shopping-cart" ></i>
238
- </span>
239
- </span>
240
- <?php
241
- }
242
- ?>
243
- <img class="bwg_standart_thumb_img_<?php echo $bwg; ?>" style="max-height: none !important; max-width: none !important; padding: 0 !important; width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;" id="<?php echo $image_row->id; ?>" src="<?php echo ($is_embed ? "" : site_url() . '/' . BWG()->upload_dir) . $image_row->thumb_url; ?>" alt="<?php echo $image_row->alt; ?>" />
244
- </span>
245
- </span>
246
- <?php
247
- if ($params['image_title'] == 'show' and $theme_row->thumb_title_pos == 'bottom') {
248
- ?>
249
- <span class="bwg_title_spun1_<?php echo $bwg; ?>">
250
- <span class="bwg_title_spun2_<?php echo $bwg; ?>">
251
- <?php echo $image_row->alt; ?>
252
- </span>
253
- </span>
254
- <?php
255
- }
256
-
257
- if(function_exists('BWGEC') && $params['ecommerce_icon'] == 'show' && $image_row->pricelist_id){
258
- ?>
259
- <span class="bwg_ecommerce_spun1_<?php echo $bwg; ?>">
260
- <span class="bwg_ecommerce_spun2_<?php echo $bwg; ?>">
261
- <i title="<?php echo __('Open', BWG()->prefix); ?>" class="bwg_ctrl_btn bwg_open fa fa-share-square" ></i>
262
- <i title="<?php echo __('Ecommerce', BWG()->prefix); ?>" class="bwg_ctrl_btn bwg_ecommerce fa fa-shopping-cart" ></i>
263
- </span>
264
- </span>
265
- <?php
266
- }
267
- }
268
- ?>
269
- </span>
270
- </a>
271
- </div>
272
- <?php
273
- if ( BWG()->is_pro && $gallery_download && $image_rows ) {
274
- $query_url = addslashes(add_query_arg(array(
275
- "action" => "download_gallery",
276
- "gallery_id" => $params['gallery_id'],
277
- ), admin_url('admin-ajax.php')));
278
- ?>
279
- <div class="bwg_download_gallery">
280
- <a href="<?php echo $query_url; ?>">
281
- <i title="<?php _e('Download gallery', BWG()->prefix); ?>" class="bwg_ctrl_btn fa fa-download"></i>
282
- </a>
283
- </div>
284
- <?php
285
- }
286
- if ($params['image_enable_page'] && $params['images_per_page'] && ($theme_row->page_nav_position == 'bottom')) {
287
- WDWLibrary::ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo, $params['image_enable_page']);
288
- }
289
- ?>
290
- </div>
291
- </form>
292
- <div id="bwg_spider_popup_loading_<?php echo $bwg; ?>" class="bwg_spider_popup_loading"></div>
293
- <div id="spider_popup_overlay_<?php echo $bwg; ?>" class="spider_popup_overlay" onclick="spider_destroypopup(1000)"></div>
294
- </div>
295
- </div>
296
- <?php
297
- $params_array = array(
298
- 'action' => 'GalleryBox',
299
- 'tags' => (isset($params['tag']) ? $params['tag'] : 0),
300
- 'current_view' => $bwg,
301
- 'gallery_id' => $params['gallery_id'],
302
- 'theme_id' => $params['theme_id'],
303
- 'thumb_width' => $params['thumb_width'],
304
- 'thumb_height' => $params['thumb_height'],
305
- 'open_with_fullscreen' => $params['popup_fullscreen'],
306
- 'open_with_autoplay' => $params['popup_autoplay'],
307
- 'image_width' => $params['popup_width'],
308
- 'image_height' => $params['popup_height'],
309
- 'image_effect' => $params['popup_effect'],
310
- 'wd_sor' => (isset($params['type']) ? 'date' : (($params['sort_by'] == 'RAND()') ? 'order' : $params['sort_by'])),
311
- 'wd_ord' => $order_by,
312
- 'enable_image_filmstrip' => $params['popup_enable_filmstrip'],
313
- 'image_filmstrip_height' => $params['popup_filmstrip_height'],
314
- 'enable_image_ctrl_btn' => $params['popup_enable_ctrl_btn'],
315
- 'enable_image_fullscreen' => $params['popup_enable_fullscreen'],
316
- 'popup_enable_info' => $params['popup_enable_info'],
317
- 'popup_info_always_show' => $params['popup_info_always_show'],
318
- 'popup_info_full_width' => $params['popup_info_full_width'],
319
- 'popup_hit_counter' => $params['popup_hit_counter'],
320
- 'popup_enable_rate' => $params['popup_enable_rate'],
321
- 'slideshow_interval' => $params['popup_interval'],
322
- 'enable_comment_social' => $params['popup_enable_comment'],
323
- 'enable_image_facebook' => $params['popup_enable_facebook'],
324
- 'enable_image_twitter' => $params['popup_enable_twitter'],
325
- 'enable_image_google' => $params['popup_enable_google'],
326
- 'enable_image_pinterest' => $params['popup_enable_pinterest'],
327
- 'enable_image_tumblr' => $params['popup_enable_tumblr'],
328
- 'watermark_type' => $params['watermark_type'],
329
- 'slideshow_effect_duration' => isset($params['popup_effect_duration']) ? $params['popup_effect_duration'] : 1,
330
- );
331
- if ( BWG()->is_pro ) {
332
- $current_url = (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
333
- $params_array['current_url'] = urlencode($current_url);
334
- $params_array['enable_image_ecommerce'] = $params['popup_enable_ecommerce'];
335
- }
336
- if ($params['watermark_type'] != 'none') {
337
- $params_array['watermark_link'] = $params['watermark_link'];
338
- $params_array['watermark_opacity'] = $params['watermark_opacity'];
339
- $params_array['watermark_position'] = $params['watermark_position'];
340
  }
341
- if ($params['watermark_type'] == 'text') {
342
- $params_array['watermark_text'] = $params['watermark_text'];
343
- $params_array['watermark_font_size'] = $params['watermark_font_size'];
344
- $params_array['watermark_font'] = $params['watermark_font'];
345
- $params_array['watermark_color'] = $params['watermark_color'];
346
  }
347
- elseif ($params['watermark_type'] == 'image') {
348
- $params_array['watermark_url'] = $params['watermark_url'];
349
- $params_array['watermark_width'] = $params['watermark_width'];
350
- $params_array['watermark_height'] = $params['watermark_height'];
 
 
 
351
  }
352
- ?>
353
- <script>
354
- function bwg_gallery_box_<?php echo $bwg; ?>(image_id, openEcommerce) {
355
- if(typeof openEcommerce == undefined){
356
- openEcommerce = false;
357
  }
358
- var ecommerce = openEcommerce == true ? "&open_ecommerce=1" : "";
359
- var filterTags = jQuery("#bwg_tags_id_bwg_standart_thumbnails_<?php echo $bwg; ?>" ).val() ? jQuery("#bwg_tags_id_bwg_standart_thumbnails_<?php echo $bwg; ?>" ).val() : 0;
360
- var filtersearchname = jQuery("#bwg_search_input_<?php echo $bwg; ?>" ).val() ? "&filter_search_name_<?php echo $bwg; ?>=" + jQuery("#bwg_search_input_<?php echo $bwg; ?>" ).val() : '';
361
- spider_createpopup('<?php echo addslashes(add_query_arg($params_array, admin_url('admin-ajax.php'))); ?>&image_id=' + image_id + "&filter_tag_<?php echo $bwg; ?>=" + filterTags + ecommerce + filtersearchname, '<?php echo $bwg; ?>', '<?php echo $params['popup_width']; ?>', '<?php echo $params['popup_height']; ?>', 1, 'testpopup', 5, "<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>");
362
- }
363
- <?php
364
- if ( BWG()->is_pro ) {
365
  ?>
366
- var bwg_hash = window.location.hash.substring(1);
367
- if (bwg_hash) {
368
- if (bwg_hash.indexOf("bwg") != "-1") {
369
- bwg_hash_array = bwg_hash.replace("bwg", "").split("/");
370
- if(bwg_hash_array[0] == "<?php echo $params_array['gallery_id']; ?>"){
371
- bwg_gallery_box_<?php echo $bwg; ?>(bwg_hash_array[1]);
372
- }
373
- }
374
- }
 
 
 
 
 
 
 
 
 
 
 
375
  <?php
376
  }
377
  ?>
378
- function bwg_document_ready_<?php echo $bwg; ?>() {
379
- var bwg_touch_flag = false;
380
- jQuery(".bwg_lightbox_<?php echo $bwg; ?>").on("click", function () {
381
- if (!bwg_touch_flag) {
382
- bwg_touch_flag = true;
383
- setTimeout(function(){ bwg_touch_flag = false; }, 100);
384
- bwg_gallery_box_<?php echo $bwg; ?>(jQuery(this).attr("data-image-id"));
385
- return false;
386
- }
387
- });
388
-
389
- jQuery(".bwg_lightbox_<?php echo $bwg; ?> .bwg_ecommerce").on("click", function (event) {
390
- event.stopPropagation();
391
- if (!bwg_touch_flag) {
392
- bwg_touch_flag = true;
393
- setTimeout(function(){ bwg_touch_flag = false; }, 100);
394
- var image_id = jQuery(this).closest(".bwg_lightbox_<?php echo $bwg; ?>").attr("data-image-id");
395
- bwg_gallery_box_<?php echo $bwg; ?>(image_id, true);
396
- return false;
397
- }
398
- });
399
- <?php
400
- if ($image_right_click) {
401
- ?>
402
- /* Disable right click.*/
403
- jQuery('div[id^="bwg_container"]').bind("contextmenu", function () {
404
- return false;
405
- });
406
- jQuery('div[id^="bwg_container"]').css('webkitTouchCallout','none');
407
- <?php
408
- }
409
- ?>
410
- }
411
- jQuery(document).ready(function () {
412
- bwg_document_ready_<?php echo $bwg; ?>();
413
- });
414
- </script>
415
  <?php
 
416
  if ($from_shortcode) {
417
  return;
418
  }
@@ -424,263 +85,148 @@ class BWGViewThumbnails {
424
  private function inline_styles($bwg, $theme_row, $params) {
425
  ob_start();
426
  $rgb_thumbs_bg_color = WDWLibrary::spider_hex2rgb($theme_row->thumbs_bg_color);
427
- $rgb_page_nav_font_color = WDWLibrary::spider_hex2rgb($theme_row->page_nav_font_color);
428
  ?>
429
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumbnails_<?php echo $bwg; ?> * {
430
- -moz-box-sizing: border-box;
431
- box-sizing: border-box;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  }
433
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?> {
434
- -moz-box-sizing: content-box;
435
- box-sizing: content-box;
436
- background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
437
- display: inline-block;
438
- height: <?php echo $params['thumb_height']; ?>px;
439
- width: <?php echo $params['thumb_width']; ?>px;
440
- margin: <?php echo $theme_row->thumb_margin; ?>px;
 
 
 
 
441
  padding: <?php echo $theme_row->thumb_padding; ?>px;
 
 
442
  opacity: <?php echo number_format($theme_row->thumb_transparent / 100, 2, ".", ""); ?>;
443
  filter: Alpha(opacity=<?php echo $theme_row->thumb_transparent; ?>);
444
- text-align: center;
445
- vertical-align: middle;
446
- <?php echo ($theme_row->thumb_transition) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
447
- z-index: 100;
448
  }
449
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover {
450
- backface-visibility: hidden;
451
- -webkit-backface-visibility: hidden;
452
- -moz-backface-visibility: hidden;
453
- -ms-backface-visibility: hidden;
454
- opacity: 1;
455
- filter: Alpha(opacity=100);
456
- z-index: 102;
457
- position: relative;
458
  }
 
 
 
 
459
  @media only screen and (min-width: 480px) {
460
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover {
 
 
 
461
  -ms-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
462
  -webkit-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
463
  transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
464
  }
465
  }
466
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
467
- border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
468
- border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
469
- box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
470
- display: inline-block;
471
- height: <?php echo $params['thumb_height']; ?>px;
472
- overflow: hidden;
473
- width: <?php echo $params['thumb_width']; ?>px;
474
- }
475
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumbnails_<?php echo $bwg; ?> {
476
- background-color: rgba(<?php echo $rgb_thumbs_bg_color['red']; ?>, <?php echo $rgb_thumbs_bg_color['green']; ?>, <?php echo $rgb_thumbs_bg_color['blue']; ?>, <?php echo number_format($theme_row->thumb_bg_transparent / 100, 2, ".", ""); ?>);
477
- display: inline-block;
478
- font-size: 0;
479
- max-width: <?php echo $params['image_column_number'] * ($params['thumb_width'] + 2 * (2 + $theme_row->thumb_margin + $theme_row->thumb_padding + $theme_row->thumb_border_width)); ?>px;
480
- text-align: <?php echo $theme_row->thumb_align; ?>;
481
- }
482
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_<?php echo $bwg; ?> {
483
- display: inline-block;
484
- text-align: center;
485
- }
486
- <?php
487
- if(function_exists('BWGEC')){
488
- if( $params['ecommerce_icon'] == 'show' ){
489
- ?>
490
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun1_<?php echo $bwg; ?>{
491
- display: block;
492
- margin: 0 auto;
493
- opacity: 1;
494
- filter: Alpha(opacity=100);
495
- text-align: right;
496
- width: <?php echo $params['thumb_width']; ?>px;
497
- }
498
  <?php
499
- }
500
- elseif ($params['ecommerce_icon'] == 'hover') { /* Show ecommerce icon on hover.*/
501
  ?>
502
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun1_<?php echo $bwg; ?> {
503
- display: table;
504
- height: inherit;
505
- left: -3000px;
506
- opacity: 0;
507
- filter: Alpha(opacity=0);
508
- position: absolute;
509
- top: 0px;
510
- width: inherit;
511
- }
512
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover img{
513
- opacity:0.5;
514
- }
515
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover{
516
- background:#000;
517
- }
518
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun1_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?> i{
519
- opacity:1 !important;
520
- font-size:20px !important;
521
- z-index: 45;
522
  }
523
- <?php
 
 
 
524
  }
525
  }
526
- if ($params['image_title'] == 'show') { /* Show image title at the bottom.*/
527
- ?>
528
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_title_spun1_<?php echo $bwg; ?> {
529
- display: block;
530
- margin: 0 auto;
531
- opacity: 1;
532
- filter: Alpha(opacity=100);
533
- text-align: center;
534
- width: <?php echo $params['thumb_width']; ?>px;
535
- }
536
  <?php
537
  }
538
- elseif ($params['image_title'] == 'hover') { /* Show image title on hover.*/
 
 
 
 
 
539
  ?>
540
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_title_spun1_<?php echo $bwg; ?> {
541
- display: table;
542
- height: inherit;
543
- left: -3000px;
544
- opacity: 0;
545
- filter: Alpha(opacity=0);
546
- position: absolute;
547
- top: 0px;
548
- width: inherit;
549
- }
 
 
 
 
550
  <?php
551
  }
552
  ?>
553
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover .bwg_title_spun1_<?php echo $bwg; ?> , #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?>:hover .bwg_ecommerce_spun1_<?php echo $bwg; ?>{
554
- left: <?php echo $theme_row->thumb_padding; ?>px;
555
- top: <?php echo $theme_row->thumb_padding; ?>px;
556
- opacity: 1;
557
- filter: Alpha(opacity=100);
558
- }
559
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_title_spun2_<?php echo $bwg; ?>, #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_ecommerce_spun2_<?php echo $bwg; ?> {
560
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
561
- display: table-cell;
562
  font-family: <?php echo $theme_row->thumb_title_font_style; ?>;
563
  font-size: <?php echo $theme_row->thumb_title_font_size; ?>px;
564
  font-weight: <?php echo $theme_row->thumb_title_font_weight; ?>;
565
- height: inherit;
566
  padding: <?php echo $theme_row->thumb_title_margin; ?>;
567
  text-shadow: <?php echo $theme_row->thumb_title_shadow; ?>;
568
- vertical-align: middle;
569
- width: inherit;
570
- word-wrap: break-word;
571
- }
572
- /*pagination styles*/
573
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .tablenav-pages_<?php echo $bwg; ?> {
574
- text-align: <?php echo $theme_row->page_nav_align; ?>;
575
- font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
576
- font-family: <?php echo $theme_row->page_nav_font_style; ?>;
577
- font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
578
- color: #<?php echo $theme_row->page_nav_font_color; ?>;
579
- margin: 6px 0 4px;
580
- display: block;
581
- height: 30px;
582
- line-height: 30px;
583
- }
584
- @media only screen and (max-width : 320px) {
585
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
586
- display: none;
587
- }
588
  }
589
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .displaying-num_<?php echo $bwg; ?> {
590
- font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
591
- font-family: <?php echo $theme_row->page_nav_font_style; ?>;
592
- font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
593
- color: #<?php echo $theme_row->page_nav_font_color; ?>;
594
- margin-right: 10px;
595
- vertical-align: middle;
596
- }
597
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .paging-input_<?php echo $bwg; ?> {
598
- font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
599
- font-family: <?php echo $theme_row->page_nav_font_style; ?>;
600
- font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
601
- color: #<?php echo $theme_row->page_nav_font_color; ?>;
602
- vertical-align: middle;
603
  }
604
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .tablenav-pages_<?php echo $bwg; ?> a.disabled,
605
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .tablenav-pages_<?php echo $bwg; ?> a.disabled:hover,
606
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .tablenav-pages_<?php echo $bwg; ?> a.disabled:focus {
607
- cursor: default;
608
- color: rgba(<?php echo $rgb_page_nav_font_color['red']; ?>, <?php echo $rgb_page_nav_font_color['green']; ?>, <?php echo $rgb_page_nav_font_color['blue']; ?>, 0.5);
609
  }
610
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .tablenav-pages_<?php echo $bwg; ?> a {
611
- cursor: pointer;
612
- font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
613
- font-family: <?php echo $theme_row->page_nav_font_style; ?>;
614
- font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
615
- color: #<?php echo $theme_row->page_nav_font_color; ?>;
616
- text-decoration: none;
617
- padding: <?php echo $theme_row->page_nav_padding; ?>;
618
- margin: <?php echo $theme_row->page_nav_margin; ?>;
619
- border-radius: <?php echo $theme_row->page_nav_border_radius; ?>;
620
- border-style: <?php echo $theme_row->page_nav_border_style; ?>;
621
- border-width: <?php echo $theme_row->page_nav_border_width; ?>px;
622
- border-color: #<?php echo $theme_row->page_nav_border_color; ?>;
623
- background-color: #<?php echo $theme_row->page_nav_button_bg_color; ?>;
624
- opacity: <?php echo number_format($theme_row->page_nav_button_bg_transparent / 100, 2, ".", ""); ?>;
625
- filter: Alpha(opacity=<?php echo $theme_row->page_nav_button_bg_transparent; ?>);
626
- box-shadow: <?php echo $theme_row->page_nav_box_shadow; ?>;
627
- <?php echo ($theme_row->page_nav_button_transition ) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
628
  }
629
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_back_<?php echo $bwg; ?> {
630
- background-color: rgba(0, 0, 0, 0);
631
- color: #<?php echo $theme_row->album_compact_back_font_color; ?> !important;
632
- cursor: pointer;
633
- display: block;
634
- font-family: <?php echo $theme_row->album_compact_back_font_style; ?>;
635
- font-size: <?php echo $theme_row->album_compact_back_font_size; ?>px;
636
- font-weight: <?php echo $theme_row->album_compact_back_font_weight; ?>;
637
- text-decoration: none;
638
- padding: <?php echo $theme_row->album_compact_back_padding; ?>;
639
  }
 
640
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> #spider_popup_overlay_<?php echo $bwg; ?> {
641
  background-color: #<?php echo $theme_row->lightbox_overlay_bg_color; ?>;
642
  opacity: <?php echo number_format($theme_row->lightbox_overlay_bg_transparent / 100, 2, ".", ""); ?>;
643
  filter: Alpha(opacity=<?php echo $theme_row->lightbox_overlay_bg_transparent; ?>);
644
  }
645
- .bwg_play_icon_spun_<?php echo $bwg; ?> {
646
- width: inherit;
647
- height: inherit;
648
- display: table;
649
- position: absolute;
650
- }
651
- .bwg_play_icon_<?php echo $bwg; ?> {
652
- color: #<?php echo $theme_row->thumb_title_font_color; ?>;
653
- font-size: <?php echo 2 * $theme_row->thumb_title_font_size; ?>px;
654
- vertical-align: middle;
655
- display: table-cell !important;
656
- z-index: 1;
657
- text-align: center;
658
- margin: 0 auto;
659
- }
660
-
661
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_gal_title_<?php echo $bwg; ?> {
662
- background-color: rgba(0, 0, 0, 0);
663
- color: #<?php echo $theme_row->thumb_gal_title_font_color; ?>;
664
- display: block;
665
- font-family: <?php echo $theme_row->thumb_gal_title_font_style; ?>;
666
- font-size: <?php echo $theme_row->thumb_gal_title_font_size; ?>px;
667
- font-weight: <?php echo $theme_row->thumb_gal_title_font_weight; ?>;
668
- padding: <?php echo $theme_row->thumb_gal_title_margin; ?>;
669
- text-shadow: <?php echo $theme_row->thumb_gal_title_shadow; ?>;
670
- text-align: <?php echo $theme_row->thumb_gal_title_align; ?>;
671
- }
672
- @media screen and (max-width: <?php echo $params['thumb_width'] + 100; ?>px) {
673
- div[class^="bwg_standart_thumbnails_"],
674
- span[class^="bwg_standart_thumb_"],
675
- img[class^="bwg_standart_thumb_img_"],
676
- span[class^="bwg_title_spun1_"] {
677
- width: 100% !important;
678
- height: auto !important;
679
- }
680
- img[class^="bwg_standart_thumb_img_"] {
681
- margin:0px auto !important;
682
- }
683
- }
684
  <?php
685
  return ob_get_clean();
686
  }
1
  <?php
2
+ class BWGViewThumbnails extends BWGViewSite {
3
  public function display($params, $from_shortcode = 0, $bwg = 0) {
4
+ $theme_row = $params['theme_row'];
5
+ $image_rows = $params['image_rows'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  $image_rows = $image_rows['images'];
7
+
 
 
 
 
 
 
 
 
 
8
  $inline_style = $this->inline_styles($bwg, $theme_row, $params);
9
  if (BWG()->options->use_inline_stiles_and_scripts) {
 
10
  wp_add_inline_style('bwg_frontend', $inline_style);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  }
12
  else {
13
  echo '<style>' . $inline_style . '</style>';
14
  }
15
+ ob_start();
16
  ?>
17
+ <div data-max-count="<?php echo $params['image_column_number']; ?>"
18
+ data-thumbnail-width="<?php echo $params['thumb_width']; ?>"
19
+ data-bwg="<?php echo $bwg; ?>"
20
+ id="bwg_standart_thumbnails_<?php echo $bwg; ?>"
21
+ class="bwg-container-<?php echo $bwg; ?> bwg-thumbnails bwg-container bwg-border-box">
22
+ <?php
23
+ foreach ($image_rows as $image_row) {
24
+ $is_embed = preg_match('/EMBED/',$image_row->filetype) == 1 ? true : false;
25
+ $is_embed_video = preg_match('/VIDEO/',$image_row->filetype) == 1 ? true : false;
26
+ $class = '';
27
+ $data_image_id = '';
28
+ $href = '';
29
+ $title = '<div class="bwg-title1"><div class="bwg-title2">' . ($image_row->alt ? $image_row->alt : '&nbsp;') . '</div></div>';
30
+ $play_icon = '<div class="bwg-play-icon1"><i title="' . __('Play', BWG()->prefix) . '" class="fa fa-play bwg-title2 bwg-play-icon2"></i></div>';
31
+ $ecommerce_icon = '<div class="bwg-ecommerce1"><div class="bwg-ecommerce2">';
32
+ if ( $image_row->pricelist_id ) {
33
+ $ecommerce_icon .= '<i title="' . __('Open', BWG()->prefix) . '" class="bwg_ctrl_btn bwg_open fa fa-share-square" ></i>&nbsp;';
34
+ $ecommerce_icon .= '<i title="' . __('Ecommerce', BWG()->prefix) . '" class="bwg_ctrl_btn bwg_ecommerce fa fa-shopping-cart" ></i>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
+ else {
37
+ $ecommerce_icon .= '&nbsp;';
 
 
 
38
  }
39
+ $ecommerce_icon .= '</div></div>';
40
+ if ( $params['thumb_click_action'] == 'open_lightbox' ) {
41
+ $class = ' class="bwg_lightbox"';
42
+ $data_image_id = ' data-image-id="' . $image_row->id . '"';
43
+ if ( BWG()->options->enable_seo ) {
44
+ $href = ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . BWG()->upload_dir . $image_row->image_url) . '"';
45
+ }
46
  }
47
+ elseif ( $params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ) {
48
+ $href = ' href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"';
 
 
 
49
  }
 
 
 
 
 
 
 
50
  ?>
51
+ <div class="bwg-item">
52
+ <a <?php echo $class; ?><?php echo $data_image_id; ?><?php echo $href; ?>>
53
+ <?php if ( $params['image_title'] == 'show' && $theme_row->thumb_title_pos == 'top' ) { echo $title; } ?>
54
+ <div class="bwg-item0">
55
+ <div class="bwg-item1">
56
+ <?php if ( $params['image_title'] == 'hover' ) { echo $title; } ?>
57
+ <?php if ( function_exists('BWGEC') && $params['ecommerce_icon'] == 'hover' && $image_row->pricelist_id ) { echo $ecommerce_icon; } ?>
58
+ <?php if ( $is_embed_video && $params['play_icon'] ) { echo $play_icon; } ?>
59
+ <div class="bwg-item2">
60
+ <img class="bwg_standart_thumb_img_<?php echo $bwg; ?>"
61
+ id="<?php echo $image_row->id; ?>"
62
+ src="<?php echo ($is_embed ? "" : site_url() . '/' . BWG()->upload_dir) . $image_row->thumb_url; ?>"
63
+ alt="<?php echo $image_row->alt; ?>" />
64
+ </div>
65
+ </div>
66
+ </div>
67
+ <?php if ( function_exists('BWGEC') && $params['ecommerce_icon'] == 'show' ) { echo $ecommerce_icon; } ?>
68
+ <?php if ( $params['image_title'] == 'show' && $theme_row->thumb_title_pos == 'bottom' ) { echo $title; } ?>
69
+ </a>
70
+ </div>
71
  <?php
72
  }
73
  ?>
74
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  <?php
76
+ parent::display($params, $bwg, ob_get_clean());
77
  if ($from_shortcode) {
78
  return;
79
  }
85
  private function inline_styles($bwg, $theme_row, $params) {
86
  ob_start();
87
  $rgb_thumbs_bg_color = WDWLibrary::spider_hex2rgb($theme_row->thumbs_bg_color);
 
88
  ?>
89
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> {
90
+ width: <?php echo $params['image_column_number'] * $params['thumb_width']; ?>px;
91
+ justify-content: <?php echo $theme_row->thumb_align; ?>;
92
+ background-color: rgba(<?php echo $rgb_thumbs_bg_color['red']; ?>, <?php echo $rgb_thumbs_bg_color['green']; ?>, <?php echo $rgb_thumbs_bg_color['blue']; ?>, <?php echo number_format($theme_row->thumb_bg_transparent / 100, 2, ".", ""); ?>);
93
+ <?php
94
+ if ( $theme_row->container_margin ) {
95
+ ?>
96
+ padding-left: <?php echo $theme_row->thumb_margin; ?>px;
97
+ padding-top: <?php echo $theme_row->thumb_margin; ?>px;
98
+ max-width: 100%;
99
+ <?php
100
+ }
101
+ else {
102
+ ?>
103
+ margin-right: -<?php echo $theme_row->thumb_margin; ?>px;
104
+ max-width: calc(100% + <?php echo $theme_row->thumb_margin; ?>px);
105
+ <?php
106
+ }
107
+ ?>
108
  }
109
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item {
110
+ justify-content: <?php echo $theme_row->thumb_title_pos == 'top'? 'flex-end' : 'flex-start'; ?>;
111
+ max-width: <?php echo $params['thumb_width']; ?>px;
112
+ <?php if ( !BWG()->options->resizable_thumbnails ) { ?>
113
+ width: <?php echo $params['thumb_width']; ?>px !important;
114
+ <?php } ?>
115
+ }
116
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item > a {
117
+ margin-right: <?php echo $theme_row->thumb_margin; ?>px;
118
+ margin-bottom: <?php echo $theme_row->thumb_margin; ?>px;
119
+ }
120
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item0 {
121
  padding: <?php echo $theme_row->thumb_padding; ?>px;
122
+ background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
123
+ border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
124
  opacity: <?php echo number_format($theme_row->thumb_transparent / 100, 2, ".", ""); ?>;
125
  filter: Alpha(opacity=<?php echo $theme_row->thumb_transparent; ?>);
126
+ border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
127
+ box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
 
 
128
  }
129
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item1 img {
130
+ max-height: none;
131
+ max-width: none;
132
+ padding: 0 !important;
 
 
 
 
 
133
  }
134
+ <?php
135
+ if ( $theme_row->thumb_hover_effect == 'zoom' ) {
136
+ $theme_row->thumb_hover_effect = 'scale';
137
+ ?>
138
  @media only screen and (min-width: 480px) {
139
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item1 img {
140
+ <?php echo ($theme_row->thumb_transition) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
141
+ }
142
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item1 img:hover {
143
  -ms-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
144
  -webkit-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
145
  transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
146
  }
147
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  <?php
149
+ }
150
+ else {
151
  ?>
152
+ @media only screen and (min-width: 480px) {
153
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item0 {
154
+ <?php echo ($theme_row->thumb_transition) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  }
156
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item0:hover {
157
+ -ms-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
158
+ -webkit-transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
159
+ transform: <?php echo $theme_row->thumb_hover_effect; ?>(<?php echo $theme_row->thumb_hover_effect_value; ?>);
160
  }
161
  }
 
 
 
 
 
 
 
 
 
 
162
  <?php
163
  }
164
+ ?>
165
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-item1 {
166
+ padding-top: <?php echo $params['thumb_height'] / $params['thumb_width'] * 100; ?>%;
167
+ }
168
+ <?php
169
+ if ( $params['image_title'] == 'hover' ) { /* Show image title on hover.*/
170
  ?>
171
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-title1 {
172
+ display: flex;
173
+ height: 100%;
174
+ left: -3000px;
175
+ opacity: 0;
176
+ filter: Alpha(opacity=0);
177
+ position: absolute;
178
+ top: 0;
179
+ width: 100%;
180
+ z-index: 100;
181
+ justify-content: center;
182
+ align-content: center;
183
+ flex-direction: column;
184
+ }
185
  <?php
186
  }
187
  ?>
188
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-title2,
189
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-ecommerce2 {
 
 
 
 
 
190
  color: #<?php echo $theme_row->thumb_title_font_color; ?>;
 
191
  font-family: <?php echo $theme_row->thumb_title_font_style; ?>;
192
  font-size: <?php echo $theme_row->thumb_title_font_size; ?>px;
193
  font-weight: <?php echo $theme_row->thumb_title_font_weight; ?>;
 
194
  padding: <?php echo $theme_row->thumb_title_margin; ?>;
195
  text-shadow: <?php echo $theme_row->thumb_title_shadow; ?>;
196
+ max-height:100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  }
198
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-play-icon2 {
199
+ font-size: <?php echo 2 * $theme_row->thumb_title_font_size; ?>px;
 
 
 
 
 
 
 
 
 
 
 
 
200
  }
201
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-ecommerce2 {
202
+ font-size: <?php echo 1.2 * $theme_row->thumb_title_font_size; ?>px;
 
 
 
203
  }
204
+ <?php
205
+ if ( function_exists('BWGEC') && $params['ecommerce_icon'] == 'hover' ) { /* Show eCommerce icon on hover.*/
206
+ ?>
207
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?> .bwg-ecommerce1 {
208
+ display: flex;
209
+ height: 100%;
210
+ left: -3000px;
211
+ opacity: 0;
212
+ filter: Alpha(opacity=0);
213
+ position: absolute;
214
+ top: 0;
215
+ width: 100%;
216
+ z-index: 100;
217
+ justify-content: center;
218
+ align-content: center;
219
+ flex-direction: column;
220
+ text-align: center;
 
221
  }
222
+ <?php
 
 
 
 
 
 
 
 
 
223
  }
224
+ ?>
225
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> #spider_popup_overlay_<?php echo $bwg; ?> {
226
  background-color: #<?php echo $theme_row->lightbox_overlay_bg_color; ?>;
227
  opacity: <?php echo number_format($theme_row->lightbox_overlay_bg_transparent / 100, 2, ".", ""); ?>;
228
  filter: Alpha(opacity=<?php echo $theme_row->lightbox_overlay_bg_transparent; ?>);
229
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  <?php
231
  return ob_get_clean();
232
  }
frontend/views/view.php ADDED
@@ -0,0 +1,482 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class BWGViewSite {
3
+ public function display($params, $bwg = 0, $content = '') {
4
+ if (BWG()->options->use_inline_stiles_and_scripts) {
5
+ wp_enqueue_style('bwg_frontend');
6
+ wp_enqueue_style('bwg_font-awesome');
7
+ wp_enqueue_style('bwg_googlefonts');
8
+ if (isset($params['show_tag_box']) && $params['show_tag_box']) {
9
+ wp_enqueue_style('bwg_sumoselect');
10
+ if (!wp_script_is('bwg_sumoselect', 'done')) {
11
+ wp_print_scripts('bwg_sumoselect');
12
+ }
13
+ }
14
+ if ($params['thumb_click_action'] == 'open_lightbox') {
15
+ wp_enqueue_style('bwg_mCustomScrollbar');
16
+ if (!wp_script_is('bwg_mCustomScrollbar', 'done')) {
17
+ wp_print_scripts('bwg_mCustomScrollbar');
18
+ }
19
+ if (!wp_script_is('jquery-fullscreen', 'done')) {
20
+ wp_print_scripts('jquery-fullscreen');
21
+ }
22
+ if (!wp_script_is('bwg_gallery_box', 'done')) {
23
+ wp_print_scripts('bwg_gallery_box');
24
+ }
25
+ if(!wp_script_is('bwg_raty', 'done')) {
26
+ wp_print_scripts('bwg_raty');
27
+ }
28
+ }
29
+ if (!wp_script_is('bwg_frontend', 'done')) {
30
+ wp_print_scripts('bwg_frontend');
31
+ }
32
+ if (!wp_script_is('bwg_jquery_mobile', 'done')) {
33
+ wp_print_scripts('bwg_jquery_mobile');
34
+ }
35
+ }
36
+
37
+ $params_array = $params['params_array'];
38
+ $theme_row = $params['theme_row'];
39
+ $images_count = count($params['image_rows']['images']);
40
+ $gallery_row = $params['gallery_row'];
41
+ if ($params['image_enable_page'] && $params['images_per_page']) {
42
+ $page_nav = $params['image_rows']['page_nav'];
43
+ }
44
+ $tags_rows = $params['tags_rows'];
45
+ $items_per_page = $params['items_per_page'];
46
+ ?>
47
+ <div id="bwg_container1_<?php echo $bwg; ?>" class="bwg_container" data-right-click-protection="<?php echo BWG()->options->image_right_click; ?>" data-bwg="<?php echo $bwg; ?>" data-lightbox-url="<?php echo addslashes(add_query_arg($params_array, admin_url('admin-ajax.php'))); ?>" data-gallery-id="<?php echo $params_array['gallery_id']; ?>" data-popup-width="<?php echo $params["popup_width"]; ?>" data-popup-height="<?php echo $params["popup_height"]; ?>" data-buttons-position="<?php echo $theme_row->lightbox_ctrl_btn_pos ;?>">
48
+ <div id="bwg_container2_<?php echo $bwg; ?>">
49
+ <?php
50
+ $this->loading($bwg);
51
+ ?>
52
+ <form id="gal_front_form_<?php echo $bwg; ?>" class="bwg-hidden" method="post" action="#" data-current="<?php echo $bwg; ?>">
53
+ <?php
54
+ if ($params['show_search_box']) {
55
+ $this->ajax_html_frontend_search_box('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $images_count, $params['search_box_width'], $params['placeholder']);
56
+ }
57
+ if (isset($params['show_sort_images']) && $params['show_sort_images']) {
58
+ $this->ajax_html_frontend_sort_box('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $params['sort_by'], $params['search_box_width']);
59
+ }
60
+ if (isset($params['show_tag_box']) && $params['show_tag_box']) {
61
+ $this->ajax_html_frontend_search_tags('gal_front_form_' . $bwg, $bwg, 'bwg_standart_thumbnails_' . $bwg, $images_count, $tags_rows);
62
+ }
63
+ $this->title_description($bwg, $gallery_row, $params, $theme_row);
64
+ ?>
65
+ <div style="background-color:rgba(0, 0, 0, 0); width: 100%; position: relative;<?php echo !$theme_row->container_margin && $theme_row->thumb_margin ? ' overflow: hidden;': ''; ?>">
66
+ <?php
67
+ if ($params['image_enable_page'] && $params['images_per_page'] && ($theme_row->page_nav_position == 'top')) {
68
+ $this->ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo, $params['image_enable_page']);
69
+ }
70
+ echo $content;
71
+ $this->download_button($params, $images_count);
72
+ if ($params['image_enable_page'] && $params['images_per_page'] && ($theme_row->page_nav_position == 'bottom')) {
73
+ $this->ajax_html_frontend_page_nav($theme_row, $page_nav['total'], $page_nav['limit'], 'gal_front_form_' . $bwg, $items_per_page, $bwg, 'bwg_standart_thumbnails_' . $bwg, 0, 'album', BWG()->options->enable_seo, $params['image_enable_page']);
74
+ }
75
+ ?>
76
+ </div>
77
+ </form>
78
+ <div id="bwg_spider_popup_loading_<?php echo $bwg; ?>" class="bwg_spider_popup_loading"></div>
79
+ <div id="spider_popup_overlay_<?php echo $bwg; ?>" class="spider_popup_overlay" onclick="spider_destroypopup(1000)"></div>
80
+ </div>
81
+ </div>
82
+ <?php
83
+ }
84
+
85
+ public function loading($bwg) {
86
+ ?>
87
+ <div id="ajax_loading_<?php echo $bwg; ?>" class="bwg_loading_div_1">
88
+ <div class="bwg_loading_div_2">
89
+ <div class="bwg_loading_div_3">
90
+ <div id="loading_div_<?php echo $bwg; ?>" class="bwg_spider_ajax_loading">
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ <?php
96
+ }
97
+
98
+ public function title_description($bwg, $gallery_row, $params, $theme_row) {
99
+ if (($params['showthumbs_name'] && $gallery_row->name != '') || ($params['show_gallery_description'] && $gallery_row->name != '')) {
100
+ ob_start();
101
+ ?>
102
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_gal_title_<?php echo $bwg; ?> {
103
+ background-color: rgba(0, 0, 0, 0);
104
+ color: #<?php echo $theme_row->thumb_gal_title_font_color; ?>;
105
+ display: block;
106
+ font-family: <?php echo $theme_row->thumb_gal_title_font_style; ?>;
107
+ font-size: <?php echo $theme_row->thumb_gal_title_font_size; ?>px;
108
+ font-weight: <?php echo $theme_row->thumb_gal_title_font_weight; ?>;
109
+ padding: <?php echo $theme_row->thumb_gal_title_margin; ?>;
110
+ text-shadow: <?php echo $theme_row->thumb_gal_title_shadow; ?>;
111
+ text-align: <?php echo $theme_row->thumb_gal_title_align; ?>;
112
+ }
113
+ <?php
114
+ $inline_style = ob_get_clean();
115
+
116
+ if ( BWG()->options->use_inline_stiles_and_scripts ) {
117
+ wp_add_inline_style( 'bwg_frontend', $inline_style );
118
+ } else {
119
+ echo '<style>' . $inline_style . '</style>';
120
+ }
121
+ }
122
+
123
+ if ($params['showthumbs_name'] && $gallery_row->name != '') {
124
+ ?>
125
+ <div class="bwg_gal_title_<?php echo $bwg; ?>"><?php echo $gallery_row->name; ?></div>
126
+ <?php
127
+ }
128
+ if ($params['show_gallery_description'] && $gallery_row->name != '') {
129
+ ?>
130
+ <div class="bwg_gal_title_<?php echo $bwg; ?>"><?php echo $gallery_row->description; ?></div>
131
+ <?php
132
+ }
133
+ }
134
+
135
+ public function download_button($params, $images_count) {
136
+ if ( $params['gallery_download'] && $images_count && ($params['gallery_row']->id == 0 || ($params['gallery_row']->gallery_type != 'facebook' && $params['gallery_row']->gallery_type != 'instagram' && $params['gallery_row']->gallery_type != 'instagram_post')) ) {
137
+ $query_url = addslashes(add_query_arg(array(
138
+ "action" => "download_gallery",
139
+ "gallery_id" => $params['gallery_id'],
140
+ ), admin_url('admin-ajax.php')));
141
+ ?>
142
+ <div class="bwg_download_gallery">
143
+ <a href="<?php echo $query_url; ?>">
144
+ <i title="<?php _e('Download gallery', BWG()->prefix); ?>" class="bwg_ctrl_btn fa fa-download"></i>
145
+ </a>
146
+ </div>
147
+ <?php
148
+ }
149
+ }
150
+
151
+ public function ajax_html_frontend_search_box($form_id, $current_view, $cur_gal_id, $images_count, $search_box_width = 180, $placeholder = '', $album_gallery_id = 0) {
152
+ $bwg_search = ((isset($_POST['bwg_search_' . $current_view]) && esc_html($_POST['bwg_search_' . $current_view]) != '') ? esc_html($_POST['bwg_search_' . $current_view]) : '');
153
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : ($album_gallery_id ? 'gallery' : 'album'));
154
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : ( $album_gallery_id ? $album_gallery_id : 0));
155
+
156
+ ob_start();
157
+ ?>
158
+ #bwg_search_container_2_<?php echo $current_view; ?> {
159
+ width: <?php echo $search_box_width; ?>px;
160
+ }
161
+ <?php
162
+ $inline_style = ob_get_clean();
163
+
164
+ if (BWG()->options->use_inline_stiles_and_scripts) {
165
+ wp_add_inline_style('bwg_frontend', $inline_style);
166
+ }
167
+ else {
168
+ echo '<style>' . $inline_style . '</style>';
169
+ }
170
+ ?>
171
+ <div class="bwg_search_container_1" id="bwg_search_container_1_<?php echo $current_view; ?>">
172
+ <div class="bwg_search_container_2" id="bwg_search_container_2_<?php echo $current_view; ?>">
173
+ <span class="bwg_search_reset_container" >
174
+ <i title="<?php echo __('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="bwg_clear_search_input('<?php echo $current_view; ?>'),spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
175
+ </span>
176
+ <span class="bwg_search_loupe_container" >
177
+ <i title="<?php echo __('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1)"></i>
178
+ </span>
179
+ <span class="bwg_search_input_container">
180
+ <input id="bwg_search_input_<?php echo $current_view; ?>" class="bwg_search_input" type="text" onkeypress="return bwg_check_search_input_enter(this, event)" name="bwg_search_<?php echo $current_view; ?>" value="<?php echo $bwg_search; ?>" placeholder="<?php echo $placeholder; ?>" />
181
+ <input id="bwg_images_count_<?php echo $current_view; ?>" class="bwg_search_input" type="hidden" name="bwg_images_count_<?php echo $current_view; ?>" value="<?php echo $images_count; ?>" >
182
+ </span>
183
+ </div>
184
+ </div>
185
+ <?php
186
+ }
187
+
188
+ public function ajax_html_frontend_sort_box($form_id, $current_view, $cur_gal_id, $sort_by = '', $search_box_width = 180) {
189
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
190
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
191
+
192
+ ob_start();
193
+ ?>
194
+ #bwg_order_<?php echo $current_view; ?> {
195
+ width: <?php echo $search_box_width; ?>px;
196
+ }
197
+ <?php
198
+ $inline_style = ob_get_clean();
199
+
200
+ if (BWG()->options->use_inline_stiles_and_scripts) {
201
+ wp_add_inline_style('bwg_frontend', $inline_style);
202
+ }
203
+ else {
204
+ echo '<style>' . $inline_style . '</style>';
205
+ }
206
+ ?>
207
+ <div class="bwg_order_cont">
208
+ <span class="bwg_order_label"><?php echo __('Order by: ', BWG()->prefix); ?></span>
209
+ <select id="bwg_order_<?php echo $current_view; ?>" class="bwg_order" onchange="spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '', '<?php echo $type; ?>', 1, '', this.value)">
210
+ <option <?php if ($sort_by == 'default') echo 'selected'; ?> value="default"><?php echo __('Default', BWG()->prefix); ?></option>
211
+ <option <?php if ($sort_by == 'filename') echo 'selected'; ?> value="filename"><?php echo __('Filename', BWG()->prefix); ?></option>
212
+ <option <?php if ($sort_by == 'size') echo 'selected'; ?> value="size"><?php echo __('Size', BWG()->prefix); ?></option>
213
+ <option <?php if ($sort_by == 'random' || $sort_by == 'RAND()') echo 'selected'; ?> value="random"><?php echo __('Random', BWG()->prefix); ?></option>
214
+ </select>
215
+ </div>
216
+ <?php
217
+ }
218
+
219
+ public function ajax_html_frontend_search_tags($form_id, $current_view, $cur_gal_id, $images_count, $tags_rows) {
220
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : 'album');
221
+ $bwg_search_tags = (isset($_POST['bwg_tag_id_' . $cur_gal_id]) && $_POST['bwg_tag_id_' . $cur_gal_id] != '' )? $_POST['bwg_tag_id_' . $cur_gal_id] : array();
222
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : 0);
223
+ ?>
224
+ <div id="bwg_tag_wrap">
225
+ <div id="bwg_tag_container">
226
+ <select class="search_tags" id="bwg_tag_id_<?php echo $cur_gal_id; ?>" multiple="multiple">
227
+ <?php
228
+ foreach($tags_rows as $tags_row) {
229
+ $selected = (in_array($tags_row->term_id ? $tags_row->term_id : '', $bwg_search_tags)) ? 'selected="selected"' : '';
230
+ ?>
231
+ <option value="<?php echo $tags_row->term_id ?>" <?php echo $selected;?>><?php echo $tags_row->name ?></option>
232
+ <?php
233
+ }
234
+ ?>
235
+ </select>
236
+ <span class="bwg_search_loupe_container" >
237
+ <i title="<?php _e('Search', BWG()->prefix); ?>" class="bwg_search fa fa-search" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', false);"></i>
238
+ </span>
239
+ <span class="bwg_search_reset_container" >
240
+ <i title="<?php _e('Reset', BWG()->prefix); ?>" class="bwg_reset fa fa-times" onclick="bwg_select_tag('<?php echo $current_view; ?>' ,'<?php echo $form_id; ?>', '<?php echo $cur_gal_id; ?>', <?php echo $album_gallery_id; ?>, '<?php echo $type; ?>', '<?php echo $cur_gal_id; ?>');"></i>
241
+ </span>
242
+ <input type="hidden" id="bwg_tags_id_<?php echo $cur_gal_id; ?>" value="" />
243
+ </div>
244
+ <div style="clear:both"></div>
245
+ </div>
246
+ <?php
247
+ }
248
+
249
+ public function ajax_html_frontend_page_nav($theme_row, $count_items, $page_number, $form_id, $items_per_page, $current_view, $id, $cur_alb_gal_id = 0, $type = 'album', $enable_seo = false, $pagination = 1) {
250
+ ob_start();
251
+ $rgb_page_nav_font_color = WDWLibrary::spider_hex2rgb($theme_row->page_nav_font_color);
252
+ ?>
253
+ /*pagination styles*/
254
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .tablenav-pages_<?php echo $current_view; ?> {
255
+ text-align: <?php echo $theme_row->page_nav_align; ?>;
256
+ font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
257
+ font-family: <?php echo $theme_row->page_nav_font_style; ?>;
258
+ font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
259
+ color: #<?php echo $theme_row->page_nav_font_color; ?>;
260
+ margin: 6px 0 4px;
261
+ display: block;
262
+ height: 30px;
263
+ line-height: 30px;
264
+ }
265
+ @media only screen and (max-width : 320px) {
266
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .displaying-num_<?php echo $current_view; ?> {
267
+ display: none;
268
+ }
269
+ }
270
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .displaying-num_<?php echo $current_view; ?> {
271
+ font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
272
+ font-family: <?php echo $theme_row->page_nav_font_style; ?>;
273
+ font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
274
+ color: #<?php echo $theme_row->page_nav_font_color; ?>;
275
+ margin-right: 10px;
276
+ vertical-align: middle;
277
+ }
278
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .paging-input_<?php echo $current_view; ?> {
279
+ font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
280
+ font-family: <?php echo $theme_row->page_nav_font_style; ?>;
281
+ font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
282
+ color: #<?php echo $theme_row->page_nav_font_color; ?>;
283
+ vertical-align: middle;
284
+ }
285
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .tablenav-pages_<?php echo $current_view; ?> a.disabled,
286
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .tablenav-pages_<?php echo $current_view; ?> a.disabled:hover,
287
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .tablenav-pages_<?php echo $current_view; ?> a.disabled:focus {
288
+ cursor: default;
289
+ color: rgba(<?php echo $rgb_page_nav_font_color['red']; ?>, <?php echo $rgb_page_nav_font_color['green']; ?>, <?php echo $rgb_page_nav_font_color['blue']; ?>, 0.5);
290
+ }
291
+ #bwg_container1_<?php echo $current_view; ?> #bwg_container2_<?php echo $current_view; ?> .tablenav-pages_<?php echo $current_view; ?> a {
292
+ cursor: pointer;
293
+ font-size: <?php echo $theme_row->page_nav_font_size; ?>px;
294
+ font-family: <?php echo $theme_row->page_nav_font_style; ?>;
295
+ font-weight: <?php echo $theme_row->page_nav_font_weight; ?>;
296
+ color: #<?php echo $theme_row->page_nav_font_color; ?>;
297
+ text-decoration: none;
298
+ padding: <?php echo $theme_row->page_nav_padding; ?>;
299
+ margin: <?php echo $theme_row->page_nav_margin; ?>;
300
+ border-radius: <?php echo $theme_row->page_nav_border_radius; ?>;
301
+ border-style: <?php echo $theme_row->page_nav_border_style; ?>;
302
+ border-width: <?php echo $theme_row->page_nav_border_width; ?>px;
303
+ border-color: #<?php echo $theme_row->page_nav_border_color; ?>;
304
+ background-color: #<?php echo $theme_row->page_nav_button_bg_color; ?>;
305
+ opacity: <?php echo number_format($theme_row->page_nav_button_bg_transparent / 100, 2, ".", ""); ?>;
306
+ filter: Alpha(opacity=<?php echo $theme_row->page_nav_button_bg_transparent; ?>);
307
+ box-shadow: <?php echo $theme_row->page_nav_box_shadow; ?>;
308
+ <?php echo ($theme_row->page_nav_button_transition ) ? 'transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;' : ''; ?>
309
+ }
310
+ <?php
311
+ $inline_style = ob_get_clean();
312
+
313
+ if (BWG()->options->use_inline_stiles_and_scripts) {
314
+ wp_add_inline_style('bwg_frontend', $inline_style);
315
+ }
316
+ else {
317
+ echo '<style>' . $inline_style . '</style>';
318
+ }
319
+
320
+ $limit = $page_number > 1 ? $items_per_page['load_more_image_count'] : $items_per_page['images_per_page'];
321
+ $limit = $limit ? $limit : 1;
322
+ $type = (isset($_POST['type_' . $current_view]) ? esc_html($_POST['type_' . $current_view]) : $type);
323
+ $album_gallery_id = (isset($_POST['album_gallery_id_' . $current_view]) ? esc_html($_POST['album_gallery_id_' . $current_view]) : $cur_alb_gal_id);
324
+ if ($count_items) {
325
+ if ($count_items % $limit) {
326
+ $items_county = ($count_items - $count_items % $limit) / $limit + 1;
327
+ }
328
+ else {
329
+ $items_county = ($count_items - $count_items % $limit) / $limit;
330
+ }
331
+ if ($pagination == 2) {
332
+ $items_county++;
333
+ }
334
+ }
335
+ else {
336
+ $items_county = 1;
337
+ }
338
+ if ($page_number > $items_county) {
339
+ return;
340
+ }
341
+ $first_page = "first-page-" . $current_view;
342
+ $prev_page = "prev-page-" . $current_view;
343
+ $next_page = "next-page-" . $current_view;
344
+ $last_page = "last-page-" . $current_view;
345
+ ?>
346
+ <span class="bwg_nav_cont_<?php echo $current_view; ?>">
347
+ <?php
348
+ if ($pagination == 1) {
349
+ ?>
350
+ <div class="tablenav-pages_<?php echo $current_view; ?>">
351
+ <?php
352
+ if ($theme_row->page_nav_number) {
353
+ ?>
354
+ <span class="displaying-num_<?php echo $current_view; ?>"><?php echo $count_items . ' ' . __(' item(s)', BWG()->prefix); ?></span>
355
+ <?php
356
+ }
357
+ if ($count_items > $limit) {
358
+ if ($theme_row->page_nav_button_text) {
359
+ $first_button = __('First', BWG()->prefix);
360
+ $previous_button = __('Previous', BWG()->prefix);
361
+ $next_button = __('Next', BWG()->prefix);
362
+ $last_button = __('Last', BWG()->prefix);
363
+ }
364
+ else {
365
+ $first_button = '«';
366
+ $previous_button = '‹';
367
+ $next_button = '›';
368
+ $last_button = '»';
369
+ }
370
+ if ($page_number == 1) {
371
+ $first_page = "first-page disabled";
372
+ $prev_page = "prev-page disabled";
373
+ }
374
+ if ($page_number >= $items_county) {
375
+ $next_page = "next-page disabled";
376
+ $last_page = "last-page disabled";
377
+ }
378
+ ?>
379
+ <span class="pagination-links_<?php echo $current_view; ?>">
380
+ <a class="<?php echo $first_page; ?>" title="<?php echo __('Go to the first page', BWG()->prefix); ?>"><?php echo $first_button; ?></a>
381
+ <a class="<?php echo $prev_page; ?>" title="<?php echo __('Go to the previous page', BWG()->prefix); ?>" <?php echo $page_number > 1 && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number - 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $previous_button; ?></a>
382
+ <span class="paging-input_<?php echo $current_view; ?>">
383
+ <span class="total-pages_<?php echo $current_view; ?>"><?php echo $page_number; ?></span> <?php echo __('of', BWG()->prefix); ?> <span class="total-pages_<?php echo $current_view; ?>">
384
+ <?php echo $items_county; ?>
385
+ </span>
386
+ </span>
387
+ <a class="<?php echo $next_page ?>" title="<?php echo __('Go to the next page', BWG()->prefix); ?>" <?php echo $page_number + 1 <= $items_county && $enable_seo ? 'href="' . esc_url(add_query_arg(array("page_number_" . $current_view => $page_number + 1), $_SERVER['REQUEST_URI'])) . '"' : ""; ?>><?php echo $next_button; ?></a>
388
+ <a class="<?php echo $last_page ?>" title="<?php echo __('Go to the last page', BWG()->prefix); ?>"><?php echo $last_button; ?></a>
389
+ </span>
390
+ <?php
391
+ }
392
+ ?>
393
+ </div>
394
+ <?php
395
+ }
396
+ elseif ($pagination == 2) {
397
+ if ($count_items > ($limit * ($page_number - 1)) + $items_per_page['images_per_page']) {
398
+ ?>
399
+ <div id="bwg_load_<?php echo $current_view; ?>" class="tablenav-pages_<?php echo $current_view; ?>">
400
+ <a class="bwg_load_btn_<?php echo $current_view; ?> bwg_load_btn" href="javascript:void(0);"><?php echo __('Load More...', BWG()->prefix); ?></a>
401
+ <input type="hidden" id="bwg_load_more_<?php echo $current_view; ?>" name="bwg_load_more_<?php echo $current_view; ?>" value="on" />
402
+ </div>
403
+ <?php
404
+ }
405
+ }
406
+ elseif ($pagination == 3) {
407
+ if ($count_items > $limit * $page_number) {
408
+ ?>
409
+ <script type="text/javascript">
410
+ jQuery(window).on("scroll", function() {
411
+ if (jQuery(document).scrollTop() + jQuery(window).height() > (jQuery('#<?php echo $form_id; ?>').offset().top + jQuery('#<?php echo $form_id; ?>').height())) {
412
+ spider_page_<?php echo $current_view; ?>('', <?php echo $page_number; ?>, 1, true);
413
+ jQuery(window).off("scroll");
414
+ return false;
415
+ }
416
+ });
417
+ </script>
418
+ <?php
419
+ }
420
+ }
421
+ ?>
422
+ <input type="hidden" id="page_number_<?php echo $current_view; ?>" name="page_number_<?php echo $current_view; ?>" value="<?php echo ((isset($_POST['page_number_' . $current_view])) ? (int) $_POST['page_number_' . $current_view] : 1); ?>" />
423
+ <script type="text/javascript">
424
+ function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
425
+ if (typeof load_more == "undefined") {
426
+ var load_more = false;
427
+ }
428
+ if (jQuery(cur).hasClass('disabled')) {
429
+ return false;
430
+ }
431
+ var items_county_<?php echo $current_view; ?> = <?php echo $items_county; ?>;
432
+ switch (y) {
433
+ case 1:
434
+ if (x >= items_county_<?php echo $current_view; ?>) {
435
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
436
+ }
437
+ else {
438
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = x + 1;
439
+ }
440
+ break;
441
+ case 2:
442
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = items_county_<?php echo $current_view; ?>;
443
+ break;
444
+ case -1:
445
+ if (x == 1) {
446
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
447
+ }
448
+ else {
449
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = x - 1;
450
+ }
451
+ break;
452
+ case -2:
453
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
454
+ break;
455
+ default:
456
+ document.getElementById('page_number_<?php echo $current_view; ?>').value = 1;
457
+ }
458
+ spider_frontend_ajax('<?php echo $form_id; ?>', '<?php echo $current_view; ?>', '<?php echo $id; ?>', '<?php echo $album_gallery_id; ?>', '', '<?php echo $type; ?>', 0, '', '', load_more);
459
+ }
460
+ jQuery('.<?php echo $first_page; ?>').on('click', function() {
461
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -2);
462
+ });
463
+ jQuery('.<?php echo $prev_page; ?>').on('click', function() {
464
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, -1);
465
+ return false;
466
+ });
467
+ jQuery('.<?php echo $next_page; ?>').on('click', function() {
468
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1);
469
+ return false;
470
+ });
471
+ jQuery('.<?php echo $last_page; ?>').on('click', function() {
472
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 2);
473
+ });
474
+ jQuery('.bwg_load_btn_<?php echo $current_view; ?>').on('click', function() {
475
+ spider_page_<?php echo $current_view; ?>(this, <?php echo $page_number; ?>, 1, true);
476
+ return false;
477
+ });
478
+ </script>
479
+ </span>
480
+ <?php
481
+ }
482
+ }
images/ajax_loader.gif DELETED
Binary file
images/ajax_loader.png ADDED
Binary file
insert.php CHANGED
@@ -129,8 +129,8 @@ class BWGInsert {
129
 
130
  $exists_default = $wpdb->get_var('SELECT count(id) FROM ' . $wpdb->prefix . 'bwg_theme');
131
 
132
- $theme1 = '{"thumb_margin":"2","thumb_padding":"0","thumb_border_radius":"0","thumb_border_width":0,"thumb_border_style":"none","thumb_border_color":"CCCCCC","thumb_bg_color":"FFFFFF","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"scale","thumb_hover_effect_value":"1.08","thumb_transition":1,"thumb_title_margin":"2px","thumb_title_font_style":"Ubuntu","thumb_title_pos":"bottom","thumb_title_font_color":"CCCCCC","thumb_title_shadow":"0px 0px 0px #888888","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"solid","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FFFFFF","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":100,"lightbox_ctrl_btn_color":"808080","lightbox_toggle_btn_height":20,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"FFFFFF","lightbox_ctrl_cont_border_radius":4,"lightbox_ctrl_cont_transparent":85,"lightbox_close_btn_bg_color":"FFFFFF","lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_width":2,"lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"0","lightbox_close_btn_color":"808080","lightbox_close_btn_size":20,"lightbox_close_btn_width":30,"lightbox_close_btn_height":30,"lightbox_close_btn_top":"-20","lightbox_close_btn_right":"-15","lightbox_close_btn_full_color":"000000","lightbox_close_btn_transparent":60,"lightbox_rl_btn_bg_color":"FFFFFF","lightbox_rl_btn_transparent":"60","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":0,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"ADADAD","lightbox_rl_btn_height":35,"lightbox_rl_btn_width":35,"lightbox_rl_btn_size":25,"lightbox_close_rl_btn_hover_color":"808080","lightbox_comment_pos":"left","lightbox_comment_width":350,"lightbox_comment_bg_color":"FFFFFF","lightbox_comment_font_color":"7A7A7A","lightbox_comment_font_style":"Ubuntu","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"2F2F2F","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"7px","lightbox_comment_button_padding":"10px 10px","lightbox_comment_input_bg_color":"F7F8F9","lightbox_comment_input_border_color":"EBEBEB","lightbox_comment_input_border_width":2,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"7px","lightbox_comment_input_padding":"5px","lightbox_comment_separator_width":20,"lightbox_comment_separator_style":"none","lightbox_comment_separator_color":"383838","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"808080","lightbox_filmstrip_rl_bg_color":"EBEBEB","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"808080","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_pos":"bottom","lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_overlay_bg_transparent":60,"lightbox_bg_color":"FFFFFF","lightbox_overlay_bg_color":"EEEEEE","lightbox_rl_btn_style":"fa-angle","lightbox_bg_transparent":100,"blog_style_margin":"2px","blog_style_padding":"0","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"solid","blog_style_border_color":"F5F5F5","blog_style_bg_color":"FFFFFF","blog_style_transparent":80,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_font_size":20,"blog_style_share_buttons_color":"B3AFAF","blog_style_share_buttons_bg_transparent":0,"blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"0","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"F5F5F5","image_browser_bg_color":"EBEBEB","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"0px 5px 0px 5px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"EBEBEB","image_browser_image_description_align":"center","image_browser_img_font_size":15,"image_browser_img_font_family":"Ubuntu","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":2,"image_browser_full_border_style":"none","image_browser_full_border_color":"F7F7F7","image_browser_full_bg_color":"F5F5F5","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","album_compact_title_margin":"2px","album_compact_thumb_margin":2,"album_compact_back_padding":"0","album_compact_thumb_padding":0,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":0,"album_compact_title_font_style":"segoe ui","album_compact_back_font_color":"000000","album_compact_title_font_color":"FFFFFF","album_compact_title_shadow":"0px 0px 0px #888888","album_compact_thumb_bg_transparent":0,"album_compact_thumb_box_shadow":"0px 0px 0px #888888","album_compact_thumb_transition":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"CCCCCC","album_compact_thumb_bg_color":"FFFFFF","album_compact_back_font_weight":"bold","album_compact_back_font_size":16,"album_compact_back_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_thumbs_bg_color":"FFFFFF","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"scale","album_compact_thumb_transparent":100,"album_compact_thumb_hover_effect_value":"1.08","album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":0,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":0,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"CCCCCC","album_extended_thumb_bg_color":"FFFFFF","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":0,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"scale","album_extended_thumb_hover_effect_value":"1.08","album_extended_thumb_transition":1,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":20,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0 0 0 0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"solid","album_extended_div_separator_color":"E0E0E0","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":1,"album_extended_thumb_div_border_style":"solid","album_extended_thumb_div_border_color":"E8E8E8","album_extended_thumb_div_padding":"5px","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"solid","album_extended_text_div_border_color":"E8E8E8","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"F2D22E","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","slideshow_cont_bg_color":"F2F2F2","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"FFFFFF","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"0px 0px 0px #000000","slideshow_rl_btn_color":"D6D6D6","slideshow_rl_btn_height":37,"slideshow_rl_btn_size":12,"slideshow_rl_btn_width":37,"slideshow_close_rl_btn_hover_color":"BABABA","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":0,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0px 2px 0 0 ","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":100,"slideshow_filmstrip_rl_bg_color":"F2F2F2","slideshow_filmstrip_rl_btn_color":"BABABA","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"0 0 0 0","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":12,"slideshow_dots_height":12,"slideshow_dots_border_radius":"5px","slideshow_dots_background_color":"F2D22E","slideshow_dots_margin":3,"slideshow_dots_active_background_color":"FFFFFF","slideshow_dots_active_border_width":1,"slideshow_dots_active_border_color":"000000","slideshow_play_pause_btn_size":35,"slideshow_rl_btn_style":"fa-chevron","masonry_thumb_padding":"2","masonry_thumb_border_radius":"0","masonry_thumb_border_width":"0","masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":"0","masonry_thumb_transparent":"100","masonry_thumb_align":"center","masonry_thumb_hover_effect":"scale","masonry_thumb_hover_effect_value":"1.08","masonry_thumb_transition":"1","masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","mosaic_thumb_padding":"2","mosaic_thumb_border_radius":"0","mosaic_thumb_border_width":"0","mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":"0","mosaic_thumb_transparent":"100","mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"scale","mosaic_thumb_hover_effect_value":"1.08","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_title_font_weight":"bold","mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","lightbox_info_pos":"bottom","lightbox_info_align":"left","lightbox_info_bg_color":"FFFFFF","lightbox_info_bg_transparent":"70","lightbox_info_border_width":"1","lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"0px","lightbox_info_padding":"10px 7px 44px 10px","lightbox_info_margin":"10px 10px -5px 10px","lightbox_title_color":"808080","lightbox_title_font_style":"Ubuntu","lightbox_title_font_weight":"bold","lightbox_title_font_size":"16","lightbox_description_color":"B0B0B0","lightbox_description_font_style":"Ubuntu","lightbox_description_font_weight":"bold","lightbox_description_font_size":"13","lightbox_rate_pos":"top","lightbox_rate_align":"left","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":"20","lightbox_rate_stars_count":"5","lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":"70","lightbox_hit_border_width":"1","lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":"14","masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":16,"album_masonry_back_font_weight":"bold","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"","album_masonry_title_shadow":"0px 0px 0px #888888","album_masonry_thumb_margin":0,"album_masonry_thumb_padding":0,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":0,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"CCCCCC","album_masonry_thumb_bg_color":"FFFFFF","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":0,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"scale","album_masonry_thumb_hover_effect_value":"1.08","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":50,"carousel_rl_btn_bg_color":"FFFFFF","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"303030","carousel_rl_btn_height":35,"carousel_rl_btn_size":15,"carousel_play_pause_btn_size":25,"carousel_rl_btn_width":35,"carousel_close_rl_btn_hover_color":"191919","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"arial","carousel_feature_border_width":2,"carousel_feature_border_style":"none","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":"1"}';
133
- $theme2 = '{"thumb_margin":4,"thumb_padding":4,"thumb_border_radius":"0","thumb_border_width":5,"thumb_border_style":"none","thumb_border_color":"FFFFFF","thumb_bg_color":"E8E8E8","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"0px 0px 0px #888888","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"rotate","thumb_hover_effect_value":"2deg","thumb_transition":1,"thumb_title_font_color":"CCCCCC","thumb_title_font_style":"segoe ui","thumb_title_pos":"bottom","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_title_margin":"5px","thumb_title_shadow":"","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"none","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FCFCFC","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_overlay_bg_color":"000000","lightbox_overlay_bg_transparent":70,"lightbox_bg_color":"000000","lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":80,"lightbox_ctrl_btn_color":"FFFFFF","lightbox_toggle_btn_height":14,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"000000","lightbox_ctrl_cont_transparent":80,"lightbox_ctrl_cont_border_radius":4,"lightbox_close_btn_transparent":95,"lightbox_close_btn_bg_color":"000000","lightbox_close_btn_border_width":0,"lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"","lightbox_close_btn_color":"FFFFFF","lightbox_close_btn_size":10,"lightbox_close_btn_width":20,"lightbox_close_btn_height":20,"lightbox_close_btn_top":"-10","lightbox_close_btn_right":"-10","lightbox_close_btn_full_color":"FFFFFF","lightbox_rl_btn_bg_color":"000000","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":2,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"FFFFFF","lightbox_rl_btn_height":40,"lightbox_rl_btn_width":40,"lightbox_rl_btn_size":20,"lightbox_close_rl_btn_hover_color":"FFFFFF","lightbox_comment_pos":"left","lightbox_comment_width":400,"lightbox_comment_bg_color":"000000","lightbox_comment_font_color":"CCCCCC","lightbox_comment_font_style":"segoe ui","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"333333","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"3px","lightbox_comment_button_padding":"3px 10px","lightbox_comment_input_bg_color":"333333","lightbox_comment_input_border_color":"666666","lightbox_comment_input_border_width":1,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"0","lightbox_comment_input_padding":"3px","lightbox_comment_separator_width":1,"lightbox_comment_separator_style":"solid","lightbox_comment_separator_color":"2B2B2B","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"FFFFFF","lightbox_filmstrip_pos":"top","lightbox_filmstrip_rl_bg_color":"2B2B2B","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"FFFFFF","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_rl_btn_style":"fa-chevron","lightbox_rl_btn_transparent":80,"lightbox_bg_transparent":100,"album_compact_back_font_color":"000000","album_compact_back_font_style":"segoe ui","album_compact_back_font_size":14,"album_compact_back_font_weight":"normal","album_compact_back_padding":"0","album_compact_title_font_color":"CCCCCC","album_compact_title_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_title_margin":"5px","album_compact_title_shadow":"","album_compact_thumb_margin":4,"album_compact_thumb_padding":4,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"000000","album_compact_thumb_bg_color":"E8E8E8","album_compact_thumbs_bg_color":"FFFFFF","album_compact_thumb_bg_transparent":100,"album_compact_thumb_box_shadow":"","album_compact_thumb_transparent":100,"album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"rotate","album_compact_thumb_hover_effect_value":"2deg","album_compact_thumb_transition":1,"album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":4,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":4,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"E8E8E8","album_extended_thumb_bg_color":"E8E8E8","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":100,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"rotate","album_extended_thumb_hover_effect_value":"2deg","album_extended_thumb_transition":0,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":16,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"none","album_extended_div_separator_color":"CCCCCC","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":0,"album_extended_thumb_div_border_style":"none","album_extended_thumb_div_border_color":"CCCCCC","album_extended_thumb_div_padding":"0","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"none","album_extended_text_div_border_color":"CCCCCC","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"FFC933","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","masonry_thumb_padding":4,"masonry_thumb_border_radius":"2px","masonry_thumb_border_width":1,"masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":0,"masonry_thumb_transparent":80,"masonry_thumb_align":"center","masonry_thumb_hover_effect":"rotate","masonry_thumb_hover_effect_value":"2deg","masonry_thumb_transition":0,"masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","slideshow_cont_bg_color":"000000","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"000000","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"","slideshow_rl_btn_color":"FFFFFF","slideshow_rl_btn_height":40,"slideshow_rl_btn_size":20,"slideshow_rl_btn_width":40,"slideshow_close_rl_btn_hover_color":"DBDBDB","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":1,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0 1px","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":80,"slideshow_filmstrip_rl_bg_color":"303030","slideshow_filmstrip_rl_btn_color":"FFFFFF","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"5px 10px 5px 10px","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":10,"slideshow_dots_height":10,"slideshow_dots_border_radius":"10px","slideshow_dots_background_color":"292929","slideshow_dots_margin":1,"slideshow_dots_active_background_color":"292929","slideshow_dots_active_border_width":2,"slideshow_dots_active_border_color":"FFC933","slideshow_play_pause_btn_size":60,"slideshow_rl_btn_style":"fa-chevron","blog_style_margin":"2px","blog_style_padding":"4px","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"none","blog_style_border_color":"CCCCCC","blog_style_bg_color":"E8E8E8","blog_style_transparent":70,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_color":"A1A1A1","blog_style_share_buttons_bg_transparent":0,"blog_style_share_buttons_font_size":20,"blog_style_image_title_align":"top","blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"2px","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"E8E8E8","image_browser_bg_color":"E8E8E8","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"24px 0px 0px 0px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"E8E8E8","image_browser_image_description_align":"center","image_browser_img_font_size":14,"image_browser_img_font_family":"segoe ui","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":1,"image_browser_full_border_style":"solid","image_browser_full_border_color":"EDEDED","image_browser_full_bg_color":"FFFFFF","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","lightbox_info_pos":"top","lightbox_info_align":"right","lightbox_info_bg_color":"000000","lightbox_info_bg_transparent":70,"lightbox_info_border_width":1,"lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"5px","lightbox_info_padding":"5px","lightbox_info_margin":"15px","lightbox_title_color":"FFFFFF","lightbox_title_font_style":"segoe ui","lightbox_title_font_weight":"bold","lightbox_title_font_size":18,"lightbox_description_color":"FFFFFF","lightbox_description_font_style":"segoe ui","lightbox_description_font_weight":"normal","lightbox_description_font_size":14,"lightbox_rate_pos":"bottom","lightbox_rate_align":"right","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":20,"lightbox_rate_stars_count":5,"lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":70,"lightbox_hit_border_width":1,"lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":14,"masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":14,"album_masonry_back_font_weight":"normal","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"5px","album_masonry_title_shadow":"","album_masonry_thumb_margin":4,"album_masonry_thumb_padding":4,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":1,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"000000","album_masonry_thumb_bg_color":"E8E8E8","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":100,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"rotate","album_masonry_thumb_hover_effect_value":"2deg","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","mosaic_thumb_padding":4,"mosaic_thumb_border_radius":"2px","mosaic_thumb_border_width":1,"mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":0,"mosaic_thumb_transparent":80,"mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"rotate","mosaic_thumb_hover_effect_value":"2deg","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_weight":"bold","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":100,"carousel_rl_btn_bg_color":"000000","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"FFFFFF","carousel_rl_btn_height":40,"carousel_rl_btn_size":20,"carousel_play_pause_btn_size":20,"carousel_rl_btn_width":40,"carousel_close_rl_btn_hover_color":"CCCCCC","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"segoe ui","carousel_feature_border_width":2,"carousel_feature_border_style":"solid","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":1}';
134
 
135
  if (!$exists_default) {
136
  $wpdb->insert($wpdb->prefix . 'bwg_theme', array(
129
 
130
  $exists_default = $wpdb->get_var('SELECT count(id) FROM ' . $wpdb->prefix . 'bwg_theme');
131
 
132
+ $theme1 = '{"thumb_margin":"4","container_margin":"1","thumb_padding":"0","thumb_border_radius":"0","thumb_border_width":0,"thumb_border_style":"none","thumb_border_color":"CCCCCC","thumb_bg_color":"FFFFFF","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"zoom","thumb_hover_effect_value":"1.08","thumb_transition":1,"thumb_title_margin":"2px","thumb_title_font_style":"Ubuntu","thumb_title_pos":"bottom","thumb_title_font_color":"CCCCCC","thumb_title_shadow":"0px 0px 0px #888888","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"solid","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FFFFFF","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":100,"lightbox_ctrl_btn_color":"808080","lightbox_toggle_btn_height":20,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"FFFFFF","lightbox_ctrl_cont_border_radius":4,"lightbox_ctrl_cont_transparent":85,"lightbox_close_btn_bg_color":"FFFFFF","lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_width":2,"lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"0","lightbox_close_btn_color":"808080","lightbox_close_btn_size":20,"lightbox_close_btn_width":30,"lightbox_close_btn_height":30,"lightbox_close_btn_top":"-20","lightbox_close_btn_right":"-15","lightbox_close_btn_full_color":"000000","lightbox_close_btn_transparent":60,"lightbox_rl_btn_bg_color":"FFFFFF","lightbox_rl_btn_transparent":"60","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":0,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"ADADAD","lightbox_rl_btn_height":35,"lightbox_rl_btn_width":35,"lightbox_rl_btn_size":25,"lightbox_close_rl_btn_hover_color":"808080","lightbox_comment_pos":"left","lightbox_comment_width":350,"lightbox_comment_bg_color":"FFFFFF","lightbox_comment_font_color":"7A7A7A","lightbox_comment_font_style":"Ubuntu","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"2F2F2F","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"7px","lightbox_comment_button_padding":"10px 10px","lightbox_comment_input_bg_color":"F7F8F9","lightbox_comment_input_border_color":"EBEBEB","lightbox_comment_input_border_width":2,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"7px","lightbox_comment_input_padding":"5px","lightbox_comment_separator_width":20,"lightbox_comment_separator_style":"none","lightbox_comment_separator_color":"383838","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"808080","lightbox_filmstrip_rl_bg_color":"EBEBEB","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"808080","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_pos":"bottom","lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_overlay_bg_transparent":60,"lightbox_bg_color":"FFFFFF","lightbox_overlay_bg_color":"EEEEEE","lightbox_rl_btn_style":"fa-angle","lightbox_bg_transparent":100,"blog_style_margin":"2px","blog_style_padding":"0","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"solid","blog_style_border_color":"F5F5F5","blog_style_bg_color":"FFFFFF","blog_style_transparent":80,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_font_size":20,"blog_style_share_buttons_color":"B3AFAF","blog_style_share_buttons_bg_transparent":0,"blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"0","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"F5F5F5","image_browser_bg_color":"EBEBEB","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"0px 5px 0px 5px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"EBEBEB","image_browser_image_description_align":"center","image_browser_img_font_size":15,"image_browser_img_font_family":"Ubuntu","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":2,"image_browser_full_border_style":"none","image_browser_full_border_color":"F7F7F7","image_browser_full_bg_color":"F5F5F5","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","album_compact_title_margin":"2px","album_compact_thumb_margin":2,"album_compact_back_padding":"0","album_compact_thumb_padding":0,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":0,"album_compact_title_font_style":"segoe ui","album_compact_back_font_color":"000000","album_compact_title_font_color":"FFFFFF","album_compact_title_shadow":"0px 0px 0px #888888","album_compact_thumb_bg_transparent":0,"album_compact_thumb_box_shadow":"0px 0px 0px #888888","album_compact_thumb_transition":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"CCCCCC","album_compact_thumb_bg_color":"FFFFFF","album_compact_back_font_weight":"bold","album_compact_back_font_size":16,"album_compact_back_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_thumbs_bg_color":"FFFFFF","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"scale","album_compact_thumb_transparent":100,"album_compact_thumb_hover_effect_value":"1.08","album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":0,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":0,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"CCCCCC","album_extended_thumb_bg_color":"FFFFFF","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":0,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"scale","album_extended_thumb_hover_effect_value":"1.08","album_extended_thumb_transition":1,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":20,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0 0 0 0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"solid","album_extended_div_separator_color":"E0E0E0","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":1,"album_extended_thumb_div_border_style":"solid","album_extended_thumb_div_border_color":"E8E8E8","album_extended_thumb_div_padding":"5px","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"solid","album_extended_text_div_border_color":"E8E8E8","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"F2D22E","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","slideshow_cont_bg_color":"F2F2F2","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"FFFFFF","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"0px 0px 0px #000000","slideshow_rl_btn_color":"D6D6D6","slideshow_rl_btn_height":37,"slideshow_rl_btn_size":12,"slideshow_rl_btn_width":37,"slideshow_close_rl_btn_hover_color":"BABABA","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":0,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0px 2px 0 0 ","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":100,"slideshow_filmstrip_rl_bg_color":"F2F2F2","slideshow_filmstrip_rl_btn_color":"BABABA","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"0 0 0 0","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":12,"slideshow_dots_height":12,"slideshow_dots_border_radius":"5px","slideshow_dots_background_color":"F2D22E","slideshow_dots_margin":3,"slideshow_dots_active_background_color":"FFFFFF","slideshow_dots_active_border_width":1,"slideshow_dots_active_border_color":"000000","slideshow_play_pause_btn_size":35,"slideshow_rl_btn_style":"fa-chevron","masonry_thumb_padding":"2","masonry_thumb_border_radius":"0","masonry_thumb_border_width":"0","masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":"0","masonry_thumb_transparent":"100","masonry_thumb_align":"center","masonry_thumb_hover_effect":"scale","masonry_thumb_hover_effect_value":"1.08","masonry_thumb_transition":"1","masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","mosaic_thumb_padding":"2","mosaic_thumb_border_radius":"0","mosaic_thumb_border_width":"0","mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":"0","mosaic_thumb_transparent":"100","mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"scale","mosaic_thumb_hover_effect_value":"1.08","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_title_font_weight":"bold","mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","lightbox_info_pos":"bottom","lightbox_info_align":"left","lightbox_info_bg_color":"FFFFFF","lightbox_info_bg_transparent":"70","lightbox_info_border_width":"1","lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"0px","lightbox_info_padding":"10px 7px 44px 10px","lightbox_info_margin":"10px 10px -5px 10px","lightbox_title_color":"808080","lightbox_title_font_style":"Ubuntu","lightbox_title_font_weight":"bold","lightbox_title_font_size":"16","lightbox_description_color":"B0B0B0","lightbox_description_font_style":"Ubuntu","lightbox_description_font_weight":"bold","lightbox_description_font_size":"13","lightbox_rate_pos":"top","lightbox_rate_align":"left","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":"20","lightbox_rate_stars_count":"5","lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":"70","lightbox_hit_border_width":"1","lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":"14","masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":16,"album_masonry_back_font_weight":"bold","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"","album_masonry_title_shadow":"0px 0px 0px #888888","album_masonry_thumb_margin":0,"album_masonry_thumb_padding":0,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":0,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"CCCCCC","album_masonry_thumb_bg_color":"FFFFFF","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":0,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"scale","album_masonry_thumb_hover_effect_value":"1.08","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":50,"carousel_rl_btn_bg_color":"FFFFFF","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"303030","carousel_rl_btn_height":35,"carousel_rl_btn_size":15,"carousel_play_pause_btn_size":25,"carousel_rl_btn_width":35,"carousel_close_rl_btn_hover_color":"191919","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"arial","carousel_feature_border_width":2,"carousel_feature_border_style":"none","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":"1"}';
133
+ $theme2 = '{"thumb_margin":"4","container_margin":"1","thumb_padding":"0","thumb_border_radius":"0","thumb_border_width":5,"thumb_border_style":"none","thumb_border_color":"FFFFFF","thumb_bg_color":"E8E8E8","thumbs_bg_color":"FFFFFF","thumb_bg_transparent":0,"thumb_box_shadow":"0px 0px 0px #888888","thumb_transparent":100,"thumb_align":"center","thumb_hover_effect":"scale","thumb_hover_effect_value":"2deg","thumb_transition":1,"thumb_title_font_color":"CCCCCC","thumb_title_font_style":"segoe ui","thumb_title_pos":"bottom","thumb_title_font_size":16,"thumb_title_font_weight":"bold","thumb_title_margin":"5px","thumb_title_shadow":"","thumb_gal_title_font_color":"CCCCCC","thumb_gal_title_font_style":"segoe ui","thumb_gal_title_font_size":16,"thumb_gal_title_font_weight":"bold","thumb_gal_title_margin":"2px","thumb_gal_title_shadow":"0px 0px 0px #888888","thumb_gal_title_align":"center","page_nav_position":"bottom","page_nav_align":"center","page_nav_number":0,"page_nav_font_size":12,"page_nav_font_style":"segoe ui","page_nav_font_color":"666666","page_nav_font_weight":"bold","page_nav_border_width":1,"page_nav_border_style":"none","page_nav_border_color":"E3E3E3","page_nav_border_radius":"0","page_nav_margin":"0","page_nav_padding":"3px 6px","page_nav_button_bg_color":"FCFCFC","page_nav_button_bg_transparent":100,"page_nav_box_shadow":"0","page_nav_button_transition":1,"page_nav_button_text":0,"lightbox_overlay_bg_color":"000000","lightbox_overlay_bg_transparent":70,"lightbox_bg_color":"000000","lightbox_ctrl_btn_pos":"bottom","lightbox_ctrl_btn_align":"center","lightbox_ctrl_btn_height":20,"lightbox_ctrl_btn_margin_top":10,"lightbox_ctrl_btn_margin_left":7,"lightbox_ctrl_btn_transparent":80,"lightbox_ctrl_btn_color":"FFFFFF","lightbox_toggle_btn_height":14,"lightbox_toggle_btn_width":100,"lightbox_ctrl_cont_bg_color":"000000","lightbox_ctrl_cont_transparent":80,"lightbox_ctrl_cont_border_radius":4,"lightbox_close_btn_transparent":95,"lightbox_close_btn_bg_color":"000000","lightbox_close_btn_border_width":0,"lightbox_close_btn_border_radius":"16px","lightbox_close_btn_border_style":"none","lightbox_close_btn_border_color":"FFFFFF","lightbox_close_btn_box_shadow":"","lightbox_close_btn_color":"FFFFFF","lightbox_close_btn_size":10,"lightbox_close_btn_width":20,"lightbox_close_btn_height":20,"lightbox_close_btn_top":"-10","lightbox_close_btn_right":"-10","lightbox_close_btn_full_color":"FFFFFF","lightbox_rl_btn_bg_color":"000000","lightbox_rl_btn_border_radius":"20px","lightbox_rl_btn_border_width":2,"lightbox_rl_btn_border_style":"none","lightbox_rl_btn_border_color":"FFFFFF","lightbox_rl_btn_box_shadow":"","lightbox_rl_btn_color":"FFFFFF","lightbox_rl_btn_height":40,"lightbox_rl_btn_width":40,"lightbox_rl_btn_size":20,"lightbox_close_rl_btn_hover_color":"FFFFFF","lightbox_comment_pos":"left","lightbox_comment_width":400,"lightbox_comment_bg_color":"000000","lightbox_comment_font_color":"CCCCCC","lightbox_comment_font_style":"segoe ui","lightbox_comment_font_size":12,"lightbox_comment_button_bg_color":"333333","lightbox_comment_button_border_color":"666666","lightbox_comment_button_border_width":1,"lightbox_comment_button_border_style":"none","lightbox_comment_button_border_radius":"3px","lightbox_comment_button_padding":"3px 10px","lightbox_comment_input_bg_color":"333333","lightbox_comment_input_border_color":"666666","lightbox_comment_input_border_width":1,"lightbox_comment_input_border_style":"none","lightbox_comment_input_border_radius":"0","lightbox_comment_input_padding":"3px","lightbox_comment_separator_width":1,"lightbox_comment_separator_style":"solid","lightbox_comment_separator_color":"2B2B2B","lightbox_comment_author_font_size":14,"lightbox_comment_date_font_size":10,"lightbox_comment_body_font_size":12,"lightbox_comment_share_button_color":"FFFFFF","lightbox_filmstrip_pos":"top","lightbox_filmstrip_rl_bg_color":"2B2B2B","lightbox_filmstrip_rl_btn_size":20,"lightbox_filmstrip_rl_btn_color":"FFFFFF","lightbox_filmstrip_thumb_margin":"0 1px","lightbox_filmstrip_thumb_border_width":1,"lightbox_filmstrip_thumb_border_style":"none","lightbox_filmstrip_thumb_border_color":"000000","lightbox_filmstrip_thumb_border_radius":"0","lightbox_filmstrip_thumb_deactive_transparent":80,"lightbox_filmstrip_thumb_active_border_width":0,"lightbox_filmstrip_thumb_active_border_color":"FFFFFF","lightbox_rl_btn_style":"fa-chevron","lightbox_rl_btn_transparent":80,"lightbox_bg_transparent":100,"album_compact_back_font_color":"000000","album_compact_back_font_style":"segoe ui","album_compact_back_font_size":14,"album_compact_back_font_weight":"normal","album_compact_back_padding":"0","album_compact_title_font_color":"CCCCCC","album_compact_title_font_style":"segoe ui","album_compact_thumb_title_pos":"bottom","album_compact_title_font_size":16,"album_compact_title_font_weight":"bold","album_compact_title_margin":"5px","album_compact_title_shadow":"","album_compact_thumb_margin":4,"album_compact_thumb_padding":4,"album_compact_thumb_border_radius":"0","album_compact_thumb_border_width":1,"album_compact_thumb_border_style":"none","album_compact_thumb_border_color":"000000","album_compact_thumb_bg_color":"E8E8E8","album_compact_thumbs_bg_color":"FFFFFF","album_compact_thumb_bg_transparent":100,"album_compact_thumb_box_shadow":"","album_compact_thumb_transparent":100,"album_compact_thumb_align":"center","album_compact_thumb_hover_effect":"rotate","album_compact_thumb_hover_effect_value":"2deg","album_compact_thumb_transition":1,"album_compact_gal_title_font_color":"CCCCCC","album_compact_gal_title_font_style":"segoe ui","album_compact_gal_title_font_size":16,"album_compact_gal_title_font_weight":"bold","album_compact_gal_title_margin":"2px","album_compact_gal_title_shadow":"0px 0px 0px #888888","album_compact_gal_title_align":"center","album_extended_thumb_margin":2,"album_extended_thumb_padding":4,"album_extended_thumb_border_radius":"0","album_extended_thumb_border_width":4,"album_extended_thumb_border_style":"none","album_extended_thumb_border_color":"E8E8E8","album_extended_thumb_bg_color":"E8E8E8","album_extended_thumbs_bg_color":"FFFFFF","album_extended_thumb_bg_transparent":100,"album_extended_thumb_box_shadow":"","album_extended_thumb_transparent":100,"album_extended_thumb_align":"left","album_extended_thumb_hover_effect":"rotate","album_extended_thumb_hover_effect_value":"2deg","album_extended_thumb_transition":0,"album_extended_back_font_color":"000000","album_extended_back_font_style":"segoe ui","album_extended_back_font_size":16,"album_extended_back_font_weight":"bold","album_extended_back_padding":"0","album_extended_div_bg_color":"FFFFFF","album_extended_div_bg_transparent":0,"album_extended_div_border_radius":"0","album_extended_div_margin":"0 0 5px 0","album_extended_div_padding":10,"album_extended_div_separator_width":1,"album_extended_div_separator_style":"none","album_extended_div_separator_color":"CCCCCC","album_extended_thumb_div_bg_color":"FFFFFF","album_extended_thumb_div_border_radius":"0","album_extended_thumb_div_border_width":0,"album_extended_thumb_div_border_style":"none","album_extended_thumb_div_border_color":"CCCCCC","album_extended_thumb_div_padding":"0","album_extended_text_div_bg_color":"FFFFFF","album_extended_text_div_border_radius":"0","album_extended_text_div_border_width":1,"album_extended_text_div_border_style":"none","album_extended_text_div_border_color":"CCCCCC","album_extended_text_div_padding":"5px","album_extended_title_span_border_width":1,"album_extended_title_span_border_style":"none","album_extended_title_span_border_color":"CCCCCC","album_extended_title_font_color":"000000","album_extended_title_font_style":"segoe ui","album_extended_title_font_size":16,"album_extended_title_font_weight":"bold","album_extended_title_margin_bottom":2,"album_extended_title_padding":"2px","album_extended_desc_span_border_width":1,"album_extended_desc_span_border_style":"none","album_extended_desc_span_border_color":"CCCCCC","album_extended_desc_font_color":"000000","album_extended_desc_font_style":"segoe ui","album_extended_desc_font_size":14,"album_extended_desc_font_weight":"normal","album_extended_desc_padding":"2px","album_extended_desc_more_color":"FFC933","album_extended_desc_more_size":12,"album_extended_gal_title_font_color":"CCCCCC","album_extended_gal_title_font_style":"segoe ui","album_extended_gal_title_font_size":16,"album_extended_gal_title_font_weight":"bold","album_extended_gal_title_margin":"2px","album_extended_gal_title_shadow":"0px 0px 0px #888888","album_extended_gal_title_align":"center","masonry_thumb_padding":4,"masonry_thumb_border_radius":"2px","masonry_thumb_border_width":1,"masonry_thumb_border_style":"none","masonry_thumb_border_color":"CCCCCC","masonry_thumbs_bg_color":"FFFFFF","masonry_thumb_bg_transparent":0,"masonry_thumb_transparent":80,"masonry_thumb_align":"center","masonry_thumb_hover_effect":"rotate","masonry_thumb_hover_effect_value":"2deg","masonry_thumb_transition":0,"masonry_thumb_gal_title_font_color":"CCCCCC","masonry_thumb_gal_title_font_style":"segoe ui","masonry_thumb_gal_title_font_size":16,"masonry_thumb_gal_title_font_weight":"bold","masonry_thumb_gal_title_margin":"2px","masonry_thumb_gal_title_shadow":"0px 0px 0px #888888","masonry_thumb_gal_title_align":"center","slideshow_cont_bg_color":"000000","slideshow_close_btn_transparent":100,"slideshow_rl_btn_bg_color":"000000","slideshow_rl_btn_border_radius":"20px","slideshow_rl_btn_border_width":0,"slideshow_rl_btn_border_style":"none","slideshow_rl_btn_border_color":"FFFFFF","slideshow_rl_btn_box_shadow":"","slideshow_rl_btn_color":"FFFFFF","slideshow_rl_btn_height":40,"slideshow_rl_btn_size":20,"slideshow_rl_btn_width":40,"slideshow_close_rl_btn_hover_color":"DBDBDB","slideshow_filmstrip_pos":"bottom","slideshow_filmstrip_thumb_border_width":1,"slideshow_filmstrip_thumb_border_style":"none","slideshow_filmstrip_thumb_border_color":"000000","slideshow_filmstrip_thumb_border_radius":"0","slideshow_filmstrip_thumb_margin":"0 1px","slideshow_filmstrip_thumb_active_border_width":0,"slideshow_filmstrip_thumb_active_border_color":"FFFFFF","slideshow_filmstrip_thumb_deactive_transparent":80,"slideshow_filmstrip_rl_bg_color":"303030","slideshow_filmstrip_rl_btn_color":"FFFFFF","slideshow_filmstrip_rl_btn_size":20,"slideshow_title_font_size":16,"slideshow_title_font":"segoe ui","slideshow_title_color":"FFFFFF","slideshow_title_opacity":70,"slideshow_title_border_radius":"5px","slideshow_title_background_color":"000000","slideshow_title_padding":"5px 10px 5px 10px","slideshow_description_font_size":14,"slideshow_description_font":"segoe ui","slideshow_description_color":"FFFFFF","slideshow_description_opacity":70,"slideshow_description_border_radius":"0","slideshow_description_background_color":"000000","slideshow_description_padding":"5px 10px 5px 10px","slideshow_dots_width":10,"slideshow_dots_height":10,"slideshow_dots_border_radius":"10px","slideshow_dots_background_color":"292929","slideshow_dots_margin":1,"slideshow_dots_active_background_color":"292929","slideshow_dots_active_border_width":2,"slideshow_dots_active_border_color":"FFC933","slideshow_play_pause_btn_size":60,"slideshow_rl_btn_style":"fa-chevron","blog_style_margin":"2px","blog_style_padding":"4px","blog_style_border_radius":"0","blog_style_border_width":1,"blog_style_border_style":"none","blog_style_border_color":"CCCCCC","blog_style_bg_color":"E8E8E8","blog_style_transparent":70,"blog_style_box_shadow":"","blog_style_align":"center","blog_style_share_buttons_margin":"5px auto 10px auto","blog_style_share_buttons_border_radius":"0","blog_style_share_buttons_border_width":0,"blog_style_share_buttons_border_style":"none","blog_style_share_buttons_border_color":"000000","blog_style_share_buttons_bg_color":"FFFFFF","blog_style_share_buttons_align":"right","blog_style_img_font_size":16,"blog_style_img_font_family":"segoe ui","blog_style_img_font_color":"000000","blog_style_share_buttons_color":"A1A1A1","blog_style_share_buttons_bg_transparent":0,"blog_style_share_buttons_font_size":20,"blog_style_image_title_align":"top","blog_style_gal_title_font_color":"CCCCCC","blog_style_gal_title_font_style":"segoe ui","blog_style_gal_title_font_size":16,"blog_style_gal_title_font_weight":"bold","blog_style_gal_title_margin":"2px","blog_style_gal_title_shadow":"0px 0px 0px #888888","blog_style_gal_title_align":"center","image_browser_margin":"2px auto","image_browser_padding":"4px","image_browser_border_radius":"2px","image_browser_border_width":1,"image_browser_border_style":"none","image_browser_border_color":"E8E8E8","image_browser_bg_color":"E8E8E8","image_browser_box_shadow":"","image_browser_transparent":80,"image_browser_align":"center","image_browser_image_description_margin":"24px 0px 0px 0px","image_browser_image_description_padding":"8px 8px 8px 8px","image_browser_image_description_border_radius":"0","image_browser_image_description_border_width":1,"image_browser_image_description_border_style":"none","image_browser_image_description_border_color":"FFFFFF","image_browser_image_description_bg_color":"E8E8E8","image_browser_image_description_align":"center","image_browser_img_font_size":14,"image_browser_img_font_family":"segoe ui","image_browser_img_font_color":"000000","image_browser_full_padding":"4px","image_browser_full_border_radius":"0","image_browser_full_border_width":1,"image_browser_full_border_style":"solid","image_browser_full_border_color":"EDEDED","image_browser_full_bg_color":"FFFFFF","image_browser_full_transparent":90,"image_browser_image_title_align":"top","image_browser_gal_title_font_color":"CCCCCC","image_browser_gal_title_font_style":"segoe ui","image_browser_gal_title_font_size":16,"image_browser_gal_title_font_weight":"bold","image_browser_gal_title_margin":"2px","image_browser_gal_title_shadow":"0px 0px 0px #888888","image_browser_gal_title_align":"center","lightbox_info_pos":"top","lightbox_info_align":"right","lightbox_info_bg_color":"000000","lightbox_info_bg_transparent":70,"lightbox_info_border_width":1,"lightbox_info_border_style":"none","lightbox_info_border_color":"000000","lightbox_info_border_radius":"5px","lightbox_info_padding":"5px","lightbox_info_margin":"15px","lightbox_title_color":"FFFFFF","lightbox_title_font_style":"segoe ui","lightbox_title_font_weight":"bold","lightbox_title_font_size":18,"lightbox_description_color":"FFFFFF","lightbox_description_font_style":"segoe ui","lightbox_description_font_weight":"normal","lightbox_description_font_size":14,"lightbox_rate_pos":"bottom","lightbox_rate_align":"right","lightbox_rate_icon":"star","lightbox_rate_color":"F9D062","lightbox_rate_size":20,"lightbox_rate_stars_count":5,"lightbox_rate_padding":"15px","lightbox_rate_hover_color":"F7B50E","lightbox_hit_pos":"bottom","lightbox_hit_align":"left","lightbox_hit_bg_color":"000000","lightbox_hit_bg_transparent":70,"lightbox_hit_border_width":1,"lightbox_hit_border_style":"none","lightbox_hit_border_color":"000000","lightbox_hit_border_radius":"5px","lightbox_hit_padding":"5px","lightbox_hit_margin":"0 5px","lightbox_hit_color":"FFFFFF","lightbox_hit_font_style":"segoe ui","lightbox_hit_font_weight":"normal","lightbox_hit_font_size":14,"masonry_description_font_size":12,"masonry_description_color":"CCCCCC","masonry_description_font_style":"segoe ui","album_masonry_back_font_color":"000000","album_masonry_back_font_style":"segoe ui","album_masonry_back_font_size":14,"album_masonry_back_font_weight":"normal","album_masonry_back_padding":"0","album_masonry_title_font_color":"CCCCCC","album_masonry_title_font_style":"segoe ui","album_masonry_thumb_title_pos":"bottom","album_masonry_title_font_size":16,"album_masonry_title_font_weight":"bold","album_masonry_title_margin":"5px","album_masonry_title_shadow":"","album_masonry_thumb_margin":4,"album_masonry_thumb_padding":4,"album_masonry_thumb_border_radius":"0","album_masonry_thumb_border_width":1,"album_masonry_thumb_border_style":"none","album_masonry_thumb_border_color":"000000","album_masonry_thumb_bg_color":"E8E8E8","album_masonry_thumbs_bg_color":"FFFFFF","album_masonry_thumb_bg_transparent":100,"album_masonry_thumb_box_shadow":"","album_masonry_thumb_transparent":100,"album_masonry_thumb_align":"center","album_masonry_thumb_hover_effect":"rotate","album_masonry_thumb_hover_effect_value":"2deg","album_masonry_thumb_transition":1,"album_masonry_gal_title_font_color":"CCCCCC","album_masonry_gal_title_font_style":"segoe ui","album_masonry_gal_title_font_size":16,"album_masonry_gal_title_font_weight":"bold","album_masonry_gal_title_margin":"2px","album_masonry_gal_title_shadow":"0px 0px 0px #888888","album_masonry_gal_title_align":"center","mosaic_thumb_padding":4,"mosaic_thumb_border_radius":"2px","mosaic_thumb_border_width":1,"mosaic_thumb_border_style":"none","mosaic_thumb_border_color":"CCCCCC","mosaic_thumbs_bg_color":"FFFFFF","mosaic_thumb_bg_transparent":0,"mosaic_thumb_transparent":80,"mosaic_thumb_align":"center","mosaic_thumb_hover_effect":"rotate","mosaic_thumb_hover_effect_value":"2deg","mosaic_thumb_title_font_color":"CCCCCC","mosaic_thumb_title_font_style":"segoe ui","mosaic_thumb_title_font_weight":"bold","mosaic_thumb_title_margin":"2px","mosaic_thumb_title_shadow":"0px 0px 0px #888888","mosaic_thumb_title_font_size":16,"mosaic_thumb_gal_title_font_color":"CCCCCC","mosaic_thumb_gal_title_font_style":"segoe ui","mosaic_thumb_gal_title_font_size":16,"mosaic_thumb_gal_title_font_weight":"bold","mosaic_thumb_gal_title_margin":"2px","mosaic_thumb_gal_title_shadow":"0px 0px 0px #888888","mosaic_thumb_gal_title_align":"center","carousel_cont_bg_color":"000000","carousel_cont_btn_transparent":0,"carousel_close_btn_transparent":100,"carousel_rl_btn_bg_color":"000000","carousel_rl_btn_border_radius":"20px","carousel_rl_btn_border_width":0,"carousel_rl_btn_border_style":"none","carousel_rl_btn_border_color":"FFFFFF","carousel_rl_btn_color":"FFFFFF","carousel_rl_btn_height":40,"carousel_rl_btn_size":20,"carousel_play_pause_btn_size":20,"carousel_rl_btn_width":40,"carousel_close_rl_btn_hover_color":"CCCCCC","carousel_rl_btn_style":"fa-chevron","carousel_mergin_bottom":"0.5","carousel_font_family":"segoe ui","carousel_feature_border_width":2,"carousel_feature_border_style":"solid","carousel_feature_border_color":"5D204F","carousel_caption_background_color":"000000","carousel_caption_bottom":0,"carousel_caption_p_mergin":0,"carousel_caption_p_pedding":5,"carousel_caption_p_font_weight":"bold","carousel_caption_p_font_size":14,"carousel_caption_p_color":"FFFFFF","carousel_title_opacity":100,"carousel_title_border_radius":"5px","mosaic_thumb_transition":1}';
134
 
135
  if (!$exists_default) {
136
  $wpdb->insert($wpdb->prefix . 'bwg_theme', array(
js/bwg.js CHANGED
@@ -1,4 +1,10 @@
1
  jQuery(document).ready(function () {
 
 
 
 
 
 
2
  // Galleries form.
3
  if ( jQuery("form").hasClass("bwg_galleries") ) {
4
  wd_showhide_weights();
@@ -1272,29 +1278,29 @@ function bwg_change_fonts(cont, google_fonts) {
1272
  * @param multiple
1273
  */
1274
  function spider_media_uploader(e, multiple) {
1275
- if (typeof multiple == "undefined") {
1276
  var multiple = false;
1277
  }
1278
  var custom_uploader;
1279
  e.preventDefault();
1280
  // If the uploader object has already been created, reopen the dialog.
1281
- if (custom_uploader) {
1282
  custom_uploader.open();
1283
  }
1284
 
1285
- custom_uploader = wp.media.frames.file_frame = wp.media({
1286
  title: bwg_objectL10B.choose_images,
1287
- library: { type : 'image' },
1288
  button: { text: bwg_objectL10B.insert },
1289
  multiple: multiple
1290
  });
1291
  // When a file is selected, grab the URL and set it as the text field's value
1292
- custom_uploader.on('select', function() {
1293
- if (multiple == false) {
1294
- attachment = custom_uploader.state().get('selection').first().toJSON();
1295
  }
1296
  else {
1297
- attachment = custom_uploader.state().get('selection').toJSON();
1298
  }
1299
 
1300
  var filesSelectedML = [];
@@ -1303,34 +1309,60 @@ function spider_media_uploader(e, multiple) {
1303
  image_url = image_url.replace(bwg_objectL10B.wp_upload_dir.baseurl + '/', '');
1304
  filesSelectedML.push(image_url);
1305
  }
1306
- fileNamesML = filesSelectedML.join("**@**");
1307
- jQuery.ajax({
1308
- url: bwg_objectL10B.ajax_url,
1309
- type: "POST",
1310
- dataType: "json",
1311
- data: {
1312
- action : "bwg_UploadHandler",
1313
- file_namesML : fileNamesML,
1314
- import : 1
1315
- },
1316
- success: function (result) {
1317
- for (var i in result) {
1318
- result[i].alt = attachment[i].alt ? attachment[i].alt : attachment[i].title;
1319
- result[i].description = attachment[i].description;
1320
- }
1321
- bwg_add_image(result);
1322
- },
1323
- beforeSend: function() {
1324
- jQuery('#loading_div').show();
1325
- },
1326
- error: function(xhr) {
1327
- alert(bwg_objectL10B.import_failed);
1328
- },
1329
- complete:function() {
1330
- jQuery('#loading_div').hide();
1331
- }
1332
- });
1333
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1334
 
1335
  // Open the uploader dialog.
1336
  custom_uploader.open();
@@ -1468,6 +1500,7 @@ function bwg_change_theme_tab_item() {
1468
  var id = jQuery(this).attr('data-id');
1469
  jQuery('.spider_type_fieldset').hide();
1470
  jQuery('#'+ id ).show();
 
1471
  });
1472
  }
1473
 
1
  jQuery(document).ready(function () {
2
+ // press ESC hide loading.
3
+ jQuery(document).keyup(function(e) {
4
+ if ( e.keyCode == 27 ) {
5
+ jQuery('#loading_div').hide();
6
+ }
7
+ });
8
  // Galleries form.
9
  if ( jQuery("form").hasClass("bwg_galleries") ) {
10
  wd_showhide_weights();
1278
  * @param multiple
1279
  */
1280
  function spider_media_uploader(e, multiple) {
1281
+ if ( typeof multiple == "undefined" ) {
1282
  var multiple = false;
1283
  }
1284
  var custom_uploader;
1285
  e.preventDefault();
1286
  // If the uploader object has already been created, reopen the dialog.
1287
+ if ( custom_uploader ) {
1288
  custom_uploader.open();
1289
  }
1290
 
1291
+ custom_uploader = wp.media.frames.file_frame = wp.media( {
1292
  title: bwg_objectL10B.choose_images,
1293
+ library: { type: 'image' },
1294
  button: { text: bwg_objectL10B.insert },
1295
  multiple: multiple
1296
  });
1297
  // When a file is selected, grab the URL and set it as the text field's value
1298
+ custom_uploader.on( 'select', function() {
1299
+ if ( multiple == false ) {
1300
+ attachment = custom_uploader.state().get( 'selection' ).first().toJSON();
1301
  }
1302
  else {
1303
+ attachment = custom_uploader.state().get( 'selection' ).toJSON();
1304
  }
1305
 
1306
  var filesSelectedML = [];
1309
  image_url = image_url.replace(bwg_objectL10B.wp_upload_dir.baseurl + '/', '');
1310
  filesSelectedML.push(image_url);
1311
  }
1312
+ jQuery( '#loading_div' ).show();
1313
+
1314
+ postImageUrls(filesSelectedML, function (success, result) {
1315
+ jQuery( '#loading_div' ).hide();
1316
+
1317
+ if (success) {
1318
+ for ( var i in result ) {
1319
+ result[i].alt = attachment[i].alt ? attachment[i].alt : attachment[i].title;
1320
+ result[i].description = attachment[i].description;
1321
+ }
1322
+ bwg_add_image( result );
1323
+ }
1324
+ else {
1325
+ alert( bwg_objectL10B.import_failed );
1326
+ }
1327
+ });
1328
+
1329
+ function postImageUrls(imageUrls, callback, index, results) {
1330
+ var imagesChunkLength = 50;
1331
+
1332
+ if (!index) {
1333
+ index = 0;
1334
+ }
1335
+ if (!results) {
1336
+ results = [];
1337
+ }
1338
+
1339
+ var imageUrlsChunk = imageUrls.slice(index, index + imagesChunkLength);
1340
+ index += imagesChunkLength;
1341
+ jQuery.ajax( {
1342
+ url: bwg_objectL10B.ajax_url,
1343
+ type: "POST",
1344
+ dataType: "json",
1345
+ data: {
1346
+ action: "bwg_UploadHandler",
1347
+ file_namesML: JSON.stringify(imageUrlsChunk),
1348
+ import: 1
1349
+ },
1350
+ success: function ( result ) {
1351
+ results = results.concat(result);
1352
+
1353
+ if (index < imageUrls.length) {
1354
+ postImageUrls(imageUrls, callback, index, results);
1355
+ }
1356
+ else {
1357
+ callback(true, results);
1358
+ }
1359
+ },
1360
+ error: function ( xhr ) {
1361
+ callback(false);
1362
+ }
1363
+ } );
1364
+ }
1365
+ } );
1366
 
1367
  // Open the uploader dialog.
1368
  custom_uploader.open();
1500
  var id = jQuery(this).attr('data-id');
1501
  jQuery('.spider_type_fieldset').hide();
1502
  jQuery('#'+ id ).show();
1503
+ jQuery('#active_tab').val(jQuery(this).attr('data-id'));
1504
  });
1505
  }
1506
 
js/bwg_frontend.js CHANGED
@@ -1,3 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_album_id, type, srch_btn, title, sortByParam, load_more, description) {
2
  var masonry_loaded = 0;
3
  var mosaic_loaded = 0;
@@ -16,6 +174,7 @@ function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_a
16
  var bwg_previous_album_page_number = bwg_previous_album_page_numbers.split(",");
17
  page_number = bwg_previous_album_page_number[0];
18
  jQuery('#bwg_previous_album_page_number_' + current_view).val(bwg_previous_album_page_numbers.replace(bwg_previous_album_page_number[0] + ',', ''));
 
19
  }
20
  else if (cur_album_id != '') { // Enter album (not change the page).
21
  jQuery('#bwg_previous_album_id_' + current_view).val(album_gallery_id + ',' + bwg_previous_album_ids);
@@ -44,14 +203,19 @@ function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_a
44
  post_data["type_" + current_view] = type;
45
  post_data["title_" + current_view] = title;
46
  post_data["description_" + current_view] = description;
47
- post_data["sortImagesByValue_" + current_view] = sortByParam;
48
  if (jQuery("#bwg_search_input_" + current_view).length > 0) { // Search box exists.
49
  post_data["bwg_search_" + current_view] = jQuery("#bwg_search_input_" + current_view).val();
50
  }
51
  post_data["bwg_tag_id_" + id] = jQuery("#bwg_tag_id_" + id).val();
52
  // Loading.
53
- jQuery("#ajax_loading_" + current_view).css('display', '');
54
- jQuery.ajax({
 
 
 
 
 
55
  type: "POST",
56
  url: window.location,
57
  data: post_data,
@@ -92,23 +256,32 @@ function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_a
92
  complete:function(){
93
  jQuery("div[id^='bwg_container1_'] img").each(function () {
94
  if (jQuery(this).attr("data-lazy-src") != '') {
95
- jQuery(this).attr("src", jQuery(this).attr("data-lazy-src"));
96
  }
97
  else if (jQuery(this).attr("data-src") != '') {
98
- jQuery(this).attr("src", jQuery(this).attr("data-src"));
99
- }
100
  });
101
- jQuery(".blog_style_image_buttons_conteiner_" + current_view).find(jQuery(".bwg_blog_style_img_" + current_view)).on("load", function(){
102
  jQuery(".bwg_blog_style_img_" + current_view).closest(jQuery(".blog_style_image_buttons_conteiner_" + current_view)).show();
103
  });
104
- jQuery("#ajax_loading_" + current_view).css('display', 'none');
 
 
 
105
  jQuery("#bwg_tags_id_" + id).val(jQuery("#bwg_tag_id_" + id).val());
106
 
107
  if (jQuery(".pagination-links_" + current_view).length) {
108
  jQuery("html, body").animate({scrollTop: jQuery('#' + form_id).offset().top - 150}, 500);
109
  }
110
- /* For all*/
111
- window["bwg_document_ready_" + current_view]();
 
 
 
 
 
 
112
  /* For masonry view.*/
113
  if (id == "bwg_masonry_thumbnails_" + current_view || id == "bwg_album_masonry_" + current_view) {
114
  window["bwg_masonry_ajax_"+ current_view](masonry_loaded);
@@ -145,4 +318,1143 @@ function bwg_select_tag(current_view, form_id, cur_gal_id, album_gallery_id, typ
145
  jQuery("#bwg_tag_id_" + cur_gal_id).val('');
146
  }
147
  spider_frontend_ajax(form_id, current_view, cur_gal_id, album_gallery_id, '', type, 1, '');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  }
1
+ jQuery(document).ready(function () {
2
+ bwg_document_ready();
3
+ jQuery(".bwg-thumbnails").each(function () {
4
+ bwg_all_thumnails_loaded(this);
5
+ });
6
+ });
7
+
8
+ jQuery(window).on("resize", function () {
9
+ jQuery(".bwg-thumbnails").each(function () {
10
+ bwg_all_thumnails_loaded(this);
11
+ });
12
+ });
13
+
14
+ function bwg_all_thumnails_loaded(that) {
15
+ var thumbnails_count = 0;
16
+ var thumbnails_loaded = jQuery(that).find("img").length;
17
+ jQuery(that).find("img").each(function () {
18
+ var fakeSrc = jQuery(this).attr("src");
19
+ jQuery("<img/>").attr("src", fakeSrc).on("load error", function() {
20
+ if ( ++thumbnails_count >= thumbnails_loaded ) {
21
+ bwg_thumbnail(that);
22
+ }
23
+ });
24
+ });
25
+ }
26
+
27
+ function bwg_container_loaded(bwg) {
28
+ jQuery('#gal_front_form_' + bwg).removeClass('bwg-hidden');
29
+ jQuery('#ajax_loading_' + bwg).addClass('bwg-hidden');
30
+ }
31
+
32
+ function bwg_thumbnail(that) {
33
+ var container_width = jQuery(that).width();
34
+ var thumb_width = jQuery(that).data("thumbnail-width");
35
+ var max_count = jQuery(that).data("max-count");
36
+ var column_count = parseInt(container_width / thumb_width) + 1;
37
+ if (column_count > max_count) {
38
+ column_count = max_count;
39
+ }
40
+ /*var flex = 1 / column_count;*/
41
+ var min_width = 100 / column_count;
42
+ var bwg_item = jQuery(that).find(".bwg-item");
43
+ bwg_item.css({
44
+ /*flexGrow: flex,*/
45
+ width: min_width + "%"
46
+ });
47
+ jQuery(that).children(".bwg-item").each(function () {
48
+ var image = jQuery(this).find("img");
49
+ var item2 = jQuery(this).find(".bwg-item2");
50
+ if ( (item2.width() / item2.height()) > (image.width() / image.height()) ) {
51
+ if ( item2.width() > image.width() ) {
52
+ image.css({width: "100%"});
53
+ }
54
+ else {
55
+ image.css({maxWidth: "100%"});
56
+ }
57
+ }
58
+ else {
59
+ if ( item2.height() > image.height() ) {
60
+ image.css({height: "100%"});
61
+ }
62
+ else {
63
+ image.css({maxHeight: "100%"});
64
+ }
65
+ }
66
+ jQuery(this).find(".bwg-item2").css({
67
+ marginLeft: (item2.width() - image.width()) / 2,
68
+ marginTop: (item2.height() - image.height()) / 2
69
+ });
70
+ });
71
+ bwg_container_loaded(jQuery(that).data('bwg'));
72
+ }
73
+
74
+ function bwg_document_ready() {
75
+ var bwg_touch_flag = false;
76
+ jQuery( ".bwg_lightbox" ).on( "click", function () {
77
+ if ( !bwg_touch_flag ) {
78
+ bwg_touch_flag = true;
79
+ setTimeout( function () {
80
+ bwg_touch_flag = false;
81
+ }, 100 );
82
+ bwg_gallery_box( jQuery( this ).attr( "data-image-id" ), jQuery( this ).closest( '.bwg_container' ) );
83
+ return false;
84
+ }
85
+ } );
86
+
87
+ jQuery( ".bwg_lightbox .bwg_ecommerce" ).on( "click", function ( event ) {
88
+ event.stopPropagation();
89
+ if ( !bwg_touch_flag ) {
90
+ bwg_touch_flag = true;
91
+ setTimeout( function () {
92
+ bwg_touch_flag = false;
93
+ }, 100 );
94
+ var image_id = jQuery( this ).closest( ".bwg_lightbox" ).attr( "data-image-id" );
95
+ bwg_gallery_box( image_id, jQuery( this ).closest( '.bwg_container' ), true );
96
+ return false;
97
+ }
98
+ } );
99
+ jQuery( 'div[id^="bwg_container"]' ).each( function () {
100
+ var bwg_container = jQuery( this );
101
+ if ( bwg_container.data( 'right-click-protection' ) ) {
102
+ /* Disable right click.*/
103
+ bwg_container.bind( "contextmenu", function () {
104
+ return false;
105
+ } );
106
+ bwg_container.css( 'webkitTouchCallout', 'none' );
107
+ }
108
+
109
+ var search_tags = bwg_container.find('.search_tags');
110
+ if (search_tags.length) {
111
+ search_tags.SumoSelect( {
112
+ placeholder: bwg_objectsL10n.bwg_select_tag,
113
+ search: 1,
114
+ searchText: bwg_objectsL10n.bwg_search,
115
+ forceCustomRendering: true
116
+ } );
117
+ }
118
+ } );
119
+
120
+ var bwg_hash = window.location.hash.substring( 1 );
121
+ if ( bwg_hash ) {
122
+ if ( bwg_hash.indexOf( "bwg" ) != "-1" ) {
123
+ bwg_hash_array = bwg_hash.replace( "bwg", "" ).split( "/" );
124
+ var bwg_container = jQuery( '.bwg_container[data-gallery-id=' + bwg_hash_array[0] + ']' );
125
+ if ( bwg_container ) {
126
+ bwg_gallery_box( bwg_hash_array[1], bwg_container );
127
+ }
128
+ }
129
+ }
130
+ }
131
+
132
+ function bwg_clear_search_input (current_view) {
133
+ jQuery("#bwg_search_input_" + current_view).val('');
134
+ }
135
+
136
+ function bwg_check_search_input_enter(that, e) {
137
+ var key_code = e.which || e.keyCode;
138
+ if (key_code == 13) {
139
+ jQuery(that).closest('.bwg_search_container_1').find('.bwg_search').trigger('click');
140
+ return false;
141
+ }
142
+ return true;
143
+ }
144
+
145
+ function bwg_gallery_box(image_id, bwg_container, openEcommerce) {
146
+ if(typeof openEcommerce == undefined){
147
+ openEcommerce = false;
148
+ }
149
+ var bwg = bwg_container.data('bwg');
150
+ var bwg_lightbox_url = bwg_container.data('lightbox-url');
151
+ var filterTags = jQuery("#bwg_tags_id_bwg_standart_thumbnails_" + bwg ).val();
152
+ filterTags = filterTags ? filterTags : 0;
153
+ var ecommerce = openEcommerce == true ? "&open_ecommerce=1" : "";
154
+ var filtersearchname = jQuery("#bwg_search_input_" + bwg ).val();
155
+ filtersearchname = filtersearchname ? filtersearchname : '';
156
+ spider_createpopup(bwg_lightbox_url + '&image_id=' + image_id + "&filter_tag=" + filterTags + ecommerce + '&filter_search_name=' + filtersearchname, bwg, bwg_container.data('popup-width'), bwg_container.data('popup-height'), 1, 'testpopup', 5, bwg_container.data('buttons-position'));
157
+ }
158
+
159
  function spider_frontend_ajax(form_id, current_view, id, album_gallery_id, cur_album_id, type, srch_btn, title, sortByParam, load_more, description) {
160
  var masonry_loaded = 0;
161
  var mosaic_loaded = 0;
174
  var bwg_previous_album_page_number = bwg_previous_album_page_numbers.split(",");
175
  page_number = bwg_previous_album_page_number[0];
176
  jQuery('#bwg_previous_album_page_number_' + current_view).val(bwg_previous_album_page_numbers.replace(bwg_previous_album_page_number[0] + ',', ''));
177
+ post_data["action_" + current_view] = 'back';
178
  }
179
  else if (cur_album_id != '') { // Enter album (not change the page).
180
  jQuery('#bwg_previous_album_id_' + current_view).val(album_gallery_id + ',' + bwg_previous_album_ids);
203
  post_data["type_" + current_view] = type;
204
  post_data["title_" + current_view] = title;
205
  post_data["description_" + current_view] = description;
206
+ post_data["sortImagesByValue_" + current_view] = sortByParam;
207
  if (jQuery("#bwg_search_input_" + current_view).length > 0) { // Search box exists.
208
  post_data["bwg_search_" + current_view] = jQuery("#bwg_search_input_" + current_view).val();
209
  }
210
  post_data["bwg_tag_id_" + id] = jQuery("#bwg_tag_id_" + id).val();
211
  // Loading.
212
+ if ( id != "bwg_standart_thumbnails_" + current_view ) {
213
+ jQuery("#ajax_loading_" + current_view).css('display', '');
214
+ }
215
+ else {
216
+ jQuery("#ajax_loading_" + current_view).removeClass('bwg-hidden');
217
+ }
218
+ jQuery.ajax({
219
  type: "POST",
220
  url: window.location,
221
  data: post_data,
256
  complete:function(){
257
  jQuery("div[id^='bwg_container1_'] img").each(function () {
258
  if (jQuery(this).attr("data-lazy-src") != '') {
259
+ jQuery(this).attr("src", jQuery(this).attr("data-lazy-src"));
260
  }
261
  else if (jQuery(this).attr("data-src") != '') {
262
+ jQuery(this).attr("src", jQuery(this).attr("data-src"));
263
+ }
264
  });
265
+ jQuery(".blog_style_image_buttons_conteiner_" + current_view).find(jQuery(".bwg_blog_style_img_" + current_view)).on("load", function() {
266
  jQuery(".bwg_blog_style_img_" + current_view).closest(jQuery(".blog_style_image_buttons_conteiner_" + current_view)).show();
267
  });
268
+ if ( id != "bwg_standart_thumbnails_" + current_view ) {
269
+ jQuery("#ajax_loading_" + current_view).css('display', 'none');
270
+ //jQuery("#ajax_loading_" + current_view).addClass('bwg-hidden');
271
+ }
272
  jQuery("#bwg_tags_id_" + id).val(jQuery("#bwg_tag_id_" + id).val());
273
 
274
  if (jQuery(".pagination-links_" + current_view).length) {
275
  jQuery("html, body").animate({scrollTop: jQuery('#' + form_id).offset().top - 150}, 500);
276
  }
277
+ /* For thumbnails view.*/
278
+ if (id == "bwg_standart_thumbnails_" + current_view) {
279
+ bwg_document_ready();
280
+ bwg_all_thumnails_loaded(".bwg-container-" + current_view);
281
+ }
282
+ else {
283
+ window["bwg_document_ready_" + current_view]();
284
+ }
285
  /* For masonry view.*/
286
  if (id == "bwg_masonry_thumbnails_" + current_view || id == "bwg_album_masonry_" + current_view) {
287
  window["bwg_masonry_ajax_"+ current_view](masonry_loaded);
318
  jQuery("#bwg_tag_id_" + cur_gal_id).val('');
319
  }
320
  spider_frontend_ajax(form_id, current_view, cur_gal_id, album_gallery_id, '', type, 1, '');
321
+ }
322
+
323
+ function bwg_change_image(current_key, key, data, from_effect) {
324
+ bwg = bwg_param['bwg'];
325
+ bwg_current_key = bwg_param['bwg_current_key'];
326
+ // var bwg_image_info_pos = jQuery(".bwg_ctrl_btn_container").height();
327
+ jQuery(".bwg_image_info").css("height","auto");
328
+ setTimeout(function(){
329
+ if(jQuery(".bwg_image_info_container1").height() < (jQuery(".bwg_image_info").height() + jQuery(".bwg_toggle_container").height() + bwg_image_info_pos + 2*(parseInt(bwg_param['lightbox_info_margin'])))) {
330
+ if(bwg_param['lightbox_ctrl_btn_pos'] == 'top') {
331
+ jQuery(".bwg_image_info").css("top",bwg_image_info_pos + "px");
332
+ }
333
+ jQuery(".bwg_image_info").height(jQuery(".bwg_image_info_container1").height() - jQuery(".bwg_toggle_container").height() - bwg_image_info_pos - 2*(parseInt(bwg_param['lightbox_info_margin'])));
334
+ }
335
+ }, 200);
336
+ jQuery("#spider_popup_left").show();
337
+ jQuery("#spider_popup_right").show();
338
+ jQuery(".bwg_image_info").hide();
339
+ if (bwg_param['enable_loop'] == 0) {
340
+ if (key == (parseInt(data.length) - 1)) {
341
+ jQuery("#spider_popup_right").hide();
342
+ }
343
+ if (key == 0) {
344
+ jQuery("#spider_popup_left").hide();
345
+ }
346
+ }
347
+ var ecommerceACtive = bwg_param['ecommerceACtive'];
348
+ if( ecommerceACtive == 1 && bwg_param['enable_image_ecommerce'] == 1 ) {
349
+ if( data[key]["pricelist"] == 0) {
350
+ jQuery(".bwg_ecommerce").hide();
351
+ }
352
+ else {
353
+ jQuery(".bwg_ecommerce").show();
354
+ jQuery(".pge_tabs li").hide();
355
+ jQuery("#downloads").hide();
356
+ jQuery("#manual").hide();
357
+ var pricelistSections = data[key]["pricelist_sections"].split(",");
358
+
359
+ if(pricelistSections){
360
+ jQuery("#" + pricelistSections[0]).show();
361
+ jQuery("[name=type]").val(pricelistSections[0]);
362
+ if(pricelistSections.length > 1){
363
+ jQuery(".pge_tabs").show();
364
+ for( k=0 ; k<pricelistSections.length; k++ ){
365
+ jQuery("#" + pricelistSections[k] + "_li").show();
366
+ }
367
+ }
368
+ else{
369
+ jQuery(".pge_tabs").hide();
370
+ }
371
+ }
372
+ else{
373
+ jQuery("[name=type]").val("");
374
+ }
375
+ }
376
+ }
377
+ /* Pause videos.*/
378
+ jQuery("#bwg_image_container").find("iframe").each(function () {
379
+ jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
380
+ jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }', "*");
381
+ jQuery(this)[0].contentWindow.postMessage('pause', '*');
382
+ });
383
+ jQuery("#bwg_image_container"+bwg).find("video").each(function () {
384
+ jQuery(this).trigger('pause');
385
+ });
386
+
387
+ if (typeof data[key] != 'undefined') {
388
+ if (typeof data[current_key] != 'undefined') {
389
+ if (jQuery(".bwg_play_pause").length && !jQuery(".bwg_play_pause").hasClass("fa-play")) {
390
+ bwg_play();
391
+ }
392
+ if (!from_effect) {
393
+ /* Change image key.*/
394
+ jQuery("#bwg_current_image_key").val(key);
395
+ /*if (current_key == '-1') {
396
+ current_key = jQuery(".bwg_thumb_active").children("img").attr("image_key");
397
+ }*/
398
+ }
399
+ if (bwg_trans_in_progress) {
400
+ event_stack.push(current_key + '-' + key);
401
+ return;
402
+ }
403
+ var direction = 'right';
404
+ if (bwg_current_key > key) {
405
+ var direction = 'left';
406
+ }
407
+ else if (bwg_current_key == key) {
408
+ return;
409
+ }
410
+ /*jQuery("#spider_popup_left").hover().css({"display": "inline"});
411
+ jQuery("#spider_popup_right").hover().css({"display": "inline"});*/
412
+ jQuery(".bwg_image_count").html(data[key]["number"]);
413
+ /* Set filmstrip initial position.*/
414
+ jQuery(".bwg_watermark").css({display: 'none'});
415
+ /* Set active thumbnail position.*/
416
+ if ( bwg_param['width_or_height'] == 'width' ) {
417
+ bwg_current_filmstrip_pos = key * (jQuery(".bwg_filmstrip_thumbnail").width() + 2 + 2 * bwg_param['lightbox_filmstrip_thumb_border_width']);
418
+ } else if ( bwg_param['width_or_height'] == 'height' ) {
419
+ bwg_current_filmstrip_pos = key * (jQuery(".bwg_filmstrip_thumbnail").height() + 2 + 2 * bwg_param['lightbox_filmstrip_thumb_border_width']); }
420
+ bwg_param['bwg_current_key'] = key;
421
+ /* Change hash.*/
422
+ window.location.hash = "bwg"+bwg_param['gallery_id']+"/" + data[key]["id"];
423
+ /* Change image id for rating.*/
424
+ if (bwg_param['popup_enable_rate']) {
425
+ jQuery("#bwg_rate_form input[name='image_id']").val(data[key]["id"]);
426
+ jQuery("#bwg_star").attr("data-score", data[key]["avg_rating"]);
427
+ jQuery("#bwg_star").removeAttr("title");
428
+ bwg_rating(data[key]["rate"], data[key]["rate_count"], data[key]["avg_rating"], key);
429
+ }
430
+ /* Increase image hit counter.*/
431
+ spider_set_input_value('rate_ajax_task', 'save_hit_count');
432
+ spider_rate_ajax_save('bwg_rate_form');
433
+ jQuery(".bwg_image_hits span").html(++data[key]["hit_count"]);
434
+ /* Change image id.*/
435
+ jQuery("#bwg_popup_image").attr('image_id', data[key]["id"]);
436
+ /* Change image title, description.*/
437
+ jQuery(".bwg_image_title").html(jQuery('<span style="display: block;" />').html(data[key]["alt"]).text());
438
+ jQuery(".bwg_image_description").html(jQuery('<span style="display: block;" />').html(data[key]["description"]).text());
439
+ /*jQuery(".bwg_image_info").removeAttr("style");*/
440
+ if (data[key]["alt"].trim() == "") {
441
+ if (data[key]["description"].trim() == "") {
442
+ jQuery(".bwg_image_info").css("background", "none");
443
+ }
444
+ }
445
+ if (jQuery(".bwg_image_info_container1").css("display") != 'none') {
446
+ jQuery(".bwg_image_info_container1").css("display", "table-cell");
447
+ }
448
+ else {
449
+ jQuery(".bwg_image_info_container1").css("display", "none");
450
+ }
451
+ /* Change image rating.*/
452
+ if (jQuery(".bwg_image_rate_container1").css("display") != 'none') {
453
+ jQuery(".bwg_image_rate_container1").css("display", "table-cell");
454
+ }
455
+ else {
456
+ jQuery(".bwg_image_rate_container1").css("display", "none");
457
+ }
458
+ var current_image_class = jQuery(".bwg_popup_image_spun").css("zIndex") == 2 ? ".bwg_popup_image_spun" : ".bwg_popup_image_second_spun";
459
+ var next_image_class = current_image_class == ".bwg_popup_image_second_spun" ? ".bwg_popup_image_spun" : ".bwg_popup_image_second_spun";
460
+
461
+ var is_embed = data[key]['filetype'].indexOf("EMBED_") > -1 ? true : false;
462
+ var is_embed_instagram_post = data[key]['filetype'].indexOf('INSTAGRAM_POST') > -1 ? true : false;
463
+ var is_embed_instagram_video = data[key]['filetype'].indexOf('INSTAGRAM_VIDEO') > -1 ? true : false;
464
+ var cur_height = jQuery(current_image_class).height();
465
+ var cur_width = jQuery(current_image_class).width();
466
+ var innhtml = '<span class="bwg_popup_image_spun1" style="display: ' + (!is_embed ? 'table' : 'block') + ' ;width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display: ' + (!is_embed ? 'table-cell' : 'block') + '; vertical-align: middle; text-align: center; height: 100%;">';
467
+ if (!is_embed) {
468
+ jQuery("#bwg_download").removeClass("hidden");
469
+ innhtml += '<img style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px;" class="bwg_popup_image bwg_popup_watermark" src="' + bwg_param['site_url'] + jQuery('<span style="display: block;" />').html(data[key]["image_url"]).text() + '" alt="' + data[key]["alt"] + '" />';
470
+ }
471
+ else { /*is_embed*/
472
+ /* hide download button if image source is embed */
473
+ jQuery("#bwg_download").addClass("hidden");
474
+ /*innhtml += '<span style="height: ' + cur_height + 'px; width: ' + cur_width + 'px;" class="bwg_popup_embed bwg_popup_watermark">';*/
475
+ innhtml += '<span class="bwg_popup_embed bwg_popup_watermark" style="display: block; table-layout: fixed; height: 100%;">' + (is_embed_instagram_video ? '<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>' : ' ');
476
+ if (is_embed_instagram_post) {
477
+ var post_width = 0;
478
+ var post_height = 0;
479
+ if (cur_height < cur_width + 88) {
480
+ post_height = cur_height;
481
+ post_width = post_height - 88;
482
+ }
483
+ else {
484
+ post_width = cur_width;
485
+ post_height = post_width + 88;
486
+ }
487
+ innhtml += spider_display_embed(data[key]['filetype'], data[key]['image_url'], data[key]['filename'], {class:"bwg_embed_frame", 'data-width': data[key]['image_width'], 'data-height': data[key]['image_height'], frameborder: "0", allowfullscreen: "allowfullscreen", style: "width:" + post_width + "px; height:" + post_height + "px; vertical-align:middle; display:inline-block; position:relative;"});
488
+ }
489
+ else {
490
+ innhtml += spider_display_embed(data[key]['filetype'],data[key]['image_url'], data[key]['filename'], {class:"bwg_embed_frame", frameborder:"0", allowfullscreen:"allowfullscreen", style:"width:inherit; height:inherit; vertical-align:middle; display:block;" });
491
+ }
492
+ innhtml += "</span>";
493
+ }
494
+ innhtml += '</span></span>';
495
+ jQuery(next_image_class).html(innhtml);
496
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
497
+ maxWidth: cur_width,
498
+ maxHeight: cur_height,
499
+ height: 'auto',
500
+ });
501
+ function bwg_afterload() {
502
+ if (bwg_param['preload_images']) {
503
+ bwg_preload_images(key);
504
+ }
505
+
506
+ window['bwg_'+bwg_param['bwg_image_effect']](current_image_class, next_image_class, direction);
507
+ jQuery(current_image_class).find('.bwg_fb_video').each(function () {
508
+ jQuery(this).attr('src', '');
509
+ });
510
+ if (!is_embed) {
511
+ jQuery("#bwg_fullsize_image").attr("href", bwg_param['site_url'] + data[key]['image_url']);
512
+ jQuery("#bwg_download").attr("href", bwg_param['site_url'] + data[key]['thumb_url'].replace('/thumb/', '/.original/'));
513
+ }
514
+ else {
515
+ jQuery("#bwg_fullsize_image").attr("href", data[key]['image_url']);
516
+ }
517
+ var image_arr = data[key]['image_url'].split("/");
518
+ jQuery("#bwg_download").attr("download", image_arr[image_arr.length - 1]);
519
+ /* Change image social networks urls.*/
520
+ var bwg_share_url = encodeURIComponent(bwg_param['bwg_share_url']) + "=" + data[key]['id'] + encodeURIComponent('#bwg'+bwg_param['gallery_id']+'/') + data[key]['id'];
521
+
522
+ if (is_embed) {
523
+ var bwg_share_image_url = encodeURIComponent(data[key]['thumb_url']);
524
+ }
525
+ else {
526
+ var bwg_share_image_url = bwg_param['bwg_share_image_url'] + encodeURIComponent(encodeURIComponent(data[key]['image_url']));
527
+ }
528
+ bwg_share_image_url = bwg_share_image_url.replace(/%252F/g, '%2F');
529
+ if (typeof addthis_share != "undefined") {
530
+ addthis_share.url = bwg_share_url;
531
+ }
532
+ jQuery("#bwg_facebook_a").attr("href", "https://www.facebook.com/sharer/sharer.php?u=" + bwg_share_url);
533
+ jQuery("#bwg_twitter_a").attr("href", "https://twitter.com/share?url=" + bwg_share_url);
534
+ jQuery("#bwg_google_a").attr("href", "https://plus.google.com/share?url=" + bwg_share_url);
535
+ jQuery("#bwg_pinterest_a").attr("href", "http://pinterest.com/pin/create/button/?s=100&url=" + bwg_share_url + "&media=" + bwg_share_image_url + "&description=" + data[key]['alt'] + '%0A' + data[key]['description']);
536
+ jQuery("#bwg_tumblr_a").attr("href", "https://www.tumblr.com/share/photo?source=" + bwg_share_image_url + "&caption=" + data[key]['alt'] + "&clickthru=" + bwg_share_url);
537
+ /* Load comments.*/
538
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open")) {
539
+ if (data[key]["comment_count"] == 0) {
540
+ jQuery("#bwg_added_comments").hide();
541
+ }
542
+ else {
543
+ jQuery("#bwg_added_comments").show();
544
+ spider_set_input_value('ajax_task', 'display');
545
+ spider_set_input_value('image_id', jQuery('#bwg_popup_image').attr('image_id'));
546
+ spider_ajax_save('bwg_comment_form');
547
+ }
548
+ }
549
+ if (jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
550
+ /* Pricelist */
551
+ if(data[key]["pricelist"] == 0){
552
+ /* Close ecommerce.*/
553
+ bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
554
+ bwg_animate_image_box_for_hide_sidebar();
555
+
556
+ jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
557
+ jQuery(".bwg_ecommerce").attr("title", bwg_objectsL10n.bwg_show_ecommerce);
558
+ jQuery(".spider_popup_close_fullscreen").show();
559
+ }
560
+ else{
561
+ get_ajax_pricelist();
562
+ }
563
+ }
564
+ /* Update custom scroll.*/
565
+ if (typeof jQuery().mCustomScrollbar !== 'undefined') {
566
+ if (jQuery.isFunction(jQuery().mCustomScrollbar)) {
567
+ jQuery(".bwg_comments").mCustomScrollbar({
568
+ advanced:{
569
+ updateOnContentResize: true
570
+ }
571
+ });
572
+ }
573
+ }
574
+ jQuery(".bwg_comments .mCSB_scrollTools").hide();
575
+ if (bwg_param['enable_image_filmstrip']) {
576
+ bwg_move_filmstrip();
577
+ }
578
+ bwg_resize_instagram_post();
579
+ }
580
+ if (!is_embed) {
581
+ var cur_img = jQuery(next_image_class).find('img');
582
+ cur_img.one('load', function() {
583
+ bwg_afterload();
584
+ }).each(function() {
585
+ if(this.complete) jQuery(this).load();
586
+ });
587
+ }
588
+ else {
589
+ bwg_afterload();
590
+ }
591
+ }
592
+ }
593
+ }
594
+
595
+ function bwg_preload_images( key ) {
596
+ var count_all = data.length;
597
+ var preloadCount = (bwg_param['preload_images_count'] == 0) ? data.length : (bwg_param['preload_images_count'] > data.length) ? data.length : bwg_param['preload_images_count'];
598
+ var is_embed;
599
+ var indexedImgCount = 0;
600
+ var leftIndex, rightIndex;
601
+ for ( var i = 1; i < count_all; i++ ) {
602
+ leftIndex = key - i;
603
+ rightIndex = key + i;
604
+ if ( key == 0 ) {
605
+ leftIndex = 0;
606
+ rightIndex = 0;
607
+ }
608
+ /* Right from key indexes */
609
+ if ( rightIndex < count_all ) { /* check if right index is greater than max index */
610
+ is_embed = data[rightIndex]['filetype'].indexOf("EMBED_") > -1 ? true : false;
611
+ if ( typeof data[rightIndex] != "undefined" ) {
612
+ if ( !is_embed ) {
613
+ jQuery("<img/>").attr("src", bwg_param['site_url'] + jQuery('<span style="display: block;" />').html(data[rightIndex]["image_url"]).text());
614
+ indexedImgCount++;
615
+ if ( indexedImgCount >= preloadCount ) {
616
+ break;
617
+ }
618
+ }
619
+ }
620
+ }
621
+ /* Left from key indexes */
622
+ if ( leftIndex > 0 ) {
623
+ is_embed = data[leftIndex]['filetype'].indexOf("EMBED_") > -1 ? true : false;
624
+ if ( typeof data[leftIndex] != "undefined" ) {
625
+ if ( !is_embed ) {
626
+ jQuery("<img/>").attr("src", bwg_param['site_url'] + jQuery('<span style="display: block;" />').html(data[leftIndex]["image_url"]).text());
627
+ indexedImgCount++;
628
+ if ( indexedImgCount >= preloadCount ) {
629
+ break;
630
+ }
631
+ }
632
+ }
633
+ }
634
+ }
635
+ }
636
+
637
+ function bwg_cube(tz, ntx, nty, nrx, nry, wrx, wry, current_image_class, next_image_class, direction) {
638
+ /* If browser does not support 3d transforms/CSS transitions.*/
639
+ if (!bwg_testBrowser_cssTransitions()) {
640
+ return bwg_fallback(current_image_class, next_image_class, direction);
641
+ }
642
+ if (!bwg_testBrowser_cssTransforms3d()) {
643
+ return bwg_fallback3d(current_image_class, next_image_class, direction);
644
+ }
645
+ bwg_trans_in_progress = true;
646
+ /* Set active thumbnail.*/
647
+ jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
648
+ jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
649
+ jQuery(".bwg_slide_bg").css('perspective', 1000);
650
+ jQuery(current_image_class).css({
651
+ transform : 'translateZ(' + tz + 'px)',
652
+ backfaceVisibility : 'hidden'
653
+ });
654
+ jQuery(next_image_class).css({
655
+ opacity : 1,
656
+ filter: 'Alpha(opacity=100)',
657
+ backfaceVisibility : 'hidden',
658
+ transform : 'translateY(' + nty + 'px) translateX(' + ntx + 'px) rotateY('+ nry +'deg) rotateX('+ nrx +'deg)'
659
+ });
660
+ jQuery(".bwg_slider").css({
661
+ transform: 'translateZ(-' + tz + 'px)',
662
+ transformStyle: 'preserve-3d'
663
+ });
664
+ /* Execution steps.*/
665
+ setTimeout(function () {
666
+ jQuery(".bwg_slider").css({
667
+ transition: 'all ' + bwg_transition_duration + 'ms ease-in-out',
668
+ transform: 'translateZ(-' + tz + 'px) rotateX('+ wrx +'deg) rotateY('+ wry +'deg)'
669
+ });
670
+ }, 20);
671
+ /* After transition.*/
672
+ jQuery(".bwg_slider").one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
673
+ function bwg_after_trans() {
674
+ jQuery(current_image_class).removeAttr('style');
675
+ jQuery(next_image_class).removeAttr('style');
676
+ jQuery(".bwg_slider").removeAttr('style');
677
+ jQuery(current_image_class).css({'opacity' : 0, filter: 'Alpha(opacity=0)', 'z-index': 1});
678
+ jQuery(next_image_class).css({'opacity' : 1, filter: 'Alpha(opacity=100)', 'z-index' : 2});
679
+ jQuery(".bwg_image_info").show();
680
+ bwg_trans_in_progress = false;
681
+ jQuery(current_image_class).html('');
682
+ if (typeof event_stack !== 'undefined') {
683
+ if (event_stack.length > 0) {
684
+ key = event_stack[0].split("-");
685
+ event_stack.shift();
686
+ bwg_change_image(key[0], key[1], data, true);
687
+ }
688
+ }
689
+ bwg_change_watermark_container();
690
+ }
691
+ if (bwg_transition_duration == 0) {
692
+ bwg_after_trans();
693
+ }
694
+ }
695
+ /* For browsers that does not support transitions.*/
696
+ function bwg_fallback(current_image_class, next_image_class, direction, bwg) {
697
+ bwg_fade(current_image_class, next_image_class, direction);
698
+ }
699
+ function bwg_none(current_image_class, next_image_class, direction, bwg) {
700
+ jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
701
+ jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
702
+ jQuery(".bwg_image_info").show();
703
+ /* Set active thumbnail.*/
704
+ jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
705
+ jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
706
+ bwg_trans_in_progress = false;
707
+ jQuery(current_image_class).html('');
708
+ bwg_change_watermark_container();
709
+ }
710
+ function bwg_fade(current_image_class, next_image_class, direction, bwg) {
711
+ /* Set active thumbnail.*/
712
+ jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");
713
+ jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");
714
+ function bwg_after_trans() {
715
+ jQuery(".bwg_image_info").show();
716
+ bwg_change_watermark_container();
717
+ }
718
+ if (bwg_testBrowser_cssTransitions()) {
719
+ jQuery(next_image_class).css('transition', 'opacity ' + bwg_transition_duration + 'ms linear');
720
+ jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
721
+ jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
722
+ jQuery(next_image_class).one('webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend', jQuery.proxy(bwg_after_trans));
723
+ }
724
+ else {
725
+ jQuery(current_image_class).animate({'opacity' : 0, 'z-index' : 1}, bwg_transition_duration);
726
+ jQuery(next_image_class).animate({
727
+ 'opacity' : 1,
728
+ 'z-index': 2
729
+ }, {
730
+ duration: bwg_transition_duration,
731
+ complete: function () {
732
+ bwg_trans_in_progress = false;
733
+ jQuery(current_image_class).html('');
734
+ bwg_after_trans()
735
+ }
736
+ });
737
+ /* For IE.*/
738
+ jQuery(current_image_class).fadeTo(bwg_transition_duration, 0);
739
+ jQuery(next_image_class).fadeTo(bwg_transition_duration, 1);
740
+ }
741
+ if (bwg_transition_duration == 0) {
742
+ bwg_after_trans();
743
+ }
744
+ }
745
+
746
+ function bwg_testBrowser_cssTransitions() {
747
+ return bwg_testDom('Transition');
748
+ }
749
+ function bwg_testBrowser_cssTransforms3d() {
750
+ return bwg_testDom('Perspective');
751
+ }
752
+ function bwg_testDom(prop) {
753
+ /* Browser vendor CSS prefixes.*/
754
+ var browserVendors = ['', '-webkit-', '-moz-', '-ms-', '-o-', '-khtml-'];
755
+ /* Browser vendor DOM prefixes.*/
756
+ var domPrefixes = ['', 'Webkit', 'Moz', 'ms', 'O', 'Khtml'];
757
+ var i = domPrefixes.length;
758
+ while (i--) {
759
+ if (typeof document.body.style[domPrefixes[i] + prop] !== 'undefined') {
760
+ return true;
761
+ }
762
+ }
763
+ return false;
764
+ }
765
+
766
+ function bwg_change_watermark_container() {
767
+ jQuery(".bwg_slider").children().each(function() {
768
+ if (jQuery(this).css("zIndex") == 2) {
769
+ /* This may be neither img nor iframe.*/
770
+ var bwg_current_image_span = jQuery(this).find("img");
771
+ if (!bwg_current_image_span.length) {
772
+ bwg_current_image_span = jQuery(this).find("iframe");
773
+ }
774
+ if (!bwg_current_image_span.length) {
775
+ bwg_current_image_span = jQuery(this).find("video");
776
+ }
777
+ /*set timeout for video to get size according to style, and then put watermark*/
778
+ setTimeout(function () {
779
+ var width = bwg_current_image_span.width();
780
+ var height = bwg_current_image_span.height();
781
+
782
+
783
+ jQuery(".bwg_watermark_spun").width(width);
784
+ jQuery(".bwg_watermark_spun").height(height);
785
+ jQuery(".bwg_watermark").css({display: ''});
786
+ /* Set watermark image size.*/
787
+ var comment_container_width = 0;
788
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ) {
789
+ comment_container_width = bwg_param['lightbox_comment_width'];
790
+ }
791
+ if (width <= (jQuery(window).width() - comment_container_width)) {
792
+ jQuery(".bwg_watermark_image").css({
793
+ width: ((jQuery(".spider_popup_wrap").width() - comment_container_width) * bwg_param['watermark_font_size'] / bwg_param['image_width'])
794
+ });
795
+ jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({
796
+ fontSize: ((jQuery(".spider_popup_wrap").width() - comment_container_width) * bwg_param['watermark_font_size'] / bwg_param['image_width'])
797
+ });
798
+ }
799
+ }, 100);
800
+ }
801
+ });
802
+ }
803
+
804
+ function bwg_set_filmstrip_pos(filmStripWidth) {
805
+ if ( bwg_param['outerWidth_or_outerHeight'] == 'outerWidth' ) {
806
+ var selectedImagePos = -bwg_current_filmstrip_pos - (jQuery(".bwg_filmstrip_thumbnail").outerWidth(true)) / 2;
807
+ } else if ( bwg_param['outerWidth_or_outerHeight'] == 'outerHeight' ) {
808
+ var selectedImagePos = -bwg_current_filmstrip_pos - (jQuery(".bwg_filmstrip_thumbnail").outerHeight(true)) / 2;
809
+ }
810
+
811
+ if ( bwg_param['width_or_height'] == 'width' ) {
812
+ var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_filmstrip_thumbnails").width(), selectedImagePos + filmStripWidth / 2));
813
+ } else if (bwg_param['width_or_height'] == 'height') {
814
+ var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_filmstrip_thumbnails").height(), selectedImagePos + filmStripWidth / 2));
815
+ }
816
+ if ( bwg_param['left_or_top'] == 'left' ) {
817
+ jQuery(".bwg_filmstrip_thumbnails").animate({
818
+ left: imagesContainerLeft
819
+ }, {
820
+ duration: 500,
821
+ complete: function () {
822
+ bwg_filmstrip_arrows();
823
+ }
824
+ });
825
+ } else if ( bwg_param['left_or_top'] == 'top' ) {
826
+ jQuery(".bwg_filmstrip_thumbnails").animate({
827
+ top: imagesContainerLeft
828
+ }, {
829
+ duration: 500,
830
+ complete: function () {
831
+ bwg_filmstrip_arrows();
832
+ }
833
+ });
834
+
835
+ }
836
+ }
837
+
838
+ // open popup sidebar
839
+ function bwg_popup_sidebar_open(obj){
840
+ var comment_container_width = bwg_param['lightbox_comment_width'];
841
+ var lightbox_comment_pos = bwg_param['lightbox_comment_pos'];
842
+ if (comment_container_width > jQuery(window).width()) {
843
+ comment_container_width = jQuery(window).width();
844
+ obj.css({
845
+ width: comment_container_width,
846
+ });
847
+ jQuery(".spider_popup_close_fullscreen").hide();
848
+ jQuery(".spider_popup_close").hide();
849
+ if (jQuery(".bwg_ctrl_btn").hasClass("fa-pause")) {
850
+ var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
851
+ jQuery(".bwg_play_pause").trigger(isMobile ? 'touchend' : 'click');
852
+ }
853
+ }
854
+ else {
855
+ jQuery(".spider_popup_close_fullscreen").show();
856
+ }
857
+
858
+ //obj.animate({<?php echo $theme_row->lightbox_comment_pos; ?>: 0}, 100);
859
+ if(lightbox_comment_pos == 'left') {
860
+ obj.animate({left: 0}, 100);
861
+ } else {
862
+ obj.animate({right: 0}, 100);
863
+ }
864
+
865
+ }
866
+
867
+ function bwg_popup_sidebar_close(obj){
868
+ var border_width = parseInt(obj.css('borderRightWidth'));
869
+ if (!border_width) {
870
+ border_width = 0;
871
+ }
872
+ if( lightbox_comment_pos == 'left' ) {
873
+ obj.animate({left: -obj.width() - border_width}, 100);
874
+ } else if ( lightbox_comment_pos == 'right' ) {
875
+ obj.animate({right: -obj.width() - border_width}, 100);
876
+ }
877
+ }
878
+
879
+ function bwg_animate_image_box_for_hide_sidebar(){
880
+ if( lightbox_comment_pos == 'left' ) {
881
+ jQuery(".bwg_image_wrap").animate({
882
+ left: 0,
883
+ width: jQuery("#spider_popup_wrap").width()
884
+ }, 100);
885
+ } else if ( lightbox_comment_pos == 'right' ) {
886
+ jQuery(".bwg_image_wrap").animate({
887
+ right: 0,
888
+ width: jQuery("#spider_popup_wrap").width()
889
+ }, 100);
890
+ }
891
+ jQuery(".bwg_image_container").animate({
892
+ width: jQuery("#spider_popup_wrap").width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)}, 100);
893
+ jQuery(".bwg_popup_image").animate({
894
+ maxWidth: jQuery("#spider_popup_wrap").width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)
895
+ }, {
896
+ duration: 100,
897
+ complete: function () { bwg_change_watermark_container(); }
898
+ });
899
+ jQuery(".bwg_popup_embed").animate({
900
+ width: jQuery("#spider_popup_wrap").width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)
901
+ }, {
902
+ duration: 100,
903
+ complete: function () {
904
+ bwg_resize_instagram_post();
905
+ bwg_change_watermark_container(); }
906
+ });
907
+ if ( bwg_param['width_or_height'] == 'width' ) {
908
+ jQuery(".bwg_filmstrip_container").animate({width: jQuery(".spider_popup_wrap").width()}, 100);
909
+ jQuery(".bwg_filmstrip").animate({width: jQuery(".spider_popup_wrap").width() - 40}, 100);
910
+ } else if ( bwg_param['width_or_height'] == 'height' ) {
911
+ jQuery(".bwg_filmstrip_container").animate({height: jQuery(".spider_popup_wrap").width()}, 100);
912
+ jQuery(".bwg_filmstrip").animate({height: jQuery(".spider_popup_wrap").width() - 40}, 100);
913
+ }
914
+ /* Set filmstrip initial position.*/
915
+ bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width() - 40);
916
+ jQuery(".spider_popup_close_fullscreen").show(100);
917
+ }
918
+
919
+ function bwg_animate_image_box_for_show_sidebar() {
920
+ var bwg_comment_container = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
921
+ if(lightbox_comment_pos == 'left') {
922
+ jQuery(".bwg_image_wrap").animate({
923
+ left: bwg_comment_container,
924
+ width: jQuery("#spider_popup_wrap").width() - bwg_comment_container
925
+ }, 100);
926
+ } else if(lightbox_comment_pos == 'right') {
927
+ jQuery(".bwg_image_wrap").animate({
928
+ right: bwg_comment_container,
929
+ width: jQuery("#spider_popup_wrap").width() - bwg_comment_container
930
+ }, 100);
931
+ }
932
+ jQuery(".bwg_image_container").animate({
933
+ width: jQuery("#spider_popup_wrap").width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - bwg_comment_container
934
+ }, 100);
935
+ jQuery(".bwg_popup_image").animate({
936
+ maxWidth: jQuery("#spider_popup_wrap").width() - bwg_comment_container - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)
937
+ }, {
938
+ duration: 100,
939
+ complete: function () {
940
+ bwg_change_watermark_container();
941
+ }
942
+ });
943
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
944
+ maxWidth: jQuery("#spider_popup_wrap").width() - bwg_comment_container - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)
945
+ }, {
946
+ duration: 100,
947
+ complete: function () {
948
+ bwg_resize_instagram_post();
949
+ bwg_change_watermark_container();
950
+ }
951
+ });
952
+ if (bwg_param['width_or_height'] == 'width') {
953
+ jQuery(".bwg_filmstrip_container").css({width: jQuery("#spider_popup_wrap").width() - (bwg_param['filmstrip_direction'] == 'vertical' ? 0 : 'bwg_comment_container')});
954
+ jQuery(".bwg_filmstrip").animate({width: jQuery(".bwg_filmstrip_container").width() - 40}, 100);
955
+ /* Set filmstrip initial position.*/
956
+ bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").width() - 40);
957
+ }
958
+ }
959
+
960
+ /* Open/close comments.*/
961
+ function bwg_comment() {
962
+ jQuery(".bwg_watermark").css({display: 'none'});
963
+ jQuery(".bwg_ecommerce_wrap").css("z-index","-1");
964
+ jQuery(".bwg_comment_wrap").css("z-index","25");
965
+ if(jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ){
966
+ bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
967
+ jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
968
+ jQuery(".bwg_ecommerce").attr("title", bwg_objectsL10n.bwg_show_ecommerce);
969
+
970
+ }
971
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open") ) {
972
+ /* Close comment.*/
973
+ bwg_popup_sidebar_close(jQuery(".bwg_comment_container"));
974
+ bwg_animate_image_box_for_hide_sidebar();
975
+ jQuery(".bwg_comment_wrap").css("z-index","-1");
976
+ jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_close");
977
+ jQuery(".bwg_comment").attr("title", bwg_objectsL10n.bwg_show_comments);
978
+ jQuery(".spider_popup_close_fullscreen").show();
979
+ }
980
+ else {
981
+ /* Open comment.*/
982
+ bwg_popup_sidebar_open(jQuery(".bwg_comment_container"));
983
+ bwg_animate_image_box_for_show_sidebar();
984
+ jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_open");
985
+ jQuery(".bwg_comment").attr("title", bwg_objectsL10n.bwg_hide_comments);
986
+ /* Load comments.*/
987
+ var cur_image_key = parseInt(jQuery("#bwg_current_image_key").val());
988
+ if (data[cur_image_key]["comment_count"] != 0) {
989
+ jQuery("#bwg_added_comments").show();
990
+ spider_set_input_value('ajax_task', 'display');
991
+ spider_set_input_value('image_id', jQuery('#bwg_popup_image').attr('image_id'));
992
+ spider_ajax_save('bwg_comment_form');
993
+ }
994
+ }
995
+ }
996
+
997
+ /* Open/close ecommerce.*/
998
+ function bwg_ecommerce() {
999
+ jQuery(".bwg_watermark").css({display: 'none'});
1000
+ jQuery(".bwg_ecommerce_wrap").css("z-index","25");
1001
+ jQuery(".bwg_comment_wrap").css("z-index","-1");
1002
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open")) {
1003
+ bwg_popup_sidebar_close(jQuery(".bwg_comment_container"));
1004
+ jQuery(".bwg_comment_container").attr("class", "bwg_comment_container bwg_close");
1005
+ // Must be translatable
1006
+ jQuery(".bwg_comment").attr("title", bwg_objectsL10n.bwg_how_comments);
1007
+ }
1008
+ if (jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
1009
+ /* Close ecommerce.*/
1010
+ bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container"));
1011
+ bwg_animate_image_box_for_hide_sidebar();
1012
+ jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_close");
1013
+ // Must be translatable
1014
+ jQuery(".bwg_ecommerce").attr("title", bwg_objectsL10n.bwg_show_ecommerce);
1015
+ // jQuery(".spider_popup_close_fullscreen").show();
1016
+ }
1017
+ else {
1018
+ /* Open ecommerce.*/
1019
+ bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container"));
1020
+ bwg_animate_image_box_for_show_sidebar();
1021
+ jQuery(".bwg_ecommerce_container").attr("class", "bwg_ecommerce_container bwg_open");
1022
+ jQuery(".bwg_ecommerce").attr("title", bwg_objectsL10n.bwg_hide_ecommerce);
1023
+ get_ajax_pricelist();
1024
+ }
1025
+ }
1026
+
1027
+ function bwg_reset_zoom() {
1028
+ var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
1029
+ var viewportmeta = document.querySelector('meta[name="viewport"]');
1030
+ if (isMobile) {
1031
+ if (viewportmeta) {
1032
+ viewportmeta.content = 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0';
1033
+ }
1034
+ }
1035
+ }
1036
+
1037
+ function bwg_move_filmstrip() {
1038
+ var image_right = (bwg_param['left_or_top'] == 'left' ? jQuery(".bwg_thumb_active").position().left : jQuery(".bwg_thumb_active").position().top) + (bwg_param['outerWidth_or_outerHeight'] == 'outerWidth' ? jQuery(".bwg_thumb_active").outerWidth(true) : jQuery(".bwg_thumb_active").outerHeight(true));
1039
+ var bwg_filmstrip_width = (bwg_param['outerWidth_or_outerHeight'] == 'outerWidth' ? jQuery(".bwg_filmstrip").outerWidth(true) : jQuery(".bwg_filmstrip").outerHeight(true));
1040
+ var bwg_filmstrip_thumbnails_width = (bwg_param['outerWidth_or_outerHeight'] == 'outerWidth' ? jQuery(".bwg_filmstrip_thumbnails").outerWidth(true) : jQuery(".bwg_filmstrip_thumbnails").outerHeight(true));
1041
+
1042
+ if ( bwg_param['left_or_top'] == 'left' ) {
1043
+ var image_left = jQuery(".bwg_thumb_active").position().left;
1044
+ var long_filmstrip_cont_left = jQuery(".bwg_filmstrip_thumbnails").position().left;
1045
+ var long_filmstrip_cont_right = Math.abs(jQuery(".bwg_filmstrip_thumbnails").position().left) + bwg_filmstrip_width;
1046
+ } else if ( bwg_param['left_or_top'] == 'top' ) {
1047
+ var image_left = jQuery(".bwg_thumb_active").position().top;
1048
+ var long_filmstrip_cont_left = jQuery(".bwg_filmstrip_thumbnails").position().top;
1049
+ var long_filmstrip_cont_right = Math.abs(jQuery(".bwg_filmstrip_thumbnails").position().top) + bwg_filmstrip_width;
1050
+ }
1051
+ if (bwg_filmstrip_width > bwg_filmstrip_thumbnails_width) {
1052
+ return;
1053
+ }
1054
+
1055
+ if (image_left < Math.abs(long_filmstrip_cont_left)) {
1056
+ if ( bwg_param['left_or_top'] == 'left' ) {
1057
+ jQuery(".bwg_filmstrip_thumbnails").animate({
1058
+ left: -image_left
1059
+ }, {
1060
+ duration: 500,
1061
+ complete: function () {
1062
+ bwg_filmstrip_arrows();
1063
+ }
1064
+ });
1065
+ } else {
1066
+ jQuery(".bwg_filmstrip_thumbnails").animate({
1067
+ top: -image_left
1068
+ }, {
1069
+ duration: 500,
1070
+ complete: function () {
1071
+ bwg_filmstrip_arrows();
1072
+ }
1073
+ });
1074
+ }
1075
+ }
1076
+ else if (image_right > long_filmstrip_cont_right) {
1077
+ if ( bwg_param['left_or_top'] == 'left' ) {
1078
+ jQuery(".bwg_filmstrip_thumbnails").animate({
1079
+ left: -(image_right - bwg_filmstrip_width)
1080
+ }, {
1081
+ duration: 500,
1082
+ complete: function () {
1083
+ bwg_filmstrip_arrows();
1084
+ }
1085
+ });
1086
+ } else {
1087
+ jQuery(".bwg_filmstrip_thumbnails").animate({
1088
+ top: -(image_right - bwg_filmstrip_width)
1089
+ }, {
1090
+ duration: 500,
1091
+ complete: function () {
1092
+ bwg_filmstrip_arrows();
1093
+ }
1094
+ });
1095
+ }
1096
+ }
1097
+ }
1098
+
1099
+ /* Show/hide filmstrip arrows.*/
1100
+ function bwg_filmstrip_arrows() {
1101
+ if ( bwg_param['width_or_height'] == 'width' ){
1102
+ var condition1 = jQuery(".bwg_filmstrip_thumbnails").width();
1103
+ var condition2 = jQuery(".bwg_filmstrip").width()
1104
+ } else {
1105
+ var condition1 = jQuery(".bwg_filmstrip_thumbnails").height();
1106
+ var condition2 = jQuery(".bwg_filmstrip").height()
1107
+ }
1108
+ if (condition1 < condition2) {
1109
+ jQuery(".bwg_filmstrip_left").hide();
1110
+ jQuery(".bwg_filmstrip_right").hide();
1111
+ } else {
1112
+ jQuery(".bwg_filmstrip_left").show();
1113
+ jQuery(".bwg_filmstrip_right").show();
1114
+ }
1115
+ }
1116
+
1117
+ /* Open with fullscreen.*/
1118
+ function bwg_open_with_fullscreen() {
1119
+ jQuery(".bwg_watermark").css({display: 'none'});
1120
+ var comment_container_width = 0;
1121
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
1122
+ comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
1123
+ }
1124
+ bwg_popup_current_width = jQuery(window).width();
1125
+ bwg_popup_current_height = jQuery(window).height();
1126
+ jQuery("#spider_popup_wrap").css({
1127
+ width: jQuery(window).width(),
1128
+ height: jQuery(window).height(),
1129
+ left: 0,
1130
+ top: 0,
1131
+ margin: 0,
1132
+ zIndex: 100000
1133
+ });
1134
+ jQuery(".bwg_image_wrap").css({width: (jQuery(window).width() - comment_container_width)});
1135
+ jQuery(".bwg_image_container").css({height: (bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)), width: bwg_popup_current_width - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)});
1136
+ jQuery(".bwg_popup_image").css({
1137
+ maxWidth: jQuery(window).width() - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1138
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1139
+ }, {
1140
+ complete: function () { bwg_change_watermark_container(); }
1141
+ });
1142
+ jQuery(".bwg_popup_video").css({
1143
+ width: jQuery(window).width() - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1144
+ height: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1145
+ }, {
1146
+ complete: function () { bwg_change_watermark_container(); }
1147
+ });
1148
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1149
+ maxWidth: jQuery(window).width() - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1150
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1151
+ }, {
1152
+ complete: function () {
1153
+ bwg_resize_instagram_post();
1154
+ bwg_change_watermark_container(); }
1155
+ });
1156
+ if ( bwg_param['width_or_height'] == 'width' ) {
1157
+ jQuery(".bwg_filmstrip_container").css({width: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0)});
1158
+ jQuery(".bwg_filmstrip").css({width: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0) - 40});
1159
+ /* Set filmstrip initial position.*/
1160
+ bwg_set_filmstrip_pos(jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0) - 40);
1161
+ } else {
1162
+ jQuery(".bwg_filmstrip_container").css({height: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0)});
1163
+ jQuery(".bwg_filmstrip").css({height: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0) - 40});
1164
+ /* Set filmstrip initial position.*/
1165
+ bwg_set_filmstrip_pos(jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? 'comment_container_width' : 0) - 40);
1166
+ }
1167
+ jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-small");
1168
+ jQuery(".bwg_resize-full").attr("title", bwg_objectsL10n.bwg_restore);
1169
+ jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1170
+ }
1171
+
1172
+ function bwg_resize_instagram_post() {
1173
+ if (jQuery('.inner_instagram_iframe_bwg_embed_frame').length) {
1174
+ var post_width = jQuery(".bwg_image_container").width();
1175
+ var post_height = jQuery(".bwg_image_container").height();
1176
+ var FeedbackSocialProofHeight = 132;
1177
+ jQuery('.inner_instagram_iframe_bwg_embed_frame').each(function() {
1178
+ var parent_container = jQuery(this).parent();
1179
+ if (post_height / (parseInt(parent_container.attr('data-height')) + FeedbackSocialProofHeight) < post_width / parseInt(parent_container.attr('data-width'))) {
1180
+ parent_container.height(post_height);
1181
+ parent_container.width((parent_container.height() - FeedbackSocialProofHeight) * parent_container.attr('data-width') / parent_container.attr('data-height') + 16);
1182
+ }
1183
+ else {
1184
+ parent_container.width(post_width);
1185
+ parent_container.height((parent_container.width() - 16) * parent_container.attr('data-height') / parent_container.attr('data-width') + 96);
1186
+ }
1187
+ parent_container.css({top: 0.5 * (post_height - parent_container.height())});
1188
+ });
1189
+ bwg_change_watermark_container();
1190
+ }
1191
+ }
1192
+
1193
+ function bwg_play() {
1194
+ window.clearInterval(bwg_playInterval);
1195
+ bwg_playInterval = setInterval(function () {
1196
+ if (!data[parseInt(jQuery('#bwg_current_image_key').val()) + 1]) {
1197
+ if (bwg_param['enable_loop'] == 1) {
1198
+ /* Wrap around.*/
1199
+ bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), 0, data);
1200
+ }
1201
+ return;
1202
+ }
1203
+ bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), parseInt(jQuery('#bwg_current_image_key').val()) + 1, data)
1204
+ }, bwg_param['slideshow_interval'] * 1000);
1205
+ }
1206
+
1207
+ function bwg_resize_full() {
1208
+ jQuery(".bwg_watermark").css({display: 'none'});
1209
+ var comment_container_width = 0;
1210
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open") ) {
1211
+ comment_container_width = jQuery(".bwg_comment_container").width() || jQuery(".bwg_ecommerce_container").width();
1212
+ }
1213
+ // resize to small from full
1214
+ if (jQuery(".bwg_resize-full").hasClass("fa-resize-small")) {
1215
+ if (jQuery(window).width() > bwg_param['image_width']) {
1216
+ bwg_popup_current_width = bwg_param['image_width'];
1217
+ }
1218
+ if (jQuery(window).height() > bwg_param['image_height']) {
1219
+ bwg_popup_current_height = bwg_param['image_height'];
1220
+ }
1221
+ /* Minimize.*/
1222
+ jQuery("#spider_popup_wrap").animate({
1223
+ width: bwg_popup_current_width,
1224
+ height: bwg_popup_current_height,
1225
+ left: '50%',
1226
+ top: '50%',
1227
+ marginLeft: -bwg_popup_current_width / 2,
1228
+ marginTop: -bwg_popup_current_height / 2,
1229
+ zIndex: 100000
1230
+ }, 500);
1231
+ jQuery(".bwg_image_wrap").animate({width: bwg_popup_current_width - comment_container_width}, 500);
1232
+ jQuery(".bwg_image_container").animate({height: bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0), width: bwg_popup_current_width - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)}, 500);
1233
+ jQuery(".bwg_popup_image").animate({
1234
+ maxWidth: bwg_popup_current_width - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1235
+ maxHeight: bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1236
+ }, {
1237
+ duration: 500,
1238
+ complete: function () {
1239
+ bwg_change_watermark_container();
1240
+ if ((jQuery("#spider_popup_wrap").width() < jQuery(window).width())) {
1241
+ if (jQuery("#spider_popup_wrap").height() < jQuery(window).height()) {
1242
+ jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
1243
+ }
1244
+ }
1245
+ }
1246
+ });
1247
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
1248
+ maxWidth: bwg_popup_current_width - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1249
+ maxHeight: bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1250
+ }, {
1251
+ duration: 500,
1252
+ complete: function () {
1253
+ bwg_resize_instagram_post();
1254
+ bwg_change_watermark_container();
1255
+ if (jQuery("#spider_popup_wrap").width() < jQuery(window).width()) {
1256
+ if (jQuery("#spider_popup_wrap").height() < jQuery(window).height()) {
1257
+ jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
1258
+ }
1259
+ }
1260
+ }
1261
+ });
1262
+ if ( bwg_param['width_or_height'] == 'width' ) {
1263
+ jQuery(".bwg_filmstrip_container").animate({width: bwg_popup_current_width - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0)}, 500);
1264
+ jQuery(".bwg_filmstrip").animate({width: bwg_popup_current_width - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40}, 500);
1265
+ /* Set filmstrip initial position.*/
1266
+ bwg_set_filmstrip_pos(bwg_popup_current_width - 40);
1267
+ } else {
1268
+ jQuery(".bwg_filmstrip_container").animate({height: bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0)}, 500);
1269
+ jQuery(".bwg_filmstrip").animate({height: bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40}, 500);
1270
+ /* Set filmstrip initial position.*/
1271
+ bwg_set_filmstrip_pos(bwg_popup_current_height - 40);
1272
+ }
1273
+ jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-full");
1274
+ jQuery(".bwg_resize-full").attr("title", "<?php echo __('Maximize', BWG()->prefix); ?>");
1275
+
1276
+ }
1277
+ else { // resize to full from small
1278
+ bwg_popup_current_width = jQuery(window).width();
1279
+ bwg_popup_current_height = jQuery(window).height();
1280
+ /* Maximize.*/
1281
+ jQuery("#spider_popup_wrap").animate({
1282
+ width: jQuery(window).width(),
1283
+ height: jQuery(window).height(),
1284
+ left: 0,
1285
+ top: 0,
1286
+ margin: 0,
1287
+ zIndex: 100000
1288
+ }, 500);
1289
+ jQuery(".bwg_image_wrap").animate({width: (jQuery(window).width() - comment_container_width)}, 500);
1290
+ jQuery(".bwg_image_container").animate({height: (bwg_popup_current_height - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)), width: bwg_popup_current_width - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0)}, 500);
1291
+ jQuery(".bwg_popup_image").animate({
1292
+ maxWidth: jQuery(window).width() - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1293
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1294
+ }, {
1295
+ duration: 500,
1296
+ complete: function () { bwg_change_watermark_container(); }
1297
+ });
1298
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({
1299
+ maxWidth: jQuery(window).width() - comment_container_width - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0),
1300
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1301
+ }, {
1302
+ duration: 500,
1303
+ complete: function () {
1304
+ bwg_resize_instagram_post();
1305
+ bwg_change_watermark_container(); }
1306
+ });
1307
+ if ( bwg_param['width_or_height'] == 'width' ) {
1308
+ jQuery(".bwg_filmstrip_container").animate({width: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0)}, 500);
1309
+ jQuery(".bwg_filmstrip").animate({width: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40}, 500);
1310
+ /* Set filmstrip initial position.*/
1311
+ bwg_set_filmstrip_pos(jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40);
1312
+ } else {
1313
+ jQuery(".bwg_filmstrip_container").animate({height: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0)}, 500);
1314
+ jQuery(".bwg_filmstrip").animate({height: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40}, 500);
1315
+ /* Set filmstrip initial position.*/
1316
+ bwg_set_filmstrip_pos(jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? comment_container_width : 0) - 40);
1317
+ }
1318
+ jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-small");
1319
+ jQuery(".bwg_resize-full").attr("title", "<?php echo __('Restore', BWG()->prefix); ?>");
1320
+ jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1321
+ }
1322
+
1323
+ }
1324
+
1325
+ function bwg_popup_resize() {
1326
+ if (typeof jQuery().fullscreen !== 'undefined') {
1327
+ if (jQuery.isFunction(jQuery().fullscreen)) {
1328
+ if (!jQuery.fullscreen.isFullScreen()) {
1329
+ jQuery(".bwg_resize-full").show();
1330
+ if(!jQuery('.bwg_resize-full').hasClass('fa-resize-small')) {
1331
+ jQuery(".bwg_resize-full").attr("class", "bwg_ctrl_btn bwg_resize-full fa fa-resize-full");
1332
+ }
1333
+ jQuery(".bwg_resize-full").attr("title", bwg_objectsL10n.bwg_maximize);
1334
+ jQuery(".bwg_fullscreen").attr("class", "bwg_ctrl_btn bwg_fullscreen fa fa-fullscreen");
1335
+ jQuery(".bwg_fullscreen").attr("title", bwg_objectsL10n.fulscreen);
1336
+ }
1337
+ }
1338
+ }
1339
+ var comment_container_width = 0;
1340
+ if (jQuery(".bwg_comment_container").hasClass("bwg_open") || jQuery(".bwg_ecommerce_container").hasClass("bwg_open")) {
1341
+ comment_container_width = bwg_param['lightbox_comment_width'];
1342
+ }
1343
+ if (comment_container_width > jQuery(window).width()) {
1344
+ comment_container_width = jQuery(window).width();
1345
+ jQuery(".bwg_comment_container").css({
1346
+ width: comment_container_width
1347
+ });
1348
+ jQuery(".bwg_ecommerce_container").css({
1349
+ width: comment_container_width
1350
+ });
1351
+ jQuery(".spider_popup_close_fullscreen").hide();
1352
+ }
1353
+ else {
1354
+ jQuery(".spider_popup_close_fullscreen").show();
1355
+ }
1356
+ if (!(!(jQuery(window).height() > bwg_param['image_height']) || !(bwg_param['open_with_fullscreen'] != 1)) && !jQuery('.bwg_resize-full').hasClass('fa-resize-small')) {
1357
+ jQuery("#spider_popup_wrap").css({
1358
+ height: bwg_param['image_height'],
1359
+ top: '50%',
1360
+ marginTop: -bwg_param['image_height'] / 2,
1361
+ zIndex: 100000
1362
+ });
1363
+ jQuery(".bwg_image_container").css({height: (bwg_param['image_height'] - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0))});
1364
+ jQuery(".bwg_popup_image").css({
1365
+ maxHeight: bwg_param['image_height'] - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1366
+ });
1367
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1368
+ maxHeight: bwg_param['image_height'] - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1369
+ });
1370
+ if (bwg_param['filmstrip_direction'] == 'vertical') {
1371
+ jQuery(".bwg_filmstrip_container").css({height: bwg_param['image_height']});
1372
+ jQuery(".bwg_filmstrip").css({height: (bwg_param['image_height'] - 40)})
1373
+ }
1374
+ bwg_popup_current_height = bwg_param['image_height'];
1375
+ }
1376
+ else {
1377
+ jQuery("#spider_popup_wrap").css({
1378
+ height: jQuery(window).height(),
1379
+ top: 0,
1380
+ marginTop: 0,
1381
+ zIndex: 100000
1382
+ });
1383
+
1384
+ jQuery(".bwg_image_container").css({height: (jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0))});
1385
+ jQuery(".bwg_popup_image").css({
1386
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1387
+ });
1388
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1389
+ maxHeight: jQuery(window).height() - (bwg_param['filmstrip_direction'] == 'horizontal' ? bwg_param['image_filmstrip_height'] : 0)
1390
+ });
1391
+ if (bwg_param['filmstrip_direction'] == 'vertical') {
1392
+ jQuery(".bwg_filmstrip_container").css({height: (jQuery(window).height())});
1393
+ jQuery(".bwg_filmstrip").css({height: (jQuery(window).height() - 40)});
1394
+ }
1395
+ bwg_popup_current_height = jQuery(window).height();
1396
+ }
1397
+ if (!(!(jQuery(window).width() >= bwg_param['image_width']) || !(bwg_param['open_with_fullscreen'] != 1))) {
1398
+ jQuery("#spider_popup_wrap").css({
1399
+ width: bwg_param['image_width'],
1400
+ left: '50%',
1401
+ marginLeft: -bwg_param['image_width'] / 2,
1402
+ zIndex: 100000
1403
+ });
1404
+ jQuery(".bwg_image_wrap").css({width: bwg_param['image_width'] - comment_container_width});
1405
+ jQuery(".bwg_image_container").css({width: (bwg_param['image_width'] - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width)});
1406
+ jQuery(".bwg_popup_image").css({
1407
+ maxWidth: bwg_param['image_width'] - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width
1408
+ });
1409
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1410
+ maxWidth: bwg_param['image_width'] - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width
1411
+ });
1412
+ if (bwg_param['filmstrip_direction'] == 'horizontal') {
1413
+ jQuery(".bwg_filmstrip_container").css({width: bwg_param['image_width'] - comment_container_width});
1414
+ jQuery(".bwg_filmstrip").css({width: (bwg_param['image_width'] - comment_container_width- 40)});
1415
+ }
1416
+ bwg_popup_current_width = bwg_param['image_width'];
1417
+ }
1418
+ else {
1419
+ jQuery("#spider_popup_wrap").css({
1420
+ width: jQuery(window).width(),
1421
+ left: 0,
1422
+ marginLeft: 0,
1423
+ zIndex: 100000
1424
+ });
1425
+ jQuery(".bwg_image_wrap").css({width: (jQuery(window).width() - comment_container_width)});
1426
+ jQuery(".bwg_image_container").css({width: (jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width)});
1427
+ jQuery(".bwg_popup_image").css({
1428
+ maxWidth: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width
1429
+ });
1430
+ jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({
1431
+ maxWidth: jQuery(window).width() - (bwg_param['filmstrip_direction'] == 'vertical' ? bwg_param['image_filmstrip_width'] : 0) - comment_container_width
1432
+ });
1433
+ if (bwg_param['filmstrip_direction'] == 'horizontal') {
1434
+ jQuery(".bwg_filmstrip_container").css({width: (jQuery(window).width() - comment_container_width)});
1435
+ jQuery(".bwg_filmstrip").css({width: (jQuery(window).width() - comment_container_width - 40)});
1436
+ }
1437
+ bwg_popup_current_width = jQuery(window).width();
1438
+ }
1439
+ /* Set watermark container size.*/
1440
+ bwg_resize_instagram_post();
1441
+ bwg_change_watermark_container();
1442
+ if (!(!(jQuery(window).height() > bwg_param['image_height'] - 2 * bwg_param['lightbox_close_btn_top']) || !(jQuery(window).width() >= bwg_param['image_width'] - 2 * bwg_param['lightbox_close_btn_right']) || !(bwg_param['open_with_fullscreen'] != 1))) {
1443
+ jQuery(".spider_popup_close_fullscreen").attr("class", "spider_popup_close");
1444
+ }
1445
+ else {
1446
+ if (!(!(jQuery("#spider_popup_wrap").width() < jQuery(window).width()) || !(jQuery("#spider_popup_wrap").height() < jQuery(window).height()))) {
1447
+ jQuery(".spider_popup_close").attr("class", "bwg_ctrl_btn spider_popup_close_fullscreen");
1448
+ }
1449
+ }
1450
+ if ( bwg_param['lightbox_ctrl_btn_pos'] == 'bottom' ) {
1451
+ if (jQuery(".bwg_toggle_container i").hasClass('fa-angle-down')) {
1452
+ jQuery(".bwg_toggle_container").css("bottom", jQuery(".bwg_ctrl_btn_container").height() + "px");
1453
+ }
1454
+ }
1455
+ if ( bwg_param['lightbox_ctrl_btn_pos'] == 'top') {
1456
+ if (jQuery(".bwg_toggle_container i").hasClass('fa-angle-up')) {
1457
+ jQuery(".bwg_toggle_container").css("top", jQuery(".bwg_ctrl_btn_container").height() + "px");
1458
+ }
1459
+ }
1460
  }
js/bwg_gallery_box.js CHANGED
@@ -127,8 +127,6 @@ function get_ajax_pricelist(){
127
  url: jQuery('#bwg_ecommerce_form').attr('action'),
128
  data: post_data,
129
  success: function (data) {
130
- var pge_tabs = jQuery(data).find('.pge_tabs').html();
131
- jQuery('.pge_tabs').html(pge_tabs);
132
  jQuery(".pge_tabs li a").on("click", function(){
133
  jQuery(".pge_tabs_container > div").hide();
134
  jQuery(".pge_tabs li").removeClass("pge_active");
127
  url: jQuery('#bwg_ecommerce_form').attr('action'),
128
  data: post_data,
129
  success: function (data) {
 
 
130
  jQuery(".pge_tabs li a").on("click", function(){
131
  jQuery(".pge_tabs_container > div").hide();
132
  jQuery(".pge_tabs li").removeClass("pge_active");
languages/bwg-el.mo CHANGED
Binary file
languages/bwg-el.po CHANGED
@@ -2,14 +2,14 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2018-01-24 10:49+0400\n"
5
- "PO-Revision-Date: 2018-01-24 10:49+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: el\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 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
@@ -21,8 +21,8 @@ msgstr ""
21
 
22
  #: addons/addons.php:8
23
  msgid ""
24
- "Using Photo Gallery Ecommerce you can sell images included in galleries "
25
- "either as digital downloads or products/prints via Paypal or Stripe."
26
  msgstr ""
27
 
28
  #: addons/addons.php:13
@@ -33,10 +33,9 @@ msgstr "Μοιραστείτε στο Facebook"
33
 
34
  #: addons/addons.php:15
35
  msgid ""
36
- "Photo Gallery Facebook is an add-on, which helps to display Facebook photos "
37
- "and videos within Photo Gallery plugin. You can create Facebook-only "
38
- "galleries, embed individual images and videos or include Facebook albums "
39
- "within mixed type albums."
40
  msgstr ""
41
 
42
  #: addons/addons.php:20
@@ -45,110 +44,103 @@ msgstr ""
45
 
46
  #: addons/addons.php:22
47
  msgid ""
48
- "This addon integrates NextGen with Photo Gallery allowing to import images "
49
- "and related data from NextGen to use with Photo Gallery"
50
  msgstr ""
51
 
52
  #: addons/addons.php:27
53
  msgid "Photo Gallery Export / Import"
54
- msgstr ""
55
 
56
  #: addons/addons.php:29
57
  msgid ""
58
- "Photo Gallery Export/Import helps to move created galleries and gallery "
59
- "groups from one site to another. This way you can save the gallery/album "
60
- "options and manual modifications."
61
  msgstr ""
62
 
63
  #: addons/addons.php:38
64
  msgid "Photo Gallery Add-ons"
65
- msgstr ""
66
 
67
  #: addons/addons.php:71
68
  msgid "GET THIS ADD ON"
69
- msgstr ""
70
 
71
  #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
72
  #: admin/views/Galleries.php:763 photo-gallery.php:260
73
  msgid "Tags"
74
- msgstr ""
75
 
76
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
77
  #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
78
- #: admin/views/Albums.php:103 admin/views/Albums.php:179
79
- #: admin/views/Comments.php:106 admin/views/Galleries.php:108
80
- #: admin/views/Galleries.php:203 admin/views/Galleries.php:726
81
  msgid "Publish"
82
- msgstr ""
83
 
84
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
85
  #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
86
  msgid "published"
87
- msgstr ""
88
 
89
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
90
  #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
91
- #: admin/views/Albums.php:103 admin/views/Comments.php:106
92
- #: admin/views/Galleries.php:108 admin/views/Galleries.php:726
93
  msgid "Unpublish"
94
- msgstr ""
95
 
96
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
97
  #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
98
  msgid "unpublished"
99
- msgstr ""
100
 
101
- #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
102
- #: admin/views/Albums.php:104 admin/views/Themes.php:100
103
  msgid "Duplicate"
104
- msgstr ""
105
 
106
  #: admin/controllers/Albums.php:47
107
  msgid "duplicate"
108
- msgstr ""
109
 
110
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
111
  #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
112
  #: admin/controllers/Ratings.php:41 admin/controllers/Themes.php:43
113
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
114
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:733
115
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
116
- #, fuzzy
117
- #| msgid "Delete Comment"
118
  msgid "Delete"
119
- msgstr "Διαγραφή σχολίου"
120
 
121
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
122
  #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
123
  #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
124
  msgid "deleted"
125
- msgstr ""
126
 
127
  #: admin/controllers/Albums.php:93 photo-gallery.php:257
128
  msgid "Gallery Groups"
129
- msgstr ""
130
 
131
  #: admin/controllers/Albumsgalleries.php:50
132
  msgid "Galleries / Gallery groups"
133
- msgstr ""
134
 
135
  #: admin/controllers/Comments.php:93 photo-gallery.php:268
136
- #, fuzzy
137
- #| msgid "Comment"
138
  msgid "Comments"
139
- msgstr "Σχόλιο"
140
 
141
  #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
142
  msgid "Filter by gallery"
143
- msgstr ""
144
 
145
  #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
146
  msgid "Filter by image"
147
- msgstr ""
148
 
149
  #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
150
  msgid "Resize"
151
- msgstr ""
152
 
153
  #: admin/controllers/Galleries.php:49
154
  msgid "resized"
@@ -156,33 +148,31 @@ msgstr ""
156
 
157
  #: admin/controllers/Galleries.php:52
158
  msgid "Recreate thumbnail"
159
- msgstr ""
160
 
161
  #: admin/controllers/Galleries.php:53
162
  msgid "recreated"
163
- msgstr ""
164
 
165
  #: admin/controllers/Galleries.php:56
166
  msgid "Rotate left"
167
- msgstr ""
168
 
169
  #: admin/controllers/Galleries.php:57
170
- #, fuzzy
171
- #| msgid "Not rated yet."
172
  msgid "rotated left"
173
- msgstr "Δεν έχει βαθμολογηθεί ακόμα. "
174
 
175
  #: admin/controllers/Galleries.php:60
176
  msgid "Rotate right"
177
- msgstr ""
178
 
179
  #: admin/controllers/Galleries.php:61
180
  msgid "rotated right"
181
- msgstr ""
182
 
183
  #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
184
  msgid "Set watermark"
185
- msgstr ""
186
 
187
  #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
188
  #: admin/controllers/Galleries.php:77
@@ -190,90 +180,83 @@ msgid "edited"
190
  msgstr ""
191
 
192
  #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
193
- #: admin/views/Themes.php:185 framework/WDWLibrary.php:317
194
- #: framework/WDWLibrary.php:495 framework/WDWLibrary.php:814
195
- #: framework/WDWLibrary.php:849
196
  msgid "Reset"
197
  msgstr "Επαναφορά"
198
 
199
  #: admin/controllers/Galleries.php:69
200
- #, fuzzy
201
- #| msgid "Reset"
202
  msgid "reset"
203
- msgstr "Επαναφορά"
204
 
205
  #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
206
- #: admin/views/Galleries.php:107 admin/views/Galleries.php:716
207
- #: admin/views/Themes.php:99
208
  msgid "Edit"
209
- msgstr ""
210
 
211
  #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
212
  msgid "Add tag"
213
- msgstr ""
214
 
215
  #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
216
- #, fuzzy
217
- #| msgid "Gallery is empty."
218
  msgid "Galleries"
219
- msgstr "Gallery σας είναι άδειο"
220
 
221
  #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
222
  msgid "Item Succesfully Saved."
223
- msgstr ""
224
 
225
  #: admin/controllers/Galleries.php:441
226
  msgid ""
227
- " Selected pricelist item longest dimension greater than some original images "
228
- "dimensions."
229
  msgstr ""
230
 
231
  #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
232
  msgid ""
233
- "Selected pricelist item longest dimension greater than some original images "
234
- "dimensions."
235
  msgstr ""
236
 
237
  #: admin/controllers/Options.php:62
238
  msgid "Edit options"
239
- msgstr ""
240
 
241
  #: admin/controllers/Options.php:106
242
  msgid "Default values restored. Changes must be saved."
243
- msgstr ""
244
 
245
  #: admin/controllers/Options.php:137
246
  msgid "Uploads directory doesn't exist. Old value is restored."
247
- msgstr ""
248
 
249
  #: admin/controllers/Options.php:140
250
  msgid ""
251
- "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
252
- "value is restored."
253
  msgstr ""
 
 
254
 
255
  #: admin/controllers/Options.php:180
256
  msgid "All thumbnails are successfully recreated."
257
- msgstr ""
258
 
259
  #: admin/controllers/Options.php:207
260
  msgid "All images are successfully watermarked."
261
- msgstr ""
262
 
263
  #: admin/controllers/Options.php:212
264
  msgid "All images are successfully reset."
265
- msgstr ""
266
 
267
  #: admin/controllers/Ratings.php:86 photo-gallery.php:271
268
  msgid "Ratings"
269
- msgstr ""
270
 
271
  #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
272
  #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
273
- #: admin/views/Options.php:1497 admin/views/Options.php:1641
274
- #: admin/views/Shortcode.php:1387
275
  msgid "None"
276
- msgstr ""
277
 
278
  #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
279
  msgid "Cube Horizontal"
@@ -332,38 +315,33 @@ msgid "Blind Vertical"
332
  msgstr ""
333
 
334
  #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
335
- #: admin/views/Shortcode.php:615 admin/views/Widget.php:156
336
- #: framework/WDWLibrary.php:891
337
  msgid "Random"
338
- msgstr "τυχαίος"
339
 
340
- #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74
341
- #: photo-gallery.php:1326
342
  msgid "Thumbnails"
343
- msgstr ""
344
 
345
  #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
346
- #: admin/controllers/Themes.php:265 admin/views/Options.php:456
347
- #: admin/views/Options.php:462 admin/views/Options.php:1017
348
- #: admin/views/Shortcode.php:82 admin/views/Shortcode.php:152
349
  #: admin/views/Shortcode.php:344 admin/views/Shortcode.php:1012
350
- #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136
351
- #: photo-gallery.php:1330
352
  msgid "Masonry"
353
  msgstr ""
354
 
355
  #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
356
- #: admin/views/Options.php:493 admin/views/Options.php:511
357
- #: admin/views/Options.php:1018 admin/views/Shortcode.php:91
358
- #: admin/views/Shortcode.php:359 admin/views/Shortcode.php:1013
359
  #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
360
  #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
361
  msgid "Mosaic"
362
  msgstr ""
363
 
364
  #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
365
- #: admin/views/Options.php:651 admin/views/Shortcode.php:100
366
- #: photo-gallery.php:1300 photo-gallery.php:1338
367
  msgid "Slideshow"
368
  msgstr ""
369
 
@@ -378,8 +356,7 @@ msgid "Blog Style"
378
  msgstr ""
379
 
380
  #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
381
- #: admin/views/Options.php:866 admin/views/Shortcode.php:121
382
- #: photo-gallery.php:1370
383
  msgid "Carousel"
384
  msgstr ""
385
 
@@ -397,17 +374,16 @@ msgstr ""
397
 
398
  #: admin/controllers/Themes.php:88 photo-gallery.php:264
399
  msgid "Themes"
400
- msgstr ""
401
 
402
  #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
403
- #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060
404
- #: admin/views/Widget.php:135
405
  msgid "Thumbnail"
406
- msgstr ""
407
 
408
  #: admin/controllers/Themes.php:268
409
  msgid "Image browser"
410
- msgstr ""
411
 
412
  #: admin/controllers/Themes.php:269
413
  msgid "Compact album"
@@ -425,15 +401,14 @@ msgstr ""
425
  msgid "Blog style"
426
  msgstr ""
427
 
428
- #: admin/controllers/Themes.php:273 admin/views/Options.php:78
429
- #: admin/views/Shortcode.php:1115 admin/views/WidgetTags.php:98
430
- #: photo-gallery.php:1292 photo-gallery.php:1362
431
  msgid "Lightbox"
432
  msgstr ""
433
 
434
  #: admin/controllers/Themes.php:274
435
  msgid "Navigation"
436
- msgstr ""
437
 
438
  #: admin/controllers/Themes.php:280
439
  msgid "Solid"
@@ -467,19 +442,19 @@ msgstr ""
467
  msgid "Outset"
468
  msgstr ""
469
 
470
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161
471
- #: admin/views/Themes.php:3721 admin/views/Themes.php:4203
472
  msgid "Left"
473
- msgstr ""
474
 
475
  #: admin/controllers/Themes.php:306
476
  msgid "Center"
477
- msgstr ""
478
 
479
- #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159
480
- #: admin/views/Themes.php:3719 admin/views/Themes.php:4205
481
  msgid "Right"
482
- msgstr ""
483
 
484
  #: admin/controllers/Themes.php:311
485
  msgid "Lighter"
@@ -541,7 +516,7 @@ msgstr ""
541
  #: admin/views/Options.php:332
542
  #, php-format
543
  msgid "Uninstall %s"
544
- msgstr ""
545
 
546
  #: admin/controllers/Widget.php:14
547
  msgid "Add Photo Gallery albums or galleries to Your widget area."
@@ -557,213 +532,179 @@ msgstr ""
557
 
558
  #: admin/models/Comments.php:61 admin/models/Ratings.php:81
559
  msgid "All galleries"
560
- msgstr ""
561
 
562
  #: admin/models/Comments.php:75 admin/models/Ratings.php:100
563
  msgid "All images"
564
- msgstr ""
565
 
566
- #: admin/views/AddTags.php:65 admin/views/Albums.php:50
567
- #: admin/views/Comments.php:61 admin/views/Themes.php:72
568
  msgid "Select all"
569
- msgstr ""
570
 
571
- #: admin/views/AddTags.php:68 admin/views/AddTags.php:86
572
- #: admin/views/Albums.php:89 admin/views/Comments.php:64
573
- #: admin/views/Comments.php:87 admin/views/Galleries.php:51
574
  #: admin/views/Galleries.php:54 admin/views/Galleries.php:94
575
- #: frontend/views/BWGViewGalleryBox.php:1425
576
- #: frontend/views/BWGViewGalleryBox.php:1453
577
- #: frontend/views/BWGViewGalleryBox.php:1460
578
- #: frontend/views/BWGViewGalleryBox.php:1569
579
  #: frontend/views/BWGViewGalleryBox.php:1684
580
  msgid "Name"
581
  msgstr "Όνομα"
582
 
583
  #: admin/views/AddTags.php:107
584
  msgid "Add to image"
585
- msgstr ""
586
 
587
  #: admin/views/AdminView.php:94
588
  msgid "Add New"
589
- msgstr ""
590
 
591
- #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316
592
- #: framework/WDWLibrary.php:494 framework/WDWLibrary.php:817
593
- #: framework/WDWLibrary.php:846 photo-gallery.php:1009
594
  msgid "Search"
595
  msgstr "Αναζήτηση"
596
 
597
  #: admin/views/AdminView.php:226
598
- #, fuzzy
599
- #| msgid "First"
600
  msgid "First page"
601
- msgstr "Πρώτον"
602
 
603
  #: admin/views/AdminView.php:227
604
- #, fuzzy
605
- #| msgid "Previous"
606
  msgid "Previous page"
607
- msgstr "Προηγούμενη"
608
 
609
  #: admin/views/AdminView.php:232
610
  msgid "Current Page"
611
- msgstr ""
612
 
613
- #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447
614
- #: framework/WDWLibrary.php:596 framework/WDWLibrary.php:679
615
  msgid "of"
616
- msgstr "της"
617
 
618
  #: admin/views/AdminView.php:248
619
  #, fuzzy
620
  #| msgid "Next"
621
  msgid "Next page"
622
- msgstr "Επόμενο"
623
 
624
  #: admin/views/AdminView.php:249
625
  #, fuzzy
626
  #| msgid "Last"
627
  msgid "Last page"
628
- msgstr "Φορτίο"
629
 
630
  #: admin/views/AdminView.php:281 filemanager/view.php:248
631
  msgid "Select All"
632
- msgstr ""
633
 
634
  #: admin/views/AdminView.php:286
635
  msgid "Select bulk action"
636
- msgstr ""
637
 
638
  #: admin/views/AdminView.php:288
639
  msgid "Bulk Actions"
640
- msgstr ""
641
 
642
  #: admin/views/AdminView.php:297
643
  msgid "Apply"
644
- msgstr ""
645
 
646
  #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
647
  #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
648
  #: admin/views/Themes.php:75 admin/views/Themes.php:94
649
  msgid "Title"
650
- msgstr ""
651
 
652
- #: admin/views/Albums.php:54 admin/views/Albums.php:112
653
- #: admin/views/Albums.php:255 admin/views/Galleries.php:56
654
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:305
655
  msgid "Author"
656
- msgstr ""
657
 
658
- #: admin/views/Albums.php:98 admin/views/Albums.php:345
659
- #: admin/views/Albumsgalleries.php:110 admin/views/Comments.php:99
660
- #: admin/views/Galleries.php:103 admin/views/Galleries.php:712
661
  msgid "Unpublished"
662
- msgstr ""
663
 
664
- #: admin/views/Albums.php:105 admin/views/Comments.php:109
665
- #: admin/views/Galleries.php:109 admin/views/Galleries.php:727
666
- #: admin/views/Ratings.php:84 admin/views/Themes.php:101
667
  msgid "Do you want to delete selected item?"
668
- msgstr ""
669
 
670
- #: admin/views/Albums.php:106 admin/views/Albums.php:182
671
- #: admin/views/Galleries.php:110 admin/views/Galleries.php:207
672
- #, fuzzy
673
- #| msgid "Previous"
674
  msgid "Preview"
675
- msgstr "Προηγούμενη"
676
 
677
  #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
678
- #: admin/views/Comments.php:112 admin/views/Galleries.php:113
679
- #: admin/views/Galleries.php:736 admin/views/Ratings.php:87
680
- #: admin/views/Themes.php:104
681
- #, fuzzy
682
- #| msgid "Show comments"
683
  msgid "Show more details"
684
- msgstr "Δείτε σχόλια"
685
 
686
  #: admin/views/Albums.php:166
687
  msgid "Gallery Group Title"
688
- msgstr ""
689
 
690
- #: admin/views/Albums.php:173 admin/views/Albums.php:295
691
- #: admin/views/Galleries.php:195 admin/views/Galleries.php:265
692
  msgid "How to use"
693
- msgstr ""
694
 
695
- #: admin/views/Albums.php:179 admin/views/Galleries.php:203
696
- #: admin/views/Galleries.php:575 admin/views/Shortcode.php:1631
697
- #: admin/views/Shortcode.php:2888 admin/views/Themes.php:175
698
  msgid "Update"
699
- msgstr ""
700
 
701
  #: admin/views/Albums.php:193 admin/views/Galleries.php:228
702
  msgid "Preview image"
703
- msgstr ""
704
 
705
  #: admin/views/Albums.php:195 admin/views/Galleries.php:232
706
  msgid "Add Preview Image"
707
- msgstr ""
708
 
709
- #: admin/views/Albums.php:196 admin/views/Albums.php:238
710
- #: admin/views/Galleries.php:235 admin/views/Galleries.php:490
711
- #: filemanager/view.php:256
712
  msgid "Add"
713
- msgstr ""
714
 
715
  #: admin/views/Albums.php:204 admin/views/Galleries.php:245
716
  msgid "Published"
717
- msgstr ""
718
-
719
- #: admin/views/Albums.php:206 admin/views/Galleries.php:247
720
- #: admin/views/Options.php:132 admin/views/Options.php:157
721
- #: admin/views/Options.php:166 admin/views/Options.php:175
722
- #: admin/views/Options.php:193 admin/views/Options.php:202
723
- #: admin/views/Options.php:211 admin/views/Options.php:220
724
- #: admin/views/Options.php:233 admin/views/Options.php:243
725
- #: admin/views/Options.php:252 admin/views/Options.php:262
726
- #: admin/views/Options.php:290 admin/views/Options.php:301
727
- #: admin/views/Options.php:312 admin/views/Options.php:352
728
- #: admin/views/Options.php:415 admin/views/Options.php:424
729
- #: admin/views/Options.php:433 admin/views/Options.php:442
730
- #: admin/views/Options.php:476 admin/views/Options.php:523
731
- #: admin/views/Options.php:558 admin/views/Options.php:567
732
- #: admin/views/Options.php:612 admin/views/Options.php:623
733
- #: admin/views/Options.php:634 admin/views/Options.php:702
734
- #: admin/views/Options.php:711 admin/views/Options.php:720
735
- #: admin/views/Options.php:740 admin/views/Options.php:759
736
- #: admin/views/Options.php:795 admin/views/Options.php:805
737
- #: admin/views/Options.php:841 admin/views/Options.php:922
738
- #: admin/views/Options.php:932 admin/views/Options.php:942
739
- #: admin/views/Options.php:952 admin/views/Options.php:962
740
- #: admin/views/Options.php:982 admin/views/Options.php:1007
741
- #: admin/views/Options.php:1040 admin/views/Options.php:1084
742
- #: admin/views/Options.php:1129 admin/views/Options.php:1146
743
- #: admin/views/Options.php:1165 admin/views/Options.php:1188
744
- #: admin/views/Options.php:1210 admin/views/Options.php:1219
745
- #: admin/views/Options.php:1228 admin/views/Options.php:1237
746
- #: admin/views/Options.php:1258 admin/views/Options.php:1268
747
- #: admin/views/Options.php:1278 admin/views/Options.php:1287
748
- #: admin/views/Options.php:1296 admin/views/Options.php:1305
749
- #: admin/views/Options.php:1314 admin/views/Options.php:1334
750
- #: admin/views/Options.php:1346 admin/views/Options.php:1358
751
- #: admin/views/Options.php:1368 admin/views/Options.php:1378
752
- #: admin/views/Options.php:1388 admin/views/Options.php:1398
753
- #: admin/views/Options.php:1408 admin/views/Options.php:1421
754
- #: admin/views/Shortcode.php:375 admin/views/Shortcode.php:419
755
- #: admin/views/Shortcode.php:559 admin/views/Shortcode.php:566
756
- #: admin/views/Shortcode.php:582 admin/views/Shortcode.php:589
757
- #: admin/views/Shortcode.php:637 admin/views/Shortcode.php:644
758
- #: admin/views/Shortcode.php:651 admin/views/Shortcode.php:676
759
- #: admin/views/Shortcode.php:693 admin/views/Shortcode.php:727
760
- #: admin/views/Shortcode.php:771 admin/views/Shortcode.php:815
761
- #: admin/views/Shortcode.php:843 admin/views/Shortcode.php:850
762
- #: admin/views/Shortcode.php:857 admin/views/Shortcode.php:865
763
- #: admin/views/Shortcode.php:880 admin/views/Shortcode.php:887
764
- #: admin/views/Shortcode.php:919 admin/views/Shortcode.php:927
765
- #: admin/views/Shortcode.php:959 admin/views/Shortcode.php:975
766
- #: admin/views/Shortcode.php:982 admin/views/Shortcode.php:989
767
  #: admin/views/Shortcode.php:996 admin/views/Shortcode.php:1035
768
  #: admin/views/Shortcode.php:1084 admin/views/Shortcode.php:1129
769
  #: admin/views/Shortcode.php:1139 admin/views/Shortcode.php:1181
@@ -775,67 +716,49 @@ msgstr ""
775
  #: admin/views/Shortcode.php:1290 admin/views/Shortcode.php:1298
776
  #: admin/views/Shortcode.php:1306 admin/views/Shortcode.php:1314
777
  #: admin/views/Shortcode.php:1325 admin/views/Shortcode.php:1352
778
- #: admin/views/Shortcode.php:1369 admin/views/Shortcode.php:1378
779
- #: admin/views/Themes.php:282 admin/views/Themes.php:631
780
- #: admin/views/Themes.php:878 admin/views/Themes.php:1872
781
- #: admin/views/Themes.php:2209 admin/views/Themes.php:2831
782
- #: admin/views/Themes.php:4520 admin/views/Themes.php:4569
783
- #: admin/views/Uninstall.php:96 admin/views/WidgetSlideshow.php:115
784
- #: admin/views/WidgetSlideshow.php:121 admin/views/WidgetSlideshow.php:127
785
- #: admin/views/WidgetTags.php:91 admin/views/WidgetTags.php:113
786
- #: wd/includes/overview.php:227 wd/includes/overview.php:234
787
  #: wd/includes/overview.php:241 wd/includes/overview.php:251
788
  msgid "Yes"
789
- msgstr ""
790
-
791
- #: admin/views/Albums.php:208 admin/views/Galleries.php:249
792
- #: admin/views/Options.php:133 admin/views/Options.php:158
793
- #: admin/views/Options.php:167 admin/views/Options.php:176
794
- #: admin/views/Options.php:194 admin/views/Options.php:203
795
- #: admin/views/Options.php:212 admin/views/Options.php:221
796
- #: admin/views/Options.php:234 admin/views/Options.php:244
797
- #: admin/views/Options.php:253 admin/views/Options.php:263
798
- #: admin/views/Options.php:291 admin/views/Options.php:302
799
- #: admin/views/Options.php:313 admin/views/Options.php:353
800
- #: admin/views/Options.php:416 admin/views/Options.php:425
801
- #: admin/views/Options.php:434 admin/views/Options.php:443
802
- #: admin/views/Options.php:477 admin/views/Options.php:524
803
- #: admin/views/Options.php:559 admin/views/Options.php:568
804
- #: admin/views/Options.php:613 admin/views/Options.php:624
805
- #: admin/views/Options.php:635 admin/views/Options.php:703
806
- #: admin/views/Options.php:712 admin/views/Options.php:721
807
- #: admin/views/Options.php:741 admin/views/Options.php:760
808
- #: admin/views/Options.php:796 admin/views/Options.php:806
809
- #: admin/views/Options.php:842 admin/views/Options.php:923
810
- #: admin/views/Options.php:933 admin/views/Options.php:943
811
- #: admin/views/Options.php:953 admin/views/Options.php:963
812
- #: admin/views/Options.php:983 admin/views/Options.php:1008
813
- #: admin/views/Options.php:1041 admin/views/Options.php:1085
814
- #: admin/views/Options.php:1130 admin/views/Options.php:1147
815
- #: admin/views/Options.php:1166 admin/views/Options.php:1202
816
- #: admin/views/Options.php:1211 admin/views/Options.php:1220
817
- #: admin/views/Options.php:1229 admin/views/Options.php:1238
818
- #: admin/views/Options.php:1259 admin/views/Options.php:1269
819
- #: admin/views/Options.php:1279 admin/views/Options.php:1288
820
- #: admin/views/Options.php:1297 admin/views/Options.php:1306
821
- #: admin/views/Options.php:1315 admin/views/Options.php:1335
822
- #: admin/views/Options.php:1349 admin/views/Options.php:1359
823
- #: admin/views/Options.php:1369 admin/views/Options.php:1379
824
- #: admin/views/Options.php:1389 admin/views/Options.php:1399
825
- #: admin/views/Options.php:1409 admin/views/Options.php:1422
826
- #: admin/views/Shortcode.php:376 admin/views/Shortcode.php:420
827
- #: admin/views/Shortcode.php:560 admin/views/Shortcode.php:567
828
- #: admin/views/Shortcode.php:583 admin/views/Shortcode.php:590
829
- #: admin/views/Shortcode.php:638 admin/views/Shortcode.php:645
830
- #: admin/views/Shortcode.php:652 admin/views/Shortcode.php:677
831
- #: admin/views/Shortcode.php:694 admin/views/Shortcode.php:728
832
- #: admin/views/Shortcode.php:772 admin/views/Shortcode.php:816
833
- #: admin/views/Shortcode.php:844 admin/views/Shortcode.php:851
834
- #: admin/views/Shortcode.php:858 admin/views/Shortcode.php:866
835
- #: admin/views/Shortcode.php:881 admin/views/Shortcode.php:888
836
- #: admin/views/Shortcode.php:920 admin/views/Shortcode.php:928
837
- #: admin/views/Shortcode.php:960 admin/views/Shortcode.php:976
838
- #: admin/views/Shortcode.php:983 admin/views/Shortcode.php:990
839
  #: admin/views/Shortcode.php:997 admin/views/Shortcode.php:1036
840
  #: admin/views/Shortcode.php:1085 admin/views/Shortcode.php:1130
841
  #: admin/views/Shortcode.php:1140 admin/views/Shortcode.php:1182
@@ -847,47 +770,42 @@ msgstr ""
847
  #: admin/views/Shortcode.php:1291 admin/views/Shortcode.php:1299
848
  #: admin/views/Shortcode.php:1307 admin/views/Shortcode.php:1315
849
  #: admin/views/Shortcode.php:1326 admin/views/Shortcode.php:1353
850
- #: admin/views/Shortcode.php:1370 admin/views/Shortcode.php:1379
851
- #: admin/views/Themes.php:284 admin/views/Themes.php:633
852
- #: admin/views/Themes.php:880 admin/views/Themes.php:1874
853
- #: admin/views/Themes.php:2211 admin/views/Themes.php:2833
854
- #: admin/views/Themes.php:4522 admin/views/Themes.php:4571
855
- #: admin/views/WidgetSlideshow.php:116 admin/views/WidgetSlideshow.php:122
856
- #: admin/views/WidgetSlideshow.php:128 admin/views/WidgetTags.php:92
857
- #: admin/views/WidgetTags.php:114 wd/includes/overview.php:229
858
- #: wd/includes/overview.php:236 wd/includes/overview.php:243
859
- #: wd/includes/overview.php:246 wd/includes/overview.php:251
860
  msgid "No"
861
- msgstr ""
862
 
863
  #: admin/views/Albums.php:219
864
  msgid "Galleries and Gallery Groups"
865
- msgstr ""
866
 
867
- #: admin/views/Albums.php:247 admin/views/Albums.php:291
868
- #: admin/views/Galleries.php:219 admin/views/Galleries.php:261
869
- #: admin/views/Galleries.php:294 admin/views/Options.php:452
870
- #: admin/views/Options.php:489 admin/views/Options.php:536
871
- #: admin/views/Options.php:579 admin/views/Options.php:647
872
- #: admin/views/Options.php:862 admin/views/Shortcode.php:266
873
  #: admin/views/Shortcode.php:1111
874
  msgid "Toggle panel:"
875
  msgstr ""
876
 
877
- #: admin/views/Albums.php:251 admin/views/Galleries.php:298
878
- #: admin/views/Options.php:81 admin/views/Shortcode.php:1344
879
  msgid "Advanced"
880
- msgstr ""
881
 
882
  #: admin/views/Albums.php:259 admin/views/Galleries.php:309
883
  msgid "Slug"
884
  msgstr ""
885
 
886
- #: admin/views/Albums.php:264 admin/views/Galleries.php:314
887
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:742
888
- #: frontend/views/BWGViewGalleryBox.php:1584
889
  msgid "Description"
890
- msgstr ""
891
 
892
  #: admin/views/Albums.php:300 admin/views/Galleries.php:270
893
  msgid "Page or Post editor"
@@ -903,14 +821,14 @@ msgstr ""
903
 
904
  #: admin/views/Albums.php:305 admin/views/Galleries.php:275
905
  msgid "PHP code"
906
- msgstr ""
907
 
908
  #: admin/views/Albums.php:306 admin/views/Galleries.php:276
909
  msgid "Copy and paste the PHP code into your template file."
910
- msgstr ""
911
 
912
- #: admin/views/Albums.php:310 admin/views/Albums.php:312
913
- #: admin/views/Galleries.php:280 admin/views/Galleries.php:282
914
  msgid "Widget"
915
  msgstr ""
916
 
@@ -920,63 +838,59 @@ msgstr ""
920
 
921
  #: admin/views/Albums.php:336 admin/views/Galleries.php:689
922
  msgid "Drag to re-order"
923
- msgstr ""
924
 
925
  #: admin/views/Albums.php:344
926
  msgid "Remove"
927
- msgstr ""
928
 
929
  #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
930
  #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
931
  msgid "Type"
932
- msgstr ""
933
 
934
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
935
  #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
936
- #, fuzzy
937
- #| msgid "Gallery is empty."
938
  msgid "Gallery group"
939
- msgstr "Gallery σας είναι άδειο"
940
 
941
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
942
- #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192
943
- #: admin/views/Shortcode.php:270 admin/views/Widget.php:117
944
  msgid "Gallery"
945
- msgstr ""
946
 
947
  #: admin/views/Albumsgalleries.php:136
948
  msgid "Add to Gallery Group"
949
- msgstr ""
950
 
951
  #: admin/views/Comments.php:67 admin/views/Comments.php:118
952
- #: frontend/views/BWGViewGalleryBox.php:1431
953
- #: frontend/views/BWGViewGalleryBox.php:1453
954
  #: frontend/views/BWGViewGalleryBox.php:1460
955
  msgid "Email"
956
  msgstr "email"
957
 
958
  #: admin/views/Comments.php:70 admin/views/Comments.php:124
959
- #: frontend/views/BWGViewGalleryBox.php:1438
960
- #: frontend/views/BWGViewGalleryBox.php:1453
961
  #: frontend/views/BWGViewGalleryBox.php:1460
962
  msgid "Comment"
963
  msgstr "Σχόλιο"
964
 
965
  #: admin/views/Editimage.php:196
966
  msgid "You can't crop this type of image."
967
- msgstr ""
968
 
969
  #: admin/views/Editimage.php:277
970
  msgid "The thumbnail successfully croped."
971
- msgstr ""
972
 
973
  #: admin/views/Editimage.php:282
974
  msgid "Select the area for the thumbnail."
975
- msgstr ""
976
 
977
  #: admin/views/Editimage.php:287
978
  msgid "Keep aspect ratio"
979
- msgstr ""
980
 
981
  #: admin/views/Editimage.php:785
982
  msgid "Grayscale"
@@ -1007,117 +921,109 @@ msgid "Do you want to reset the image?"
1007
  msgstr ""
1008
 
1009
  #: admin/views/Editimage.php:811
1010
- #, fuzzy
1011
- #| msgid "Reset"
1012
  msgid "Reset image"
1013
- msgstr "Επαναφορά"
1014
 
1015
  #: admin/views/Editimage.php:838
1016
  msgid "Brightness"
1017
- msgstr ""
1018
 
1019
  #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
1020
  msgid "Press for result"
1021
- msgstr ""
1022
 
1023
  #: admin/views/Editimage.php:864
1024
  msgid "Contrast"
1025
- msgstr ""
1026
 
1027
  #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
1028
  msgid "Images count"
1029
- msgstr ""
1030
 
1031
  #: admin/views/Galleries.php:188
1032
- #, fuzzy
1033
- #| msgid "Gallery is empty."
1034
  msgid "Gallery title"
1035
- msgstr "Gallery σας είναι άδειο"
1036
 
1037
  #: admin/views/Galleries.php:223
1038
  msgid "Basic"
1039
- msgstr ""
1040
 
1041
  #: admin/views/Galleries.php:340
1042
  msgid "Gallery content type"
1043
- msgstr ""
1044
 
1045
  #: admin/views/Galleries.php:343
1046
  msgid "Mixed"
1047
- msgstr ""
1048
 
1049
  #: admin/views/Galleries.php:346
1050
  msgid "Instagram only"
1051
- msgstr ""
1052
 
1053
  #: admin/views/Galleries.php:349 admin/views/Options.php:1474
1054
- #, fuzzy
1055
- #| msgid "Share on Facebook"
1056
  msgid "Facebook"
1057
- msgstr "Μοιραστείτε στο Facebook"
1058
 
1059
  #: admin/views/Galleries.php:357
1060
  msgid "Instagram username"
1061
- msgstr ""
1062
 
1063
  #: admin/views/Galleries.php:361
1064
  msgid "Number of Instagram recent posts to add to gallery"
1065
- msgstr ""
1066
 
1067
  #: admin/views/Galleries.php:365
1068
  msgid "Instagram embed type"
1069
- msgstr ""
1070
 
1071
  #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
1072
  msgid "Content"
1073
- msgstr ""
1074
 
1075
  #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
1076
  msgid "Whole post"
1077
- msgstr ""
1078
 
1079
  #: admin/views/Galleries.php:372
1080
- #, fuzzy
1081
- #| msgid "Photo gallery plugin autoupdate interval."
1082
  msgid "Gallery autoupdate option"
1083
- msgstr "Φωτογραφίες plugin αυτόματο χρονικό διάστημα ενημέρωσης."
1084
 
1085
  #: admin/views/Galleries.php:374
1086
  msgid "No update"
1087
- msgstr ""
1088
 
1089
  #: admin/views/Galleries.php:376
1090
  msgid "Add new media, keep old ones published."
1091
- msgstr ""
1092
 
1093
  #: admin/views/Galleries.php:378
1094
  msgid "Add new media, unpublish old ones."
1095
- msgstr ""
1096
 
1097
  #: admin/views/Galleries.php:381
1098
  msgid "Add Instagram Gallery"
1099
- msgstr ""
1100
 
1101
  #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1102
  msgid "Photo Gallery Facebook Integration"
1103
- msgstr ""
1104
 
1105
  #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1106
  #, php-format
1107
  msgid "Please install %s add-on to use this feature."
1108
- msgstr ""
1109
 
1110
  #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1111
  msgid "Add Images"
1112
- msgstr ""
1113
 
1114
  #: admin/views/Galleries.php:420
1115
  msgid "Import from Media Library"
1116
- msgstr ""
1117
 
1118
  #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1119
  msgid "Embed Media"
1120
- msgstr ""
1121
 
1122
  #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1123
  msgid "Social Bulk Embed"
@@ -1125,240 +1031,233 @@ msgstr ""
1125
 
1126
  #: admin/views/Galleries.php:435
1127
  msgid "Optimize Images"
1128
- msgstr ""
1129
 
1130
  #: admin/views/Galleries.php:452
1131
  msgid "Pricelist"
1132
- msgstr ""
1133
 
1134
  #: admin/views/Galleries.php:453
1135
  msgid "Add pricelist"
1136
- msgstr ""
1137
 
1138
  #: admin/views/Galleries.php:454
1139
  msgid "Remove pricelist"
1140
- msgstr ""
1141
 
1142
  #: admin/views/Galleries.php:471
1143
- msgid ""
1144
- "Enter YouTube, Vimeo, Instagram, Facebook, Flickr or Dailymotion URL here."
1145
  msgstr ""
1146
 
1147
  #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1148
  msgid "Add to gallery"
1149
- msgstr ""
1150
 
1151
- #: admin/views/Galleries.php:473 admin/views/Galleries.php:509
1152
- #: admin/views/Galleries.php:566 admin/views/Galleries.php:576
1153
- #: filemanager/view.php:262 filemanager/view.php:263
1154
  #: wd/templates/display_deactivation_popup.php:23
1155
  msgid "Cancel"
1156
- msgstr ""
1157
 
1158
  #: admin/views/Galleries.php:480
1159
  msgid "<b>Youtube</b> URL example:"
1160
- msgstr ""
1161
 
1162
  #: admin/views/Galleries.php:484
1163
  msgid "<b>Vimeo</b> URL example:"
1164
- msgstr ""
1165
 
1166
  #: admin/views/Galleries.php:488
1167
  msgid "<b>Instagram</b> URL example:"
1168
- msgstr ""
1169
 
1170
  #: admin/views/Galleries.php:490
1171
  msgid "post"
1172
- msgstr ""
1173
 
1174
  #: admin/views/Galleries.php:490
1175
  msgid ""
1176
- "to the end of URL if you want to embed the whole Instagram post, not only "
1177
- "its content."
1178
  msgstr ""
 
 
1179
 
1180
  #: admin/views/Galleries.php:498
1181
  msgid "<b>Flickr</b> URL example:"
1182
- msgstr ""
1183
 
1184
  #: admin/views/Galleries.php:502
1185
  msgid "<b>Dailymotion</b> URL example:"
1186
- msgstr ""
1187
 
1188
  #: admin/views/Galleries.php:521
1189
  msgid "username:"
1190
- msgstr ""
1191
 
1192
  #: admin/views/Galleries.php:529
1193
  msgid "Number of Instagram recent posts to add to gallery:"
1194
- msgstr ""
1195
 
1196
  #: admin/views/Galleries.php:537
1197
  msgid "embed type:"
1198
- msgstr ""
1199
 
1200
  #: admin/views/Galleries.php:556
1201
  msgid "Resize images to: "
1202
- msgstr ""
1203
 
1204
  #: admin/views/Galleries.php:559
1205
  msgid "The maximum size of resized image."
1206
- msgstr ""
1207
 
1208
  #: admin/views/Galleries.php:580
1209
  msgid "Alt/Title: "
1210
- msgstr ""
1211
 
1212
  #: admin/views/Galleries.php:587
1213
  msgid "Redirect URL: "
1214
- msgstr ""
1215
 
1216
  #: admin/views/Galleries.php:594
1217
  msgid "Description: "
1218
- msgstr ""
1219
 
1220
  #: admin/views/Galleries.php:613
1221
- #, fuzzy
1222
- #| msgid "You have already rated."
1223
  msgid "You have unsaved changes."
1224
- msgstr "Έχετε ήδη αξιολογήσει. "
1225
 
1226
  #: admin/views/Galleries.php:626 photo-gallery.php:395
1227
- #, fuzzy
1228
- #| msgid "Show comments"
1229
  msgid "Show order column"
1230
- msgstr "Δείτε σχόλια"
1231
 
1232
- #: admin/views/Galleries.php:629 admin/views/Galleries.php:696
1233
- #: admin/views/Shortcode.php:611 framework/WDWLibrary.php:889
1234
  msgid "Filename"
1235
  msgstr "Όνομα αρχείου"
1236
 
1237
- #: admin/views/Galleries.php:633 admin/views/Options.php:1501
1238
- #: admin/views/Options.php:1645 admin/views/Ratings.php:57
1239
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
1240
  #: admin/views/WidgetTags.php:86
1241
  msgid "Image"
1242
- msgstr ""
1243
 
1244
  #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1245
  msgid "Alt/Title"
1246
- msgstr ""
1247
 
1248
  #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1249
  msgid "Redirect URL"
1250
- msgstr ""
1251
 
1252
  #: admin/views/Galleries.php:705
1253
  msgid "Date modified"
1254
- msgstr ""
1255
 
1256
  #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
1257
  msgid "Resolution"
1258
- msgstr ""
1259
 
1260
- #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612
1261
- #: framework/WDWLibrary.php:890
1262
  msgid "Size"
1263
- msgstr "μέγεθος"
1264
 
1265
  #: admin/views/Galleries.php:717
1266
  msgid "Crop"
1267
- msgstr ""
1268
 
1269
  #: admin/views/Galleries.php:772
1270
  msgid "Remove tag"
1271
- msgstr ""
1272
 
1273
  #: admin/views/Options.php:44 admin/views/Themes.php:175
1274
  msgid "Save"
1275
- msgstr ""
1276
 
1277
  #: admin/views/Options.php:50
1278
  msgid "Reset all options"
1279
- msgstr ""
1280
 
1281
  #: admin/views/Options.php:51 admin/views/Themes.php:180
1282
  msgid "Do you want to reset to default?"
1283
- msgstr ""
1284
 
1285
  #: admin/views/Options.php:69
1286
  msgid "General"
1287
- msgstr ""
1288
 
1289
  #: admin/views/Options.php:90
1290
  msgid "Images directory"
1291
- msgstr ""
1292
 
1293
  #: admin/views/Options.php:95
1294
  msgid ""
1295
- "Input an existing directory inside the Wordpress directory to store uploaded "
1296
- "images.<br />Old directory content will be moved to the new one."
1297
  msgstr ""
1298
 
1299
  #: admin/views/Options.php:100 admin/views/Options.php:899
1300
  msgid "Image dimensions"
1301
- msgstr ""
1302
 
1303
  #: admin/views/Options.php:105
1304
  msgid "The maximum size of the uploaded image (0 for original size)."
1305
- msgstr ""
1306
 
1307
  #: admin/views/Options.php:110
1308
  msgid "Generated thumbnail dimensions"
1309
- msgstr ""
1310
 
1311
  #: admin/views/Options.php:114
1312
  msgid "Recreate"
1313
- msgstr ""
1314
 
1315
  #: admin/views/Options.php:116
1316
  msgid ""
1317
- "The maximum size of the generated thumbnail. Its dimensions should be larger "
1318
- "than the ones of the frontend thumbnail."
1319
  msgstr ""
 
 
1320
 
1321
  #: admin/views/Options.php:121
1322
  msgid "Image quality"
1323
- msgstr ""
1324
 
1325
  #: admin/views/Options.php:125
1326
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1327
- msgstr ""
1328
 
1329
  #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1330
  msgid "Show search box"
1331
- msgstr ""
1332
 
1333
  #: admin/views/Options.php:139
1334
  msgid "Add placeholder to search"
1335
- msgstr ""
1336
 
1337
  #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1338
  msgid "Search box width"
1339
- msgstr ""
1340
 
1341
  #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1342
  msgid "Show \"Order by\" dropdown list"
1343
- msgstr ""
1344
 
1345
  #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
1346
- #, fuzzy
1347
- #| msgid "Show rating"
1348
  msgid "Show tag box"
1349
- msgstr "Εμφάνιση αξιολόγησης"
1350
 
1351
  #: admin/views/Options.php:173
1352
  msgid "Preload images"
1353
- msgstr ""
1354
 
1355
  #: admin/views/Options.php:182
1356
  msgid "Count of images"
1357
- msgstr ""
1358
 
1359
  #: admin/views/Options.php:186
1360
  msgid "Count of images to preload (0 for all)."
1361
- msgstr ""
1362
 
1363
  #: admin/views/Options.php:191
1364
  msgid "Show/hide custom post types"
@@ -1374,25 +1273,24 @@ msgstr ""
1374
 
1375
  #: admin/views/Options.php:218
1376
  msgid "Enable bulk download button"
1377
- msgstr ""
1378
 
1379
  #: admin/views/Options.php:223
1380
- msgid ""
1381
- "If enabled,it will be possible to download entire gallery with a single "
1382
- "button."
1383
  msgstr ""
 
1384
 
1385
  #: admin/views/Options.php:231
1386
  msgid "Right click protection"
1387
- msgstr ""
1388
 
1389
  #: admin/views/Options.php:236
1390
  msgid "Disable image right click possibility."
1391
- msgstr ""
1392
 
1393
  #: admin/views/Options.php:241
1394
  msgid "Enable html editor"
1395
- msgstr ""
1396
 
1397
  #: admin/views/Options.php:250
1398
  msgid "Enable href attribute"
@@ -1400,56 +1298,55 @@ msgstr ""
1400
 
1401
  #: admin/views/Options.php:255
1402
  msgid "Disable this option only if it conflicts with your theme."
1403
- msgstr ""
1404
 
1405
  #: admin/views/Options.php:260
1406
  msgid "Meta auto-fill"
1407
- msgstr ""
1408
 
1409
  #: admin/views/Options.php:265
1410
  msgid ""
1411
- "Enabling this option the meta description of the image will be automatically "
1412
- "filled in image description field."
1413
  msgstr ""
 
 
1414
 
1415
  #: admin/views/Options.php:270
1416
  msgid "Roles"
1417
- msgstr ""
1418
 
1419
  #: admin/views/Options.php:282
1420
- msgid ""
1421
- "Choose a user type who can add/edit galleries, images, gallery groups and "
1422
- "tags."
1423
  msgstr ""
 
 
1424
 
1425
  #: admin/views/Options.php:288
1426
- #, fuzzy
1427
- #| msgid "Gallery is empty."
1428
  msgid "Gallery role"
1429
- msgstr "Gallery σας είναι άδειο"
1430
 
1431
  #: admin/views/Options.php:293
1432
  msgid "Only author can change a gallery."
1433
- msgstr ""
1434
 
1435
  #: admin/views/Options.php:299
1436
  msgid "Gallery group role"
1437
- msgstr ""
1438
 
1439
  #: admin/views/Options.php:304
1440
  msgid "Only author can change an gallery group."
1441
- msgstr ""
1442
 
1443
  #: admin/views/Options.php:310
1444
  msgid "Image role"
1445
- msgstr ""
1446
 
1447
  #: admin/views/Options.php:315
1448
  msgid "Only author can change an image."
1449
- msgstr ""
1450
 
1451
- #: admin/views/Options.php:321 admin/views/Options.php:324
1452
- #: photo-gallery.php:283
1453
  msgid "Generate Shortcode"
1454
  msgstr ""
1455
 
@@ -1459,135 +1356,123 @@ msgstr ""
1459
 
1460
  #: admin/views/Options.php:335 photo-gallery.php:282
1461
  msgid "Uninstall"
1462
- msgstr ""
1463
 
1464
  #: admin/views/Options.php:350
1465
  msgid "Open in a new window"
1466
- msgstr ""
1467
 
1468
  #: admin/views/Options.php:359
1469
  msgid "Number of image columns"
1470
- msgstr ""
1471
 
1472
- #: admin/views/Options.php:367 admin/views/Options.php:599
1473
- #: admin/views/Shortcode.php:409 admin/views/Shortcode.php:666
1474
- #: admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
1475
  #: admin/views/Shortcode.php:805
1476
  msgid "Images per page"
1477
- msgstr ""
1478
 
1479
  #: admin/views/Options.php:375
1480
  msgid "Frontend thumbnail dimensions"
1481
- msgstr ""
1482
 
1483
  #: admin/views/Options.php:380
1484
- msgid ""
1485
- "The default size of the thumbnail which will be displayed in the website."
1486
- msgstr ""
1487
 
1488
  #: admin/views/Options.php:387
1489
  msgid "Show image title"
1490
- msgstr ""
1491
 
1492
- #: admin/views/Options.php:389 admin/views/Options.php:402
1493
- #: admin/views/Options.php:1030 admin/views/Shortcode.php:431
1494
- #: admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
1495
  #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
1496
- #, fuzzy
1497
- #| msgid "Show info"
1498
  msgid "Show on hover"
1499
- msgstr "Δείτε πληροφορίες"
1500
 
1501
- #: admin/views/Options.php:390 admin/views/Options.php:403
1502
- #: admin/views/Options.php:1031 admin/views/Shortcode.php:433
1503
- #: admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
1504
  #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1505
  msgid "Always show"
1506
- msgstr ""
1507
 
1508
- #: admin/views/Options.php:391 admin/views/Options.php:404
1509
- #: admin/views/Options.php:1032 admin/views/Shortcode.php:435
1510
- #: admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
1511
  #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1512
  msgid "Don't show"
1513
- msgstr ""
1514
 
1515
  #: admin/views/Options.php:400
1516
- #, fuzzy
1517
- #| msgid "Show comments"
1518
  msgid "Show ecommerce icon"
1519
- msgstr "Δείτε σχόλια"
1520
 
1521
  #: admin/views/Options.php:413
1522
  msgid "Enable image pagination"
1523
- msgstr ""
1524
 
1525
  #: admin/views/Options.php:422
1526
  msgid "Show gallery name"
1527
- msgstr ""
1528
 
1529
  #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1530
  msgid "Show gallery description"
1531
- msgstr ""
1532
 
1533
  #: admin/views/Options.php:440
1534
  msgid "Play icon over the video thumbnail"
1535
- msgstr ""
1536
 
1537
- #: admin/views/Options.php:464 admin/views/Options.php:513
1538
- #: admin/views/Shortcode.php:349 admin/views/Shortcode.php:364
1539
- #: admin/views/Shortcode.php:1024 admin/views/Shortcode.php:1073
1540
  msgid "Vertical"
1541
- msgstr ""
1542
 
1543
- #: admin/views/Options.php:465 admin/views/Options.php:514
1544
- #: admin/views/Shortcode.php:354 admin/views/Shortcode.php:369
1545
- #: admin/views/Shortcode.php:1029 admin/views/Shortcode.php:1078
1546
  msgid "Horizontal"
1547
- msgstr ""
1548
 
1549
  #: admin/views/Options.php:474
1550
  msgid "Show description in Vertical Masonry view"
1551
  msgstr ""
1552
 
1553
- #: admin/views/Options.php:499 admin/views/Shortcode.php:382
1554
- #: admin/views/Shortcode.php:1042 admin/views/Shortcode.php:1091
1555
  msgid "Total width of mosaic"
1556
  msgstr ""
1557
 
1558
- #: admin/views/Options.php:503 admin/views/Options.php:593
1559
- #: admin/views/Options.php:615 admin/views/Options.php:626
1560
  msgid "Width of mosaic as a percentage of container's width."
1561
  msgstr ""
1562
 
1563
- #: admin/views/Options.php:521 admin/views/Shortcode.php:374
1564
- #: admin/views/Shortcode.php:1034 admin/views/Shortcode.php:1083
1565
  msgid "Resizable mosaic"
1566
  msgstr ""
1567
 
1568
- #: admin/views/Options.php:546 admin/views/Options.php:589
1569
- #: admin/views/Shortcode.php:549 admin/views/Shortcode.php:572
1570
  msgid "Image width"
1571
- msgstr ""
1572
 
1573
- #: admin/views/Options.php:556 admin/views/Options.php:610
1574
- #: admin/views/Options.php:757 admin/views/Options.php:920
1575
- #: admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
1576
  msgid "Enable image title"
1577
- msgstr ""
1578
 
1579
- #: admin/views/Options.php:565 admin/views/Options.php:621
1580
- #: admin/views/Options.php:803 admin/views/Shortcode.php:565
1581
- #: admin/views/Shortcode.php:588
1582
  msgid "Enable image description"
1583
- msgstr ""
1584
 
1585
- #: admin/views/Options.php:632 admin/views/Options.php:1005
1586
- #: admin/views/Shortcode.php:418 admin/views/Shortcode.php:675
1587
- #: admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
1588
  #: admin/views/Shortcode.php:814
1589
  msgid "Enable pagination"
1590
- msgstr ""
1591
 
1592
  #: admin/views/Options.php:657
1593
  msgid "Slideshow effect"
@@ -1596,18 +1481,17 @@ msgstr ""
1596
  #: admin/views/Options.php:664 admin/views/Options.php:1108
1597
  #: admin/views/WidgetSlideshow.php:106
1598
  msgid "This effect is disabled in free version."
1599
- msgstr ""
1600
 
1601
- #: admin/views/Options.php:675 admin/views/Options.php:1119
1602
- #: admin/views/Shortcode.php:290 admin/views/Shortcode.php:1171
1603
  msgid "Effect duration"
1604
- msgstr ""
1605
 
1606
- #: admin/views/Options.php:683 admin/views/Options.php:872
1607
- #: admin/views/Options.php:1136 admin/views/Shortcode.php:299
1608
- #: admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
1609
  msgid "Time interval"
1610
- msgstr ""
1611
 
1612
  #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1613
  msgid "Slideshow dimensions"
@@ -1615,20 +1499,20 @@ msgstr ""
1615
 
1616
  #: admin/views/Options.php:700 admin/views/Options.php:930
1617
  msgid "Enable autoplay"
1618
- msgstr ""
1619
 
1620
  #: admin/views/Options.php:709
1621
  msgid "Enable shuffle"
1622
- msgstr ""
1623
 
1624
- #: admin/views/Options.php:718 admin/views/Options.php:1173
1625
- #: admin/views/Shortcode.php:643 admin/views/Shortcode.php:1221
1626
  msgid "Enable control buttons"
1627
- msgstr ""
1628
 
1629
  #: admin/views/Options.php:727 admin/views/Options.php:1247
1630
  msgid "Show Next / Previous buttons"
1631
- msgstr ""
1632
 
1633
  #: admin/views/Options.php:729 admin/views/Options.php:1249
1634
  msgid "On hover"
@@ -1636,7 +1520,7 @@ msgstr ""
1636
 
1637
  #: admin/views/Options.php:730 admin/views/Options.php:1250
1638
  msgid "Always"
1639
- msgstr ""
1640
 
1641
  #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1642
  msgid "Enable slideshow filmstrip"
@@ -1648,7 +1532,7 @@ msgstr ""
1648
 
1649
  #: admin/views/Options.php:766
1650
  msgid "Title position"
1651
- msgstr ""
1652
 
1653
  #: admin/views/Options.php:788
1654
  msgid "Image title position on slideshow"
@@ -1656,7 +1540,7 @@ msgstr ""
1656
 
1657
  #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1658
  msgid "Full width title"
1659
- msgstr ""
1660
 
1661
  #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1662
  msgid "Display image title based on the slideshow dimensions."
@@ -1664,7 +1548,7 @@ msgstr ""
1664
 
1665
  #: admin/views/Options.php:812
1666
  msgid "Description position"
1667
- msgstr ""
1668
 
1669
  #: admin/views/Options.php:834
1670
  msgid "Image description position on slideshow"
@@ -1676,19 +1560,19 @@ msgstr ""
1676
 
1677
  #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1678
  msgid "Music url"
1679
- msgstr ""
1680
 
1681
  #: admin/views/Options.php:852
1682
  msgid "Only"
1683
- msgstr ""
1684
 
1685
  #: admin/views/Options.php:852
1686
  msgid "formats are supported."
1687
- msgstr ""
1688
 
1689
  #: admin/views/Options.php:881
1690
  msgid "Max. number of images"
1691
- msgstr ""
1692
 
1693
  #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1694
  msgid "Carousel image ratio"
@@ -1704,51 +1588,45 @@ msgstr ""
1704
 
1705
  #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1706
  msgid "Next/Previous buttons"
1707
- msgstr ""
1708
 
1709
  #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1710
  msgid "Play/Pause button"
1711
- msgstr ""
1712
 
1713
  #: admin/views/Options.php:980
1714
  msgid "Show gallery group/gallery name"
1715
- msgstr ""
1716
 
1717
  #: admin/views/Options.php:989
1718
  msgid "Number of gallery group columns"
1719
- msgstr ""
1720
 
1721
  #: admin/views/Options.php:997
1722
- #, fuzzy
1723
- #| msgid "Gallery is empty."
1724
  msgid "Gallery groups per page"
1725
- msgstr "Gallery σας είναι άδειο"
1726
 
1727
  #: admin/views/Options.php:1014
1728
- #, fuzzy
1729
- #| msgid "Gallery is empty."
1730
  msgid "Gallery group view type"
1731
- msgstr "Gallery σας είναι άδειο"
1732
 
1733
  #: admin/views/Options.php:1020
1734
  #, fuzzy
1735
  #| msgid "There are no images in this gallery."
1736
  msgid "The gallery images view type in the gallery group."
1737
- msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
1738
 
1739
  #: admin/views/Options.php:1028
1740
- #, fuzzy
1741
- #| msgid "Show rating"
1742
  msgid "Show title"
1743
- msgstr "Εμφάνιση αξιολόγησης"
1744
 
1745
  #: admin/views/Options.php:1038
1746
  msgid "Enable extended gallery group description"
1747
- msgstr ""
1748
 
1749
  #: admin/views/Options.php:1047
1750
  msgid "Gallery group thumbnail dimensions:"
1751
- msgstr ""
1752
 
1753
  #: admin/views/Options.php:1056
1754
  msgid "Extended gallery group height:"
@@ -1764,11 +1642,11 @@ msgstr ""
1764
 
1765
  #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1766
  msgid "Redirect to url"
1767
- msgstr ""
1768
 
1769
  #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1770
  msgid "Do Nothing"
1771
- msgstr ""
1772
 
1773
  #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1774
  msgid "Full width lightbox"
@@ -1800,53 +1678,47 @@ msgstr ""
1800
 
1801
  #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1802
  msgid "Display hit counter"
1803
- msgstr ""
1804
 
1805
  #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
1806
- #, fuzzy
1807
- #| msgid "Exit Fullscreen"
1808
  msgid "Enable fullscreen"
1809
- msgstr "Έξοδος από πλήρη οθόνη"
1810
 
1811
  #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
1812
- #, fuzzy
1813
- #| msgid "Hide info"
1814
  msgid "Enable info"
1815
- msgstr "Απόκρυψη"
1816
 
1817
  #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1818
  msgid "Display info by default"
1819
- msgstr ""
1820
 
1821
  #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1822
  msgid "Full width info"
1823
- msgstr ""
1824
 
1825
  #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1826
  msgid "Display image information based on the lightbox dimensions."
1827
- msgstr ""
1828
 
1829
  #: admin/views/Options.php:1256
1830
  msgid "Enable Email for comments"
1831
- msgstr ""
1832
 
1833
  #: admin/views/Options.php:1266
1834
  msgid "Enable Captcha for comments"
1835
- msgstr ""
1836
 
1837
  #: admin/views/Options.php:1276
1838
  msgid "Enable original image display button"
1839
- msgstr ""
1840
 
1841
  #: admin/views/Options.php:1285
1842
  msgid "Enable download button"
1843
- msgstr ""
1844
 
1845
  #: admin/views/Options.php:1294
1846
- #, fuzzy
1847
- #| msgid "Show comments"
1848
  msgid "Show images count"
1849
- msgstr "Δείτε σχόλια"
1850
 
1851
  #: admin/views/Options.php:1303
1852
  msgid "Enable loop"
@@ -1854,7 +1726,7 @@ msgstr ""
1854
 
1855
  #: admin/views/Options.php:1312
1856
  msgid "Enable"
1857
- msgstr ""
1858
 
1859
  #: admin/views/Options.php:1322
1860
  msgid "profile id"
@@ -1863,53 +1735,47 @@ msgstr ""
1863
  #: admin/views/Options.php:1326
1864
  #, php-format
1865
  msgid "Create an account %s."
1866
- msgstr ""
1867
 
1868
  #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1869
  msgid "here"
1870
- msgstr ""
1871
 
1872
  #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
1873
- #, fuzzy
1874
- #| msgid "Hide rating"
1875
  msgid "Enable rating"
1876
- msgstr "Απόκρυψη βαθμολογία."
1877
 
1878
  #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
1879
- #, fuzzy
1880
- #| msgid "Show comments"
1881
  msgid "Enable comments"
1882
- msgstr "Δείτε σχόλια"
1883
 
1884
  #: admin/views/Options.php:1356
1885
- #, fuzzy
1886
- #| msgid "Your comment is awaiting moderation"
1887
  msgid "Enable comments moderation"
1888
- msgstr "Το σχόλιό σας αναμένει συγκράτηση "
1889
 
1890
  #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1891
  msgid "Enable Facebook button"
1892
- msgstr ""
1893
 
1894
  #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1895
  msgid "Enable Twitter button"
1896
- msgstr ""
1897
 
1898
  #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1899
  msgid "Enable Google+ button"
1900
- msgstr ""
1901
 
1902
  #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1903
  msgid "Enable Pinterest button"
1904
- msgstr ""
1905
 
1906
  #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1907
  msgid "Enable Tumblr button"
1908
- msgstr ""
1909
 
1910
  #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1911
  msgid "Enable Ecommerce button"
1912
- msgstr ""
1913
 
1914
  #: admin/views/Options.php:1438
1915
  #, fuzzy
@@ -1919,257 +1785,238 @@ msgstr "Φωτογραφίες plugin αυτόματο χρονικό διάστ
1919
 
1920
  #: admin/views/Options.php:1441
1921
  msgid "hour"
1922
- msgstr ""
1923
 
1924
  #: admin/views/Options.php:1443
1925
  msgid "min"
1926
- msgstr ""
1927
 
1928
  #: admin/views/Options.php:1445
1929
  msgid "Minimum 1 min."
1930
- msgstr ""
1931
 
1932
  #: admin/views/Options.php:1451
1933
  msgid "Instagram"
1934
- msgstr ""
1935
 
1936
  #: admin/views/Options.php:1459
1937
  msgid "Sign in with Instagram"
1938
- msgstr ""
1939
 
1940
  #: admin/views/Options.php:1464
1941
  msgid ""
1942
- "Are you sure you want to reset access token, after resetting it you will "
1943
- "need to log in with Instagram again for using plugin"
1944
  msgstr ""
1945
 
1946
  #: admin/views/Options.php:1466
1947
  msgid "Sign out with Instagram"
1948
- msgstr ""
1949
 
1950
  #: admin/views/Options.php:1489 photo-gallery.php:1284
1951
  msgid "Watermark"
1952
- msgstr ""
1953
 
1954
  #: admin/views/Options.php:1494
1955
  msgid "Watermark type"
1956
- msgstr ""
1957
 
1958
- #: admin/views/Options.php:1499 admin/views/Options.php:1643
1959
- #: admin/views/Shortcode.php:1388 admin/views/Themes.php:4578
1960
- #: admin/views/WidgetTags.php:85
1961
  msgid "Text"
1962
- msgstr ""
1963
 
1964
  #: admin/views/Options.php:1507
1965
  msgid "Watermark url"
1966
- msgstr ""
1967
 
1968
  #: admin/views/Options.php:1518 admin/views/Options.php:1664
1969
  msgid "Add Image"
1970
- msgstr ""
1971
 
1972
  #: admin/views/Options.php:1521
1973
  msgid "Only .png format is supported."
1974
- msgstr ""
1975
 
1976
  #: admin/views/Options.php:1526
1977
  msgid "Watermark text"
1978
- msgstr ""
1979
 
1980
  #: admin/views/Options.php:1534
1981
  msgid "Watermark size"
1982
- msgstr ""
1983
 
1984
  #: admin/views/Options.php:1538
1985
  msgid "Enter size of watermark in percents according to image."
1986
- msgstr ""
1987
 
1988
  #: admin/views/Options.php:1543
1989
  msgid "Watermark font size"
1990
- msgstr ""
1991
 
1992
  #: admin/views/Options.php:1551
1993
  msgid "Watermark font style"
1994
- msgstr ""
1995
 
1996
  #: admin/views/Options.php:1579
1997
  msgid "Watermark color"
1998
- msgstr ""
1999
 
2000
  #: admin/views/Options.php:1587
2001
  msgid "Watermark opacity"
2002
- msgstr ""
2003
 
2004
  #: admin/views/Options.php:1591
2005
  msgid "Opacity value must be in the range of 0 to 100."
2006
- msgstr ""
2007
 
2008
  #: admin/views/Options.php:1596
2009
  msgid "Watermark position"
2010
- msgstr ""
2011
 
2012
  #: admin/views/Options.php:1619
2013
  msgid "Set Watermark"
2014
- msgstr ""
2015
 
2016
  #: admin/views/Options.php:1620
2017
  msgid "Reset watermark"
2018
- msgstr ""
2019
 
2020
  #: admin/views/Options.php:1622
2021
  msgid "Reset Watermark"
2022
- msgstr ""
2023
 
2024
  #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
2025
  msgid "Advertisement"
2026
- msgstr ""
2027
 
2028
  #: admin/views/Options.php:1638
2029
  msgid "Advertisement type"
2030
- msgstr ""
2031
 
2032
  #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
2033
  msgid "Advertisement url"
2034
- msgstr ""
2035
 
2036
  #: admin/views/Options.php:1667
2037
  msgid ""
2038
- "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
2039
- "png,.gif formats are supported)"
2040
  msgstr ""
2041
 
2042
  #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
2043
  msgid "Advertisement text"
2044
- msgstr ""
2045
 
2046
  #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
2047
  msgid "Advertisement link"
2048
- msgstr ""
2049
 
2050
  #: admin/views/Options.php:1684
2051
  msgid "Enter a URL to open when the advertisement banner is clicked."
2052
- msgstr ""
2053
 
2054
  #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
2055
  msgid "Advertisement dimensions"
2056
- msgstr ""
2057
 
2058
  #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
2059
  msgid "Maximum values for watermark image width and height."
2060
- msgstr ""
2061
 
2062
  #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
2063
  msgid "Advertisement font size"
2064
- msgstr ""
2065
 
2066
  #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
2067
  msgid "Advertisement font style"
2068
- msgstr ""
2069
-
2070
- #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431
2071
- #: admin/views/Themes.php:386 admin/views/Themes.php:449
2072
- #: admin/views/Themes.php:664 admin/views/Themes.php:698
2073
- #: admin/views/Themes.php:911 admin/views/Themes.php:973
2074
- #: admin/views/Themes.php:1357 admin/views/Themes.php:1418
2075
- #: admin/views/Themes.php:1643 admin/views/Themes.php:1731
2076
- #: admin/views/Themes.php:1974 admin/views/Themes.php:2036
2077
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2427
2078
- #: admin/views/Themes.php:2570 admin/views/Themes.php:2651
2079
- #: admin/views/Themes.php:2711 admin/views/Themes.php:2918
2080
- #: admin/views/Themes.php:2973 admin/views/Themes.php:3028
2081
- #: admin/views/Themes.php:3164 admin/views/Themes.php:3333
2082
- #: admin/views/Themes.php:3975 admin/views/Themes.php:4117
2083
- #: admin/views/Themes.php:4166 admin/views/Themes.php:4242
2084
- #: admin/views/Themes.php:4426 admin/views/Themes.php:4811
2085
  msgid "Google fonts"
2086
- msgstr ""
2087
-
2088
- #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433
2089
- #: admin/views/Themes.php:76 admin/views/Themes.php:107
2090
- #: admin/views/Themes.php:388 admin/views/Themes.php:451
2091
- #: admin/views/Themes.php:666 admin/views/Themes.php:700
2092
- #: admin/views/Themes.php:913 admin/views/Themes.php:975
2093
- #: admin/views/Themes.php:1359 admin/views/Themes.php:1420
2094
- #: admin/views/Themes.php:1645 admin/views/Themes.php:1733
2095
- #: admin/views/Themes.php:1976 admin/views/Themes.php:2038
2096
- #: admin/views/Themes.php:2093 admin/views/Themes.php:2429
2097
- #: admin/views/Themes.php:2572 admin/views/Themes.php:2653
2098
- #: admin/views/Themes.php:2713 admin/views/Themes.php:2920
2099
- #: admin/views/Themes.php:2975 admin/views/Themes.php:3030
2100
- #: admin/views/Themes.php:3166 admin/views/Themes.php:3335
2101
- #: admin/views/Themes.php:3977 admin/views/Themes.php:4119
2102
- #: admin/views/Themes.php:4168 admin/views/Themes.php:4244
2103
- #: admin/views/Themes.php:4428 admin/views/Themes.php:4813
2104
- #: framework/WDWLibrary.php:888
2105
  msgid "Default"
2106
- msgstr "αθέτηση"
2107
 
2108
  #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
2109
  msgid "Advertisement color"
2110
- msgstr ""
2111
 
2112
  #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
2113
  msgid "Advertisement opacity"
2114
- msgstr ""
2115
-
2116
- #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468
2117
- #: admin/views/Themes.php:309 admin/views/Themes.php:322
2118
- #: admin/views/Themes.php:565 admin/views/Themes.php:578
2119
- #: admin/views/Themes.php:813 admin/views/Themes.php:826
2120
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1222
2121
- #: admin/views/Themes.php:1312 admin/views/Themes.php:1373
2122
- #: admin/views/Themes.php:1455 admin/views/Themes.php:1572
2123
- #: admin/views/Themes.php:1897 admin/views/Themes.php:1910
2124
- #: admin/views/Themes.php:2232 admin/views/Themes.php:2272
2125
- #: admin/views/Themes.php:2356 admin/views/Themes.php:2850
2126
- #: admin/views/Themes.php:2863 admin/views/Themes.php:3100
2127
- #: admin/views/Themes.php:3287 admin/views/Themes.php:3405
2128
- #: admin/views/Themes.php:3418 admin/views/Themes.php:3465
2129
- #: admin/views/Themes.php:3492 admin/views/Themes.php:3781
2130
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4045
2131
- #: admin/views/Themes.php:4513 admin/views/Themes.php:4608
2132
- #: admin/views/Themes.php:4633 admin/views/Themes.php:4772
2133
  msgid "Value must be between 0 to 100."
2134
- msgstr ""
2135
 
2136
  #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
2137
  msgid "Advertisement position"
2138
- msgstr ""
2139
 
2140
- #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
2141
- #: admin/views/Ratings.php:91
2142
  msgid "IP"
2143
- msgstr ""
2144
 
2145
  #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
2146
  msgid "Rating"
2147
- msgstr ""
2148
 
2149
- #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
2150
- #: admin/views/Shortcode.php:610
2151
  msgid "Date"
2152
- msgstr ""
2153
 
2154
  #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2155
  msgid "View type"
2156
- msgstr ""
2157
 
2158
  #: admin/views/Shortcode.php:183
2159
  msgid "This view is not available in free version."
2160
- msgstr ""
2161
 
2162
  #: admin/views/Shortcode.php:195
2163
  msgid "All Galleries"
2164
- msgstr ""
2165
 
2166
  #: admin/views/Shortcode.php:207
2167
  msgid "Album"
2168
- msgstr ""
2169
 
2170
  #: admin/views/Shortcode.php:210
2171
  msgid "Select Album"
2172
- msgstr ""
2173
 
2174
  #: admin/views/Shortcode.php:219
2175
  msgid "The selected album expanded content will be displayed."
@@ -2177,32 +2024,31 @@ msgstr ""
2177
 
2178
  #: admin/views/Shortcode.php:225
2179
  msgid "Tag"
2180
- msgstr ""
2181
 
2182
  #: admin/views/Shortcode.php:228
2183
  msgid "All Tags"
2184
- msgstr ""
2185
 
2186
  #: admin/views/Shortcode.php:242
2187
  msgid "Theme"
2188
- msgstr ""
2189
 
2190
  #: admin/views/Shortcode.php:259
2191
  msgid "Use default options"
2192
- msgstr ""
2193
 
2194
  #: admin/views/Shortcode.php:260
2195
  #, php-format
2196
  msgid "You can change the default options %s."
2197
- msgstr ""
2198
 
2199
  #: admin/views/Shortcode.php:276
2200
  msgid "Slideshow Effect"
2201
  msgstr ""
2202
 
2203
- #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303
2204
- #: admin/views/Shortcode.php:703 admin/views/Shortcode.php:1175
2205
- #: admin/views/Shortcode.php:1191
2206
  msgid "Interval between two images."
2207
  msgstr ""
2208
 
@@ -2222,22 +2068,20 @@ msgstr ""
2222
  msgid "Maximum values for carousel width and height."
2223
  msgstr ""
2224
 
2225
- #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361
2226
- #: admin/views/Shortcode.php:1021
2227
  msgid "Image thumbnail width:"
2228
  msgstr ""
2229
 
2230
- #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365
2231
- #: admin/views/Shortcode.php:1025
2232
  msgid "Max. number of image columns: "
2233
  msgstr ""
2234
 
2235
  #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2236
  #: admin/views/Shortcode.php:1086
2237
  msgid ""
2238
- "Mosaic thumbnails do not have fixed size, but are proportional to the width "
2239
- "of the parent container. This option keeps thumbs to look nice when viewed "
2240
- "with very large or very small screen. Prevents zooming of thumbs."
2241
  msgstr ""
2242
 
2243
  #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
@@ -2247,120 +2091,112 @@ msgstr ""
2247
 
2248
  #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2249
  msgid "Image Thumbnail dimensions"
2250
- msgstr ""
2251
 
2252
  #: admin/views/Shortcode.php:396
2253
  msgid "Maximum values for thumbnail dimension."
2254
- msgstr ""
2255
 
2256
- #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461
2257
- #: admin/views/Shortcode.php:496 admin/views/Shortcode.php:531
2258
  msgid "Max. number of image columns"
2259
- msgstr ""
2260
 
2261
- #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670
2262
- #: admin/views/Shortcode.php:721 admin/views/Shortcode.php:765
2263
- #: admin/views/Shortcode.php:809
2264
- msgid ""
2265
- "If you want to display all images you should leave it blank or insert 0."
2266
- msgstr ""
2267
 
2268
- #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729
2269
- #: admin/views/Shortcode.php:773 admin/views/Shortcode.php:817
2270
- #, fuzzy
2271
- #| msgid "Load More..."
2272
  msgid "Load More"
2273
- msgstr "Φόρτωσε περισσότερα..."
2274
 
2275
- #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679
2276
- #: admin/views/Shortcode.php:730 admin/views/Shortcode.php:774
2277
- #: admin/views/Shortcode.php:818
2278
  msgid "Scroll Load"
2279
  msgstr ""
2280
 
2281
  #: admin/views/Shortcode.php:430
2282
  msgid "Ecommerce icon"
2283
- msgstr ""
2284
 
2285
  #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2286
  msgid "Max. number of album columns"
2287
- msgstr ""
2288
 
2289
  #: admin/views/Shortcode.php:451
2290
  msgid "Album Thumbnail dimensions"
2291
- msgstr ""
2292
 
2293
  #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2294
  msgid "Maximum values for album thumb width and height."
2295
- msgstr ""
2296
 
2297
  #: admin/views/Shortcode.php:469
2298
  msgid "Image thumbnail dimensions"
2299
- msgstr ""
2300
 
2301
  #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2302
  msgid "Maximum values for thumbnail width and height."
2303
- msgstr ""
2304
 
2305
  #: admin/views/Shortcode.php:487
2306
  msgid "Album Thumbnail width"
2307
- msgstr ""
2308
 
2309
  #: admin/views/Shortcode.php:491
2310
  msgid "Maximum value for album thumbnail width."
2311
- msgstr ""
2312
 
2313
  #: admin/views/Shortcode.php:504
2314
  msgid "Image thumbnail width"
2315
- msgstr ""
2316
 
2317
  #: admin/views/Shortcode.php:508
2318
  msgid "Maximum value for thumbnail width."
2319
- msgstr ""
2320
 
2321
  #: admin/views/Shortcode.php:513
2322
  msgid "Album row height"
2323
- msgstr ""
2324
 
2325
  #: admin/views/Shortcode.php:521
2326
  msgid "Album thumbnail dimensions"
2327
- msgstr ""
2328
 
2329
  #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2330
  msgid "Maximum value for image width."
2331
- msgstr ""
2332
 
2333
  #: admin/views/Shortcode.php:606
2334
  msgid "Sort images by"
2335
- msgstr ""
2336
 
2337
  #: admin/views/Shortcode.php:608
2338
- #, fuzzy
2339
- #| msgid "Order by: "
2340
  msgid "Order"
2341
- msgstr "Ταξινόμηση κατά"
2342
 
2343
  #: admin/views/Shortcode.php:621
2344
  msgid "Order images"
2345
- msgstr ""
2346
 
2347
  #: admin/views/Shortcode.php:622
2348
  msgid "Ascending"
2349
- msgstr ""
2350
 
2351
  #: admin/views/Shortcode.php:623
2352
  msgid "Descending"
2353
- msgstr ""
2354
 
2355
- #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684
2356
- #: admin/views/Shortcode.php:744 admin/views/Shortcode.php:788
2357
- #: admin/views/Shortcode.php:832
2358
  msgid "Images per load"
2359
- msgstr ""
2360
 
2361
  #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2362
  msgid "Enable Autoplay"
2363
- msgstr ""
2364
 
2365
  #: admin/views/Shortcode.php:653
2366
  msgid "Enable slideshow filmstrip view."
@@ -2371,51 +2207,42 @@ msgid "Slideshow Filmstrip size"
2371
  msgstr ""
2372
 
2373
  #: admin/views/Shortcode.php:678
2374
- #, fuzzy
2375
- #| msgid "Load More..."
2376
  msgid "Load more"
2377
- msgstr "Φόρτωσε περισσότερα..."
2378
 
2379
- #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752
2380
- #: admin/views/Shortcode.php:796
2381
- #, fuzzy
2382
- #| msgid "Album is empty."
2383
  msgid "Albums per page"
2384
- msgstr "Album είναι άδειο"
2385
 
2386
- #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739
2387
- #: admin/views/Shortcode.php:756 admin/views/Shortcode.php:783
2388
- #: admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2389
- msgid ""
2390
- "If you want to display all albums you should leave it blank or insert 0."
2391
- msgstr ""
2392
 
2393
- #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779
2394
- #: admin/views/Shortcode.php:823
2395
  msgid "Albums per load"
2396
- msgstr ""
2397
 
2398
  #: admin/views/Shortcode.php:842
2399
  msgid "Show gallery title"
2400
- msgstr ""
2401
 
2402
  #: admin/views/Shortcode.php:849
2403
  msgid "Show album title"
2404
- msgstr ""
2405
 
2406
  #: admin/views/Shortcode.php:856
2407
  msgid "Enable album description"
2408
- msgstr ""
2409
 
2410
  #: admin/views/Shortcode.php:859
2411
- msgid ""
2412
- "If you disable description only the title of the album will be displayed."
2413
- msgstr ""
2414
 
2415
  #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2416
  #: admin/views/Shortcode.php:1100
2417
  msgid "Image title"
2418
- msgstr ""
2419
 
2420
  #: admin/views/Shortcode.php:879
2421
  msgid "Enable Shuffle"
@@ -2423,11 +2250,11 @@ msgstr ""
2423
 
2424
  #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2425
  msgid "Enable Image Title"
2426
- msgstr ""
2427
 
2428
  #: admin/views/Shortcode.php:893
2429
  msgid "Title Position"
2430
- msgstr ""
2431
 
2432
  #: admin/views/Shortcode.php:913
2433
  msgid "Image title position on slideshow."
@@ -2435,11 +2262,11 @@ msgstr ""
2435
 
2436
  #: admin/views/Shortcode.php:926
2437
  msgid "Enable Image Description"
2438
- msgstr ""
2439
 
2440
  #: admin/views/Shortcode.php:933
2441
  msgid "Description Position"
2442
- msgstr ""
2443
 
2444
  #: admin/views/Shortcode.php:952
2445
  msgid "Image description position on slideshow."
@@ -2454,16 +2281,12 @@ msgid "Enter absolute audio file url or add file from Options page."
2454
  msgstr ""
2455
 
2456
  #: admin/views/Shortcode.php:1002
2457
- #, fuzzy
2458
- #| msgid "Album is empty."
2459
  msgid "Album title"
2460
- msgstr "Album είναι άδειο"
2461
 
2462
  #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
2463
- #, fuzzy
2464
- #| msgid "Album is empty."
2465
  msgid "Album view type"
2466
- msgstr "Album είναι άδειο"
2467
 
2468
  #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2469
  msgid "The gallery images view type in the album."
@@ -2471,19 +2294,19 @@ msgstr ""
2471
 
2472
  #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2473
  msgid "Image thumbnail width: "
2474
- msgstr ""
2475
 
2476
  #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2477
  msgid "Max. number of image columns:"
2478
- msgstr ""
2479
 
2480
  #: admin/views/Shortcode.php:1128
2481
  msgid "Open in new window"
2482
- msgstr ""
2483
 
2484
  #: admin/views/Shortcode.php:1131
2485
  msgid "Open new window when redirecting."
2486
- msgstr ""
2487
 
2488
  #: admin/views/Shortcode.php:1151
2489
  msgid "Maximum values for lightbox width and height."
@@ -2507,43 +2330,43 @@ msgstr ""
2507
 
2508
  #: admin/views/Shortcode.php:1233
2509
  msgid "Enable fullscreen view for images."
2510
- msgstr ""
2511
 
2512
  #: admin/views/Shortcode.php:1241
2513
  msgid "Enable title, description for images."
2514
- msgstr ""
2515
 
2516
  #: admin/views/Shortcode.php:1264
2517
  msgid "Enable rating for images."
2518
- msgstr ""
2519
 
2520
  #: admin/views/Shortcode.php:1272
2521
  msgid "Enable comments for images."
2522
- msgstr ""
2523
 
2524
  #: admin/views/Shortcode.php:1284
2525
  msgid "Enable Facebook share button for images."
2526
- msgstr ""
2527
 
2528
  #: admin/views/Shortcode.php:1292
2529
  msgid "Enable Twitter share button for images."
2530
- msgstr ""
2531
 
2532
  #: admin/views/Shortcode.php:1300
2533
  msgid "Enable Google+ share button for images."
2534
- msgstr ""
2535
 
2536
  #: admin/views/Shortcode.php:1308
2537
  msgid "Enable Pinterest share button for images."
2538
- msgstr ""
2539
 
2540
  #: admin/views/Shortcode.php:1316
2541
  msgid "Enable Tumblr share button for images."
2542
- msgstr ""
2543
 
2544
  #: admin/views/Shortcode.php:1327
2545
  msgid "Enable Ecommerce for images."
2546
- msgstr ""
2547
 
2548
  #: admin/views/Shortcode.php:1340
2549
  msgid "Toggle panel"
@@ -2551,7 +2374,7 @@ msgstr ""
2551
 
2552
  #: admin/views/Shortcode.php:1386
2553
  msgid "Advertisement type:"
2554
- msgstr ""
2555
 
2556
  #: admin/views/Shortcode.php:1397
2557
  msgid "Enter absolute url."
@@ -2563,7 +2386,7 @@ msgstr ""
2563
 
2564
  #: admin/views/Shortcode.php:1507
2565
  msgid "Insert into post"
2566
- msgstr ""
2567
 
2568
  #: admin/views/Shortcode.php:1532
2569
  msgid "New shortcode"
@@ -2587,117 +2410,93 @@ msgstr ""
2587
 
2588
  #: admin/views/Shortcode.php:2909
2589
  msgid "Image thumbnail dimensions:"
2590
- msgstr ""
2591
 
2592
  #: admin/views/Shortcode.php:2912
2593
  msgid "Image thumbnail height:"
2594
- msgstr ""
2595
 
2596
  #: admin/views/Shortcode.php:2913
2597
  msgid "Number of image rows:"
2598
- msgstr ""
2599
 
2600
  #: admin/views/Themes.php:18
2601
  msgid "You can't change theme parameters in free version."
2602
- msgstr ""
2603
 
2604
  #: admin/views/Themes.php:170
2605
  msgid "Theme Name"
2606
- msgstr ""
2607
 
2608
  #: admin/views/Themes.php:178
2609
  msgid "Reset to default theme"
2610
- msgstr ""
2611
 
2612
- #: admin/views/Themes.php:206 admin/views/Themes.php:1516
2613
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2334
2614
- #: admin/views/Themes.php:3118 admin/views/Themes.php:4490
2615
  msgid "Margin:"
2616
  msgstr ""
2617
 
2618
- #: admin/views/Themes.php:212 admin/views/Themes.php:512
2619
- #: admin/views/Themes.php:761 admin/views/Themes.php:1523
2620
- #: admin/views/Themes.php:1794 admin/views/Themes.php:2341
2621
  #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2622
  msgid "Padding:"
2623
  msgstr ""
2624
 
2625
- #: admin/views/Themes.php:218 admin/views/Themes.php:518
2626
- #: admin/views/Themes.php:767 admin/views/Themes.php:1530
2627
- #: admin/views/Themes.php:1808 admin/views/Themes.php:2774
2628
  #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2629
  msgid "Border width:"
2630
  msgstr ""
2631
 
2632
- #: admin/views/Themes.php:224 admin/views/Themes.php:524
2633
- #: admin/views/Themes.php:773 admin/views/Themes.php:1536
2634
- #: admin/views/Themes.php:1814 admin/views/Themes.php:2780
2635
  #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
2636
- #, fuzzy
2637
- #| msgid "Order by: "
2638
  msgid "Border style:"
2639
- msgstr "Ταξινόμηση κατά"
2640
 
2641
- #: admin/views/Themes.php:238 admin/views/Themes.php:538
2642
- #: admin/views/Themes.php:787 admin/views/Themes.php:1550
2643
- #: admin/views/Themes.php:1828 admin/views/Themes.php:2794
2644
  #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2645
  msgid "Border color:"
2646
  msgstr ""
2647
 
2648
- #: admin/views/Themes.php:244 admin/views/Themes.php:544
2649
- #: admin/views/Themes.php:793 admin/views/Themes.php:1556
2650
- #: admin/views/Themes.php:1834 admin/views/Themes.php:2360
2651
- #: admin/views/Themes.php:2800 admin/views/Themes.php:3209
2652
- #: admin/views/Themes.php:4473
2653
  msgid "Border radius:"
2654
  msgstr ""
2655
 
2656
- #: admin/views/Themes.php:247 admin/views/Themes.php:254
2657
- #: admin/views/Themes.php:410 admin/views/Themes.php:417
2658
- #: admin/views/Themes.php:473 admin/views/Themes.php:480
2659
- #: admin/views/Themes.php:547 admin/views/Themes.php:722
2660
- #: admin/views/Themes.php:729 admin/views/Themes.php:796
2661
- #: admin/views/Themes.php:935 admin/views/Themes.php:942
2662
- #: admin/views/Themes.php:997 admin/views/Themes.php:1004
2663
- #: admin/views/Themes.php:1120 admin/views/Themes.php:1141
2664
- #: admin/views/Themes.php:1169 admin/views/Themes.php:1203
2665
- #: admin/views/Themes.php:1259 admin/views/Themes.php:1319
2666
- #: admin/views/Themes.php:1326 admin/views/Themes.php:1380
2667
- #: admin/views/Themes.php:1387 admin/views/Themes.php:1442
2668
- #: admin/views/Themes.php:1462 admin/views/Themes.php:1519
2669
- #: admin/views/Themes.php:1526 admin/views/Themes.php:1559
2670
- #: admin/views/Themes.php:1579 admin/views/Themes.php:1653
2671
- #: admin/views/Themes.php:1660 admin/views/Themes.php:1693
2672
- #: admin/views/Themes.php:1755 admin/views/Themes.php:1762
2673
- #: admin/views/Themes.php:1797 admin/views/Themes.php:1804
2674
- #: admin/views/Themes.php:1837 admin/views/Themes.php:1844
2675
- #: admin/views/Themes.php:1998 admin/views/Themes.php:2005
2676
- #: admin/views/Themes.php:2060 admin/views/Themes.php:2115
2677
- #: admin/views/Themes.php:2122 admin/views/Themes.php:2195
2678
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2290
2679
- #: admin/views/Themes.php:2330 admin/views/Themes.php:2337
2680
- #: admin/views/Themes.php:2363 admin/views/Themes.php:2396
2681
- #: admin/views/Themes.php:2461 admin/views/Themes.php:2494
2682
- #: admin/views/Themes.php:2513 admin/views/Themes.php:2594
2683
- #: admin/views/Themes.php:2735 admin/views/Themes.php:2742
2684
- #: admin/views/Themes.php:2803 admin/views/Themes.php:2942
2685
- #: admin/views/Themes.php:2997 admin/views/Themes.php:3052
2686
- #: admin/views/Themes.php:3059 admin/views/Themes.php:3121
2687
- #: admin/views/Themes.php:3128 admin/views/Themes.php:3135
2688
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3229
2689
- #: admin/views/Themes.php:3274 admin/views/Themes.php:3357
2690
- #: admin/views/Themes.php:3364 admin/views/Themes.php:3458
2691
- #: admin/views/Themes.php:3512 admin/views/Themes.php:3545
2692
- #: admin/views/Themes.php:3648 admin/views/Themes.php:3685
2693
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3762
2694
- #: admin/views/Themes.php:3867 admin/views/Themes.php:3936
2695
- #: admin/views/Themes.php:3943 admin/views/Themes.php:3950
2696
- #: admin/views/Themes.php:4078 admin/views/Themes.php:4085
2697
- #: admin/views/Themes.php:4092 admin/views/Themes.php:4303
2698
- #: admin/views/Themes.php:4322 admin/views/Themes.php:4355
2699
- #: admin/views/Themes.php:4476 admin/views/Themes.php:4493
2700
- #: admin/views/Themes.php:4500 admin/views/Themes.php:4529
2701
  #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2702
  msgid "Use CSS type values."
2703
  msgstr ""
@@ -2706,255 +2505,221 @@ msgstr ""
2706
  msgid "Shadow:"
2707
  msgstr ""
2708
 
2709
- #: admin/views/Themes.php:258 admin/views/Themes.php:607
2710
- #: admin/views/Themes.php:854 admin/views/Themes.php:1848
2711
- #: admin/views/Themes.php:2807
2712
  msgid "Hover effect:"
2713
  msgstr ""
2714
 
2715
- #: admin/views/Themes.php:272 admin/views/Themes.php:621
2716
- #: admin/views/Themes.php:868 admin/views/Themes.php:1862
2717
- #: admin/views/Themes.php:2250 admin/views/Themes.php:2821
2718
  msgid "Hover effect value:"
2719
  msgstr ""
2720
 
2721
- #: admin/views/Themes.php:275 admin/views/Themes.php:624
2722
- #: admin/views/Themes.php:871 admin/views/Themes.php:1865
2723
- #: admin/views/Themes.php:2253 admin/views/Themes.php:2824
2724
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2725
  msgstr ""
2726
 
2727
- #: admin/views/Themes.php:279 admin/views/Themes.php:628
2728
- #: admin/views/Themes.php:875
2729
  msgid "Transition:"
2730
  msgstr ""
2731
 
2732
- #: admin/views/Themes.php:299 admin/views/Themes.php:1888
2733
- #: admin/views/Themes.php:2257
2734
  msgid "Thumbnail background color:"
2735
- msgstr ""
2736
 
2737
- #: admin/views/Themes.php:306 admin/views/Themes.php:1894
2738
- #: admin/views/Themes.php:2229 admin/views/Themes.php:2847
2739
  msgid "Thumbnail transparency:"
2740
- msgstr ""
2741
 
2742
- #: admin/views/Themes.php:313 admin/views/Themes.php:1446
2743
- #: admin/views/Themes.php:1901 admin/views/Themes.php:2854
2744
  msgid "Full background color:"
2745
  msgstr ""
2746
 
2747
- #: admin/views/Themes.php:319 admin/views/Themes.php:1452
2748
- #: admin/views/Themes.php:1907 admin/views/Themes.php:2860
2749
  msgid "Full background transparency:"
2750
  msgstr ""
2751
 
2752
- #: admin/views/Themes.php:326 admin/views/Themes.php:582
2753
- #: admin/views/Themes.php:830 admin/views/Themes.php:1502
2754
- #: admin/views/Themes.php:1914 admin/views/Themes.php:2867
2755
  #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2756
  msgid "Alignment:"
2757
  msgstr ""
2758
 
2759
- #: admin/views/Themes.php:350 admin/views/Themes.php:1593
2760
- #: admin/views/Themes.php:1938
2761
  msgid "Title position:"
2762
- msgstr ""
2763
 
2764
- #: admin/views/Themes.php:353 admin/views/Themes.php:1158
2765
- #: admin/views/Themes.php:1596 admin/views/Themes.php:1941
2766
- #: admin/views/Themes.php:3443 admin/views/Themes.php:3718
2767
- #: admin/views/Themes.php:3806 admin/views/Themes.php:3874
2768
- #: admin/views/Themes.php:4016 admin/views/Themes.php:4546
2769
  msgid "Top"
2770
- msgstr ""
2771
 
2772
- #: admin/views/Themes.php:355 admin/views/Themes.php:1160
2773
- #: admin/views/Themes.php:1598 admin/views/Themes.php:1943
2774
- #: admin/views/Themes.php:3445 admin/views/Themes.php:3720
2775
- #: admin/views/Themes.php:3808 admin/views/Themes.php:3876
2776
- #: admin/views/Themes.php:4018 admin/views/Themes.php:4548
2777
  msgid "Bottom"
2778
- msgstr ""
2779
 
2780
- #: admin/views/Themes.php:359 admin/views/Themes.php:884
2781
- #: admin/views/Themes.php:1947 admin/views/Themes.php:2543
2782
- #: admin/views/Themes.php:2891 admin/views/Themes.php:4138
2783
  #: admin/views/Themes.php:4817
2784
  msgid "Title font size:"
2785
- msgstr ""
2786
 
2787
- #: admin/views/Themes.php:365 admin/views/Themes.php:890
2788
- #: admin/views/Themes.php:1953 admin/views/Themes.php:2549
2789
- #: admin/views/Themes.php:2897 admin/views/Themes.php:4096
2790
  msgid "Title font color:"
2791
- msgstr ""
2792
 
2793
- #: admin/views/Themes.php:371 admin/views/Themes.php:896
2794
- #: admin/views/Themes.php:1342 admin/views/Themes.php:1959
2795
- #: admin/views/Themes.php:2555 admin/views/Themes.php:2903
2796
  #: admin/views/Themes.php:4102
2797
  msgid "Title font family:"
2798
- msgstr ""
2799
 
2800
- #: admin/views/Themes.php:393 admin/views/Themes.php:918
2801
- #: admin/views/Themes.php:1981 admin/views/Themes.php:2577
2802
- #: admin/views/Themes.php:2925 admin/views/Themes.php:4124
2803
  #: admin/views/Themes.php:4829
2804
  msgid "Title font weight:"
2805
- msgstr ""
2806
 
2807
- #: admin/views/Themes.php:407 admin/views/Themes.php:932
2808
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2939
2809
  msgid "Title box shadow:"
2810
- msgstr ""
2811
 
2812
- #: admin/views/Themes.php:414 admin/views/Themes.php:939
2813
- #: admin/views/Themes.php:2002 admin/views/Themes.php:2504
2814
- #: admin/views/Themes.php:4783
2815
  msgid "Title margin:"
2816
  msgstr ""
2817
 
2818
- #: admin/views/Themes.php:421 admin/views/Themes.php:671
2819
- #: admin/views/Themes.php:946 admin/views/Themes.php:1703
2820
- #: admin/views/Themes.php:2064 admin/views/Themes.php:2684
2821
  #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2822
  msgid "Gallery title/description font size:"
2823
  msgstr ""
2824
 
2825
- #: admin/views/Themes.php:428 admin/views/Themes.php:677
2826
- #: admin/views/Themes.php:952 admin/views/Themes.php:1710
2827
- #: admin/views/Themes.php:2070 admin/views/Themes.php:2690
2828
  #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2829
  msgid "Gallery title/description font color:"
2830
  msgstr ""
2831
 
2832
- #: admin/views/Themes.php:434 admin/views/Themes.php:683
2833
- #: admin/views/Themes.php:958 admin/views/Themes.php:1716
2834
- #: admin/views/Themes.php:2076 admin/views/Themes.php:2696
2835
  #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2836
  msgid "Gallery title/description font family:"
2837
  msgstr ""
2838
 
2839
- #: admin/views/Themes.php:456 admin/views/Themes.php:705
2840
- #: admin/views/Themes.php:980 admin/views/Themes.php:1738
2841
- #: admin/views/Themes.php:2098 admin/views/Themes.php:2718
2842
  #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2843
  msgid "Gallery title/description font weight:"
2844
  msgstr ""
2845
 
2846
- #: admin/views/Themes.php:470 admin/views/Themes.php:719
2847
- #: admin/views/Themes.php:994 admin/views/Themes.php:1752
2848
- #: admin/views/Themes.php:2112 admin/views/Themes.php:2732
2849
  #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2850
  msgid "Gallery title/description box shadow:"
2851
  msgstr ""
2852
 
2853
- #: admin/views/Themes.php:477 admin/views/Themes.php:726
2854
- #: admin/views/Themes.php:1001 admin/views/Themes.php:1759
2855
- #: admin/views/Themes.php:2119 admin/views/Themes.php:2739
2856
  #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2857
  msgid "Gallery title/description margin:"
2858
  msgstr ""
2859
 
2860
- #: admin/views/Themes.php:484 admin/views/Themes.php:733
2861
- #: admin/views/Themes.php:1008 admin/views/Themes.php:1766
2862
- #: admin/views/Themes.php:2126 admin/views/Themes.php:2746
2863
  #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2864
  msgid "Gallery title/description alignment:"
2865
  msgstr ""
2866
 
2867
  #: admin/views/Themes.php:562 admin/views/Themes.php:810
2868
  msgid "Transparency:"
2869
- msgstr ""
2870
 
2871
- #: admin/views/Themes.php:569 admin/views/Themes.php:817
2872
- #: admin/views/Themes.php:1036 admin/views/Themes.php:1563
2873
- #: admin/views/Themes.php:2347 admin/views/Themes.php:3091
2874
  #: admin/views/Themes.php:4599
2875
  msgid "Background color:"
2876
- msgstr ""
2877
 
2878
- #: admin/views/Themes.php:575 admin/views/Themes.php:823
2879
- #: admin/views/Themes.php:1569 admin/views/Themes.php:2353
2880
- #: admin/views/Themes.php:3097
2881
  msgid "Background transparency:"
2882
- msgstr ""
2883
 
2884
- #: admin/views/Themes.php:637 admin/views/Themes.php:1391
2885
- #: admin/views/Themes.php:2624 admin/views/Themes.php:4187
2886
  msgid "Description font size:"
2887
- msgstr ""
2888
 
2889
- #: admin/views/Themes.php:643 admin/views/Themes.php:2630
2890
- #: admin/views/Themes.php:4145
2891
  msgid "Description font color:"
2892
- msgstr ""
2893
 
2894
- #: admin/views/Themes.php:649 admin/views/Themes.php:1403
2895
- #: admin/views/Themes.php:2636 admin/views/Themes.php:4151
2896
  msgid "Description font family:"
2897
- msgstr ""
2898
 
2899
- #: admin/views/Themes.php:1042 admin/views/Themes.php:3664
2900
- #: admin/views/Themes.php:4612
2901
  msgid "Right, left buttons size:"
2902
- msgstr ""
2903
 
2904
  #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2905
  msgid "Play, pause buttons size:"
2906
- msgstr ""
2907
 
2908
- #: admin/views/Themes.php:1054 admin/views/Themes.php:3239
2909
- #: admin/views/Themes.php:4624
2910
  msgid "Buttons color:"
2911
- msgstr ""
2912
 
2913
  #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2914
  msgid "Buttons transparency:"
2915
- msgstr ""
2916
 
2917
  #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2918
  msgid "Buttons hover color:"
2919
  msgstr ""
2920
 
2921
- #: admin/views/Themes.php:1073 admin/views/Themes.php:3658
2922
- #: admin/views/Themes.php:4643
2923
  msgid "Right, left buttons width:"
2924
  msgstr ""
2925
 
2926
- #: admin/views/Themes.php:1079 admin/views/Themes.php:3652
2927
- #: admin/views/Themes.php:4649
2928
  msgid "Right, left buttons height:"
2929
  msgstr ""
2930
 
2931
- #: admin/views/Themes.php:1085 admin/views/Themes.php:3633
2932
- #: admin/views/Themes.php:4655
2933
  msgid "Right, left buttons background color:"
2934
  msgstr ""
2935
 
2936
- #: admin/views/Themes.php:1091 admin/views/Themes.php:3689
2937
- #: admin/views/Themes.php:4661
2938
  msgid "Right, left buttons border width:"
2939
  msgstr ""
2940
 
2941
- #: admin/views/Themes.php:1097 admin/views/Themes.php:3695
2942
- #: admin/views/Themes.php:4667
2943
  msgid "Right, left buttons border style:"
2944
  msgstr ""
2945
 
2946
- #: admin/views/Themes.php:1111 admin/views/Themes.php:3709
2947
- #: admin/views/Themes.php:4681
2948
  msgid "Right, left buttons border color:"
2949
  msgstr ""
2950
 
2951
- #: admin/views/Themes.php:1117 admin/views/Themes.php:3682
2952
- #: admin/views/Themes.php:4687
2953
  msgid "Right, left buttons border radius:"
2954
  msgstr ""
2955
 
2956
- #: admin/views/Themes.php:1124 admin/views/Themes.php:3619
2957
- #: admin/views/Themes.php:4694
2958
  msgid "Right, left buttons style:"
2959
  msgstr ""
2960
 
@@ -3044,11 +2809,11 @@ msgstr ""
3044
 
3045
  #: admin/views/Themes.php:1303
3046
  msgid "Title background color: "
3047
- msgstr ""
3048
 
3049
  #: admin/views/Themes.php:1309
3050
  msgid "Title transparency: "
3051
- msgstr ""
3052
 
3053
  #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
3054
  msgid "Title border radius:"
@@ -3060,11 +2825,11 @@ msgstr ""
3060
 
3061
  #: admin/views/Themes.php:1330
3062
  msgid "Title font size: "
3063
- msgstr ""
3064
 
3065
  #: admin/views/Themes.php:1336
3066
  msgid "Title color: "
3067
- msgstr ""
3068
 
3069
  #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
3070
  msgid "Description background color:"
@@ -3072,20 +2837,19 @@ msgstr ""
3072
 
3073
  #: admin/views/Themes.php:1370
3074
  msgid "Description transparency:"
3075
- msgstr ""
3076
 
3077
  #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
3078
  msgid "Description border radius:"
3079
  msgstr ""
3080
 
3081
- #: admin/views/Themes.php:1384 admin/views/Themes.php:1657
3082
- #: admin/views/Themes.php:2591
3083
  msgid "Description padding:"
3084
  msgstr ""
3085
 
3086
  #: admin/views/Themes.php:1397
3087
  msgid "Description color:"
3088
- msgstr ""
3089
 
3090
  #: admin/views/Themes.php:1439
3091
  msgid "Full padding:"
@@ -3107,32 +2871,28 @@ msgstr ""
3107
  msgid "Full border color:"
3108
  msgstr ""
3109
 
3110
- #: admin/views/Themes.php:1576 admin/views/Themes.php:3132
3111
- #: admin/views/Themes.php:4526
3112
  msgid "Box shadow:"
3113
  msgstr ""
3114
 
3115
  #: admin/views/Themes.php:1602
3116
  msgid "Title alignment:"
3117
- msgstr ""
3118
 
3119
- #: admin/views/Themes.php:1616 admin/views/Themes.php:2009
3120
- #: admin/views/Themes.php:2946 admin/views/Themes.php:3171
3121
- #: admin/views/Themes.php:4399
3122
  msgid "Font size:"
3123
- msgstr ""
3124
 
3125
- #: admin/views/Themes.php:1622 admin/views/Themes.php:2015
3126
- #: admin/views/Themes.php:2952 admin/views/Themes.php:3177
3127
- #: admin/views/Themes.php:4405
3128
  msgid "Font color:"
3129
- msgstr ""
3130
 
3131
- #: admin/views/Themes.php:1628 admin/views/Themes.php:2021
3132
- #: admin/views/Themes.php:2958 admin/views/Themes.php:3149
3133
- #: admin/views/Themes.php:4411
3134
  msgid "Font family:"
3135
- msgstr ""
3136
 
3137
  #: admin/views/Themes.php:1650
3138
  msgid "Description margin:"
@@ -3150,18 +2910,15 @@ msgstr ""
3150
  msgid "Description border color:"
3151
  msgstr ""
3152
 
3153
- #: admin/views/Themes.php:1869 admin/views/Themes.php:2206
3154
- #: admin/views/Themes.php:2828
3155
  msgid "Thumbnail transition:"
3156
  msgstr ""
3157
 
3158
- #: admin/views/Themes.php:2043 admin/views/Themes.php:2980
3159
- #: admin/views/Themes.php:4433
3160
  msgid "Font weight:"
3161
  msgstr ""
3162
 
3163
- #: admin/views/Themes.php:2057 admin/views/Themes.php:2393
3164
- #: admin/views/Themes.php:2994
3165
  msgid "Back padding:"
3166
  msgstr ""
3167
 
@@ -3195,7 +2952,7 @@ msgstr ""
3195
 
3196
  #: admin/views/Themes.php:2215
3197
  msgid "Thumbnail alignment:"
3198
- msgstr ""
3199
 
3200
  #: admin/views/Themes.php:2236
3201
  msgid "Thumbnail hover effect:"
@@ -3203,11 +2960,11 @@ msgstr ""
3203
 
3204
  #: admin/views/Themes.php:2263
3205
  msgid "Thumbnails background color:"
3206
- msgstr ""
3207
 
3208
  #: admin/views/Themes.php:2269
3209
  msgid "Thumbnail background transparency:"
3210
- msgstr ""
3211
 
3212
  #: admin/views/Themes.php:2287
3213
  msgid "Thumbnail div padding:"
@@ -3319,7 +3076,7 @@ msgstr ""
3319
 
3320
  #: admin/views/Themes.php:3233
3321
  msgid "Buttons size:"
3322
- msgstr ""
3323
 
3324
  #: admin/views/Themes.php:3245
3325
  msgid "Buttons and title border width:"
@@ -3470,10 +3227,8 @@ msgid "Fullscreen close button color:"
3470
  msgstr ""
3471
 
3472
  #: admin/views/Themes.php:3603
3473
- #, fuzzy
3474
- #| msgid "Share on Facebook"
3475
  msgid "Share buttons color:"
3476
- msgstr "Μοιραστείτε στο Facebook"
3477
 
3478
  #: admin/views/Themes.php:3639
3479
  msgid "Right, left buttons transparency:"
@@ -3529,19 +3284,19 @@ msgstr ""
3529
 
3530
  #: admin/views/Themes.php:3803
3531
  msgid "Rating position:"
3532
- msgstr ""
3533
 
3534
  #: admin/views/Themes.php:3812
3535
  msgid "Rating alignment:"
3536
- msgstr ""
3537
 
3538
  #: admin/views/Themes.php:3826
3539
  msgid "Rating icon:"
3540
- msgstr ""
3541
 
3542
  #: admin/views/Themes.php:3840
3543
  msgid "Rating color:"
3544
- msgstr ""
3545
 
3546
  #: admin/views/Themes.php:3846
3547
  msgid "Rating hover color:"
@@ -3549,7 +3304,7 @@ msgstr ""
3549
 
3550
  #: admin/views/Themes.php:3852
3551
  msgid "Rating size:"
3552
- msgstr ""
3553
 
3554
  #: admin/views/Themes.php:3858
3555
  msgid "Rating icon count:"
@@ -3656,26 +3411,24 @@ msgid "Info margin:"
3656
  msgstr ""
3657
 
3658
  #: admin/views/Themes.php:4194
3659
- #, fuzzy
3660
- #| msgid "Comment"
3661
  msgid "Comments Width:"
3662
- msgstr "Σχόλιο"
3663
 
3664
  #: admin/views/Themes.php:4200
3665
  msgid "Comments position:"
3666
- msgstr ""
3667
 
3668
  #: admin/views/Themes.php:4209
3669
  msgid "Comments background color:"
3670
- msgstr ""
3671
 
3672
  #: admin/views/Themes.php:4215
3673
  msgid "Comments font size:"
3674
- msgstr ""
3675
 
3676
  #: admin/views/Themes.php:4221
3677
  msgid "Comments font color:"
3678
- msgstr ""
3679
 
3680
  #: admin/views/Themes.php:4227
3681
  msgid "Comments font family:"
@@ -3767,23 +3520,23 @@ msgstr ""
3767
 
3768
  #: admin/views/Themes.php:4543
3769
  msgid "Position:"
3770
- msgstr ""
3771
 
3772
  #: admin/views/Themes.php:4566
3773
  msgid "Numbering:"
3774
- msgstr ""
3775
 
3776
  #: admin/views/Themes.php:4575
3777
  msgid "Button text:"
3778
- msgstr ""
3779
 
3780
  #: admin/views/Themes.php:4580
3781
  msgid "Arrow"
3782
- msgstr ""
3783
 
3784
  #: admin/views/Themes.php:4581
3785
  msgid "Next, previous buttons values."
3786
- msgstr ""
3787
 
3788
  #: admin/views/Themes.php:4605
3789
  msgid "Container opacity:"
@@ -3807,140 +3560,136 @@ msgstr ""
3807
 
3808
  #: admin/views/Themes.php:4762
3809
  msgid "Title background color:"
3810
- msgstr ""
3811
 
3812
  #: admin/views/Themes.php:4769
3813
  msgid "Title opacity:"
3814
- msgstr ""
3815
 
3816
  #: admin/views/Themes.php:4796
3817
  msgid "Title Font family:"
3818
- msgstr ""
3819
 
3820
  #: admin/views/Themes.php:4823
3821
  msgid "Title color:"
3822
- msgstr ""
3823
 
3824
  #: admin/views/Uninstall.php:41
3825
  #, php-format
3826
- msgid ""
3827
- "%s to Finish the Uninstallation and %s will be Deactivated Automatically."
3828
  msgstr ""
3829
 
3830
  #: admin/views/Uninstall.php:41
3831
  msgid "Click Here"
3832
- msgstr ""
3833
 
3834
  #: admin/views/Uninstall.php:50
3835
  msgid "support team"
3836
- msgstr ""
3837
 
3838
  #: admin/views/Uninstall.php:51 wd/templates/display_overview_support.php:41
3839
  msgid "Contact us"
3840
- msgstr ""
3841
 
3842
  #: admin/views/Uninstall.php:52
3843
  #, php-format
3844
  msgid ""
3845
- "Before uninstalling the plugin, please Contact our %s. We'll do our best to "
3846
- "help you out with your issue. We value each and every user and value what's "
3847
- "right for our users in everything we do.<br />\n"
3848
- " However, if anyway you have made a decision to uninstall the plugin, "
3849
- "please take a minute to %s and tell what you didn't like for our plugins "
3850
- "further improvement and development. Thank you !!!"
3851
  msgstr ""
3852
 
3853
  #: admin/views/Uninstall.php:56
3854
  #, php-format
3855
  msgid ""
3856
- "Deactivating %s plugin does not remove any data that may have been created. "
3857
- "To completely remove this plugin, you can uninstall it here."
3858
  msgstr ""
3859
 
3860
  #: admin/views/Uninstall.php:59
3861
  msgid "WARNING:"
3862
- msgstr ""
3863
 
3864
  #: admin/views/Uninstall.php:60
3865
  msgid ""
3866
- "Once uninstalled, this can't be undone. You should use a Database Backup "
3867
- "plugin of WordPress to back up all the data first."
3868
  msgstr ""
3869
 
3870
  #: admin/views/Uninstall.php:63
3871
  msgid "The following Database Tables will be deleted:"
3872
- msgstr ""
3873
 
3874
  #: admin/views/Uninstall.php:68
3875
  msgid "Database Tables"
3876
- msgstr ""
3877
 
3878
  #: admin/views/Uninstall.php:86
3879
  msgid "Delete the folder containing uploaded images."
3880
- msgstr ""
3881
 
3882
  #: admin/views/Uninstall.php:92
3883
  #, php-format
3884
  msgid "Do you really want to uninstall %s?"
3885
- msgstr ""
3886
 
3887
  #: admin/views/Uninstall.php:102
3888
  msgid "UNINSTALL"
3889
- msgstr ""
3890
 
3891
  #: admin/views/Uninstall.php:104
3892
  #, php-format
3893
- msgid ""
3894
- "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
3895
  msgstr ""
 
3896
 
3897
  #: admin/views/Widget.php:98 photo-gallery.php:88
3898
  msgid "Photo Gallery"
3899
- msgstr ""
3900
 
3901
  #: admin/views/Widget.php:112 admin/views/WidgetSlideshow.php:83
3902
  #: admin/views/WidgetTags.php:80
3903
  msgid "Title:"
3904
- msgstr ""
3905
 
3906
  #: admin/views/Widget.php:116 admin/views/WidgetTags.php:84
3907
  msgid "Type:"
3908
- msgstr ""
3909
 
3910
  #: admin/views/Widget.php:118
3911
  msgid "Gallery groups"
3912
- msgstr ""
3913
 
3914
  #: admin/views/Widget.php:121 admin/views/WidgetSlideshow.php:87
3915
  msgid "Galleries:"
3916
- msgstr ""
3917
 
3918
- #: admin/views/Widget.php:123 admin/views/Widget.php:144
3919
- #: admin/views/WidgetSlideshow.php:89
3920
  msgid "Select"
3921
- msgstr ""
3922
 
3923
  #: admin/views/Widget.php:134
3924
- #, fuzzy
3925
- #| msgid "Gallery is empty."
3926
  msgid "Gallery Type:"
3927
- msgstr "Gallery σας είναι άδειο"
3928
 
3929
  #: admin/views/Widget.php:142
3930
  msgid "Gallery Groups:"
3931
- msgstr ""
3932
 
3933
  #: admin/views/Widget.php:155
3934
  msgid "Sort:"
3935
- msgstr ""
3936
 
3937
  #: admin/views/Widget.php:157 framework/WDWLibrary.php:655
3938
  msgid "First"
3939
- msgstr "Πρώτον"
3940
 
3941
  #: admin/views/Widget.php:158 framework/WDWLibrary.php:658
3942
  msgid "Last"
3943
- msgstr "Φορτίο"
3944
 
3945
  #: admin/views/Widget.php:162
3946
  msgid "Count:"
@@ -3949,12 +3698,12 @@ msgstr ""
3949
  #: admin/views/Widget.php:166 admin/views/WidgetSlideshow.php:132
3950
  #: admin/views/WidgetTags.php:107
3951
  msgid "Dimensions:"
3952
- msgstr ""
3953
 
3954
  #: admin/views/Widget.php:171 admin/views/WidgetSlideshow.php:148
3955
  #: admin/views/WidgetTags.php:126
3956
  msgid "Themes:"
3957
- msgstr ""
3958
 
3959
  #: admin/views/WidgetSlideshow.php:68 photo-gallery.php:1421
3960
  msgid "Photo Gallery Slideshow"
@@ -3982,7 +3731,7 @@ msgstr ""
3982
 
3983
  #: admin/views/WidgetSlideshow.php:144
3984
  msgid "Time interval:"
3985
- msgstr ""
3986
 
3987
  #: admin/views/WidgetTags.php:65 photo-gallery.php:1417
3988
  msgid "Photo Gallery Tags Cloud"
@@ -3990,162 +3739,156 @@ msgstr ""
3990
 
3991
  #: admin/views/WidgetTags.php:90
3992
  msgid "Show Tag Names:"
3993
- msgstr ""
3994
 
3995
  #: admin/views/WidgetTags.php:96
3996
  msgid "Open in:"
3997
- msgstr ""
3998
 
3999
  #: admin/views/WidgetTags.php:97
4000
  msgid "Page"
4001
- msgstr ""
4002
 
4003
  #: admin/views/WidgetTags.php:102
4004
  msgid "Number:"
4005
- msgstr ""
4006
 
4007
  #: admin/views/WidgetTags.php:104
4008
  msgid "0 for all."
4009
- msgstr ""
4010
 
4011
  #: admin/views/WidgetTags.php:112
4012
  msgid "Transparent Background:"
4013
- msgstr ""
4014
 
4015
  #: admin/views/WidgetTags.php:118
4016
  msgid "Background Color:"
4017
- msgstr ""
4018
 
4019
  #: admin/views/WidgetTags.php:122
4020
  msgid "Text Color:"
4021
- msgstr ""
4022
 
4023
  #: filemanager/controller.php:66
4024
  msgid "Directory already exists."
4025
- msgstr ""
4026
 
4027
  #: filemanager/controller.php:113
4028
  msgid "File doesn't exist."
4029
- msgstr ""
4030
 
4031
  #: filemanager/controller.php:117 filemanager/controller.php:130
4032
  #: filemanager/controller.php:150
4033
  msgid "Can't rename the file."
4034
- msgstr ""
4035
 
4036
  #: filemanager/controller.php:187
4037
  msgid "Some of the files couldn't be removed."
4038
- msgstr ""
4039
 
4040
  #: filemanager/controller.php:274
4041
  msgid "Failed to copy some of the files."
4042
- msgstr ""
4043
 
4044
  #: filemanager/controller.php:296
4045
  msgid "Failed to move some of the files."
4046
- msgstr ""
4047
 
4048
  #: filemanager/view.php:53
4049
  msgid "File loading failed"
4050
- msgstr ""
4051
 
4052
  #: filemanager/view.php:55
4053
  msgid "Are you sure you want to permanently remove selected items?"
4054
- msgstr ""
4055
 
4056
  #: filemanager/view.php:56
4057
  msgid "This will cancel uploads. Continue?"
4058
- msgstr ""
4059
 
4060
  #: filemanager/view.php:58
4061
  msgid "Enter directory name"
4062
- msgstr ""
4063
 
4064
  #: filemanager/view.php:59
4065
  msgid "Enter new name"
4066
- msgstr ""
4067
 
4068
  #: filemanager/view.php:60
4069
  msgid "Processing uploaded files..."
4070
- msgstr ""
4071
 
4072
  #: filemanager/view.php:98
4073
  msgid "Up"
4074
- msgstr ""
4075
 
4076
  #: filemanager/view.php:99
4077
  msgid "Make a directory"
4078
- msgstr ""
4079
 
4080
  #: filemanager/view.php:100
4081
  msgid "Rename item"
4082
- msgstr ""
4083
 
4084
  #: filemanager/view.php:102
4085
  msgid "Copy"
4086
- msgstr ""
4087
 
4088
  #: filemanager/view.php:103
4089
  msgid "Cut"
4090
- msgstr ""
4091
 
4092
  #: filemanager/view.php:104
4093
  msgid "Paste"
4094
- msgstr ""
4095
 
4096
  #: filemanager/view.php:105
4097
- #, fuzzy
4098
- #| msgid " item(s)"
4099
  msgid "Remove items"
4100
- msgstr "στοιχείο"
4101
 
4102
  #: filemanager/view.php:109
4103
  msgid "View thumbs"
4104
- msgstr ""
4105
 
4106
  #: filemanager/view.php:110
4107
  msgid "View list"
4108
- msgstr ""
4109
 
4110
  #: filemanager/view.php:114
4111
  msgid "Upload files"
4112
- msgstr ""
4113
 
4114
  #: filemanager/view.php:128
4115
  msgid "To change upload directory go to Options page."
4116
- msgstr ""
4117
 
4118
  #: filemanager/view.php:140
4119
- #, fuzzy
4120
- #| msgid "Order by: "
4121
  msgid "Order by:"
4122
- msgstr "Ταξινόμηση κατά"
4123
 
4124
  #: filemanager/view.php:142
4125
  msgid "Click to sort by name"
4126
- msgstr ""
4127
 
4128
  #: filemanager/view.php:154
4129
  msgid "Click to sort by size"
4130
- msgstr ""
4131
 
4132
  #: filemanager/view.php:166
4133
  msgid "Click to sort by date modified"
4134
- msgstr ""
4135
 
4136
  #: filemanager/view.php:256
4137
- #, fuzzy
4138
- #| msgid "There are no images in this gallery."
4139
  msgid "Add selected images to gallery"
4140
- msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
4141
 
4142
  #: filemanager/view.php:272
4143
  msgid "Thumbnail Maximum Dimensions:"
4144
- msgstr ""
4145
 
4146
  #: filemanager/view.php:273
4147
  msgid "Thumbnail:"
4148
- msgstr ""
4149
 
4150
  #: filemanager/view.php:278 frontend/views/BWGViewAlbum_compact_preview.php:243
4151
  #: frontend/views/BWGViewAlbum_extended_preview.php:236
@@ -4156,71 +3899,71 @@ msgstr "Πίσω"
4156
 
4157
  #: filemanager/view.php:281
4158
  msgid "Image Maximum Dimensions:"
4159
- msgstr ""
4160
 
4161
  #: filemanager/view.php:282
4162
  msgid "Image:"
4163
- msgstr ""
4164
 
4165
  #: filemanager/view.php:290
4166
  msgid "Drag files here or click the button below"
4167
- msgstr ""
4168
 
4169
  #: filemanager/view.php:290
4170
  msgid "to upload files"
4171
- msgstr ""
4172
 
4173
  #: filemanager/view.php:354
4174
  msgid "No files to upload"
4175
- msgstr ""
4176
 
4177
  #: framework/WDWLibrary.php:61
4178
  msgid "Item successfully saved."
4179
- msgstr ""
4180
 
4181
  #: framework/WDWLibrary.php:67 framework/WDWLibrary.php:172
4182
  msgid "Failed."
4183
- msgstr ""
4184
 
4185
  #: framework/WDWLibrary.php:73
4186
  msgid "Item successfully deleted."
4187
- msgstr ""
4188
 
4189
  #: framework/WDWLibrary.php:79
4190
  msgid "You can't delete default theme."
4191
- msgstr ""
4192
 
4193
  #: framework/WDWLibrary.php:85
4194
  msgid "Items Successfully Deleted."
4195
- msgstr ""
4196
 
4197
  #: framework/WDWLibrary.php:99
4198
  msgid "The item is successfully set as default."
4199
- msgstr ""
4200
 
4201
  #: framework/WDWLibrary.php:105
4202
  msgid "Options successfully saved."
4203
- msgstr ""
4204
 
4205
  #: framework/WDWLibrary.php:111
4206
  msgid "Item successfully published."
4207
- msgstr ""
4208
 
4209
  #: framework/WDWLibrary.php:117
4210
  msgid "Item successfully unpublished."
4211
- msgstr ""
4212
 
4213
  #: framework/WDWLibrary.php:123
4214
  msgid "Item successfully duplicated."
4215
- msgstr ""
4216
 
4217
  #: framework/WDWLibrary.php:130
4218
  msgid "Items Succesfully Unpublished."
4219
- msgstr ""
4220
 
4221
  #: framework/WDWLibrary.php:136
4222
  msgid "Ordering Succesfully Saved."
4223
- msgstr ""
4224
 
4225
  #: framework/WDWLibrary.php:142
4226
  msgid "A term with the name provided already exists."
@@ -4228,7 +3971,7 @@ msgstr ""
4228
 
4229
  #: framework/WDWLibrary.php:148
4230
  msgid "Name field is required."
4231
- msgstr ""
4232
 
4233
  #: framework/WDWLibrary.php:154
4234
  msgid "The slug must be unique."
@@ -4236,48 +3979,47 @@ msgstr ""
4236
 
4237
  #: framework/WDWLibrary.php:160
4238
  msgid "Changes must be saved."
4239
- msgstr ""
4240
 
4241
  #: framework/WDWLibrary.php:166
4242
  msgid "Theme successfully copied."
4243
- msgstr ""
4244
 
4245
  #: framework/WDWLibrary.php:177
4246
  msgid "Items successfully reset."
4247
- msgstr ""
4248
 
4249
  #: framework/WDWLibrary.php:182
4250
  msgid "Watermark successfully set."
4251
- msgstr ""
4252
 
4253
  #: framework/WDWLibrary.php:187
4254
  msgid "Items successfully rotated."
4255
- msgstr ""
4256
 
4257
  #: framework/WDWLibrary.php:192
4258
  msgid "Items successfully recreated."
4259
- msgstr ""
4260
 
4261
  #: framework/WDWLibrary.php:197
4262
  msgid "Items successfully resized."
4263
- msgstr ""
4264
 
4265
  #: framework/WDWLibrary.php:202
4266
  msgid "Items successfully edited."
4267
- msgstr ""
4268
 
4269
  #: framework/WDWLibrary.php:253
4270
  msgid "Click to sort by this item"
4271
- msgstr ""
4272
 
4273
- #: framework/WDWLibrary.php:418 framework/WDWLibrary.php:567
4274
- #: photo-gallery.php:398
4275
  msgid "item"
4276
- msgstr ""
4277
 
4278
  #: framework/WDWLibrary.php:650
4279
  msgid " item(s)"
4280
- msgstr "στοιχείο"
4281
 
4282
  #: framework/WDWLibrary.php:656
4283
  msgid "Previous"
@@ -4309,27 +4051,22 @@ msgstr "Φόρτωσε περισσότερα..."
4309
 
4310
  #: framework/WDWLibrary.php:886
4311
  msgid "Order by: "
4312
- msgstr "Ταξινόμηση κατά"
4313
 
4314
  #: framework/WDWLibrary.php:1972
4315
  #, php-format
4316
  msgid "No %s found."
4317
- msgstr ""
4318
 
4319
  #: framework/WDWLibrary.php:2012
4320
- #, fuzzy
4321
- #| msgid "Gallery is empty."
4322
  msgid "Gallery Tags"
4323
- msgstr "Gallery σας είναι άδειο"
4324
 
4325
  #: frontend/views/BWGViewAlbum_compact_preview.php:23
4326
  #: frontend/views/BWGViewAlbum_extended_preview.php:19
4327
- #: frontend/views/BWGViewAlbum_masonry_preview.php:19
4328
- #: frontend/views/BWGViewBlog_style.php:19
4329
- #: frontend/views/BWGViewCarousel.php:47
4330
- #: frontend/views/BWGViewImage_browser.php:19
4331
- #: frontend/views/BWGViewSlideshow.php:15
4332
- #: frontend/views/BWGViewThumbnails.php:29
4333
  #: frontend/views/BWGViewThumbnails_masonry.php:28
4334
  #: frontend/views/BWGViewThumbnails_mosaic.php:31
4335
  msgid "There is no theme selected or the theme was deleted."
@@ -4346,12 +4083,9 @@ msgstr "Δεν υπάρχει επιλεγμένο άλμπουμ ή το άλμ
4346
 
4347
  #: frontend/views/BWGViewAlbum_compact_preview.php:77
4348
  #: frontend/views/BWGViewAlbum_extended_preview.php:71
4349
- #: frontend/views/BWGViewAlbum_masonry_preview.php:73
4350
- #: frontend/views/BWGViewBlog_style.php:55
4351
- #: frontend/views/BWGViewCarousel.php:66
4352
- #: frontend/views/BWGViewImage_browser.php:36
4353
- #: frontend/views/BWGViewSlideshow.php:94
4354
- #: frontend/views/BWGViewThumbnails.php:76
4355
  #: frontend/views/BWGViewThumbnails_masonry.php:74
4356
  #: frontend/views/BWGViewThumbnails_mosaic.php:78
4357
  msgid "There are no images in this gallery."
@@ -4379,12 +4113,9 @@ msgstr "Gallery σας είναι άδειο"
4379
  #: frontend/views/BWGViewAlbum_compact_preview.php:531
4380
  #: frontend/views/BWGViewAlbum_extended_preview.php:439
4381
  #: frontend/views/BWGViewAlbum_extended_preview.php:514
4382
- #: frontend/views/BWGViewCarousel.php:236
4383
- #: frontend/views/BWGViewGalleryBox.php:1134
4384
- #: frontend/views/BWGViewGalleryBox.php:3620
4385
- #: frontend/views/BWGViewSlideshow.php:1351
4386
- #: frontend/views/BWGViewThumbnails.php:218
4387
- #: frontend/views/BWGViewThumbnails_mosaic.php:174
4388
  msgid "Play"
4389
  msgstr "Παίξτε"
4390
 
@@ -4393,40 +4124,32 @@ msgstr "Παίξτε"
4393
  #: frontend/views/BWGViewAlbum_extended_preview.php:456
4394
  #: frontend/views/BWGViewAlbum_extended_preview.php:481
4395
  #: frontend/views/BWGViewAlbum_masonry_preview.php:346
4396
- #: frontend/views/BWGViewThumbnails.php:235
4397
- #: frontend/views/BWGViewThumbnails.php:260
4398
  #: frontend/views/BWGViewThumbnails_masonry.php:168
4399
  #: frontend/views/BWGViewThumbnails_mosaic.php:191
4400
  msgid "Open"
4401
- msgstr ""
4402
 
4403
  #: frontend/views/BWGViewAlbum_compact_preview.php:472
4404
  #: frontend/views/BWGViewAlbum_compact_preview.php:498
4405
  #: frontend/views/BWGViewAlbum_extended_preview.php:457
4406
  #: frontend/views/BWGViewAlbum_extended_preview.php:482
4407
  #: frontend/views/BWGViewAlbum_masonry_preview.php:347
4408
- #: frontend/views/BWGViewGalleryBox.php:1218
4409
- #: frontend/views/BWGViewThumbnails.php:236
4410
- #: frontend/views/BWGViewThumbnails.php:261
4411
- #: frontend/views/BWGViewThumbnails_masonry.php:169
4412
  #: frontend/views/BWGViewThumbnails_mosaic.php:192
4413
  msgid "Ecommerce"
4414
- msgstr ""
4415
 
4416
  #: frontend/views/BWGViewAlbum_compact_preview.php:1013
4417
  #: frontend/views/BWGViewAlbum_extended_preview.php:1037
4418
  #: frontend/views/BWGViewAlbum_masonry_preview.php:459
4419
- #: frontend/views/BWGViewBlog_style.php:388
4420
- #: frontend/views/BWGViewCarousel.php:393
4421
- #: frontend/views/BWGViewImage_browser.php:345
4422
- #: frontend/views/BWGViewSlideshow.php:494
4423
- #: frontend/views/BWGViewThumbnails.php:280
4424
- #: frontend/views/BWGViewThumbnails_masonry.php:314
4425
  #: frontend/views/BWGViewThumbnails_mosaic.php:602
4426
- #, fuzzy
4427
- #| msgid "Download original image"
4428
  msgid "Download gallery"
4429
- msgstr "Κατεβάστε αρχική εικόνα"
4430
 
4431
  #: frontend/views/BWGViewAlbum_extended_preview.php:366
4432
  #: frontend/views/BWGViewAlbum_extended_preview.php:546
@@ -4437,113 +4160,82 @@ msgstr "Περισσότερα"
4437
  msgid "Hide"
4438
  msgstr "Απόκρυψη"
4439
 
4440
- #: frontend/views/BWGViewBlog_style.php:37
4441
- #: frontend/views/BWGViewCarousel.php:53
4442
- #: frontend/views/BWGViewImage_browser.php:24
4443
- #: frontend/views/BWGViewSlideshow.php:80
4444
- #: frontend/views/BWGViewThumbnails.php:60
4445
- #: frontend/views/BWGViewThumbnails_masonry.php:55
4446
  #: frontend/views/BWGViewThumbnails_mosaic.php:60
4447
  msgid "There is no gallery selected or the gallery was deleted."
4448
- msgstr "Δεν υπάρχει επιλεγμένη γκαλερί ή η γκαλερί έχει διαγραφεί"
4449
-
4450
- #: frontend/views/BWGViewBlog_style.php:52
4451
- #: frontend/views/BWGViewCarousel.php:62
4452
- #: frontend/views/BWGViewImage_browser.php:33
4453
- #: frontend/views/BWGViewSlideshow.php:90
4454
- #: frontend/views/BWGViewThumbnails.php:73
4455
- #: frontend/views/BWGViewThumbnails_masonry.php:71
4456
  #: frontend/views/BWGViewThumbnails_mosaic.php:75
4457
- #, fuzzy
4458
- #| msgid "There are no images in this gallery."
4459
  msgid "There are no images."
4460
- msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
4461
 
4462
- #: frontend/views/BWGViewBlog_style.php:311
4463
- #: frontend/views/BWGViewGalleryBox.php:1146
4464
  msgid "Show comments"
4465
  msgstr "Δείτε σχόλια"
4466
 
4467
- #: frontend/views/BWGViewBlog_style.php:317
4468
- #: frontend/views/BWGViewBlog_style.php:318
4469
- #: frontend/views/BWGViewGalleryBox.php:1154
4470
- #: frontend/views/BWGViewGalleryBox.php:1155
4471
  msgid "Share on Facebook"
4472
  msgstr "Μοιραστείτε στο Facebook"
4473
 
4474
- #: frontend/views/BWGViewBlog_style.php:324
4475
- #: frontend/views/BWGViewBlog_style.php:325
4476
- #: frontend/views/BWGViewGalleryBox.php:1161
4477
- #: frontend/views/BWGViewGalleryBox.php:1162
4478
  msgid "Share on Twitter"
4479
  msgstr "Μοιραστείτε στο Twitter"
4480
 
4481
- #: frontend/views/BWGViewBlog_style.php:331
4482
- #: frontend/views/BWGViewBlog_style.php:332
4483
- #: frontend/views/BWGViewGalleryBox.php:1168
4484
- #: frontend/views/BWGViewGalleryBox.php:1169
4485
  msgid "Share on Google+"
4486
  msgstr "Μοιραστείτε στο Google+"
4487
 
4488
- #: frontend/views/BWGViewBlog_style.php:338
4489
- #: frontend/views/BWGViewBlog_style.php:339
4490
- #: frontend/views/BWGViewGalleryBox.php:1175
4491
- #: frontend/views/BWGViewGalleryBox.php:1176
4492
  msgid "Share on Pinterest"
4493
  msgstr "Μοιραστείτε στο Pinterest"
4494
 
4495
- #: frontend/views/BWGViewBlog_style.php:345
4496
- #: frontend/views/BWGViewBlog_style.php:346
4497
- #: frontend/views/BWGViewGalleryBox.php:1182
4498
- #: frontend/views/BWGViewGalleryBox.php:1183
4499
  msgid "Share on Tumblr"
4500
  msgstr "Μοιραστείτε στο Tumblr"
4501
 
4502
  #: frontend/views/BWGViewBlog_style.php:353
4503
- #, fuzzy
4504
- #| msgid "Show comments"
4505
  msgid "Show ecommerce"
4506
- msgstr "Δείτε σχόλια"
4507
 
4508
- #: frontend/views/BWGViewCarousel.php:224
4509
- #: frontend/views/BWGViewCarousel.php:230
4510
- #: frontend/views/BWGViewGalleryBox.php:3614
4511
- #: frontend/views/BWGViewGalleryBox.php:3629
4512
- #: frontend/views/BWGViewSlideshow.php:1342
4513
- #: frontend/views/BWGViewSlideshow.php:1360
4514
  msgid "Pause"
4515
  msgstr "Παύση"
4516
 
4517
  #: frontend/views/BWGViewDownload_gallery.php:37
4518
- #, fuzzy
4519
- #| msgid "There are no images in this gallery."
4520
  msgid "There are no images to download."
4521
- msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
4522
 
4523
  #: frontend/views/BWGViewGalleryBox.php:1020
4524
  msgid "The image has been deleted."
4525
  msgstr "Η εικόνα έχει διαγραφεί."
4526
 
4527
- #: frontend/views/BWGViewGalleryBox.php:1138
4528
- #: frontend/views/BWGViewGalleryBox.php:2760
4529
- #: frontend/views/BWGViewGalleryBox.php:3449
4530
- #: frontend/views/BWGViewGalleryBox.php:3545
4531
  msgid "Maximize"
4532
  msgstr "Μεγιστοποίηση"
4533
 
4534
- #: frontend/views/BWGViewGalleryBox.php:1142
4535
- #: frontend/views/BWGViewGalleryBox.php:2762
4536
  #: frontend/views/BWGViewGalleryBox.php:3547
4537
  msgid "Fullscreen"
4538
  msgstr "Πλήρης οθόνη"
4539
 
4540
- #: frontend/views/BWGViewGalleryBox.php:1144
4541
- #: frontend/views/BWGViewGalleryBox.php:3225
4542
  msgid "Show info"
4543
  msgstr "Δείτε πληροφορίες"
4544
 
4545
- #: frontend/views/BWGViewGalleryBox.php:1148
4546
- #: frontend/views/BWGViewGalleryBox.php:3236
4547
  msgid "Show rating"
4548
  msgstr "Εμφάνιση αξιολόγησης"
4549
 
@@ -4553,7 +4245,7 @@ msgstr "Ανοίξτε την εικόνα στο αρχικό της μέγεθ
4553
 
4554
  #: frontend/views/BWGViewGalleryBox.php:1211
4555
  msgid "Download original image"
4556
- msgstr "Κατεβάστε αρχική εικόνα"
4557
 
4558
  #: frontend/views/BWGViewGalleryBox.php:1243
4559
  msgid "Hits: "
@@ -4561,21 +4253,19 @@ msgstr "Επισκέψεις: "
4561
 
4562
  #: frontend/views/BWGViewGalleryBox.php:1254
4563
  msgid "Rated."
4564
- msgstr "Ονομαστική."
4565
 
4566
- #: frontend/views/BWGViewGalleryBox.php:1258
4567
- #: frontend/views/BWGViewGalleryBox.php:1275
4568
  msgid "Not rated yet."
4569
- msgstr "Δεν έχει βαθμολογηθεί ακόμα. "
4570
 
4571
- #: frontend/views/BWGViewGalleryBox.php:1261
4572
- #: frontend/views/BWGViewGalleryBox.php:1297
4573
  msgid "Votes: "
4574
- msgstr "ψήφοι: "
4575
 
4576
  #: frontend/views/BWGViewGalleryBox.php:1295
4577
  msgid "Cancel your rating."
4578
- msgstr "Ακύρωση βαθμολογία σας. "
4579
 
4580
  #: frontend/views/BWGViewGalleryBox.php:1297
4581
  msgid "You have already rated."
@@ -4587,12 +4277,11 @@ msgstr "Σφάλμα. Λάθος Κωδικός Επαλήθευσης. "
4587
 
4588
  #: frontend/views/BWGViewGalleryBox.php:1413 photo-gallery.php:1004
4589
  msgid "This is not a valid email address."
4590
- msgstr "Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου. "
4591
 
4592
- #: frontend/views/BWGViewGalleryBox.php:1421
4593
- #: frontend/views/BWGViewGalleryBox.php:3009
4594
  msgid "Hide Comments"
4595
- msgstr "Απόκρυψη Σχόλια"
4596
 
4597
  #: frontend/views/BWGViewGalleryBox.php:1443
4598
  msgid "Verification Code"
@@ -4604,29 +4293,23 @@ msgstr "Υποβολή"
4604
 
4605
  #: frontend/views/BWGViewGalleryBox.php:1467
4606
  msgid "Your comment is awaiting moderation"
4607
- msgstr "Το σχόλιό σας αναμένει συγκράτηση "
4608
 
4609
  #: frontend/views/BWGViewGalleryBox.php:1496
4610
  msgid "Delete Comment"
4611
  msgstr "Διαγραφή σχολίου"
4612
 
4613
- #: frontend/views/BWGViewGalleryBox.php:1531
4614
- #: frontend/views/BWGViewGalleryBox.php:3043
4615
- #, fuzzy
4616
- #| msgid "Hide Comments"
4617
  msgid "Hide Ecommerce"
4618
- msgstr "Απόκρυψη Σχόλια"
4619
 
4620
- #: frontend/views/BWGViewGalleryBox.php:1538
4621
- #: frontend/views/BWGViewGalleryBox.php:1726
4622
  msgid "Add to cart"
4623
- msgstr ""
4624
 
4625
  #: frontend/views/BWGViewGalleryBox.php:1541
4626
- #, fuzzy
4627
- #| msgid " item(s)"
4628
  msgid "items"
4629
- msgstr "στοιχείο"
4630
 
4631
  #: frontend/views/BWGViewGalleryBox.php:1551
4632
  msgid "Prints and products"
@@ -4634,52 +4317,46 @@ msgstr ""
4634
 
4635
  #: frontend/views/BWGViewGalleryBox.php:1558
4636
  msgid "Downloads"
4637
- msgstr ""
4638
 
4639
- #: frontend/views/BWGViewGalleryBox.php:1573
4640
- #: frontend/views/BWGViewGalleryBox.php:1686
4641
  msgid "Price"
4642
- msgstr ""
4643
 
4644
  #: frontend/views/BWGViewGalleryBox.php:1593
4645
  msgid "Count"
4646
- msgstr ""
4647
 
4648
- #: frontend/views/BWGViewGalleryBox.php:1673
4649
- #: frontend/views/BWGViewGalleryBox.php:1717
4650
  msgid "Total"
4651
- msgstr ""
4652
 
4653
  #: frontend/views/BWGViewGalleryBox.php:1683
4654
  msgid "Choose"
4655
- msgstr ""
4656
 
4657
  #: frontend/views/BWGViewGalleryBox.php:1685
4658
  msgid "Dimensions"
4659
- msgstr ""
4660
 
4661
  #: frontend/views/BWGViewGalleryBox.php:1727
4662
  msgid "View cart"
4663
- msgstr ""
4664
 
4665
  #: frontend/views/BWGViewGalleryBox.php:1909
4666
  msgid "Please select at least one item"
4667
- msgstr ""
4668
 
4669
  #: frontend/views/BWGViewGalleryBox.php:1944
4670
  msgid "Please select Prints and products or Downloads"
4671
  msgstr ""
4672
 
4673
- #: frontend/views/BWGViewGalleryBox.php:2668
4674
- #: frontend/views/BWGViewGalleryBox.php:2991
4675
  #: frontend/views/BWGViewGalleryBox.php:3035
4676
- #, fuzzy
4677
- #| msgid "Show comments"
4678
  msgid "Show Ecommerce"
4679
- msgstr "Δείτε σχόλια"
4680
 
4681
- #: frontend/views/BWGViewGalleryBox.php:3000
4682
- #: frontend/views/BWGViewGalleryBox.php:3028
4683
  msgid "Show Comments"
4684
  msgstr "Εμφάνιση σχολίων"
4685
 
@@ -4689,10 +4366,9 @@ msgstr "Απόκρυψη"
4689
 
4690
  #: frontend/views/BWGViewGalleryBox.php:3232
4691
  msgid "Hide rating"
4692
- msgstr "Απόκρυψη βαθμολογία."
4693
 
4694
- #: frontend/views/BWGViewGalleryBox.php:3486
4695
- #: frontend/views/BWGViewGalleryBox.php:3695
4696
  msgid "Restore"
4697
  msgstr "Επαναφορά"
4698
 
@@ -4702,31 +4378,31 @@ msgstr "Έξοδος από πλήρη οθόνη"
4702
 
4703
  #: insert.php:1152
4704
  msgid "Theme 1"
4705
- msgstr ""
4706
 
4707
  #: insert.php:1158
4708
  msgid "Theme 2"
4709
- msgstr ""
4710
 
4711
  #: photo-gallery.php:97
4712
  msgid "This option is disabled in free version."
4713
- msgstr ""
4714
 
4715
  #: photo-gallery.php:254
4716
  msgid "Add Galleries/Images"
4717
- msgstr ""
4718
 
4719
  #: photo-gallery.php:262
4720
  msgid "Options"
4721
- msgstr ""
4722
 
4723
  #: photo-gallery.php:275
4724
  msgid "Pro Version"
4725
- msgstr ""
4726
 
4727
  #: photo-gallery.php:280
4728
  msgid "Add-ons"
4729
- msgstr ""
4730
 
4731
  #: photo-gallery.php:308
4732
  #, php-format
@@ -4741,47 +4417,44 @@ msgstr ""
4741
  #: photo-gallery.php:329 photo-gallery.php:334
4742
  #, php-format
4743
  msgid "The %s class not exist."
4744
- msgstr ""
4745
 
4746
  #: photo-gallery.php:376 photo-gallery.php:409
4747
  msgid "Do you want to delete selected items?"
4748
- msgstr ""
4749
 
4750
  #: photo-gallery.php:377 photo-gallery.php:404
4751
  msgid "You must select at least one item."
4752
- msgstr ""
4753
 
4754
  #: photo-gallery.php:384 photo-gallery.php:1003
4755
  msgid "field is required."
4756
- msgstr ""
4757
 
4758
  #: photo-gallery.php:385
4759
  msgid "You must select an image file."
4760
- msgstr ""
4761
 
4762
  #: photo-gallery.php:386
4763
  msgid "You must select an audio file."
4764
- msgstr ""
4765
 
4766
  #: photo-gallery.php:387
4767
  msgid ""
4768
- "You do not have Instagram access token. Sign in with Instagram in Options -> "
4769
- "Advanced tab. "
4770
  msgstr ""
4771
 
4772
  #: photo-gallery.php:388
4773
- msgid ""
4774
- "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
4775
- "options."
4776
  msgstr ""
4777
 
4778
  #: photo-gallery.php:389
4779
  msgid "Instagram recent post number must be between 1 and 33."
4780
- msgstr ""
4781
 
4782
  #: photo-gallery.php:390
4783
  msgid "The gallery is not empty. Please delete all the images first."
4784
- msgstr ""
4785
 
4786
  #: photo-gallery.php:391
4787
  msgid "Please enter url to embed."
@@ -4789,116 +4462,114 @@ msgstr ""
4789
 
4790
  #: photo-gallery.php:392
4791
  msgid "Error: cannot get response from the server."
4792
- msgstr ""
4793
 
4794
  #: photo-gallery.php:393
4795
  msgid "Error: something wrong happened at the server."
4796
- msgstr ""
4797
 
4798
  #: photo-gallery.php:394
4799
  msgid "Error"
4800
- msgstr ""
4801
 
4802
  #: photo-gallery.php:396
4803
  msgid "Hide order column"
4804
- msgstr ""
4805
 
4806
  #: photo-gallery.php:397
4807
  msgid "Selected"
4808
- msgstr ""
4809
 
4810
  #: photo-gallery.php:399
4811
  msgid "Items Succesfully Saved."
4812
- msgstr ""
4813
 
4814
  #: photo-gallery.php:400
4815
  msgid "Item Succesfully Recovered."
4816
- msgstr ""
4817
 
4818
  #: photo-gallery.php:401
4819
  msgid "Item Succesfully Published."
4820
- msgstr ""
4821
 
4822
  #: photo-gallery.php:402
4823
  msgid "Item Succesfully Unpublished."
4824
- msgstr ""
4825
 
4826
  #: photo-gallery.php:403
4827
  msgid "Item Succesfully Deleted."
4828
- msgstr ""
4829
 
4830
  #: photo-gallery.php:405
4831
  msgid "Items Succesfully resized."
4832
- msgstr ""
4833
 
4834
  #: photo-gallery.php:406
4835
  msgid "Watermarks Succesfully Set."
4836
- msgstr ""
4837
 
4838
  #: photo-gallery.php:407
4839
  msgid "Items Succesfully Reset."
4840
- msgstr ""
4841
 
4842
  #: photo-gallery.php:408
4843
  msgid "Save Tag"
4844
- msgstr ""
4845
 
4846
  #: photo-gallery.php:410 photo-gallery.php:412
4847
  msgid ""
4848
- "This action will reset gallery type to mixed and will save that choice. You "
4849
- "cannot undo it."
4850
  msgstr ""
 
 
4851
 
4852
  #: photo-gallery.php:411
4853
- msgid ""
4854
- "After pressing save/apply buttons, you cannot change gallery type back to "
4855
- "Instagram!"
4856
  msgstr ""
4857
 
4858
  #: photo-gallery.php:413
4859
  msgid "Insert"
4860
- msgstr ""
4861
 
4862
  #: photo-gallery.php:414
4863
  msgid "Failed to import images from media library"
4864
- msgstr ""
4865
 
4866
  #: photo-gallery.php:710
4867
  msgid "Insert Photo Gallery"
4868
- msgstr ""
4869
 
4870
  #: photo-gallery.php:712
4871
  msgid "Add Photo Gallery"
4872
- msgstr ""
4873
 
4874
  #: photo-gallery.php:1008
4875
  msgid "Select Tag"
4876
- msgstr ""
4877
 
4878
  #: photo-gallery.php:1177
4879
  #, php-format
4880
  msgid "This section allows you to %s."
4881
- msgstr ""
4882
 
4883
  #: photo-gallery.php:1179
4884
  msgid "Read More in User Manual"
4885
- msgstr ""
4886
 
4887
  #: photo-gallery.php:1185
4888
  msgid "Upgrade to paid version"
4889
- msgstr ""
4890
 
4891
  #: photo-gallery.php:1196 photo-gallery.php:1640
4892
  #: wd/templates/display_overview_user_guide.php:33
4893
  msgid "Support Forum"
4894
- msgstr ""
4895
 
4896
  #: photo-gallery.php:1224
4897
  msgid ""
4898
- "Photo Gallery is a fully responsive gallery plugin with advanced "
4899
- "functionality. It allows having different image galleries for your posts and "
4900
- "pages. You can create unlimited number of galleries, combine them into "
4901
- "gallery groups, and provide descriptions and tags."
4902
  msgstr ""
4903
 
4904
  #: photo-gallery.php:1228
@@ -4907,10 +4578,9 @@ msgstr ""
4907
 
4908
  #: photo-gallery.php:1229
4909
  msgid ""
4910
- "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
4911
- "Use the File Manager with single-step and easy-to-manage functionality to "
4912
- "rename, upload, copy, add and remove images and image directories. Otherwise "
4913
- "use WordPress built in media uploader."
4914
  msgstr ""
4915
 
4916
  #: photo-gallery.php:1232
@@ -4919,10 +4589,10 @@ msgstr ""
4919
 
4920
  #: photo-gallery.php:1233
4921
  msgid ""
4922
- "The plugin allows creating unlimited number of galleries or gallery groups "
4923
- "and upload images in each gallery as many as you wish. Add single/ multiple "
4924
- "galleries into your pages and posts with the help of functional shortcode; "
4925
- "visual shortcodes for an easier management."
4926
  msgstr ""
4927
 
4928
  #: photo-gallery.php:1236
@@ -4931,10 +4601,10 @@ msgstr ""
4931
 
4932
  #: photo-gallery.php:1237
4933
  msgid ""
4934
- "The gallery plugin is easily customizable. You can edit themes changing "
4935
- "sizes and colors for different features. Specify the number of images to "
4936
- "display in a single row in an gallery group. Additionally, you can customize "
4937
- "thumbnail images by cropping, flipping and rotating them."
4938
  msgstr ""
4939
 
4940
  #: photo-gallery.php:1240
@@ -4943,10 +4613,9 @@ msgstr ""
4943
 
4944
  #: photo-gallery.php:1241
4945
  msgid ""
4946
- "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
4947
- "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
4948
- "Browser, Masonry Album, Compact Album, Extended Album, Blog Style Gallery, "
4949
- "Ecommerce."
4950
  msgstr ""
4951
 
4952
  #: photo-gallery.php:1244
@@ -4955,9 +4624,9 @@ msgstr ""
4955
 
4956
  #: photo-gallery.php:1245
4957
  msgid ""
4958
- "You can include both videos and images within a single gallery. WordPress "
4959
- "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
4960
- "It’s also possible to add audio tracks for the image slideshow."
4961
  msgstr ""
4962
 
4963
  #: photo-gallery.php:1251
@@ -5033,10 +4702,8 @@ msgid "Generating Shortcode"
5033
  msgstr ""
5034
 
5035
  #: photo-gallery.php:1381
5036
- #, fuzzy
5037
- #| msgid "Hide Comments"
5038
  msgid "Editing Comments"
5039
- msgstr "Απόκρυψη Σχόλια"
5040
 
5041
  #: photo-gallery.php:1386
5042
  msgid "Editing Ratings"
@@ -5068,13 +4735,11 @@ msgstr ""
5068
 
5069
  #: photo-gallery.php:1492
5070
  msgid "Albums"
5071
- msgstr ""
5072
 
5073
  #: photo-gallery.php:1506
5074
- #, fuzzy
5075
- #| msgid "Gallery is empty."
5076
  msgid "Gallery tags"
5077
- msgstr "Gallery σας είναι άδειο"
5078
 
5079
  #: photo-gallery.php:1555
5080
  msgid "Photo gallery plugin autoupdate interval."
@@ -5083,29 +4748,26 @@ msgstr "Φωτογραφίες plugin αυτόματο χρονικό διάστ
5083
  #: photo-gallery.php:1598
5084
  #, php-format
5085
  msgid "Please update the %s add-on to start using."
5086
- msgstr ""
5087
 
5088
  #: photo-gallery.php:1599
5089
  #, php-format
5090
  msgid "Please update the %s add-ons to start using."
5091
- msgstr ""
5092
 
5093
  #: photo-gallery.php:1641
5094
- #, fuzzy
5095
- #| msgid "Rated."
5096
  msgid "Rate"
5097
- msgstr "Ονομαστική."
5098
 
5099
  #: photo-gallery.php:1716
5100
  #, php-format
5101
  msgid ""
5102
- "%s advises: Install brand new %s plugin to optimize your website images "
5103
- "quickly and easily."
5104
  msgstr ""
5105
 
5106
  #: photo-gallery.php:1716
5107
  msgid "More details"
5108
- msgstr ""
5109
 
5110
  #: photo-gallery.php:1716
5111
  msgid "Image Optimizer WD"
@@ -5117,7 +4779,7 @@ msgstr ""
5117
 
5118
  #: photo-gallery.php:1722 photo-gallery.php:1729
5119
  msgid "Optimize now"
5120
- msgstr ""
5121
 
5122
  #: photo-gallery.php:1723
5123
  msgid "Activation failed, please try again."
@@ -5125,7 +4787,7 @@ msgstr ""
5125
 
5126
  #: photo-gallery.php:1727
5127
  msgid "Install"
5128
- msgstr ""
5129
 
5130
  #: photo-gallery.php:1728
5131
  msgid "Activation"
@@ -5133,7 +4795,7 @@ msgstr ""
5133
 
5134
  #: photo-gallery.php:1730
5135
  msgid "Installation failed, please try again."
5136
- msgstr ""
5137
 
5138
  #: wd/includes/deactivate.php:35
5139
  msgid "Technical problems / hard to use"
@@ -5162,49 +4824,51 @@ msgstr ""
5162
  #: wd/includes/notices.php:212
5163
  #, php-format
5164
  msgid ""
5165
- "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
5166
- "review on WordPress.org?"
5167
  msgstr ""
 
 
5168
 
5169
  #: wd/includes/notices.php:213
5170
  msgid "Sure! I'd love to!"
5171
- msgstr ""
5172
 
5173
  #: wd/includes/notices.php:214
5174
  msgid "I've already left a review"
5175
- msgstr ""
5176
 
5177
  #: wd/includes/notices.php:215
5178
  msgid "Maybe Later"
5179
- msgstr ""
5180
 
5181
  #: wd/includes/notices.php:216
5182
  msgid "Never show again"
5183
- msgstr ""
5184
 
5185
  #: wd/includes/overview.php:27
5186
  msgid "Welcome"
5187
- msgstr ""
5188
 
5189
  #: wd/includes/overview.php:31
5190
  msgid "User Guide"
5191
- msgstr ""
5192
 
5193
  #: wd/includes/overview.php:35
5194
  msgid "Deals"
5195
- msgstr ""
5196
 
5197
  #: wd/includes/overview.php:39
5198
  msgid "Support"
5199
- msgstr ""
5200
 
5201
  #: wd/includes/overview.php:43
5202
  msgid "Submit Your Idea"
5203
- msgstr ""
5204
 
5205
  #: wd/includes/overview.php:47
5206
  msgid "Forum"
5207
- msgstr ""
5208
 
5209
  #: wd/includes/overview.php:79
5210
  msgid "Wordpress form builder plugin"
@@ -5212,8 +4876,7 @@ msgstr ""
5212
 
5213
  #: wd/includes/overview.php:80
5214
  msgid ""
5215
- "Form Maker is a modern and advanced tool for creating WordPress forms easily "
5216
- "and fast."
5217
  msgstr ""
5218
 
5219
  #: wd/includes/overview.php:85
@@ -5222,8 +4885,7 @@ msgstr ""
5222
 
5223
  #: wd/includes/overview.php:86
5224
  msgid ""
5225
- "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
5226
- "functionality."
5227
  msgstr ""
5228
 
5229
  #: wd/includes/overview.php:91
@@ -5231,9 +4893,7 @@ msgid "WordPress calendar plugin"
5231
  msgstr ""
5232
 
5233
  #: wd/includes/overview.php:92
5234
- msgid ""
5235
- "Organize and publish your events in an easy and elegant way using Event "
5236
- "Calendar WD."
5237
  msgstr ""
5238
 
5239
  #: wd/includes/overview.php:97
@@ -5242,8 +4902,8 @@ msgstr ""
5242
 
5243
  #: wd/includes/overview.php:98
5244
  msgid ""
5245
- "Google Maps WD is an intuitive tool for creating Google maps with advanced "
5246
- "markers, custom layers and overlays for your website."
5247
  msgstr ""
5248
 
5249
  #: wd/includes/overview.php:103
@@ -5252,8 +4912,8 @@ msgstr ""
5252
 
5253
  #: wd/includes/overview.php:104
5254
  msgid ""
5255
- "Create responsive, highly configurable sliders with various effects for your "
5256
- "WordPress site."
5257
  msgstr ""
5258
 
5259
  #: wd/includes/overview.php:109
@@ -5262,8 +4922,8 @@ msgstr ""
5262
 
5263
  #: wd/includes/overview.php:110
5264
  msgid ""
5265
- "Spider Event Calendar is a highly configurable product which allows you to "
5266
- "have multiple organized events."
5267
  msgstr ""
5268
 
5269
  #: wd/includes/overview.php:115
@@ -5272,13 +4932,13 @@ msgstr ""
5272
 
5273
  #: wd/includes/overview.php:116
5274
  msgid ""
5275
- "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
5276
- "based feeds on your website."
5277
  msgstr ""
5278
 
5279
  #: wd/includes/overview.php:169
5280
  msgid "Not set"
5281
- msgstr ""
5282
 
5283
  #: wd/includes/overview.php:174
5284
  msgid "On"
@@ -5288,9 +4948,8 @@ msgstr ""
5288
  msgid "Off"
5289
  msgstr ""
5290
 
5291
- #: wd/includes/overview.php:185 wd/includes/overview.php:193
5292
- #: wd/includes/overview.php:200 wd/includes/overview.php:207
5293
- #: wd/includes/overview.php:215 wd/includes/overview.php:222
5294
  msgid "N/A"
5295
  msgstr ""
5296
 
@@ -5312,35 +4971,36 @@ msgstr ""
5312
 
5313
  #: wd/includes/subscribe.php:49
5314
  msgid "Wordpress version"
5315
- msgstr ""
5316
 
5317
  #: wd/includes/subscribe.php:53
5318
  msgid "List of plugins"
5319
- msgstr ""
5320
 
5321
  #: wd/templates/display_deactivation_popup.php:8
5322
  msgid ""
5323
- "Please let us know why you are deactivating. Your answer will help us to "
5324
- "serve you better"
5325
  msgstr ""
 
 
5326
 
5327
  #: wd/templates/display_deactivation_popup.php:21
5328
  msgid "Deactivate"
5329
- msgstr ""
5330
 
5331
  #: wd/templates/display_deactivation_popup.php:22
5332
  msgid "Submit and deactivate"
5333
- msgstr ""
5334
 
5335
  #: wd/templates/display_overview.php:6
5336
  #, php-format
5337
  msgid "Welcome to %s"
5338
- msgstr ""
5339
 
5340
  #: wd/templates/display_overview.php:8
5341
  #, php-format
5342
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
5343
- msgstr ""
5344
 
5345
  #: wd/templates/display_overview_deals.php:12
5346
  #, php-format
@@ -5349,17 +5009,15 @@ msgstr ""
5349
 
5350
  #: wd/templates/display_overview_deals.php:13
5351
  msgid "plugins"
5352
- msgstr ""
5353
 
5354
- #: wd/templates/display_overview_deals.php:14
5355
- #: wd/templates/display_overview_deals.php:58
5356
  msgid "for"
5357
- msgstr ""
5358
 
5359
- #: wd/templates/display_overview_deals.php:14
5360
- #: wd/templates/display_overview_deals.php:58
5361
  msgid "only"
5362
- msgstr ""
5363
 
5364
  #: wd/templates/display_overview_deals.php:16
5365
  msgid "Save 80%"
@@ -5367,7 +5025,7 @@ msgstr ""
5367
 
5368
  #: wd/templates/display_overview_deals.php:35
5369
  msgid "Download"
5370
- msgstr ""
5371
 
5372
  #: wd/templates/display_overview_deals.php:45
5373
  msgid "Get all plugins"
@@ -5383,14 +5041,14 @@ msgstr ""
5383
 
5384
  #: wd/templates/display_overview_deals.php:77
5385
  msgid "Find out more"
5386
- msgstr ""
5387
 
5388
  #: wd/templates/display_overview_support.php:3
5389
  #, php-format
5390
  msgid ""
5391
- "You may contact us by filling in this form or by email %s any time you need "
5392
- "professional support or have any questions. You can also fill in the form to "
5393
- "leave your comments or feedback."
5394
  msgstr ""
5395
 
5396
  #: wd/templates/display_overview_support.php:6
@@ -5399,8 +5057,8 @@ msgstr ""
5399
 
5400
  #: wd/templates/display_overview_support.php:8
5401
  msgid ""
5402
- "When contacting support, consider copying and pasting this information in "
5403
- "your support request."
5404
  msgstr ""
5405
 
5406
  #: wd/templates/display_overview_support.php:10
@@ -5413,7 +5071,7 @@ msgstr ""
5413
 
5414
  #: wd/templates/display_overview_support.php:20
5415
  msgid "Server Settings"
5416
- msgstr ""
5417
 
5418
  #: wd/templates/display_overview_support.php:26
5419
  msgid "Graphic Library"
@@ -5425,45 +5083,44 @@ msgstr ""
5425
 
5426
  #: wd/templates/display_overview_user_guide.php:36
5427
  msgid "FAQ"
5428
- msgstr ""
5429
 
5430
  #: wd/templates/display_overview_user_guide.php:40
5431
  msgid "Addons"
5432
- msgstr ""
5433
 
5434
  #: wd/templates/display_overview_welcome.php:18
5435
  msgid "Run Install Wizard "
5436
- msgstr ""
5437
 
5438
  #: wd/templates/display_overview_welcome.php:26
5439
  msgid "More features"
5440
- msgstr ""
5441
 
5442
  #: wd/templates/display_subscribe.php:9
5443
  msgid "Hi there"
5444
- msgstr ""
5445
 
5446
  #: wd/templates/display_subscribe.php:11
5447
  #, php-format
5448
  msgid ""
5449
- "Allow %s to collect some usage data. This will allow you to get more out of "
5450
- "your plugin experience - get awesome customer support, receive exclusive "
5451
- "deals and discounts on premium products and more. You can choose to skip "
5452
- "this step, %s will still work just fine."
5453
  msgstr ""
5454
 
5455
  #: wd/templates/display_subscribe.php:19
5456
  msgid "What data is being collected?"
5457
- msgstr ""
5458
 
5459
  #: wd/templates/display_subscribe.php:36
5460
  msgid "Privacy Policy"
5461
- msgstr ""
5462
 
5463
  #: wd/templates/display_subscribe.php:42
5464
  msgid "Terms of Use"
5465
- msgstr ""
5466
 
5467
  #: wd/wd.php:72
5468
  msgid "Overview"
5469
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2018-01-24 10:49+0400\n"
5
+ "PO-Revision-Date: 2018-04-22 21:04+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: el\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 2.0.7\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
21
 
22
  #: addons/addons.php:8
23
  msgid ""
24
+ "Using Photo Gallery Ecommerce you can sell images included in galleries either as digital "
25
+ "downloads or products/prints via Paypal or Stripe."
26
  msgstr ""
27
 
28
  #: addons/addons.php:13
33
 
34
  #: addons/addons.php:15
35
  msgid ""
36
+ "Photo Gallery Facebook is an add-on, which helps to display Facebook photos and videos "
37
+ "within Photo Gallery plugin. You can create Facebook-only galleries, embed individual "
38
+ "images and videos or include Facebook albums within mixed type albums."
 
39
  msgstr ""
40
 
41
  #: addons/addons.php:20
44
 
45
  #: addons/addons.php:22
46
  msgid ""
47
+ "This addon integrates NextGen with Photo Gallery allowing to import images and related "
48
+ "data from NextGen to use with Photo Gallery"
49
  msgstr ""
50
 
51
  #: addons/addons.php:27
52
  msgid "Photo Gallery Export / Import"
53
+ msgstr "Εισαγωγή / Εξαγωγή Photo Gallery"
54
 
55
  #: addons/addons.php:29
56
  msgid ""
57
+ "Photo Gallery Export/Import helps to move created galleries and gallery groups from one "
58
+ "site to another. This way you can save the gallery/album options and manual modifications."
 
59
  msgstr ""
60
 
61
  #: addons/addons.php:38
62
  msgid "Photo Gallery Add-ons"
63
+ msgstr "Πρόσθετα Photo Gallery"
64
 
65
  #: addons/addons.php:71
66
  msgid "GET THIS ADD ON"
67
+ msgstr "ΑΠΟΚΤΗΣΕ ΑΥΤΟ ΤΟ ΠΡΟΣΘΕΤΟ"
68
 
69
  #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
70
  #: admin/views/Galleries.php:763 photo-gallery.php:260
71
  msgid "Tags"
72
+ msgstr "Ετικέτες"
73
 
74
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
75
  #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
76
+ #: admin/views/Albums.php:103 admin/views/Albums.php:179 admin/views/Comments.php:106
77
+ #: admin/views/Galleries.php:108 admin/views/Galleries.php:203 admin/views/Galleries.php:726
 
78
  msgid "Publish"
79
+ msgstr "Δημοσίευση"
80
 
81
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
82
  #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
83
  msgid "published"
84
+ msgstr "δημοσιεύτηκε"
85
 
86
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
87
  #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
88
+ #: admin/views/Albums.php:103 admin/views/Comments.php:106 admin/views/Galleries.php:108
89
+ #: admin/views/Galleries.php:726
90
  msgid "Unpublish"
91
+ msgstr "Αποδημοσίευση"
92
 
93
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
94
  #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
95
  msgid "unpublished"
96
+ msgstr "αποδημοσιεύτηκε"
97
 
98
+ #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39 admin/views/Albums.php:104
99
+ #: admin/views/Themes.php:100
100
  msgid "Duplicate"
101
+ msgstr "Κλωνοποίηση"
102
 
103
  #: admin/controllers/Albums.php:47
104
  msgid "duplicate"
105
+ msgstr "κλωνοποίηση"
106
 
107
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
108
  #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
109
  #: admin/controllers/Ratings.php:41 admin/controllers/Themes.php:43
110
+ #: admin/views/Albums.php:105 admin/views/Comments.php:109 admin/views/Galleries.php:109
111
+ #: admin/views/Galleries.php:733 admin/views/Ratings.php:84 admin/views/Themes.php:101
 
 
 
112
  msgid "Delete"
113
+ msgstr "Διαγραφή"
114
 
115
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
116
  #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
117
  #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
118
  msgid "deleted"
119
+ msgstr "διαγράφηκε"
120
 
121
  #: admin/controllers/Albums.php:93 photo-gallery.php:257
122
  msgid "Gallery Groups"
123
+ msgstr "Γκρουπ Συλλογών"
124
 
125
  #: admin/controllers/Albumsgalleries.php:50
126
  msgid "Galleries / Gallery groups"
127
+ msgstr "Συλλογές / Γκρουπ Συλλογών"
128
 
129
  #: admin/controllers/Comments.php:93 photo-gallery.php:268
 
 
130
  msgid "Comments"
131
+ msgstr "Σχόλια"
132
 
133
  #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
134
  msgid "Filter by gallery"
135
+ msgstr "Φιλτράρισμα ανά Συλλογή"
136
 
137
  #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
138
  msgid "Filter by image"
139
+ msgstr "Φιλτράρισμα ανά εικόνα"
140
 
141
  #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
142
  msgid "Resize"
143
+ msgstr "Αλλαγή μεγέθους"
144
 
145
  #: admin/controllers/Galleries.php:49
146
  msgid "resized"
148
 
149
  #: admin/controllers/Galleries.php:52
150
  msgid "Recreate thumbnail"
151
+ msgstr "Αναδημιουργία μικρογραφίας"
152
 
153
  #: admin/controllers/Galleries.php:53
154
  msgid "recreated"
155
+ msgstr "αναδημιουργήθηκε"
156
 
157
  #: admin/controllers/Galleries.php:56
158
  msgid "Rotate left"
159
+ msgstr "Περιστροφή αριστερά"
160
 
161
  #: admin/controllers/Galleries.php:57
 
 
162
  msgid "rotated left"
163
+ msgstr "περιστράφηκε αριστερά"
164
 
165
  #: admin/controllers/Galleries.php:60
166
  msgid "Rotate right"
167
+ msgstr "Περιστροφή δεξιά"
168
 
169
  #: admin/controllers/Galleries.php:61
170
  msgid "rotated right"
171
+ msgstr "περιστράφηκε δεξιά"
172
 
173
  #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
174
  msgid "Set watermark"
175
+ msgstr "Υδατογράφημα"
176
 
177
  #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
178
  #: admin/controllers/Galleries.php:77
180
  msgstr ""
181
 
182
  #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
183
+ #: admin/views/Themes.php:185 framework/WDWLibrary.php:317 framework/WDWLibrary.php:495
184
+ #: framework/WDWLibrary.php:814 framework/WDWLibrary.php:849
 
185
  msgid "Reset"
186
  msgstr "Επαναφορά"
187
 
188
  #: admin/controllers/Galleries.php:69
 
 
189
  msgid "reset"
190
+ msgstr "επαναφορά"
191
 
192
  #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
193
+ #: admin/views/Galleries.php:107 admin/views/Galleries.php:716 admin/views/Themes.php:99
 
194
  msgid "Edit"
195
+ msgstr "Επεξεργασία"
196
 
197
  #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
198
  msgid "Add tag"
199
+ msgstr "Προσθήκη ετικέτας"
200
 
201
  #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
 
 
202
  msgid "Galleries"
203
+ msgstr "Συλλογές"
204
 
205
  #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
206
  msgid "Item Succesfully Saved."
207
+ msgstr "Το στοιχείο αποθηκεύτηκε επιτυχώς."
208
 
209
  #: admin/controllers/Galleries.php:441
210
  msgid ""
211
+ " Selected pricelist item longest dimension greater than some original images dimensions."
 
212
  msgstr ""
213
 
214
  #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
215
  msgid ""
216
+ "Selected pricelist item longest dimension greater than some original images dimensions."
 
217
  msgstr ""
218
 
219
  #: admin/controllers/Options.php:62
220
  msgid "Edit options"
221
+ msgstr "Επεξεργασία επιλογών"
222
 
223
  #: admin/controllers/Options.php:106
224
  msgid "Default values restored. Changes must be saved."
225
+ msgstr "Οι αρχικές τιμές επαναφέρθηκαν. Οι αλλαγές πρέπει να αποθηκευτούν."
226
 
227
  #: admin/controllers/Options.php:137
228
  msgid "Uploads directory doesn't exist. Old value is restored."
229
+ msgstr "Ο φάκελος μεταφορτώσεων δεν υπάρχει. Επαναφέρθηκε η προηγούμενη τιμή."
230
 
231
  #: admin/controllers/Options.php:140
232
  msgid ""
233
+ "Warning: \"photo-gallery\" folder already exists in uploads directory. Old value is "
234
+ "restored."
235
  msgstr ""
236
+ "Προσοχή: ο φάκελος \"photo-gallery\" υπάρχει ήδη στη λίστα αρχείων. Επαναφέρθηκε η "
237
+ "προγενέστερη τιμή."
238
 
239
  #: admin/controllers/Options.php:180
240
  msgid "All thumbnails are successfully recreated."
241
+ msgstr "Όλες οι μικρογραφίες επαναδημιουργήθηκαν επιτυχώς."
242
 
243
  #: admin/controllers/Options.php:207
244
  msgid "All images are successfully watermarked."
245
+ msgstr "Το υδατογράφημα εισήχθη επιτυχώς σε όλες τις εικόνες."
246
 
247
  #: admin/controllers/Options.php:212
248
  msgid "All images are successfully reset."
249
+ msgstr "Όλες οι εικόνες αρχικοποιήθηκαν επιτυχώς."
250
 
251
  #: admin/controllers/Ratings.php:86 photo-gallery.php:271
252
  msgid "Ratings"
253
+ msgstr "Αξιολογήσεις"
254
 
255
  #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
256
  #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
257
+ #: admin/views/Options.php:1497 admin/views/Options.php:1641 admin/views/Shortcode.php:1387
 
258
  msgid "None"
259
+ msgstr "Καμία."
260
 
261
  #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
262
  msgid "Cube Horizontal"
315
  msgstr ""
316
 
317
  #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
318
+ #: admin/views/Shortcode.php:615 admin/views/Widget.php:156 framework/WDWLibrary.php:891
 
319
  msgid "Random"
320
+ msgstr "Τυχαίος"
321
 
322
+ #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74 photo-gallery.php:1326
 
323
  msgid "Thumbnails"
324
+ msgstr "Μικρογραφίες"
325
 
326
  #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
327
+ #: admin/controllers/Themes.php:265 admin/views/Options.php:456 admin/views/Options.php:462
328
+ #: admin/views/Options.php:1017 admin/views/Shortcode.php:82 admin/views/Shortcode.php:152
 
329
  #: admin/views/Shortcode.php:344 admin/views/Shortcode.php:1012
330
+ #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136 photo-gallery.php:1330
 
331
  msgid "Masonry"
332
  msgstr ""
333
 
334
  #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
335
+ #: admin/views/Options.php:493 admin/views/Options.php:511 admin/views/Options.php:1018
336
+ #: admin/views/Shortcode.php:91 admin/views/Shortcode.php:359 admin/views/Shortcode.php:1013
 
337
  #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
338
  #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
339
  msgid "Mosaic"
340
  msgstr ""
341
 
342
  #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
343
+ #: admin/views/Options.php:651 admin/views/Shortcode.php:100 photo-gallery.php:1300
344
+ #: photo-gallery.php:1338
345
  msgid "Slideshow"
346
  msgstr ""
347
 
356
  msgstr ""
357
 
358
  #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
359
+ #: admin/views/Options.php:866 admin/views/Shortcode.php:121 photo-gallery.php:1370
 
360
  msgid "Carousel"
361
  msgstr ""
362
 
374
 
375
  #: admin/controllers/Themes.php:88 photo-gallery.php:264
376
  msgid "Themes"
377
+ msgstr "Θέματα"
378
 
379
  #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
380
+ #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060 admin/views/Widget.php:135
 
381
  msgid "Thumbnail"
382
+ msgstr "Μικρογραφία"
383
 
384
  #: admin/controllers/Themes.php:268
385
  msgid "Image browser"
386
+ msgstr "Περιηγητής εικόνων"
387
 
388
  #: admin/controllers/Themes.php:269
389
  msgid "Compact album"
401
  msgid "Blog style"
402
  msgstr ""
403
 
404
+ #: admin/controllers/Themes.php:273 admin/views/Options.php:78 admin/views/Shortcode.php:1115
405
+ #: admin/views/WidgetTags.php:98 photo-gallery.php:1292 photo-gallery.php:1362
 
406
  msgid "Lightbox"
407
  msgstr ""
408
 
409
  #: admin/controllers/Themes.php:274
410
  msgid "Navigation"
411
+ msgstr "Πλοήγηση"
412
 
413
  #: admin/controllers/Themes.php:280
414
  msgid "Solid"
442
  msgid "Outset"
443
  msgstr ""
444
 
445
+ #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161 admin/views/Themes.php:3721
446
+ #: admin/views/Themes.php:4203
447
  msgid "Left"
448
+ msgstr "Αριστερά"
449
 
450
  #: admin/controllers/Themes.php:306
451
  msgid "Center"
452
+ msgstr "Κέντρο"
453
 
454
+ #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159 admin/views/Themes.php:3719
455
+ #: admin/views/Themes.php:4205
456
  msgid "Right"
457
+ msgstr "Δεξιά"
458
 
459
  #: admin/controllers/Themes.php:311
460
  msgid "Lighter"
516
  #: admin/views/Options.php:332
517
  #, php-format
518
  msgid "Uninstall %s"
519
+ msgstr "Απεγκατάσταση %s"
520
 
521
  #: admin/controllers/Widget.php:14
522
  msgid "Add Photo Gallery albums or galleries to Your widget area."
532
 
533
  #: admin/models/Comments.php:61 admin/models/Ratings.php:81
534
  msgid "All galleries"
535
+ msgstr "Όλες οι galleries"
536
 
537
  #: admin/models/Comments.php:75 admin/models/Ratings.php:100
538
  msgid "All images"
539
+ msgstr "Όλες οι εικόνες"
540
 
541
+ #: admin/views/AddTags.php:65 admin/views/Albums.php:50 admin/views/Comments.php:61
542
+ #: admin/views/Themes.php:72
543
  msgid "Select all"
544
+ msgstr "Επιλογή όλων"
545
 
546
+ #: admin/views/AddTags.php:68 admin/views/AddTags.php:86 admin/views/Albums.php:89
547
+ #: admin/views/Comments.php:64 admin/views/Comments.php:87 admin/views/Galleries.php:51
 
548
  #: admin/views/Galleries.php:54 admin/views/Galleries.php:94
549
+ #: frontend/views/BWGViewGalleryBox.php:1425 frontend/views/BWGViewGalleryBox.php:1453
550
+ #: frontend/views/BWGViewGalleryBox.php:1460 frontend/views/BWGViewGalleryBox.php:1569
 
 
551
  #: frontend/views/BWGViewGalleryBox.php:1684
552
  msgid "Name"
553
  msgstr "Όνομα"
554
 
555
  #: admin/views/AddTags.php:107
556
  msgid "Add to image"
557
+ msgstr "Προσθήκη στην εικόνα"
558
 
559
  #: admin/views/AdminView.php:94
560
  msgid "Add New"
561
+ msgstr "Προσθήκη νέας"
562
 
563
+ #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316 framework/WDWLibrary.php:494
564
+ #: framework/WDWLibrary.php:817 framework/WDWLibrary.php:846 photo-gallery.php:1009
 
565
  msgid "Search"
566
  msgstr "Αναζήτηση"
567
 
568
  #: admin/views/AdminView.php:226
 
 
569
  msgid "First page"
570
+ msgstr "Πρώτη σελίδα"
571
 
572
  #: admin/views/AdminView.php:227
 
 
573
  msgid "Previous page"
574
+ msgstr "Προηγούμενη σελίδα"
575
 
576
  #: admin/views/AdminView.php:232
577
  msgid "Current Page"
578
+ msgstr "Τρέχουσα"
579
 
580
+ #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447 framework/WDWLibrary.php:596
581
+ #: framework/WDWLibrary.php:679
582
  msgid "of"
583
+ msgstr "από"
584
 
585
  #: admin/views/AdminView.php:248
586
  #, fuzzy
587
  #| msgid "Next"
588
  msgid "Next page"
589
+ msgstr "Επόμενη"
590
 
591
  #: admin/views/AdminView.php:249
592
  #, fuzzy
593
  #| msgid "Last"
594
  msgid "Last page"
595
+ msgstr "Τελευταία"
596
 
597
  #: admin/views/AdminView.php:281 filemanager/view.php:248
598
  msgid "Select All"
599
+ msgstr "Επιλογή Όλων"
600
 
601
  #: admin/views/AdminView.php:286
602
  msgid "Select bulk action"
603
+ msgstr "Επιλογή μαζικής ενέργειας"
604
 
605
  #: admin/views/AdminView.php:288
606
  msgid "Bulk Actions"
607
+ msgstr "Μαζικές ενέργειες"
608
 
609
  #: admin/views/AdminView.php:297
610
  msgid "Apply"
611
+ msgstr "Εφαρμογή"
612
 
613
  #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
614
  #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
615
  #: admin/views/Themes.php:75 admin/views/Themes.php:94
616
  msgid "Title"
617
+ msgstr "Τίτλος"
618
 
619
+ #: admin/views/Albums.php:54 admin/views/Albums.php:112 admin/views/Albums.php:255
620
+ #: admin/views/Galleries.php:56 admin/views/Galleries.php:117 admin/views/Galleries.php:305
 
621
  msgid "Author"
622
+ msgstr "Συντάκτης"
623
 
624
+ #: admin/views/Albums.php:98 admin/views/Albums.php:345 admin/views/Albumsgalleries.php:110
625
+ #: admin/views/Comments.php:99 admin/views/Galleries.php:103 admin/views/Galleries.php:712
 
626
  msgid "Unpublished"
627
+ msgstr "Αποδημοσιευμένα"
628
 
629
+ #: admin/views/Albums.php:105 admin/views/Comments.php:109 admin/views/Galleries.php:109
630
+ #: admin/views/Galleries.php:727 admin/views/Ratings.php:84 admin/views/Themes.php:101
 
631
  msgid "Do you want to delete selected item?"
632
+ msgstr "Θέλετε να διαγράψετε το επιλεγμένο στοιχείο?"
633
 
634
+ #: admin/views/Albums.php:106 admin/views/Albums.php:182 admin/views/Galleries.php:110
635
+ #: admin/views/Galleries.php:207
 
 
636
  msgid "Preview"
637
+ msgstr "Προεπισκόπηση"
638
 
639
  #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
640
+ #: admin/views/Comments.php:112 admin/views/Galleries.php:113 admin/views/Galleries.php:736
641
+ #: admin/views/Ratings.php:87 admin/views/Themes.php:104
 
 
 
642
  msgid "Show more details"
643
+ msgstr "Εμφάνιση λεπτομερειών"
644
 
645
  #: admin/views/Albums.php:166
646
  msgid "Gallery Group Title"
647
+ msgstr "Τίτλος Γκρουπ Συλλογών"
648
 
649
+ #: admin/views/Albums.php:173 admin/views/Albums.php:295 admin/views/Galleries.php:195
650
+ #: admin/views/Galleries.php:265
651
  msgid "How to use"
652
+ msgstr "Οδηγίες χρήσης"
653
 
654
+ #: admin/views/Albums.php:179 admin/views/Galleries.php:203 admin/views/Galleries.php:575
655
+ #: admin/views/Shortcode.php:1631 admin/views/Shortcode.php:2888 admin/views/Themes.php:175
 
656
  msgid "Update"
657
+ msgstr "Ανανέωση"
658
 
659
  #: admin/views/Albums.php:193 admin/views/Galleries.php:228
660
  msgid "Preview image"
661
+ msgstr "Προεπισκόπηση εικόνας"
662
 
663
  #: admin/views/Albums.php:195 admin/views/Galleries.php:232
664
  msgid "Add Preview Image"
665
+ msgstr "Προσθήκη Εικόνας Προεπισκόπησης"
666
 
667
+ #: admin/views/Albums.php:196 admin/views/Albums.php:238 admin/views/Galleries.php:235
668
+ #: admin/views/Galleries.php:490 filemanager/view.php:256
 
669
  msgid "Add"
670
+ msgstr "Προσθήκη"
671
 
672
  #: admin/views/Albums.php:204 admin/views/Galleries.php:245
673
  msgid "Published"
674
+ msgstr "Δημοσιευμένο"
675
+
676
+ #: admin/views/Albums.php:206 admin/views/Galleries.php:247 admin/views/Options.php:132
677
+ #: admin/views/Options.php:157 admin/views/Options.php:166 admin/views/Options.php:175
678
+ #: admin/views/Options.php:193 admin/views/Options.php:202 admin/views/Options.php:211
679
+ #: admin/views/Options.php:220 admin/views/Options.php:233 admin/views/Options.php:243
680
+ #: admin/views/Options.php:252 admin/views/Options.php:262 admin/views/Options.php:290
681
+ #: admin/views/Options.php:301 admin/views/Options.php:312 admin/views/Options.php:352
682
+ #: admin/views/Options.php:415 admin/views/Options.php:424 admin/views/Options.php:433
683
+ #: admin/views/Options.php:442 admin/views/Options.php:476 admin/views/Options.php:523
684
+ #: admin/views/Options.php:558 admin/views/Options.php:567 admin/views/Options.php:612
685
+ #: admin/views/Options.php:623 admin/views/Options.php:634 admin/views/Options.php:702
686
+ #: admin/views/Options.php:711 admin/views/Options.php:720 admin/views/Options.php:740
687
+ #: admin/views/Options.php:759 admin/views/Options.php:795 admin/views/Options.php:805
688
+ #: admin/views/Options.php:841 admin/views/Options.php:922 admin/views/Options.php:932
689
+ #: admin/views/Options.php:942 admin/views/Options.php:952 admin/views/Options.php:962
690
+ #: admin/views/Options.php:982 admin/views/Options.php:1007 admin/views/Options.php:1040
691
+ #: admin/views/Options.php:1084 admin/views/Options.php:1129 admin/views/Options.php:1146
692
+ #: admin/views/Options.php:1165 admin/views/Options.php:1188 admin/views/Options.php:1210
693
+ #: admin/views/Options.php:1219 admin/views/Options.php:1228 admin/views/Options.php:1237
694
+ #: admin/views/Options.php:1258 admin/views/Options.php:1268 admin/views/Options.php:1278
695
+ #: admin/views/Options.php:1287 admin/views/Options.php:1296 admin/views/Options.php:1305
696
+ #: admin/views/Options.php:1314 admin/views/Options.php:1334 admin/views/Options.php:1346
697
+ #: admin/views/Options.php:1358 admin/views/Options.php:1368 admin/views/Options.php:1378
698
+ #: admin/views/Options.php:1388 admin/views/Options.php:1398 admin/views/Options.php:1408
699
+ #: admin/views/Options.php:1421 admin/views/Shortcode.php:375 admin/views/Shortcode.php:419
700
+ #: admin/views/Shortcode.php:559 admin/views/Shortcode.php:566 admin/views/Shortcode.php:582
701
+ #: admin/views/Shortcode.php:589 admin/views/Shortcode.php:637 admin/views/Shortcode.php:644
702
+ #: admin/views/Shortcode.php:651 admin/views/Shortcode.php:676 admin/views/Shortcode.php:693
703
+ #: admin/views/Shortcode.php:727 admin/views/Shortcode.php:771 admin/views/Shortcode.php:815
704
+ #: admin/views/Shortcode.php:843 admin/views/Shortcode.php:850 admin/views/Shortcode.php:857
705
+ #: admin/views/Shortcode.php:865 admin/views/Shortcode.php:880 admin/views/Shortcode.php:887
706
+ #: admin/views/Shortcode.php:919 admin/views/Shortcode.php:927 admin/views/Shortcode.php:959
707
+ #: admin/views/Shortcode.php:975 admin/views/Shortcode.php:982 admin/views/Shortcode.php:989
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
708
  #: admin/views/Shortcode.php:996 admin/views/Shortcode.php:1035
709
  #: admin/views/Shortcode.php:1084 admin/views/Shortcode.php:1129
710
  #: admin/views/Shortcode.php:1139 admin/views/Shortcode.php:1181
716
  #: admin/views/Shortcode.php:1290 admin/views/Shortcode.php:1298
717
  #: admin/views/Shortcode.php:1306 admin/views/Shortcode.php:1314
718
  #: admin/views/Shortcode.php:1325 admin/views/Shortcode.php:1352
719
+ #: admin/views/Shortcode.php:1369 admin/views/Shortcode.php:1378 admin/views/Themes.php:282
720
+ #: admin/views/Themes.php:631 admin/views/Themes.php:878 admin/views/Themes.php:1872
721
+ #: admin/views/Themes.php:2209 admin/views/Themes.php:2831 admin/views/Themes.php:4520
722
+ #: admin/views/Themes.php:4569 admin/views/Uninstall.php:96
723
+ #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
724
+ #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:91
725
+ #: admin/views/WidgetTags.php:113 wd/includes/overview.php:227 wd/includes/overview.php:234
 
 
726
  #: wd/includes/overview.php:241 wd/includes/overview.php:251
727
  msgid "Yes"
728
+ msgstr "Ναι"
729
+
730
+ #: admin/views/Albums.php:208 admin/views/Galleries.php:249 admin/views/Options.php:133
731
+ #: admin/views/Options.php:158 admin/views/Options.php:167 admin/views/Options.php:176
732
+ #: admin/views/Options.php:194 admin/views/Options.php:203 admin/views/Options.php:212
733
+ #: admin/views/Options.php:221 admin/views/Options.php:234 admin/views/Options.php:244
734
+ #: admin/views/Options.php:253 admin/views/Options.php:263 admin/views/Options.php:291
735
+ #: admin/views/Options.php:302 admin/views/Options.php:313 admin/views/Options.php:353
736
+ #: admin/views/Options.php:416 admin/views/Options.php:425 admin/views/Options.php:434
737
+ #: admin/views/Options.php:443 admin/views/Options.php:477 admin/views/Options.php:524
738
+ #: admin/views/Options.php:559 admin/views/Options.php:568 admin/views/Options.php:613
739
+ #: admin/views/Options.php:624 admin/views/Options.php:635 admin/views/Options.php:703
740
+ #: admin/views/Options.php:712 admin/views/Options.php:721 admin/views/Options.php:741
741
+ #: admin/views/Options.php:760 admin/views/Options.php:796 admin/views/Options.php:806
742
+ #: admin/views/Options.php:842 admin/views/Options.php:923 admin/views/Options.php:933
743
+ #: admin/views/Options.php:943 admin/views/Options.php:953 admin/views/Options.php:963
744
+ #: admin/views/Options.php:983 admin/views/Options.php:1008 admin/views/Options.php:1041
745
+ #: admin/views/Options.php:1085 admin/views/Options.php:1130 admin/views/Options.php:1147
746
+ #: admin/views/Options.php:1166 admin/views/Options.php:1202 admin/views/Options.php:1211
747
+ #: admin/views/Options.php:1220 admin/views/Options.php:1229 admin/views/Options.php:1238
748
+ #: admin/views/Options.php:1259 admin/views/Options.php:1269 admin/views/Options.php:1279
749
+ #: admin/views/Options.php:1288 admin/views/Options.php:1297 admin/views/Options.php:1306
750
+ #: admin/views/Options.php:1315 admin/views/Options.php:1335 admin/views/Options.php:1349
751
+ #: admin/views/Options.php:1359 admin/views/Options.php:1369 admin/views/Options.php:1379
752
+ #: admin/views/Options.php:1389 admin/views/Options.php:1399 admin/views/Options.php:1409
753
+ #: admin/views/Options.php:1422 admin/views/Shortcode.php:376 admin/views/Shortcode.php:420
754
+ #: admin/views/Shortcode.php:560 admin/views/Shortcode.php:567 admin/views/Shortcode.php:583
755
+ #: admin/views/Shortcode.php:590 admin/views/Shortcode.php:638 admin/views/Shortcode.php:645
756
+ #: admin/views/Shortcode.php:652 admin/views/Shortcode.php:677 admin/views/Shortcode.php:694
757
+ #: admin/views/Shortcode.php:728 admin/views/Shortcode.php:772 admin/views/Shortcode.php:816
758
+ #: admin/views/Shortcode.php:844 admin/views/Shortcode.php:851 admin/views/Shortcode.php:858
759
+ #: admin/views/Shortcode.php:866 admin/views/Shortcode.php:881 admin/views/Shortcode.php:888
760
+ #: admin/views/Shortcode.php:920 admin/views/Shortcode.php:928 admin/views/Shortcode.php:960
761
+ #: admin/views/Shortcode.php:976 admin/views/Shortcode.php:983 admin/views/Shortcode.php:990
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
762
  #: admin/views/Shortcode.php:997 admin/views/Shortcode.php:1036
763
  #: admin/views/Shortcode.php:1085 admin/views/Shortcode.php:1130
764
  #: admin/views/Shortcode.php:1140 admin/views/Shortcode.php:1182
770
  #: admin/views/Shortcode.php:1291 admin/views/Shortcode.php:1299
771
  #: admin/views/Shortcode.php:1307 admin/views/Shortcode.php:1315
772
  #: admin/views/Shortcode.php:1326 admin/views/Shortcode.php:1353
773
+ #: admin/views/Shortcode.php:1370 admin/views/Shortcode.php:1379 admin/views/Themes.php:284
774
+ #: admin/views/Themes.php:633 admin/views/Themes.php:880 admin/views/Themes.php:1874
775
+ #: admin/views/Themes.php:2211 admin/views/Themes.php:2833 admin/views/Themes.php:4522
776
+ #: admin/views/Themes.php:4571 admin/views/WidgetSlideshow.php:116
777
+ #: admin/views/WidgetSlideshow.php:122 admin/views/WidgetSlideshow.php:128
778
+ #: admin/views/WidgetTags.php:92 admin/views/WidgetTags.php:114 wd/includes/overview.php:229
779
+ #: wd/includes/overview.php:236 wd/includes/overview.php:243 wd/includes/overview.php:246
780
+ #: wd/includes/overview.php:251
 
 
781
  msgid "No"
782
+ msgstr "Όχι"
783
 
784
  #: admin/views/Albums.php:219
785
  msgid "Galleries and Gallery Groups"
786
+ msgstr "Συλλογές και Γκρουπ Συλλογών"
787
 
788
+ #: admin/views/Albums.php:247 admin/views/Albums.php:291 admin/views/Galleries.php:219
789
+ #: admin/views/Galleries.php:261 admin/views/Galleries.php:294 admin/views/Options.php:452
790
+ #: admin/views/Options.php:489 admin/views/Options.php:536 admin/views/Options.php:579
791
+ #: admin/views/Options.php:647 admin/views/Options.php:862 admin/views/Shortcode.php:266
 
 
792
  #: admin/views/Shortcode.php:1111
793
  msgid "Toggle panel:"
794
  msgstr ""
795
 
796
+ #: admin/views/Albums.php:251 admin/views/Galleries.php:298 admin/views/Options.php:81
797
+ #: admin/views/Shortcode.php:1344
798
  msgid "Advanced"
799
+ msgstr "Προχωρημένες ρυθμίσεις"
800
 
801
  #: admin/views/Albums.php:259 admin/views/Galleries.php:309
802
  msgid "Slug"
803
  msgstr ""
804
 
805
+ #: admin/views/Albums.php:264 admin/views/Galleries.php:314 admin/views/Galleries.php:635
806
+ #: admin/views/Galleries.php:742 frontend/views/BWGViewGalleryBox.php:1584
 
807
  msgid "Description"
808
+ msgstr "Περιγραφή"
809
 
810
  #: admin/views/Albums.php:300 admin/views/Galleries.php:270
811
  msgid "Page or Post editor"
821
 
822
  #: admin/views/Albums.php:305 admin/views/Galleries.php:275
823
  msgid "PHP code"
824
+ msgstr "PHP κώδικας"
825
 
826
  #: admin/views/Albums.php:306 admin/views/Galleries.php:276
827
  msgid "Copy and paste the PHP code into your template file."
828
+ msgstr "Αντιγράψτε και επικολλήστε τον PHP κώδικα στο αρχείο του θέματος σας."
829
 
830
+ #: admin/views/Albums.php:310 admin/views/Albums.php:312 admin/views/Galleries.php:280
831
+ #: admin/views/Galleries.php:282
832
  msgid "Widget"
833
  msgstr ""
834
 
838
 
839
  #: admin/views/Albums.php:336 admin/views/Galleries.php:689
840
  msgid "Drag to re-order"
841
+ msgstr "Σύρατε για αλλαγή σειράς"
842
 
843
  #: admin/views/Albums.php:344
844
  msgid "Remove"
845
+ msgstr "Αφαίρεση"
846
 
847
  #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
848
  #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
849
  msgid "Type"
850
+ msgstr "Τύπος"
851
 
852
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
853
  #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
 
 
854
  msgid "Gallery group"
855
+ msgstr "Γκρουπ Συλλογών"
856
 
857
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
858
+ #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192 admin/views/Shortcode.php:270
859
+ #: admin/views/Widget.php:117
860
  msgid "Gallery"
861
+ msgstr "Συλλογή"
862
 
863
  #: admin/views/Albumsgalleries.php:136
864
  msgid "Add to Gallery Group"
865
+ msgstr "Προσθήκη στο Γκρουπ Συλλογών"
866
 
867
  #: admin/views/Comments.php:67 admin/views/Comments.php:118
868
+ #: frontend/views/BWGViewGalleryBox.php:1431 frontend/views/BWGViewGalleryBox.php:1453
 
869
  #: frontend/views/BWGViewGalleryBox.php:1460
870
  msgid "Email"
871
  msgstr "email"
872
 
873
  #: admin/views/Comments.php:70 admin/views/Comments.php:124
874
+ #: frontend/views/BWGViewGalleryBox.php:1438 frontend/views/BWGViewGalleryBox.php:1453
 
875
  #: frontend/views/BWGViewGalleryBox.php:1460
876
  msgid "Comment"
877
  msgstr "Σχόλιο"
878
 
879
  #: admin/views/Editimage.php:196
880
  msgid "You can't crop this type of image."
881
+ msgstr "Δε μπορείτε να περικόψετε αυτόν τον τύπο εικόνας."
882
 
883
  #: admin/views/Editimage.php:277
884
  msgid "The thumbnail successfully croped."
885
+ msgstr "Η μικρογραφία περικόπηκε επιτυχώς."
886
 
887
  #: admin/views/Editimage.php:282
888
  msgid "Select the area for the thumbnail."
889
+ msgstr "Επιλέξτε την περιοχή για τη μικρογραφία."
890
 
891
  #: admin/views/Editimage.php:287
892
  msgid "Keep aspect ratio"
893
+ msgstr "Διατήρηση αναλογίας απεικόνισης"
894
 
895
  #: admin/views/Editimage.php:785
896
  msgid "Grayscale"
921
  msgstr ""
922
 
923
  #: admin/views/Editimage.php:811
 
 
924
  msgid "Reset image"
925
+ msgstr "Επαναφορά εικόνας"
926
 
927
  #: admin/views/Editimage.php:838
928
  msgid "Brightness"
929
+ msgstr "Φωτεινότητα"
930
 
931
  #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
932
  msgid "Press for result"
933
+ msgstr "Πατήστε για το αποτέλεσμα"
934
 
935
  #: admin/views/Editimage.php:864
936
  msgid "Contrast"
937
+ msgstr "Αντίθεση"
938
 
939
  #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
940
  msgid "Images count"
941
+ msgstr "Αριθμός εικόνων"
942
 
943
  #: admin/views/Galleries.php:188
 
 
944
  msgid "Gallery title"
945
+ msgstr "Τίτλος Συλλογής"
946
 
947
  #: admin/views/Galleries.php:223
948
  msgid "Basic"
949
+ msgstr "Βασικές ρυθμίσεις"
950
 
951
  #: admin/views/Galleries.php:340
952
  msgid "Gallery content type"
953
+ msgstr "Τύπος περιεχομένου συλλογής"
954
 
955
  #: admin/views/Galleries.php:343
956
  msgid "Mixed"
957
+ msgstr "Μεικτός"
958
 
959
  #: admin/views/Galleries.php:346
960
  msgid "Instagram only"
961
+ msgstr "Μόνο Instagram"
962
 
963
  #: admin/views/Galleries.php:349 admin/views/Options.php:1474
 
 
964
  msgid "Facebook"
965
+ msgstr "Facebook"
966
 
967
  #: admin/views/Galleries.php:357
968
  msgid "Instagram username"
969
+ msgstr "Όνομα Χρήστη Instagram"
970
 
971
  #: admin/views/Galleries.php:361
972
  msgid "Number of Instagram recent posts to add to gallery"
973
+ msgstr "Αριθμός πρόσφατων ποστς από Instagram για προσθήκη στη συλλογή"
974
 
975
  #: admin/views/Galleries.php:365
976
  msgid "Instagram embed type"
977
+ msgstr "Τύπος ενσωμάτωσης Instagram"
978
 
979
  #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
980
  msgid "Content"
981
+ msgstr "Περιεχόμενο"
982
 
983
  #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
984
  msgid "Whole post"
985
+ msgstr "Ολόκληρο το ποστ"
986
 
987
  #: admin/views/Galleries.php:372
 
 
988
  msgid "Gallery autoupdate option"
989
+ msgstr "Επιλογή αυτόματης ανανέωσης συλλογής"
990
 
991
  #: admin/views/Galleries.php:374
992
  msgid "No update"
993
+ msgstr "Όχι ανανέωση"
994
 
995
  #: admin/views/Galleries.php:376
996
  msgid "Add new media, keep old ones published."
997
+ msgstr "Προσθήκη νέων πολυμέσων, διατήρηση παλαιότερων."
998
 
999
  #: admin/views/Galleries.php:378
1000
  msgid "Add new media, unpublish old ones."
1001
+ msgstr "Προσθήκη νέων πολυμέσων, αποδημοσίευση παλαιότερων."
1002
 
1003
  #: admin/views/Galleries.php:381
1004
  msgid "Add Instagram Gallery"
1005
+ msgstr "Προσθήκη Συλλογής Instagram"
1006
 
1007
  #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1008
  msgid "Photo Gallery Facebook Integration"
1009
+ msgstr "Σύνδεση Facebook με Photo Gallery"
1010
 
1011
  #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1012
  #, php-format
1013
  msgid "Please install %s add-on to use this feature."
1014
+ msgstr "Παρακαλούμε εγκαταστήστε το πρόσθετο %s για να χρησιμοποιήσετε αυτή τη δυνατότητα."
1015
 
1016
  #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1017
  msgid "Add Images"
1018
+ msgstr "Προσθήκη Εικόνων"
1019
 
1020
  #: admin/views/Galleries.php:420
1021
  msgid "Import from Media Library"
1022
+ msgstr "Εισαγωγή από τη Βιβλιοθήκη Πολυμέσων"
1023
 
1024
  #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1025
  msgid "Embed Media"
1026
+ msgstr "Ενσωμάτωση Πολυμέσων"
1027
 
1028
  #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1029
  msgid "Social Bulk Embed"
1031
 
1032
  #: admin/views/Galleries.php:435
1033
  msgid "Optimize Images"
1034
+ msgstr "Βελτιστοποίηση Εικόνων"
1035
 
1036
  #: admin/views/Galleries.php:452
1037
  msgid "Pricelist"
1038
+ msgstr "Τιμοκατάλογος"
1039
 
1040
  #: admin/views/Galleries.php:453
1041
  msgid "Add pricelist"
1042
+ msgstr "Προσθήκη τιμοκαταλόγου"
1043
 
1044
  #: admin/views/Galleries.php:454
1045
  msgid "Remove pricelist"
1046
+ msgstr "Αφαίρεση τιμοκαταλόγου"
1047
 
1048
  #: admin/views/Galleries.php:471
1049
+ msgid "Enter YouTube, Vimeo, Instagram, Facebook, Flickr or Dailymotion URL here."
 
1050
  msgstr ""
1051
 
1052
  #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1053
  msgid "Add to gallery"
1054
+ msgstr "Προσθήκη στη gallery"
1055
 
1056
+ #: admin/views/Galleries.php:473 admin/views/Galleries.php:509 admin/views/Galleries.php:566
1057
+ #: admin/views/Galleries.php:576 filemanager/view.php:262 filemanager/view.php:263
 
1058
  #: wd/templates/display_deactivation_popup.php:23
1059
  msgid "Cancel"
1060
+ msgstr "Άκυρο"
1061
 
1062
  #: admin/views/Galleries.php:480
1063
  msgid "<b>Youtube</b> URL example:"
1064
+ msgstr "Παράδειγμα <b>Youtube</b> συνδέσμου:"
1065
 
1066
  #: admin/views/Galleries.php:484
1067
  msgid "<b>Vimeo</b> URL example:"
1068
+ msgstr "Παράδειγμα <b>Vimeo</b> συνδέσμου:"
1069
 
1070
  #: admin/views/Galleries.php:488
1071
  msgid "<b>Instagram</b> URL example:"
1072
+ msgstr "Παράδειγμα <b>Instagram</b> συνδέσμου:"
1073
 
1074
  #: admin/views/Galleries.php:490
1075
  msgid "post"
1076
+ msgstr "ποστ"
1077
 
1078
  #: admin/views/Galleries.php:490
1079
  msgid ""
1080
+ "to the end of URL if you want to embed the whole Instagram post, not only its content."
 
1081
  msgstr ""
1082
+ "στο τέλος του συνδέσμου αν θέλετε να ενσωματώσετε ολόκληρο το Instagram ποστ, όχι μόνο το "
1083
+ "περιεχόμενο."
1084
 
1085
  #: admin/views/Galleries.php:498
1086
  msgid "<b>Flickr</b> URL example:"
1087
+ msgstr "Παράδειγμα <b>Flickr</b> συνδέσμου:"
1088
 
1089
  #: admin/views/Galleries.php:502
1090
  msgid "<b>Dailymotion</b> URL example:"
1091
+ msgstr "Παράδειγμα <b>Dailymotion</b> συνδέσμου:"
1092
 
1093
  #: admin/views/Galleries.php:521
1094
  msgid "username:"
1095
+ msgstr "όνομα χρήστη:"
1096
 
1097
  #: admin/views/Galleries.php:529
1098
  msgid "Number of Instagram recent posts to add to gallery:"
1099
+ msgstr "Αριθμός πρόσφατων ποστς του Instagram για προσθήκη στη συλλογή:"
1100
 
1101
  #: admin/views/Galleries.php:537
1102
  msgid "embed type:"
1103
+ msgstr "τύπος ενσωμάτωσης:"
1104
 
1105
  #: admin/views/Galleries.php:556
1106
  msgid "Resize images to: "
1107
+ msgstr "Αλλαγή μεγέθους εικόνων σε: "
1108
 
1109
  #: admin/views/Galleries.php:559
1110
  msgid "The maximum size of resized image."
1111
+ msgstr "Το μέγιστο μέγεθος της αλλαγμένης εικόνας."
1112
 
1113
  #: admin/views/Galleries.php:580
1114
  msgid "Alt/Title: "
1115
+ msgstr "Alt/Τίτλος: "
1116
 
1117
  #: admin/views/Galleries.php:587
1118
  msgid "Redirect URL: "
1119
+ msgstr "Σύνδεσμος Ανακατεύθυνσης: "
1120
 
1121
  #: admin/views/Galleries.php:594
1122
  msgid "Description: "
1123
+ msgstr "Περιγραφή: "
1124
 
1125
  #: admin/views/Galleries.php:613
 
 
1126
  msgid "You have unsaved changes."
1127
+ msgstr "Έχετε κάνει αλλαγές που δεν έχουν αποθηκευτεί."
1128
 
1129
  #: admin/views/Galleries.php:626 photo-gallery.php:395
 
 
1130
  msgid "Show order column"
1131
+ msgstr "Εμφάνιση στήλης ταξινόμησης"
1132
 
1133
+ #: admin/views/Galleries.php:629 admin/views/Galleries.php:696 admin/views/Shortcode.php:611
1134
+ #: framework/WDWLibrary.php:889
1135
  msgid "Filename"
1136
  msgstr "Όνομα αρχείου"
1137
 
1138
+ #: admin/views/Galleries.php:633 admin/views/Options.php:1501 admin/views/Options.php:1645
1139
+ #: admin/views/Ratings.php:57 admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
 
1140
  #: admin/views/WidgetTags.php:86
1141
  msgid "Image"
1142
+ msgstr "Εικόνα"
1143
 
1144
  #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1145
  msgid "Alt/Title"
1146
+ msgstr "Alt/Τίτλος"
1147
 
1148
  #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1149
  msgid "Redirect URL"
1150
+ msgstr "Σύνδεσμος Ανακατεύθυνσης"
1151
 
1152
  #: admin/views/Galleries.php:705
1153
  msgid "Date modified"
1154
+ msgstr "Ημερομηνία ενημέρωσης"
1155
 
1156
  #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
1157
  msgid "Resolution"
1158
+ msgstr "Ανάλυση"
1159
 
1160
+ #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612 framework/WDWLibrary.php:890
 
1161
  msgid "Size"
1162
+ msgstr "Μέγεθος"
1163
 
1164
  #: admin/views/Galleries.php:717
1165
  msgid "Crop"
1166
+ msgstr "Περικοπή"
1167
 
1168
  #: admin/views/Galleries.php:772
1169
  msgid "Remove tag"
1170
+ msgstr "Αφαίρεση ετικέτας"
1171
 
1172
  #: admin/views/Options.php:44 admin/views/Themes.php:175
1173
  msgid "Save"
1174
+ msgstr "Αποθήκευση"
1175
 
1176
  #: admin/views/Options.php:50
1177
  msgid "Reset all options"
1178
+ msgstr "Αρχικοποίηση όλων των επιλογών"
1179
 
1180
  #: admin/views/Options.php:51 admin/views/Themes.php:180
1181
  msgid "Do you want to reset to default?"
1182
+ msgstr "Θέλετε όντως να επαναφέρετε όλες τις αρχικές ρυθμίσεις?"
1183
 
1184
  #: admin/views/Options.php:69
1185
  msgid "General"
1186
+ msgstr "Γενικά"
1187
 
1188
  #: admin/views/Options.php:90
1189
  msgid "Images directory"
1190
+ msgstr "Φάκελος εικόνων"
1191
 
1192
  #: admin/views/Options.php:95
1193
  msgid ""
1194
+ "Input an existing directory inside the Wordpress directory to store uploaded images.<br /"
1195
+ ">Old directory content will be moved to the new one."
1196
  msgstr ""
1197
 
1198
  #: admin/views/Options.php:100 admin/views/Options.php:899
1199
  msgid "Image dimensions"
1200
+ msgstr "Διαστάσεις εικόνας"
1201
 
1202
  #: admin/views/Options.php:105
1203
  msgid "The maximum size of the uploaded image (0 for original size)."
1204
+ msgstr "Το μέγιστο μέγεθος της ανεβασμένης εικόνας (0 για πρωτότυπο μέγεθος)."
1205
 
1206
  #: admin/views/Options.php:110
1207
  msgid "Generated thumbnail dimensions"
1208
+ msgstr "Διαστάσεις παραγόμενης μικρογραφίας"
1209
 
1210
  #: admin/views/Options.php:114
1211
  msgid "Recreate"
1212
+ msgstr "Αναδημιουργία"
1213
 
1214
  #: admin/views/Options.php:116
1215
  msgid ""
1216
+ "The maximum size of the generated thumbnail. Its dimensions should be larger than the ones "
1217
+ "of the frontend thumbnail."
1218
  msgstr ""
1219
+ "Το μέγιστο μέγεθος της παραγόμενης μικρογραφίας. Οι διαστάσεις της θα πρέπει να είναι "
1220
+ "μεγαλύτερες απ' αυτής στο frontend."
1221
 
1222
  #: admin/views/Options.php:121
1223
  msgid "Image quality"
1224
+ msgstr "Ποιότητα εικόνας"
1225
 
1226
  #: admin/views/Options.php:125
1227
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1228
+ msgstr "Ορίστε την ποιότητα των εικόνων της συλλογής. Βάλτε μια τιμή από το 0 μέχρι το 100%."
1229
 
1230
  #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1231
  msgid "Show search box"
1232
+ msgstr "Εμφάνιση πεδίου αναζήτησης"
1233
 
1234
  #: admin/views/Options.php:139
1235
  msgid "Add placeholder to search"
1236
+ msgstr "Προσθήκη πεδίου για αναζήτηση"
1237
 
1238
  #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1239
  msgid "Search box width"
1240
+ msgstr "Μήκος πεδίου αναζήτησης"
1241
 
1242
  #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1243
  msgid "Show \"Order by\" dropdown list"
1244
+ msgstr "Εμφάνιση αναδυόμενης λίστας \"Ταξινόμηση κατά\""
1245
 
1246
  #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
 
 
1247
  msgid "Show tag box"
1248
+ msgstr "Εμφάνιση πεδίου ετικετών"
1249
 
1250
  #: admin/views/Options.php:173
1251
  msgid "Preload images"
1252
+ msgstr "Προφόρτωση εικόνων"
1253
 
1254
  #: admin/views/Options.php:182
1255
  msgid "Count of images"
1256
+ msgstr "Αριθμός εικόνων"
1257
 
1258
  #: admin/views/Options.php:186
1259
  msgid "Count of images to preload (0 for all)."
1260
+ msgstr "Αριθμός εικόνων για προφόρτωση (0 για όλες)."
1261
 
1262
  #: admin/views/Options.php:191
1263
  msgid "Show/hide custom post types"
1273
 
1274
  #: admin/views/Options.php:218
1275
  msgid "Enable bulk download button"
1276
+ msgstr "Ενεργοποίηση κουμπιού για μαζικό κατέβασμα"
1277
 
1278
  #: admin/views/Options.php:223
1279
+ msgid "If enabled,it will be possible to download entire gallery with a single button."
 
 
1280
  msgstr ""
1281
+ "Αν ενεργοποιηθεί, θα μπορεί να μεταφορτωθεί ολόκληρη συλλογή με το πάτημα ενός κουμπιού."
1282
 
1283
  #: admin/views/Options.php:231
1284
  msgid "Right click protection"
1285
+ msgstr "Προστασία από δεξί κλικ"
1286
 
1287
  #: admin/views/Options.php:236
1288
  msgid "Disable image right click possibility."
1289
+ msgstr "Απενεργοποίηση δυνατότητας δεξιού κλικ στις εικόνες"
1290
 
1291
  #: admin/views/Options.php:241
1292
  msgid "Enable html editor"
1293
+ msgstr "Ενεργοποίηση html editor"
1294
 
1295
  #: admin/views/Options.php:250
1296
  msgid "Enable href attribute"
1298
 
1299
  #: admin/views/Options.php:255
1300
  msgid "Disable this option only if it conflicts with your theme."
1301
+ msgstr "Απενεργοποιήστε αυτή την επιλογή μόνο αν δημιουργεί πρόβλημα με το θέμα σας."
1302
 
1303
  #: admin/views/Options.php:260
1304
  msgid "Meta auto-fill"
1305
+ msgstr "Αυτόματη συμπλήρωση Meta"
1306
 
1307
  #: admin/views/Options.php:265
1308
  msgid ""
1309
+ "Enabling this option the meta description of the image will be automatically filled in "
1310
+ "image description field."
1311
  msgstr ""
1312
+ "Με την ενεργοποίηση αυτής της επιλογής οι μεταπληροφορίες της εικόνας θα συμπληρώνονται "
1313
+ "αυτόματα στο πεδίο περιγραφής της εικόνας."
1314
 
1315
  #: admin/views/Options.php:270
1316
  msgid "Roles"
1317
+ msgstr "Ρόλοι"
1318
 
1319
  #: admin/views/Options.php:282
1320
+ msgid "Choose a user type who can add/edit galleries, images, gallery groups and tags."
 
 
1321
  msgstr ""
1322
+ "Επιλέξτε τύπο χρήστη που θα μπορεί να προσθέτει/επεξεργάζεται συλλογές, εικόνες, γκρουπς "
1323
+ "και ετικέτες."
1324
 
1325
  #: admin/views/Options.php:288
 
 
1326
  msgid "Gallery role"
1327
+ msgstr "Ρόλος συλλογής"
1328
 
1329
  #: admin/views/Options.php:293
1330
  msgid "Only author can change a gallery."
1331
+ msgstr "Μόνο ο συντάκτης μπορεί να αλλάξει μια συλλογή."
1332
 
1333
  #: admin/views/Options.php:299
1334
  msgid "Gallery group role"
1335
+ msgstr "Ρόλος γκρουπ συλλογών"
1336
 
1337
  #: admin/views/Options.php:304
1338
  msgid "Only author can change an gallery group."
1339
+ msgstr "Μόνο ο συντάκτης μπορεί να αλλάξει ένα γκρουπ συλλογών."
1340
 
1341
  #: admin/views/Options.php:310
1342
  msgid "Image role"
1343
+ msgstr "Ρόλος εικόνας"
1344
 
1345
  #: admin/views/Options.php:315
1346
  msgid "Only author can change an image."
1347
+ msgstr "Μόνο ο συντάκτης μπορεί να αλλάξει μια εικόνα"
1348
 
1349
+ #: admin/views/Options.php:321 admin/views/Options.php:324 photo-gallery.php:283
 
1350
  msgid "Generate Shortcode"
1351
  msgstr ""
1352
 
1356
 
1357
  #: admin/views/Options.php:335 photo-gallery.php:282
1358
  msgid "Uninstall"
1359
+ msgstr "Απεγκατάσταση"
1360
 
1361
  #: admin/views/Options.php:350
1362
  msgid "Open in a new window"
1363
+ msgstr "Άνοιγμα σε νέο παράθυρο"
1364
 
1365
  #: admin/views/Options.php:359
1366
  msgid "Number of image columns"
1367
+ msgstr "Αριθμός στηλών εικόνων"
1368
 
1369
+ #: admin/views/Options.php:367 admin/views/Options.php:599 admin/views/Shortcode.php:409
1370
+ #: admin/views/Shortcode.php:666 admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
 
1371
  #: admin/views/Shortcode.php:805
1372
  msgid "Images per page"
1373
+ msgstr "Εικόνες ανά σελίδα"
1374
 
1375
  #: admin/views/Options.php:375
1376
  msgid "Frontend thumbnail dimensions"
1377
+ msgstr "Διαστάσεις μικρογραφιών στο frontend"
1378
 
1379
  #: admin/views/Options.php:380
1380
+ msgid "The default size of the thumbnail which will be displayed in the website."
1381
+ msgstr "Το προεπιλεγμένο μέγεθος μικρογραφιών που θα εμφανίζονται στην ιστοσελίδα."
 
1382
 
1383
  #: admin/views/Options.php:387
1384
  msgid "Show image title"
1385
+ msgstr "Εμφάνιση τίτλου εικόνας"
1386
 
1387
+ #: admin/views/Options.php:389 admin/views/Options.php:402 admin/views/Options.php:1030
1388
+ #: admin/views/Shortcode.php:431 admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
 
1389
  #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
 
 
1390
  msgid "Show on hover"
1391
+ msgstr "Εμφάνιση on hover"
1392
 
1393
+ #: admin/views/Options.php:390 admin/views/Options.php:403 admin/views/Options.php:1031
1394
+ #: admin/views/Shortcode.php:433 admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
 
1395
  #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1396
  msgid "Always show"
1397
+ msgstr "Να εμφανίζονται πάντα"
1398
 
1399
+ #: admin/views/Options.php:391 admin/views/Options.php:404 admin/views/Options.php:1032
1400
+ #: admin/views/Shortcode.php:435 admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
 
1401
  #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1402
  msgid "Don't show"
1403
+ msgstr "Να μην εμφανίζονται"
1404
 
1405
  #: admin/views/Options.php:400
 
 
1406
  msgid "Show ecommerce icon"
1407
+ msgstr "Εμφάνιση εικονιδίου ecommerce"
1408
 
1409
  #: admin/views/Options.php:413
1410
  msgid "Enable image pagination"
1411
+ msgstr "Ενεργοποίηση σελιδοποίησης εικόνων"
1412
 
1413
  #: admin/views/Options.php:422
1414
  msgid "Show gallery name"
1415
+ msgstr "Εμφάνιση ονόματος gallery"
1416
 
1417
  #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1418
  msgid "Show gallery description"
1419
+ msgstr "Εμφάνιση περιγραφής gallery"
1420
 
1421
  #: admin/views/Options.php:440
1422
  msgid "Play icon over the video thumbnail"
1423
+ msgstr "Εικονίδιο έναρξης στη μικρογραφία του βίντεο"
1424
 
1425
+ #: admin/views/Options.php:464 admin/views/Options.php:513 admin/views/Shortcode.php:349
1426
+ #: admin/views/Shortcode.php:364 admin/views/Shortcode.php:1024
1427
+ #: admin/views/Shortcode.php:1073
1428
  msgid "Vertical"
1429
+ msgstr "Κάθετα"
1430
 
1431
+ #: admin/views/Options.php:465 admin/views/Options.php:514 admin/views/Shortcode.php:354
1432
+ #: admin/views/Shortcode.php:369 admin/views/Shortcode.php:1029
1433
+ #: admin/views/Shortcode.php:1078
1434
  msgid "Horizontal"
1435
+ msgstr "Οριζόντια"
1436
 
1437
  #: admin/views/Options.php:474
1438
  msgid "Show description in Vertical Masonry view"
1439
  msgstr ""
1440
 
1441
+ #: admin/views/Options.php:499 admin/views/Shortcode.php:382 admin/views/Shortcode.php:1042
1442
+ #: admin/views/Shortcode.php:1091
1443
  msgid "Total width of mosaic"
1444
  msgstr ""
1445
 
1446
+ #: admin/views/Options.php:503 admin/views/Options.php:593 admin/views/Options.php:615
1447
+ #: admin/views/Options.php:626
1448
  msgid "Width of mosaic as a percentage of container's width."
1449
  msgstr ""
1450
 
1451
+ #: admin/views/Options.php:521 admin/views/Shortcode.php:374 admin/views/Shortcode.php:1034
1452
+ #: admin/views/Shortcode.php:1083
1453
  msgid "Resizable mosaic"
1454
  msgstr ""
1455
 
1456
+ #: admin/views/Options.php:546 admin/views/Options.php:589 admin/views/Shortcode.php:549
1457
+ #: admin/views/Shortcode.php:572
1458
  msgid "Image width"
1459
+ msgstr "Μήκος εικόνας"
1460
 
1461
+ #: admin/views/Options.php:556 admin/views/Options.php:610 admin/views/Options.php:757
1462
+ #: admin/views/Options.php:920 admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
 
1463
  msgid "Enable image title"
1464
+ msgstr "Ενεργοποίηση τίτλου εικόνας"
1465
 
1466
+ #: admin/views/Options.php:565 admin/views/Options.php:621 admin/views/Options.php:803
1467
+ #: admin/views/Shortcode.php:565 admin/views/Shortcode.php:588
 
1468
  msgid "Enable image description"
1469
+ msgstr "Ενεργοποίηση περιγραφής εικόνας"
1470
 
1471
+ #: admin/views/Options.php:632 admin/views/Options.php:1005 admin/views/Shortcode.php:418
1472
+ #: admin/views/Shortcode.php:675 admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
 
1473
  #: admin/views/Shortcode.php:814
1474
  msgid "Enable pagination"
1475
+ msgstr "Ενεργοποίηση σελιδοποίησης"
1476
 
1477
  #: admin/views/Options.php:657
1478
  msgid "Slideshow effect"
1481
  #: admin/views/Options.php:664 admin/views/Options.php:1108
1482
  #: admin/views/WidgetSlideshow.php:106
1483
  msgid "This effect is disabled in free version."
1484
+ msgstr "Αυτό το εφέ είναι απενεργοποιημένο στη δωρεάν έκδοση"
1485
 
1486
+ #: admin/views/Options.php:675 admin/views/Options.php:1119 admin/views/Shortcode.php:290
1487
+ #: admin/views/Shortcode.php:1171
1488
  msgid "Effect duration"
1489
+ msgstr "Διάρκεια εφέ"
1490
 
1491
+ #: admin/views/Options.php:683 admin/views/Options.php:872 admin/views/Options.php:1136
1492
+ #: admin/views/Shortcode.php:299 admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
 
1493
  msgid "Time interval"
1494
+ msgstr "Χρονικό διάστημα"
1495
 
1496
  #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1497
  msgid "Slideshow dimensions"
1499
 
1500
  #: admin/views/Options.php:700 admin/views/Options.php:930
1501
  msgid "Enable autoplay"
1502
+ msgstr "Αυτόματη έναρξη"
1503
 
1504
  #: admin/views/Options.php:709
1505
  msgid "Enable shuffle"
1506
+ msgstr "Τυχαία εμφάνιση"
1507
 
1508
+ #: admin/views/Options.php:718 admin/views/Options.php:1173 admin/views/Shortcode.php:643
1509
+ #: admin/views/Shortcode.php:1221
1510
  msgid "Enable control buttons"
1511
+ msgstr "Κουμπιά ελέγχου"
1512
 
1513
  #: admin/views/Options.php:727 admin/views/Options.php:1247
1514
  msgid "Show Next / Previous buttons"
1515
+ msgstr "Εμφάνιση κουμπιών Επόμενου / Προηγούμενου"
1516
 
1517
  #: admin/views/Options.php:729 admin/views/Options.php:1249
1518
  msgid "On hover"
1520
 
1521
  #: admin/views/Options.php:730 admin/views/Options.php:1250
1522
  msgid "Always"
1523
+ msgstr "Πάντα"
1524
 
1525
  #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1526
  msgid "Enable slideshow filmstrip"
1532
 
1533
  #: admin/views/Options.php:766
1534
  msgid "Title position"
1535
+ msgstr "Θέση τίτλου"
1536
 
1537
  #: admin/views/Options.php:788
1538
  msgid "Image title position on slideshow"
1540
 
1541
  #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1542
  msgid "Full width title"
1543
+ msgstr "Τίτλος πλήρους μεγέθους"
1544
 
1545
  #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1546
  msgid "Display image title based on the slideshow dimensions."
1548
 
1549
  #: admin/views/Options.php:812
1550
  msgid "Description position"
1551
+ msgstr "Θέση περιγραφής"
1552
 
1553
  #: admin/views/Options.php:834
1554
  msgid "Image description position on slideshow"
1560
 
1561
  #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1562
  msgid "Music url"
1563
+ msgstr "Σύνδεσμος μουσικής"
1564
 
1565
  #: admin/views/Options.php:852
1566
  msgid "Only"
1567
+ msgstr "Μόνο"
1568
 
1569
  #: admin/views/Options.php:852
1570
  msgid "formats are supported."
1571
+ msgstr "τύποι αρχείων επιτρέπονται."
1572
 
1573
  #: admin/views/Options.php:881
1574
  msgid "Max. number of images"
1575
+ msgstr "Μέγιστος αριθμός εικόνων"
1576
 
1577
  #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1578
  msgid "Carousel image ratio"
1588
 
1589
  #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1590
  msgid "Next/Previous buttons"
1591
+ msgstr "Κουμπιά Επόμενο/Προηγούμενο"
1592
 
1593
  #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1594
  msgid "Play/Pause button"
1595
+ msgstr "Κουμπί Έναρξης/Παύσης"
1596
 
1597
  #: admin/views/Options.php:980
1598
  msgid "Show gallery group/gallery name"
1599
+ msgstr "Εμφάνιση τίτλου συλλογής/γκρουπ"
1600
 
1601
  #: admin/views/Options.php:989
1602
  msgid "Number of gallery group columns"
1603
+ msgstr "Αριθμός στηλών γκρουπ συλλογών"
1604
 
1605
  #: admin/views/Options.php:997
 
 
1606
  msgid "Gallery groups per page"
1607
+ msgstr "Γκρουπ συλλογών ανά σελίδα"
1608
 
1609
  #: admin/views/Options.php:1014
 
 
1610
  msgid "Gallery group view type"
1611
+ msgstr "Τύπος εμφάνισης γκρουπ συλλογών"
1612
 
1613
  #: admin/views/Options.php:1020
1614
  #, fuzzy
1615
  #| msgid "There are no images in this gallery."
1616
  msgid "The gallery images view type in the gallery group."
1617
+ msgstr "Δεν υπάρχουν εικόνες σε αυτή τη συλλογή"
1618
 
1619
  #: admin/views/Options.php:1028
 
 
1620
  msgid "Show title"
1621
+ msgstr "Εμφάνιση τίτλου"
1622
 
1623
  #: admin/views/Options.php:1038
1624
  msgid "Enable extended gallery group description"
1625
+ msgstr "Ενεργοποίηση εκτεταμένης περιγραφής γκρουπ συλλογών"
1626
 
1627
  #: admin/views/Options.php:1047
1628
  msgid "Gallery group thumbnail dimensions:"
1629
+ msgstr "Διαστάσεις μικρογραφίας γκρουπ συλλογών:"
1630
 
1631
  #: admin/views/Options.php:1056
1632
  msgid "Extended gallery group height:"
1642
 
1643
  #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1644
  msgid "Redirect to url"
1645
+ msgstr "Ανακατεύθυνση σε σύνδεσμο"
1646
 
1647
  #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1648
  msgid "Do Nothing"
1649
+ msgstr "Καμία ενέργεια"
1650
 
1651
  #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1652
  msgid "Full width lightbox"
1678
 
1679
  #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1680
  msgid "Display hit counter"
1681
+ msgstr "Εμφάνιση μετρητή επισκέψεων"
1682
 
1683
  #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
 
 
1684
  msgid "Enable fullscreen"
1685
+ msgstr "Ενεργοποίηση πλήρους οθόνης"
1686
 
1687
  #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
 
 
1688
  msgid "Enable info"
1689
+ msgstr "Ενεργοποίηση πληροφοριών"
1690
 
1691
  #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1692
  msgid "Display info by default"
1693
+ msgstr "Εμφάνιση πληροφοριών εξ' αρχής"
1694
 
1695
  #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1696
  msgid "Full width info"
1697
+ msgstr "Πληροφορίες σε πλήρες μήκος"
1698
 
1699
  #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1700
  msgid "Display image information based on the lightbox dimensions."
1701
+ msgstr "Εμφάνιση πληροφοριών εικόνας με βάση τις διαστάσεις του lightbox."
1702
 
1703
  #: admin/views/Options.php:1256
1704
  msgid "Enable Email for comments"
1705
+ msgstr "Ενεργοποίηση email για σχόλια"
1706
 
1707
  #: admin/views/Options.php:1266
1708
  msgid "Enable Captcha for comments"
1709
+ msgstr "Ενεργοποίηση Captcha στα σχόλια"
1710
 
1711
  #: admin/views/Options.php:1276
1712
  msgid "Enable original image display button"
1713
+ msgstr "Ενεργοποίηση κουμπιού προβολής πρωτότυπης εικόνας"
1714
 
1715
  #: admin/views/Options.php:1285
1716
  msgid "Enable download button"
1717
+ msgstr "Ενεργοποίηση κουμπιού κατεβάσματος"
1718
 
1719
  #: admin/views/Options.php:1294
 
 
1720
  msgid "Show images count"
1721
+ msgstr "Εμφάνιση αριθμού εικόνων"
1722
 
1723
  #: admin/views/Options.php:1303
1724
  msgid "Enable loop"
1726
 
1727
  #: admin/views/Options.php:1312
1728
  msgid "Enable"
1729
+ msgstr "Ενεργοποίηση"
1730
 
1731
  #: admin/views/Options.php:1322
1732
  msgid "profile id"
1735
  #: admin/views/Options.php:1326
1736
  #, php-format
1737
  msgid "Create an account %s."
1738
+ msgstr "Δημιουργήστε ένα λογαριασμό %s."
1739
 
1740
  #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1741
  msgid "here"
1742
+ msgstr "εδώ"
1743
 
1744
  #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
 
 
1745
  msgid "Enable rating"
1746
+ msgstr "Ενεργοποίηση αξιολογήσεων"
1747
 
1748
  #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
 
 
1749
  msgid "Enable comments"
1750
+ msgstr "Ενεργοποίηση σχολίων"
1751
 
1752
  #: admin/views/Options.php:1356
 
 
1753
  msgid "Enable comments moderation"
1754
+ msgstr "Ενεργοποίηση έγκρισης για σχόλια"
1755
 
1756
  #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1757
  msgid "Enable Facebook button"
1758
+ msgstr "Ενεργοποίηση κουμπιού Facebook"
1759
 
1760
  #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1761
  msgid "Enable Twitter button"
1762
+ msgstr "Ενεργοποίηση κουμπιού Twitter"
1763
 
1764
  #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1765
  msgid "Enable Google+ button"
1766
+ msgstr "Ενεργοποίηση κουμπιού Google+"
1767
 
1768
  #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1769
  msgid "Enable Pinterest button"
1770
+ msgstr "Ενεργοποίηση κουμπιού Pinterest"
1771
 
1772
  #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1773
  msgid "Enable Tumblr button"
1774
+ msgstr "Ενεργοποίηση κουμπιού Tumblr"
1775
 
1776
  #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1777
  msgid "Enable Ecommerce button"
1778
+ msgstr "Ενεργοποίηση κουμπιού Ecommerce"
1779
 
1780
  #: admin/views/Options.php:1438
1781
  #, fuzzy
1785
 
1786
  #: admin/views/Options.php:1441
1787
  msgid "hour"
1788
+ msgstr "ώρα"
1789
 
1790
  #: admin/views/Options.php:1443
1791
  msgid "min"
1792
+ msgstr "λεπτά"
1793
 
1794
  #: admin/views/Options.php:1445
1795
  msgid "Minimum 1 min."
1796
+ msgstr "Ελάχιστο 1 λεπτό."
1797
 
1798
  #: admin/views/Options.php:1451
1799
  msgid "Instagram"
1800
+ msgstr "Instagram"
1801
 
1802
  #: admin/views/Options.php:1459
1803
  msgid "Sign in with Instagram"
1804
+ msgstr "Είσοδος μέσω Instagram"
1805
 
1806
  #: admin/views/Options.php:1464
1807
  msgid ""
1808
+ "Are you sure you want to reset access token, after resetting it you will need to log in "
1809
+ "with Instagram again for using plugin"
1810
  msgstr ""
1811
 
1812
  #: admin/views/Options.php:1466
1813
  msgid "Sign out with Instagram"
1814
+ msgstr "Έξοδος μέσω Instagram"
1815
 
1816
  #: admin/views/Options.php:1489 photo-gallery.php:1284
1817
  msgid "Watermark"
1818
+ msgstr "Υδατογράφημα"
1819
 
1820
  #: admin/views/Options.php:1494
1821
  msgid "Watermark type"
1822
+ msgstr "Τύπος υδατογραφήματος"
1823
 
1824
+ #: admin/views/Options.php:1499 admin/views/Options.php:1643 admin/views/Shortcode.php:1388
1825
+ #: admin/views/Themes.php:4578 admin/views/WidgetTags.php:85
 
1826
  msgid "Text"
1827
+ msgstr "Κείμενο"
1828
 
1829
  #: admin/views/Options.php:1507
1830
  msgid "Watermark url"
1831
+ msgstr "Σύνδεσμος Υδατογραφήματος"
1832
 
1833
  #: admin/views/Options.php:1518 admin/views/Options.php:1664
1834
  msgid "Add Image"
1835
+ msgstr "Προσθήκη εικόνας"
1836
 
1837
  #: admin/views/Options.php:1521
1838
  msgid "Only .png format is supported."
1839
+ msgstr "Μόνο ο .png τύπος αρχείου υποστηρίζεται."
1840
 
1841
  #: admin/views/Options.php:1526
1842
  msgid "Watermark text"
1843
+ msgstr "Κείμενο υδατογραφήματος"
1844
 
1845
  #: admin/views/Options.php:1534
1846
  msgid "Watermark size"
1847
+ msgstr "Μέγεθος υδατογραφήματος"
1848
 
1849
  #: admin/views/Options.php:1538
1850
  msgid "Enter size of watermark in percents according to image."
1851
+ msgstr "Ορίστε το ποσοστιαίο μέγεθος του υδατογραφήματος σε σχέση με την εικόνα."
1852
 
1853
  #: admin/views/Options.php:1543
1854
  msgid "Watermark font size"
1855
+ msgstr "Μέγεθος γραμματοσειράς υδατογραφήματος"
1856
 
1857
  #: admin/views/Options.php:1551
1858
  msgid "Watermark font style"
1859
+ msgstr "Στυλ γραμματοσειράς υδατογραφήματος"
1860
 
1861
  #: admin/views/Options.php:1579
1862
  msgid "Watermark color"
1863
+ msgstr "Χρώμα υδατογραφήματος"
1864
 
1865
  #: admin/views/Options.php:1587
1866
  msgid "Watermark opacity"
1867
+ msgstr "Ορατότητα υδατογραφήματος"
1868
 
1869
  #: admin/views/Options.php:1591
1870
  msgid "Opacity value must be in the range of 0 to 100."
1871
+ msgstr "Η τιμή της ορατότητας πρέπει να είναι μεταξύ 0 και 100."
1872
 
1873
  #: admin/views/Options.php:1596
1874
  msgid "Watermark position"
1875
+ msgstr "Θέση υδατογραφήματος"
1876
 
1877
  #: admin/views/Options.php:1619
1878
  msgid "Set Watermark"
1879
+ msgstr "Ορισμός Υδατογραφήματος"
1880
 
1881
  #: admin/views/Options.php:1620
1882
  msgid "Reset watermark"
1883
+ msgstr "Επαναφορά υδατογραφήματος"
1884
 
1885
  #: admin/views/Options.php:1622
1886
  msgid "Reset Watermark"
1887
+ msgstr "Επαναφορά Υδατογραφήματος"
1888
 
1889
  #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
1890
  msgid "Advertisement"
1891
+ msgstr "Διαφήμιση"
1892
 
1893
  #: admin/views/Options.php:1638
1894
  msgid "Advertisement type"
1895
+ msgstr "Τύπος διαφήμισης"
1896
 
1897
  #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
1898
  msgid "Advertisement url"
1899
+ msgstr "Σύνδεσμος διαφήμισης"
1900
 
1901
  #: admin/views/Options.php:1667
1902
  msgid ""
1903
+ "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,.png,.gif formats "
1904
+ "are supported)"
1905
  msgstr ""
1906
 
1907
  #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
1908
  msgid "Advertisement text"
1909
+ msgstr "Κείμενο διαφήμισης"
1910
 
1911
  #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
1912
  msgid "Advertisement link"
1913
+ msgstr "Σύνδεσμος διαφήμισης"
1914
 
1915
  #: admin/views/Options.php:1684
1916
  msgid "Enter a URL to open when the advertisement banner is clicked."
1917
+ msgstr "Ορίστε ένα σύνδεσμο που θα ανοίγει όταν γίνεται κλικ πάνω στη διαφήμιση."
1918
 
1919
  #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
1920
  msgid "Advertisement dimensions"
1921
+ msgstr "Διαστάσεις διαφήμισης"
1922
 
1923
  #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
1924
  msgid "Maximum values for watermark image width and height."
1925
+ msgstr "Μέγιστες τιμές για το μήκος και το ύψος της εικόνας υδατογραφήματος."
1926
 
1927
  #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
1928
  msgid "Advertisement font size"
1929
+ msgstr "Μέγεθος γραμματοσειράς διαφήμισης"
1930
 
1931
  #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
1932
  msgid "Advertisement font style"
1933
+ msgstr "Στυλ γραμματοσειράς διαφήμισης"
1934
+
1935
+ #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431 admin/views/Themes.php:386
1936
+ #: admin/views/Themes.php:449 admin/views/Themes.php:664 admin/views/Themes.php:698
1937
+ #: admin/views/Themes.php:911 admin/views/Themes.php:973 admin/views/Themes.php:1357
1938
+ #: admin/views/Themes.php:1418 admin/views/Themes.php:1643 admin/views/Themes.php:1731
1939
+ #: admin/views/Themes.php:1974 admin/views/Themes.php:2036 admin/views/Themes.php:2091
1940
+ #: admin/views/Themes.php:2427 admin/views/Themes.php:2570 admin/views/Themes.php:2651
1941
+ #: admin/views/Themes.php:2711 admin/views/Themes.php:2918 admin/views/Themes.php:2973
1942
+ #: admin/views/Themes.php:3028 admin/views/Themes.php:3164 admin/views/Themes.php:3333
1943
+ #: admin/views/Themes.php:3975 admin/views/Themes.php:4117 admin/views/Themes.php:4166
1944
+ #: admin/views/Themes.php:4242 admin/views/Themes.php:4426 admin/views/Themes.php:4811
 
 
 
 
 
1945
  msgid "Google fonts"
1946
+ msgstr "Γραμματοσειρές Google"
1947
+
1948
+ #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433 admin/views/Themes.php:76
1949
+ #: admin/views/Themes.php:107 admin/views/Themes.php:388 admin/views/Themes.php:451
1950
+ #: admin/views/Themes.php:666 admin/views/Themes.php:700 admin/views/Themes.php:913
1951
+ #: admin/views/Themes.php:975 admin/views/Themes.php:1359 admin/views/Themes.php:1420
1952
+ #: admin/views/Themes.php:1645 admin/views/Themes.php:1733 admin/views/Themes.php:1976
1953
+ #: admin/views/Themes.php:2038 admin/views/Themes.php:2093 admin/views/Themes.php:2429
1954
+ #: admin/views/Themes.php:2572 admin/views/Themes.php:2653 admin/views/Themes.php:2713
1955
+ #: admin/views/Themes.php:2920 admin/views/Themes.php:2975 admin/views/Themes.php:3030
1956
+ #: admin/views/Themes.php:3166 admin/views/Themes.php:3335 admin/views/Themes.php:3977
1957
+ #: admin/views/Themes.php:4119 admin/views/Themes.php:4168 admin/views/Themes.php:4244
1958
+ #: admin/views/Themes.php:4428 admin/views/Themes.php:4813 framework/WDWLibrary.php:888
 
 
 
 
 
 
1959
  msgid "Default"
1960
+ msgstr "Προεπιλογή"
1961
 
1962
  #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
1963
  msgid "Advertisement color"
1964
+ msgstr "Χρώμα διαφήμισης"
1965
 
1966
  #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
1967
  msgid "Advertisement opacity"
1968
+ msgstr "Ορατότητα διαφήμισης"
1969
+
1970
+ #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468 admin/views/Themes.php:309
1971
+ #: admin/views/Themes.php:322 admin/views/Themes.php:565 admin/views/Themes.php:578
1972
+ #: admin/views/Themes.php:813 admin/views/Themes.php:826 admin/views/Themes.php:1063
1973
+ #: admin/views/Themes.php:1222 admin/views/Themes.php:1312 admin/views/Themes.php:1373
1974
+ #: admin/views/Themes.php:1455 admin/views/Themes.php:1572 admin/views/Themes.php:1897
1975
+ #: admin/views/Themes.php:1910 admin/views/Themes.php:2232 admin/views/Themes.php:2272
1976
+ #: admin/views/Themes.php:2356 admin/views/Themes.php:2850 admin/views/Themes.php:2863
1977
+ #: admin/views/Themes.php:3100 admin/views/Themes.php:3287 admin/views/Themes.php:3405
1978
+ #: admin/views/Themes.php:3418 admin/views/Themes.php:3465 admin/views/Themes.php:3492
1979
+ #: admin/views/Themes.php:3781 admin/views/Themes.php:3903 admin/views/Themes.php:4045
1980
+ #: admin/views/Themes.php:4513 admin/views/Themes.php:4608 admin/views/Themes.php:4633
1981
+ #: admin/views/Themes.php:4772
 
 
 
 
 
1982
  msgid "Value must be between 0 to 100."
1983
+ msgstr "Η τιμή πρέπει να είναι μεταξύ 0 και 100"
1984
 
1985
  #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
1986
  msgid "Advertisement position"
1987
+ msgstr "Θέση διαφήμισης"
1988
 
1989
+ #: admin/views/Ratings.php:40 admin/views/Ratings.php:59 admin/views/Ratings.php:91
 
1990
  msgid "IP"
1991
+ msgstr "IP"
1992
 
1993
  #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
1994
  msgid "Rating"
1995
+ msgstr "Βαθμολογία"
1996
 
1997
+ #: admin/views/Ratings.php:60 admin/views/Ratings.php:92 admin/views/Shortcode.php:610
 
1998
  msgid "Date"
1999
+ msgstr "Ημερομηνία"
2000
 
2001
  #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2002
  msgid "View type"
2003
+ msgstr "Τύπος εμφάνισης"
2004
 
2005
  #: admin/views/Shortcode.php:183
2006
  msgid "This view is not available in free version."
2007
+ msgstr "Αυτή η εμφάνιση δεν είναι διαθέσιμη στη δωρεάν έκδοση."
2008
 
2009
  #: admin/views/Shortcode.php:195
2010
  msgid "All Galleries"
2011
+ msgstr "Όλες οι Galleries"
2012
 
2013
  #: admin/views/Shortcode.php:207
2014
  msgid "Album"
2015
+ msgstr "Άλμπουμ"
2016
 
2017
  #: admin/views/Shortcode.php:210
2018
  msgid "Select Album"
2019
+ msgstr "Επιλογή Άλμπουμ"
2020
 
2021
  #: admin/views/Shortcode.php:219
2022
  msgid "The selected album expanded content will be displayed."
2024
 
2025
  #: admin/views/Shortcode.php:225
2026
  msgid "Tag"
2027
+ msgstr "Ετικέτα"
2028
 
2029
  #: admin/views/Shortcode.php:228
2030
  msgid "All Tags"
2031
+ msgstr "Όλες οι ετικέτες"
2032
 
2033
  #: admin/views/Shortcode.php:242
2034
  msgid "Theme"
2035
+ msgstr "Θέμα"
2036
 
2037
  #: admin/views/Shortcode.php:259
2038
  msgid "Use default options"
2039
+ msgstr "Χρήση προεπιλογών"
2040
 
2041
  #: admin/views/Shortcode.php:260
2042
  #, php-format
2043
  msgid "You can change the default options %s."
2044
+ msgstr "Μπορείτε να αλλάξετε τις προεπιλεγμένες ρυθμίσεις %s."
2045
 
2046
  #: admin/views/Shortcode.php:276
2047
  msgid "Slideshow Effect"
2048
  msgstr ""
2049
 
2050
+ #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303 admin/views/Shortcode.php:703
2051
+ #: admin/views/Shortcode.php:1175 admin/views/Shortcode.php:1191
 
2052
  msgid "Interval between two images."
2053
  msgstr ""
2054
 
2068
  msgid "Maximum values for carousel width and height."
2069
  msgstr ""
2070
 
2071
+ #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361 admin/views/Shortcode.php:1021
 
2072
  msgid "Image thumbnail width:"
2073
  msgstr ""
2074
 
2075
+ #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365 admin/views/Shortcode.php:1025
 
2076
  msgid "Max. number of image columns: "
2077
  msgstr ""
2078
 
2079
  #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2080
  #: admin/views/Shortcode.php:1086
2081
  msgid ""
2082
+ "Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent "
2083
+ "container. This option keeps thumbs to look nice when viewed with very large or very small "
2084
+ "screen. Prevents zooming of thumbs."
2085
  msgstr ""
2086
 
2087
  #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
2091
 
2092
  #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2093
  msgid "Image Thumbnail dimensions"
2094
+ msgstr "Διαστάσεις Mικρογραφίας Eικόνας"
2095
 
2096
  #: admin/views/Shortcode.php:396
2097
  msgid "Maximum values for thumbnail dimension."
2098
+ msgstr "Μέγιστες τιμές για τις διαστάσεις των μικρογραφιών."
2099
 
2100
+ #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461 admin/views/Shortcode.php:496
2101
+ #: admin/views/Shortcode.php:531
2102
  msgid "Max. number of image columns"
2103
+ msgstr "Μέγιστος αριθμός στηλών εικόνων"
2104
 
2105
+ #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670 admin/views/Shortcode.php:721
2106
+ #: admin/views/Shortcode.php:765 admin/views/Shortcode.php:809
2107
+ msgid "If you want to display all images you should leave it blank or insert 0."
2108
+ msgstr "Αν θέλετε να εμφανίζετε όλες τις εικόνες θα πρέπει να το αφήσετε κενό ή να βάλετε 0."
 
 
2109
 
2110
+ #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729 admin/views/Shortcode.php:773
2111
+ #: admin/views/Shortcode.php:817
 
 
2112
  msgid "Load More"
2113
+ msgstr "Φόρτωση περισσότερων"
2114
 
2115
+ #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679 admin/views/Shortcode.php:730
2116
+ #: admin/views/Shortcode.php:774 admin/views/Shortcode.php:818
 
2117
  msgid "Scroll Load"
2118
  msgstr ""
2119
 
2120
  #: admin/views/Shortcode.php:430
2121
  msgid "Ecommerce icon"
2122
+ msgstr "Εικονίδιο Ecommerce"
2123
 
2124
  #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2125
  msgid "Max. number of album columns"
2126
+ msgstr "Μέγιστος αριθμός στηλών στο άλμπουμ"
2127
 
2128
  #: admin/views/Shortcode.php:451
2129
  msgid "Album Thumbnail dimensions"
2130
+ msgstr "Διαστάσεις Μικρογραφιών του Άλμπουμ"
2131
 
2132
  #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2133
  msgid "Maximum values for album thumb width and height."
2134
+ msgstr "Μέγιστες τιμές για μήκος και ύψος των μικρογραφιών του άλμπουμ."
2135
 
2136
  #: admin/views/Shortcode.php:469
2137
  msgid "Image thumbnail dimensions"
2138
+ msgstr "Διαστάσεις μικρογραφίας εικόνας"
2139
 
2140
  #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2141
  msgid "Maximum values for thumbnail width and height."
2142
+ msgstr "Μέγιστες τιμές για μήκος και ύψος των μικρογραφιών."
2143
 
2144
  #: admin/views/Shortcode.php:487
2145
  msgid "Album Thumbnail width"
2146
+ msgstr "Μήκος Μικρογραφίας του Άλμπουμ"
2147
 
2148
  #: admin/views/Shortcode.php:491
2149
  msgid "Maximum value for album thumbnail width."
2150
+ msgstr "Μέγιστη τιμή για το μήκος της μικρογραφίας του άλμπουμ."
2151
 
2152
  #: admin/views/Shortcode.php:504
2153
  msgid "Image thumbnail width"
2154
+ msgstr "Μήκος μικρογραφίας εικόνας"
2155
 
2156
  #: admin/views/Shortcode.php:508
2157
  msgid "Maximum value for thumbnail width."
2158
+ msgstr "Μέγιστη τιμή για το μήκος μικρογραφιών"
2159
 
2160
  #: admin/views/Shortcode.php:513
2161
  msgid "Album row height"
2162
+ msgstr "Ύψος γραμμής άλμπουμ"
2163
 
2164
  #: admin/views/Shortcode.php:521
2165
  msgid "Album thumbnail dimensions"
2166
+ msgstr "Διαστάσεις μικρογραφιών άλμπουμ"
2167
 
2168
  #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2169
  msgid "Maximum value for image width."
2170
+ msgstr "Μέγιστη τιμή για το μήκος της εικόνας"
2171
 
2172
  #: admin/views/Shortcode.php:606
2173
  msgid "Sort images by"
2174
+ msgstr "Ταξινόμηση εικόνων κατά"
2175
 
2176
  #: admin/views/Shortcode.php:608
 
 
2177
  msgid "Order"
2178
+ msgstr "Ταξινόμηση"
2179
 
2180
  #: admin/views/Shortcode.php:621
2181
  msgid "Order images"
2182
+ msgstr "Ταξινόμηση εικόνων"
2183
 
2184
  #: admin/views/Shortcode.php:622
2185
  msgid "Ascending"
2186
+ msgstr "Αύξουσα"
2187
 
2188
  #: admin/views/Shortcode.php:623
2189
  msgid "Descending"
2190
+ msgstr "Φθίνουσα"
2191
 
2192
+ #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684 admin/views/Shortcode.php:744
2193
+ #: admin/views/Shortcode.php:788 admin/views/Shortcode.php:832
 
2194
  msgid "Images per load"
2195
+ msgstr "Εικόνες ανά φόρτωση"
2196
 
2197
  #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2198
  msgid "Enable Autoplay"
2199
+ msgstr "Αυτόματη Έναρξη"
2200
 
2201
  #: admin/views/Shortcode.php:653
2202
  msgid "Enable slideshow filmstrip view."
2207
  msgstr ""
2208
 
2209
  #: admin/views/Shortcode.php:678
 
 
2210
  msgid "Load more"
2211
+ msgstr "Φόρτωση περισσότερων"
2212
 
2213
+ #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752 admin/views/Shortcode.php:796
 
 
 
2214
  msgid "Albums per page"
2215
+ msgstr "Άλμπουμ ανά σελίδα"
2216
 
2217
+ #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739 admin/views/Shortcode.php:756
2218
+ #: admin/views/Shortcode.php:783 admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2219
+ msgid "If you want to display all albums you should leave it blank or insert 0."
2220
+ msgstr "Αν θέλετε να εμφανίζετε όλα τα άλμπουμ θα πρέπει να το αφήσετε κενό ή να βάλετε 0."
 
 
2221
 
2222
+ #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779 admin/views/Shortcode.php:823
 
2223
  msgid "Albums per load"
2224
+ msgstr "Άλμπουμ ανά φόρτωση"
2225
 
2226
  #: admin/views/Shortcode.php:842
2227
  msgid "Show gallery title"
2228
+ msgstr "Εμφάνιση τίτλου Συλλογής"
2229
 
2230
  #: admin/views/Shortcode.php:849
2231
  msgid "Show album title"
2232
+ msgstr "Εμφάνιση τίτλου άλμπουμ"
2233
 
2234
  #: admin/views/Shortcode.php:856
2235
  msgid "Enable album description"
2236
+ msgstr "Εμφάνιση περιγραφής άλμπουμ"
2237
 
2238
  #: admin/views/Shortcode.php:859
2239
+ msgid "If you disable description only the title of the album will be displayed."
2240
+ msgstr "Αν απενεργοποιήσετε την περιγραφή θα εμφανίζεται μόνο ο τίτλος του άλμπουμ."
 
2241
 
2242
  #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2243
  #: admin/views/Shortcode.php:1100
2244
  msgid "Image title"
2245
+ msgstr "Τίτλος εικόνας"
2246
 
2247
  #: admin/views/Shortcode.php:879
2248
  msgid "Enable Shuffle"
2250
 
2251
  #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2252
  msgid "Enable Image Title"
2253
+ msgstr "Ενεργοποίηση Τίτλου Εικόνας"
2254
 
2255
  #: admin/views/Shortcode.php:893
2256
  msgid "Title Position"
2257
+ msgstr "Θέση Τίτλου"
2258
 
2259
  #: admin/views/Shortcode.php:913
2260
  msgid "Image title position on slideshow."
2262
 
2263
  #: admin/views/Shortcode.php:926
2264
  msgid "Enable Image Description"
2265
+ msgstr "Ενεργοποίηση Περιγραφής Εικόνας"
2266
 
2267
  #: admin/views/Shortcode.php:933
2268
  msgid "Description Position"
2269
+ msgstr "Θέση Περιγραφής"
2270
 
2271
  #: admin/views/Shortcode.php:952
2272
  msgid "Image description position on slideshow."
2281
  msgstr ""
2282
 
2283
  #: admin/views/Shortcode.php:1002
 
 
2284
  msgid "Album title"
2285
+ msgstr "Τίτλος Άλμπουμ"
2286
 
2287
  #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
 
 
2288
  msgid "Album view type"
2289
+ msgstr "Τύπος εμφάνισης άλμπουμ"
2290
 
2291
  #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2292
  msgid "The gallery images view type in the album."
2294
 
2295
  #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2296
  msgid "Image thumbnail width: "
2297
+ msgstr "Μήκος μικρογραφίας εικόνας:"
2298
 
2299
  #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2300
  msgid "Max. number of image columns:"
2301
+ msgstr "Μέγιστος αριθμός στηλών εικόνων"
2302
 
2303
  #: admin/views/Shortcode.php:1128
2304
  msgid "Open in new window"
2305
+ msgstr "Άνοιγμα σε νέο παράθυρο"
2306
 
2307
  #: admin/views/Shortcode.php:1131
2308
  msgid "Open new window when redirecting."
2309
+ msgstr "Άνοιγμα σε νέο παράθυρο κατά την ανακατεύθυνση."
2310
 
2311
  #: admin/views/Shortcode.php:1151
2312
  msgid "Maximum values for lightbox width and height."
2330
 
2331
  #: admin/views/Shortcode.php:1233
2332
  msgid "Enable fullscreen view for images."
2333
+ msgstr "Ενεργοποίηση πλήρους οθόνης για τις εικόνες."
2334
 
2335
  #: admin/views/Shortcode.php:1241
2336
  msgid "Enable title, description for images."
2337
+ msgstr "Ενεργοποίηση τίτλου, περιγραφής στις εικόνες"
2338
 
2339
  #: admin/views/Shortcode.php:1264
2340
  msgid "Enable rating for images."
2341
+ msgstr "Ενεργοποίηση αξιολόγησης των εικόνων."
2342
 
2343
  #: admin/views/Shortcode.php:1272
2344
  msgid "Enable comments for images."
2345
+ msgstr "Ενεργοποίηση σχολίων για τις εικόνες."
2346
 
2347
  #: admin/views/Shortcode.php:1284
2348
  msgid "Enable Facebook share button for images."
2349
+ msgstr "Ενεργοποίηση κουμπιού Facebook στις εικόνες."
2350
 
2351
  #: admin/views/Shortcode.php:1292
2352
  msgid "Enable Twitter share button for images."
2353
+ msgstr "Ενεργοποίηση κουμπιού Twitter στις εικόνες."
2354
 
2355
  #: admin/views/Shortcode.php:1300
2356
  msgid "Enable Google+ share button for images."
2357
+ msgstr "Ενεργοποίηση κουμπιού Google+ στις εικόνες."
2358
 
2359
  #: admin/views/Shortcode.php:1308
2360
  msgid "Enable Pinterest share button for images."
2361
+ msgstr "Ενεργοποίηση κουμπιού Pinterest στις εικόνες."
2362
 
2363
  #: admin/views/Shortcode.php:1316
2364
  msgid "Enable Tumblr share button for images."
2365
+ msgstr "Ενεργοποίηση κουμπιού Tumblr στις εικόνες."
2366
 
2367
  #: admin/views/Shortcode.php:1327
2368
  msgid "Enable Ecommerce for images."
2369
+ msgstr "Ενεργοποίηση κουμπιού Ecommerce στις εικόνες."
2370
 
2371
  #: admin/views/Shortcode.php:1340
2372
  msgid "Toggle panel"
2374
 
2375
  #: admin/views/Shortcode.php:1386
2376
  msgid "Advertisement type:"
2377
+ msgstr "Τύπος διαφήμισης:"
2378
 
2379
  #: admin/views/Shortcode.php:1397
2380
  msgid "Enter absolute url."
2386
 
2387
  #: admin/views/Shortcode.php:1507
2388
  msgid "Insert into post"
2389
+ msgstr "Εισαγωγή στο ποστ"
2390
 
2391
  #: admin/views/Shortcode.php:1532
2392
  msgid "New shortcode"
2410
 
2411
  #: admin/views/Shortcode.php:2909
2412
  msgid "Image thumbnail dimensions:"
2413
+ msgstr "Διαστάσεις μικρογραφίας εικόνας:"
2414
 
2415
  #: admin/views/Shortcode.php:2912
2416
  msgid "Image thumbnail height:"
2417
+ msgstr "Ύψος μικρογραφίας εικόνας:"
2418
 
2419
  #: admin/views/Shortcode.php:2913
2420
  msgid "Number of image rows:"
2421
+ msgstr "Αριθμός γραμμών εικόνων"
2422
 
2423
  #: admin/views/Themes.php:18
2424
  msgid "You can't change theme parameters in free version."
2425
+ msgstr "Δε μπορείτε να αλλάξετε τις παραμέτρους του θέματος στη δωρεάν έκδοση."
2426
 
2427
  #: admin/views/Themes.php:170
2428
  msgid "Theme Name"
2429
+ msgstr "Όνομα Θέματος"
2430
 
2431
  #: admin/views/Themes.php:178
2432
  msgid "Reset to default theme"
2433
+ msgstr "Επαναφορά στο αρχικό θέμα"
2434
 
2435
+ #: admin/views/Themes.php:206 admin/views/Themes.php:1516 admin/views/Themes.php:1801
2436
+ #: admin/views/Themes.php:2334 admin/views/Themes.php:3118 admin/views/Themes.php:4490
 
2437
  msgid "Margin:"
2438
  msgstr ""
2439
 
2440
+ #: admin/views/Themes.php:212 admin/views/Themes.php:512 admin/views/Themes.php:761
2441
+ #: admin/views/Themes.php:1523 admin/views/Themes.php:1794 admin/views/Themes.php:2341
 
2442
  #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2443
  msgid "Padding:"
2444
  msgstr ""
2445
 
2446
+ #: admin/views/Themes.php:218 admin/views/Themes.php:518 admin/views/Themes.php:767
2447
+ #: admin/views/Themes.php:1530 admin/views/Themes.php:1808 admin/views/Themes.php:2774
 
2448
  #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2449
  msgid "Border width:"
2450
  msgstr ""
2451
 
2452
+ #: admin/views/Themes.php:224 admin/views/Themes.php:524 admin/views/Themes.php:773
2453
+ #: admin/views/Themes.php:1536 admin/views/Themes.php:1814 admin/views/Themes.php:2780
 
2454
  #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
 
 
2455
  msgid "Border style:"
2456
+ msgstr ""
2457
 
2458
+ #: admin/views/Themes.php:238 admin/views/Themes.php:538 admin/views/Themes.php:787
2459
+ #: admin/views/Themes.php:1550 admin/views/Themes.php:1828 admin/views/Themes.php:2794
 
2460
  #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2461
  msgid "Border color:"
2462
  msgstr ""
2463
 
2464
+ #: admin/views/Themes.php:244 admin/views/Themes.php:544 admin/views/Themes.php:793
2465
+ #: admin/views/Themes.php:1556 admin/views/Themes.php:1834 admin/views/Themes.php:2360
2466
+ #: admin/views/Themes.php:2800 admin/views/Themes.php:3209 admin/views/Themes.php:4473
 
 
2467
  msgid "Border radius:"
2468
  msgstr ""
2469
 
2470
+ #: admin/views/Themes.php:247 admin/views/Themes.php:254 admin/views/Themes.php:410
2471
+ #: admin/views/Themes.php:417 admin/views/Themes.php:473 admin/views/Themes.php:480
2472
+ #: admin/views/Themes.php:547 admin/views/Themes.php:722 admin/views/Themes.php:729
2473
+ #: admin/views/Themes.php:796 admin/views/Themes.php:935 admin/views/Themes.php:942
2474
+ #: admin/views/Themes.php:997 admin/views/Themes.php:1004 admin/views/Themes.php:1120
2475
+ #: admin/views/Themes.php:1141 admin/views/Themes.php:1169 admin/views/Themes.php:1203
2476
+ #: admin/views/Themes.php:1259 admin/views/Themes.php:1319 admin/views/Themes.php:1326
2477
+ #: admin/views/Themes.php:1380 admin/views/Themes.php:1387 admin/views/Themes.php:1442
2478
+ #: admin/views/Themes.php:1462 admin/views/Themes.php:1519 admin/views/Themes.php:1526
2479
+ #: admin/views/Themes.php:1559 admin/views/Themes.php:1579 admin/views/Themes.php:1653
2480
+ #: admin/views/Themes.php:1660 admin/views/Themes.php:1693 admin/views/Themes.php:1755
2481
+ #: admin/views/Themes.php:1762 admin/views/Themes.php:1797 admin/views/Themes.php:1804
2482
+ #: admin/views/Themes.php:1837 admin/views/Themes.php:1844 admin/views/Themes.php:1998
2483
+ #: admin/views/Themes.php:2005 admin/views/Themes.php:2060 admin/views/Themes.php:2115
2484
+ #: admin/views/Themes.php:2122 admin/views/Themes.php:2195 admin/views/Themes.php:2202
2485
+ #: admin/views/Themes.php:2290 admin/views/Themes.php:2330 admin/views/Themes.php:2337
2486
+ #: admin/views/Themes.php:2363 admin/views/Themes.php:2396 admin/views/Themes.php:2461
2487
+ #: admin/views/Themes.php:2494 admin/views/Themes.php:2513 admin/views/Themes.php:2594
2488
+ #: admin/views/Themes.php:2735 admin/views/Themes.php:2742 admin/views/Themes.php:2803
2489
+ #: admin/views/Themes.php:2942 admin/views/Themes.php:2997 admin/views/Themes.php:3052
2490
+ #: admin/views/Themes.php:3059 admin/views/Themes.php:3121 admin/views/Themes.php:3128
2491
+ #: admin/views/Themes.php:3135 admin/views/Themes.php:3212 admin/views/Themes.php:3229
2492
+ #: admin/views/Themes.php:3274 admin/views/Themes.php:3357 admin/views/Themes.php:3364
2493
+ #: admin/views/Themes.php:3458 admin/views/Themes.php:3512 admin/views/Themes.php:3545
2494
+ #: admin/views/Themes.php:3648 admin/views/Themes.php:3685 admin/views/Themes.php:3729
2495
+ #: admin/views/Themes.php:3762 admin/views/Themes.php:3867 admin/views/Themes.php:3936
2496
+ #: admin/views/Themes.php:3943 admin/views/Themes.php:3950 admin/views/Themes.php:4078
2497
+ #: admin/views/Themes.php:4085 admin/views/Themes.php:4092 admin/views/Themes.php:4303
2498
+ #: admin/views/Themes.php:4322 admin/views/Themes.php:4355 admin/views/Themes.php:4476
2499
+ #: admin/views/Themes.php:4493 admin/views/Themes.php:4500 admin/views/Themes.php:4529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2500
  #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2501
  msgid "Use CSS type values."
2502
  msgstr ""
2505
  msgid "Shadow:"
2506
  msgstr ""
2507
 
2508
+ #: admin/views/Themes.php:258 admin/views/Themes.php:607 admin/views/Themes.php:854
2509
+ #: admin/views/Themes.php:1848 admin/views/Themes.php:2807
 
2510
  msgid "Hover effect:"
2511
  msgstr ""
2512
 
2513
+ #: admin/views/Themes.php:272 admin/views/Themes.php:621 admin/views/Themes.php:868
2514
+ #: admin/views/Themes.php:1862 admin/views/Themes.php:2250 admin/views/Themes.php:2821
 
2515
  msgid "Hover effect value:"
2516
  msgstr ""
2517
 
2518
+ #: admin/views/Themes.php:275 admin/views/Themes.php:624 admin/views/Themes.php:871
2519
+ #: admin/views/Themes.php:1865 admin/views/Themes.php:2253 admin/views/Themes.php:2824
 
2520
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2521
  msgstr ""
2522
 
2523
+ #: admin/views/Themes.php:279 admin/views/Themes.php:628 admin/views/Themes.php:875
 
2524
  msgid "Transition:"
2525
  msgstr ""
2526
 
2527
+ #: admin/views/Themes.php:299 admin/views/Themes.php:1888 admin/views/Themes.php:2257
 
2528
  msgid "Thumbnail background color:"
2529
+ msgstr "Χρώμα φόντου μικρογραφίας:"
2530
 
2531
+ #: admin/views/Themes.php:306 admin/views/Themes.php:1894 admin/views/Themes.php:2229
2532
+ #: admin/views/Themes.php:2847
2533
  msgid "Thumbnail transparency:"
2534
+ msgstr "Ορατότητα μικρογραφίας:"
2535
 
2536
+ #: admin/views/Themes.php:313 admin/views/Themes.php:1446 admin/views/Themes.php:1901
2537
+ #: admin/views/Themes.php:2854
2538
  msgid "Full background color:"
2539
  msgstr ""
2540
 
2541
+ #: admin/views/Themes.php:319 admin/views/Themes.php:1452 admin/views/Themes.php:1907
2542
+ #: admin/views/Themes.php:2860
2543
  msgid "Full background transparency:"
2544
  msgstr ""
2545
 
2546
+ #: admin/views/Themes.php:326 admin/views/Themes.php:582 admin/views/Themes.php:830
2547
+ #: admin/views/Themes.php:1502 admin/views/Themes.php:1914 admin/views/Themes.php:2867
 
2548
  #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2549
  msgid "Alignment:"
2550
  msgstr ""
2551
 
2552
+ #: admin/views/Themes.php:350 admin/views/Themes.php:1593 admin/views/Themes.php:1938
 
2553
  msgid "Title position:"
2554
+ msgstr "Θέση τίτλου:"
2555
 
2556
+ #: admin/views/Themes.php:353 admin/views/Themes.php:1158 admin/views/Themes.php:1596
2557
+ #: admin/views/Themes.php:1941 admin/views/Themes.php:3443 admin/views/Themes.php:3718
2558
+ #: admin/views/Themes.php:3806 admin/views/Themes.php:3874 admin/views/Themes.php:4016
2559
+ #: admin/views/Themes.php:4546
 
2560
  msgid "Top"
2561
+ msgstr "Πάνω"
2562
 
2563
+ #: admin/views/Themes.php:355 admin/views/Themes.php:1160 admin/views/Themes.php:1598
2564
+ #: admin/views/Themes.php:1943 admin/views/Themes.php:3445 admin/views/Themes.php:3720
2565
+ #: admin/views/Themes.php:3808 admin/views/Themes.php:3876 admin/views/Themes.php:4018
2566
+ #: admin/views/Themes.php:4548
 
2567
  msgid "Bottom"
2568
+ msgstr "Κάτω"
2569
 
2570
+ #: admin/views/Themes.php:359 admin/views/Themes.php:884 admin/views/Themes.php:1947
2571
+ #: admin/views/Themes.php:2543 admin/views/Themes.php:2891 admin/views/Themes.php:4138
 
2572
  #: admin/views/Themes.php:4817
2573
  msgid "Title font size:"
2574
+ msgstr "Μέγεθος γραμματοσειράς τίτλου:"
2575
 
2576
+ #: admin/views/Themes.php:365 admin/views/Themes.php:890 admin/views/Themes.php:1953
2577
+ #: admin/views/Themes.php:2549 admin/views/Themes.php:2897 admin/views/Themes.php:4096
 
2578
  msgid "Title font color:"
2579
+ msgstr "Χρώμα γραμματοσειράς τίτλου:"
2580
 
2581
+ #: admin/views/Themes.php:371 admin/views/Themes.php:896 admin/views/Themes.php:1342
2582
+ #: admin/views/Themes.php:1959 admin/views/Themes.php:2555 admin/views/Themes.php:2903
 
2583
  #: admin/views/Themes.php:4102
2584
  msgid "Title font family:"
2585
+ msgstr "Οικογένεια γραμματοσειράς τίτλου:"
2586
 
2587
+ #: admin/views/Themes.php:393 admin/views/Themes.php:918 admin/views/Themes.php:1981
2588
+ #: admin/views/Themes.php:2577 admin/views/Themes.php:2925 admin/views/Themes.php:4124
 
2589
  #: admin/views/Themes.php:4829
2590
  msgid "Title font weight:"
2591
+ msgstr "Βάρος γραμματοσειράς τίτλου:"
2592
 
2593
+ #: admin/views/Themes.php:407 admin/views/Themes.php:932 admin/views/Themes.php:1995
2594
+ #: admin/views/Themes.php:2939
2595
  msgid "Title box shadow:"
2596
+ msgstr "Σκιά κουτιού τίτλου:"
2597
 
2598
+ #: admin/views/Themes.php:414 admin/views/Themes.php:939 admin/views/Themes.php:2002
2599
+ #: admin/views/Themes.php:2504 admin/views/Themes.php:4783
 
2600
  msgid "Title margin:"
2601
  msgstr ""
2602
 
2603
+ #: admin/views/Themes.php:421 admin/views/Themes.php:671 admin/views/Themes.php:946
2604
+ #: admin/views/Themes.php:1703 admin/views/Themes.php:2064 admin/views/Themes.php:2684
 
2605
  #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2606
  msgid "Gallery title/description font size:"
2607
  msgstr ""
2608
 
2609
+ #: admin/views/Themes.php:428 admin/views/Themes.php:677 admin/views/Themes.php:952
2610
+ #: admin/views/Themes.php:1710 admin/views/Themes.php:2070 admin/views/Themes.php:2690
 
2611
  #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2612
  msgid "Gallery title/description font color:"
2613
  msgstr ""
2614
 
2615
+ #: admin/views/Themes.php:434 admin/views/Themes.php:683 admin/views/Themes.php:958
2616
+ #: admin/views/Themes.php:1716 admin/views/Themes.php:2076 admin/views/Themes.php:2696
 
2617
  #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2618
  msgid "Gallery title/description font family:"
2619
  msgstr ""
2620
 
2621
+ #: admin/views/Themes.php:456 admin/views/Themes.php:705 admin/views/Themes.php:980
2622
+ #: admin/views/Themes.php:1738 admin/views/Themes.php:2098 admin/views/Themes.php:2718
 
2623
  #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2624
  msgid "Gallery title/description font weight:"
2625
  msgstr ""
2626
 
2627
+ #: admin/views/Themes.php:470 admin/views/Themes.php:719 admin/views/Themes.php:994
2628
+ #: admin/views/Themes.php:1752 admin/views/Themes.php:2112 admin/views/Themes.php:2732
 
2629
  #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2630
  msgid "Gallery title/description box shadow:"
2631
  msgstr ""
2632
 
2633
+ #: admin/views/Themes.php:477 admin/views/Themes.php:726 admin/views/Themes.php:1001
2634
+ #: admin/views/Themes.php:1759 admin/views/Themes.php:2119 admin/views/Themes.php:2739
 
2635
  #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2636
  msgid "Gallery title/description margin:"
2637
  msgstr ""
2638
 
2639
+ #: admin/views/Themes.php:484 admin/views/Themes.php:733 admin/views/Themes.php:1008
2640
+ #: admin/views/Themes.php:1766 admin/views/Themes.php:2126 admin/views/Themes.php:2746
 
2641
  #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2642
  msgid "Gallery title/description alignment:"
2643
  msgstr ""
2644
 
2645
  #: admin/views/Themes.php:562 admin/views/Themes.php:810
2646
  msgid "Transparency:"
2647
+ msgstr "Ορατότητα:"
2648
 
2649
+ #: admin/views/Themes.php:569 admin/views/Themes.php:817 admin/views/Themes.php:1036
2650
+ #: admin/views/Themes.php:1563 admin/views/Themes.php:2347 admin/views/Themes.php:3091
 
2651
  #: admin/views/Themes.php:4599
2652
  msgid "Background color:"
2653
+ msgstr "Χρώμα φόντου:"
2654
 
2655
+ #: admin/views/Themes.php:575 admin/views/Themes.php:823 admin/views/Themes.php:1569
2656
+ #: admin/views/Themes.php:2353 admin/views/Themes.php:3097
 
2657
  msgid "Background transparency:"
2658
+ msgstr "Ορατότητα φόντου:"
2659
 
2660
+ #: admin/views/Themes.php:637 admin/views/Themes.php:1391 admin/views/Themes.php:2624
2661
+ #: admin/views/Themes.php:4187
2662
  msgid "Description font size:"
2663
+ msgstr "Μέγεθος γραμματοσειράς περιγραφής:"
2664
 
2665
+ #: admin/views/Themes.php:643 admin/views/Themes.php:2630 admin/views/Themes.php:4145
 
2666
  msgid "Description font color:"
2667
+ msgstr "Χρώμα γραμματοσειράς περιγραφής:"
2668
 
2669
+ #: admin/views/Themes.php:649 admin/views/Themes.php:1403 admin/views/Themes.php:2636
2670
+ #: admin/views/Themes.php:4151
2671
  msgid "Description font family:"
2672
+ msgstr "Οικογένεια γραμματοσειράς περιγραφής:"
2673
 
2674
+ #: admin/views/Themes.php:1042 admin/views/Themes.php:3664 admin/views/Themes.php:4612
 
2675
  msgid "Right, left buttons size:"
2676
+ msgstr "Μέγεθος κουμπιών Αριστερά/Δεξιά:"
2677
 
2678
  #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2679
  msgid "Play, pause buttons size:"
2680
+ msgstr "Μέγεθος κουμπιών Έναρξης/Παύσης:"
2681
 
2682
+ #: admin/views/Themes.php:1054 admin/views/Themes.php:3239 admin/views/Themes.php:4624
 
2683
  msgid "Buttons color:"
2684
+ msgstr "Χρώμα κουμπιών:"
2685
 
2686
  #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2687
  msgid "Buttons transparency:"
2688
+ msgstr "Ορατότητα κουμπιών:"
2689
 
2690
  #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2691
  msgid "Buttons hover color:"
2692
  msgstr ""
2693
 
2694
+ #: admin/views/Themes.php:1073 admin/views/Themes.php:3658 admin/views/Themes.php:4643
 
2695
  msgid "Right, left buttons width:"
2696
  msgstr ""
2697
 
2698
+ #: admin/views/Themes.php:1079 admin/views/Themes.php:3652 admin/views/Themes.php:4649
 
2699
  msgid "Right, left buttons height:"
2700
  msgstr ""
2701
 
2702
+ #: admin/views/Themes.php:1085 admin/views/Themes.php:3633 admin/views/Themes.php:4655
 
2703
  msgid "Right, left buttons background color:"
2704
  msgstr ""
2705
 
2706
+ #: admin/views/Themes.php:1091 admin/views/Themes.php:3689 admin/views/Themes.php:4661
 
2707
  msgid "Right, left buttons border width:"
2708
  msgstr ""
2709
 
2710
+ #: admin/views/Themes.php:1097 admin/views/Themes.php:3695 admin/views/Themes.php:4667
 
2711
  msgid "Right, left buttons border style:"
2712
  msgstr ""
2713
 
2714
+ #: admin/views/Themes.php:1111 admin/views/Themes.php:3709 admin/views/Themes.php:4681
 
2715
  msgid "Right, left buttons border color:"
2716
  msgstr ""
2717
 
2718
+ #: admin/views/Themes.php:1117 admin/views/Themes.php:3682 admin/views/Themes.php:4687
 
2719
  msgid "Right, left buttons border radius:"
2720
  msgstr ""
2721
 
2722
+ #: admin/views/Themes.php:1124 admin/views/Themes.php:3619 admin/views/Themes.php:4694
 
2723
  msgid "Right, left buttons style:"
2724
  msgstr ""
2725
 
2809
 
2810
  #: admin/views/Themes.php:1303
2811
  msgid "Title background color: "
2812
+ msgstr "Χρώμα φόντου τίτλου:"
2813
 
2814
  #: admin/views/Themes.php:1309
2815
  msgid "Title transparency: "
2816
+ msgstr "Ορατότητα τίτλου:"
2817
 
2818
  #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
2819
  msgid "Title border radius:"
2825
 
2826
  #: admin/views/Themes.php:1330
2827
  msgid "Title font size: "
2828
+ msgstr "Μέγεθος γραμματοσειράς τίτλου:"
2829
 
2830
  #: admin/views/Themes.php:1336
2831
  msgid "Title color: "
2832
+ msgstr "Χρώμα τίτλου"
2833
 
2834
  #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
2835
  msgid "Description background color:"
2837
 
2838
  #: admin/views/Themes.php:1370
2839
  msgid "Description transparency:"
2840
+ msgstr "Ορατότητα περιγραφής:"
2841
 
2842
  #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
2843
  msgid "Description border radius:"
2844
  msgstr ""
2845
 
2846
+ #: admin/views/Themes.php:1384 admin/views/Themes.php:1657 admin/views/Themes.php:2591
 
2847
  msgid "Description padding:"
2848
  msgstr ""
2849
 
2850
  #: admin/views/Themes.php:1397
2851
  msgid "Description color:"
2852
+ msgstr "Χρώμα περιγραφής:"
2853
 
2854
  #: admin/views/Themes.php:1439
2855
  msgid "Full padding:"
2871
  msgid "Full border color:"
2872
  msgstr ""
2873
 
2874
+ #: admin/views/Themes.php:1576 admin/views/Themes.php:3132 admin/views/Themes.php:4526
 
2875
  msgid "Box shadow:"
2876
  msgstr ""
2877
 
2878
  #: admin/views/Themes.php:1602
2879
  msgid "Title alignment:"
2880
+ msgstr "Ευθυγράμμιση τίτλου:"
2881
 
2882
+ #: admin/views/Themes.php:1616 admin/views/Themes.php:2009 admin/views/Themes.php:2946
2883
+ #: admin/views/Themes.php:3171 admin/views/Themes.php:4399
 
2884
  msgid "Font size:"
2885
+ msgstr "Μέγεθος γραμματοσειράς:"
2886
 
2887
+ #: admin/views/Themes.php:1622 admin/views/Themes.php:2015 admin/views/Themes.php:2952
2888
+ #: admin/views/Themes.php:3177 admin/views/Themes.php:4405
 
2889
  msgid "Font color:"
2890
+ msgstr "Χρώμα γραμματοσειράς:"
2891
 
2892
+ #: admin/views/Themes.php:1628 admin/views/Themes.php:2021 admin/views/Themes.php:2958
2893
+ #: admin/views/Themes.php:3149 admin/views/Themes.php:4411
 
2894
  msgid "Font family:"
2895
+ msgstr "Οικογένεια γραμματοσειράς:"
2896
 
2897
  #: admin/views/Themes.php:1650
2898
  msgid "Description margin:"
2910
  msgid "Description border color:"
2911
  msgstr ""
2912
 
2913
+ #: admin/views/Themes.php:1869 admin/views/Themes.php:2206 admin/views/Themes.php:2828
 
2914
  msgid "Thumbnail transition:"
2915
  msgstr ""
2916
 
2917
+ #: admin/views/Themes.php:2043 admin/views/Themes.php:2980 admin/views/Themes.php:4433
 
2918
  msgid "Font weight:"
2919
  msgstr ""
2920
 
2921
+ #: admin/views/Themes.php:2057 admin/views/Themes.php:2393 admin/views/Themes.php:2994
 
2922
  msgid "Back padding:"
2923
  msgstr ""
2924
 
2952
 
2953
  #: admin/views/Themes.php:2215
2954
  msgid "Thumbnail alignment:"
2955
+ msgstr "Ευθυγράμμιση μικρογραφιών:"
2956
 
2957
  #: admin/views/Themes.php:2236
2958
  msgid "Thumbnail hover effect:"
2960
 
2961
  #: admin/views/Themes.php:2263
2962
  msgid "Thumbnails background color:"
2963
+ msgstr "Χρώμα φόντου μικρογραφιών:"
2964
 
2965
  #: admin/views/Themes.php:2269
2966
  msgid "Thumbnail background transparency:"
2967
+ msgstr "Ορατότητα φόντου μικρογραφίας:"
2968
 
2969
  #: admin/views/Themes.php:2287
2970
  msgid "Thumbnail div padding:"
3076
 
3077
  #: admin/views/Themes.php:3233
3078
  msgid "Buttons size:"
3079
+ msgstr "Μέγεθος κουμπιών:"
3080
 
3081
  #: admin/views/Themes.php:3245
3082
  msgid "Buttons and title border width:"
3227
  msgstr ""
3228
 
3229
  #: admin/views/Themes.php:3603
 
 
3230
  msgid "Share buttons color:"
3231
+ msgstr "Χρώμα κουμπιών διαμοιρασμού:"
3232
 
3233
  #: admin/views/Themes.php:3639
3234
  msgid "Right, left buttons transparency:"
3284
 
3285
  #: admin/views/Themes.php:3803
3286
  msgid "Rating position:"
3287
+ msgstr "Θέση αξιολογήσεων:"
3288
 
3289
  #: admin/views/Themes.php:3812
3290
  msgid "Rating alignment:"
3291
+ msgstr "Ευθυγράμμιση αξιολογήσεων:"
3292
 
3293
  #: admin/views/Themes.php:3826
3294
  msgid "Rating icon:"
3295
+ msgstr "Εικονίδιο αξιολογήσεων:"
3296
 
3297
  #: admin/views/Themes.php:3840
3298
  msgid "Rating color:"
3299
+ msgstr "Χρώμα αξιολογήσεων:"
3300
 
3301
  #: admin/views/Themes.php:3846
3302
  msgid "Rating hover color:"
3304
 
3305
  #: admin/views/Themes.php:3852
3306
  msgid "Rating size:"
3307
+ msgstr "Μέγεθος αξιολογήσεων:"
3308
 
3309
  #: admin/views/Themes.php:3858
3310
  msgid "Rating icon count:"
3411
  msgstr ""
3412
 
3413
  #: admin/views/Themes.php:4194
 
 
3414
  msgid "Comments Width:"
3415
+ msgstr "Μήκος Σχολίων:"
3416
 
3417
  #: admin/views/Themes.php:4200
3418
  msgid "Comments position:"
3419
+ msgstr "Θέση σχολίων:"
3420
 
3421
  #: admin/views/Themes.php:4209
3422
  msgid "Comments background color:"
3423
+ msgstr "Χρώμα φόντου σχολίων:"
3424
 
3425
  #: admin/views/Themes.php:4215
3426
  msgid "Comments font size:"
3427
+ msgstr "Μέγεθος γραμματοσειράς σχολίων:"
3428
 
3429
  #: admin/views/Themes.php:4221
3430
  msgid "Comments font color:"
3431
+ msgstr "Χρώμα γραμματοσειράς σχολίων:"
3432
 
3433
  #: admin/views/Themes.php:4227
3434
  msgid "Comments font family:"
3520
 
3521
  #: admin/views/Themes.php:4543
3522
  msgid "Position:"
3523
+ msgstr "Θέση:"
3524
 
3525
  #: admin/views/Themes.php:4566
3526
  msgid "Numbering:"
3527
+ msgstr "Αρίθμηση:"
3528
 
3529
  #: admin/views/Themes.php:4575
3530
  msgid "Button text:"
3531
+ msgstr "Κείμενο κουμπιού:"
3532
 
3533
  #: admin/views/Themes.php:4580
3534
  msgid "Arrow"
3535
+ msgstr "Βέλος"
3536
 
3537
  #: admin/views/Themes.php:4581
3538
  msgid "Next, previous buttons values."
3539
+ msgstr "Τιμές κουμπιών Επόμενο/Προηγούμενο"
3540
 
3541
  #: admin/views/Themes.php:4605
3542
  msgid "Container opacity:"
3560
 
3561
  #: admin/views/Themes.php:4762
3562
  msgid "Title background color:"
3563
+ msgstr "Χρώμα φόντου τίτλου:"
3564
 
3565
  #: admin/views/Themes.php:4769
3566
  msgid "Title opacity:"
3567
+ msgstr "Ορατότητα τίτλου:"
3568
 
3569
  #: admin/views/Themes.php:4796
3570
  msgid "Title Font family:"
3571
+ msgstr "Οικογένεια γραμματοσειράς τίτλου:"
3572
 
3573
  #: admin/views/Themes.php:4823
3574
  msgid "Title color:"
3575
+ msgstr "Χρώμα τίτλου"
3576
 
3577
  #: admin/views/Uninstall.php:41
3578
  #, php-format
3579
+ msgid "%s to Finish the Uninstallation and %s will be Deactivated Automatically."
 
3580
  msgstr ""
3581
 
3582
  #: admin/views/Uninstall.php:41
3583
  msgid "Click Here"
3584
+ msgstr "Πατήστε εδώ"
3585
 
3586
  #: admin/views/Uninstall.php:50
3587
  msgid "support team"
3588
+ msgstr "ομάδα υποστήριξης"
3589
 
3590
  #: admin/views/Uninstall.php:51 wd/templates/display_overview_support.php:41
3591
  msgid "Contact us"
3592
+ msgstr "Επικοινωνήστε μαζί μας"
3593
 
3594
  #: admin/views/Uninstall.php:52
3595
  #, php-format
3596
  msgid ""
3597
+ "Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out "
3598
+ "with your issue. We value each and every user and value what's right for our users in "
3599
+ "everything we do.<br />\n"
3600
+ " However, if anyway you have made a decision to uninstall the plugin, please take a "
3601
+ "minute to %s and tell what you didn't like for our plugins further improvement and "
3602
+ "development. Thank you !!!"
3603
  msgstr ""
3604
 
3605
  #: admin/views/Uninstall.php:56
3606
  #, php-format
3607
  msgid ""
3608
+ "Deactivating %s plugin does not remove any data that may have been created. To completely "
3609
+ "remove this plugin, you can uninstall it here."
3610
  msgstr ""
3611
 
3612
  #: admin/views/Uninstall.php:59
3613
  msgid "WARNING:"
3614
+ msgstr "ΠΡΟΣΟΧΗ:"
3615
 
3616
  #: admin/views/Uninstall.php:60
3617
  msgid ""
3618
+ "Once uninstalled, this can't be undone. You should use a Database Backup plugin of "
3619
+ "WordPress to back up all the data first."
3620
  msgstr ""
3621
 
3622
  #: admin/views/Uninstall.php:63
3623
  msgid "The following Database Tables will be deleted:"
3624
+ msgstr "Οι ακόλουθοι Πίνακες της Βάσης Δεδομένων θα διαγραφούν:"
3625
 
3626
  #: admin/views/Uninstall.php:68
3627
  msgid "Database Tables"
3628
+ msgstr "Πίνακες Βάσης Δεδομένων"
3629
 
3630
  #: admin/views/Uninstall.php:86
3631
  msgid "Delete the folder containing uploaded images."
3632
+ msgstr "Διαγραφή του φακέλου εικόνων."
3633
 
3634
  #: admin/views/Uninstall.php:92
3635
  #, php-format
3636
  msgid "Do you really want to uninstall %s?"
3637
+ msgstr "Θέλετε πραγματικά να απεγκαταστήσετε το %s?"
3638
 
3639
  #: admin/views/Uninstall.php:102
3640
  msgid "UNINSTALL"
3641
+ msgstr "ΑΠΕΓΚΑΤΑΣΤΑΣΗ"
3642
 
3643
  #: admin/views/Uninstall.php:104
3644
  #, php-format
3645
+ msgid "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
 
3646
  msgstr ""
3647
+ "Πρόκειται να απεγκαταστήσετε τη %s από το Wordpress. Αυτή η ενέργεια ΔΕΝ αναστρέφεται."
3648
 
3649
  #: admin/views/Widget.php:98 photo-gallery.php:88
3650
  msgid "Photo Gallery"
3651
+ msgstr "Photo Gallery"
3652
 
3653
  #: admin/views/Widget.php:112 admin/views/WidgetSlideshow.php:83
3654
  #: admin/views/WidgetTags.php:80
3655
  msgid "Title:"
3656
+ msgstr "Τίτλος:"
3657
 
3658
  #: admin/views/Widget.php:116 admin/views/WidgetTags.php:84
3659
  msgid "Type:"
3660
+ msgstr "Τύπος:"
3661
 
3662
  #: admin/views/Widget.php:118
3663
  msgid "Gallery groups"
3664
+ msgstr "Γκρουπ συλλογών"
3665
 
3666
  #: admin/views/Widget.php:121 admin/views/WidgetSlideshow.php:87
3667
  msgid "Galleries:"
3668
+ msgstr "Συλλογές:"
3669
 
3670
+ #: admin/views/Widget.php:123 admin/views/Widget.php:144 admin/views/WidgetSlideshow.php:89
 
3671
  msgid "Select"
3672
+ msgstr "Επιλέξτε"
3673
 
3674
  #: admin/views/Widget.php:134
 
 
3675
  msgid "Gallery Type:"
3676
+ msgstr "Τύπος συλλογής:"
3677
 
3678
  #: admin/views/Widget.php:142
3679
  msgid "Gallery Groups:"
3680
+ msgstr "Γκρουπ συλλογών:"
3681
 
3682
  #: admin/views/Widget.php:155
3683
  msgid "Sort:"
3684
+ msgstr "Ταξινόμηση:"
3685
 
3686
  #: admin/views/Widget.php:157 framework/WDWLibrary.php:655
3687
  msgid "First"
3688
+ msgstr "Πρώτο"
3689
 
3690
  #: admin/views/Widget.php:158 framework/WDWLibrary.php:658
3691
  msgid "Last"
3692
+ msgstr "Τελευταίο"
3693
 
3694
  #: admin/views/Widget.php:162
3695
  msgid "Count:"
3698
  #: admin/views/Widget.php:166 admin/views/WidgetSlideshow.php:132
3699
  #: admin/views/WidgetTags.php:107
3700
  msgid "Dimensions:"
3701
+ msgstr "Διαστάσεις:"
3702
 
3703
  #: admin/views/Widget.php:171 admin/views/WidgetSlideshow.php:148
3704
  #: admin/views/WidgetTags.php:126
3705
  msgid "Themes:"
3706
+ msgstr "Θέματα:"
3707
 
3708
  #: admin/views/WidgetSlideshow.php:68 photo-gallery.php:1421
3709
  msgid "Photo Gallery Slideshow"
3731
 
3732
  #: admin/views/WidgetSlideshow.php:144
3733
  msgid "Time interval:"
3734
+ msgstr "Χρονικό διάστημα:"
3735
 
3736
  #: admin/views/WidgetTags.php:65 photo-gallery.php:1417
3737
  msgid "Photo Gallery Tags Cloud"
3739
 
3740
  #: admin/views/WidgetTags.php:90
3741
  msgid "Show Tag Names:"
3742
+ msgstr "Εμφάνιση Ονομάτων Ετικετών:"
3743
 
3744
  #: admin/views/WidgetTags.php:96
3745
  msgid "Open in:"
3746
+ msgstr "Άνοιγμα σε:"
3747
 
3748
  #: admin/views/WidgetTags.php:97
3749
  msgid "Page"
3750
+ msgstr "Σελίδα"
3751
 
3752
  #: admin/views/WidgetTags.php:102
3753
  msgid "Number:"
3754
+ msgstr "Αριθμός:"
3755
 
3756
  #: admin/views/WidgetTags.php:104
3757
  msgid "0 for all."
3758
+ msgstr "0 για όλα."
3759
 
3760
  #: admin/views/WidgetTags.php:112
3761
  msgid "Transparent Background:"
3762
+ msgstr "Διαφανές φόντο:"
3763
 
3764
  #: admin/views/WidgetTags.php:118
3765
  msgid "Background Color:"
3766
+ msgstr "Χρώμα Φόντου"
3767
 
3768
  #: admin/views/WidgetTags.php:122
3769
  msgid "Text Color:"
3770
+ msgstr "Χρώμα Κειμένου:"
3771
 
3772
  #: filemanager/controller.php:66
3773
  msgid "Directory already exists."
3774
+ msgstr "Ο φάκελος υπάρχει ήδη."
3775
 
3776
  #: filemanager/controller.php:113
3777
  msgid "File doesn't exist."
3778
+ msgstr "Το αρχείο δεν υπάρχει."
3779
 
3780
  #: filemanager/controller.php:117 filemanager/controller.php:130
3781
  #: filemanager/controller.php:150
3782
  msgid "Can't rename the file."
3783
+ msgstr "Το αρχείο δε μπορεί να μετονομαστεί"
3784
 
3785
  #: filemanager/controller.php:187
3786
  msgid "Some of the files couldn't be removed."
3787
+ msgstr "Κάποια από τα αρχεία δε μπόρεσαν να αφαιρεθούν."
3788
 
3789
  #: filemanager/controller.php:274
3790
  msgid "Failed to copy some of the files."
3791
+ msgstr "Αποτυχία στην αντιγραφή κάποιων αρχείων."
3792
 
3793
  #: filemanager/controller.php:296
3794
  msgid "Failed to move some of the files."
3795
+ msgstr "Αποτυχία στη μετακίνηση κάποιων αρχείων."
3796
 
3797
  #: filemanager/view.php:53
3798
  msgid "File loading failed"
3799
+ msgstr "Η φόρτωση του αρχείου απέτυχε"
3800
 
3801
  #: filemanager/view.php:55
3802
  msgid "Are you sure you want to permanently remove selected items?"
3803
+ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε οριστικά τα επιλεγμένα στοιχεία?"
3804
 
3805
  #: filemanager/view.php:56
3806
  msgid "This will cancel uploads. Continue?"
3807
+ msgstr "Αυτό θα ακυρώσει τις μεταφορτώσεις. Συνέχεια?"
3808
 
3809
  #: filemanager/view.php:58
3810
  msgid "Enter directory name"
3811
+ msgstr "Όνομα φακέλου"
3812
 
3813
  #: filemanager/view.php:59
3814
  msgid "Enter new name"
3815
+ msgstr "Γράψτε νέο όνομα"
3816
 
3817
  #: filemanager/view.php:60
3818
  msgid "Processing uploaded files..."
3819
+ msgstr "Επεξεργασία ανεβασμένων αρχείων..."
3820
 
3821
  #: filemanager/view.php:98
3822
  msgid "Up"
3823
+ msgstr "Πάνω"
3824
 
3825
  #: filemanager/view.php:99
3826
  msgid "Make a directory"
3827
+ msgstr "Νέος Φάκελος"
3828
 
3829
  #: filemanager/view.php:100
3830
  msgid "Rename item"
3831
+ msgstr "Μετονομασία στοιχείου"
3832
 
3833
  #: filemanager/view.php:102
3834
  msgid "Copy"
3835
+ msgstr "Αντιγραφή"
3836
 
3837
  #: filemanager/view.php:103
3838
  msgid "Cut"
3839
+ msgstr "Μετακίνηση"
3840
 
3841
  #: filemanager/view.php:104
3842
  msgid "Paste"
3843
+ msgstr "Επικόλληση"
3844
 
3845
  #: filemanager/view.php:105
 
 
3846
  msgid "Remove items"
3847
+ msgstr "Αφαίρεση στοιχείου(ων)"
3848
 
3849
  #: filemanager/view.php:109
3850
  msgid "View thumbs"
3851
+ msgstr "Εμφάνιση μικρογραφιών"
3852
 
3853
  #: filemanager/view.php:110
3854
  msgid "View list"
3855
+ msgstr "Εμφάνιση λίστας"
3856
 
3857
  #: filemanager/view.php:114
3858
  msgid "Upload files"
3859
+ msgstr "Ανέβασμα αρχείων"
3860
 
3861
  #: filemanager/view.php:128
3862
  msgid "To change upload directory go to Options page."
3863
+ msgstr "Για να αλλάξετε το φάκελο μεταφορτώσεων πηγαίνετε στη σελίδα των Ρυθμίσεων"
3864
 
3865
  #: filemanager/view.php:140
 
 
3866
  msgid "Order by:"
3867
+ msgstr "Ταξινόμηση κατά:"
3868
 
3869
  #: filemanager/view.php:142
3870
  msgid "Click to sort by name"
3871
+ msgstr "Πατήστε για να ταξινομήσετε κατά όνομα"
3872
 
3873
  #: filemanager/view.php:154
3874
  msgid "Click to sort by size"
3875
+ msgstr "Πατήστε για να ταξινομήσετε κατά μέγεθος"
3876
 
3877
  #: filemanager/view.php:166
3878
  msgid "Click to sort by date modified"
3879
+ msgstr "Πατήστε για να ταξινομήσετε κατά ημερομηνία αλλαγής"
3880
 
3881
  #: filemanager/view.php:256
 
 
3882
  msgid "Add selected images to gallery"
3883
+ msgstr "Προσθήκη επιλεγμένων εικόνων στη συλλογή"
3884
 
3885
  #: filemanager/view.php:272
3886
  msgid "Thumbnail Maximum Dimensions:"
3887
+ msgstr "Μέγιστες Διαστάσεις Μικρογραφίας:"
3888
 
3889
  #: filemanager/view.php:273
3890
  msgid "Thumbnail:"
3891
+ msgstr "Μικρογραφία:"
3892
 
3893
  #: filemanager/view.php:278 frontend/views/BWGViewAlbum_compact_preview.php:243
3894
  #: frontend/views/BWGViewAlbum_extended_preview.php:236
3899
 
3900
  #: filemanager/view.php:281
3901
  msgid "Image Maximum Dimensions:"
3902
+ msgstr "Μέγιστες Διαστάσεις Εικόνας:"
3903
 
3904
  #: filemanager/view.php:282
3905
  msgid "Image:"
3906
+ msgstr "Εικόνα:"
3907
 
3908
  #: filemanager/view.php:290
3909
  msgid "Drag files here or click the button below"
3910
+ msgstr "Σύρετε αρχεία εδώ ή πατήστε το παρακάτω κουμπί"
3911
 
3912
  #: filemanager/view.php:290
3913
  msgid "to upload files"
3914
+ msgstr "για να μεταφορτώσετε αρχεία"
3915
 
3916
  #: filemanager/view.php:354
3917
  msgid "No files to upload"
3918
+ msgstr "Κανένα αρχείο για ανέβασμα"
3919
 
3920
  #: framework/WDWLibrary.php:61
3921
  msgid "Item successfully saved."
3922
+ msgstr "Επιτυχής αποθήκευση στοιχείου"
3923
 
3924
  #: framework/WDWLibrary.php:67 framework/WDWLibrary.php:172
3925
  msgid "Failed."
3926
+ msgstr "Απέτυχε."
3927
 
3928
  #: framework/WDWLibrary.php:73
3929
  msgid "Item successfully deleted."
3930
+ msgstr "Το στοιχείο διαγράφηκε επιτυχώς"
3931
 
3932
  #: framework/WDWLibrary.php:79
3933
  msgid "You can't delete default theme."
3934
+ msgstr "Δε μπορείτε να διαγράψετε το προεπιλεγμένο θέμα."
3935
 
3936
  #: framework/WDWLibrary.php:85
3937
  msgid "Items Successfully Deleted."
3938
+ msgstr "Τα Στοιχεία Διαγράφηκαν επιτυχώς."
3939
 
3940
  #: framework/WDWLibrary.php:99
3941
  msgid "The item is successfully set as default."
3942
+ msgstr "Το στοιχείο ορίστηκε επιτυχώς ως προεπιλεγμένο."
3943
 
3944
  #: framework/WDWLibrary.php:105
3945
  msgid "Options successfully saved."
3946
+ msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
3947
 
3948
  #: framework/WDWLibrary.php:111
3949
  msgid "Item successfully published."
3950
+ msgstr "Το στοιχείο δημοσιεύτηκε επιτυχώς."
3951
 
3952
  #: framework/WDWLibrary.php:117
3953
  msgid "Item successfully unpublished."
3954
+ msgstr "Το στοιχείο αποδημοσιεύτηκε επιτυχώς."
3955
 
3956
  #: framework/WDWLibrary.php:123
3957
  msgid "Item successfully duplicated."
3958
+ msgstr "Το στοιχείο κλωνοποιήθηκε επιτυχώς."
3959
 
3960
  #: framework/WDWLibrary.php:130
3961
  msgid "Items Succesfully Unpublished."
3962
+ msgstr "Τα Στοιχεία Αποδημοσιεύτηκαν επιτυχώς."
3963
 
3964
  #: framework/WDWLibrary.php:136
3965
  msgid "Ordering Succesfully Saved."
3966
+ msgstr "Η Ταξινόμηση Αποθηκεύτηκε επιτυχώς."
3967
 
3968
  #: framework/WDWLibrary.php:142
3969
  msgid "A term with the name provided already exists."
3971
 
3972
  #: framework/WDWLibrary.php:148
3973
  msgid "Name field is required."
3974
+ msgstr "Το πεδίο ονόματος απαιτείται."
3975
 
3976
  #: framework/WDWLibrary.php:154
3977
  msgid "The slug must be unique."
3979
 
3980
  #: framework/WDWLibrary.php:160
3981
  msgid "Changes must be saved."
3982
+ msgstr "Οι αλλαγές πρέπει να αποθηκευτούν."
3983
 
3984
  #: framework/WDWLibrary.php:166
3985
  msgid "Theme successfully copied."
3986
+ msgstr "Το θέμα αντιγράφηκε επιτυχώς."
3987
 
3988
  #: framework/WDWLibrary.php:177
3989
  msgid "Items successfully reset."
3990
+ msgstr "Τα στοιχεία επαναφέρθηκαν επιτυχώς."
3991
 
3992
  #: framework/WDWLibrary.php:182
3993
  msgid "Watermark successfully set."
3994
+ msgstr "Το υδατογράφημα ορίστηκε επιτυχώς."
3995
 
3996
  #: framework/WDWLibrary.php:187
3997
  msgid "Items successfully rotated."
3998
+ msgstr "Τα στοιχεία περιστράφηκαν επιτυχώς."
3999
 
4000
  #: framework/WDWLibrary.php:192
4001
  msgid "Items successfully recreated."
4002
+ msgstr "Τα στοιχεία επαναδημιουργήθηκαν επιτυχώς."
4003
 
4004
  #: framework/WDWLibrary.php:197
4005
  msgid "Items successfully resized."
4006
+ msgstr "Τα στοιχεία άλλαξαν μέγεθος επιτυχώς."
4007
 
4008
  #: framework/WDWLibrary.php:202
4009
  msgid "Items successfully edited."
4010
+ msgstr "Τα στοιχεία άλλαξαν επιτυχώς."
4011
 
4012
  #: framework/WDWLibrary.php:253
4013
  msgid "Click to sort by this item"
4014
+ msgstr "Πατήστε για να ταξινομήστε κατά αυτό το στοιχείο"
4015
 
4016
+ #: framework/WDWLibrary.php:418 framework/WDWLibrary.php:567 photo-gallery.php:398
 
4017
  msgid "item"
4018
+ msgstr "στοιχείο"
4019
 
4020
  #: framework/WDWLibrary.php:650
4021
  msgid " item(s)"
4022
+ msgstr "στοιχείο(α)"
4023
 
4024
  #: framework/WDWLibrary.php:656
4025
  msgid "Previous"
4051
 
4052
  #: framework/WDWLibrary.php:886
4053
  msgid "Order by: "
4054
+ msgstr "Ταξινόμηση κατά:"
4055
 
4056
  #: framework/WDWLibrary.php:1972
4057
  #, php-format
4058
  msgid "No %s found."
4059
+ msgstr "Δε βρέθηκε %s."
4060
 
4061
  #: framework/WDWLibrary.php:2012
 
 
4062
  msgid "Gallery Tags"
4063
+ msgstr "Ετικέτες Συλλογής"
4064
 
4065
  #: frontend/views/BWGViewAlbum_compact_preview.php:23
4066
  #: frontend/views/BWGViewAlbum_extended_preview.php:19
4067
+ #: frontend/views/BWGViewAlbum_masonry_preview.php:19 frontend/views/BWGViewBlog_style.php:19
4068
+ #: frontend/views/BWGViewCarousel.php:47 frontend/views/BWGViewImage_browser.php:19
4069
+ #: frontend/views/BWGViewSlideshow.php:15 frontend/views/BWGViewThumbnails.php:29
 
 
 
4070
  #: frontend/views/BWGViewThumbnails_masonry.php:28
4071
  #: frontend/views/BWGViewThumbnails_mosaic.php:31
4072
  msgid "There is no theme selected or the theme was deleted."
4083
 
4084
  #: frontend/views/BWGViewAlbum_compact_preview.php:77
4085
  #: frontend/views/BWGViewAlbum_extended_preview.php:71
4086
+ #: frontend/views/BWGViewAlbum_masonry_preview.php:73 frontend/views/BWGViewBlog_style.php:55
4087
+ #: frontend/views/BWGViewCarousel.php:66 frontend/views/BWGViewImage_browser.php:36
4088
+ #: frontend/views/BWGViewSlideshow.php:94 frontend/views/BWGViewThumbnails.php:76
 
 
 
4089
  #: frontend/views/BWGViewThumbnails_masonry.php:74
4090
  #: frontend/views/BWGViewThumbnails_mosaic.php:78
4091
  msgid "There are no images in this gallery."
4113
  #: frontend/views/BWGViewAlbum_compact_preview.php:531
4114
  #: frontend/views/BWGViewAlbum_extended_preview.php:439
4115
  #: frontend/views/BWGViewAlbum_extended_preview.php:514
4116
+ #: frontend/views/BWGViewCarousel.php:236 frontend/views/BWGViewGalleryBox.php:1134
4117
+ #: frontend/views/BWGViewGalleryBox.php:3620 frontend/views/BWGViewSlideshow.php:1351
4118
+ #: frontend/views/BWGViewThumbnails.php:218 frontend/views/BWGViewThumbnails_mosaic.php:174
 
 
 
4119
  msgid "Play"
4120
  msgstr "Παίξτε"
4121
 
4124
  #: frontend/views/BWGViewAlbum_extended_preview.php:456
4125
  #: frontend/views/BWGViewAlbum_extended_preview.php:481
4126
  #: frontend/views/BWGViewAlbum_masonry_preview.php:346
4127
+ #: frontend/views/BWGViewThumbnails.php:235 frontend/views/BWGViewThumbnails.php:260
 
4128
  #: frontend/views/BWGViewThumbnails_masonry.php:168
4129
  #: frontend/views/BWGViewThumbnails_mosaic.php:191
4130
  msgid "Open"
4131
+ msgstr "Άνοιγμα"
4132
 
4133
  #: frontend/views/BWGViewAlbum_compact_preview.php:472
4134
  #: frontend/views/BWGViewAlbum_compact_preview.php:498
4135
  #: frontend/views/BWGViewAlbum_extended_preview.php:457
4136
  #: frontend/views/BWGViewAlbum_extended_preview.php:482
4137
  #: frontend/views/BWGViewAlbum_masonry_preview.php:347
4138
+ #: frontend/views/BWGViewGalleryBox.php:1218 frontend/views/BWGViewThumbnails.php:236
4139
+ #: frontend/views/BWGViewThumbnails.php:261 frontend/views/BWGViewThumbnails_masonry.php:169
 
 
4140
  #: frontend/views/BWGViewThumbnails_mosaic.php:192
4141
  msgid "Ecommerce"
4142
+ msgstr "Ecommerce"
4143
 
4144
  #: frontend/views/BWGViewAlbum_compact_preview.php:1013
4145
  #: frontend/views/BWGViewAlbum_extended_preview.php:1037
4146
  #: frontend/views/BWGViewAlbum_masonry_preview.php:459
4147
+ #: frontend/views/BWGViewBlog_style.php:388 frontend/views/BWGViewCarousel.php:393
4148
+ #: frontend/views/BWGViewImage_browser.php:345 frontend/views/BWGViewSlideshow.php:494
4149
+ #: frontend/views/BWGViewThumbnails.php:280 frontend/views/BWGViewThumbnails_masonry.php:314
 
 
 
4150
  #: frontend/views/BWGViewThumbnails_mosaic.php:602
 
 
4151
  msgid "Download gallery"
4152
+ msgstr "Κατεβάστε τη συλλογή"
4153
 
4154
  #: frontend/views/BWGViewAlbum_extended_preview.php:366
4155
  #: frontend/views/BWGViewAlbum_extended_preview.php:546
4160
  msgid "Hide"
4161
  msgstr "Απόκρυψη"
4162
 
4163
+ #: frontend/views/BWGViewBlog_style.php:37 frontend/views/BWGViewCarousel.php:53
4164
+ #: frontend/views/BWGViewImage_browser.php:24 frontend/views/BWGViewSlideshow.php:80
4165
+ #: frontend/views/BWGViewThumbnails.php:60 frontend/views/BWGViewThumbnails_masonry.php:55
 
 
 
4166
  #: frontend/views/BWGViewThumbnails_mosaic.php:60
4167
  msgid "There is no gallery selected or the gallery was deleted."
4168
+ msgstr "Δεν έχει επιλεχθεί συλλογή ή η συλλογή έχει διαγραφεί"
4169
+
4170
+ #: frontend/views/BWGViewBlog_style.php:52 frontend/views/BWGViewCarousel.php:62
4171
+ #: frontend/views/BWGViewImage_browser.php:33 frontend/views/BWGViewSlideshow.php:90
4172
+ #: frontend/views/BWGViewThumbnails.php:73 frontend/views/BWGViewThumbnails_masonry.php:71
 
 
 
4173
  #: frontend/views/BWGViewThumbnails_mosaic.php:75
 
 
4174
  msgid "There are no images."
4175
+ msgstr "Δεν υπάρχουν εικόνες."
4176
 
4177
+ #: frontend/views/BWGViewBlog_style.php:311 frontend/views/BWGViewGalleryBox.php:1146
 
4178
  msgid "Show comments"
4179
  msgstr "Δείτε σχόλια"
4180
 
4181
+ #: frontend/views/BWGViewBlog_style.php:317 frontend/views/BWGViewBlog_style.php:318
4182
+ #: frontend/views/BWGViewGalleryBox.php:1154 frontend/views/BWGViewGalleryBox.php:1155
 
 
4183
  msgid "Share on Facebook"
4184
  msgstr "Μοιραστείτε στο Facebook"
4185
 
4186
+ #: frontend/views/BWGViewBlog_style.php:324 frontend/views/BWGViewBlog_style.php:325
4187
+ #: frontend/views/BWGViewGalleryBox.php:1161 frontend/views/BWGViewGalleryBox.php:1162
 
 
4188
  msgid "Share on Twitter"
4189
  msgstr "Μοιραστείτε στο Twitter"
4190
 
4191
+ #: frontend/views/BWGViewBlog_style.php:331 frontend/views/BWGViewBlog_style.php:332
4192
+ #: frontend/views/BWGViewGalleryBox.php:1168 frontend/views/BWGViewGalleryBox.php:1169
 
 
4193
  msgid "Share on Google+"
4194
  msgstr "Μοιραστείτε στο Google+"
4195
 
4196
+ #: frontend/views/BWGViewBlog_style.php:338 frontend/views/BWGViewBlog_style.php:339
4197
+ #: frontend/views/BWGViewGalleryBox.php:1175 frontend/views/BWGViewGalleryBox.php:1176
 
 
4198
  msgid "Share on Pinterest"
4199
  msgstr "Μοιραστείτε στο Pinterest"
4200
 
4201
+ #: frontend/views/BWGViewBlog_style.php:345 frontend/views/BWGViewBlog_style.php:346
4202
+ #: frontend/views/BWGViewGalleryBox.php:1182 frontend/views/BWGViewGalleryBox.php:1183
 
 
4203
  msgid "Share on Tumblr"
4204
  msgstr "Μοιραστείτε στο Tumblr"
4205
 
4206
  #: frontend/views/BWGViewBlog_style.php:353
 
 
4207
  msgid "Show ecommerce"
4208
+ msgstr "Εμφάνιση ecommerce"
4209
 
4210
+ #: frontend/views/BWGViewCarousel.php:224 frontend/views/BWGViewCarousel.php:230
4211
+ #: frontend/views/BWGViewGalleryBox.php:3614 frontend/views/BWGViewGalleryBox.php:3629
4212
+ #: frontend/views/BWGViewSlideshow.php:1342 frontend/views/BWGViewSlideshow.php:1360
 
 
 
4213
  msgid "Pause"
4214
  msgstr "Παύση"
4215
 
4216
  #: frontend/views/BWGViewDownload_gallery.php:37
 
 
4217
  msgid "There are no images to download."
4218
+ msgstr "Δεν υπάρχουν εικόνες για κατέβασμα."
4219
 
4220
  #: frontend/views/BWGViewGalleryBox.php:1020
4221
  msgid "The image has been deleted."
4222
  msgstr "Η εικόνα έχει διαγραφεί."
4223
 
4224
+ #: frontend/views/BWGViewGalleryBox.php:1138 frontend/views/BWGViewGalleryBox.php:2760
4225
+ #: frontend/views/BWGViewGalleryBox.php:3449 frontend/views/BWGViewGalleryBox.php:3545
 
 
4226
  msgid "Maximize"
4227
  msgstr "Μεγιστοποίηση"
4228
 
4229
+ #: frontend/views/BWGViewGalleryBox.php:1142 frontend/views/BWGViewGalleryBox.php:2762
 
4230
  #: frontend/views/BWGViewGalleryBox.php:3547
4231
  msgid "Fullscreen"
4232
  msgstr "Πλήρης οθόνη"
4233
 
4234
+ #: frontend/views/BWGViewGalleryBox.php:1144 frontend/views/BWGViewGalleryBox.php:3225
 
4235
  msgid "Show info"
4236
  msgstr "Δείτε πληροφορίες"
4237
 
4238
+ #: frontend/views/BWGViewGalleryBox.php:1148 frontend/views/BWGViewGalleryBox.php:3236
 
4239
  msgid "Show rating"
4240
  msgstr "Εμφάνιση αξιολόγησης"
4241
 
4245
 
4246
  #: frontend/views/BWGViewGalleryBox.php:1211
4247
  msgid "Download original image"
4248
+ msgstr "Κατεβάστε την πρωτότυπη εικόνα"
4249
 
4250
  #: frontend/views/BWGViewGalleryBox.php:1243
4251
  msgid "Hits: "
4253
 
4254
  #: frontend/views/BWGViewGalleryBox.php:1254
4255
  msgid "Rated."
4256
+ msgstr "Αξιολογήθηκε."
4257
 
4258
+ #: frontend/views/BWGViewGalleryBox.php:1258 frontend/views/BWGViewGalleryBox.php:1275
 
4259
  msgid "Not rated yet."
4260
+ msgstr "Δεν έχει αξιολογηθεί ακόμα. "
4261
 
4262
+ #: frontend/views/BWGViewGalleryBox.php:1261 frontend/views/BWGViewGalleryBox.php:1297
 
4263
  msgid "Votes: "
4264
+ msgstr "Ψήφοι: "
4265
 
4266
  #: frontend/views/BWGViewGalleryBox.php:1295
4267
  msgid "Cancel your rating."
4268
+ msgstr "Ακύρωση της αξιολόγησης σας. "
4269
 
4270
  #: frontend/views/BWGViewGalleryBox.php:1297
4271
  msgid "You have already rated."
4277
 
4278
  #: frontend/views/BWGViewGalleryBox.php:1413 photo-gallery.php:1004
4279
  msgid "This is not a valid email address."
4280
+ msgstr "Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου."
4281
 
4282
+ #: frontend/views/BWGViewGalleryBox.php:1421 frontend/views/BWGViewGalleryBox.php:3009
 
4283
  msgid "Hide Comments"
4284
+ msgstr "Απόκρυψη Σχολίων"
4285
 
4286
  #: frontend/views/BWGViewGalleryBox.php:1443
4287
  msgid "Verification Code"
4293
 
4294
  #: frontend/views/BWGViewGalleryBox.php:1467
4295
  msgid "Your comment is awaiting moderation"
4296
+ msgstr "Το σχόλιό σας αναμένει έγκριση"
4297
 
4298
  #: frontend/views/BWGViewGalleryBox.php:1496
4299
  msgid "Delete Comment"
4300
  msgstr "Διαγραφή σχολίου"
4301
 
4302
+ #: frontend/views/BWGViewGalleryBox.php:1531 frontend/views/BWGViewGalleryBox.php:3043
 
 
 
4303
  msgid "Hide Ecommerce"
4304
+ msgstr "Απόκρυψη Ecommerce"
4305
 
4306
+ #: frontend/views/BWGViewGalleryBox.php:1538 frontend/views/BWGViewGalleryBox.php:1726
 
4307
  msgid "Add to cart"
4308
+ msgstr "Προσθήκη στο καλάθι"
4309
 
4310
  #: frontend/views/BWGViewGalleryBox.php:1541
 
 
4311
  msgid "items"
4312
+ msgstr "στοιχεία"
4313
 
4314
  #: frontend/views/BWGViewGalleryBox.php:1551
4315
  msgid "Prints and products"
4317
 
4318
  #: frontend/views/BWGViewGalleryBox.php:1558
4319
  msgid "Downloads"
4320
+ msgstr "Μεταφορτώσεις"
4321
 
4322
+ #: frontend/views/BWGViewGalleryBox.php:1573 frontend/views/BWGViewGalleryBox.php:1686
 
4323
  msgid "Price"
4324
+ msgstr "Τιμή"
4325
 
4326
  #: frontend/views/BWGViewGalleryBox.php:1593
4327
  msgid "Count"
4328
+ msgstr "Αριθμός"
4329
 
4330
+ #: frontend/views/BWGViewGalleryBox.php:1673 frontend/views/BWGViewGalleryBox.php:1717
 
4331
  msgid "Total"
4332
+ msgstr "Σύνολο"
4333
 
4334
  #: frontend/views/BWGViewGalleryBox.php:1683
4335
  msgid "Choose"
4336
+ msgstr "Επιλέξτε"
4337
 
4338
  #: frontend/views/BWGViewGalleryBox.php:1685
4339
  msgid "Dimensions"
4340
+ msgstr "Διαστάσεις"
4341
 
4342
  #: frontend/views/BWGViewGalleryBox.php:1727
4343
  msgid "View cart"
4344
+ msgstr "Εμφάνιση καλαθιού"
4345
 
4346
  #: frontend/views/BWGViewGalleryBox.php:1909
4347
  msgid "Please select at least one item"
4348
+ msgstr "Παρακαλούμε επιλέξτε τουλάχιστον ένα στοιχείο"
4349
 
4350
  #: frontend/views/BWGViewGalleryBox.php:1944
4351
  msgid "Please select Prints and products or Downloads"
4352
  msgstr ""
4353
 
4354
+ #: frontend/views/BWGViewGalleryBox.php:2668 frontend/views/BWGViewGalleryBox.php:2991
 
4355
  #: frontend/views/BWGViewGalleryBox.php:3035
 
 
4356
  msgid "Show Ecommerce"
4357
+ msgstr "Εμφάνιση ecommerce"
4358
 
4359
+ #: frontend/views/BWGViewGalleryBox.php:3000 frontend/views/BWGViewGalleryBox.php:3028
 
4360
  msgid "Show Comments"
4361
  msgstr "Εμφάνιση σχολίων"
4362
 
4366
 
4367
  #: frontend/views/BWGViewGalleryBox.php:3232
4368
  msgid "Hide rating"
4369
+ msgstr "Απόκρυψη αξιολόγησης."
4370
 
4371
+ #: frontend/views/BWGViewGalleryBox.php:3486 frontend/views/BWGViewGalleryBox.php:3695
 
4372
  msgid "Restore"
4373
  msgstr "Επαναφορά"
4374
 
4378
 
4379
  #: insert.php:1152
4380
  msgid "Theme 1"
4381
+ msgstr "Θέμα 1"
4382
 
4383
  #: insert.php:1158
4384
  msgid "Theme 2"
4385
+ msgstr "Θέμα 2"
4386
 
4387
  #: photo-gallery.php:97
4388
  msgid "This option is disabled in free version."
4389
+ msgstr "Αυτή η επιλογή είναι απενεργοποιημένη στη δωρεάν έκδοση."
4390
 
4391
  #: photo-gallery.php:254
4392
  msgid "Add Galleries/Images"
4393
+ msgstr "Προσθήκη Εικόνων/Συλλογών"
4394
 
4395
  #: photo-gallery.php:262
4396
  msgid "Options"
4397
+ msgstr "Ρυθμίσεις"
4398
 
4399
  #: photo-gallery.php:275
4400
  msgid "Pro Version"
4401
+ msgstr "PRO Έκδοση"
4402
 
4403
  #: photo-gallery.php:280
4404
  msgid "Add-ons"
4405
+ msgstr "Πρόσθετα"
4406
 
4407
  #: photo-gallery.php:308
4408
  #, php-format
4417
  #: photo-gallery.php:329 photo-gallery.php:334
4418
  #, php-format
4419
  msgid "The %s class not exist."
4420
+ msgstr "Η κλάση %s δεν υπάρχει."
4421
 
4422
  #: photo-gallery.php:376 photo-gallery.php:409
4423
  msgid "Do you want to delete selected items?"
4424
+ msgstr "Θέλετε να διαγράψετε τα επιλεγμένα στοιχεία?"
4425
 
4426
  #: photo-gallery.php:377 photo-gallery.php:404
4427
  msgid "You must select at least one item."
4428
+ msgstr "Πρέπει να επιλέξετε τουλάχιστον ένα στοιχείο."
4429
 
4430
  #: photo-gallery.php:384 photo-gallery.php:1003
4431
  msgid "field is required."
4432
+ msgstr "υποχρεωτικό πεδίο"
4433
 
4434
  #: photo-gallery.php:385
4435
  msgid "You must select an image file."
4436
+ msgstr "Πρέπει να επιλέξετε ένα αρχείο εικόνας."
4437
 
4438
  #: photo-gallery.php:386
4439
  msgid "You must select an audio file."
4440
+ msgstr "Πρέπει να επιλέξετε ένα αρχείο ήχου."
4441
 
4442
  #: photo-gallery.php:387
4443
  msgid ""
4444
+ "You do not have Instagram access token. Sign in with Instagram in Options -> Advanced tab. "
 
4445
  msgstr ""
4446
 
4447
  #: photo-gallery.php:388
4448
+ msgid "You do not have Instagram CLIENT_ID. Input its value in Options->Embed options."
 
 
4449
  msgstr ""
4450
 
4451
  #: photo-gallery.php:389
4452
  msgid "Instagram recent post number must be between 1 and 33."
4453
+ msgstr "Ο αριθμός πρόσφατων ποστς του Instagram πρέπει να είναι μεταξύ 1 και 33."
4454
 
4455
  #: photo-gallery.php:390
4456
  msgid "The gallery is not empty. Please delete all the images first."
4457
+ msgstr "Η συλλογή δεν είναι άδεια. Παρακαλούμε διαγράψτε όλες τις εικόνες της πρώτα."
4458
 
4459
  #: photo-gallery.php:391
4460
  msgid "Please enter url to embed."
4462
 
4463
  #: photo-gallery.php:392
4464
  msgid "Error: cannot get response from the server."
4465
+ msgstr "Σφάλμα: δεν υπάρχει ανταπόκριση από τον διακομιστή."
4466
 
4467
  #: photo-gallery.php:393
4468
  msgid "Error: something wrong happened at the server."
4469
+ msgstr "Σφάλμα: κάτι πήγε στραβά στον διακομιστή."
4470
 
4471
  #: photo-gallery.php:394
4472
  msgid "Error"
4473
+ msgstr "Σφάλμα"
4474
 
4475
  #: photo-gallery.php:396
4476
  msgid "Hide order column"
4477
+ msgstr "Απόκρυψη στήλης ταξινόμησης"
4478
 
4479
  #: photo-gallery.php:397
4480
  msgid "Selected"
4481
+ msgstr "Επιλέχθηκαν"
4482
 
4483
  #: photo-gallery.php:399
4484
  msgid "Items Succesfully Saved."
4485
+ msgstr "Τα Στοιχεία Αποθηκεύτηκαν Επιτυχώς."
4486
 
4487
  #: photo-gallery.php:400
4488
  msgid "Item Succesfully Recovered."
4489
+ msgstr "Το Στοιχείο Ανακτήθηκε Επιτυχώς."
4490
 
4491
  #: photo-gallery.php:401
4492
  msgid "Item Succesfully Published."
4493
+ msgstr "Το Στοιχείο Δημοσιεύτηκε Επιτυχώς."
4494
 
4495
  #: photo-gallery.php:402
4496
  msgid "Item Succesfully Unpublished."
4497
+ msgstr "Το Στοιχείο Αποδημοσιεύτηκε Επιτυχώς."
4498
 
4499
  #: photo-gallery.php:403
4500
  msgid "Item Succesfully Deleted."
4501
+ msgstr "Το Στοιχείο Διαγράφηκε επιτυχώς."
4502
 
4503
  #: photo-gallery.php:405
4504
  msgid "Items Succesfully resized."
4505
+ msgstr "Τα στοιχεία άλλαξαν διαστάσεις επιτυχώς."
4506
 
4507
  #: photo-gallery.php:406
4508
  msgid "Watermarks Succesfully Set."
4509
+ msgstr "Το υδατογράφημα ορίστηκε επιτυχώς."
4510
 
4511
  #: photo-gallery.php:407
4512
  msgid "Items Succesfully Reset."
4513
+ msgstr "Τα στοιχεία επαναφέρθηκαν επιτυχώς."
4514
 
4515
  #: photo-gallery.php:408
4516
  msgid "Save Tag"
4517
+ msgstr "Αποθήκευση Ετικέτας"
4518
 
4519
  #: photo-gallery.php:410 photo-gallery.php:412
4520
  msgid ""
4521
+ "This action will reset gallery type to mixed and will save that choice. You cannot undo it."
 
4522
  msgstr ""
4523
+ "Αυτή η ενέργεια θα επαναφέρει τον τύπο συλλογής σε μεικτό και θα αποθηκεύσει αυτή την "
4524
+ "επιλογή. Δε μπορείτε να αναιρέσετε αυτή την ενέργεια."
4525
 
4526
  #: photo-gallery.php:411
4527
+ msgid "After pressing save/apply buttons, you cannot change gallery type back to Instagram!"
 
 
4528
  msgstr ""
4529
 
4530
  #: photo-gallery.php:413
4531
  msgid "Insert"
4532
+ msgstr "Εισαγωγή"
4533
 
4534
  #: photo-gallery.php:414
4535
  msgid "Failed to import images from media library"
4536
+ msgstr "Αποτυχία εισαγωγής εικόνων από τη βιβλιοθήκη πολυμέσων"
4537
 
4538
  #: photo-gallery.php:710
4539
  msgid "Insert Photo Gallery"
4540
+ msgstr "Εισαγωγή Συλλογής"
4541
 
4542
  #: photo-gallery.php:712
4543
  msgid "Add Photo Gallery"
4544
+ msgstr "Προσθήκη Συλλογής"
4545
 
4546
  #: photo-gallery.php:1008
4547
  msgid "Select Tag"
4548
+ msgstr "Επιλέξτε ετικέτα"
4549
 
4550
  #: photo-gallery.php:1177
4551
  #, php-format
4552
  msgid "This section allows you to %s."
4553
+ msgstr "Αυτή η ενότητα σας επιτρέπει να %s."
4554
 
4555
  #: photo-gallery.php:1179
4556
  msgid "Read More in User Manual"
4557
+ msgstr "Διαβάστε περισσότερα στις Οδηγίες Χρήσης"
4558
 
4559
  #: photo-gallery.php:1185
4560
  msgid "Upgrade to paid version"
4561
+ msgstr "Αναβάθμιση στην εμπορική έκδοση"
4562
 
4563
  #: photo-gallery.php:1196 photo-gallery.php:1640
4564
  #: wd/templates/display_overview_user_guide.php:33
4565
  msgid "Support Forum"
4566
+ msgstr "Φόρουμ Υποστήριξης"
4567
 
4568
  #: photo-gallery.php:1224
4569
  msgid ""
4570
+ "Photo Gallery is a fully responsive gallery plugin with advanced functionality. It allows "
4571
+ "having different image galleries for your posts and pages. You can create unlimited number "
4572
+ "of galleries, combine them into gallery groups, and provide descriptions and tags."
 
4573
  msgstr ""
4574
 
4575
  #: photo-gallery.php:1228
4578
 
4579
  #: photo-gallery.php:1229
4580
  msgid ""
4581
+ "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. Use the File "
4582
+ "Manager with single-step and easy-to-manage functionality to rename, upload, copy, add and "
4583
+ "remove images and image directories. Otherwise use WordPress built in media uploader."
 
4584
  msgstr ""
4585
 
4586
  #: photo-gallery.php:1232
4589
 
4590
  #: photo-gallery.php:1233
4591
  msgid ""
4592
+ "The plugin allows creating unlimited number of galleries or gallery groups and upload "
4593
+ "images in each gallery as many as you wish. Add single/ multiple galleries into your pages "
4594
+ "and posts with the help of functional shortcode; visual shortcodes for an easier "
4595
+ "management."
4596
  msgstr ""
4597
 
4598
  #: photo-gallery.php:1236
4601
 
4602
  #: photo-gallery.php:1237
4603
  msgid ""
4604
+ "The gallery plugin is easily customizable. You can edit themes changing sizes and colors "
4605
+ "for different features. Specify the number of images to display in a single row in an "
4606
+ "gallery group. Additionally, you can customize thumbnail images by cropping, flipping and "
4607
+ "rotating them."
4608
  msgstr ""
4609
 
4610
  #: photo-gallery.php:1240
4613
 
4614
  #: photo-gallery.php:1241
4615
  msgid ""
4616
+ "Photo Gallery plugin allows displaying galleries and gallery groups in 10 elegant and "
4617
+ "beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image Browser, Masonry Album, "
4618
+ "Compact Album, Extended Album, Blog Style Gallery, Ecommerce."
 
4619
  msgstr ""
4620
 
4621
  #: photo-gallery.php:1244
4624
 
4625
  #: photo-gallery.php:1245
4626
  msgid ""
4627
+ "You can include both videos and images within a single gallery. WordPress Photo Gallery "
4628
+ "Plugin supports YouTube and Vimeo videos within Galleries. It’s also possible to add audio "
4629
+ "tracks for the image slideshow."
4630
  msgstr ""
4631
 
4632
  #: photo-gallery.php:1251
4702
  msgstr ""
4703
 
4704
  #: photo-gallery.php:1381
 
 
4705
  msgid "Editing Comments"
4706
+ msgstr ""
4707
 
4708
  #: photo-gallery.php:1386
4709
  msgid "Editing Ratings"
4735
 
4736
  #: photo-gallery.php:1492
4737
  msgid "Albums"
4738
+ msgstr "Άλμπουμ"
4739
 
4740
  #: photo-gallery.php:1506
 
 
4741
  msgid "Gallery tags"
4742
+ msgstr "Ετικέτες συλλογών"
4743
 
4744
  #: photo-gallery.php:1555
4745
  msgid "Photo gallery plugin autoupdate interval."
4748
  #: photo-gallery.php:1598
4749
  #, php-format
4750
  msgid "Please update the %s add-on to start using."
4751
+ msgstr "Παρακαλούμε αναβαθμίστε το πρόσθετο %s για να το χρησιμοποιήσετε."
4752
 
4753
  #: photo-gallery.php:1599
4754
  #, php-format
4755
  msgid "Please update the %s add-ons to start using."
4756
+ msgstr "Παρακαλούμε αναβαθμίστε τα πρόσθετα %s για να τα χρησιμοποιήσετε."
4757
 
4758
  #: photo-gallery.php:1641
 
 
4759
  msgid "Rate"
4760
+ msgstr "Αξιολόγηση"
4761
 
4762
  #: photo-gallery.php:1716
4763
  #, php-format
4764
  msgid ""
4765
+ "%s advises: Install brand new %s plugin to optimize your website images quickly and easily."
 
4766
  msgstr ""
4767
 
4768
  #: photo-gallery.php:1716
4769
  msgid "More details"
4770
+ msgstr "Περισσότερες λεπτομέρειες"
4771
 
4772
  #: photo-gallery.php:1716
4773
  msgid "Image Optimizer WD"
4779
 
4780
  #: photo-gallery.php:1722 photo-gallery.php:1729
4781
  msgid "Optimize now"
4782
+ msgstr "Βελτιστοποίηση τώρα"
4783
 
4784
  #: photo-gallery.php:1723
4785
  msgid "Activation failed, please try again."
4787
 
4788
  #: photo-gallery.php:1727
4789
  msgid "Install"
4790
+ msgstr "Εγκατάσταση"
4791
 
4792
  #: photo-gallery.php:1728
4793
  msgid "Activation"
4795
 
4796
  #: photo-gallery.php:1730
4797
  msgid "Installation failed, please try again."
4798
+ msgstr "Η εγκατάσταση απέτυχε, παρακαλούμε προσπαθήστε ξανά."
4799
 
4800
  #: wd/includes/deactivate.php:35
4801
  msgid "Technical problems / hard to use"
4824
  #: wd/includes/notices.php:212
4825
  #, php-format
4826
  msgid ""
4827
+ "We hope you've enjoyed using WordPress %s! Would you consider leaving us a review on "
4828
+ "WordPress.org?"
4829
  msgstr ""
4830
+ "Ελπίζουμε να απολαύσατε το %s στο Wordpress. Θα επιθυμούσατε να μας γράψετε μία αξιολόγηση "
4831
+ "στο WordPress.org?"
4832
 
4833
  #: wd/includes/notices.php:213
4834
  msgid "Sure! I'd love to!"
4835
+ msgstr "Αμέ! Θα το ήθελα!"
4836
 
4837
  #: wd/includes/notices.php:214
4838
  msgid "I've already left a review"
4839
+ msgstr "Έχω ήδη γράψει κριτική"
4840
 
4841
  #: wd/includes/notices.php:215
4842
  msgid "Maybe Later"
4843
+ msgstr "Ίσως Αργότερα"
4844
 
4845
  #: wd/includes/notices.php:216
4846
  msgid "Never show again"
4847
+ msgstr "Απόκρυψη για πάντα"
4848
 
4849
  #: wd/includes/overview.php:27
4850
  msgid "Welcome"
4851
+ msgstr "Καλώς ήρθατε"
4852
 
4853
  #: wd/includes/overview.php:31
4854
  msgid "User Guide"
4855
+ msgstr "Οδηγίες Χρήσης"
4856
 
4857
  #: wd/includes/overview.php:35
4858
  msgid "Deals"
4859
+ msgstr "Πακέτα"
4860
 
4861
  #: wd/includes/overview.php:39
4862
  msgid "Support"
4863
+ msgstr "Υποστήριξη"
4864
 
4865
  #: wd/includes/overview.php:43
4866
  msgid "Submit Your Idea"
4867
+ msgstr "Υποβάλετε μια Ιδέα"
4868
 
4869
  #: wd/includes/overview.php:47
4870
  msgid "Forum"
4871
+ msgstr "Φόρουμ"
4872
 
4873
  #: wd/includes/overview.php:79
4874
  msgid "Wordpress form builder plugin"
4876
 
4877
  #: wd/includes/overview.php:80
4878
  msgid ""
4879
+ "Form Maker is a modern and advanced tool for creating WordPress forms easily and fast."
 
4880
  msgstr ""
4881
 
4882
  #: wd/includes/overview.php:85
4885
 
4886
  #: wd/includes/overview.php:86
4887
  msgid ""
4888
+ "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality."
 
4889
  msgstr ""
4890
 
4891
  #: wd/includes/overview.php:91
4893
  msgstr ""
4894
 
4895
  #: wd/includes/overview.php:92
4896
+ msgid "Organize and publish your events in an easy and elegant way using Event Calendar WD."
 
 
4897
  msgstr ""
4898
 
4899
  #: wd/includes/overview.php:97
4902
 
4903
  #: wd/includes/overview.php:98
4904
  msgid ""
4905
+ "Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom "
4906
+ "layers and overlays for your website."
4907
  msgstr ""
4908
 
4909
  #: wd/includes/overview.php:103
4912
 
4913
  #: wd/includes/overview.php:104
4914
  msgid ""
4915
+ "Create responsive, highly configurable sliders with various effects for your WordPress "
4916
+ "site."
4917
  msgstr ""
4918
 
4919
  #: wd/includes/overview.php:109
4922
 
4923
  #: wd/includes/overview.php:110
4924
  msgid ""
4925
+ "Spider Event Calendar is a highly configurable product which allows you to have multiple "
4926
+ "organized events."
4927
  msgstr ""
4928
 
4929
  #: wd/includes/overview.php:115
4932
 
4933
  #: wd/includes/overview.php:116
4934
  msgid ""
4935
+ "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on "
4936
+ "your website."
4937
  msgstr ""
4938
 
4939
  #: wd/includes/overview.php:169
4940
  msgid "Not set"
4941
+ msgstr "Δεν έχει οριστεί"
4942
 
4943
  #: wd/includes/overview.php:174
4944
  msgid "On"
4948
  msgid "Off"
4949
  msgstr ""
4950
 
4951
+ #: wd/includes/overview.php:185 wd/includes/overview.php:193 wd/includes/overview.php:200
4952
+ #: wd/includes/overview.php:207 wd/includes/overview.php:215 wd/includes/overview.php:222
 
4953
  msgid "N/A"
4954
  msgstr ""
4955
 
4971
 
4972
  #: wd/includes/subscribe.php:49
4973
  msgid "Wordpress version"
4974
+ msgstr "Έκδοση Wordpress"
4975
 
4976
  #: wd/includes/subscribe.php:53
4977
  msgid "List of plugins"
4978
+ msgstr "Λίστα προσθέτων"
4979
 
4980
  #: wd/templates/display_deactivation_popup.php:8
4981
  msgid ""
4982
+ "Please let us know why you are deactivating. Your answer will help us to serve you better"
 
4983
  msgstr ""
4984
+ "Παρακαλούμε ενημερώστε μας γιατί επιθυμείτε την απενεργοποίηση. Η απάντησή σας θα μας "
4985
+ "βοηθήσει να βελτιωθούμε"
4986
 
4987
  #: wd/templates/display_deactivation_popup.php:21
4988
  msgid "Deactivate"
4989
+ msgstr "Απενεργοποίηση"
4990
 
4991
  #: wd/templates/display_deactivation_popup.php:22
4992
  msgid "Submit and deactivate"
4993
+ msgstr "Υποβολή και απενεργοποίηση"
4994
 
4995
  #: wd/templates/display_overview.php:6
4996
  #, php-format
4997
  msgid "Welcome to %s"
4998
+ msgstr "Καλώς ήρθατε στο %s"
4999
 
5000
  #: wd/templates/display_overview.php:8
5001
  #, php-format
5002
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
5003
+ msgstr "ΣΥΓΧΑΡΗΤΗΡΙΑ! Εγκαταστήσατε επιτυχώς το πρόσθετο %s στο Wordpress."
5004
 
5005
  #: wd/templates/display_overview_deals.php:12
5006
  #, php-format
5009
 
5010
  #: wd/templates/display_overview_deals.php:13
5011
  msgid "plugins"
5012
+ msgstr "πρόσθετα"
5013
 
5014
+ #: wd/templates/display_overview_deals.php:14 wd/templates/display_overview_deals.php:58
 
5015
  msgid "for"
5016
+ msgstr "για"
5017
 
5018
+ #: wd/templates/display_overview_deals.php:14 wd/templates/display_overview_deals.php:58
 
5019
  msgid "only"
5020
+ msgstr "μόνο"
5021
 
5022
  #: wd/templates/display_overview_deals.php:16
5023
  msgid "Save 80%"
5025
 
5026
  #: wd/templates/display_overview_deals.php:35
5027
  msgid "Download"
5028
+ msgstr "Κατέβασμα"
5029
 
5030
  #: wd/templates/display_overview_deals.php:45
5031
  msgid "Get all plugins"
5041
 
5042
  #: wd/templates/display_overview_deals.php:77
5043
  msgid "Find out more"
5044
+ msgstr "Μάθε περισσότερα"
5045
 
5046
  #: wd/templates/display_overview_support.php:3
5047
  #, php-format
5048
  msgid ""
5049
+ "You may contact us by filling in this form or by email %s any time you need professional "
5050
+ "support or have any questions. You can also fill in the form to leave your comments or "
5051
+ "feedback."
5052
  msgstr ""
5053
 
5054
  #: wd/templates/display_overview_support.php:6
5057
 
5058
  #: wd/templates/display_overview_support.php:8
5059
  msgid ""
5060
+ "When contacting support, consider copying and pasting this information in your support "
5061
+ "request."
5062
  msgstr ""
5063
 
5064
  #: wd/templates/display_overview_support.php:10
5071
 
5072
  #: wd/templates/display_overview_support.php:20
5073
  msgid "Server Settings"
5074
+ msgstr "Ρυθμίσεις Διακομιστή"
5075
 
5076
  #: wd/templates/display_overview_support.php:26
5077
  msgid "Graphic Library"
5083
 
5084
  #: wd/templates/display_overview_user_guide.php:36
5085
  msgid "FAQ"
5086
+ msgstr "Συχνές Ερωτήσεις"
5087
 
5088
  #: wd/templates/display_overview_user_guide.php:40
5089
  msgid "Addons"
5090
+ msgstr "Πρόσθετα"
5091
 
5092
  #: wd/templates/display_overview_welcome.php:18
5093
  msgid "Run Install Wizard "
5094
+ msgstr "Τρέξτε τον Οδηγό Εγκατάστασης "
5095
 
5096
  #: wd/templates/display_overview_welcome.php:26
5097
  msgid "More features"
5098
+ msgstr "Περισσότερα χαρακτηριστικά"
5099
 
5100
  #: wd/templates/display_subscribe.php:9
5101
  msgid "Hi there"
5102
+ msgstr "Γειά χαρά"
5103
 
5104
  #: wd/templates/display_subscribe.php:11
5105
  #, php-format
5106
  msgid ""
5107
+ "Allow %s to collect some usage data. This will allow you to get more out of your plugin "
5108
+ "experience - get awesome customer support, receive exclusive deals and discounts on "
5109
+ "premium products and more. You can choose to skip this step, %s will still work just fine."
 
5110
  msgstr ""
5111
 
5112
  #: wd/templates/display_subscribe.php:19
5113
  msgid "What data is being collected?"
5114
+ msgstr "Τί δεδομένα συλλέγονται?"
5115
 
5116
  #: wd/templates/display_subscribe.php:36
5117
  msgid "Privacy Policy"
5118
+ msgstr "Πολιτική Απορρήτου"
5119
 
5120
  #: wd/templates/display_subscribe.php:42
5121
  msgid "Terms of Use"
5122
+ msgstr "Όροι Χρήσης"
5123
 
5124
  #: wd/wd.php:72
5125
  msgid "Overview"
5126
+ msgstr "Σύνοψη"
languages/bwg-es_ES.mo CHANGED
Binary file
languages/bwg-es_ES.po CHANGED
@@ -2,14 +2,14 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2018-01-24 10:53+0400\n"
5
- "PO-Revision-Date: 2018-01-24 10:53+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 2.0.5\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
@@ -17,61 +17,48 @@ msgstr ""
17
 
18
  #: addons/addons.php:6
19
  msgid "Photo Gallery Ecommerce"
20
- msgstr ""
21
 
22
  #: addons/addons.php:8
23
- msgid ""
24
- "Using Photo Gallery Ecommerce you can sell images included in galleries "
25
- "either as digital downloads or products/prints via Paypal or Stripe."
26
- msgstr ""
27
 
28
  #: addons/addons.php:13
29
- #, fuzzy
30
- #| msgid "Share on Facebook"
31
  msgid "Photo Gallery Facebook"
32
- msgstr "Compartir en Facebook"
33
 
34
  #: addons/addons.php:15
35
- msgid ""
36
- "Photo Gallery Facebook is an add-on, which helps to display Facebook photos "
37
- "and videos within Photo Gallery plugin. You can create Facebook-only "
38
- "galleries, embed individual images and videos or include Facebook albums "
39
- "within mixed type albums."
40
- msgstr ""
41
 
42
  #: addons/addons.php:20
43
  msgid "NextGen Gallery Import to Photo Gallery"
44
- msgstr ""
45
 
46
  #: addons/addons.php:22
47
- msgid ""
48
- "This addon integrates NextGen with Photo Gallery allowing to import images "
49
- "and related data from NextGen to use with Photo Gallery"
50
- msgstr ""
51
 
52
  #: addons/addons.php:27
53
  msgid "Photo Gallery Export / Import"
54
- msgstr ""
55
 
56
  #: addons/addons.php:29
57
- msgid ""
58
- "Photo Gallery Export/Import helps to move created galleries and gallery "
59
- "groups from one site to another. This way you can save the gallery/album "
60
- "options and manual modifications."
61
- msgstr ""
62
 
63
  #: addons/addons.php:38
64
  msgid "Photo Gallery Add-ons"
65
- msgstr ""
66
 
67
  #: addons/addons.php:71
68
  msgid "GET THIS ADD ON"
69
- msgstr ""
70
 
71
  #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
72
  #: admin/views/Galleries.php:763 photo-gallery.php:260
73
  msgid "Tags"
74
- msgstr ""
75
 
76
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
77
  #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
@@ -79,33 +66,33 @@ msgstr ""
79
  #: admin/views/Comments.php:106 admin/views/Galleries.php:108
80
  #: admin/views/Galleries.php:203 admin/views/Galleries.php:726
81
  msgid "Publish"
82
- msgstr ""
83
 
84
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
85
  #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
86
  msgid "published"
87
- msgstr ""
88
 
89
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
90
  #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
91
  #: admin/views/Albums.php:103 admin/views/Comments.php:106
92
  #: admin/views/Galleries.php:108 admin/views/Galleries.php:726
93
  msgid "Unpublish"
94
- msgstr ""
95
 
96
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
97
  #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
98
  msgid "unpublished"
99
- msgstr ""
100
 
101
  #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
102
  #: admin/views/Albums.php:104 admin/views/Themes.php:100
103
  msgid "Duplicate"
104
- msgstr ""
105
 
106
  #: admin/controllers/Albums.php:47
107
  msgid "duplicate"
108
- msgstr ""
109
 
110
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
111
  #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
@@ -113,81 +100,75 @@ msgstr ""
113
  #: admin/views/Albums.php:105 admin/views/Comments.php:109
114
  #: admin/views/Galleries.php:109 admin/views/Galleries.php:733
115
  #: admin/views/Ratings.php:84 admin/views/Themes.php:101
116
- #, fuzzy
117
- #| msgid "Delete Comment"
118
  msgid "Delete"
119
- msgstr "Eliminar comentario"
120
 
121
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
122
  #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
123
  #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
124
  msgid "deleted"
125
- msgstr ""
126
 
127
  #: admin/controllers/Albums.php:93 photo-gallery.php:257
128
  msgid "Gallery Groups"
129
- msgstr ""
130
 
131
  #: admin/controllers/Albumsgalleries.php:50
132
  msgid "Galleries / Gallery groups"
133
- msgstr ""
134
 
135
  #: admin/controllers/Comments.php:93 photo-gallery.php:268
136
- #, fuzzy
137
- #| msgid "Comment"
138
  msgid "Comments"
139
- msgstr "Comentario"
140
 
141
  #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
142
  msgid "Filter by gallery"
143
- msgstr ""
144
 
145
  #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
146
  msgid "Filter by image"
147
- msgstr ""
148
 
149
  #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
150
  msgid "Resize"
151
- msgstr ""
152
 
153
  #: admin/controllers/Galleries.php:49
154
  msgid "resized"
155
- msgstr ""
156
 
157
  #: admin/controllers/Galleries.php:52
158
  msgid "Recreate thumbnail"
159
- msgstr ""
160
 
161
  #: admin/controllers/Galleries.php:53
162
  msgid "recreated"
163
- msgstr ""
164
 
165
  #: admin/controllers/Galleries.php:56
166
  msgid "Rotate left"
167
- msgstr ""
168
 
169
  #: admin/controllers/Galleries.php:57
170
- #, fuzzy
171
- #| msgid "Not rated yet."
172
  msgid "rotated left"
173
- msgstr "No se ha puntuado todavia. "
174
 
175
  #: admin/controllers/Galleries.php:60
176
  msgid "Rotate right"
177
- msgstr ""
178
 
179
  #: admin/controllers/Galleries.php:61
180
  msgid "rotated right"
181
- msgstr ""
182
 
183
  #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
184
  msgid "Set watermark"
185
- msgstr ""
186
 
187
  #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
188
  #: admin/controllers/Galleries.php:77
189
  msgid "edited"
190
- msgstr ""
191
 
192
  #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
193
  #: admin/views/Themes.php:185 framework/WDWLibrary.php:317
@@ -197,139 +178,129 @@ msgid "Reset"
197
  msgstr "Restablecer"
198
 
199
  #: admin/controllers/Galleries.php:69
200
- #, fuzzy
201
- #| msgid "Reset"
202
  msgid "reset"
203
- msgstr "Restablecer"
204
 
205
  #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
206
  #: admin/views/Galleries.php:107 admin/views/Galleries.php:716
207
  #: admin/views/Themes.php:99
208
  msgid "Edit"
209
- msgstr ""
210
 
211
  #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
212
  msgid "Add tag"
213
- msgstr ""
214
 
215
  #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
216
- #, fuzzy
217
- #| msgid "Gallery is empty."
218
  msgid "Galleries"
219
- msgstr "La galería está vacía"
220
 
221
  #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
222
  msgid "Item Succesfully Saved."
223
- msgstr ""
224
 
225
  #: admin/controllers/Galleries.php:441
226
- msgid ""
227
- " Selected pricelist item longest dimension greater than some original images "
228
- "dimensions."
229
- msgstr ""
230
 
231
  #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
232
- msgid ""
233
- "Selected pricelist item longest dimension greater than some original images "
234
- "dimensions."
235
- msgstr ""
236
 
237
  #: admin/controllers/Options.php:62
238
  msgid "Edit options"
239
- msgstr ""
240
 
241
  #: admin/controllers/Options.php:106
242
  msgid "Default values restored. Changes must be saved."
243
- msgstr ""
244
 
245
  #: admin/controllers/Options.php:137
246
  msgid "Uploads directory doesn't exist. Old value is restored."
247
- msgstr ""
248
 
249
  #: admin/controllers/Options.php:140
250
- msgid ""
251
- "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
252
- "value is restored."
253
- msgstr ""
254
 
255
  #: admin/controllers/Options.php:180
256
  msgid "All thumbnails are successfully recreated."
257
- msgstr ""
258
 
259
  #: admin/controllers/Options.php:207
260
  msgid "All images are successfully watermarked."
261
- msgstr ""
262
 
263
  #: admin/controllers/Options.php:212
264
  msgid "All images are successfully reset."
265
- msgstr ""
266
 
267
  #: admin/controllers/Ratings.php:86 photo-gallery.php:271
268
  msgid "Ratings"
269
- msgstr ""
270
 
271
  #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
272
  #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
273
  #: admin/views/Options.php:1497 admin/views/Options.php:1641
274
  #: admin/views/Shortcode.php:1387
275
  msgid "None"
276
- msgstr ""
277
 
278
  #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
279
  msgid "Cube Horizontal"
280
- msgstr ""
281
 
282
  #: admin/controllers/Shortcode.php:38 admin/controllers/WidgetSlideshow.php:46
283
  msgid "Cube Vertical"
284
- msgstr ""
285
 
286
  #: admin/controllers/Shortcode.php:39 admin/controllers/WidgetSlideshow.php:47
287
  msgid "Fade"
288
- msgstr ""
289
 
290
  #: admin/controllers/Shortcode.php:40 admin/controllers/WidgetSlideshow.php:48
291
  msgid "Slice Horizontal"
292
- msgstr ""
293
 
294
  #: admin/controllers/Shortcode.php:41 admin/controllers/WidgetSlideshow.php:49
295
  msgid "Slice Vertical"
296
- msgstr ""
297
 
298
  #: admin/controllers/Shortcode.php:42 admin/controllers/WidgetSlideshow.php:50
299
  msgid "Slide Horizontal"
300
- msgstr ""
301
 
302
  #: admin/controllers/Shortcode.php:43 admin/controllers/WidgetSlideshow.php:51
303
  msgid "Slide Vertical"
304
- msgstr ""
305
 
306
  #: admin/controllers/Shortcode.php:44 admin/controllers/WidgetSlideshow.php:52
307
  msgid "Scale Out"
308
- msgstr ""
309
 
310
  #: admin/controllers/Shortcode.php:45 admin/controllers/WidgetSlideshow.php:53
311
  msgid "Scale In"
312
- msgstr ""
313
 
314
  #: admin/controllers/Shortcode.php:46 admin/controllers/WidgetSlideshow.php:54
315
  msgid "Block Scale"
316
- msgstr ""
317
 
318
  #: admin/controllers/Shortcode.php:47 admin/controllers/WidgetSlideshow.php:55
319
  msgid "Kaleidoscope"
320
- msgstr ""
321
 
322
  #: admin/controllers/Shortcode.php:48 admin/controllers/WidgetSlideshow.php:56
323
  msgid "Fan"
324
- msgstr ""
325
 
326
  #: admin/controllers/Shortcode.php:49 admin/controllers/WidgetSlideshow.php:57
327
  msgid "Blind Horizontal"
328
- msgstr ""
329
 
330
  #: admin/controllers/Shortcode.php:50 admin/controllers/WidgetSlideshow.php:58
331
  msgid "Blind Vertical"
332
- msgstr ""
333
 
334
  #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
335
  #: admin/views/Shortcode.php:615 admin/views/Widget.php:156
@@ -340,7 +311,7 @@ msgstr "Aleatorio"
340
  #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74
341
  #: photo-gallery.php:1326
342
  msgid "Thumbnails"
343
- msgstr ""
344
 
345
  #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
346
  #: admin/controllers/Themes.php:265 admin/views/Options.php:456
@@ -350,7 +321,7 @@ msgstr ""
350
  #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136
351
  #: photo-gallery.php:1330
352
  msgid "Masonry"
353
- msgstr ""
354
 
355
  #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
356
  #: admin/views/Options.php:493 admin/views/Options.php:511
@@ -359,214 +330,214 @@ msgstr ""
359
  #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
360
  #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
361
  msgid "Mosaic"
362
- msgstr ""
363
 
364
  #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
365
  #: admin/views/Options.php:651 admin/views/Shortcode.php:100
366
  #: photo-gallery.php:1300 photo-gallery.php:1338
367
  msgid "Slideshow"
368
- msgstr ""
369
 
370
  #: admin/controllers/Shortcode.php:59 admin/views/Options.php:540
371
  #: admin/views/Shortcode.php:106 photo-gallery.php:1342
372
  msgid "Image Browser"
373
- msgstr ""
374
 
375
  #: admin/controllers/Shortcode.php:60 admin/views/Options.php:583
376
  #: admin/views/Shortcode.php:112 photo-gallery.php:1358
377
  msgid "Blog Style"
378
- msgstr ""
379
 
380
  #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
381
  #: admin/views/Options.php:866 admin/views/Shortcode.php:121
382
  #: photo-gallery.php:1370
383
  msgid "Carousel"
384
- msgstr ""
385
 
386
  #: admin/controllers/Shortcode.php:64 admin/views/Shortcode.php:146
387
  msgid "Compact"
388
- msgstr ""
389
 
390
  #: admin/controllers/Shortcode.php:66 admin/views/Shortcode.php:161
391
  msgid "Extended"
392
- msgstr ""
393
 
394
  #: admin/controllers/Themes.php:40
395
  msgid "duplicated"
396
- msgstr ""
397
 
398
  #: admin/controllers/Themes.php:88 photo-gallery.php:264
399
  msgid "Themes"
400
- msgstr ""
401
 
402
  #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
403
  #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060
404
  #: admin/views/Widget.php:135
405
  msgid "Thumbnail"
406
- msgstr ""
407
 
408
  #: admin/controllers/Themes.php:268
409
  msgid "Image browser"
410
- msgstr ""
411
 
412
  #: admin/controllers/Themes.php:269
413
  msgid "Compact album"
414
- msgstr ""
415
 
416
  #: admin/controllers/Themes.php:270
417
  msgid "Masonry album"
418
- msgstr ""
419
 
420
  #: admin/controllers/Themes.php:271
421
  msgid "Extended album"
422
- msgstr ""
423
 
424
  #: admin/controllers/Themes.php:272
425
  msgid "Blog style"
426
- msgstr ""
427
 
428
  #: admin/controllers/Themes.php:273 admin/views/Options.php:78
429
  #: admin/views/Shortcode.php:1115 admin/views/WidgetTags.php:98
430
  #: photo-gallery.php:1292 photo-gallery.php:1362
431
  msgid "Lightbox"
432
- msgstr ""
433
 
434
  #: admin/controllers/Themes.php:274
435
  msgid "Navigation"
436
- msgstr ""
437
 
438
  #: admin/controllers/Themes.php:280
439
  msgid "Solid"
440
- msgstr ""
441
 
442
  #: admin/controllers/Themes.php:281
443
  msgid "Dotted"
444
- msgstr ""
445
 
446
  #: admin/controllers/Themes.php:282
447
  msgid "Dashed"
448
- msgstr ""
449
 
450
  #: admin/controllers/Themes.php:283 admin/controllers/Themes.php:326
451
  msgid "Double"
452
- msgstr ""
453
 
454
  #: admin/controllers/Themes.php:284
455
  msgid "Groove"
456
- msgstr ""
457
 
458
  #: admin/controllers/Themes.php:285
459
  msgid "Ridge"
460
- msgstr ""
461
 
462
  #: admin/controllers/Themes.php:286
463
  msgid "Inset"
464
- msgstr ""
465
 
466
  #: admin/controllers/Themes.php:287
467
  msgid "Outset"
468
- msgstr ""
469
 
470
  #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161
471
  #: admin/views/Themes.php:3721 admin/views/Themes.php:4203
472
  msgid "Left"
473
- msgstr ""
474
 
475
  #: admin/controllers/Themes.php:306
476
  msgid "Center"
477
- msgstr ""
478
 
479
  #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159
480
  #: admin/views/Themes.php:3719 admin/views/Themes.php:4205
481
  msgid "Right"
482
- msgstr ""
483
 
484
  #: admin/controllers/Themes.php:311
485
  msgid "Lighter"
486
- msgstr ""
487
 
488
  #: admin/controllers/Themes.php:312
489
  msgid "Normal"
490
- msgstr ""
491
 
492
  #: admin/controllers/Themes.php:313
493
  msgid "Bold"
494
- msgstr ""
495
 
496
  #: admin/controllers/Themes.php:318
497
  msgid "Rotate"
498
- msgstr ""
499
 
500
  #: admin/controllers/Themes.php:319
501
  msgid "Scale"
502
- msgstr ""
503
 
504
  #: admin/controllers/Themes.php:320
505
  msgid "Skew"
506
- msgstr ""
507
 
508
  #: admin/controllers/Themes.php:324
509
  msgid "Chevron"
510
- msgstr ""
511
 
512
  #: admin/controllers/Themes.php:325
513
  msgid "Angle"
514
- msgstr ""
515
 
516
  #: admin/controllers/Themes.php:330
517
  msgid "Star"
518
- msgstr ""
519
 
520
  #: admin/controllers/Themes.php:331
521
  msgid "Bell"
522
- msgstr ""
523
 
524
  #: admin/controllers/Themes.php:332
525
  msgid "Circle"
526
- msgstr ""
527
 
528
  #: admin/controllers/Themes.php:333
529
  msgid "Flag"
530
- msgstr ""
531
 
532
  #: admin/controllers/Themes.php:334
533
  msgid "Heart"
534
- msgstr ""
535
 
536
  #: admin/controllers/Themes.php:335
537
  msgid "Square"
538
- msgstr ""
539
 
540
  #: admin/controllers/Uninstall.php:46 admin/controllers/Uninstall.php:86
541
  #: admin/views/Options.php:332
542
  #, php-format
543
  msgid "Uninstall %s"
544
- msgstr ""
545
 
546
  #: admin/controllers/Widget.php:14
547
  msgid "Add Photo Gallery albums or galleries to Your widget area."
548
- msgstr ""
549
 
550
  #: admin/controllers/WidgetSlideshow.php:14
551
  msgid "Add Photo Gallery slideshow to Your widget area."
552
- msgstr ""
553
 
554
  #: admin/controllers/WidgetTags.php:14
555
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
556
- msgstr ""
557
 
558
  #: admin/models/Comments.php:61 admin/models/Ratings.php:81
559
  msgid "All galleries"
560
- msgstr ""
561
 
562
  #: admin/models/Comments.php:75 admin/models/Ratings.php:100
563
  msgid "All images"
564
- msgstr ""
565
 
566
  #: admin/views/AddTags.php:65 admin/views/Albums.php:50
567
  #: admin/views/Comments.php:61 admin/views/Themes.php:72
568
  msgid "Select all"
569
- msgstr ""
570
 
571
  #: admin/views/AddTags.php:68 admin/views/AddTags.php:86
572
  #: admin/views/Albums.php:89 admin/views/Comments.php:64
@@ -582,11 +553,11 @@ msgstr "Nombre"
582
 
583
  #: admin/views/AddTags.php:107
584
  msgid "Add to image"
585
- msgstr ""
586
 
587
  #: admin/views/AdminView.php:94
588
  msgid "Add New"
589
- msgstr ""
590
 
591
  #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316
592
  #: framework/WDWLibrary.php:494 framework/WDWLibrary.php:817
@@ -595,20 +566,16 @@ msgid "Search"
595
  msgstr "Buscar"
596
 
597
  #: admin/views/AdminView.php:226
598
- #, fuzzy
599
- #| msgid "First"
600
  msgid "First page"
601
- msgstr "Primero"
602
 
603
  #: admin/views/AdminView.php:227
604
- #, fuzzy
605
- #| msgid "Previous"
606
  msgid "Previous page"
607
- msgstr "Anterior"
608
 
609
  #: admin/views/AdminView.php:232
610
  msgid "Current Page"
611
- msgstr ""
612
 
613
  #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447
614
  #: framework/WDWLibrary.php:596 framework/WDWLibrary.php:679
@@ -616,105 +583,97 @@ msgid "of"
616
  msgstr "de"
617
 
618
  #: admin/views/AdminView.php:248
619
- #, fuzzy
620
- #| msgid "Next"
621
  msgid "Next page"
622
- msgstr "Siguiente"
623
 
624
  #: admin/views/AdminView.php:249
625
- #, fuzzy
626
- #| msgid "Last"
627
  msgid "Last page"
628
- msgstr "Último"
629
 
630
  #: admin/views/AdminView.php:281 filemanager/view.php:248
631
  msgid "Select All"
632
- msgstr ""
633
 
634
  #: admin/views/AdminView.php:286
635
  msgid "Select bulk action"
636
- msgstr ""
637
 
638
  #: admin/views/AdminView.php:288
639
  msgid "Bulk Actions"
640
- msgstr ""
641
 
642
  #: admin/views/AdminView.php:297
643
  msgid "Apply"
644
- msgstr ""
645
 
646
  #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
647
  #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
648
  #: admin/views/Themes.php:75 admin/views/Themes.php:94
649
  msgid "Title"
650
- msgstr ""
651
 
652
  #: admin/views/Albums.php:54 admin/views/Albums.php:112
653
  #: admin/views/Albums.php:255 admin/views/Galleries.php:56
654
  #: admin/views/Galleries.php:117 admin/views/Galleries.php:305
655
  msgid "Author"
656
- msgstr ""
657
 
658
  #: admin/views/Albums.php:98 admin/views/Albums.php:345
659
  #: admin/views/Albumsgalleries.php:110 admin/views/Comments.php:99
660
  #: admin/views/Galleries.php:103 admin/views/Galleries.php:712
661
  msgid "Unpublished"
662
- msgstr ""
663
 
664
  #: admin/views/Albums.php:105 admin/views/Comments.php:109
665
  #: admin/views/Galleries.php:109 admin/views/Galleries.php:727
666
  #: admin/views/Ratings.php:84 admin/views/Themes.php:101
667
  msgid "Do you want to delete selected item?"
668
- msgstr ""
669
 
670
  #: admin/views/Albums.php:106 admin/views/Albums.php:182
671
  #: admin/views/Galleries.php:110 admin/views/Galleries.php:207
672
- #, fuzzy
673
- #| msgid "Previous"
674
  msgid "Preview"
675
- msgstr "Anterior"
676
 
677
  #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
678
  #: admin/views/Comments.php:112 admin/views/Galleries.php:113
679
  #: admin/views/Galleries.php:736 admin/views/Ratings.php:87
680
  #: admin/views/Themes.php:104
681
- #, fuzzy
682
- #| msgid "Show comments"
683
  msgid "Show more details"
684
- msgstr "Mostrar comentarios"
685
 
686
  #: admin/views/Albums.php:166
687
  msgid "Gallery Group Title"
688
- msgstr ""
689
 
690
  #: admin/views/Albums.php:173 admin/views/Albums.php:295
691
  #: admin/views/Galleries.php:195 admin/views/Galleries.php:265
692
  msgid "How to use"
693
- msgstr ""
694
 
695
  #: admin/views/Albums.php:179 admin/views/Galleries.php:203
696
  #: admin/views/Galleries.php:575 admin/views/Shortcode.php:1631
697
  #: admin/views/Shortcode.php:2888 admin/views/Themes.php:175
698
  msgid "Update"
699
- msgstr ""
700
 
701
  #: admin/views/Albums.php:193 admin/views/Galleries.php:228
702
  msgid "Preview image"
703
- msgstr ""
704
 
705
  #: admin/views/Albums.php:195 admin/views/Galleries.php:232
706
  msgid "Add Preview Image"
707
- msgstr ""
708
 
709
  #: admin/views/Albums.php:196 admin/views/Albums.php:238
710
  #: admin/views/Galleries.php:235 admin/views/Galleries.php:490
711
  #: filemanager/view.php:256
712
  msgid "Add"
713
- msgstr ""
714
 
715
  #: admin/views/Albums.php:204 admin/views/Galleries.php:245
716
  msgid "Published"
717
- msgstr ""
718
 
719
  #: admin/views/Albums.php:206 admin/views/Galleries.php:247
720
  #: admin/views/Options.php:132 admin/views/Options.php:157
@@ -786,7 +745,7 @@ msgstr ""
786
  #: wd/includes/overview.php:227 wd/includes/overview.php:234
787
  #: wd/includes/overview.php:241 wd/includes/overview.php:251
788
  msgid "Yes"
789
- msgstr ""
790
 
791
  #: admin/views/Albums.php:208 admin/views/Galleries.php:249
792
  #: admin/views/Options.php:133 admin/views/Options.php:158
@@ -858,11 +817,11 @@ msgstr ""
858
  #: wd/includes/overview.php:236 wd/includes/overview.php:243
859
  #: wd/includes/overview.php:246 wd/includes/overview.php:251
860
  msgid "No"
861
- msgstr ""
862
 
863
  #: admin/views/Albums.php:219
864
  msgid "Galleries and Gallery Groups"
865
- msgstr ""
866
 
867
  #: admin/views/Albums.php:247 admin/views/Albums.php:291
868
  #: admin/views/Galleries.php:219 admin/views/Galleries.php:261
@@ -872,81 +831,79 @@ msgstr ""
872
  #: admin/views/Options.php:862 admin/views/Shortcode.php:266
873
  #: admin/views/Shortcode.php:1111
874
  msgid "Toggle panel:"
875
- msgstr ""
876
 
877
  #: admin/views/Albums.php:251 admin/views/Galleries.php:298
878
  #: admin/views/Options.php:81 admin/views/Shortcode.php:1344
879
  msgid "Advanced"
880
- msgstr ""
881
 
882
  #: admin/views/Albums.php:259 admin/views/Galleries.php:309
883
  msgid "Slug"
884
- msgstr ""
885
 
886
  #: admin/views/Albums.php:264 admin/views/Galleries.php:314
887
  #: admin/views/Galleries.php:635 admin/views/Galleries.php:742
888
  #: frontend/views/BWGViewGalleryBox.php:1584
889
  msgid "Description"
890
- msgstr ""
891
 
892
  #: admin/views/Albums.php:300 admin/views/Galleries.php:270
893
  msgid "Page or Post editor"
894
- msgstr ""
895
 
896
  #: admin/views/Albums.php:301 admin/views/Galleries.php:271
897
  msgid "Insert it into an existing post with the button."
898
- msgstr ""
899
 
900
  #: admin/views/Albums.php:302 admin/views/Galleries.php:272
901
  msgid "Post editor"
902
- msgstr ""
903
 
904
  #: admin/views/Albums.php:305 admin/views/Galleries.php:275
905
  msgid "PHP code"
906
- msgstr ""
907
 
908
  #: admin/views/Albums.php:306 admin/views/Galleries.php:276
909
  msgid "Copy and paste the PHP code into your template file."
910
- msgstr ""
911
 
912
  #: admin/views/Albums.php:310 admin/views/Albums.php:312
913
  #: admin/views/Galleries.php:280 admin/views/Galleries.php:282
914
  msgid "Widget"
915
- msgstr ""
916
 
917
  #: admin/views/Albums.php:311 admin/views/Galleries.php:281
918
  msgid "Insert as Widget."
919
- msgstr ""
920
 
921
  #: admin/views/Albums.php:336 admin/views/Galleries.php:689
922
  msgid "Drag to re-order"
923
- msgstr ""
924
 
925
  #: admin/views/Albums.php:344
926
  msgid "Remove"
927
- msgstr ""
928
 
929
  #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
930
  #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
931
  msgid "Type"
932
- msgstr ""
933
 
934
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
935
  #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
936
- #, fuzzy
937
- #| msgid "Gallery is empty."
938
  msgid "Gallery group"
939
- msgstr "La galería está vacía"
940
 
941
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
942
  #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192
943
  #: admin/views/Shortcode.php:270 admin/views/Widget.php:117
944
  msgid "Gallery"
945
- msgstr ""
946
 
947
  #: admin/views/Albumsgalleries.php:136
948
  msgid "Add to Gallery Group"
949
- msgstr ""
950
 
951
  #: admin/views/Comments.php:67 admin/views/Comments.php:118
952
  #: frontend/views/BWGViewGalleryBox.php:1431
@@ -964,270 +921,255 @@ msgstr "Comentario"
964
 
965
  #: admin/views/Editimage.php:196
966
  msgid "You can't crop this type of image."
967
- msgstr ""
968
 
969
  #: admin/views/Editimage.php:277
970
  msgid "The thumbnail successfully croped."
971
- msgstr ""
972
 
973
  #: admin/views/Editimage.php:282
974
  msgid "Select the area for the thumbnail."
975
- msgstr ""
976
 
977
  #: admin/views/Editimage.php:287
978
  msgid "Keep aspect ratio"
979
- msgstr ""
980
 
981
  #: admin/views/Editimage.php:785
982
  msgid "Grayscale"
983
- msgstr ""
984
 
985
  #: admin/views/Editimage.php:789
986
  msgid "Negative"
987
- msgstr ""
988
 
989
  #: admin/views/Editimage.php:793
990
  msgid "Removal"
991
- msgstr ""
992
 
993
  #: admin/views/Editimage.php:797
994
  msgid "Sepia"
995
- msgstr ""
996
 
997
  #: admin/views/Editimage.php:801
998
  msgid "Slate"
999
- msgstr ""
1000
 
1001
  #: admin/views/Editimage.php:805
1002
  msgid "Saturate"
1003
- msgstr ""
1004
 
1005
  #: admin/views/Editimage.php:809 admin/views/Galleries.php:718
1006
  msgid "Do you want to reset the image?"
1007
- msgstr ""
1008
 
1009
  #: admin/views/Editimage.php:811
1010
- #, fuzzy
1011
- #| msgid "Reset"
1012
  msgid "Reset image"
1013
- msgstr "Restablecer"
1014
 
1015
  #: admin/views/Editimage.php:838
1016
  msgid "Brightness"
1017
- msgstr ""
1018
 
1019
  #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
1020
  msgid "Press for result"
1021
- msgstr ""
1022
 
1023
  #: admin/views/Editimage.php:864
1024
  msgid "Contrast"
1025
- msgstr ""
1026
 
1027
  #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
1028
  msgid "Images count"
1029
- msgstr ""
1030
 
1031
  #: admin/views/Galleries.php:188
1032
- #, fuzzy
1033
- #| msgid "Gallery is empty."
1034
  msgid "Gallery title"
1035
- msgstr "La galería está vacía"
1036
 
1037
  #: admin/views/Galleries.php:223
1038
  msgid "Basic"
1039
- msgstr ""
1040
 
1041
  #: admin/views/Galleries.php:340
1042
  msgid "Gallery content type"
1043
- msgstr ""
1044
 
1045
  #: admin/views/Galleries.php:343
1046
  msgid "Mixed"
1047
- msgstr ""
1048
 
1049
  #: admin/views/Galleries.php:346
1050
  msgid "Instagram only"
1051
- msgstr ""
1052
 
1053
  #: admin/views/Galleries.php:349 admin/views/Options.php:1474
1054
- #, fuzzy
1055
- #| msgid "Share on Facebook"
1056
  msgid "Facebook"
1057
- msgstr "Compartir en Facebook"
1058
 
1059
  #: admin/views/Galleries.php:357
1060
  msgid "Instagram username"
1061
- msgstr ""
1062
 
1063
  #: admin/views/Galleries.php:361
1064
  msgid "Number of Instagram recent posts to add to gallery"
1065
- msgstr ""
1066
 
1067
  #: admin/views/Galleries.php:365
1068
  msgid "Instagram embed type"
1069
- msgstr ""
1070
 
1071
  #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
1072
  msgid "Content"
1073
- msgstr ""
1074
 
1075
  #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
1076
  msgid "Whole post"
1077
- msgstr ""
1078
 
1079
  #: admin/views/Galleries.php:372
1080
- #, fuzzy
1081
- #| msgid "Photo gallery plugin autoupdate interval."
1082
  msgid "Gallery autoupdate option"
1083
- msgstr "Iintervalo de actualización automática del plugin Photo gallery."
1084
 
1085
  #: admin/views/Galleries.php:374
1086
  msgid "No update"
1087
- msgstr ""
1088
 
1089
  #: admin/views/Galleries.php:376
1090
  msgid "Add new media, keep old ones published."
1091
- msgstr ""
1092
 
1093
  #: admin/views/Galleries.php:378
1094
  msgid "Add new media, unpublish old ones."
1095
- msgstr ""
1096
 
1097
  #: admin/views/Galleries.php:381
1098
  msgid "Add Instagram Gallery"
1099
- msgstr ""
1100
 
1101
  #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1102
  msgid "Photo Gallery Facebook Integration"
1103
- msgstr ""
1104
 
1105
  #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1106
  #, php-format
1107
  msgid "Please install %s add-on to use this feature."
1108
- msgstr ""
1109
 
1110
  #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1111
  msgid "Add Images"
1112
- msgstr ""
1113
 
1114
  #: admin/views/Galleries.php:420
1115
  msgid "Import from Media Library"
1116
- msgstr ""
1117
 
1118
  #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1119
  msgid "Embed Media"
1120
- msgstr ""
1121
 
1122
  #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1123
  msgid "Social Bulk Embed"
1124
- msgstr ""
1125
 
1126
  #: admin/views/Galleries.php:435
1127
  msgid "Optimize Images"
1128
- msgstr ""
1129
 
1130
  #: admin/views/Galleries.php:452
1131
  msgid "Pricelist"
1132
- msgstr ""
1133
 
1134
  #: admin/views/Galleries.php:453
1135
  msgid "Add pricelist"
1136
- msgstr ""
1137
 
1138
  #: admin/views/Galleries.php:454
1139
  msgid "Remove pricelist"
1140
- msgstr ""
1141
 
1142
  #: admin/views/Galleries.php:471
1143
- msgid ""
1144
- "Enter YouTube, Vimeo, Instagram, Facebook, Flickr or Dailymotion URL here."
1145
- msgstr ""
1146
 
1147
  #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1148
  msgid "Add to gallery"
1149
- msgstr ""
1150
 
1151
  #: admin/views/Galleries.php:473 admin/views/Galleries.php:509
1152
  #: admin/views/Galleries.php:566 admin/views/Galleries.php:576
1153
  #: filemanager/view.php:262 filemanager/view.php:263
1154
  #: wd/templates/display_deactivation_popup.php:23
1155
  msgid "Cancel"
1156
- msgstr ""
1157
 
1158
  #: admin/views/Galleries.php:480
1159
  msgid "<b>Youtube</b> URL example:"
1160
- msgstr ""
1161
 
1162
  #: admin/views/Galleries.php:484
1163
  msgid "<b>Vimeo</b> URL example:"
1164
- msgstr ""
1165
 
1166
  #: admin/views/Galleries.php:488
1167
  msgid "<b>Instagram</b> URL example:"
1168
- msgstr ""
1169
 
1170
  #: admin/views/Galleries.php:490
1171
  msgid "post"
1172
- msgstr ""
1173
 
1174
  #: admin/views/Galleries.php:490
1175
- msgid ""
1176
- "to the end of URL if you want to embed the whole Instagram post, not only "
1177
- "its content."
1178
- msgstr ""
1179
 
1180
  #: admin/views/Galleries.php:498
1181
  msgid "<b>Flickr</b> URL example:"
1182
- msgstr ""
1183
 
1184
  #: admin/views/Galleries.php:502
1185
  msgid "<b>Dailymotion</b> URL example:"
1186
- msgstr ""
1187
 
1188
  #: admin/views/Galleries.php:521
1189
  msgid "username:"
1190
- msgstr ""
1191
 
1192
  #: admin/views/Galleries.php:529
1193
  msgid "Number of Instagram recent posts to add to gallery:"
1194
- msgstr ""
1195
 
1196
  #: admin/views/Galleries.php:537
1197
  msgid "embed type:"
1198
- msgstr ""
1199
 
1200
  #: admin/views/Galleries.php:556
1201
  msgid "Resize images to: "
1202
- msgstr ""
1203
 
1204
  #: admin/views/Galleries.php:559
1205
  msgid "The maximum size of resized image."
1206
- msgstr ""
1207
 
1208
  #: admin/views/Galleries.php:580
1209
  msgid "Alt/Title: "
1210
- msgstr ""
1211
 
1212
  #: admin/views/Galleries.php:587
1213
  msgid "Redirect URL: "
1214
- msgstr ""
1215
 
1216
  #: admin/views/Galleries.php:594
1217
  msgid "Description: "
1218
- msgstr ""
1219
 
1220
  #: admin/views/Galleries.php:613
1221
- #, fuzzy
1222
- #| msgid "You have already rated."
1223
  msgid "You have unsaved changes."
1224
- msgstr "Ya lo has puntuado."
1225
 
1226
  #: admin/views/Galleries.php:626 photo-gallery.php:395
1227
- #, fuzzy
1228
- #| msgid "Show comments"
1229
  msgid "Show order column"
1230
- msgstr "Mostrar comentarios"
1231
 
1232
  #: admin/views/Galleries.php:629 admin/views/Galleries.php:696
1233
  #: admin/views/Shortcode.php:611 framework/WDWLibrary.php:889
@@ -1239,23 +1181,23 @@ msgstr "Nombre del archivo"
1239
  #: admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
1240
  #: admin/views/WidgetTags.php:86
1241
  msgid "Image"
1242
- msgstr ""
1243
 
1244
  #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1245
  msgid "Alt/Title"
1246
- msgstr ""
1247
 
1248
  #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1249
  msgid "Redirect URL"
1250
- msgstr ""
1251
 
1252
  #: admin/views/Galleries.php:705
1253
  msgid "Date modified"
1254
- msgstr ""
1255
 
1256
  #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
1257
  msgid "Resolution"
1258
- msgstr ""
1259
 
1260
  #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612
1261
  #: framework/WDWLibrary.php:890
@@ -1264,808 +1206,763 @@ msgstr "Tamaño"
1264
 
1265
  #: admin/views/Galleries.php:717
1266
  msgid "Crop"
1267
- msgstr ""
1268
 
1269
  #: admin/views/Galleries.php:772
1270
  msgid "Remove tag"
1271
- msgstr ""
1272
 
1273
  #: admin/views/Options.php:44 admin/views/Themes.php:175
1274
  msgid "Save"
1275
- msgstr ""
1276
 
1277
  #: admin/views/Options.php:50
1278
  msgid "Reset all options"
1279
- msgstr ""
1280
 
1281
  #: admin/views/Options.php:51 admin/views/Themes.php:180
1282
  msgid "Do you want to reset to default?"
1283
- msgstr ""
1284
 
1285
  #: admin/views/Options.php:69
1286
  msgid "General"
1287
- msgstr ""
1288
 
1289
  #: admin/views/Options.php:90
1290
  msgid "Images directory"
1291
- msgstr ""
1292
 
1293
  #: admin/views/Options.php:95
1294
- msgid ""
1295
- "Input an existing directory inside the Wordpress directory to store uploaded "
1296
- "images.<br />Old directory content will be moved to the new one."
1297
- msgstr ""
1298
 
1299
  #: admin/views/Options.php:100 admin/views/Options.php:899
1300
  msgid "Image dimensions"
1301
- msgstr ""
1302
 
1303
  #: admin/views/Options.php:105
1304
  msgid "The maximum size of the uploaded image (0 for original size)."
1305
- msgstr ""
1306
 
1307
  #: admin/views/Options.php:110
1308
  msgid "Generated thumbnail dimensions"
1309
- msgstr ""
1310
 
1311
  #: admin/views/Options.php:114
1312
  msgid "Recreate"
1313
- msgstr ""
1314
 
1315
  #: admin/views/Options.php:116
1316
- msgid ""
1317
- "The maximum size of the generated thumbnail. Its dimensions should be larger "
1318
- "than the ones of the frontend thumbnail."
1319
- msgstr ""
1320
 
1321
  #: admin/views/Options.php:121
1322
  msgid "Image quality"
1323
- msgstr ""
1324
 
1325
  #: admin/views/Options.php:125
1326
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1327
- msgstr ""
1328
 
1329
  #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1330
  msgid "Show search box"
1331
- msgstr ""
1332
 
1333
  #: admin/views/Options.php:139
1334
  msgid "Add placeholder to search"
1335
- msgstr ""
1336
 
1337
  #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1338
  msgid "Search box width"
1339
- msgstr ""
1340
 
1341
  #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1342
  msgid "Show \"Order by\" dropdown list"
1343
- msgstr ""
1344
 
1345
  #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
1346
- #, fuzzy
1347
- #| msgid "Show rating"
1348
  msgid "Show tag box"
1349
- msgstr "Mostrar puntuación"
1350
 
1351
  #: admin/views/Options.php:173
1352
  msgid "Preload images"
1353
- msgstr ""
1354
 
1355
  #: admin/views/Options.php:182
1356
  msgid "Count of images"
1357
- msgstr ""
1358
 
1359
  #: admin/views/Options.php:186
1360
  msgid "Count of images to preload (0 for all)."
1361
- msgstr ""
1362
 
1363
  #: admin/views/Options.php:191
1364
  msgid "Show/hide custom post types"
1365
- msgstr ""
1366
 
1367
  #: admin/views/Options.php:200
1368
  msgid "Show/hide comments for custom post types"
1369
- msgstr ""
1370
 
1371
  #: admin/views/Options.php:209
1372
  msgid "Include styles/scripts in necessary pages only"
1373
- msgstr ""
1374
 
1375
  #: admin/views/Options.php:218
1376
  msgid "Enable bulk download button"
1377
- msgstr ""
1378
 
1379
  #: admin/views/Options.php:223
1380
- msgid ""
1381
- "If enabled,it will be possible to download entire gallery with a single "
1382
- "button."
1383
- msgstr ""
1384
 
1385
  #: admin/views/Options.php:231
1386
  msgid "Right click protection"
1387
- msgstr ""
1388
 
1389
  #: admin/views/Options.php:236
1390
  msgid "Disable image right click possibility."
1391
- msgstr ""
1392
 
1393
  #: admin/views/Options.php:241
1394
  msgid "Enable html editor"
1395
- msgstr ""
1396
 
1397
  #: admin/views/Options.php:250
1398
  msgid "Enable href attribute"
1399
- msgstr ""
1400
 
1401
  #: admin/views/Options.php:255
1402
  msgid "Disable this option only if it conflicts with your theme."
1403
- msgstr ""
1404
 
1405
  #: admin/views/Options.php:260
1406
  msgid "Meta auto-fill"
1407
- msgstr ""
1408
 
1409
  #: admin/views/Options.php:265
1410
- msgid ""
1411
- "Enabling this option the meta description of the image will be automatically "
1412
- "filled in image description field."
1413
- msgstr ""
1414
 
1415
  #: admin/views/Options.php:270
1416
  msgid "Roles"
1417
- msgstr ""
1418
 
1419
  #: admin/views/Options.php:282
1420
- msgid ""
1421
- "Choose a user type who can add/edit galleries, images, gallery groups and "
1422
- "tags."
1423
- msgstr ""
1424
 
1425
  #: admin/views/Options.php:288
1426
- #, fuzzy
1427
- #| msgid "Gallery is empty."
1428
  msgid "Gallery role"
1429
- msgstr "La galería está vacía"
1430
 
1431
  #: admin/views/Options.php:293
1432
  msgid "Only author can change a gallery."
1433
- msgstr ""
1434
 
1435
  #: admin/views/Options.php:299
1436
  msgid "Gallery group role"
1437
- msgstr ""
1438
 
1439
  #: admin/views/Options.php:304
1440
  msgid "Only author can change an gallery group."
1441
- msgstr ""
1442
 
1443
  #: admin/views/Options.php:310
1444
  msgid "Image role"
1445
- msgstr ""
1446
 
1447
  #: admin/views/Options.php:315
1448
  msgid "Only author can change an image."
1449
- msgstr ""
1450
 
1451
  #: admin/views/Options.php:321 admin/views/Options.php:324
1452
  #: photo-gallery.php:283
1453
  msgid "Generate Shortcode"
1454
- msgstr ""
1455
 
1456
  #: admin/views/Options.php:327
1457
  msgid "Generate or edit a shortcode."
1458
- msgstr ""
1459
 
1460
  #: admin/views/Options.php:335 photo-gallery.php:282
1461
  msgid "Uninstall"
1462
- msgstr ""
1463
 
1464
  #: admin/views/Options.php:350
1465
  msgid "Open in a new window"
1466
- msgstr ""
1467
 
1468
  #: admin/views/Options.php:359
1469
  msgid "Number of image columns"
1470
- msgstr ""
1471
 
1472
  #: admin/views/Options.php:367 admin/views/Options.php:599
1473
  #: admin/views/Shortcode.php:409 admin/views/Shortcode.php:666
1474
  #: admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
1475
  #: admin/views/Shortcode.php:805
1476
  msgid "Images per page"
1477
- msgstr ""
1478
 
1479
  #: admin/views/Options.php:375
1480
  msgid "Frontend thumbnail dimensions"
1481
- msgstr ""
1482
 
1483
  #: admin/views/Options.php:380
1484
- msgid ""
1485
- "The default size of the thumbnail which will be displayed in the website."
1486
- msgstr ""
1487
 
1488
  #: admin/views/Options.php:387
1489
  msgid "Show image title"
1490
- msgstr ""
1491
 
1492
  #: admin/views/Options.php:389 admin/views/Options.php:402
1493
  #: admin/views/Options.php:1030 admin/views/Shortcode.php:431
1494
  #: admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
1495
  #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
1496
- #, fuzzy
1497
- #| msgid "Show info"
1498
  msgid "Show on hover"
1499
- msgstr "Mostrar información"
1500
 
1501
  #: admin/views/Options.php:390 admin/views/Options.php:403
1502
  #: admin/views/Options.php:1031 admin/views/Shortcode.php:433
1503
  #: admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
1504
  #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1505
  msgid "Always show"
1506
- msgstr ""
1507
 
1508
  #: admin/views/Options.php:391 admin/views/Options.php:404
1509
  #: admin/views/Options.php:1032 admin/views/Shortcode.php:435
1510
  #: admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
1511
  #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1512
  msgid "Don't show"
1513
- msgstr ""
1514
 
1515
  #: admin/views/Options.php:400
1516
- #, fuzzy
1517
- #| msgid "Show comments"
1518
  msgid "Show ecommerce icon"
1519
- msgstr "Mostrar comentarios"
1520
 
1521
  #: admin/views/Options.php:413
1522
  msgid "Enable image pagination"
1523
- msgstr ""
1524
 
1525
  #: admin/views/Options.php:422
1526
  msgid "Show gallery name"
1527
- msgstr ""
1528
 
1529
  #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1530
  msgid "Show gallery description"
1531
- msgstr ""
1532
 
1533
  #: admin/views/Options.php:440
1534
  msgid "Play icon over the video thumbnail"
1535
- msgstr ""
1536
 
1537
  #: admin/views/Options.php:464 admin/views/Options.php:513
1538
  #: admin/views/Shortcode.php:349 admin/views/Shortcode.php:364
1539
  #: admin/views/Shortcode.php:1024 admin/views/Shortcode.php:1073
1540
  msgid "Vertical"
1541
- msgstr ""
1542
 
1543
  #: admin/views/Options.php:465 admin/views/Options.php:514
1544
  #: admin/views/Shortcode.php:354 admin/views/Shortcode.php:369
1545
  #: admin/views/Shortcode.php:1029 admin/views/Shortcode.php:1078
1546
  msgid "Horizontal"
1547
- msgstr ""
1548
 
1549
  #: admin/views/Options.php:474
1550
  msgid "Show description in Vertical Masonry view"
1551
- msgstr ""
1552
 
1553
  #: admin/views/Options.php:499 admin/views/Shortcode.php:382
1554
  #: admin/views/Shortcode.php:1042 admin/views/Shortcode.php:1091
1555
  msgid "Total width of mosaic"
1556
- msgstr ""
1557
 
1558
  #: admin/views/Options.php:503 admin/views/Options.php:593
1559
  #: admin/views/Options.php:615 admin/views/Options.php:626
1560
  msgid "Width of mosaic as a percentage of container's width."
1561
- msgstr ""
1562
 
1563
  #: admin/views/Options.php:521 admin/views/Shortcode.php:374
1564
  #: admin/views/Shortcode.php:1034 admin/views/Shortcode.php:1083
1565
  msgid "Resizable mosaic"
1566
- msgstr ""
1567
 
1568
  #: admin/views/Options.php:546 admin/views/Options.php:589
1569
  #: admin/views/Shortcode.php:549 admin/views/Shortcode.php:572
1570
  msgid "Image width"
1571
- msgstr ""
1572
 
1573
  #: admin/views/Options.php:556 admin/views/Options.php:610
1574
  #: admin/views/Options.php:757 admin/views/Options.php:920
1575
  #: admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
1576
  msgid "Enable image title"
1577
- msgstr ""
1578
 
1579
  #: admin/views/Options.php:565 admin/views/Options.php:621
1580
  #: admin/views/Options.php:803 admin/views/Shortcode.php:565
1581
  #: admin/views/Shortcode.php:588
1582
  msgid "Enable image description"
1583
- msgstr ""
1584
 
1585
  #: admin/views/Options.php:632 admin/views/Options.php:1005
1586
  #: admin/views/Shortcode.php:418 admin/views/Shortcode.php:675
1587
  #: admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
1588
  #: admin/views/Shortcode.php:814
1589
  msgid "Enable pagination"
1590
- msgstr ""
1591
 
1592
  #: admin/views/Options.php:657
1593
  msgid "Slideshow effect"
1594
- msgstr ""
1595
 
1596
  #: admin/views/Options.php:664 admin/views/Options.php:1108
1597
  #: admin/views/WidgetSlideshow.php:106
1598
  msgid "This effect is disabled in free version."
1599
- msgstr ""
1600
 
1601
  #: admin/views/Options.php:675 admin/views/Options.php:1119
1602
  #: admin/views/Shortcode.php:290 admin/views/Shortcode.php:1171
1603
  msgid "Effect duration"
1604
- msgstr ""
1605
 
1606
  #: admin/views/Options.php:683 admin/views/Options.php:872
1607
  #: admin/views/Options.php:1136 admin/views/Shortcode.php:299
1608
  #: admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
1609
  msgid "Time interval"
1610
- msgstr ""
1611
 
1612
  #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1613
  msgid "Slideshow dimensions"
1614
- msgstr ""
1615
 
1616
  #: admin/views/Options.php:700 admin/views/Options.php:930
1617
  msgid "Enable autoplay"
1618
- msgstr ""
1619
 
1620
  #: admin/views/Options.php:709
1621
  msgid "Enable shuffle"
1622
- msgstr ""
1623
 
1624
  #: admin/views/Options.php:718 admin/views/Options.php:1173
1625
  #: admin/views/Shortcode.php:643 admin/views/Shortcode.php:1221
1626
  msgid "Enable control buttons"
1627
- msgstr ""
1628
 
1629
  #: admin/views/Options.php:727 admin/views/Options.php:1247
1630
  msgid "Show Next / Previous buttons"
1631
- msgstr ""
1632
 
1633
  #: admin/views/Options.php:729 admin/views/Options.php:1249
1634
  msgid "On hover"
1635
- msgstr ""
1636
 
1637
  #: admin/views/Options.php:730 admin/views/Options.php:1250
1638
  msgid "Always"
1639
- msgstr ""
1640
 
1641
  #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1642
  msgid "Enable slideshow filmstrip"
1643
- msgstr ""
1644
 
1645
  #: admin/views/Options.php:748
1646
  msgid "Slideshow filmstrip size"
1647
- msgstr ""
1648
 
1649
  #: admin/views/Options.php:766
1650
  msgid "Title position"
1651
- msgstr ""
1652
 
1653
  #: admin/views/Options.php:788
1654
  msgid "Image title position on slideshow"
1655
- msgstr ""
1656
 
1657
  #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1658
  msgid "Full width title"
1659
- msgstr ""
1660
 
1661
  #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1662
  msgid "Display image title based on the slideshow dimensions."
1663
- msgstr ""
1664
 
1665
  #: admin/views/Options.php:812
1666
  msgid "Description position"
1667
- msgstr ""
1668
 
1669
  #: admin/views/Options.php:834
1670
  msgid "Image description position on slideshow"
1671
- msgstr ""
1672
 
1673
  #: admin/views/Options.php:839
1674
  msgid "Enable slideshow Music"
1675
- msgstr ""
1676
 
1677
  #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1678
  msgid "Music url"
1679
- msgstr ""
1680
 
1681
  #: admin/views/Options.php:852
1682
  msgid "Only"
1683
- msgstr ""
1684
 
1685
  #: admin/views/Options.php:852
1686
  msgid "formats are supported."
1687
- msgstr ""
1688
 
1689
  #: admin/views/Options.php:881
1690
  msgid "Max. number of images"
1691
- msgstr ""
1692
 
1693
  #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1694
  msgid "Carousel image ratio"
1695
- msgstr ""
1696
 
1697
  #: admin/views/Options.php:909 admin/views/Shortcode.php:595
1698
  msgid "Fixed width"
1699
- msgstr ""
1700
 
1701
  #: admin/views/Options.php:940 admin/views/Shortcode.php:981
1702
  msgid "Container fit"
1703
- msgstr ""
1704
 
1705
  #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1706
  msgid "Next/Previous buttons"
1707
- msgstr ""
1708
 
1709
  #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1710
  msgid "Play/Pause button"
1711
- msgstr ""
1712
 
1713
  #: admin/views/Options.php:980
1714
  msgid "Show gallery group/gallery name"
1715
- msgstr ""
1716
 
1717
  #: admin/views/Options.php:989
1718
  msgid "Number of gallery group columns"
1719
- msgstr ""
1720
 
1721
  #: admin/views/Options.php:997
1722
- #, fuzzy
1723
- #| msgid "Gallery is empty."
1724
  msgid "Gallery groups per page"
1725
- msgstr "La galería está vacía"
1726
 
1727
  #: admin/views/Options.php:1014
1728
- #, fuzzy
1729
- #| msgid "Gallery is empty."
1730
  msgid "Gallery group view type"
1731
- msgstr "La galería está vacía"
1732
 
1733
  #: admin/views/Options.php:1020
1734
- #, fuzzy
1735
- #| msgid "There are no images in this gallery."
1736
  msgid "The gallery images view type in the gallery group."
1737
- msgstr "No hay imágenes en esta galería."
1738
 
1739
  #: admin/views/Options.php:1028
1740
- #, fuzzy
1741
- #| msgid "Show rating"
1742
  msgid "Show title"
1743
- msgstr "Mostrar puntuación"
1744
 
1745
  #: admin/views/Options.php:1038
1746
  msgid "Enable extended gallery group description"
1747
- msgstr ""
1748
 
1749
  #: admin/views/Options.php:1047
1750
  msgid "Gallery group thumbnail dimensions:"
1751
- msgstr ""
1752
 
1753
  #: admin/views/Options.php:1056
1754
  msgid "Extended gallery group height:"
1755
- msgstr ""
1756
 
1757
  #: admin/views/Options.php:1072 admin/views/Shortcode.php:1120
1758
  msgid "Image click action"
1759
- msgstr ""
1760
 
1761
  #: admin/views/Options.php:1074 admin/views/Shortcode.php:1121
1762
  msgid "Open lightbox"
1763
- msgstr ""
1764
 
1765
  #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1766
  msgid "Redirect to url"
1767
- msgstr ""
1768
 
1769
  #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1770
  msgid "Do Nothing"
1771
- msgstr ""
1772
 
1773
  #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1774
  msgid "Full width lightbox"
1775
- msgstr ""
1776
 
1777
  #: admin/views/Options.php:1087 admin/views/Shortcode.php:1141
1778
  msgid "Enable full width feature for the lightbox."
1779
- msgstr ""
1780
 
1781
  #: admin/views/Options.php:1092 admin/views/Shortcode.php:1146
1782
  msgid "Lightbox dimensions"
1783
- msgstr ""
1784
 
1785
  #: admin/views/Options.php:1101 admin/views/Shortcode.php:1156
1786
  msgid "Lightbox effect"
1787
- msgstr ""
1788
 
1789
  #: admin/views/Options.php:1127 admin/views/Shortcode.php:1180
1790
  msgid "Lightbox autoplay"
1791
- msgstr ""
1792
 
1793
  #: admin/views/Options.php:1144
1794
  msgid "Enable filmstrip"
1795
- msgstr ""
1796
 
1797
  #: admin/views/Options.php:1154 admin/views/Shortcode.php:1204
1798
  msgid "Filmstrip size"
1799
- msgstr ""
1800
 
1801
  #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1802
  msgid "Display hit counter"
1803
- msgstr ""
1804
 
1805
  #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
1806
- #, fuzzy
1807
- #| msgid "Exit Fullscreen"
1808
  msgid "Enable fullscreen"
1809
- msgstr "Salir de pantalla completa"
1810
 
1811
  #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
1812
- #, fuzzy
1813
- #| msgid "Hide info"
1814
  msgid "Enable info"
1815
- msgstr "Ocultar información"
1816
 
1817
  #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1818
  msgid "Display info by default"
1819
- msgstr ""
1820
 
1821
  #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1822
  msgid "Full width info"
1823
- msgstr ""
1824
 
1825
  #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1826
  msgid "Display image information based on the lightbox dimensions."
1827
- msgstr ""
1828
 
1829
  #: admin/views/Options.php:1256
1830
  msgid "Enable Email for comments"
1831
- msgstr ""
1832
 
1833
  #: admin/views/Options.php:1266
1834
  msgid "Enable Captcha for comments"
1835
- msgstr ""
1836
 
1837
  #: admin/views/Options.php:1276
1838
  msgid "Enable original image display button"
1839
- msgstr ""
1840
 
1841
  #: admin/views/Options.php:1285
1842
  msgid "Enable download button"
1843
- msgstr ""
1844
 
1845
  #: admin/views/Options.php:1294
1846
- #, fuzzy
1847
- #| msgid "Show comments"
1848
  msgid "Show images count"
1849
- msgstr "Mostrar comentarios"
1850
 
1851
  #: admin/views/Options.php:1303
1852
  msgid "Enable loop"
1853
- msgstr ""
1854
 
1855
  #: admin/views/Options.php:1312
1856
  msgid "Enable"
1857
- msgstr ""
1858
 
1859
  #: admin/views/Options.php:1322
1860
  msgid "profile id"
1861
- msgstr ""
1862
 
1863
  #: admin/views/Options.php:1326
1864
  #, php-format
1865
  msgid "Create an account %s."
1866
- msgstr ""
1867
 
1868
  #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1869
  msgid "here"
1870
- msgstr ""
1871
 
1872
  #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
1873
- #, fuzzy
1874
- #| msgid "Hide rating"
1875
  msgid "Enable rating"
1876
- msgstr "Ocultar puntuación"
1877
 
1878
  #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
1879
- #, fuzzy
1880
- #| msgid "Show comments"
1881
  msgid "Enable comments"
1882
- msgstr "Mostrar comentarios"
1883
 
1884
  #: admin/views/Options.php:1356
1885
- #, fuzzy
1886
- #| msgid "Your comment is awaiting moderation"
1887
  msgid "Enable comments moderation"
1888
- msgstr "Tu comentario está pendiente de moderación "
1889
 
1890
  #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1891
  msgid "Enable Facebook button"
1892
- msgstr ""
1893
 
1894
  #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1895
  msgid "Enable Twitter button"
1896
- msgstr ""
1897
 
1898
  #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1899
  msgid "Enable Google+ button"
1900
- msgstr ""
1901
 
1902
  #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1903
  msgid "Enable Pinterest button"
1904
- msgstr ""
1905
 
1906
  #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1907
  msgid "Enable Tumblr button"
1908
- msgstr ""
1909
 
1910
  #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1911
  msgid "Enable Ecommerce button"
1912
- msgstr ""
1913
 
1914
  #: admin/views/Options.php:1438
1915
- #, fuzzy
1916
- #| msgid "Photo gallery plugin autoupdate interval."
1917
  msgid "Gallery autoupdate interval"
1918
- msgstr "Iintervalo de actualización automática del plugin Photo gallery."
1919
 
1920
  #: admin/views/Options.php:1441
1921
  msgid "hour"
1922
- msgstr ""
1923
 
1924
  #: admin/views/Options.php:1443
1925
  msgid "min"
1926
- msgstr ""
1927
 
1928
  #: admin/views/Options.php:1445
1929
  msgid "Minimum 1 min."
1930
- msgstr ""
1931
 
1932
  #: admin/views/Options.php:1451
1933
  msgid "Instagram"
1934
- msgstr ""
1935
 
1936
  #: admin/views/Options.php:1459
1937
  msgid "Sign in with Instagram"
1938
- msgstr ""
1939
 
1940
  #: admin/views/Options.php:1464
1941
- msgid ""
1942
- "Are you sure you want to reset access token, after resetting it you will "
1943
- "need to log in with Instagram again for using plugin"
1944
- msgstr ""
1945
 
1946
  #: admin/views/Options.php:1466
1947
  msgid "Sign out with Instagram"
1948
- msgstr ""
1949
 
1950
  #: admin/views/Options.php:1489 photo-gallery.php:1284
1951
  msgid "Watermark"
1952
- msgstr ""
1953
 
1954
  #: admin/views/Options.php:1494
1955
  msgid "Watermark type"
1956
- msgstr ""
1957
 
1958
  #: admin/views/Options.php:1499 admin/views/Options.php:1643
1959
  #: admin/views/Shortcode.php:1388 admin/views/Themes.php:4578
1960
  #: admin/views/WidgetTags.php:85
1961
  msgid "Text"
1962
- msgstr ""
1963
 
1964
  #: admin/views/Options.php:1507
1965
  msgid "Watermark url"
1966
- msgstr ""
1967
 
1968
  #: admin/views/Options.php:1518 admin/views/Options.php:1664
1969
  msgid "Add Image"
1970
- msgstr ""
1971
 
1972
  #: admin/views/Options.php:1521
1973
  msgid "Only .png format is supported."
1974
- msgstr ""
1975
 
1976
  #: admin/views/Options.php:1526
1977
  msgid "Watermark text"
1978
- msgstr ""
1979
 
1980
  #: admin/views/Options.php:1534
1981
  msgid "Watermark size"
1982
- msgstr ""
1983
 
1984
  #: admin/views/Options.php:1538
1985
  msgid "Enter size of watermark in percents according to image."
1986
- msgstr ""
1987
 
1988
  #: admin/views/Options.php:1543
1989
  msgid "Watermark font size"
1990
- msgstr ""
1991
 
1992
  #: admin/views/Options.php:1551
1993
  msgid "Watermark font style"
1994
- msgstr ""
1995
 
1996
  #: admin/views/Options.php:1579
1997
  msgid "Watermark color"
1998
- msgstr ""
1999
 
2000
  #: admin/views/Options.php:1587
2001
  msgid "Watermark opacity"
2002
- msgstr ""
2003
 
2004
  #: admin/views/Options.php:1591
2005
  msgid "Opacity value must be in the range of 0 to 100."
2006
- msgstr ""
2007
 
2008
  #: admin/views/Options.php:1596
2009
  msgid "Watermark position"
2010
- msgstr ""
2011
 
2012
  #: admin/views/Options.php:1619
2013
  msgid "Set Watermark"
2014
- msgstr ""
2015
 
2016
  #: admin/views/Options.php:1620
2017
  msgid "Reset watermark"
2018
- msgstr ""
2019
 
2020
  #: admin/views/Options.php:1622
2021
  msgid "Reset Watermark"
2022
- msgstr ""
2023
 
2024
  #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
2025
  msgid "Advertisement"
2026
- msgstr ""
2027
 
2028
  #: admin/views/Options.php:1638
2029
  msgid "Advertisement type"
2030
- msgstr ""
2031
 
2032
  #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
2033
  msgid "Advertisement url"
2034
- msgstr ""
2035
 
2036
  #: admin/views/Options.php:1667
2037
- msgid ""
2038
- "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,."
2039
- "png,.gif formats are supported)"
2040
- msgstr ""
2041
 
2042
  #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
2043
  msgid "Advertisement text"
2044
- msgstr ""
2045
 
2046
  #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
2047
  msgid "Advertisement link"
2048
- msgstr ""
2049
 
2050
  #: admin/views/Options.php:1684
2051
  msgid "Enter a URL to open when the advertisement banner is clicked."
2052
- msgstr ""
2053
 
2054
  #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
2055
  msgid "Advertisement dimensions"
2056
- msgstr ""
2057
 
2058
  #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
2059
  msgid "Maximum values for watermark image width and height."
2060
- msgstr ""
2061
 
2062
  #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
2063
  msgid "Advertisement font size"
2064
- msgstr ""
2065
 
2066
  #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
2067
  msgid "Advertisement font style"
2068
- msgstr ""
2069
 
2070
  #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431
2071
  #: admin/views/Themes.php:386 admin/views/Themes.php:449
@@ -2083,7 +1980,7 @@ msgstr ""
2083
  #: admin/views/Themes.php:4166 admin/views/Themes.php:4242
2084
  #: admin/views/Themes.php:4426 admin/views/Themes.php:4811
2085
  msgid "Google fonts"
2086
- msgstr ""
2087
 
2088
  #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433
2089
  #: admin/views/Themes.php:76 admin/views/Themes.php:107
@@ -2107,11 +2004,11 @@ msgstr "Defecto"
2107
 
2108
  #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
2109
  msgid "Advertisement color"
2110
- msgstr ""
2111
 
2112
  #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
2113
  msgid "Advertisement opacity"
2114
- msgstr ""
2115
 
2116
  #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468
2117
  #: admin/views/Themes.php:309 admin/views/Themes.php:322
@@ -2131,517 +2028,499 @@ msgstr ""
2131
  #: admin/views/Themes.php:4513 admin/views/Themes.php:4608
2132
  #: admin/views/Themes.php:4633 admin/views/Themes.php:4772
2133
  msgid "Value must be between 0 to 100."
2134
- msgstr ""
2135
 
2136
  #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
2137
  msgid "Advertisement position"
2138
- msgstr ""
2139
 
2140
  #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
2141
  #: admin/views/Ratings.php:91
2142
  msgid "IP"
2143
- msgstr ""
2144
 
2145
  #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
2146
  msgid "Rating"
2147
- msgstr ""
2148
 
2149
  #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
2150
  #: admin/views/Shortcode.php:610
2151
  msgid "Date"
2152
- msgstr ""
2153
 
2154
  #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2155
  msgid "View type"
2156
- msgstr ""
2157
 
2158
  #: admin/views/Shortcode.php:183
2159
  msgid "This view is not available in free version."
2160
- msgstr ""
2161
 
2162
  #: admin/views/Shortcode.php:195
2163
  msgid "All Galleries"
2164
- msgstr ""
2165
 
2166
  #: admin/views/Shortcode.php:207
2167
  msgid "Album"
2168
- msgstr ""
2169
 
2170
  #: admin/views/Shortcode.php:210
2171
  msgid "Select Album"
2172
- msgstr ""
2173
 
2174
  #: admin/views/Shortcode.php:219
2175
  msgid "The selected album expanded content will be displayed."
2176
- msgstr ""
2177
 
2178
  #: admin/views/Shortcode.php:225
2179
  msgid "Tag"
2180
- msgstr ""
2181
 
2182
  #: admin/views/Shortcode.php:228
2183
  msgid "All Tags"
2184
- msgstr ""
2185
 
2186
  #: admin/views/Shortcode.php:242
2187
  msgid "Theme"
2188
- msgstr ""
2189
 
2190
  #: admin/views/Shortcode.php:259
2191
  msgid "Use default options"
2192
- msgstr ""
2193
 
2194
  #: admin/views/Shortcode.php:260
2195
  #, php-format
2196
  msgid "You can change the default options %s."
2197
- msgstr ""
2198
 
2199
  #: admin/views/Shortcode.php:276
2200
  msgid "Slideshow Effect"
2201
- msgstr ""
2202
 
2203
  #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303
2204
  #: admin/views/Shortcode.php:703 admin/views/Shortcode.php:1175
2205
  #: admin/views/Shortcode.php:1191
2206
  msgid "Interval between two images."
2207
- msgstr ""
2208
 
2209
  #: admin/views/Shortcode.php:313
2210
  msgid "Maximum values for slideshow width and height."
2211
- msgstr ""
2212
 
2213
  #: admin/views/Shortcode.php:318
2214
  msgid "Max. number of carousel images"
2215
- msgstr ""
2216
 
2217
  #: admin/views/Shortcode.php:326
2218
  msgid "Carousel dimensions"
2219
- msgstr ""
2220
 
2221
  #: admin/views/Shortcode.php:331 admin/views/Shortcode.php:599
2222
  msgid "Maximum values for carousel width and height."
2223
- msgstr ""
2224
 
2225
  #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361
2226
  #: admin/views/Shortcode.php:1021
2227
  msgid "Image thumbnail width:"
2228
- msgstr ""
2229
 
2230
  #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365
2231
  #: admin/views/Shortcode.php:1025
2232
  msgid "Max. number of image columns: "
2233
- msgstr ""
2234
 
2235
  #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2236
  #: admin/views/Shortcode.php:1086
2237
- msgid ""
2238
- "Mosaic thumbnails do not have fixed size, but are proportional to the width "
2239
- "of the parent container. This option keeps thumbs to look nice when viewed "
2240
- "with very large or very small screen. Prevents zooming of thumbs."
2241
- msgstr ""
2242
 
2243
  #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
2244
  #: admin/views/Shortcode.php:1095
2245
  msgid "Percentage of container's width."
2246
- msgstr ""
2247
 
2248
  #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2249
  msgid "Image Thumbnail dimensions"
2250
- msgstr ""
2251
 
2252
  #: admin/views/Shortcode.php:396
2253
  msgid "Maximum values for thumbnail dimension."
2254
- msgstr ""
2255
 
2256
  #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461
2257
  #: admin/views/Shortcode.php:496 admin/views/Shortcode.php:531
2258
  msgid "Max. number of image columns"
2259
- msgstr ""
2260
 
2261
  #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670
2262
  #: admin/views/Shortcode.php:721 admin/views/Shortcode.php:765
2263
  #: admin/views/Shortcode.php:809
2264
- msgid ""
2265
- "If you want to display all images you should leave it blank or insert 0."
2266
- msgstr ""
2267
 
2268
  #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729
2269
  #: admin/views/Shortcode.php:773 admin/views/Shortcode.php:817
2270
- #, fuzzy
2271
- #| msgid "More"
2272
  msgid "Load More"
2273
- msgstr "Más"
2274
 
2275
  #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679
2276
  #: admin/views/Shortcode.php:730 admin/views/Shortcode.php:774
2277
  #: admin/views/Shortcode.php:818
2278
  msgid "Scroll Load"
2279
- msgstr ""
2280
 
2281
  #: admin/views/Shortcode.php:430
2282
  msgid "Ecommerce icon"
2283
- msgstr ""
2284
 
2285
  #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2286
  msgid "Max. number of album columns"
2287
- msgstr ""
2288
 
2289
  #: admin/views/Shortcode.php:451
2290
  msgid "Album Thumbnail dimensions"
2291
- msgstr ""
2292
 
2293
  #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2294
  msgid "Maximum values for album thumb width and height."
2295
- msgstr ""
2296
 
2297
  #: admin/views/Shortcode.php:469
2298
  msgid "Image thumbnail dimensions"
2299
- msgstr ""
2300
 
2301
  #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2302
  msgid "Maximum values for thumbnail width and height."
2303
- msgstr ""
2304
 
2305
  #: admin/views/Shortcode.php:487
2306
  msgid "Album Thumbnail width"
2307
- msgstr ""
2308
 
2309
  #: admin/views/Shortcode.php:491
2310
  msgid "Maximum value for album thumbnail width."
2311
- msgstr ""
2312
 
2313
  #: admin/views/Shortcode.php:504
2314
  msgid "Image thumbnail width"
2315
- msgstr ""
2316
 
2317
  #: admin/views/Shortcode.php:508
2318
  msgid "Maximum value for thumbnail width."
2319
- msgstr ""
2320
 
2321
  #: admin/views/Shortcode.php:513
2322
  msgid "Album row height"
2323
- msgstr ""
2324
 
2325
  #: admin/views/Shortcode.php:521
2326
  msgid "Album thumbnail dimensions"
2327
- msgstr ""
2328
 
2329
  #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2330
  msgid "Maximum value for image width."
2331
- msgstr ""
2332
 
2333
  #: admin/views/Shortcode.php:606
2334
  msgid "Sort images by"
2335
- msgstr ""
2336
 
2337
  #: admin/views/Shortcode.php:608
2338
- #, fuzzy
2339
- #| msgid "Order by: "
2340
  msgid "Order"
2341
  msgstr "Ordenar por"
2342
 
2343
  #: admin/views/Shortcode.php:621
2344
  msgid "Order images"
2345
- msgstr ""
2346
 
2347
  #: admin/views/Shortcode.php:622
2348
  msgid "Ascending"
2349
- msgstr ""
2350
 
2351
  #: admin/views/Shortcode.php:623
2352
  msgid "Descending"
2353
- msgstr ""
2354
 
2355
  #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684
2356
  #: admin/views/Shortcode.php:744 admin/views/Shortcode.php:788
2357
  #: admin/views/Shortcode.php:832
2358
  msgid "Images per load"
2359
- msgstr ""
2360
 
2361
  #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2362
  msgid "Enable Autoplay"
2363
- msgstr ""
2364
 
2365
  #: admin/views/Shortcode.php:653
2366
  msgid "Enable slideshow filmstrip view."
2367
- msgstr ""
2368
 
2369
  #: admin/views/Shortcode.php:658
2370
  msgid "Slideshow Filmstrip size"
2371
- msgstr ""
2372
 
2373
  #: admin/views/Shortcode.php:678
2374
  msgid "Load more"
2375
- msgstr ""
2376
 
2377
  #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752
2378
  #: admin/views/Shortcode.php:796
2379
- #, fuzzy
2380
- #| msgid "Album is empty."
2381
  msgid "Albums per page"
2382
- msgstr "El álbum está vacío"
2383
 
2384
  #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739
2385
  #: admin/views/Shortcode.php:756 admin/views/Shortcode.php:783
2386
  #: admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2387
- msgid ""
2388
- "If you want to display all albums you should leave it blank or insert 0."
2389
- msgstr ""
2390
 
2391
  #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779
2392
  #: admin/views/Shortcode.php:823
2393
  msgid "Albums per load"
2394
- msgstr ""
2395
 
2396
  #: admin/views/Shortcode.php:842
2397
  msgid "Show gallery title"
2398
- msgstr ""
2399
 
2400
  #: admin/views/Shortcode.php:849
2401
  msgid "Show album title"
2402
- msgstr ""
2403
 
2404
  #: admin/views/Shortcode.php:856
2405
  msgid "Enable album description"
2406
- msgstr ""
2407
 
2408
  #: admin/views/Shortcode.php:859
2409
- msgid ""
2410
- "If you disable description only the title of the album will be displayed."
2411
- msgstr ""
2412
 
2413
  #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2414
  #: admin/views/Shortcode.php:1100
2415
  msgid "Image title"
2416
- msgstr ""
2417
 
2418
  #: admin/views/Shortcode.php:879
2419
  msgid "Enable Shuffle"
2420
- msgstr ""
2421
 
2422
  #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2423
  msgid "Enable Image Title"
2424
- msgstr ""
2425
 
2426
  #: admin/views/Shortcode.php:893
2427
  msgid "Title Position"
2428
- msgstr ""
2429
 
2430
  #: admin/views/Shortcode.php:913
2431
  msgid "Image title position on slideshow."
2432
- msgstr ""
2433
 
2434
  #: admin/views/Shortcode.php:926
2435
  msgid "Enable Image Description"
2436
- msgstr ""
2437
 
2438
  #: admin/views/Shortcode.php:933
2439
  msgid "Description Position"
2440
- msgstr ""
2441
 
2442
  #: admin/views/Shortcode.php:952
2443
  msgid "Image description position on slideshow."
2444
- msgstr ""
2445
 
2446
  #: admin/views/Shortcode.php:958
2447
  msgid "Enable Slideshow Music"
2448
- msgstr ""
2449
 
2450
  #: admin/views/Shortcode.php:969
2451
  msgid "Enter absolute audio file url or add file from Options page."
2452
- msgstr ""
2453
 
2454
  #: admin/views/Shortcode.php:1002
2455
- #, fuzzy
2456
- #| msgid "Album is empty."
2457
  msgid "Album title"
2458
- msgstr "El álbum está vacío"
2459
 
2460
  #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
2461
- #, fuzzy
2462
- #| msgid "Album is empty."
2463
  msgid "Album view type"
2464
- msgstr "El álbum está vacío"
2465
 
2466
  #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2467
  msgid "The gallery images view type in the album."
2468
- msgstr ""
2469
 
2470
  #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2471
  msgid "Image thumbnail width: "
2472
- msgstr ""
2473
 
2474
  #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2475
  msgid "Max. number of image columns:"
2476
- msgstr ""
2477
 
2478
  #: admin/views/Shortcode.php:1128
2479
  msgid "Open in new window"
2480
- msgstr ""
2481
 
2482
  #: admin/views/Shortcode.php:1131
2483
  msgid "Open new window when redirecting."
2484
- msgstr ""
2485
 
2486
  #: admin/views/Shortcode.php:1151
2487
  msgid "Maximum values for lightbox width and height."
2488
- msgstr ""
2489
 
2490
  #: admin/views/Shortcode.php:1166
2491
  msgid "Lightbox slideshow effect."
2492
- msgstr ""
2493
 
2494
  #: admin/views/Shortcode.php:1196
2495
  msgid "Enable filmstrip in lightbox"
2496
- msgstr ""
2497
 
2498
  #: admin/views/Shortcode.php:1199
2499
  msgid "Enable filmstrip view for images."
2500
- msgstr ""
2501
 
2502
  #: admin/views/Shortcode.php:1224
2503
  msgid "Enable control buttons in lightbox."
2504
- msgstr ""
2505
 
2506
  #: admin/views/Shortcode.php:1233
2507
  msgid "Enable fullscreen view for images."
2508
- msgstr ""
2509
 
2510
  #: admin/views/Shortcode.php:1241
2511
  msgid "Enable title, description for images."
2512
- msgstr ""
2513
 
2514
  #: admin/views/Shortcode.php:1264
2515
  msgid "Enable rating for images."
2516
- msgstr ""
2517
 
2518
  #: admin/views/Shortcode.php:1272
2519
  msgid "Enable comments for images."
2520
- msgstr ""
2521
 
2522
  #: admin/views/Shortcode.php:1284
2523
  msgid "Enable Facebook share button for images."
2524
- msgstr ""
2525
 
2526
  #: admin/views/Shortcode.php:1292
2527
  msgid "Enable Twitter share button for images."
2528
- msgstr ""
2529
 
2530
  #: admin/views/Shortcode.php:1300
2531
  msgid "Enable Google+ share button for images."
2532
- msgstr ""
2533
 
2534
  #: admin/views/Shortcode.php:1308
2535
  msgid "Enable Pinterest share button for images."
2536
- msgstr ""
2537
 
2538
  #: admin/views/Shortcode.php:1316
2539
  msgid "Enable Tumblr share button for images."
2540
- msgstr ""
2541
 
2542
  #: admin/views/Shortcode.php:1327
2543
  msgid "Enable Ecommerce for images."
2544
- msgstr ""
2545
 
2546
  #: admin/views/Shortcode.php:1340
2547
  msgid "Toggle panel"
2548
- msgstr ""
2549
 
2550
  #: admin/views/Shortcode.php:1386
2551
  msgid "Advertisement type:"
2552
- msgstr ""
2553
 
2554
  #: admin/views/Shortcode.php:1397
2555
  msgid "Enter absolute url."
2556
- msgstr ""
2557
 
2558
  #: admin/views/Shortcode.php:1404
2559
  msgid "Enter absolute image file url or add file from Options page."
2560
- msgstr ""
2561
 
2562
  #: admin/views/Shortcode.php:1507
2563
  msgid "Insert into post"
2564
- msgstr ""
2565
 
2566
  #: admin/views/Shortcode.php:1532
2567
  msgid "New shortcode"
2568
- msgstr ""
2569
 
2570
  #: admin/views/Shortcode.php:1541 admin/views/Shortcode.php:1604
2571
  msgid "Generate"
2572
- msgstr ""
2573
 
2574
  #: admin/views/Shortcode.php:1546
2575
  msgid "Shortcode"
2576
- msgstr ""
2577
 
2578
  #: admin/views/Shortcode.php:1552
2579
  msgid "PHP function"
2580
- msgstr ""
2581
 
2582
  #: admin/views/Shortcode.php:1618
2583
  msgid "There is no shortcode with such ID!"
2584
- msgstr ""
2585
 
2586
  #: admin/views/Shortcode.php:2909
2587
  msgid "Image thumbnail dimensions:"
2588
- msgstr ""
2589
 
2590
  #: admin/views/Shortcode.php:2912
2591
  msgid "Image thumbnail height:"
2592
- msgstr ""
2593
 
2594
  #: admin/views/Shortcode.php:2913
2595
  msgid "Number of image rows:"
2596
- msgstr ""
2597
 
2598
  #: admin/views/Themes.php:18
2599
  msgid "You can't change theme parameters in free version."
2600
- msgstr ""
2601
 
2602
  #: admin/views/Themes.php:170
2603
  msgid "Theme Name"
2604
- msgstr ""
2605
 
2606
  #: admin/views/Themes.php:178
2607
  msgid "Reset to default theme"
2608
- msgstr ""
2609
 
2610
  #: admin/views/Themes.php:206 admin/views/Themes.php:1516
2611
  #: admin/views/Themes.php:1801 admin/views/Themes.php:2334
2612
  #: admin/views/Themes.php:3118 admin/views/Themes.php:4490
2613
  msgid "Margin:"
2614
- msgstr ""
2615
 
2616
  #: admin/views/Themes.php:212 admin/views/Themes.php:512
2617
  #: admin/views/Themes.php:761 admin/views/Themes.php:1523
2618
  #: admin/views/Themes.php:1794 admin/views/Themes.php:2341
2619
  #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2620
  msgid "Padding:"
2621
- msgstr ""
2622
 
2623
  #: admin/views/Themes.php:218 admin/views/Themes.php:518
2624
  #: admin/views/Themes.php:767 admin/views/Themes.php:1530
2625
  #: admin/views/Themes.php:1808 admin/views/Themes.php:2774
2626
  #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2627
  msgid "Border width:"
2628
- msgstr ""
2629
 
2630
  #: admin/views/Themes.php:224 admin/views/Themes.php:524
2631
  #: admin/views/Themes.php:773 admin/views/Themes.php:1536
2632
  #: admin/views/Themes.php:1814 admin/views/Themes.php:2780
2633
  #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
2634
- #, fuzzy
2635
- #| msgid "Order by: "
2636
  msgid "Border style:"
2637
- msgstr "Ordenar por"
2638
 
2639
  #: admin/views/Themes.php:238 admin/views/Themes.php:538
2640
  #: admin/views/Themes.php:787 admin/views/Themes.php:1550
2641
  #: admin/views/Themes.php:1828 admin/views/Themes.php:2794
2642
  #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2643
  msgid "Border color:"
2644
- msgstr ""
2645
 
2646
  #: admin/views/Themes.php:244 admin/views/Themes.php:544
2647
  #: admin/views/Themes.php:793 admin/views/Themes.php:1556
@@ -2649,7 +2528,7 @@ msgstr ""
2649
  #: admin/views/Themes.php:2800 admin/views/Themes.php:3209
2650
  #: admin/views/Themes.php:4473
2651
  msgid "Border radius:"
2652
- msgstr ""
2653
 
2654
  #: admin/views/Themes.php:247 admin/views/Themes.php:254
2655
  #: admin/views/Themes.php:410 admin/views/Themes.php:417
@@ -2698,66 +2577,66 @@ msgstr ""
2698
  #: admin/views/Themes.php:4500 admin/views/Themes.php:4529
2699
  #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2700
  msgid "Use CSS type values."
2701
- msgstr ""
2702
 
2703
  #: admin/views/Themes.php:251 admin/views/Themes.php:1841
2704
  msgid "Shadow:"
2705
- msgstr ""
2706
 
2707
  #: admin/views/Themes.php:258 admin/views/Themes.php:607
2708
  #: admin/views/Themes.php:854 admin/views/Themes.php:1848
2709
  #: admin/views/Themes.php:2807
2710
  msgid "Hover effect:"
2711
- msgstr ""
2712
 
2713
  #: admin/views/Themes.php:272 admin/views/Themes.php:621
2714
  #: admin/views/Themes.php:868 admin/views/Themes.php:1862
2715
  #: admin/views/Themes.php:2250 admin/views/Themes.php:2821
2716
  msgid "Hover effect value:"
2717
- msgstr ""
2718
 
2719
  #: admin/views/Themes.php:275 admin/views/Themes.php:624
2720
  #: admin/views/Themes.php:871 admin/views/Themes.php:1865
2721
  #: admin/views/Themes.php:2253 admin/views/Themes.php:2824
2722
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2723
- msgstr ""
2724
 
2725
  #: admin/views/Themes.php:279 admin/views/Themes.php:628
2726
  #: admin/views/Themes.php:875
2727
  msgid "Transition:"
2728
- msgstr ""
2729
 
2730
  #: admin/views/Themes.php:299 admin/views/Themes.php:1888
2731
  #: admin/views/Themes.php:2257
2732
  msgid "Thumbnail background color:"
2733
- msgstr ""
2734
 
2735
  #: admin/views/Themes.php:306 admin/views/Themes.php:1894
2736
  #: admin/views/Themes.php:2229 admin/views/Themes.php:2847
2737
  msgid "Thumbnail transparency:"
2738
- msgstr ""
2739
 
2740
  #: admin/views/Themes.php:313 admin/views/Themes.php:1446
2741
  #: admin/views/Themes.php:1901 admin/views/Themes.php:2854
2742
  msgid "Full background color:"
2743
- msgstr ""
2744
 
2745
  #: admin/views/Themes.php:319 admin/views/Themes.php:1452
2746
  #: admin/views/Themes.php:1907 admin/views/Themes.php:2860
2747
  msgid "Full background transparency:"
2748
- msgstr ""
2749
 
2750
  #: admin/views/Themes.php:326 admin/views/Themes.php:582
2751
  #: admin/views/Themes.php:830 admin/views/Themes.php:1502
2752
  #: admin/views/Themes.php:1914 admin/views/Themes.php:2867
2753
  #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2754
  msgid "Alignment:"
2755
- msgstr ""
2756
 
2757
  #: admin/views/Themes.php:350 admin/views/Themes.php:1593
2758
  #: admin/views/Themes.php:1938
2759
  msgid "Title position:"
2760
- msgstr ""
2761
 
2762
  #: admin/views/Themes.php:353 admin/views/Themes.php:1158
2763
  #: admin/views/Themes.php:1596 admin/views/Themes.php:1941
@@ -2765,7 +2644,7 @@ msgstr ""
2765
  #: admin/views/Themes.php:3806 admin/views/Themes.php:3874
2766
  #: admin/views/Themes.php:4016 admin/views/Themes.php:4546
2767
  msgid "Top"
2768
- msgstr ""
2769
 
2770
  #: admin/views/Themes.php:355 admin/views/Themes.php:1160
2771
  #: admin/views/Themes.php:1598 admin/views/Themes.php:1943
@@ -2773,1164 +2652,1148 @@ msgstr ""
2773
  #: admin/views/Themes.php:3808 admin/views/Themes.php:3876
2774
  #: admin/views/Themes.php:4018 admin/views/Themes.php:4548
2775
  msgid "Bottom"
2776
- msgstr ""
2777
 
2778
  #: admin/views/Themes.php:359 admin/views/Themes.php:884
2779
  #: admin/views/Themes.php:1947 admin/views/Themes.php:2543
2780
  #: admin/views/Themes.php:2891 admin/views/Themes.php:4138
2781
  #: admin/views/Themes.php:4817
2782
  msgid "Title font size:"
2783
- msgstr ""
2784
 
2785
  #: admin/views/Themes.php:365 admin/views/Themes.php:890
2786
  #: admin/views/Themes.php:1953 admin/views/Themes.php:2549
2787
  #: admin/views/Themes.php:2897 admin/views/Themes.php:4096
2788
  msgid "Title font color:"
2789
- msgstr ""
2790
 
2791
  #: admin/views/Themes.php:371 admin/views/Themes.php:896
2792
  #: admin/views/Themes.php:1342 admin/views/Themes.php:1959
2793
  #: admin/views/Themes.php:2555 admin/views/Themes.php:2903
2794
  #: admin/views/Themes.php:4102
2795
  msgid "Title font family:"
2796
- msgstr ""
2797
 
2798
  #: admin/views/Themes.php:393 admin/views/Themes.php:918
2799
  #: admin/views/Themes.php:1981 admin/views/Themes.php:2577
2800
  #: admin/views/Themes.php:2925 admin/views/Themes.php:4124
2801
  #: admin/views/Themes.php:4829
2802
  msgid "Title font weight:"
2803
- msgstr ""
2804
 
2805
  #: admin/views/Themes.php:407 admin/views/Themes.php:932
2806
  #: admin/views/Themes.php:1995 admin/views/Themes.php:2939
2807
  msgid "Title box shadow:"
2808
- msgstr ""
2809
 
2810
  #: admin/views/Themes.php:414 admin/views/Themes.php:939
2811
  #: admin/views/Themes.php:2002 admin/views/Themes.php:2504
2812
  #: admin/views/Themes.php:4783
2813
  msgid "Title margin:"
2814
- msgstr ""
2815
 
2816
  #: admin/views/Themes.php:421 admin/views/Themes.php:671
2817
  #: admin/views/Themes.php:946 admin/views/Themes.php:1703
2818
  #: admin/views/Themes.php:2064 admin/views/Themes.php:2684
2819
  #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2820
  msgid "Gallery title/description font size:"
2821
- msgstr ""
2822
 
2823
  #: admin/views/Themes.php:428 admin/views/Themes.php:677
2824
  #: admin/views/Themes.php:952 admin/views/Themes.php:1710
2825
  #: admin/views/Themes.php:2070 admin/views/Themes.php:2690
2826
  #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2827
  msgid "Gallery title/description font color:"
2828
- msgstr ""
2829
 
2830
  #: admin/views/Themes.php:434 admin/views/Themes.php:683
2831
  #: admin/views/Themes.php:958 admin/views/Themes.php:1716
2832
  #: admin/views/Themes.php:2076 admin/views/Themes.php:2696
2833
  #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2834
  msgid "Gallery title/description font family:"
2835
- msgstr ""
2836
 
2837
  #: admin/views/Themes.php:456 admin/views/Themes.php:705
2838
  #: admin/views/Themes.php:980 admin/views/Themes.php:1738
2839
  #: admin/views/Themes.php:2098 admin/views/Themes.php:2718
2840
  #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2841
  msgid "Gallery title/description font weight:"
2842
- msgstr ""
2843
 
2844
  #: admin/views/Themes.php:470 admin/views/Themes.php:719
2845
  #: admin/views/Themes.php:994 admin/views/Themes.php:1752
2846
  #: admin/views/Themes.php:2112 admin/views/Themes.php:2732
2847
  #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2848
  msgid "Gallery title/description box shadow:"
2849
- msgstr ""
2850
 
2851
  #: admin/views/Themes.php:477 admin/views/Themes.php:726
2852
  #: admin/views/Themes.php:1001 admin/views/Themes.php:1759
2853
  #: admin/views/Themes.php:2119 admin/views/Themes.php:2739
2854
  #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2855
  msgid "Gallery title/description margin:"
2856
- msgstr ""
2857
 
2858
  #: admin/views/Themes.php:484 admin/views/Themes.php:733
2859
  #: admin/views/Themes.php:1008 admin/views/Themes.php:1766
2860
  #: admin/views/Themes.php:2126 admin/views/Themes.php:2746
2861
  #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2862
  msgid "Gallery title/description alignment:"
2863
- msgstr ""
2864
 
2865
  #: admin/views/Themes.php:562 admin/views/Themes.php:810
2866
  msgid "Transparency:"
2867
- msgstr ""
2868
 
2869
  #: admin/views/Themes.php:569 admin/views/Themes.php:817
2870
  #: admin/views/Themes.php:1036 admin/views/Themes.php:1563
2871
  #: admin/views/Themes.php:2347 admin/views/Themes.php:3091
2872
  #: admin/views/Themes.php:4599
2873
  msgid "Background color:"
2874
- msgstr ""
2875
 
2876
  #: admin/views/Themes.php:575 admin/views/Themes.php:823
2877
  #: admin/views/Themes.php:1569 admin/views/Themes.php:2353
2878
  #: admin/views/Themes.php:3097
2879
  msgid "Background transparency:"
2880
- msgstr ""
2881
 
2882
  #: admin/views/Themes.php:637 admin/views/Themes.php:1391
2883
  #: admin/views/Themes.php:2624 admin/views/Themes.php:4187
2884
  msgid "Description font size:"
2885
- msgstr ""
2886
 
2887
  #: admin/views/Themes.php:643 admin/views/Themes.php:2630
2888
  #: admin/views/Themes.php:4145
2889
  msgid "Description font color:"
2890
- msgstr ""
2891
 
2892
  #: admin/views/Themes.php:649 admin/views/Themes.php:1403
2893
  #: admin/views/Themes.php:2636 admin/views/Themes.php:4151
2894
  msgid "Description font family:"
2895
- msgstr ""
2896
 
2897
  #: admin/views/Themes.php:1042 admin/views/Themes.php:3664
2898
  #: admin/views/Themes.php:4612
2899
  msgid "Right, left buttons size:"
2900
- msgstr ""
2901
 
2902
  #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2903
  msgid "Play, pause buttons size:"
2904
- msgstr ""
2905
 
2906
  #: admin/views/Themes.php:1054 admin/views/Themes.php:3239
2907
  #: admin/views/Themes.php:4624
2908
  msgid "Buttons color:"
2909
- msgstr ""
2910
 
2911
  #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2912
  msgid "Buttons transparency:"
2913
- msgstr ""
2914
 
2915
  #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2916
  msgid "Buttons hover color:"
2917
- msgstr ""
2918
 
2919
  #: admin/views/Themes.php:1073 admin/views/Themes.php:3658
2920
  #: admin/views/Themes.php:4643
2921
  msgid "Right, left buttons width:"
2922
- msgstr ""
2923
 
2924
  #: admin/views/Themes.php:1079 admin/views/Themes.php:3652
2925
  #: admin/views/Themes.php:4649
2926
  msgid "Right, left buttons height:"
2927
- msgstr ""
2928
 
2929
  #: admin/views/Themes.php:1085 admin/views/Themes.php:3633
2930
  #: admin/views/Themes.php:4655
2931
  msgid "Right, left buttons background color:"
2932
- msgstr ""
2933
 
2934
  #: admin/views/Themes.php:1091 admin/views/Themes.php:3689
2935
  #: admin/views/Themes.php:4661
2936
  msgid "Right, left buttons border width:"
2937
- msgstr ""
2938
 
2939
  #: admin/views/Themes.php:1097 admin/views/Themes.php:3695
2940
  #: admin/views/Themes.php:4667
2941
  msgid "Right, left buttons border style:"
2942
- msgstr ""
2943
 
2944
  #: admin/views/Themes.php:1111 admin/views/Themes.php:3709
2945
  #: admin/views/Themes.php:4681
2946
  msgid "Right, left buttons border color:"
2947
- msgstr ""
2948
 
2949
  #: admin/views/Themes.php:1117 admin/views/Themes.php:3682
2950
  #: admin/views/Themes.php:4687
2951
  msgid "Right, left buttons border radius:"
2952
- msgstr ""
2953
 
2954
  #: admin/views/Themes.php:1124 admin/views/Themes.php:3619
2955
  #: admin/views/Themes.php:4694
2956
  msgid "Right, left buttons style:"
2957
- msgstr ""
2958
 
2959
  #: admin/views/Themes.php:1138 admin/views/Themes.php:3645
2960
  msgid "Right, left buttons box shadow:"
2961
- msgstr ""
2962
 
2963
  #: admin/views/Themes.php:1155
2964
  msgid "Filmstrip/Slider bullet position:"
2965
- msgstr ""
2966
 
2967
  #: admin/views/Themes.php:1166
2968
  msgid "Filmstrip margin:"
2969
- msgstr ""
2970
 
2971
  #: admin/views/Themes.php:1173
2972
  msgid "Filmstrip border width:"
2973
- msgstr ""
2974
 
2975
  #: admin/views/Themes.php:1179
2976
  msgid "Filmstrip border style:"
2977
- msgstr ""
2978
 
2979
  #: admin/views/Themes.php:1194
2980
  msgid "Filmstrip border color:"
2981
- msgstr ""
2982
 
2983
  #: admin/views/Themes.php:1200
2984
  msgid "Filmstrip border radius:"
2985
- msgstr ""
2986
 
2987
  #: admin/views/Themes.php:1207
2988
  msgid "Filmstrip active border width:"
2989
- msgstr ""
2990
 
2991
  #: admin/views/Themes.php:1213
2992
  msgid "Filmstrip active border color:"
2993
- msgstr ""
2994
 
2995
  #: admin/views/Themes.php:1219
2996
  msgid "Filmstrip deactive transparency: "
2997
- msgstr ""
2998
 
2999
  #: admin/views/Themes.php:1226
3000
  msgid "Filmstrip right, left buttons background color: "
3001
- msgstr ""
3002
 
3003
  #: admin/views/Themes.php:1232 admin/views/Themes.php:3791
3004
  msgid "Filmstrip right, left buttons color:"
3005
- msgstr ""
3006
 
3007
  #: admin/views/Themes.php:1238 admin/views/Themes.php:3785
3008
  msgid "Filmstrip right, left buttons size:"
3009
- msgstr ""
3010
 
3011
  #: admin/views/Themes.php:1244
3012
  msgid "Slider bullet width: "
3013
- msgstr ""
3014
 
3015
  #: admin/views/Themes.php:1250
3016
  msgid "Slider bullet height:"
3017
- msgstr ""
3018
 
3019
  #: admin/views/Themes.php:1256
3020
  msgid "Slider bullet border radius: "
3021
- msgstr ""
3022
 
3023
  #: admin/views/Themes.php:1263
3024
  msgid "Slider bullet background color:"
3025
- msgstr ""
3026
 
3027
  #: admin/views/Themes.php:1269
3028
  msgid "Slider bullet margin:"
3029
- msgstr ""
3030
 
3031
  #: admin/views/Themes.php:1275
3032
  msgid "Slider bullet active background color: "
3033
- msgstr ""
3034
 
3035
  #: admin/views/Themes.php:1281
3036
  msgid "Slider bullet active border width:"
3037
- msgstr ""
3038
 
3039
  #: admin/views/Themes.php:1287
3040
  msgid "Slider bullet active border color: "
3041
- msgstr ""
3042
 
3043
  #: admin/views/Themes.php:1303
3044
  msgid "Title background color: "
3045
- msgstr ""
3046
 
3047
  #: admin/views/Themes.php:1309
3048
  msgid "Title transparency: "
3049
- msgstr ""
3050
 
3051
  #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
3052
  msgid "Title border radius:"
3053
- msgstr ""
3054
 
3055
  #: admin/views/Themes.php:1323
3056
  msgid "Title padding: "
3057
- msgstr ""
3058
 
3059
  #: admin/views/Themes.php:1330
3060
  msgid "Title font size: "
3061
- msgstr ""
3062
 
3063
  #: admin/views/Themes.php:1336
3064
  msgid "Title color: "
3065
- msgstr ""
3066
 
3067
  #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
3068
  msgid "Description background color:"
3069
- msgstr ""
3070
 
3071
  #: admin/views/Themes.php:1370
3072
  msgid "Description transparency:"
3073
- msgstr ""
3074
 
3075
  #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
3076
  msgid "Description border radius:"
3077
- msgstr ""
3078
 
3079
  #: admin/views/Themes.php:1384 admin/views/Themes.php:1657
3080
  #: admin/views/Themes.php:2591
3081
  msgid "Description padding:"
3082
- msgstr ""
3083
 
3084
  #: admin/views/Themes.php:1397
3085
  msgid "Description color:"
3086
- msgstr ""
3087
 
3088
  #: admin/views/Themes.php:1439
3089
  msgid "Full padding:"
3090
- msgstr ""
3091
 
3092
  #: admin/views/Themes.php:1459
3093
  msgid "Full border radius:"
3094
- msgstr ""
3095
 
3096
  #: admin/views/Themes.php:1466
3097
  msgid "Full border width:"
3098
- msgstr ""
3099
 
3100
  #: admin/views/Themes.php:1472
3101
  msgid "Full border style:"
3102
- msgstr ""
3103
 
3104
  #: admin/views/Themes.php:1486
3105
  msgid "Full border color:"
3106
- msgstr ""
3107
 
3108
  #: admin/views/Themes.php:1576 admin/views/Themes.php:3132
3109
  #: admin/views/Themes.php:4526
3110
  msgid "Box shadow:"
3111
- msgstr ""
3112
 
3113
  #: admin/views/Themes.php:1602
3114
  msgid "Title alignment:"
3115
- msgstr ""
3116
 
3117
  #: admin/views/Themes.php:1616 admin/views/Themes.php:2009
3118
  #: admin/views/Themes.php:2946 admin/views/Themes.php:3171
3119
  #: admin/views/Themes.php:4399
3120
  msgid "Font size:"
3121
- msgstr ""
3122
 
3123
  #: admin/views/Themes.php:1622 admin/views/Themes.php:2015
3124
  #: admin/views/Themes.php:2952 admin/views/Themes.php:3177
3125
  #: admin/views/Themes.php:4405
3126
  msgid "Font color:"
3127
- msgstr ""
3128
 
3129
  #: admin/views/Themes.php:1628 admin/views/Themes.php:2021
3130
  #: admin/views/Themes.php:2958 admin/views/Themes.php:3149
3131
  #: admin/views/Themes.php:4411
3132
  msgid "Font family:"
3133
- msgstr ""
3134
 
3135
  #: admin/views/Themes.php:1650
3136
  msgid "Description margin:"
3137
- msgstr ""
3138
 
3139
  #: admin/views/Themes.php:1664 admin/views/Themes.php:2598
3140
  msgid "Description border width:"
3141
- msgstr ""
3142
 
3143
  #: admin/views/Themes.php:1670 admin/views/Themes.php:2604
3144
  msgid "Description border style:"
3145
- msgstr ""
3146
 
3147
  #: admin/views/Themes.php:1684 admin/views/Themes.php:2618
3148
  msgid "Description border color:"
3149
- msgstr ""
3150
 
3151
  #: admin/views/Themes.php:1869 admin/views/Themes.php:2206
3152
  #: admin/views/Themes.php:2828
3153
  msgid "Thumbnail transition:"
3154
- msgstr ""
3155
 
3156
  #: admin/views/Themes.php:2043 admin/views/Themes.php:2980
3157
  #: admin/views/Themes.php:4433
3158
  msgid "Font weight:"
3159
- msgstr ""
3160
 
3161
  #: admin/views/Themes.php:2057 admin/views/Themes.php:2393
3162
  #: admin/views/Themes.php:2994
3163
  msgid "Back padding:"
3164
- msgstr ""
3165
 
3166
  #: admin/views/Themes.php:2154
3167
  msgid "Thumbnail margin:"
3168
- msgstr ""
3169
 
3170
  #: admin/views/Themes.php:2160
3171
  msgid "Thumbnail padding:"
3172
- msgstr ""
3173
 
3174
  #: admin/views/Themes.php:2166
3175
  msgid "Thumbnail border width:"
3176
- msgstr ""
3177
 
3178
  #: admin/views/Themes.php:2172
3179
  msgid "Thumbnail border style:"
3180
- msgstr ""
3181
 
3182
  #: admin/views/Themes.php:2186
3183
  msgid "Thumbnail border color:"
3184
- msgstr ""
3185
 
3186
  #: admin/views/Themes.php:2192
3187
  msgid "Thumbnail border radius:"
3188
- msgstr ""
3189
 
3190
  #: admin/views/Themes.php:2199
3191
  msgid "Thumbnail box shadow:"
3192
- msgstr ""
3193
 
3194
  #: admin/views/Themes.php:2215
3195
  msgid "Thumbnail alignment:"
3196
- msgstr ""
3197
 
3198
  #: admin/views/Themes.php:2236
3199
  msgid "Thumbnail hover effect:"
3200
- msgstr ""
3201
 
3202
  #: admin/views/Themes.php:2263
3203
  msgid "Thumbnails background color:"
3204
- msgstr ""
3205
 
3206
  #: admin/views/Themes.php:2269
3207
  msgid "Thumbnail background transparency:"
3208
- msgstr ""
3209
 
3210
  #: admin/views/Themes.php:2287
3211
  msgid "Thumbnail div padding:"
3212
- msgstr ""
3213
 
3214
  #: admin/views/Themes.php:2294
3215
  msgid "Thumbnail div background color:"
3216
- msgstr ""
3217
 
3218
  #: admin/views/Themes.php:2300
3219
  msgid "Thumbnail div border width:"
3220
- msgstr ""
3221
 
3222
  #: admin/views/Themes.php:2307
3223
  msgid "humbnail div border style:"
3224
- msgstr ""
3225
 
3226
  #: admin/views/Themes.php:2321
3227
  msgid "Thumbnail div border color:"
3228
- msgstr ""
3229
 
3230
  #: admin/views/Themes.php:2327
3231
  msgid "Thumbnail div border radius:"
3232
- msgstr ""
3233
 
3234
  #: admin/views/Themes.php:2367
3235
  msgid "Separator width:"
3236
- msgstr ""
3237
 
3238
  #: admin/views/Themes.php:2373
3239
  msgid "Separator style:"
3240
- msgstr ""
3241
 
3242
  #: admin/views/Themes.php:2387
3243
  msgid "Separator color:"
3244
- msgstr ""
3245
 
3246
  #: admin/views/Themes.php:2400
3247
  msgid "Back font size:"
3248
- msgstr ""
3249
 
3250
  #: admin/views/Themes.php:2406
3251
  msgid "Back font color:"
3252
- msgstr ""
3253
 
3254
  #: admin/views/Themes.php:2412
3255
  msgid "Back font family:"
3256
- msgstr ""
3257
 
3258
  #: admin/views/Themes.php:2434
3259
  msgid "Back font weight:"
3260
- msgstr ""
3261
 
3262
  #: admin/views/Themes.php:2458
3263
  msgid "Text div padding:"
3264
- msgstr ""
3265
 
3266
  #: admin/views/Themes.php:2465
3267
  msgid "Text div border width:"
3268
- msgstr ""
3269
 
3270
  #: admin/views/Themes.php:2471
3271
  msgid "Text border style:"
3272
- msgstr ""
3273
 
3274
  #: admin/views/Themes.php:2485
3275
  msgid "Text border color:"
3276
- msgstr ""
3277
 
3278
  #: admin/views/Themes.php:2491
3279
  msgid "Text div border radius:"
3280
- msgstr ""
3281
 
3282
  #: admin/views/Themes.php:2498
3283
  msgid "Text background color:"
3284
- msgstr ""
3285
 
3286
  #: admin/views/Themes.php:2510 admin/views/Themes.php:4789
3287
  msgid "Title padding:"
3288
- msgstr ""
3289
 
3290
  #: admin/views/Themes.php:2517
3291
  msgid "Title border width:"
3292
- msgstr ""
3293
 
3294
  #: admin/views/Themes.php:2523
3295
  msgid "Title border style:"
3296
- msgstr ""
3297
 
3298
  #: admin/views/Themes.php:2537
3299
  msgid "Title border color:"
3300
- msgstr ""
3301
 
3302
  #: admin/views/Themes.php:2658 admin/views/Themes.php:4173
3303
  msgid "Description font weight:"
3304
- msgstr ""
3305
 
3306
  #: admin/views/Themes.php:2672
3307
  msgid "Description more size:"
3308
- msgstr ""
3309
 
3310
  #: admin/views/Themes.php:2678
3311
  msgid "Description more color:"
3312
- msgstr ""
3313
 
3314
  #: admin/views/Themes.php:3226
3315
  msgid "Buttons and title margin:"
3316
- msgstr ""
3317
 
3318
  #: admin/views/Themes.php:3233
3319
  msgid "Buttons size:"
3320
- msgstr ""
3321
 
3322
  #: admin/views/Themes.php:3245
3323
  msgid "Buttons and title border width:"
3324
- msgstr ""
3325
 
3326
  #: admin/views/Themes.php:3251
3327
  msgid "Buttons and title border style:"
3328
- msgstr ""
3329
 
3330
  #: admin/views/Themes.php:3265
3331
  msgid "Buttons and title border color:"
3332
- msgstr ""
3333
 
3334
  #: admin/views/Themes.php:3271
3335
  msgid "Buttons and title border radius:"
3336
- msgstr ""
3337
 
3338
  #: admin/views/Themes.php:3278
3339
  msgid "Buttons and title background color:"
3340
- msgstr ""
3341
 
3342
  #: admin/views/Themes.php:3284
3343
  msgid "Buttons and title background transparency:"
3344
- msgstr ""
3345
 
3346
  #: admin/views/Themes.php:3291
3347
  msgid "Buttons or title alignment:"
3348
- msgstr ""
3349
 
3350
  #: admin/views/Themes.php:3396
3351
  msgid "Overlay background color:"
3352
- msgstr ""
3353
 
3354
  #: admin/views/Themes.php:3402
3355
  msgid "Overlay background transparency:"
3356
- msgstr ""
3357
 
3358
  #: admin/views/Themes.php:3409
3359
  msgid "Lightbox background color:"
3360
- msgstr ""
3361
 
3362
  #: admin/views/Themes.php:3415
3363
  msgid "Lightbox background transparency:"
3364
- msgstr ""
3365
 
3366
  #: admin/views/Themes.php:3422
3367
  msgid "Control buttons height:"
3368
- msgstr ""
3369
 
3370
  #: admin/views/Themes.php:3428
3371
  msgid "Control buttons margin (top):"
3372
- msgstr ""
3373
 
3374
  #: admin/views/Themes.php:3434
3375
  msgid "Control buttons margin (left):"
3376
- msgstr ""
3377
 
3378
  #: admin/views/Themes.php:3440
3379
  msgid "Control buttons position:"
3380
- msgstr ""
3381
 
3382
  #: admin/views/Themes.php:3449
3383
  msgid "Control buttons background color:"
3384
- msgstr ""
3385
 
3386
  #: admin/views/Themes.php:3455
3387
  msgid "Control buttons container border radius:"
3388
- msgstr ""
3389
 
3390
  #: admin/views/Themes.php:3462
3391
  msgid "Control buttons container background transparency:"
3392
- msgstr ""
3393
 
3394
  #: admin/views/Themes.php:3469
3395
  msgid "Control buttons alignment:"
3396
- msgstr ""
3397
 
3398
  #: admin/views/Themes.php:3483
3399
  msgid "Control buttons color:"
3400
- msgstr ""
3401
 
3402
  #: admin/views/Themes.php:3489
3403
  msgid "Control buttons transparency:"
3404
- msgstr ""
3405
 
3406
  #: admin/views/Themes.php:3496
3407
  msgid "Toggle button height:"
3408
- msgstr ""
3409
 
3410
  #: admin/views/Themes.php:3502
3411
  msgid "Toggle button width:"
3412
- msgstr ""
3413
 
3414
  #: admin/views/Themes.php:3508
3415
  msgid "Close button border radius:"
3416
- msgstr ""
3417
 
3418
  #: admin/views/Themes.php:3516
3419
  msgid "Close button border width:"
3420
- msgstr ""
3421
 
3422
  #: admin/views/Themes.php:3522
3423
  msgid "Close button border style:"
3424
- msgstr ""
3425
 
3426
  #: admin/views/Themes.php:3536
3427
  msgid "Close button border color:"
3428
- msgstr ""
3429
 
3430
  #: admin/views/Themes.php:3542
3431
  msgid "Close button box shadow:"
3432
- msgstr ""
3433
 
3434
  #: admin/views/Themes.php:3549
3435
  msgid "Close button background color:"
3436
- msgstr ""
3437
 
3438
  #: admin/views/Themes.php:3555
3439
  msgid "Close button transparency:"
3440
- msgstr ""
3441
 
3442
  #: admin/views/Themes.php:3561
3443
  msgid "Close button width:"
3444
- msgstr ""
3445
 
3446
  #: admin/views/Themes.php:3567
3447
  msgid "Close button height:"
3448
- msgstr ""
3449
 
3450
  #: admin/views/Themes.php:3573
3451
  msgid "Close button top:"
3452
- msgstr ""
3453
 
3454
  #: admin/views/Themes.php:3579
3455
  msgid "Close button right:"
3456
- msgstr ""
3457
 
3458
  #: admin/views/Themes.php:3585
3459
  msgid "Close button size:"
3460
- msgstr ""
3461
 
3462
  #: admin/views/Themes.php:3591
3463
  msgid "Close button color:"
3464
- msgstr ""
3465
 
3466
  #: admin/views/Themes.php:3597
3467
  msgid "Fullscreen close button color:"
3468
- msgstr ""
3469
 
3470
  #: admin/views/Themes.php:3603
3471
- #, fuzzy
3472
- #| msgid "Share on Facebook"
3473
  msgid "Share buttons color:"
3474
- msgstr "Compartir en Facebook"
3475
 
3476
  #: admin/views/Themes.php:3639
3477
  msgid "Right, left buttons transparency:"
3478
- msgstr ""
3479
 
3480
  #: admin/views/Themes.php:3670
3481
  msgid "Right, left, close buttons hover color:"
3482
- msgstr ""
3483
 
3484
  #: admin/views/Themes.php:3676
3485
  msgid "Right, left buttons color:"
3486
- msgstr ""
3487
 
3488
  #: admin/views/Themes.php:3715
3489
  msgid "Filmstrip position:"
3490
- msgstr ""
3491
 
3492
  #: admin/views/Themes.php:3726
3493
  msgid "Filmstrip thumbnail margin:"
3494
- msgstr ""
3495
 
3496
  #: admin/views/Themes.php:3733
3497
  msgid "Filmstrip thumbnail border width:"
3498
- msgstr ""
3499
 
3500
  #: admin/views/Themes.php:3739
3501
  msgid "Filmstrip thumbnail border style:"
3502
- msgstr ""
3503
 
3504
  #: admin/views/Themes.php:3753
3505
  msgid "Filmstrip thumbnail border color:"
3506
- msgstr ""
3507
 
3508
  #: admin/views/Themes.php:3759
3509
  msgid "Filmstrip thumbnail border radius:"
3510
- msgstr ""
3511
 
3512
  #: admin/views/Themes.php:3766
3513
  msgid "Filmstrip thumbnail active border width:"
3514
- msgstr ""
3515
 
3516
  #: admin/views/Themes.php:3772
3517
  msgid "Filmstrip thumbnail active border color:"
3518
- msgstr ""
3519
 
3520
  #: admin/views/Themes.php:3778
3521
  msgid "Filmstrip thumbnail deactive transparency:"
3522
- msgstr ""
3523
 
3524
  #: admin/views/Themes.php:3797
3525
  msgid "Filmstrip right, left button background color:"
3526
- msgstr ""
3527
 
3528
  #: admin/views/Themes.php:3803
3529
  msgid "Rating position:"
3530
- msgstr ""
3531
 
3532
  #: admin/views/Themes.php:3812
3533
  msgid "Rating alignment:"
3534
- msgstr ""
3535
 
3536
  #: admin/views/Themes.php:3826
3537
  msgid "Rating icon:"
3538
- msgstr ""
3539
 
3540
  #: admin/views/Themes.php:3840
3541
  msgid "Rating color:"
3542
- msgstr ""
3543
 
3544
  #: admin/views/Themes.php:3846
3545
  msgid "Rating hover color:"
3546
- msgstr ""
3547
 
3548
  #: admin/views/Themes.php:3852
3549
  msgid "Rating size:"
3550
- msgstr ""
3551
 
3552
  #: admin/views/Themes.php:3858
3553
  msgid "Rating icon count:"
3554
- msgstr ""
3555
 
3556
  #: admin/views/Themes.php:3864
3557
  msgid "Rating padding:"
3558
- msgstr ""
3559
 
3560
  #: admin/views/Themes.php:3871
3561
  msgid "Hit counter position:"
3562
- msgstr ""
3563
 
3564
  #: admin/views/Themes.php:3880
3565
  msgid "Hit counter alignment:"
3566
- msgstr ""
3567
 
3568
  #: admin/views/Themes.php:3894
3569
  msgid "Hit counter background color:"
3570
- msgstr ""
3571
 
3572
  #: admin/views/Themes.php:3900
3573
  msgid "Hit counter background transparency:"
3574
- msgstr ""
3575
 
3576
  #: admin/views/Themes.php:3907
3577
  msgid "Hit counter border width:"
3578
- msgstr ""
3579
 
3580
  #: admin/views/Themes.php:3913
3581
  msgid "Hit counter border style:"
3582
- msgstr ""
3583
 
3584
  #: admin/views/Themes.php:3927
3585
  msgid "Hit counter border color:"
3586
- msgstr ""
3587
 
3588
  #: admin/views/Themes.php:3933
3589
  msgid "Hit counter border radius:"
3590
- msgstr ""
3591
 
3592
  #: admin/views/Themes.php:3940
3593
  msgid "Hit counter padding:"
3594
- msgstr ""
3595
 
3596
  #: admin/views/Themes.php:3947
3597
  msgid "Hit counter margin:"
3598
- msgstr ""
3599
 
3600
  #: admin/views/Themes.php:3954
3601
  msgid "Hit counter font color:"
3602
- msgstr ""
3603
 
3604
  #: admin/views/Themes.php:3960
3605
  msgid "Hit counter font family:"
3606
- msgstr ""
3607
 
3608
  #: admin/views/Themes.php:3982
3609
  msgid "Hit counter font weight:"
3610
- msgstr ""
3611
 
3612
  #: admin/views/Themes.php:3996
3613
  msgid "Hit counter font size:"
3614
- msgstr ""
3615
 
3616
  #: admin/views/Themes.php:4013
3617
  msgid "Info position:"
3618
- msgstr ""
3619
 
3620
  #: admin/views/Themes.php:4022
3621
  msgid "Info alignment:"
3622
- msgstr ""
3623
 
3624
  #: admin/views/Themes.php:4036
3625
  msgid "Info background color:"
3626
- msgstr ""
3627
 
3628
  #: admin/views/Themes.php:4042
3629
  msgid "Info background transparency:"
3630
- msgstr ""
3631
 
3632
  #: admin/views/Themes.php:4049
3633
  msgid "Info border width:"
3634
- msgstr ""
3635
 
3636
  #: admin/views/Themes.php:4055
3637
  msgid "Info border style:"
3638
- msgstr ""
3639
 
3640
  #: admin/views/Themes.php:4069
3641
  msgid "Info border color:"
3642
- msgstr ""
3643
 
3644
  #: admin/views/Themes.php:4075
3645
  msgid "Info border radius:"
3646
- msgstr ""
3647
 
3648
  #: admin/views/Themes.php:4082
3649
  msgid "Info padding:"
3650
- msgstr ""
3651
 
3652
  #: admin/views/Themes.php:4089
3653
  msgid "Info margin:"
3654
- msgstr ""
3655
 
3656
  #: admin/views/Themes.php:4194
3657
- #, fuzzy
3658
- #| msgid "Comment"
3659
  msgid "Comments Width:"
3660
- msgstr "Comentario"
3661
 
3662
  #: admin/views/Themes.php:4200
3663
  msgid "Comments position:"
3664
- msgstr ""
3665
 
3666
  #: admin/views/Themes.php:4209
3667
  msgid "Comments background color:"
3668
- msgstr ""
3669
 
3670
  #: admin/views/Themes.php:4215
3671
  msgid "Comments font size:"
3672
- msgstr ""
3673
 
3674
  #: admin/views/Themes.php:4221
3675
  msgid "Comments font color:"
3676
- msgstr ""
3677
 
3678
  #: admin/views/Themes.php:4227
3679
  msgid "Comments font family:"
3680
- msgstr ""
3681
 
3682
  #: admin/views/Themes.php:4249
3683
  msgid "Comments author font size:"
3684
- msgstr ""
3685
 
3686
  #: admin/views/Themes.php:4256
3687
  msgid "Comments date font size:"
3688
- msgstr ""
3689
 
3690
  #: admin/views/Themes.php:4262
3691
  msgid "Comments body font size:"
3692
- msgstr ""
3693
 
3694
  #: admin/views/Themes.php:4268
3695
  msgid "Comment input border width:"
3696
- msgstr ""
3697
 
3698
  #: admin/views/Themes.php:4274
3699
  msgid "omment input border style:"
3700
- msgstr ""
3701
 
3702
  #: admin/views/Themes.php:4288
3703
  msgid "Comment input border color:"
3704
- msgstr ""
3705
 
3706
  #: admin/views/Themes.php:4294
3707
  msgid "Comment input border radius:"
3708
- msgstr ""
3709
 
3710
  #: admin/views/Themes.php:4300
3711
  msgid "Comment input padding:"
3712
- msgstr ""
3713
 
3714
  #: admin/views/Themes.php:4307
3715
  msgid "Comment input background color:"
3716
- msgstr ""
3717
 
3718
  #: admin/views/Themes.php:4313
3719
  msgid "Comment button background color:"
3720
- msgstr ""
3721
 
3722
  #: admin/views/Themes.php:4319
3723
  msgid "Comment button padding:"
3724
- msgstr ""
3725
 
3726
  #: admin/views/Themes.php:4326
3727
  msgid "Comment button border width:"
3728
- msgstr ""
3729
 
3730
  #: admin/views/Themes.php:4332
3731
  msgid "Comment button border style:"
3732
- msgstr ""
3733
 
3734
  #: admin/views/Themes.php:4346
3735
  msgid "Comment button border color:"
3736
- msgstr ""
3737
 
3738
  #: admin/views/Themes.php:4352
3739
  msgid "omment button border radius:"
3740
- msgstr ""
3741
 
3742
  #: admin/views/Themes.php:4359
3743
  msgid "Comment separator width:"
3744
- msgstr ""
3745
 
3746
  #: admin/views/Themes.php:4365
3747
  msgid "Comment separator style:"
3748
- msgstr ""
3749
 
3750
  #: admin/views/Themes.php:4379
3751
  msgid "Comment separator color:"
3752
- msgstr ""
3753
 
3754
  #: admin/views/Themes.php:4504
3755
  msgid "Button background color:"
3756
- msgstr ""
3757
 
3758
  #: admin/views/Themes.php:4510
3759
  msgid "Button background transparency:"
3760
- msgstr ""
3761
 
3762
  #: admin/views/Themes.php:4517
3763
  msgid "Button transition:"
3764
- msgstr ""
3765
 
3766
  #: admin/views/Themes.php:4543
3767
  msgid "Position:"
3768
- msgstr ""
3769
 
3770
  #: admin/views/Themes.php:4566
3771
  msgid "Numbering:"
3772
- msgstr ""
3773
 
3774
  #: admin/views/Themes.php:4575
3775
  msgid "Button text:"
3776
- msgstr ""
3777
 
3778
  #: admin/views/Themes.php:4580
3779
  msgid "Arrow"
3780
- msgstr ""
3781
 
3782
  #: admin/views/Themes.php:4581
3783
  msgid "Next, previous buttons values."
3784
- msgstr ""
3785
 
3786
  #: admin/views/Themes.php:4605
3787
  msgid "Container opacity:"
3788
- msgstr ""
3789
 
3790
  #: admin/views/Themes.php:4718
3791
  msgid "Carousel margin:"
3792
- msgstr ""
3793
 
3794
  #: admin/views/Themes.php:4724
3795
  msgid "Image border width:"
3796
- msgstr ""
3797
 
3798
  #: admin/views/Themes.php:4731
3799
  msgid "Image border style:"
3800
- msgstr ""
3801
 
3802
  #: admin/views/Themes.php:4746
3803
  msgid "Image border color:"
3804
- msgstr ""
3805
 
3806
  #: admin/views/Themes.php:4762
3807
  msgid "Title background color:"
3808
- msgstr ""
3809
 
3810
  #: admin/views/Themes.php:4769
3811
  msgid "Title opacity:"
3812
- msgstr ""
3813
 
3814
  #: admin/views/Themes.php:4796
3815
  msgid "Title Font family:"
3816
- msgstr ""
3817
 
3818
  #: admin/views/Themes.php:4823
3819
  msgid "Title color:"
3820
- msgstr ""
3821
 
3822
  #: admin/views/Uninstall.php:41
3823
  #, php-format
3824
- msgid ""
3825
- "%s to Finish the Uninstallation and %s will be Deactivated Automatically."
3826
- msgstr ""
3827
 
3828
  #: admin/views/Uninstall.php:41
3829
  msgid "Click Here"
3830
- msgstr ""
3831
 
3832
  #: admin/views/Uninstall.php:50
3833
  msgid "support team"
3834
- msgstr ""
3835
 
3836
  #: admin/views/Uninstall.php:51 wd/templates/display_overview_support.php:41
3837
  msgid "Contact us"
3838
- msgstr ""
3839
 
3840
  #: admin/views/Uninstall.php:52
3841
  #, php-format
3842
  msgid ""
3843
- "Before uninstalling the plugin, please Contact our %s. We'll do our best to "
3844
- "help you out with your issue. We value each and every user and value what's "
3845
- "right for our users in everything we do.<br />\n"
3846
- " However, if anyway you have made a decision to uninstall the plugin, "
3847
- "please take a minute to %s and tell what you didn't like for our plugins "
3848
- "further improvement and development. Thank you !!!"
3849
- msgstr ""
3850
 
3851
  #: admin/views/Uninstall.php:56
3852
  #, php-format
3853
- msgid ""
3854
- "Deactivating %s plugin does not remove any data that may have been created. "
3855
- "To completely remove this plugin, you can uninstall it here."
3856
- msgstr ""
3857
 
3858
  #: admin/views/Uninstall.php:59
3859
  msgid "WARNING:"
3860
- msgstr ""
3861
 
3862
  #: admin/views/Uninstall.php:60
3863
- msgid ""
3864
- "Once uninstalled, this can't be undone. You should use a Database Backup "
3865
- "plugin of WordPress to back up all the data first."
3866
- msgstr ""
3867
 
3868
  #: admin/views/Uninstall.php:63
3869
  msgid "The following Database Tables will be deleted:"
3870
- msgstr ""
3871
 
3872
  #: admin/views/Uninstall.php:68
3873
  msgid "Database Tables"
3874
- msgstr ""
3875
 
3876
  #: admin/views/Uninstall.php:86
3877
  msgid "Delete the folder containing uploaded images."
3878
- msgstr ""
3879
 
3880
  #: admin/views/Uninstall.php:92
3881
  #, php-format
3882
  msgid "Do you really want to uninstall %s?"
3883
- msgstr ""
3884
 
3885
  #: admin/views/Uninstall.php:102
3886
  msgid "UNINSTALL"
3887
- msgstr ""
3888
 
3889
  #: admin/views/Uninstall.php:104
3890
  #, php-format
3891
- msgid ""
3892
- "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
3893
- msgstr ""
3894
 
3895
  #: admin/views/Widget.php:98 photo-gallery.php:88
3896
  msgid "Photo Gallery"
3897
- msgstr ""
3898
 
3899
  #: admin/views/Widget.php:112 admin/views/WidgetSlideshow.php:83
3900
  #: admin/views/WidgetTags.php:80
3901
  msgid "Title:"
3902
- msgstr ""
3903
 
3904
  #: admin/views/Widget.php:116 admin/views/WidgetTags.php:84
3905
  msgid "Type:"
3906
- msgstr ""
3907
 
3908
  #: admin/views/Widget.php:118
3909
  msgid "Gallery groups"
3910
- msgstr ""
3911
 
3912
  #: admin/views/Widget.php:121 admin/views/WidgetSlideshow.php:87
3913
  msgid "Galleries:"
3914
- msgstr ""
3915
 
3916
  #: admin/views/Widget.php:123 admin/views/Widget.php:144
3917
  #: admin/views/WidgetSlideshow.php:89
3918
  msgid "Select"
3919
- msgstr ""
3920
 
3921
  #: admin/views/Widget.php:134
3922
- #, fuzzy
3923
- #| msgid "Gallery is empty."
3924
  msgid "Gallery Type:"
3925
- msgstr "La galería está vacía"
3926
 
3927
  #: admin/views/Widget.php:142
3928
  msgid "Gallery Groups:"
3929
- msgstr ""
3930
 
3931
  #: admin/views/Widget.php:155
3932
  msgid "Sort:"
3933
- msgstr ""
3934
 
3935
  #: admin/views/Widget.php:157 framework/WDWLibrary.php:655
3936
  msgid "First"
@@ -3942,208 +3805,202 @@ msgstr "Último"
3942
 
3943
  #: admin/views/Widget.php:162
3944
  msgid "Count:"
3945
- msgstr ""
3946
 
3947
  #: admin/views/Widget.php:166 admin/views/WidgetSlideshow.php:132
3948
  #: admin/views/WidgetTags.php:107
3949
  msgid "Dimensions:"
3950
- msgstr ""
3951
 
3952
  #: admin/views/Widget.php:171 admin/views/WidgetSlideshow.php:148
3953
  #: admin/views/WidgetTags.php:126
3954
  msgid "Themes:"
3955
- msgstr ""
3956
 
3957
  #: admin/views/WidgetSlideshow.php:68 photo-gallery.php:1421
3958
  msgid "Photo Gallery Slideshow"
3959
- msgstr ""
3960
 
3961
  #: admin/views/WidgetSlideshow.php:100
3962
  msgid "Slideshow effect:"
3963
- msgstr ""
3964
 
3965
  #: admin/views/WidgetSlideshow.php:114
3966
  msgid "Enable shuffle:"
3967
- msgstr ""
3968
 
3969
  #: admin/views/WidgetSlideshow.php:120
3970
  msgid "Enable autoplay:"
3971
- msgstr ""
3972
 
3973
  #: admin/views/WidgetSlideshow.php:126
3974
  msgid "Enable control buttons:"
3975
- msgstr ""
3976
 
3977
  #: admin/views/WidgetSlideshow.php:137
3978
  msgid "Filmstrip height:"
3979
- msgstr ""
3980
 
3981
  #: admin/views/WidgetSlideshow.php:144
3982
  msgid "Time interval:"
3983
- msgstr ""
3984
 
3985
  #: admin/views/WidgetTags.php:65 photo-gallery.php:1417
3986
  msgid "Photo Gallery Tags Cloud"
3987
- msgstr ""
3988
 
3989
  #: admin/views/WidgetTags.php:90
3990
  msgid "Show Tag Names:"
3991
- msgstr ""
3992
 
3993
  #: admin/views/WidgetTags.php:96
3994
  msgid "Open in:"
3995
- msgstr ""
3996
 
3997
  #: admin/views/WidgetTags.php:97
3998
  msgid "Page"
3999
- msgstr ""
4000
 
4001
  #: admin/views/WidgetTags.php:102
4002
  msgid "Number:"
4003
- msgstr ""
4004
 
4005
  #: admin/views/WidgetTags.php:104
4006
  msgid "0 for all."
4007
- msgstr ""
4008
 
4009
  #: admin/views/WidgetTags.php:112
4010
  msgid "Transparent Background:"
4011
- msgstr ""
4012
 
4013
  #: admin/views/WidgetTags.php:118
4014
  msgid "Background Color:"
4015
- msgstr ""
4016
 
4017
  #: admin/views/WidgetTags.php:122
4018
  msgid "Text Color:"
4019
- msgstr ""
4020
 
4021
  #: filemanager/controller.php:66
4022
  msgid "Directory already exists."
4023
- msgstr ""
4024
 
4025
  #: filemanager/controller.php:113
4026
  msgid "File doesn't exist."
4027
- msgstr ""
4028
 
4029
  #: filemanager/controller.php:117 filemanager/controller.php:130
4030
  #: filemanager/controller.php:150
4031
  msgid "Can't rename the file."
4032
- msgstr ""
4033
 
4034
  #: filemanager/controller.php:187
4035
  msgid "Some of the files couldn't be removed."
4036
- msgstr ""
4037
 
4038
  #: filemanager/controller.php:274
4039
  msgid "Failed to copy some of the files."
4040
- msgstr ""
4041
 
4042
  #: filemanager/controller.php:296
4043
  msgid "Failed to move some of the files."
4044
- msgstr ""
4045
 
4046
  #: filemanager/view.php:53
4047
  msgid "File loading failed"
4048
- msgstr ""
4049
 
4050
  #: filemanager/view.php:55
4051
  msgid "Are you sure you want to permanently remove selected items?"
4052
- msgstr ""
4053
 
4054
  #: filemanager/view.php:56
4055
  msgid "This will cancel uploads. Continue?"
4056
- msgstr ""
4057
 
4058
  #: filemanager/view.php:58
4059
  msgid "Enter directory name"
4060
- msgstr ""
4061
 
4062
  #: filemanager/view.php:59
4063
  msgid "Enter new name"
4064
- msgstr ""
4065
 
4066
  #: filemanager/view.php:60
4067
  msgid "Processing uploaded files..."
4068
- msgstr ""
4069
 
4070
  #: filemanager/view.php:98
4071
  msgid "Up"
4072
- msgstr ""
4073
 
4074
  #: filemanager/view.php:99
4075
  msgid "Make a directory"
4076
- msgstr ""
4077
 
4078
  #: filemanager/view.php:100
4079
  msgid "Rename item"
4080
- msgstr ""
4081
 
4082
  #: filemanager/view.php:102
4083
  msgid "Copy"
4084
- msgstr ""
4085
 
4086
  #: filemanager/view.php:103
4087
  msgid "Cut"
4088
- msgstr ""
4089
 
4090
  #: filemanager/view.php:104
4091
  msgid "Paste"
4092
- msgstr ""
4093
 
4094
  #: filemanager/view.php:105
4095
- #, fuzzy
4096
- #| msgid " item(s)"
4097
  msgid "Remove items"
4098
- msgstr "objeto (s)"
4099
 
4100
  #: filemanager/view.php:109
4101
  msgid "View thumbs"
4102
- msgstr ""
4103
 
4104
  #: filemanager/view.php:110
4105
  msgid "View list"
4106
- msgstr ""
4107
 
4108
  #: filemanager/view.php:114
4109
  msgid "Upload files"
4110
- msgstr ""
4111
 
4112
  #: filemanager/view.php:128
4113
  msgid "To change upload directory go to Options page."
4114
- msgstr ""
4115
 
4116
  #: filemanager/view.php:140
4117
- #, fuzzy
4118
- #| msgid "Order by: "
4119
  msgid "Order by:"
4120
- msgstr "Ordenar por"
4121
 
4122
  #: filemanager/view.php:142
4123
  msgid "Click to sort by name"
4124
- msgstr ""
4125
 
4126
  #: filemanager/view.php:154
4127
  msgid "Click to sort by size"
4128
- msgstr ""
4129
 
4130
  #: filemanager/view.php:166
4131
  msgid "Click to sort by date modified"
4132
- msgstr ""
4133
 
4134
  #: filemanager/view.php:256
4135
- #, fuzzy
4136
- #| msgid "There are no images in this gallery."
4137
  msgid "Add selected images to gallery"
4138
- msgstr "No hay imágenes en esta galería."
4139
 
4140
  #: filemanager/view.php:272
4141
  msgid "Thumbnail Maximum Dimensions:"
4142
- msgstr ""
4143
 
4144
  #: filemanager/view.php:273
4145
  msgid "Thumbnail:"
4146
- msgstr ""
4147
 
4148
  #: filemanager/view.php:278 frontend/views/BWGViewAlbum_compact_preview.php:243
4149
  #: frontend/views/BWGViewAlbum_extended_preview.php:236
@@ -4154,132 +4011,128 @@ msgstr "Atrás"
4154
 
4155
  #: filemanager/view.php:281
4156
  msgid "Image Maximum Dimensions:"
4157
- msgstr ""
4158
 
4159
  #: filemanager/view.php:282
4160
  msgid "Image:"
4161
- msgstr ""
4162
 
4163
  #: filemanager/view.php:290
4164
  msgid "Drag files here or click the button below"
4165
- msgstr ""
4166
 
4167
  #: filemanager/view.php:290
4168
  msgid "to upload files"
4169
- msgstr ""
4170
 
4171
  #: filemanager/view.php:354
4172
  msgid "No files to upload"
4173
- msgstr ""
4174
 
4175
  #: framework/WDWLibrary.php:61
4176
  msgid "Item successfully saved."
4177
- msgstr ""
4178
 
4179
  #: framework/WDWLibrary.php:67 framework/WDWLibrary.php:172
4180
  msgid "Failed."
4181
- msgstr ""
4182
 
4183
  #: framework/WDWLibrary.php:73
4184
  msgid "Item successfully deleted."
4185
- msgstr ""
4186
 
4187
  #: framework/WDWLibrary.php:79
4188
  msgid "You can't delete default theme."
4189
- msgstr ""
4190
 
4191
  #: framework/WDWLibrary.php:85
4192
  msgid "Items Successfully Deleted."
4193
- msgstr ""
4194
 
4195
  #: framework/WDWLibrary.php:99
4196
  msgid "The item is successfully set as default."
4197
- msgstr ""
4198
 
4199
  #: framework/WDWLibrary.php:105
4200
  msgid "Options successfully saved."
4201
- msgstr ""
4202
 
4203
  #: framework/WDWLibrary.php:111
4204
  msgid "Item successfully published."
4205
- msgstr ""
4206
 
4207
  #: framework/WDWLibrary.php:117
4208
  msgid "Item successfully unpublished."
4209
- msgstr ""
4210
 
4211
  #: framework/WDWLibrary.php:123
4212
  msgid "Item successfully duplicated."
4213
- msgstr ""
4214
 
4215
  #: framework/WDWLibrary.php:130
4216
  msgid "Items Succesfully Unpublished."
4217
- msgstr ""
4218
 
4219
  #: framework/WDWLibrary.php:136
4220
  msgid "Ordering Succesfully Saved."
4221
- msgstr ""
4222
 
4223
  #: framework/WDWLibrary.php:142
4224
  msgid "A term with the name provided already exists."
4225
- msgstr ""
4226
 
4227
  #: framework/WDWLibrary.php:148
4228
- #, fuzzy
4229
- #| msgid "field is required."
4230
  msgid "Name field is required."
4231
- msgstr "se requiere el campo. "
4232
 
4233
  #: framework/WDWLibrary.php:154
4234
  msgid "The slug must be unique."
4235
- msgstr ""
4236
 
4237
  #: framework/WDWLibrary.php:160
4238
  msgid "Changes must be saved."
4239
- msgstr ""
4240
 
4241
  #: framework/WDWLibrary.php:166
4242
  msgid "Theme successfully copied."
4243
- msgstr ""
4244
 
4245
  #: framework/WDWLibrary.php:177
4246
  msgid "Items successfully reset."
4247
- msgstr ""
4248
 
4249
  #: framework/WDWLibrary.php:182
4250
  msgid "Watermark successfully set."
4251
- msgstr ""
4252
 
4253
  #: framework/WDWLibrary.php:187
4254
  msgid "Items successfully rotated."
4255
- msgstr ""
4256
 
4257
  #: framework/WDWLibrary.php:192
4258
  msgid "Items successfully recreated."
4259
- msgstr ""
4260
 
4261
  #: framework/WDWLibrary.php:197
4262
  msgid "Items successfully resized."
4263
- msgstr ""
4264
 
4265
  #: framework/WDWLibrary.php:202
4266
  msgid "Items successfully edited."
4267
- msgstr ""
4268
 
4269
  #: framework/WDWLibrary.php:253
4270
  msgid "Click to sort by this item"
4271
- msgstr ""
4272
 
4273
  #: framework/WDWLibrary.php:418 framework/WDWLibrary.php:567
4274
  #: photo-gallery.php:398
4275
- #, fuzzy
4276
- #| msgid " item(s)"
4277
  msgid "item"
4278
- msgstr "objeto (s)"
4279
 
4280
  #: framework/WDWLibrary.php:650
4281
  msgid " item(s)"
4282
- msgstr "objeto (s)"
4283
 
4284
  #: framework/WDWLibrary.php:656
4285
  msgid "Previous"
@@ -4307,22 +4160,20 @@ msgstr "Ir a la última página"
4307
 
4308
  #: framework/WDWLibrary.php:696
4309
  msgid "Load More..."
4310
- msgstr ""
4311
 
4312
  #: framework/WDWLibrary.php:886
4313
  msgid "Order by: "
4314
- msgstr "Ordenar por"
4315
 
4316
  #: framework/WDWLibrary.php:1972
4317
  #, php-format
4318
  msgid "No %s found."
4319
- msgstr ""
4320
 
4321
  #: framework/WDWLibrary.php:2012
4322
- #, fuzzy
4323
- #| msgid "Gallery is empty."
4324
  msgid "Gallery Tags"
4325
- msgstr "La galería está vacía"
4326
 
4327
  #: frontend/views/BWGViewAlbum_compact_preview.php:23
4328
  #: frontend/views/BWGViewAlbum_extended_preview.php:19
@@ -4335,7 +4186,7 @@ msgstr "La galería está vacía"
4335
  #: frontend/views/BWGViewThumbnails_masonry.php:28
4336
  #: frontend/views/BWGViewThumbnails_mosaic.php:31
4337
  msgid "There is no theme selected or the theme was deleted."
4338
- msgstr "No hay ningún tema seleccionado o se ha eliminado el tema"
4339
 
4340
  #: frontend/views/BWGViewAlbum_compact_preview.php:51
4341
  #: frontend/views/BWGViewAlbum_compact_preview.php:91
@@ -4344,7 +4195,7 @@ msgstr "No hay ningún tema seleccionado o se ha eliminado el tema"
4344
  #: frontend/views/BWGViewAlbum_masonry_preview.php:47
4345
  #: frontend/views/BWGViewAlbum_masonry_preview.php:86
4346
  msgid "There is no album selected or the album was deleted."
4347
- msgstr "No hay ningún álbum seleccionado o se eliminó el álbum"
4348
 
4349
  #: frontend/views/BWGViewAlbum_compact_preview.php:77
4350
  #: frontend/views/BWGViewAlbum_extended_preview.php:71
@@ -4363,7 +4214,7 @@ msgstr "No hay imágenes en esta galería."
4363
  #: frontend/views/BWGViewAlbum_extended_preview.php:264
4364
  #: frontend/views/BWGViewAlbum_masonry_preview.php:255
4365
  msgid "Album is empty."
4366
- msgstr "El álbum está vacío"
4367
 
4368
  #: frontend/views/BWGViewAlbum_compact_preview.php:384
4369
  #: frontend/views/BWGViewAlbum_extended_preview.php:247
@@ -4375,7 +4226,7 @@ msgstr "No hay imágenes que coincidan con su búsqueda."
4375
  #: frontend/views/BWGViewAlbum_extended_preview.php:252
4376
  #: frontend/views/BWGViewAlbum_masonry_preview.php:331
4377
  msgid "Gallery is empty."
4378
- msgstr "La galería está vacía"
4379
 
4380
  #: frontend/views/BWGViewAlbum_compact_preview.php:453
4381
  #: frontend/views/BWGViewAlbum_compact_preview.php:531
@@ -4400,7 +4251,7 @@ msgstr "Reproducir"
4400
  #: frontend/views/BWGViewThumbnails_masonry.php:168
4401
  #: frontend/views/BWGViewThumbnails_mosaic.php:191
4402
  msgid "Open"
4403
- msgstr ""
4404
 
4405
  #: frontend/views/BWGViewAlbum_compact_preview.php:472
4406
  #: frontend/views/BWGViewAlbum_compact_preview.php:498
@@ -4413,7 +4264,7 @@ msgstr ""
4413
  #: frontend/views/BWGViewThumbnails_masonry.php:169
4414
  #: frontend/views/BWGViewThumbnails_mosaic.php:192
4415
  msgid "Ecommerce"
4416
- msgstr ""
4417
 
4418
  #: frontend/views/BWGViewAlbum_compact_preview.php:1013
4419
  #: frontend/views/BWGViewAlbum_extended_preview.php:1037
@@ -4425,10 +4276,8 @@ msgstr ""
4425
  #: frontend/views/BWGViewThumbnails.php:280
4426
  #: frontend/views/BWGViewThumbnails_masonry.php:314
4427
  #: frontend/views/BWGViewThumbnails_mosaic.php:602
4428
- #, fuzzy
4429
- #| msgid "Download original image"
4430
  msgid "Download gallery"
4431
- msgstr "Descargar la imagen original"
4432
 
4433
  #: frontend/views/BWGViewAlbum_extended_preview.php:366
4434
  #: frontend/views/BWGViewAlbum_extended_preview.php:546
@@ -4456,8 +4305,6 @@ msgstr "No hay ninguna galería seleccionada o la galería se ha eliminado."
4456
  #: frontend/views/BWGViewThumbnails.php:73
4457
  #: frontend/views/BWGViewThumbnails_masonry.php:71
4458
  #: frontend/views/BWGViewThumbnails_mosaic.php:75
4459
- #, fuzzy
4460
- #| msgid "There are no images in this gallery."
4461
  msgid "There are no images."
4462
  msgstr "No hay imágenes en esta galería."
4463
 
@@ -4502,10 +4349,8 @@ msgid "Share on Tumblr"
4502
  msgstr "Compartir en Tumblr"
4503
 
4504
  #: frontend/views/BWGViewBlog_style.php:353
4505
- #, fuzzy
4506
- #| msgid "Show comments"
4507
  msgid "Show ecommerce"
4508
- msgstr "Mostrar comentarios"
4509
 
4510
  #: frontend/views/BWGViewCarousel.php:224
4511
  #: frontend/views/BWGViewCarousel.php:230
@@ -4517,14 +4362,12 @@ msgid "Pause"
4517
  msgstr "Pausar"
4518
 
4519
  #: frontend/views/BWGViewDownload_gallery.php:37
4520
- #, fuzzy
4521
- #| msgid "There are no images in this gallery."
4522
  msgid "There are no images to download."
4523
- msgstr "No hay imágenes en esta galería."
4524
 
4525
  #: frontend/views/BWGViewGalleryBox.php:1020
4526
  msgid "The image has been deleted."
4527
- msgstr "La imagen ha sido borrada. "
4528
 
4529
  #: frontend/views/BWGViewGalleryBox.php:1138
4530
  #: frontend/views/BWGViewGalleryBox.php:2760
@@ -4551,7 +4394,7 @@ msgstr "Mostrar puntuación"
4551
 
4552
  #: frontend/views/BWGViewGalleryBox.php:1190
4553
  msgid "Open image in original size."
4554
- msgstr "Abrir imagen en tamaño original. "
4555
 
4556
  #: frontend/views/BWGViewGalleryBox.php:1211
4557
  msgid "Download original image"
@@ -4563,12 +4406,12 @@ msgstr "Visitas: "
4563
 
4564
  #: frontend/views/BWGViewGalleryBox.php:1254
4565
  msgid "Rated."
4566
- msgstr "Puntuado."
4567
 
4568
  #: frontend/views/BWGViewGalleryBox.php:1258
4569
  #: frontend/views/BWGViewGalleryBox.php:1275
4570
  msgid "Not rated yet."
4571
- msgstr "No se ha puntuado todavia. "
4572
 
4573
  #: frontend/views/BWGViewGalleryBox.php:1261
4574
  #: frontend/views/BWGViewGalleryBox.php:1297
@@ -4585,7 +4428,7 @@ msgstr "Ya lo has puntuado."
4585
 
4586
  #: frontend/views/BWGViewGalleryBox.php:1406
4587
  msgid "Error. Incorrect Verification Code."
4588
- msgstr "Error. Código de verificación incorrecto. "
4589
 
4590
  #: frontend/views/BWGViewGalleryBox.php:1413 photo-gallery.php:1004
4591
  msgid "This is not a valid email address."
@@ -4606,7 +4449,7 @@ msgstr "Enviar"
4606
 
4607
  #: frontend/views/BWGViewGalleryBox.php:1467
4608
  msgid "Your comment is awaiting moderation"
4609
- msgstr "Tu comentario está pendiente de moderación "
4610
 
4611
  #: frontend/views/BWGViewGalleryBox.php:1496
4612
  msgid "Delete Comment"
@@ -4614,71 +4457,65 @@ msgstr "Eliminar comentario"
4614
 
4615
  #: frontend/views/BWGViewGalleryBox.php:1531
4616
  #: frontend/views/BWGViewGalleryBox.php:3043
4617
- #, fuzzy
4618
- #| msgid "Hide Comments"
4619
  msgid "Hide Ecommerce"
4620
- msgstr "Ocultar comentarios"
4621
 
4622
  #: frontend/views/BWGViewGalleryBox.php:1538
4623
  #: frontend/views/BWGViewGalleryBox.php:1726
4624
  msgid "Add to cart"
4625
- msgstr ""
4626
 
4627
  #: frontend/views/BWGViewGalleryBox.php:1541
4628
- #, fuzzy
4629
- #| msgid " item(s)"
4630
  msgid "items"
4631
- msgstr "objeto (s)"
4632
 
4633
  #: frontend/views/BWGViewGalleryBox.php:1551
4634
  msgid "Prints and products"
4635
- msgstr ""
4636
 
4637
  #: frontend/views/BWGViewGalleryBox.php:1558
4638
  msgid "Downloads"
4639
- msgstr ""
4640
 
4641
  #: frontend/views/BWGViewGalleryBox.php:1573
4642
  #: frontend/views/BWGViewGalleryBox.php:1686
4643
  msgid "Price"
4644
- msgstr ""
4645
 
4646
  #: frontend/views/BWGViewGalleryBox.php:1593
4647
  msgid "Count"
4648
- msgstr ""
4649
 
4650
  #: frontend/views/BWGViewGalleryBox.php:1673
4651
  #: frontend/views/BWGViewGalleryBox.php:1717
4652
  msgid "Total"
4653
- msgstr ""
4654
 
4655
  #: frontend/views/BWGViewGalleryBox.php:1683
4656
  msgid "Choose"
4657
- msgstr ""
4658
 
4659
  #: frontend/views/BWGViewGalleryBox.php:1685
4660
  msgid "Dimensions"
4661
- msgstr ""
4662
 
4663
  #: frontend/views/BWGViewGalleryBox.php:1727
4664
  msgid "View cart"
4665
- msgstr ""
4666
 
4667
  #: frontend/views/BWGViewGalleryBox.php:1909
4668
  msgid "Please select at least one item"
4669
- msgstr ""
4670
 
4671
  #: frontend/views/BWGViewGalleryBox.php:1944
4672
  msgid "Please select Prints and products or Downloads"
4673
- msgstr ""
4674
 
4675
  #: frontend/views/BWGViewGalleryBox.php:2668
4676
  #: frontend/views/BWGViewGalleryBox.php:2991
4677
  #: frontend/views/BWGViewGalleryBox.php:3035
4678
- #, fuzzy
4679
- #| msgid "Show comments"
4680
  msgid "Show Ecommerce"
4681
- msgstr "Mostrar comentarios"
4682
 
4683
  #: frontend/views/BWGViewGalleryBox.php:3000
4684
  #: frontend/views/BWGViewGalleryBox.php:3028
@@ -4704,768 +4541,702 @@ msgstr "Salir de pantalla completa"
4704
 
4705
  #: insert.php:1152
4706
  msgid "Theme 1"
4707
- msgstr ""
4708
 
4709
  #: insert.php:1158
4710
  msgid "Theme 2"
4711
- msgstr ""
4712
 
4713
  #: photo-gallery.php:97
4714
  msgid "This option is disabled in free version."
4715
- msgstr ""
4716
 
4717
  #: photo-gallery.php:254
4718
  msgid "Add Galleries/Images"
4719
- msgstr ""
4720
 
4721
  #: photo-gallery.php:262
4722
  msgid "Options"
4723
- msgstr ""
4724
 
4725
  #: photo-gallery.php:275
4726
  msgid "Pro Version"
4727
- msgstr ""
4728
 
4729
  #: photo-gallery.php:280
4730
  msgid "Add-ons"
4731
- msgstr ""
4732
 
4733
  #: photo-gallery.php:308
4734
  #, php-format
4735
  msgid "The controller %s file not exist."
4736
- msgstr ""
4737
 
4738
  #: photo-gallery.php:313
4739
  #, php-format
4740
  msgid "The view %s file not exist."
4741
- msgstr ""
4742
 
4743
  #: photo-gallery.php:329 photo-gallery.php:334
4744
  #, php-format
4745
  msgid "The %s class not exist."
4746
- msgstr ""
4747
 
4748
  #: photo-gallery.php:376 photo-gallery.php:409
4749
  msgid "Do you want to delete selected items?"
4750
- msgstr ""
4751
 
4752
  #: photo-gallery.php:377 photo-gallery.php:404
4753
  msgid "You must select at least one item."
4754
- msgstr ""
4755
 
4756
  #: photo-gallery.php:384 photo-gallery.php:1003
4757
  msgid "field is required."
4758
- msgstr "se requiere el campo. "
4759
 
4760
  #: photo-gallery.php:385
4761
  msgid "You must select an image file."
4762
- msgstr ""
4763
 
4764
  #: photo-gallery.php:386
4765
  msgid "You must select an audio file."
4766
- msgstr ""
4767
 
4768
  #: photo-gallery.php:387
4769
- msgid ""
4770
- "You do not have Instagram access token. Sign in with Instagram in Options -> "
4771
- "Advanced tab. "
4772
- msgstr ""
4773
 
4774
  #: photo-gallery.php:388
4775
- msgid ""
4776
- "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
4777
- "options."
4778
- msgstr ""
4779
 
4780
  #: photo-gallery.php:389
4781
  msgid "Instagram recent post number must be between 1 and 33."
4782
- msgstr ""
4783
 
4784
  #: photo-gallery.php:390
4785
  msgid "The gallery is not empty. Please delete all the images first."
4786
- msgstr ""
4787
 
4788
  #: photo-gallery.php:391
4789
  msgid "Please enter url to embed."
4790
- msgstr ""
4791
 
4792
  #: photo-gallery.php:392
4793
  msgid "Error: cannot get response from the server."
4794
- msgstr ""
4795
 
4796
  #: photo-gallery.php:393
4797
  msgid "Error: something wrong happened at the server."
4798
- msgstr ""
4799
 
4800
  #: photo-gallery.php:394
4801
  msgid "Error"
4802
- msgstr ""
4803
 
4804
  #: photo-gallery.php:396
4805
  msgid "Hide order column"
4806
- msgstr ""
4807
 
4808
  #: photo-gallery.php:397
4809
  msgid "Selected"
4810
- msgstr ""
4811
 
4812
  #: photo-gallery.php:399
4813
  msgid "Items Succesfully Saved."
4814
- msgstr ""
4815
 
4816
  #: photo-gallery.php:400
4817
  msgid "Item Succesfully Recovered."
4818
- msgstr ""
4819
 
4820
  #: photo-gallery.php:401
4821
  msgid "Item Succesfully Published."
4822
- msgstr ""
4823
 
4824
  #: photo-gallery.php:402
4825
  msgid "Item Succesfully Unpublished."
4826
- msgstr ""
4827
 
4828
  #: photo-gallery.php:403
4829
  msgid "Item Succesfully Deleted."
4830
- msgstr ""
4831
 
4832
  #: photo-gallery.php:405
4833
  msgid "Items Succesfully resized."
4834
- msgstr ""
4835
 
4836
  #: photo-gallery.php:406
4837
  msgid "Watermarks Succesfully Set."
4838
- msgstr ""
4839
 
4840
  #: photo-gallery.php:407
4841
  msgid "Items Succesfully Reset."
4842
- msgstr ""
4843
 
4844
  #: photo-gallery.php:408
4845
  msgid "Save Tag"
4846
- msgstr ""
4847
 
4848
  #: photo-gallery.php:410 photo-gallery.php:412
4849
- msgid ""
4850
- "This action will reset gallery type to mixed and will save that choice. You "
4851
- "cannot undo it."
4852
- msgstr ""
4853
 
4854
  #: photo-gallery.php:411
4855
- msgid ""
4856
- "After pressing save/apply buttons, you cannot change gallery type back to "
4857
- "Instagram!"
4858
- msgstr ""
4859
 
4860
  #: photo-gallery.php:413
4861
  msgid "Insert"
4862
- msgstr ""
4863
 
4864
  #: photo-gallery.php:414
4865
  msgid "Failed to import images from media library"
4866
- msgstr ""
4867
 
4868
  #: photo-gallery.php:710
4869
  msgid "Insert Photo Gallery"
4870
- msgstr ""
4871
 
4872
  #: photo-gallery.php:712
4873
  msgid "Add Photo Gallery"
4874
- msgstr ""
4875
 
4876
  #: photo-gallery.php:1008
4877
  msgid "Select Tag"
4878
- msgstr ""
4879
 
4880
  #: photo-gallery.php:1177
4881
  #, php-format
4882
  msgid "This section allows you to %s."
4883
- msgstr ""
4884
 
4885
  #: photo-gallery.php:1179
4886
  msgid "Read More in User Manual"
4887
- msgstr ""
4888
 
4889
  #: photo-gallery.php:1185
4890
  msgid "Upgrade to paid version"
4891
- msgstr ""
4892
 
4893
  #: photo-gallery.php:1196 photo-gallery.php:1640
4894
  #: wd/templates/display_overview_user_guide.php:33
4895
  msgid "Support Forum"
4896
- msgstr ""
4897
 
4898
  #: photo-gallery.php:1224
4899
- msgid ""
4900
- "Photo Gallery is a fully responsive gallery plugin with advanced "
4901
- "functionality. It allows having different image galleries for your posts and "
4902
- "pages. You can create unlimited number of galleries, combine them into "
4903
- "gallery groups, and provide descriptions and tags."
4904
- msgstr ""
4905
 
4906
  #: photo-gallery.php:1228
4907
  msgid "Easy Set-up and Management"
4908
- msgstr ""
4909
 
4910
  #: photo-gallery.php:1229
4911
- msgid ""
4912
- "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
4913
- "Use the File Manager with single-step and easy-to-manage functionality to "
4914
- "rename, upload, copy, add and remove images and image directories. Otherwise "
4915
- "use WordPress built in media uploader."
4916
- msgstr ""
4917
 
4918
  #: photo-gallery.php:1232
4919
  msgid "Unlimited Photos and Albums"
4920
- msgstr ""
4921
 
4922
  #: photo-gallery.php:1233
4923
- msgid ""
4924
- "The plugin allows creating unlimited number of galleries or gallery groups "
4925
- "and upload images in each gallery as many as you wish. Add single/ multiple "
4926
- "galleries into your pages and posts with the help of functional shortcode; "
4927
- "visual shortcodes for an easier management."
4928
- msgstr ""
4929
 
4930
  #: photo-gallery.php:1236
4931
  msgid "Customizable"
4932
- msgstr ""
4933
 
4934
  #: photo-gallery.php:1237
4935
- msgid ""
4936
- "The gallery plugin is easily customizable. You can edit themes changing "
4937
- "sizes and colors for different features. Specify the number of images to "
4938
- "display in a single row in an gallery group. Additionally, you can customize "
4939
- "thumbnail images by cropping, flipping and rotating them."
4940
- msgstr ""
4941
 
4942
  #: photo-gallery.php:1240
4943
  msgid "10 View Options"
4944
- msgstr ""
4945
 
4946
  #: photo-gallery.php:1241
4947
- msgid ""
4948
- "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
4949
- "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
4950
- "Browser, Masonry Album, Compact Album, Extended Album, Blog Style Gallery, "
4951
- "Ecommerce."
4952
- msgstr ""
4953
 
4954
  #: photo-gallery.php:1244
4955
  msgid "Audio and Video Support"
4956
- msgstr ""
4957
 
4958
  #: photo-gallery.php:1245
4959
- msgid ""
4960
- "You can include both videos and images within a single gallery. WordPress "
4961
- "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
4962
- "It’s also possible to add audio tracks for the image slideshow."
4963
- msgstr ""
4964
 
4965
  #: photo-gallery.php:1251
4966
  msgid "Installing"
4967
- msgstr ""
4968
 
4969
  #: photo-gallery.php:1256
4970
  msgid "Creating/Editing Galleries"
4971
- msgstr ""
4972
 
4973
  #: photo-gallery.php:1260
4974
  msgid "Instagram Gallery"
4975
- msgstr ""
4976
 
4977
  #: photo-gallery.php:1266
4978
  msgid "Creating/Editing Tags"
4979
- msgstr ""
4980
 
4981
  #: photo-gallery.php:1271
4982
  msgid "Creating/Editing Albums"
4983
- msgstr ""
4984
 
4985
  #: photo-gallery.php:1276
4986
  msgid "Editing Options"
4987
- msgstr ""
4988
 
4989
  #: photo-gallery.php:1280
4990
  msgid "Global Options"
4991
- msgstr ""
4992
 
4993
  #: photo-gallery.php:1296
4994
  msgid "Album Options"
4995
- msgstr ""
4996
 
4997
  #: photo-gallery.php:1304
4998
  msgid "Thumbnail Options"
4999
- msgstr ""
5000
 
5001
  #: photo-gallery.php:1308
5002
  msgid "Image Options"
5003
- msgstr ""
5004
 
5005
  #: photo-gallery.php:1312
5006
  msgid "Social Options"
5007
- msgstr ""
5008
 
5009
  #: photo-gallery.php:1316
5010
  msgid "Carousel Options"
5011
- msgstr ""
5012
 
5013
  #: photo-gallery.php:1322
5014
  msgid "Creating/Editing Themes"
5015
- msgstr ""
5016
 
5017
  #: photo-gallery.php:1346
5018
  msgid "Compact Album"
5019
- msgstr ""
5020
 
5021
  #: photo-gallery.php:1350
5022
  msgid "Masonry Album"
5023
- msgstr ""
5024
 
5025
  #: photo-gallery.php:1354
5026
  msgid "Extended Album"
5027
- msgstr ""
5028
 
5029
  #: photo-gallery.php:1366
5030
  msgid "Page Navigation"
5031
- msgstr ""
5032
 
5033
  #: photo-gallery.php:1376
5034
  msgid "Generating Shortcode"
5035
- msgstr ""
5036
 
5037
  #: photo-gallery.php:1381
5038
- #, fuzzy
5039
- #| msgid "Hide Comments"
5040
  msgid "Editing Comments"
5041
- msgstr "Ocultar comentarios"
5042
 
5043
  #: photo-gallery.php:1386
5044
  msgid "Editing Ratings"
5045
- msgstr ""
5046
 
5047
  #: photo-gallery.php:1391
5048
  msgid "Publishing the Created Photo Gallery"
5049
- msgstr ""
5050
 
5051
  #: photo-gallery.php:1395
5052
  msgid "General Parameters"
5053
- msgstr ""
5054
 
5055
  #: photo-gallery.php:1399
5056
  msgid "Lightbox Parameters"
5057
- msgstr ""
5058
 
5059
  #: photo-gallery.php:1409
5060
  msgid "Publishing Photo Gallery Widgets"
5061
- msgstr ""
5062
 
5063
  #: photo-gallery.php:1413
5064
  msgid "Tag Cloud"
5065
- msgstr ""
5066
 
5067
  #: photo-gallery.php:1425
5068
  msgid "Photo Gallery Widget"
5069
- msgstr ""
5070
 
5071
  #: photo-gallery.php:1492
5072
  msgid "Albums"
5073
- msgstr ""
5074
 
5075
  #: photo-gallery.php:1506
5076
- #, fuzzy
5077
- #| msgid "Gallery is empty."
5078
  msgid "Gallery tags"
5079
- msgstr "La galería está vacía"
5080
 
5081
  #: photo-gallery.php:1555
5082
  msgid "Photo gallery plugin autoupdate interval."
5083
- msgstr "Iintervalo de actualización automática del plugin Photo gallery."
5084
 
5085
  #: photo-gallery.php:1598
5086
  #, php-format
5087
  msgid "Please update the %s add-on to start using."
5088
- msgstr ""
5089
 
5090
  #: photo-gallery.php:1599
5091
  #, php-format
5092
  msgid "Please update the %s add-ons to start using."
5093
- msgstr ""
5094
 
5095
  #: photo-gallery.php:1641
5096
- #, fuzzy
5097
- #| msgid "Rated."
5098
  msgid "Rate"
5099
- msgstr "Puntuado."
5100
 
5101
  #: photo-gallery.php:1716
5102
  #, php-format
5103
- msgid ""
5104
- "%s advises: Install brand new %s plugin to optimize your website images "
5105
- "quickly and easily."
5106
- msgstr ""
5107
 
5108
  #: photo-gallery.php:1716
5109
  msgid "More details"
5110
- msgstr ""
5111
 
5112
  #: photo-gallery.php:1716
5113
  msgid "Image Optimizer WD"
5114
- msgstr ""
5115
 
5116
  #: photo-gallery.php:1721
5117
  msgid "Activate"
5118
- msgstr ""
5119
 
5120
  #: photo-gallery.php:1722 photo-gallery.php:1729
5121
  msgid "Optimize now"
5122
- msgstr ""
5123
 
5124
  #: photo-gallery.php:1723
5125
  msgid "Activation failed, please try again."
5126
- msgstr ""
5127
 
5128
  #: photo-gallery.php:1727
5129
  msgid "Install"
5130
- msgstr ""
5131
 
5132
  #: photo-gallery.php:1728
5133
  msgid "Activation"
5134
- msgstr ""
5135
 
5136
  #: photo-gallery.php:1730
5137
  msgid "Installation failed, please try again."
5138
- msgstr ""
5139
 
5140
  #: wd/includes/deactivate.php:35
5141
  msgid "Technical problems / hard to use"
5142
- msgstr ""
5143
 
5144
  #: wd/includes/deactivate.php:39
5145
  msgid "Free version is limited"
5146
- msgstr ""
5147
 
5148
  #: wd/includes/deactivate.php:43
5149
  msgid "Premium is expensive"
5150
- msgstr ""
5151
 
5152
  #: wd/includes/deactivate.php:47
5153
  msgid "Upgrading to paid version"
5154
- msgstr ""
5155
 
5156
  #: wd/includes/deactivate.php:51
5157
  msgid "Temporary deactivation"
5158
- msgstr ""
5159
 
5160
  #: wd/includes/notices.php:211
5161
  msgid "Leave A Review?"
5162
- msgstr ""
5163
 
5164
  #: wd/includes/notices.php:212
5165
  #, php-format
5166
- msgid ""
5167
- "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
5168
- "review on WordPress.org?"
5169
- msgstr ""
5170
 
5171
  #: wd/includes/notices.php:213
5172
  msgid "Sure! I'd love to!"
5173
- msgstr ""
5174
 
5175
  #: wd/includes/notices.php:214
5176
  msgid "I've already left a review"
5177
- msgstr ""
5178
 
5179
  #: wd/includes/notices.php:215
5180
  msgid "Maybe Later"
5181
- msgstr ""
5182
 
5183
  #: wd/includes/notices.php:216
5184
  msgid "Never show again"
5185
- msgstr ""
5186
 
5187
  #: wd/includes/overview.php:27
5188
  msgid "Welcome"
5189
- msgstr ""
5190
 
5191
  #: wd/includes/overview.php:31
5192
  msgid "User Guide"
5193
- msgstr ""
5194
 
5195
  #: wd/includes/overview.php:35
5196
  msgid "Deals"
5197
- msgstr ""
5198
 
5199
  #: wd/includes/overview.php:39
5200
  msgid "Support"
5201
- msgstr ""
5202
 
5203
  #: wd/includes/overview.php:43
5204
  msgid "Submit Your Idea"
5205
- msgstr ""
5206
 
5207
  #: wd/includes/overview.php:47
5208
  msgid "Forum"
5209
- msgstr ""
5210
 
5211
  #: wd/includes/overview.php:79
5212
  msgid "Wordpress form builder plugin"
5213
- msgstr ""
5214
 
5215
  #: wd/includes/overview.php:80
5216
- msgid ""
5217
- "Form Maker is a modern and advanced tool for creating WordPress forms easily "
5218
- "and fast."
5219
- msgstr ""
5220
 
5221
  #: wd/includes/overview.php:85
5222
  msgid "WordPress Photo Gallery plugin"
5223
- msgstr ""
5224
 
5225
  #: wd/includes/overview.php:86
5226
- msgid ""
5227
- "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
5228
- "functionality."
5229
- msgstr ""
5230
 
5231
  #: wd/includes/overview.php:91
5232
  msgid "WordPress calendar plugin"
5233
- msgstr ""
5234
 
5235
  #: wd/includes/overview.php:92
5236
- msgid ""
5237
- "Organize and publish your events in an easy and elegant way using Event "
5238
- "Calendar WD."
5239
- msgstr ""
5240
 
5241
  #: wd/includes/overview.php:97
5242
  msgid "WD Google Maps plugin"
5243
- msgstr ""
5244
 
5245
  #: wd/includes/overview.php:98
5246
- msgid ""
5247
- "Google Maps WD is an intuitive tool for creating Google maps with advanced "
5248
- "markers, custom layers and overlays for your website."
5249
- msgstr ""
5250
 
5251
  #: wd/includes/overview.php:103
5252
  msgid "WordPress slider plugin"
5253
- msgstr ""
5254
 
5255
  #: wd/includes/overview.php:104
5256
- msgid ""
5257
- "Create responsive, highly configurable sliders with various effects for your "
5258
- "WordPress site."
5259
- msgstr ""
5260
 
5261
  #: wd/includes/overview.php:109
5262
  msgid "WordPress event calendar plugin"
5263
- msgstr ""
5264
 
5265
  #: wd/includes/overview.php:110
5266
- msgid ""
5267
- "Spider Event Calendar is a highly configurable product which allows you to "
5268
- "have multiple organized events."
5269
- msgstr ""
5270
 
5271
  #: wd/includes/overview.php:115
5272
  msgid "WordPress Instagram Feed plugin"
5273
- msgstr ""
5274
 
5275
  #: wd/includes/overview.php:116
5276
- msgid ""
5277
- "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
5278
- "based feeds on your website."
5279
- msgstr ""
5280
 
5281
  #: wd/includes/overview.php:169
5282
  msgid "Not set"
5283
- msgstr ""
5284
 
5285
  #: wd/includes/overview.php:174
5286
  msgid "On"
5287
- msgstr ""
5288
 
5289
  #: wd/includes/overview.php:176
5290
  msgid "Off"
5291
- msgstr ""
5292
 
5293
  #: wd/includes/overview.php:185 wd/includes/overview.php:193
5294
  #: wd/includes/overview.php:200 wd/includes/overview.php:207
5295
  #: wd/includes/overview.php:215 wd/includes/overview.php:222
5296
  msgid "N/A"
5297
- msgstr ""
5298
 
5299
  #: wd/includes/overview.php:220
5300
  msgid " MByte"
5301
- msgstr ""
5302
 
5303
  #: wd/includes/subscribe.php:43
5304
  msgid "Your name &"
5305
- msgstr ""
5306
 
5307
  #: wd/includes/subscribe.php:44
5308
  msgid "Email address"
5309
- msgstr ""
5310
 
5311
  #: wd/includes/subscribe.php:48
5312
  msgid "Site URL"
5313
- msgstr ""
5314
 
5315
  #: wd/includes/subscribe.php:49
5316
  msgid "Wordpress version"
5317
- msgstr ""
5318
 
5319
  #: wd/includes/subscribe.php:53
5320
  msgid "List of plugins"
5321
- msgstr ""
5322
 
5323
  #: wd/templates/display_deactivation_popup.php:8
5324
- msgid ""
5325
- "Please let us know why you are deactivating. Your answer will help us to "
5326
- "serve you better"
5327
- msgstr ""
5328
 
5329
  #: wd/templates/display_deactivation_popup.php:21
5330
  msgid "Deactivate"
5331
- msgstr ""
5332
 
5333
  #: wd/templates/display_deactivation_popup.php:22
5334
  msgid "Submit and deactivate"
5335
- msgstr ""
5336
 
5337
  #: wd/templates/display_overview.php:6
5338
  #, php-format
5339
  msgid "Welcome to %s"
5340
- msgstr ""
5341
 
5342
  #: wd/templates/display_overview.php:8
5343
  #, php-format
5344
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
5345
- msgstr ""
5346
 
5347
  #: wd/templates/display_overview_deals.php:12
5348
  #, php-format
5349
  msgid "Get %s"
5350
- msgstr ""
5351
 
5352
  #: wd/templates/display_overview_deals.php:13
5353
  msgid "plugins"
5354
- msgstr ""
5355
 
5356
  #: wd/templates/display_overview_deals.php:14
5357
  #: wd/templates/display_overview_deals.php:58
5358
  msgid "for"
5359
- msgstr ""
5360
 
5361
  #: wd/templates/display_overview_deals.php:14
5362
  #: wd/templates/display_overview_deals.php:58
5363
  msgid "only"
5364
- msgstr ""
5365
 
5366
  #: wd/templates/display_overview_deals.php:16
5367
  msgid "Save 80%"
5368
- msgstr ""
5369
 
5370
  #: wd/templates/display_overview_deals.php:35
5371
  msgid "Download"
5372
- msgstr ""
5373
 
5374
  #: wd/templates/display_overview_deals.php:45
5375
  msgid "Get all plugins"
5376
- msgstr ""
5377
 
5378
  #: wd/templates/display_overview_deals.php:57
5379
  msgid "Get all 11 themes"
5380
- msgstr ""
5381
 
5382
  #: wd/templates/display_overview_deals.php:60
5383
  msgid "Save 70%"
5384
- msgstr ""
5385
 
5386
  #: wd/templates/display_overview_deals.php:77
5387
  msgid "Find out more"
5388
- msgstr ""
5389
 
5390
  #: wd/templates/display_overview_support.php:3
5391
  #, php-format
5392
- msgid ""
5393
- "You may contact us by filling in this form or by email %s any time you need "
5394
- "professional support or have any questions. You can also fill in the form to "
5395
- "leave your comments or feedback."
5396
- msgstr ""
5397
 
5398
  #: wd/templates/display_overview_support.php:6
5399
  msgid "Site Details"
5400
- msgstr ""
5401
 
5402
  #: wd/templates/display_overview_support.php:8
5403
- msgid ""
5404
- "When contacting support, consider copying and pasting this information in "
5405
- "your support request."
5406
- msgstr ""
5407
 
5408
  #: wd/templates/display_overview_support.php:10
5409
  msgid "It helps us troubleshoot more quickly."
5410
- msgstr ""
5411
 
5412
  #: wd/templates/display_overview_support.php:17
5413
  msgid "Copy to Clipboard"
5414
- msgstr ""
5415
 
5416
  #: wd/templates/display_overview_support.php:20
5417
  msgid "Server Settings"
5418
- msgstr ""
5419
 
5420
  #: wd/templates/display_overview_support.php:26
5421
  msgid "Graphic Library"
5422
- msgstr ""
5423
 
5424
  #: wd/templates/display_overview_user_guide.php:26
5425
  msgid "Demo"
5426
- msgstr ""
5427
 
5428
  #: wd/templates/display_overview_user_guide.php:36
5429
  msgid "FAQ"
5430
- msgstr ""
5431
 
5432
  #: wd/templates/display_overview_user_guide.php:40
5433
  msgid "Addons"
5434
- msgstr ""
5435
 
5436
  #: wd/templates/display_overview_welcome.php:18
5437
  msgid "Run Install Wizard "
5438
- msgstr ""
5439
 
5440
  #: wd/templates/display_overview_welcome.php:26
5441
  msgid "More features"
5442
- msgstr ""
5443
 
5444
  #: wd/templates/display_subscribe.php:9
5445
  msgid "Hi there"
5446
- msgstr ""
5447
 
5448
  #: wd/templates/display_subscribe.php:11
5449
  #, php-format
5450
- msgid ""
5451
- "Allow %s to collect some usage data. This will allow you to get more out of "
5452
- "your plugin experience - get awesome customer support, receive exclusive "
5453
- "deals and discounts on premium products and more. You can choose to skip "
5454
- "this step, %s will still work just fine."
5455
- msgstr ""
5456
 
5457
  #: wd/templates/display_subscribe.php:19
5458
  msgid "What data is being collected?"
5459
- msgstr ""
5460
 
5461
  #: wd/templates/display_subscribe.php:36
5462
  msgid "Privacy Policy"
5463
- msgstr ""
5464
 
5465
  #: wd/templates/display_subscribe.php:42
5466
  msgid "Terms of Use"
5467
- msgstr ""
5468
 
5469
  #: wd/wd.php:72
5470
  msgid "Overview"
5471
- msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2018-01-24 10:53+0400\n"
5
+ "PO-Revision-Date: 2018-04-04 00:37+0200\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 2.0.6\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
17
 
18
  #: addons/addons.php:6
19
  msgid "Photo Gallery Ecommerce"
20
+ msgstr "Photo Gallery Ecommerce"
21
 
22
  #: addons/addons.php:8
23
+ msgid "Using Photo Gallery Ecommerce you can sell images included in galleries either as digital downloads or products/prints via Paypal or Stripe."
24
+ msgstr "Usando Photo Gallery Ecommerce puede vender imágenes incluidas en galerías como descargas digitales o productos / impresiones a través de Paypal o Stripe."
 
 
25
 
26
  #: addons/addons.php:13
 
 
27
  msgid "Photo Gallery Facebook"
28
+ msgstr "Photo Gallery Facebook"
29
 
30
  #: addons/addons.php:15
31
+ msgid "Photo Gallery Facebook is an add-on, which helps to display Facebook photos and videos within Photo Gallery plugin. You can create Facebook-only galleries, embed individual images and videos or include Facebook albums within mixed type albums."
32
+ msgstr "Galería de fotos Facebook es un complemento que ayuda a mostrar fotos y videos de Facebook dentro del complemento de la galería de fotos. Puede crear galerías exclusivas de Facebook, insertar imágenes y videos individuales o incluir álbumes de Facebook en álbumes de tipos mixtos."
 
 
 
 
33
 
34
  #: addons/addons.php:20
35
  msgid "NextGen Gallery Import to Photo Gallery"
36
+ msgstr "Importación de la galería NextGen a la galería de fotos"
37
 
38
  #: addons/addons.php:22
39
+ msgid "This addon integrates NextGen with Photo Gallery allowing to import images and related data from NextGen to use with Photo Gallery"
40
+ msgstr "Este complemento integra NextGen con Photo Gallery, lo que permite importar imágenes y datos relacionados de NextGen para usar con Photo Gallery"
 
 
41
 
42
  #: addons/addons.php:27
43
  msgid "Photo Gallery Export / Import"
44
+ msgstr "Galería de fotos Exportar / Importar"
45
 
46
  #: addons/addons.php:29
47
+ msgid "Photo Gallery Export/Import helps to move created galleries and gallery groups from one site to another. This way you can save the gallery/album options and manual modifications."
48
+ msgstr "Galería de fotos Exportar / Importar ayuda a mover galerías y grupos de galería creados de un sitio a otro. De esta forma puede guardar las opciones de la galería / álbum y las modificaciones manuales."
 
 
 
49
 
50
  #: addons/addons.php:38
51
  msgid "Photo Gallery Add-ons"
52
+ msgstr "Complementos Photo Gallery"
53
 
54
  #: addons/addons.php:71
55
  msgid "GET THIS ADD ON"
56
+ msgstr "OBTENGA ESTE ADD-ON"
57
 
58
  #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:641
59
  #: admin/views/Galleries.php:763 photo-gallery.php:260
60
  msgid "Tags"
61
+ msgstr "Etiquetas"
62
 
63
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
64
  #: admin/controllers/Galleries.php:33 admin/controllers/Galleries.php:80
66
  #: admin/views/Comments.php:106 admin/views/Galleries.php:108
67
  #: admin/views/Galleries.php:203 admin/views/Galleries.php:726
68
  msgid "Publish"
69
+ msgstr "Tasar"
70
 
71
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
72
  #: admin/controllers/Galleries.php:34 admin/controllers/Galleries.php:81
73
  msgid "published"
74
+ msgstr "publicado"
75
 
76
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
77
  #: admin/controllers/Galleries.php:37 admin/controllers/Galleries.php:84
78
  #: admin/views/Albums.php:103 admin/views/Comments.php:106
79
  #: admin/views/Galleries.php:108 admin/views/Galleries.php:726
80
  msgid "Unpublish"
81
+ msgstr "Despublicar"
82
 
83
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
84
  #: admin/controllers/Galleries.php:38 admin/controllers/Galleries.php:85
85
  msgid "unpublished"
86
+ msgstr "no publicado"
87
 
88
  #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
89
  #: admin/views/Albums.php:104 admin/views/Themes.php:100
90
  msgid "Duplicate"
91
+ msgstr "Duplicar"
92
 
93
  #: admin/controllers/Albums.php:47
94
  msgid "duplicate"
95
+ msgstr "duplicar"
96
 
97
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
98
  #: admin/controllers/Galleries.php:41 admin/controllers/Galleries.php:88
100
  #: admin/views/Albums.php:105 admin/views/Comments.php:109
101
  #: admin/views/Galleries.php:109 admin/views/Galleries.php:733
102
  #: admin/views/Ratings.php:84 admin/views/Themes.php:101
 
 
103
  msgid "Delete"
104
+ msgstr "Eliminar"
105
 
106
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
107
  #: admin/controllers/Galleries.php:42 admin/controllers/Galleries.php:89
108
  #: admin/controllers/Ratings.php:42 admin/controllers/Themes.php:44
109
  msgid "deleted"
110
+ msgstr "borrado"
111
 
112
  #: admin/controllers/Albums.php:93 photo-gallery.php:257
113
  msgid "Gallery Groups"
114
+ msgstr "Grupos de la galería"
115
 
116
  #: admin/controllers/Albumsgalleries.php:50
117
  msgid "Galleries / Gallery groups"
118
+ msgstr "Galerías / grupos de galerías"
119
 
120
  #: admin/controllers/Comments.php:93 photo-gallery.php:268
 
 
121
  msgid "Comments"
122
+ msgstr "Comentarios"
123
 
124
  #: admin/controllers/Comments.php:129 admin/controllers/Ratings.php:134
125
  msgid "Filter by gallery"
126
+ msgstr "Filtrar por galería"
127
 
128
  #: admin/controllers/Comments.php:133 admin/controllers/Ratings.php:138
129
  msgid "Filter by image"
130
+ msgstr "Filtrar por imagen"
131
 
132
  #: admin/controllers/Galleries.php:48 admin/views/Galleries.php:565
133
  msgid "Resize"
134
+ msgstr "Cambiar tamaño"
135
 
136
  #: admin/controllers/Galleries.php:49
137
  msgid "resized"
138
+ msgstr "redimensionado"
139
 
140
  #: admin/controllers/Galleries.php:52
141
  msgid "Recreate thumbnail"
142
+ msgstr "Recrear miniatura"
143
 
144
  #: admin/controllers/Galleries.php:53
145
  msgid "recreated"
146
+ msgstr "recreado"
147
 
148
  #: admin/controllers/Galleries.php:56
149
  msgid "Rotate left"
150
+ msgstr "Girar a izquierda"
151
 
152
  #: admin/controllers/Galleries.php:57
 
 
153
  msgid "rotated left"
154
+ msgstr "girar a la izquierda"
155
 
156
  #: admin/controllers/Galleries.php:60
157
  msgid "Rotate right"
158
+ msgstr "Girar a derecha"
159
 
160
  #: admin/controllers/Galleries.php:61
161
  msgid "rotated right"
162
+ msgstr "girar a la derecha"
163
 
164
  #: admin/controllers/Galleries.php:64 admin/views/Options.php:1617
165
  msgid "Set watermark"
166
+ msgstr "Establecer marca de agua"
167
 
168
  #: admin/controllers/Galleries.php:65 admin/controllers/Galleries.php:73
169
  #: admin/controllers/Galleries.php:77
170
  msgid "edited"
171
+ msgstr "editado"
172
 
173
  #: admin/controllers/Galleries.php:68 admin/views/Galleries.php:723
174
  #: admin/views/Themes.php:185 framework/WDWLibrary.php:317
178
  msgstr "Restablecer"
179
 
180
  #: admin/controllers/Galleries.php:69
 
 
181
  msgid "reset"
182
+ msgstr "restablecer"
183
 
184
  #: admin/controllers/Galleries.php:72 admin/views/Albums.php:102
185
  #: admin/views/Galleries.php:107 admin/views/Galleries.php:716
186
  #: admin/views/Themes.php:99
187
  msgid "Edit"
188
+ msgstr "Editar"
189
 
190
  #: admin/controllers/Galleries.php:76 admin/views/Galleries.php:781
191
  msgid "Add tag"
192
+ msgstr "Añadir etiqueta"
193
 
194
  #: admin/controllers/Galleries.php:137 photo-gallery.php:1478
 
 
195
  msgid "Galleries"
196
+ msgstr "Galerías"
197
 
198
  #: admin/controllers/Galleries.php:437 admin/controllers/Options.php:191
199
  msgid "Item Succesfully Saved."
200
+ msgstr "Artículo exitosamente guardado."
201
 
202
  #: admin/controllers/Galleries.php:441
203
+ msgid " Selected pricelist item longest dimension greater than some original images dimensions."
204
+ msgstr " Elemento seleccionado de la lista de precios dimensión más larga mayor que algunas dimensiones de las imágenes originales."
 
 
205
 
206
  #: admin/controllers/Galleries.php:471 admin/views/Galleries.php:749
207
+ msgid "Selected pricelist item longest dimension greater than some original images dimensions."
208
+ msgstr "Elemento seleccionado de la lista de precios dimensión más larga mayor que algunas dimensiones de las imágenes originales."
 
 
209
 
210
  #: admin/controllers/Options.php:62
211
  msgid "Edit options"
212
+ msgstr "Editar opciones"
213
 
214
  #: admin/controllers/Options.php:106
215
  msgid "Default values restored. Changes must be saved."
216
+ msgstr "Valores predeterminados restaurados Los cambios deben ser guardados."
217
 
218
  #: admin/controllers/Options.php:137
219
  msgid "Uploads directory doesn't exist. Old value is restored."
220
+ msgstr "El directorio de cargas no existe. El valor anterior se restaura."
221
 
222
  #: admin/controllers/Options.php:140
223
+ msgid "Warning: \"photo-gallery\" folder already exists in uploads directory. Old value is restored."
224
+ msgstr "Advertencia: la carpeta \\ \"photo-gallery \" ya existe en el directorio de carga. El valor anterior se restaura."
 
 
225
 
226
  #: admin/controllers/Options.php:180
227
  msgid "All thumbnails are successfully recreated."
228
+ msgstr "Todas las miniaturas se recrean con éxito."
229
 
230
  #: admin/controllers/Options.php:207
231
  msgid "All images are successfully watermarked."
232
+ msgstr "Todas las imágenes tienen una marca de agua exitosa."
233
 
234
  #: admin/controllers/Options.php:212
235
  msgid "All images are successfully reset."
236
+ msgstr "Todas las imágenes se restablecen con éxito."
237
 
238
  #: admin/controllers/Ratings.php:86 photo-gallery.php:271
239
  msgid "Ratings"
240
+ msgstr "Valoraciones"
241
 
242
  #: admin/controllers/Shortcode.php:36 admin/controllers/Themes.php:279
243
  #: admin/controllers/Themes.php:317 admin/controllers/WidgetSlideshow.php:44
244
  #: admin/views/Options.php:1497 admin/views/Options.php:1641
245
  #: admin/views/Shortcode.php:1387
246
  msgid "None"
247
+ msgstr "Nada"
248
 
249
  #: admin/controllers/Shortcode.php:37 admin/controllers/WidgetSlideshow.php:45
250
  msgid "Cube Horizontal"
251
+ msgstr "Cubo horizontal"
252
 
253
  #: admin/controllers/Shortcode.php:38 admin/controllers/WidgetSlideshow.php:46
254
  msgid "Cube Vertical"
255
+ msgstr "Cubo Vertical"
256
 
257
  #: admin/controllers/Shortcode.php:39 admin/controllers/WidgetSlideshow.php:47
258
  msgid "Fade"
259
+ msgstr "Fundido"
260
 
261
  #: admin/controllers/Shortcode.php:40 admin/controllers/WidgetSlideshow.php:48
262
  msgid "Slice Horizontal"
263
+ msgstr "Rebanada horizontal"
264
 
265
  #: admin/controllers/Shortcode.php:41 admin/controllers/WidgetSlideshow.php:49
266
  msgid "Slice Vertical"
267
+ msgstr "Rebanada vertical"
268
 
269
  #: admin/controllers/Shortcode.php:42 admin/controllers/WidgetSlideshow.php:50
270
  msgid "Slide Horizontal"
271
+ msgstr "Deslizamiento horizontal"
272
 
273
  #: admin/controllers/Shortcode.php:43 admin/controllers/WidgetSlideshow.php:51
274
  msgid "Slide Vertical"
275
+ msgstr "Deslizamiento Vertical"
276
 
277
  #: admin/controllers/Shortcode.php:44 admin/controllers/WidgetSlideshow.php:52
278
  msgid "Scale Out"
279
+ msgstr "Aumentar escala"
280
 
281
  #: admin/controllers/Shortcode.php:45 admin/controllers/WidgetSlideshow.php:53
282
  msgid "Scale In"
283
+ msgstr "Reducir escala"
284
 
285
  #: admin/controllers/Shortcode.php:46 admin/controllers/WidgetSlideshow.php:54
286
  msgid "Block Scale"
287
+ msgstr "Escala de bloque"
288
 
289
  #: admin/controllers/Shortcode.php:47 admin/controllers/WidgetSlideshow.php:55
290
  msgid "Kaleidoscope"
291
+ msgstr "Caleidoscopio"
292
 
293
  #: admin/controllers/Shortcode.php:48 admin/controllers/WidgetSlideshow.php:56
294
  msgid "Fan"
295
+ msgstr "Ventilador"
296
 
297
  #: admin/controllers/Shortcode.php:49 admin/controllers/WidgetSlideshow.php:57
298
  msgid "Blind Horizontal"
299
+ msgstr "Persiana horizontal"
300
 
301
  #: admin/controllers/Shortcode.php:50 admin/controllers/WidgetSlideshow.php:58
302
  msgid "Blind Vertical"
303
+ msgstr "Persiana vertical"
304
 
305
  #: admin/controllers/Shortcode.php:51 admin/controllers/WidgetSlideshow.php:59
306
  #: admin/views/Shortcode.php:615 admin/views/Widget.php:156
311
  #: admin/controllers/Shortcode.php:55 admin/views/Shortcode.php:74
312
  #: photo-gallery.php:1326
313
  msgid "Thumbnails"
314
+ msgstr "Miniaturas"
315
 
316
  #: admin/controllers/Shortcode.php:56 admin/controllers/Shortcode.php:65
317
  #: admin/controllers/Themes.php:265 admin/views/Options.php:456
321
  #: admin/views/Shortcode.php:1061 admin/views/Widget.php:136
322
  #: photo-gallery.php:1330
323
  msgid "Masonry"
324
+ msgstr "Masonry"
325
 
326
  #: admin/controllers/Shortcode.php:57 admin/controllers/Themes.php:266
327
  #: admin/views/Options.php:493 admin/views/Options.php:511
330
  #: admin/views/Shortcode.php:1019 admin/views/Shortcode.php:1062
331
  #: admin/views/Shortcode.php:1068 photo-gallery.php:1334
332
  msgid "Mosaic"
333
+ msgstr "Mosaico"
334
 
335
  #: admin/controllers/Shortcode.php:58 admin/controllers/Themes.php:267
336
  #: admin/views/Options.php:651 admin/views/Shortcode.php:100
337
  #: photo-gallery.php:1300 photo-gallery.php:1338
338
  msgid "Slideshow"
339
+ msgstr "Galería"
340
 
341
  #: admin/controllers/Shortcode.php:59 admin/views/Options.php:540
342
  #: admin/views/Shortcode.php:106 photo-gallery.php:1342
343
  msgid "Image Browser"
344
+ msgstr "Navegador de imágenes"
345
 
346
  #: admin/controllers/Shortcode.php:60 admin/views/Options.php:583
347
  #: admin/views/Shortcode.php:112 photo-gallery.php:1358
348
  msgid "Blog Style"
349
+ msgstr "Estilo del Blog"
350
 
351
  #: admin/controllers/Shortcode.php:61 admin/controllers/Themes.php:275
352
  #: admin/views/Options.php:866 admin/views/Shortcode.php:121
353
  #: photo-gallery.php:1370
354
  msgid "Carousel"
355
+ msgstr "Carrusel"
356
 
357
  #: admin/controllers/Shortcode.php:64 admin/views/Shortcode.php:146
358
  msgid "Compact"
359
+ msgstr "Compacto"
360
 
361
  #: admin/controllers/Shortcode.php:66 admin/views/Shortcode.php:161
362
  msgid "Extended"
363
+ msgstr "Extendido"
364
 
365
  #: admin/controllers/Themes.php:40
366
  msgid "duplicated"
367
+ msgstr "duplicado"
368
 
369
  #: admin/controllers/Themes.php:88 photo-gallery.php:264
370
  msgid "Themes"
371
+ msgstr "Temas"
372
 
373
  #: admin/controllers/Themes.php:264 admin/views/Options.php:1016
374
  #: admin/views/Shortcode.php:1011 admin/views/Shortcode.php:1060
375
  #: admin/views/Widget.php:135
376
  msgid "Thumbnail"
377
+ msgstr "Miniatura"
378
 
379
  #: admin/controllers/Themes.php:268
380
  msgid "Image browser"
381
+ msgstr "Navegador de imágenes"
382
 
383
  #: admin/controllers/Themes.php:269
384
  msgid "Compact album"
385
+ msgstr "Álbum compacto"
386
 
387
  #: admin/controllers/Themes.php:270
388
  msgid "Masonry album"
389
+ msgstr "Álbum de mampostería"
390
 
391
  #: admin/controllers/Themes.php:271
392
  msgid "Extended album"
393
+ msgstr "Álbum extendido"
394
 
395
  #: admin/controllers/Themes.php:272
396
  msgid "Blog style"
397
+ msgstr "Estilo del Blog"
398
 
399
  #: admin/controllers/Themes.php:273 admin/views/Options.php:78
400
  #: admin/views/Shortcode.php:1115 admin/views/WidgetTags.php:98
401
  #: photo-gallery.php:1292 photo-gallery.php:1362
402
  msgid "Lightbox"
403
+ msgstr "Lightbox"
404
 
405
  #: admin/controllers/Themes.php:274
406
  msgid "Navigation"
407
+ msgstr "Navegación"
408
 
409
  #: admin/controllers/Themes.php:280
410
  msgid "Solid"
411
+ msgstr "Solido"
412
 
413
  #: admin/controllers/Themes.php:281
414
  msgid "Dotted"
415
+ msgstr "Punteado"
416
 
417
  #: admin/controllers/Themes.php:282
418
  msgid "Dashed"
419
+ msgstr "Discontinua"
420
 
421
  #: admin/controllers/Themes.php:283 admin/controllers/Themes.php:326
422
  msgid "Double"
423
+ msgstr "Doble"
424
 
425
  #: admin/controllers/Themes.php:284
426
  msgid "Groove"
427
+ msgstr "Surco"
428
 
429
  #: admin/controllers/Themes.php:285
430
  msgid "Ridge"
431
+ msgstr "Ridge"
432
 
433
  #: admin/controllers/Themes.php:286
434
  msgid "Inset"
435
+ msgstr "Recuadro"
436
 
437
  #: admin/controllers/Themes.php:287
438
  msgid "Outset"
439
+ msgstr "Comienzo"
440
 
441
  #: admin/controllers/Themes.php:305 admin/views/Themes.php:1161
442
  #: admin/views/Themes.php:3721 admin/views/Themes.php:4203
443
  msgid "Left"
444
+ msgstr "Izquierda"
445
 
446
  #: admin/controllers/Themes.php:306
447
  msgid "Center"
448
+ msgstr "Centrar"
449
 
450
  #: admin/controllers/Themes.php:307 admin/views/Themes.php:1159
451
  #: admin/views/Themes.php:3719 admin/views/Themes.php:4205
452
  msgid "Right"
453
+ msgstr "Derecha"
454
 
455
  #: admin/controllers/Themes.php:311
456
  msgid "Lighter"
457
+ msgstr "Más ligero"
458
 
459
  #: admin/controllers/Themes.php:312
460
  msgid "Normal"
461
+ msgstr "Media"
462
 
463
  #: admin/controllers/Themes.php:313
464
  msgid "Bold"
465
+ msgstr "Negrita"
466
 
467
  #: admin/controllers/Themes.php:318
468
  msgid "Rotate"
469
+ msgstr "Rotar"
470
 
471
  #: admin/controllers/Themes.php:319
472
  msgid "Scale"
473
+ msgstr "Escala"
474
 
475
  #: admin/controllers/Themes.php:320
476
  msgid "Skew"
477
+ msgstr "Sesgar"
478
 
479
  #: admin/controllers/Themes.php:324
480
  msgid "Chevron"
481
+ msgstr "Chevron"
482
 
483
  #: admin/controllers/Themes.php:325
484
  msgid "Angle"
485
+ msgstr "Angulo"
486
 
487
  #: admin/controllers/Themes.php:330
488
  msgid "Star"
489
+ msgstr "Estrella"
490
 
491
  #: admin/controllers/Themes.php:331
492
  msgid "Bell"
493
+ msgstr "Campana"
494
 
495
  #: admin/controllers/Themes.php:332
496
  msgid "Circle"
497
+ msgstr "Circulo"
498
 
499
  #: admin/controllers/Themes.php:333
500
  msgid "Flag"
501
+ msgstr "Flag"
502
 
503
  #: admin/controllers/Themes.php:334
504
  msgid "Heart"
505
+ msgstr "Corazón"
506
 
507
  #: admin/controllers/Themes.php:335
508
  msgid "Square"
509
+ msgstr "Cuadrado"
510
 
511
  #: admin/controllers/Uninstall.php:46 admin/controllers/Uninstall.php:86
512
  #: admin/views/Options.php:332
513
  #, php-format
514
  msgid "Uninstall %s"
515
+ msgstr "Desinstalar %s"
516
 
517
  #: admin/controllers/Widget.php:14
518
  msgid "Add Photo Gallery albums or galleries to Your widget area."
519
+ msgstr "Agrega álbumes o galerías de la galería de fotos a tu área de widgets."
520
 
521
  #: admin/controllers/WidgetSlideshow.php:14
522
  msgid "Add Photo Gallery slideshow to Your widget area."
523
+ msgstr "Agregue la galería de fotos a su área de widgets."
524
 
525
  #: admin/controllers/WidgetTags.php:14
526
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
527
+ msgstr "Agregar fotos de la galería de fotos de la nube dinámica a su área de widgets."
528
 
529
  #: admin/models/Comments.php:61 admin/models/Ratings.php:81
530
  msgid "All galleries"
531
+ msgstr "Todas las galerias"
532
 
533
  #: admin/models/Comments.php:75 admin/models/Ratings.php:100
534
  msgid "All images"
535
+ msgstr "Todas las imágenes"
536
 
537
  #: admin/views/AddTags.php:65 admin/views/Albums.php:50
538
  #: admin/views/Comments.php:61 admin/views/Themes.php:72
539
  msgid "Select all"
540
+ msgstr "Seleccionar todo"
541
 
542
  #: admin/views/AddTags.php:68 admin/views/AddTags.php:86
543
  #: admin/views/Albums.php:89 admin/views/Comments.php:64
553
 
554
  #: admin/views/AddTags.php:107
555
  msgid "Add to image"
556
+ msgstr "Añadir a la imagen"
557
 
558
  #: admin/views/AdminView.php:94
559
  msgid "Add New"
560
+ msgstr "Add New"
561
 
562
  #: admin/views/AdminView.php:164 framework/WDWLibrary.php:316
563
  #: framework/WDWLibrary.php:494 framework/WDWLibrary.php:817
566
  msgstr "Buscar"
567
 
568
  #: admin/views/AdminView.php:226
 
 
569
  msgid "First page"
570
+ msgstr "Primera página"
571
 
572
  #: admin/views/AdminView.php:227
 
 
573
  msgid "Previous page"
574
+ msgstr "Anterior página"
575
 
576
  #: admin/views/AdminView.php:232
577
  msgid "Current Page"
578
+ msgstr "Página Actual"
579
 
580
  #: admin/views/AdminView.php:235 framework/WDWLibrary.php:447
581
  #: framework/WDWLibrary.php:596 framework/WDWLibrary.php:679
583
  msgstr "de"
584
 
585
  #: admin/views/AdminView.php:248
 
 
586
  msgid "Next page"
587
+ msgstr "Siguiente página"
588
 
589
  #: admin/views/AdminView.php:249
 
 
590
  msgid "Last page"
591
+ msgstr "Última página"
592
 
593
  #: admin/views/AdminView.php:281 filemanager/view.php:248
594
  msgid "Select All"
595
+ msgstr "Seleccionar todo"
596
 
597
  #: admin/views/AdminView.php:286
598
  msgid "Select bulk action"
599
+ msgstr "Seleccionar acción masiva"
600
 
601
  #: admin/views/AdminView.php:288
602
  msgid "Bulk Actions"
603
+ msgstr "Acciones masivas"
604
 
605
  #: admin/views/AdminView.php:297
606
  msgid "Apply"
607
+ msgstr "Aplicar"
608
 
609
  #: admin/views/Albums.php:53 admin/views/Albumsgalleries.php:77
610
  #: admin/views/Albumsgalleries.php:101 admin/views/Shortcode.php:609
611
  #: admin/views/Themes.php:75 admin/views/Themes.php:94
612
  msgid "Title"
613
+ msgstr "Título"
614
 
615
  #: admin/views/Albums.php:54 admin/views/Albums.php:112
616
  #: admin/views/Albums.php:255 admin/views/Galleries.php:56
617
  #: admin/views/Galleries.php:117 admin/views/Galleries.php:305
618
  msgid "Author"
619
+ msgstr "Autor"
620
 
621
  #: admin/views/Albums.php:98 admin/views/Albums.php:345
622
  #: admin/views/Albumsgalleries.php:110 admin/views/Comments.php:99
623
  #: admin/views/Galleries.php:103 admin/views/Galleries.php:712
624
  msgid "Unpublished"
625
+ msgstr "No publicado"
626
 
627
  #: admin/views/Albums.php:105 admin/views/Comments.php:109
628
  #: admin/views/Galleries.php:109 admin/views/Galleries.php:727
629
  #: admin/views/Ratings.php:84 admin/views/Themes.php:101
630
  msgid "Do you want to delete selected item?"
631
+ msgstr "¿Quieres eliminar el elemento seleccionado?"
632
 
633
  #: admin/views/Albums.php:106 admin/views/Albums.php:182
634
  #: admin/views/Galleries.php:110 admin/views/Galleries.php:207
 
 
635
  msgid "Preview"
636
+ msgstr "Previsualizar"
637
 
638
  #: admin/views/Albums.php:109 admin/views/Albumsgalleries.php:114
639
  #: admin/views/Comments.php:112 admin/views/Galleries.php:113
640
  #: admin/views/Galleries.php:736 admin/views/Ratings.php:87
641
  #: admin/views/Themes.php:104
 
 
642
  msgid "Show more details"
643
+ msgstr "Mostrar más detalles"
644
 
645
  #: admin/views/Albums.php:166
646
  msgid "Gallery Group Title"
647
+ msgstr "Título del grupo de la galería"
648
 
649
  #: admin/views/Albums.php:173 admin/views/Albums.php:295
650
  #: admin/views/Galleries.php:195 admin/views/Galleries.php:265
651
  msgid "How to use"
652
+ msgstr "Cómo utilizar"
653
 
654
  #: admin/views/Albums.php:179 admin/views/Galleries.php:203
655
  #: admin/views/Galleries.php:575 admin/views/Shortcode.php:1631
656
  #: admin/views/Shortcode.php:2888 admin/views/Themes.php:175
657
  msgid "Update"
658
+ msgstr "Refrescar"
659
 
660
  #: admin/views/Albums.php:193 admin/views/Galleries.php:228
661
  msgid "Preview image"
662
+ msgstr "Previsualizar Imagen"
663
 
664
  #: admin/views/Albums.php:195 admin/views/Galleries.php:232
665
  msgid "Add Preview Image"
666
+ msgstr "Agregar imagen de previsualización"
667
 
668
  #: admin/views/Albums.php:196 admin/views/Albums.php:238
669
  #: admin/views/Galleries.php:235 admin/views/Galleries.php:490
670
  #: filemanager/view.php:256
671
  msgid "Add"
672
+ msgstr "Añadir"
673
 
674
  #: admin/views/Albums.php:204 admin/views/Galleries.php:245
675
  msgid "Published"
676
+ msgstr "Publicado"
677
 
678
  #: admin/views/Albums.php:206 admin/views/Galleries.php:247
679
  #: admin/views/Options.php:132 admin/views/Options.php:157
745
  #: wd/includes/overview.php:227 wd/includes/overview.php:234
746
  #: wd/includes/overview.php:241 wd/includes/overview.php:251
747
  msgid "Yes"
748
+ msgstr ""
749
 
750
  #: admin/views/Albums.php:208 admin/views/Galleries.php:249
751
  #: admin/views/Options.php:133 admin/views/Options.php:158
817
  #: wd/includes/overview.php:236 wd/includes/overview.php:243
818
  #: wd/includes/overview.php:246 wd/includes/overview.php:251
819
  msgid "No"
820
+ msgstr "No"
821
 
822
  #: admin/views/Albums.php:219
823
  msgid "Galleries and Gallery Groups"
824
+ msgstr "Galerías y grupos de galerías"
825
 
826
  #: admin/views/Albums.php:247 admin/views/Albums.php:291
827
  #: admin/views/Galleries.php:219 admin/views/Galleries.php:261
831
  #: admin/views/Options.php:862 admin/views/Shortcode.php:266
832
  #: admin/views/Shortcode.php:1111
833
  msgid "Toggle panel:"
834
+ msgstr "Panel de alternativas:"
835
 
836
  #: admin/views/Albums.php:251 admin/views/Galleries.php:298
837
  #: admin/views/Options.php:81 admin/views/Shortcode.php:1344
838
  msgid "Advanced"
839
+ msgstr "Avanzado"
840
 
841
  #: admin/views/Albums.php:259 admin/views/Galleries.php:309
842
  msgid "Slug"
843
+ msgstr "Slug"
844
 
845
  #: admin/views/Albums.php:264 admin/views/Galleries.php:314
846
  #: admin/views/Galleries.php:635 admin/views/Galleries.php:742
847
  #: frontend/views/BWGViewGalleryBox.php:1584
848
  msgid "Description"
849
+ msgstr "Descripción"
850
 
851
  #: admin/views/Albums.php:300 admin/views/Galleries.php:270
852
  msgid "Page or Post editor"
853
+ msgstr "Editor de página o publicación"
854
 
855
  #: admin/views/Albums.php:301 admin/views/Galleries.php:271
856
  msgid "Insert it into an existing post with the button."
857
+ msgstr "Insértalo en una publicación existente con el botón."
858
 
859
  #: admin/views/Albums.php:302 admin/views/Galleries.php:272
860
  msgid "Post editor"
861
+ msgstr "Editor de publicaciones"
862
 
863
  #: admin/views/Albums.php:305 admin/views/Galleries.php:275
864
  msgid "PHP code"
865
+ msgstr "Código PHP"
866
 
867
  #: admin/views/Albums.php:306 admin/views/Galleries.php:276
868
  msgid "Copy and paste the PHP code into your template file."
869
+ msgstr "Copie y pegue el código PHP en su archivo de plantilla."
870
 
871
  #: admin/views/Albums.php:310 admin/views/Albums.php:312
872
  #: admin/views/Galleries.php:280 admin/views/Galleries.php:282
873
  msgid "Widget"
874
+ msgstr "Widget"
875
 
876
  #: admin/views/Albums.php:311 admin/views/Galleries.php:281
877
  msgid "Insert as Widget."
878
+ msgstr "Insertar como Widget."
879
 
880
  #: admin/views/Albums.php:336 admin/views/Galleries.php:689
881
  msgid "Drag to re-order"
882
+ msgstr "Arrastrar para reordenar"
883
 
884
  #: admin/views/Albums.php:344
885
  msgid "Remove"
886
+ msgstr "Borrar"
887
 
888
  #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:117
889
  #: admin/views/Galleries.php:708 admin/views/Shortcode.php:613
890
  msgid "Type"
891
+ msgstr "Tipo"
892
 
893
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:75
894
  #: admin/views/Shortcode.php:66 admin/views/Shortcode.php:270
 
 
895
  msgid "Gallery group"
896
+ msgstr "Grupo de galerías"
897
 
898
  #: admin/views/Albumsgalleries.php:118 admin/views/Options.php:72
899
  #: admin/views/Shortcode.php:63 admin/views/Shortcode.php:192
900
  #: admin/views/Shortcode.php:270 admin/views/Widget.php:117
901
  msgid "Gallery"
902
+ msgstr "Galería"
903
 
904
  #: admin/views/Albumsgalleries.php:136
905
  msgid "Add to Gallery Group"
906
+ msgstr "Agregar al grupo de la galería"
907
 
908
  #: admin/views/Comments.php:67 admin/views/Comments.php:118
909
  #: frontend/views/BWGViewGalleryBox.php:1431
921
 
922
  #: admin/views/Editimage.php:196
923
  msgid "You can't crop this type of image."
924
+ msgstr "No puedes recortar este tipo de imagen."
925
 
926
  #: admin/views/Editimage.php:277
927
  msgid "The thumbnail successfully croped."
928
+ msgstr "La miniatura se recortó con éxito."
929
 
930
  #: admin/views/Editimage.php:282
931
  msgid "Select the area for the thumbnail."
932
+ msgstr "Seleccione el área para la miniatura."
933
 
934
  #: admin/views/Editimage.php:287
935
  msgid "Keep aspect ratio"
936
+ msgstr "Mantener la relación de aspecto"
937
 
938
  #: admin/views/Editimage.php:785
939
  msgid "Grayscale"
940
+ msgstr "Escala de grises"
941
 
942
  #: admin/views/Editimage.php:789
943
  msgid "Negative"
944
+ msgstr "Negativa"
945
 
946
  #: admin/views/Editimage.php:793
947
  msgid "Removal"
948
+ msgstr "Remover"
949
 
950
  #: admin/views/Editimage.php:797
951
  msgid "Sepia"
952
+ msgstr "Sepia"
953
 
954
  #: admin/views/Editimage.php:801
955
  msgid "Slate"
956
+ msgstr "Pizarra"
957
 
958
  #: admin/views/Editimage.php:805
959
  msgid "Saturate"
960
+ msgstr "Saturar"
961
 
962
  #: admin/views/Editimage.php:809 admin/views/Galleries.php:718
963
  msgid "Do you want to reset the image?"
964
+ msgstr "¿Quieres restablecer la imagen?"
965
 
966
  #: admin/views/Editimage.php:811
 
 
967
  msgid "Reset image"
968
+ msgstr "Restablecer imagen"
969
 
970
  #: admin/views/Editimage.php:838
971
  msgid "Brightness"
972
+ msgstr "Brillo"
973
 
974
  #: admin/views/Editimage.php:840 admin/views/Editimage.php:866
975
  msgid "Press for result"
976
+ msgstr "Presione para resultado"
977
 
978
  #: admin/views/Editimage.php:864
979
  msgid "Contrast"
980
+ msgstr "Contraste"
981
 
982
  #: admin/views/Galleries.php:55 admin/views/Galleries.php:116
983
  msgid "Images count"
984
+ msgstr "Contador de imágenes"
985
 
986
  #: admin/views/Galleries.php:188
 
 
987
  msgid "Gallery title"
988
+ msgstr "Título de la galería"
989
 
990
  #: admin/views/Galleries.php:223
991
  msgid "Basic"
992
+ msgstr "Básico"
993
 
994
  #: admin/views/Galleries.php:340
995
  msgid "Gallery content type"
996
+ msgstr "Tipo de contenido de la galería"
997
 
998
  #: admin/views/Galleries.php:343
999
  msgid "Mixed"
1000
+ msgstr "Mezclado"
1001
 
1002
  #: admin/views/Galleries.php:346
1003
  msgid "Instagram only"
1004
+ msgstr "Solo Instagram"
1005
 
1006
  #: admin/views/Galleries.php:349 admin/views/Options.php:1474
 
 
1007
  msgid "Facebook"
1008
+ msgstr "Facebook"
1009
 
1010
  #: admin/views/Galleries.php:357
1011
  msgid "Instagram username"
1012
+ msgstr "Nombre de usuario de Instagram"
1013
 
1014
  #: admin/views/Galleries.php:361
1015
  msgid "Number of Instagram recent posts to add to gallery"
1016
+ msgstr "Número de publicaciones recientes de Instagram para agregar a la galería"
1017
 
1018
  #: admin/views/Galleries.php:365
1019
  msgid "Instagram embed type"
1020
+ msgstr "Tipo de inserción de Instagram"
1021
 
1022
  #: admin/views/Galleries.php:367 admin/views/Galleries.php:540
1023
  msgid "Content"
1024
+ msgstr "Contenido"
1025
 
1026
  #: admin/views/Galleries.php:369 admin/views/Galleries.php:542
1027
  msgid "Whole post"
1028
+ msgstr "Toda la publicación"
1029
 
1030
  #: admin/views/Galleries.php:372
 
 
1031
  msgid "Gallery autoupdate option"
1032
+ msgstr "Opción de auto actualizado de galería"
1033
 
1034
  #: admin/views/Galleries.php:374
1035
  msgid "No update"
1036
+ msgstr "Ninguna actualización"
1037
 
1038
  #: admin/views/Galleries.php:376
1039
  msgid "Add new media, keep old ones published."
1040
+ msgstr "Agregue nuevos medios, mantenga publicados los anteriores."
1041
 
1042
  #: admin/views/Galleries.php:378
1043
  msgid "Add new media, unpublish old ones."
1044
+ msgstr "Agregue nuevos medios, anule la publicación de los antiguos."
1045
 
1046
  #: admin/views/Galleries.php:381
1047
  msgid "Add Instagram Gallery"
1048
+ msgstr "Agregar Galería de Instagram"
1049
 
1050
  #: admin/views/Galleries.php:390 admin/views/Options.php:1481
1051
  msgid "Photo Gallery Facebook Integration"
1052
+ msgstr "Galería de fotos Integración de Facebook"
1053
 
1054
  #: admin/views/Galleries.php:391 admin/views/Options.php:1482
1055
  #, php-format
1056
  msgid "Please install %s add-on to use this feature."
1057
+ msgstr "Instale %s add-on para usar esta característica."
1058
 
1059
  #: admin/views/Galleries.php:415 admin/views/Galleries.php:418
1060
  msgid "Add Images"
1061
+ msgstr "Añadir Imágenes"
1062
 
1063
  #: admin/views/Galleries.php:420
1064
  msgid "Import from Media Library"
1065
+ msgstr "Importar desde la biblioteca multimedia"
1066
 
1067
  #: admin/views/Galleries.php:427 admin/views/Galleries.php:429
1068
  msgid "Embed Media"
1069
+ msgstr "Incrustar medios"
1070
 
1071
  #: admin/views/Galleries.php:430 admin/views/Galleries.php:432
1072
  msgid "Social Bulk Embed"
1073
+ msgstr "Embolsado social a granel"
1074
 
1075
  #: admin/views/Galleries.php:435
1076
  msgid "Optimize Images"
1077
+ msgstr "Optimizar imágenes"
1078
 
1079
  #: admin/views/Galleries.php:452
1080
  msgid "Pricelist"
1081
+ msgstr "Lista de Precios"
1082
 
1083
  #: admin/views/Galleries.php:453
1084
  msgid "Add pricelist"
1085
+ msgstr "Agregar lista de precios"
1086
 
1087
  #: admin/views/Galleries.php:454
1088
  msgid "Remove pricelist"
1089
+ msgstr "Eliminar la lista de precios"
1090
 
1091
  #: admin/views/Galleries.php:471
1092
+ msgid "Enter YouTube, Vimeo, Instagram, Facebook, Flickr or Dailymotion URL here."
1093
+ msgstr "Ingrese a YouTube, Vimeo, Instagram, Facebook, Flickr o Dailymotion URL aquí."
 
1094
 
1095
  #: admin/views/Galleries.php:472 admin/views/Galleries.php:510
1096
  msgid "Add to gallery"
1097
+ msgstr "Agregar Fotos"
1098
 
1099
  #: admin/views/Galleries.php:473 admin/views/Galleries.php:509
1100
  #: admin/views/Galleries.php:566 admin/views/Galleries.php:576
1101
  #: filemanager/view.php:262 filemanager/view.php:263
1102
  #: wd/templates/display_deactivation_popup.php:23
1103
  msgid "Cancel"
1104
+ msgstr "Cancel"
1105
 
1106
  #: admin/views/Galleries.php:480
1107
  msgid "<b>Youtube</b> URL example:"
1108
+ msgstr "<b> Youtube </ b> Ejemplo de URL:"
1109
 
1110
  #: admin/views/Galleries.php:484
1111
  msgid "<b>Vimeo</b> URL example:"
1112
+ msgstr "<b> Vimeo </ b> Ejemplo de URL:"
1113
 
1114
  #: admin/views/Galleries.php:488
1115
  msgid "<b>Instagram</b> URL example:"
1116
+ msgstr "<b> Instagram </ b> Ejemplo de URL:"
1117
 
1118
  #: admin/views/Galleries.php:490
1119
  msgid "post"
1120
+ msgstr "entrada"
1121
 
1122
  #: admin/views/Galleries.php:490
1123
+ msgid "to the end of URL if you want to embed the whole Instagram post, not only its content."
1124
+ msgstr "hasta el final de la URL si desea insertar toda la publicación de Instagram, no solo su contenido."
 
 
1125
 
1126
  #: admin/views/Galleries.php:498
1127
  msgid "<b>Flickr</b> URL example:"
1128
+ msgstr "<b> Flickr </ b> Ejemplo de URL:"
1129
 
1130
  #: admin/views/Galleries.php:502
1131
  msgid "<b>Dailymotion</b> URL example:"
1132
+ msgstr "<b> Dailymotion </ b> Ejemplo de URL:"
1133
 
1134
  #: admin/views/Galleries.php:521
1135
  msgid "username:"
1136
+ msgstr "nombre:"
1137
 
1138
  #: admin/views/Galleries.php:529
1139
  msgid "Number of Instagram recent posts to add to gallery:"
1140
+ msgstr "Número de publicaciones recientes de Instagram para agregar a la galería:"
1141
 
1142
  #: admin/views/Galleries.php:537
1143
  msgid "embed type:"
1144
+ msgstr "tipo de inserción:"
1145
 
1146
  #: admin/views/Galleries.php:556
1147
  msgid "Resize images to: "
1148
+ msgstr "Cambiar el tamaño de las imágenes a: "
1149
 
1150
  #: admin/views/Galleries.php:559
1151
  msgid "The maximum size of resized image."
1152
+ msgstr "El tamaño máximo de la imagen redimensionada."
1153
 
1154
  #: admin/views/Galleries.php:580
1155
  msgid "Alt/Title: "
1156
+ msgstr "Alt / Título: "
1157
 
1158
  #: admin/views/Galleries.php:587
1159
  msgid "Redirect URL: "
1160
+ msgstr "Redireccionar URL "
1161
 
1162
  #: admin/views/Galleries.php:594
1163
  msgid "Description: "
1164
+ msgstr "Descripción: "
1165
 
1166
  #: admin/views/Galleries.php:613
 
 
1167
  msgid "You have unsaved changes."
1168
+ msgstr "Tienes cambios sin guardar."
1169
 
1170
  #: admin/views/Galleries.php:626 photo-gallery.php:395
 
 
1171
  msgid "Show order column"
1172
+ msgstr "Mostrar columna del orden"
1173
 
1174
  #: admin/views/Galleries.php:629 admin/views/Galleries.php:696
1175
  #: admin/views/Shortcode.php:611 framework/WDWLibrary.php:889
1181
  #: admin/views/Ratings.php:74 admin/views/Shortcode.php:1389
1182
  #: admin/views/WidgetTags.php:86
1183
  msgid "Image"
1184
+ msgstr "Imagen"
1185
 
1186
  #: admin/views/Galleries.php:634 admin/views/Galleries.php:739
1187
  msgid "Alt/Title"
1188
+ msgstr "Alt / Título"
1189
 
1190
  #: admin/views/Galleries.php:638 admin/views/Galleries.php:758
1191
  msgid "Redirect URL"
1192
+ msgstr "Redireccionar URL"
1193
 
1194
  #: admin/views/Galleries.php:705
1195
  msgid "Date modified"
1196
+ msgstr "Fecha modificada"
1197
 
1198
  #: admin/views/Galleries.php:706 admin/views/Shortcode.php:614
1199
  msgid "Resolution"
1200
+ msgstr "Resolución"
1201
 
1202
  #: admin/views/Galleries.php:707 admin/views/Shortcode.php:612
1203
  #: framework/WDWLibrary.php:890
1206
 
1207
  #: admin/views/Galleries.php:717
1208
  msgid "Crop"
1209
+ msgstr "Recortar"
1210
 
1211
  #: admin/views/Galleries.php:772
1212
  msgid "Remove tag"
1213
+ msgstr "Eliminar Etiqueta"
1214
 
1215
  #: admin/views/Options.php:44 admin/views/Themes.php:175
1216
  msgid "Save"
1217
+ msgstr "Salvar"
1218
 
1219
  #: admin/views/Options.php:50
1220
  msgid "Reset all options"
1221
+ msgstr "Reiniciar todas las opciones"
1222
 
1223
  #: admin/views/Options.php:51 admin/views/Themes.php:180
1224
  msgid "Do you want to reset to default?"
1225
+ msgstr "¿Desea restablecer a los valores predeterminados?"
1226
 
1227
  #: admin/views/Options.php:69
1228
  msgid "General"
1229
+ msgstr "General"
1230
 
1231
  #: admin/views/Options.php:90
1232
  msgid "Images directory"
1233
+ msgstr "Directorio de imágenes"
1234
 
1235
  #: admin/views/Options.php:95
1236
+ msgid "Input an existing directory inside the Wordpress directory to store uploaded images.<br />Old directory content will be moved to the new one."
1237
+ msgstr "Ingrese un directorio existente dentro del directorio de Wordpress para almacenar las imágenes cargadas. <br /> El contenido del directorio antiguo se moverá al nuevo."
 
 
1238
 
1239
  #: admin/views/Options.php:100 admin/views/Options.php:899
1240
  msgid "Image dimensions"
1241
+ msgstr "Dimensones de la imagen"
1242
 
1243
  #: admin/views/Options.php:105
1244
  msgid "The maximum size of the uploaded image (0 for original size)."
1245
+ msgstr "El tamaño máximo de la imagen cargada (0 para el tamaño del original)."
1246
 
1247
  #: admin/views/Options.php:110
1248
  msgid "Generated thumbnail dimensions"
1249
+ msgstr "Dimensiones de miniaturas generadas"
1250
 
1251
  #: admin/views/Options.php:114
1252
  msgid "Recreate"
1253
+ msgstr "Recrear"
1254
 
1255
  #: admin/views/Options.php:116
1256
+ msgid "The maximum size of the generated thumbnail. Its dimensions should be larger than the ones of the frontend thumbnail."
1257
+ msgstr "El tamaño máximo de la miniatura generada. Sus dimensiones deben ser más grandes que las de la miniatura frontend."
 
 
1258
 
1259
  #: admin/views/Options.php:121
1260
  msgid "Image quality"
1261
+ msgstr "Calidad de imagen"
1262
 
1263
  #: admin/views/Options.php:125
1264
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1265
+ msgstr "Establecer la calidad de las imágenes de la galería. Proporcione un valor de 0 a 100%."
1266
 
1267
  #: admin/views/Options.php:130 admin/views/Shortcode.php:1351
1268
  msgid "Show search box"
1269
+ msgstr "Mostrar cuadro de búsqueda"
1270
 
1271
  #: admin/views/Options.php:139
1272
  msgid "Add placeholder to search"
1273
+ msgstr "Añadir marcador de posición para buscar"
1274
 
1275
  #: admin/views/Options.php:147 admin/views/Shortcode.php:1358
1276
  msgid "Search box width"
1277
+ msgstr "Ancho del cuadro de búsqueda"
1278
 
1279
  #: admin/views/Options.php:155 admin/views/Shortcode.php:1377
1280
  msgid "Show \"Order by\" dropdown list"
1281
+ msgstr "Mostrar \\ \"Ordenar por \" lista desplegable"
1282
 
1283
  #: admin/views/Options.php:164 admin/views/Shortcode.php:1368
 
 
1284
  msgid "Show tag box"
1285
+ msgstr "Mostrar caja de etiquetas"
1286
 
1287
  #: admin/views/Options.php:173
1288
  msgid "Preload images"
1289
+ msgstr "Precargar imágenes"
1290
 
1291
  #: admin/views/Options.php:182
1292
  msgid "Count of images"
1293
+ msgstr "Recuento de imágenes"
1294
 
1295
  #: admin/views/Options.php:186
1296
  msgid "Count of images to preload (0 for all)."
1297
+ msgstr "Recuento de imágenes para precargar (0 para todos)."
1298
 
1299
  #: admin/views/Options.php:191
1300
  msgid "Show/hide custom post types"
1301
+ msgstr "Mostrar / ocultar tipos de publicaciones personalizadas"
1302
 
1303
  #: admin/views/Options.php:200
1304
  msgid "Show/hide comments for custom post types"
1305
+ msgstr "Mostrar / ocultar comentarios para tipos de publicaciones personalizadas"
1306
 
1307
  #: admin/views/Options.php:209
1308
  msgid "Include styles/scripts in necessary pages only"
1309
+ msgstr "Incluir estilos / scripts solo en páginas necesarias"
1310
 
1311
  #: admin/views/Options.php:218
1312
  msgid "Enable bulk download button"
1313
+ msgstr "Habilitar botón de descarga masiva"
1314
 
1315
  #: admin/views/Options.php:223
1316
+ msgid "If enabled,it will be possible to download entire gallery with a single button."
1317
+ msgstr "Si está habilitado, será posible descargar toda la galería con un solo botón."
 
 
1318
 
1319
  #: admin/views/Options.php:231
1320
  msgid "Right click protection"
1321
+ msgstr "Haga clic derecho en la protección"
1322
 
1323
  #: admin/views/Options.php:236
1324
  msgid "Disable image right click possibility."
1325
+ msgstr "Desactivar imagen haga clic derecho en la posibilidad."
1326
 
1327
  #: admin/views/Options.php:241
1328
  msgid "Enable html editor"
1329
+ msgstr "Habilitar el editor html"
1330
 
1331
  #: admin/views/Options.php:250
1332
  msgid "Enable href attribute"
1333
+ msgstr "Habilitar atributo href"
1334
 
1335
  #: admin/views/Options.php:255
1336
  msgid "Disable this option only if it conflicts with your theme."
1337
+ msgstr "Desactive esta opción solo si entra en conflicto con su tema."
1338
 
1339
  #: admin/views/Options.php:260
1340
  msgid "Meta auto-fill"
1341
+ msgstr "Meta autocompletar"
1342
 
1343
  #: admin/views/Options.php:265
1344
+ msgid "Enabling this option the meta description of the image will be automatically filled in image description field."
1345
+ msgstr "Al habilitar esta opción, la metadescripción de la imagen se completará automáticamente en el campo de descripción de la imagen."
 
 
1346
 
1347
  #: admin/views/Options.php:270
1348
  msgid "Roles"
1349
+ msgstr "Roles"
1350
 
1351
  #: admin/views/Options.php:282
1352
+ msgid "Choose a user type who can add/edit galleries, images, gallery groups and tags."
1353
+ msgstr "Elija un tipo de usuario que pueda agregar / editar galerías, imágenes, grupos de galería y etiquetas."
 
 
1354
 
1355
  #: admin/views/Options.php:288
 
 
1356
  msgid "Gallery role"
1357
+ msgstr "Rol de galería"
1358
 
1359
  #: admin/views/Options.php:293
1360
  msgid "Only author can change a gallery."
1361
+ msgstr "Solo el autor puede cambiar una galería."
1362
 
1363
  #: admin/views/Options.php:299
1364
  msgid "Gallery group role"
1365
+ msgstr "Papel del grupo de la galería"
1366
 
1367
  #: admin/views/Options.php:304
1368
  msgid "Only author can change an gallery group."
1369
+ msgstr "Solo el autor puede cambiar un grupo de galería."
1370
 
1371
  #: admin/views/Options.php:310
1372
  msgid "Image role"
1373
+ msgstr "Rol de imagen"
1374
 
1375
  #: admin/views/Options.php:315
1376
  msgid "Only author can change an image."
1377
+ msgstr "Solo el autor puede cambiar una imagen."
1378
 
1379
  #: admin/views/Options.php:321 admin/views/Options.php:324
1380
  #: photo-gallery.php:283
1381
  msgid "Generate Shortcode"
1382
+ msgstr "Generar shortcode"
1383
 
1384
  #: admin/views/Options.php:327
1385
  msgid "Generate or edit a shortcode."
1386
+ msgstr "Genera o edita un código corto."
1387
 
1388
  #: admin/views/Options.php:335 photo-gallery.php:282
1389
  msgid "Uninstall"
1390
+ msgstr "Desinstalar"
1391
 
1392
  #: admin/views/Options.php:350
1393
  msgid "Open in a new window"
1394
+ msgstr "Open in a new window"
1395
 
1396
  #: admin/views/Options.php:359
1397
  msgid "Number of image columns"
1398
+ msgstr "Número de columnas de imagen"
1399
 
1400
  #: admin/views/Options.php:367 admin/views/Options.php:599
1401
  #: admin/views/Shortcode.php:409 admin/views/Shortcode.php:666
1402
  #: admin/views/Shortcode.php:717 admin/views/Shortcode.php:761
1403
  #: admin/views/Shortcode.php:805
1404
  msgid "Images per page"
1405
+ msgstr "Imágenes por página"
1406
 
1407
  #: admin/views/Options.php:375
1408
  msgid "Frontend thumbnail dimensions"
1409
+ msgstr "Dimensiones de la miniatura frontend"
1410
 
1411
  #: admin/views/Options.php:380
1412
+ msgid "The default size of the thumbnail which will be displayed in the website."
1413
+ msgstr "El tamaño predeterminado de la miniatura que se mostrará en el sitio web."
 
1414
 
1415
  #: admin/views/Options.php:387
1416
  msgid "Show image title"
1417
+ msgstr "Mostrar el título de la imagen"
1418
 
1419
  #: admin/views/Options.php:389 admin/views/Options.php:402
1420
  #: admin/views/Options.php:1030 admin/views/Shortcode.php:431
1421
  #: admin/views/Shortcode.php:872 admin/views/Shortcode.php:1003
1422
  #: admin/views/Shortcode.php:1052 admin/views/Shortcode.php:1101
 
 
1423
  msgid "Show on hover"
1424
+ msgstr "Mostrar si se pasa por encima"
1425
 
1426
  #: admin/views/Options.php:390 admin/views/Options.php:403
1427
  #: admin/views/Options.php:1031 admin/views/Shortcode.php:433
1428
  #: admin/views/Shortcode.php:873 admin/views/Shortcode.php:1004
1429
  #: admin/views/Shortcode.php:1053 admin/views/Shortcode.php:1102
1430
  msgid "Always show"
1431
+ msgstr "Mostrar siempre"
1432
 
1433
  #: admin/views/Options.php:391 admin/views/Options.php:404
1434
  #: admin/views/Options.php:1032 admin/views/Shortcode.php:435
1435
  #: admin/views/Shortcode.php:874 admin/views/Shortcode.php:1005
1436
  #: admin/views/Shortcode.php:1054 admin/views/Shortcode.php:1103
1437
  msgid "Don't show"
1438
+ msgstr "No mostrar"
1439
 
1440
  #: admin/views/Options.php:400
 
 
1441
  msgid "Show ecommerce icon"
1442
+ msgstr "Mostrar icono carrito"
1443
 
1444
  #: admin/views/Options.php:413
1445
  msgid "Enable image pagination"
1446
+ msgstr "Habilitar la paginación de la imagen"
1447
 
1448
  #: admin/views/Options.php:422
1449
  msgid "Show gallery name"
1450
+ msgstr "Mostrar el nombre de la galería"
1451
 
1452
  #: admin/views/Options.php:431 admin/views/Shortcode.php:864
1453
  msgid "Show gallery description"
1454
+ msgstr "Mostrar la descripción de la galería"
1455
 
1456
  #: admin/views/Options.php:440
1457
  msgid "Play icon over the video thumbnail"
1458
+ msgstr "Reproducir el ícono sobre la miniatura del video"
1459
 
1460
  #: admin/views/Options.php:464 admin/views/Options.php:513
1461
  #: admin/views/Shortcode.php:349 admin/views/Shortcode.php:364
1462
  #: admin/views/Shortcode.php:1024 admin/views/Shortcode.php:1073
1463
  msgid "Vertical"
1464
+ msgstr "Vertical"
1465
 
1466
  #: admin/views/Options.php:465 admin/views/Options.php:514
1467
  #: admin/views/Shortcode.php:354 admin/views/Shortcode.php:369
1468
  #: admin/views/Shortcode.php:1029 admin/views/Shortcode.php:1078
1469
  msgid "Horizontal"
1470
+ msgstr "Horizontal"
1471
 
1472
  #: admin/views/Options.php:474
1473
  msgid "Show description in Vertical Masonry view"
1474
+ msgstr "Mostrar descripción en la vista de mampostería vertical"
1475
 
1476
  #: admin/views/Options.php:499 admin/views/Shortcode.php:382
1477
  #: admin/views/Shortcode.php:1042 admin/views/Shortcode.php:1091
1478
  msgid "Total width of mosaic"
1479
+ msgstr "Ancho total del mosaico"
1480
 
1481
  #: admin/views/Options.php:503 admin/views/Options.php:593
1482
  #: admin/views/Options.php:615 admin/views/Options.php:626
1483
  msgid "Width of mosaic as a percentage of container's width."
1484
+ msgstr "Ancho del mosaico como porcentaje del ancho del contenedor."
1485
 
1486
  #: admin/views/Options.php:521 admin/views/Shortcode.php:374
1487
  #: admin/views/Shortcode.php:1034 admin/views/Shortcode.php:1083
1488
  msgid "Resizable mosaic"
1489
+ msgstr "Mosaico redimensionable"
1490
 
1491
  #: admin/views/Options.php:546 admin/views/Options.php:589
1492
  #: admin/views/Shortcode.php:549 admin/views/Shortcode.php:572
1493
  msgid "Image width"
1494
+ msgstr "Ancho de imagen"
1495
 
1496
  #: admin/views/Options.php:556 admin/views/Options.php:610
1497
  #: admin/views/Options.php:757 admin/views/Options.php:920
1498
  #: admin/views/Shortcode.php:558 admin/views/Shortcode.php:581
1499
  msgid "Enable image title"
1500
+ msgstr "Habilitar título de imagen"
1501
 
1502
  #: admin/views/Options.php:565 admin/views/Options.php:621
1503
  #: admin/views/Options.php:803 admin/views/Shortcode.php:565
1504
  #: admin/views/Shortcode.php:588
1505
  msgid "Enable image description"
1506
+ msgstr "Habilitar descripción de imagen"
1507
 
1508
  #: admin/views/Options.php:632 admin/views/Options.php:1005
1509
  #: admin/views/Shortcode.php:418 admin/views/Shortcode.php:675
1510
  #: admin/views/Shortcode.php:726 admin/views/Shortcode.php:770
1511
  #: admin/views/Shortcode.php:814
1512
  msgid "Enable pagination"
1513
+ msgstr "Habilitar paginación"
1514
 
1515
  #: admin/views/Options.php:657
1516
  msgid "Slideshow effect"
1517
+ msgstr "Efecto de presentación"
1518
 
1519
  #: admin/views/Options.php:664 admin/views/Options.php:1108
1520
  #: admin/views/WidgetSlideshow.php:106
1521
  msgid "This effect is disabled in free version."
1522
+ msgstr "Este efecto está deshabilitado en la versión gratuita."
1523
 
1524
  #: admin/views/Options.php:675 admin/views/Options.php:1119
1525
  #: admin/views/Shortcode.php:290 admin/views/Shortcode.php:1171
1526
  msgid "Effect duration"
1527
+ msgstr "Duración del efecto"
1528
 
1529
  #: admin/views/Options.php:683 admin/views/Options.php:872
1530
  #: admin/views/Options.php:1136 admin/views/Shortcode.php:299
1531
  #: admin/views/Shortcode.php:699 admin/views/Shortcode.php:1187
1532
  msgid "Time interval"
1533
+ msgstr "Intervalo de tiempo"
1534
 
1535
  #: admin/views/Options.php:691 admin/views/Shortcode.php:308
1536
  msgid "Slideshow dimensions"
1537
+ msgstr "Dimensiones de la presentación"
1538
 
1539
  #: admin/views/Options.php:700 admin/views/Options.php:930
1540
  msgid "Enable autoplay"
1541
+ msgstr "Habilitar la reproducción automática"
1542
 
1543
  #: admin/views/Options.php:709
1544
  msgid "Enable shuffle"
1545
+ msgstr "Habilitar reproducción aleatoria"
1546
 
1547
  #: admin/views/Options.php:718 admin/views/Options.php:1173
1548
  #: admin/views/Shortcode.php:643 admin/views/Shortcode.php:1221
1549
  msgid "Enable control buttons"
1550
+ msgstr "Habilitar botones de control"
1551
 
1552
  #: admin/views/Options.php:727 admin/views/Options.php:1247
1553
  msgid "Show Next / Previous buttons"
1554
+ msgstr "Mostrar botones Siguiente / Anterior"
1555
 
1556
  #: admin/views/Options.php:729 admin/views/Options.php:1249
1557
  msgid "On hover"
1558
+ msgstr "En hover"
1559
 
1560
  #: admin/views/Options.php:730 admin/views/Options.php:1250
1561
  msgid "Always"
1562
+ msgstr "Siempre"
1563
 
1564
  #: admin/views/Options.php:738 admin/views/Shortcode.php:650
1565
  msgid "Enable slideshow filmstrip"
1566
+ msgstr "Habilitar tira de película de diapositivas"
1567
 
1568
  #: admin/views/Options.php:748
1569
  msgid "Slideshow filmstrip size"
1570
+ msgstr "Tamaño de la tira de película de diapositivas"
1571
 
1572
  #: admin/views/Options.php:766
1573
  msgid "Title position"
1574
+ msgstr "Posición del título"
1575
 
1576
  #: admin/views/Options.php:788
1577
  msgid "Image title position on slideshow"
1578
+ msgstr "Posición del título de la imagen en la presentación"
1579
 
1580
  #: admin/views/Options.php:793 admin/views/Shortcode.php:918
1581
  msgid "Full width title"
1582
+ msgstr "Título de ancho completo"
1583
 
1584
  #: admin/views/Options.php:798 admin/views/Shortcode.php:921
1585
  msgid "Display image title based on the slideshow dimensions."
1586
+ msgstr "Muestra el título de la imagen según las dimensiones de la presentación."
1587
 
1588
  #: admin/views/Options.php:812
1589
  msgid "Description position"
1590
+ msgstr "Posición de descripción"
1591
 
1592
  #: admin/views/Options.php:834
1593
  msgid "Image description position on slideshow"
1594
+ msgstr "Posición de descripción de la imagen en la presentación"
1595
 
1596
  #: admin/views/Options.php:839
1597
  msgid "Enable slideshow Music"
1598
+ msgstr "Habilitar la presentación"
1599
 
1600
  #: admin/views/Options.php:848 admin/views/Shortcode.php:965
1601
  msgid "Music url"
1602
+ msgstr "URL de la música"
1603
 
1604
  #: admin/views/Options.php:852
1605
  msgid "Only"
1606
+ msgstr "Solamente"
1607
 
1608
  #: admin/views/Options.php:852
1609
  msgid "formats are supported."
1610
+ msgstr "formatos son compatibles."
1611
 
1612
  #: admin/views/Options.php:881
1613
  msgid "Max. number of images"
1614
+ msgstr "Max. numero de imagenes"
1615
 
1616
  #: admin/views/Options.php:890 admin/views/Shortcode.php:336
1617
  msgid "Carousel image ratio"
1618
+ msgstr "Relación de imagen del carrusel"
1619
 
1620
  #: admin/views/Options.php:909 admin/views/Shortcode.php:595
1621
  msgid "Fixed width"
1622
+ msgstr "Ancho fijo"
1623
 
1624
  #: admin/views/Options.php:940 admin/views/Shortcode.php:981
1625
  msgid "Container fit"
1626
+ msgstr "Ajuste de contenedor"
1627
 
1628
  #: admin/views/Options.php:950 admin/views/Shortcode.php:988
1629
  msgid "Next/Previous buttons"
1630
+ msgstr "Botones de siguiente/anterior"
1631
 
1632
  #: admin/views/Options.php:960 admin/views/Shortcode.php:995
1633
  msgid "Play/Pause button"
1634
+ msgstr "Botón Reproducir / Pausa"
1635
 
1636
  #: admin/views/Options.php:980
1637
  msgid "Show gallery group/gallery name"
1638
+ msgstr "Mostrar el nombre del grupo de la galería / galería"
1639
 
1640
  #: admin/views/Options.php:989
1641
  msgid "Number of gallery group columns"
1642
+ msgstr "Número de columnas de grupos de galería"
1643
 
1644
  #: admin/views/Options.php:997
 
 
1645
  msgid "Gallery groups per page"
1646
+ msgstr "Grupos de galería por página"
1647
 
1648
  #: admin/views/Options.php:1014
 
 
1649
  msgid "Gallery group view type"
1650
+ msgstr "Tipo de vista de grupo de galerías"
1651
 
1652
  #: admin/views/Options.php:1020
 
 
1653
  msgid "The gallery images view type in the gallery group."
1654
+ msgstr "Los tipos de vistas de las galerías de imágenes in los grupos de imagen."
1655
 
1656
  #: admin/views/Options.php:1028
 
 
1657
  msgid "Show title"
1658
+ msgstr "Mostrar título"
1659
 
1660
  #: admin/views/Options.php:1038
1661
  msgid "Enable extended gallery group description"
1662
+ msgstr "Habilitar la descripción del grupo de galería extendida"
1663
 
1664
  #: admin/views/Options.php:1047
1665
  msgid "Gallery group thumbnail dimensions:"
1666
+ msgstr "Dimensiones de la miniatura del grupo de la galería:"
1667
 
1668
  #: admin/views/Options.php:1056
1669
  msgid "Extended gallery group height:"
1670
+ msgstr "Altura del grupo de la galería extendida:"
1671
 
1672
  #: admin/views/Options.php:1072 admin/views/Shortcode.php:1120
1673
  msgid "Image click action"
1674
+ msgstr "Imagen haga clic en acción"
1675
 
1676
  #: admin/views/Options.php:1074 admin/views/Shortcode.php:1121
1677
  msgid "Open lightbox"
1678
+ msgstr "Abrir Lightbox"
1679
 
1680
  #: admin/views/Options.php:1075 admin/views/Shortcode.php:1122
1681
  msgid "Redirect to url"
1682
+ msgstr "Redirigir a url"
1683
 
1684
  #: admin/views/Options.php:1076 admin/views/Shortcode.php:1123
1685
  msgid "Do Nothing"
1686
+ msgstr "No hacer nada"
1687
 
1688
  #: admin/views/Options.php:1082 admin/views/Shortcode.php:1138
1689
  msgid "Full width lightbox"
1690
+ msgstr "Caja de luz de ancho completo"
1691
 
1692
  #: admin/views/Options.php:1087 admin/views/Shortcode.php:1141
1693
  msgid "Enable full width feature for the lightbox."
1694
+ msgstr "Habilita la función de ancho completo para el lightbox."
1695
 
1696
  #: admin/views/Options.php:1092 admin/views/Shortcode.php:1146
1697
  msgid "Lightbox dimensions"
1698
+ msgstr "Dimensiones de la caja de luz"
1699
 
1700
  #: admin/views/Options.php:1101 admin/views/Shortcode.php:1156
1701
  msgid "Lightbox effect"
1702
+ msgstr "Efecto de caja de luz"
1703
 
1704
  #: admin/views/Options.php:1127 admin/views/Shortcode.php:1180
1705
  msgid "Lightbox autoplay"
1706
+ msgstr "Reproducción automática de Lightbox"
1707
 
1708
  #: admin/views/Options.php:1144
1709
  msgid "Enable filmstrip"
1710
+ msgstr "Habilitar tira de película"
1711
 
1712
  #: admin/views/Options.php:1154 admin/views/Shortcode.php:1204
1713
  msgid "Filmstrip size"
1714
+ msgstr "Tamaño de la tira de película"
1715
 
1716
  #: admin/views/Options.php:1163 admin/views/Shortcode.php:1214
1717
  msgid "Display hit counter"
1718
+ msgstr "Mostrar contador de visitas"
1719
 
1720
  #: admin/views/Options.php:1208 admin/views/Shortcode.php:1230
 
 
1721
  msgid "Enable fullscreen"
1722
+ msgstr "Habilitar pantalla completa"
1723
 
1724
  #: admin/views/Options.php:1217 admin/views/Shortcode.php:1238
 
 
1725
  msgid "Enable info"
1726
+ msgstr "Habilitar información"
1727
 
1728
  #: admin/views/Options.php:1226 admin/views/Shortcode.php:1246
1729
  msgid "Display info by default"
1730
+ msgstr "Mostrar información por defecto"
1731
 
1732
  #: admin/views/Options.php:1235 admin/views/Shortcode.php:1253
1733
  msgid "Full width info"
1734
+ msgstr "Información de ancho completo"
1735
 
1736
  #: admin/views/Options.php:1240 admin/views/Shortcode.php:1256
1737
  msgid "Display image information based on the lightbox dimensions."
1738
+ msgstr "Muestra información de imagen basada en las dimensiones de la caja de luz."
1739
 
1740
  #: admin/views/Options.php:1256
1741
  msgid "Enable Email for comments"
1742
+ msgstr "Habilitar el correo electrónico para comentarios"
1743
 
1744
  #: admin/views/Options.php:1266
1745
  msgid "Enable Captcha for comments"
1746
+ msgstr "Habilitar Captcha para comentarios"
1747
 
1748
  #: admin/views/Options.php:1276
1749
  msgid "Enable original image display button"
1750
+ msgstr "Habilitar botón de visualización de imagen original"
1751
 
1752
  #: admin/views/Options.php:1285
1753
  msgid "Enable download button"
1754
+ msgstr "Habilitar botón de descarga"
1755
 
1756
  #: admin/views/Options.php:1294
 
 
1757
  msgid "Show images count"
1758
+ msgstr "Mostrar cuenta de visualizaciones"
1759
 
1760
  #: admin/views/Options.php:1303
1761
  msgid "Enable loop"
1762
+ msgstr "Activar bucle"
1763
 
1764
  #: admin/views/Options.php:1312
1765
  msgid "Enable"
1766
+ msgstr "Habilitar"
1767
 
1768
  #: admin/views/Options.php:1322
1769
  msgid "profile id"
1770
+ msgstr "id del perfil"
1771
 
1772
  #: admin/views/Options.php:1326
1773
  #, php-format
1774
  msgid "Create an account %s."
1775
+ msgstr "Crea una cuenta %s ."
1776
 
1777
  #: admin/views/Options.php:1326 admin/views/Shortcode.php:260
1778
  msgid "here"
1779
+ msgstr "aquí"
1780
 
1781
  #: admin/views/Options.php:1332 admin/views/Shortcode.php:1261
 
 
1782
  msgid "Enable rating"
1783
+ msgstr "Habilitar valoraciones"
1784
 
1785
  #: admin/views/Options.php:1342 admin/views/Shortcode.php:1269
 
 
1786
  msgid "Enable comments"
1787
+ msgstr "Habilitar comentarios"
1788
 
1789
  #: admin/views/Options.php:1356
 
 
1790
  msgid "Enable comments moderation"
1791
+ msgstr "Habilitar moderación de comentarios"
1792
 
1793
  #: admin/views/Options.php:1366 admin/views/Shortcode.php:1281
1794
  msgid "Enable Facebook button"
1795
+ msgstr "Habilitar el botón Facebook"
1796
 
1797
  #: admin/views/Options.php:1376 admin/views/Shortcode.php:1289
1798
  msgid "Enable Twitter button"
1799
+ msgstr "Habilitar botón de Twitter"
1800
 
1801
  #: admin/views/Options.php:1386 admin/views/Shortcode.php:1297
1802
  msgid "Enable Google+ button"
1803
+ msgstr "Habilitar botón de Google+"
1804
 
1805
  #: admin/views/Options.php:1396 admin/views/Shortcode.php:1305
1806
  msgid "Enable Pinterest button"
1807
+ msgstr "Habilitar el botón Pinterest"
1808
 
1809
  #: admin/views/Options.php:1406 admin/views/Shortcode.php:1313
1810
  msgid "Enable Tumblr button"
1811
+ msgstr "Habilitar el botón Tumblr"
1812
 
1813
  #: admin/views/Options.php:1419 admin/views/Shortcode.php:1324
1814
  msgid "Enable Ecommerce button"
1815
+ msgstr "Habilitar botón de comercio electrónico"
1816
 
1817
  #: admin/views/Options.php:1438
 
 
1818
  msgid "Gallery autoupdate interval"
1819
+ msgstr "Iintervalo de actualización automática del plugin Photo gallery"
1820
 
1821
  #: admin/views/Options.php:1441
1822
  msgid "hour"
1823
+ msgstr "hora"
1824
 
1825
  #: admin/views/Options.php:1443
1826
  msgid "min"
1827
+ msgstr "min"
1828
 
1829
  #: admin/views/Options.php:1445
1830
  msgid "Minimum 1 min."
1831
+ msgstr "Mínimo 1 min."
1832
 
1833
  #: admin/views/Options.php:1451
1834
  msgid "Instagram"
1835
+ msgstr "Instagram"
1836
 
1837
  #: admin/views/Options.php:1459
1838
  msgid "Sign in with Instagram"
1839
+ msgstr "Inicia sesión con Instagram"
1840
 
1841
  #: admin/views/Options.php:1464
1842
+ msgid "Are you sure you want to reset access token, after resetting it you will need to log in with Instagram again for using plugin"
1843
+ msgstr "¿Estás seguro de que deseas restablecer el token de acceso?, después de restablecerlo necesitarás volver a iniciar sesión con Instagram para usar el complemento"
 
 
1844
 
1845
  #: admin/views/Options.php:1466
1846
  msgid "Sign out with Instagram"
1847
+ msgstr "Salir con Instagram"
1848
 
1849
  #: admin/views/Options.php:1489 photo-gallery.php:1284
1850
  msgid "Watermark"
1851
+ msgstr "Marca de Agua"
1852
 
1853
  #: admin/views/Options.php:1494
1854
  msgid "Watermark type"
1855
+ msgstr "Tipo de marca de agua"
1856
 
1857
  #: admin/views/Options.php:1499 admin/views/Options.php:1643
1858
  #: admin/views/Shortcode.php:1388 admin/views/Themes.php:4578
1859
  #: admin/views/WidgetTags.php:85
1860
  msgid "Text"
1861
+ msgstr "Texto"
1862
 
1863
  #: admin/views/Options.php:1507
1864
  msgid "Watermark url"
1865
+ msgstr "URL de la marca de agua"
1866
 
1867
  #: admin/views/Options.php:1518 admin/views/Options.php:1664
1868
  msgid "Add Image"
1869
+ msgstr "Añadir imagen"
1870
 
1871
  #: admin/views/Options.php:1521
1872
  msgid "Only .png format is supported."
1873
+ msgstr "Solo el formato .png es compatible."
1874
 
1875
  #: admin/views/Options.php:1526
1876
  msgid "Watermark text"
1877
+ msgstr "Texto de marca de agua"
1878
 
1879
  #: admin/views/Options.php:1534
1880
  msgid "Watermark size"
1881
+ msgstr "Tamaño de la marca de agua"
1882
 
1883
  #: admin/views/Options.php:1538
1884
  msgid "Enter size of watermark in percents according to image."
1885
+ msgstr "Introduzca el tamaño de la marca de agua en porcentajes según la imagen."
1886
 
1887
  #: admin/views/Options.php:1543
1888
  msgid "Watermark font size"
1889
+ msgstr "Tamaño de letra de marca de agua"
1890
 
1891
  #: admin/views/Options.php:1551
1892
  msgid "Watermark font style"
1893
+ msgstr "Estilo de fuente de marca de agua"
1894
 
1895
  #: admin/views/Options.php:1579
1896
  msgid "Watermark color"
1897
+ msgstr "Color de la marca de agua"
1898
 
1899
  #: admin/views/Options.php:1587
1900
  msgid "Watermark opacity"
1901
+ msgstr "Opacidad de la marca de agua"
1902
 
1903
  #: admin/views/Options.php:1591
1904
  msgid "Opacity value must be in the range of 0 to 100."
1905
+ msgstr "El valor de opacidad debe estar en el rango de 0 a 100."
1906
 
1907
  #: admin/views/Options.php:1596
1908
  msgid "Watermark position"
1909
+ msgstr "Marca de agua"
1910
 
1911
  #: admin/views/Options.php:1619
1912
  msgid "Set Watermark"
1913
+ msgstr "Establecer marca de agua"
1914
 
1915
  #: admin/views/Options.php:1620
1916
  msgid "Reset watermark"
1917
+ msgstr "Restablecer marca de agua"
1918
 
1919
  #: admin/views/Options.php:1622
1920
  msgid "Reset Watermark"
1921
+ msgstr "Restablecer marca de agua"
1922
 
1923
  #: admin/views/Options.php:1633 photo-gallery.php:1288 photo-gallery.php:1403
1924
  msgid "Advertisement"
1925
+ msgstr "Anuncio"
1926
 
1927
  #: admin/views/Options.php:1638
1928
  msgid "Advertisement type"
1929
+ msgstr "Tipo de Publicidad"
1930
 
1931
  #: admin/views/Options.php:1651 admin/views/Shortcode.php:1402
1932
  msgid "Advertisement url"
1933
+ msgstr "URL publicitaria"
1934
 
1935
  #: admin/views/Options.php:1667
1936
+ msgid "Enter absolute image file url or add file from Options page. (.jpg,.jpeg,.png,.gif formats are supported)"
1937
+ msgstr "Ingrese la URL del archivo de imagen absoluta o agregue el archivo desde la página de Opciones. Los formatos (.jpg, .jpeg, .png, .gif son compatibles)"
 
 
1938
 
1939
  #: admin/views/Options.php:1672 admin/views/Shortcode.php:1409
1940
  msgid "Advertisement text"
1941
+ msgstr "Texto publicitario"
1942
 
1943
  #: admin/views/Options.php:1680 admin/views/Shortcode.php:1395
1944
  msgid "Advertisement link"
1945
+ msgstr "Enlace publicitario"
1946
 
1947
  #: admin/views/Options.php:1684
1948
  msgid "Enter a URL to open when the advertisement banner is clicked."
1949
+ msgstr "Ingrese una URL para abrir cuando se hace clic en el banner publicitario."
1950
 
1951
  #: admin/views/Options.php:1689 admin/views/Shortcode.php:1446
1952
  msgid "Advertisement dimensions"
1953
+ msgstr "Dimensiones del anuncio"
1954
 
1955
  #: admin/views/Options.php:1694 admin/views/Shortcode.php:1451
1956
  msgid "Maximum values for watermark image width and height."
1957
+ msgstr "Valores máximos para el ancho y la altura de la imagen de marca de agua."
1958
 
1959
  #: admin/views/Options.php:1699 admin/views/Shortcode.php:1438
1960
  msgid "Advertisement font size"
1961
+ msgstr "Tamaño de fuente de publicidad"
1962
 
1963
  #: admin/views/Options.php:1707 admin/views/Shortcode.php:1417
1964
  msgid "Advertisement font style"
1965
+ msgstr "Estilo de fuente de publicidad"
1966
 
1967
  #: admin/views/Options.php:1722 admin/views/Shortcode.php:1431
1968
  #: admin/views/Themes.php:386 admin/views/Themes.php:449
1980
  #: admin/views/Themes.php:4166 admin/views/Themes.php:4242
1981
  #: admin/views/Themes.php:4426 admin/views/Themes.php:4811
1982
  msgid "Google fonts"
1983
+ msgstr "Google fonts"
1984
 
1985
  #: admin/views/Options.php:1724 admin/views/Shortcode.php:1433
1986
  #: admin/views/Themes.php:76 admin/views/Themes.php:107
2004
 
2005
  #: admin/views/Options.php:1730 admin/views/Shortcode.php:1456
2006
  msgid "Advertisement color"
2007
+ msgstr "Anuncio de color"
2008
 
2009
  #: admin/views/Options.php:1738 admin/views/Shortcode.php:1464
2010
  msgid "Advertisement opacity"
2011
+ msgstr "Opacidad publicitaria"
2012
 
2013
  #: admin/views/Options.php:1742 admin/views/Shortcode.php:1468
2014
  #: admin/views/Themes.php:309 admin/views/Themes.php:322
2028
  #: admin/views/Themes.php:4513 admin/views/Themes.php:4608
2029
  #: admin/views/Themes.php:4633 admin/views/Themes.php:4772
2030
  msgid "Value must be between 0 to 100."
2031
+ msgstr "El valor debe estar entre 0 y 100."
2032
 
2033
  #: admin/views/Options.php:1747 admin/views/Shortcode.php:1473
2034
  msgid "Advertisement position"
2035
+ msgstr "Posición publicitaria"
2036
 
2037
  #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
2038
  #: admin/views/Ratings.php:91
2039
  msgid "IP"
2040
+ msgstr "IP"
2041
 
2042
  #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
2043
  msgid "Rating"
2044
+ msgstr "Rating"
2045
 
2046
  #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
2047
  #: admin/views/Shortcode.php:610
2048
  msgid "Date"
2049
+ msgstr "Día"
2050
 
2051
  #: admin/views/Shortcode.php:129 admin/views/Shortcode.php:166
2052
  msgid "View type"
2053
+ msgstr "Tipo de vista"
2054
 
2055
  #: admin/views/Shortcode.php:183
2056
  msgid "This view is not available in free version."
2057
+ msgstr "Esta vista no está disponible en versión gratuita."
2058
 
2059
  #: admin/views/Shortcode.php:195
2060
  msgid "All Galleries"
2061
+ msgstr "Todas las galerias"
2062
 
2063
  #: admin/views/Shortcode.php:207
2064
  msgid "Album"
2065
+ msgstr "Álbum"
2066
 
2067
  #: admin/views/Shortcode.php:210
2068
  msgid "Select Album"
2069
+ msgstr "Seleccione Álbum"
2070
 
2071
  #: admin/views/Shortcode.php:219
2072
  msgid "The selected album expanded content will be displayed."
2073
+ msgstr "Se mostrará el contenido expandido del álbum seleccionado."
2074
 
2075
  #: admin/views/Shortcode.php:225
2076
  msgid "Tag"
2077
+ msgstr "Etiqueta"
2078
 
2079
  #: admin/views/Shortcode.php:228
2080
  msgid "All Tags"
2081
+ msgstr "Todos las Etiquetas"
2082
 
2083
  #: admin/views/Shortcode.php:242
2084
  msgid "Theme"
2085
+ msgstr "Tema"
2086
 
2087
  #: admin/views/Shortcode.php:259
2088
  msgid "Use default options"
2089
+ msgstr "Use las opciones predeterminadas"
2090
 
2091
  #: admin/views/Shortcode.php:260
2092
  #, php-format
2093
  msgid "You can change the default options %s."
2094
+ msgstr "Puede cambiar las opciones predeterminadas %s ."
2095
 
2096
  #: admin/views/Shortcode.php:276
2097
  msgid "Slideshow Effect"
2098
+ msgstr "Efecto de presentación de diapositivas"
2099
 
2100
  #: admin/views/Shortcode.php:294 admin/views/Shortcode.php:303
2101
  #: admin/views/Shortcode.php:703 admin/views/Shortcode.php:1175
2102
  #: admin/views/Shortcode.php:1191
2103
  msgid "Interval between two images."
2104
+ msgstr "Intervalo entre dos imágenes."
2105
 
2106
  #: admin/views/Shortcode.php:313
2107
  msgid "Maximum values for slideshow width and height."
2108
+ msgstr "Valores máximos para el ancho y alto de la presentación."
2109
 
2110
  #: admin/views/Shortcode.php:318
2111
  msgid "Max. number of carousel images"
2112
+ msgstr "Max. número de imágenes de carrusel"
2113
 
2114
  #: admin/views/Shortcode.php:326
2115
  msgid "Carousel dimensions"
2116
+ msgstr "Dimensiones del carrusel"
2117
 
2118
  #: admin/views/Shortcode.php:331 admin/views/Shortcode.php:599
2119
  msgid "Maximum values for carousel width and height."
2120
+ msgstr "Valores máximos para el ancho y la altura del carrusel."
2121
 
2122
  #: admin/views/Shortcode.php:346 admin/views/Shortcode.php:361
2123
  #: admin/views/Shortcode.php:1021
2124
  msgid "Image thumbnail width:"
2125
+ msgstr "Ancho de miniatura de la imagen:"
2126
 
2127
  #: admin/views/Shortcode.php:350 admin/views/Shortcode.php:365
2128
  #: admin/views/Shortcode.php:1025
2129
  msgid "Max. number of image columns: "
2130
+ msgstr "Max. cantidad de columnas de imagen: "
2131
 
2132
  #: admin/views/Shortcode.php:377 admin/views/Shortcode.php:1037
2133
  #: admin/views/Shortcode.php:1086
2134
+ msgid "Mosaic thumbnails do not have fixed size, but are proportional to the width of the parent container. This option keeps thumbs to look nice when viewed with very large or very small screen. Prevents zooming of thumbs."
2135
+ msgstr "Las miniaturas de mosaico no tienen un tamaño fijo, pero son proporcionales al ancho del contenedor principal. Esta opción mantiene los pulgares para verse bien cuando se ve con pantalla muy grande o muy pequeña. Impide el acercamiento de los pulgares."
 
 
 
2136
 
2137
  #: admin/views/Shortcode.php:386 admin/views/Shortcode.php:1046
2138
  #: admin/views/Shortcode.php:1095
2139
  msgid "Percentage of container's width."
2140
+ msgstr "Porcentaje del ancho del contenedor."
2141
 
2142
  #: admin/views/Shortcode.php:391 admin/views/Shortcode.php:539
2143
  msgid "Image Thumbnail dimensions"
2144
+ msgstr "Dimensiones de la imagen en miniatura"
2145
 
2146
  #: admin/views/Shortcode.php:396
2147
  msgid "Maximum values for thumbnail dimension."
2148
+ msgstr "Valores máximos para la dimensión de miniatura."
2149
 
2150
  #: admin/views/Shortcode.php:401 admin/views/Shortcode.php:461
2151
  #: admin/views/Shortcode.php:496 admin/views/Shortcode.php:531
2152
  msgid "Max. number of image columns"
2153
+ msgstr "Max. cantidad de columnas de imagen"
2154
 
2155
  #: admin/views/Shortcode.php:413 admin/views/Shortcode.php:670
2156
  #: admin/views/Shortcode.php:721 admin/views/Shortcode.php:765
2157
  #: admin/views/Shortcode.php:809
2158
+ msgid "If you want to display all images you should leave it blank or insert 0."
2159
+ msgstr "Si desea visualizar todas las imágenes, debe dejarlas en blanco o insertar 0."
 
2160
 
2161
  #: admin/views/Shortcode.php:421 admin/views/Shortcode.php:729
2162
  #: admin/views/Shortcode.php:773 admin/views/Shortcode.php:817
 
 
2163
  msgid "Load More"
2164
+ msgstr "Cargar más"
2165
 
2166
  #: admin/views/Shortcode.php:422 admin/views/Shortcode.php:679
2167
  #: admin/views/Shortcode.php:730 admin/views/Shortcode.php:774
2168
  #: admin/views/Shortcode.php:818
2169
  msgid "Scroll Load"
2170
+ msgstr "Desplazar carga"
2171
 
2172
  #: admin/views/Shortcode.php:430
2173
  msgid "Ecommerce icon"
2174
+ msgstr "Ícono de comercio electrónico"
2175
 
2176
  #: admin/views/Shortcode.php:443 admin/views/Shortcode.php:479
2177
  msgid "Max. number of album columns"
2178
+ msgstr "Max. número de columnas del álbum"
2179
 
2180
  #: admin/views/Shortcode.php:451
2181
  msgid "Album Thumbnail dimensions"
2182
+ msgstr "Dimensiones de la miniatura del álbum"
2183
 
2184
  #: admin/views/Shortcode.php:456 admin/views/Shortcode.php:526
2185
  msgid "Maximum values for album thumb width and height."
2186
+ msgstr "Valores máximos para el ancho y la altura del pulgar del álbum."
2187
 
2188
  #: admin/views/Shortcode.php:469
2189
  msgid "Image thumbnail dimensions"
2190
+ msgstr "Dimensiones de la miniatura de la imagen"
2191
 
2192
  #: admin/views/Shortcode.php:474 admin/views/Shortcode.php:544
2193
  msgid "Maximum values for thumbnail width and height."
2194
+ msgstr "Valores máximos para el ancho y alto de la miniatura."
2195
 
2196
  #: admin/views/Shortcode.php:487
2197
  msgid "Album Thumbnail width"
2198
+ msgstr "Ancho de la miniatura del álbum"
2199
 
2200
  #: admin/views/Shortcode.php:491
2201
  msgid "Maximum value for album thumbnail width."
2202
+ msgstr "Valor máximo para el ancho de la miniatura del álbum."
2203
 
2204
  #: admin/views/Shortcode.php:504
2205
  msgid "Image thumbnail width"
2206
+ msgstr "Ancho de la miniatura de la imagen"
2207
 
2208
  #: admin/views/Shortcode.php:508
2209
  msgid "Maximum value for thumbnail width."
2210
+ msgstr "Valor máximo para el ancho de la miniatura."
2211
 
2212
  #: admin/views/Shortcode.php:513
2213
  msgid "Album row height"
2214
+ msgstr "Altura de la fila del álbum"
2215
 
2216
  #: admin/views/Shortcode.php:521
2217
  msgid "Album thumbnail dimensions"
2218
+ msgstr "Dimensiones de la miniatura del álbum"
2219
 
2220
  #: admin/views/Shortcode.php:553 admin/views/Shortcode.php:576
2221
  msgid "Maximum value for image width."
2222
+ msgstr "Valor máximo para el ancho de la imagen."
2223
 
2224
  #: admin/views/Shortcode.php:606
2225
  msgid "Sort images by"
2226
+ msgstr "Ordenar imágenes por"
2227
 
2228
  #: admin/views/Shortcode.php:608
 
 
2229
  msgid "Order"
2230
  msgstr "Ordenar por"
2231
 
2232
  #: admin/views/Shortcode.php:621
2233
  msgid "Order images"
2234
+ msgstr "Ordenar imágenes"
2235
 
2236
  #: admin/views/Shortcode.php:622
2237
  msgid "Ascending"
2238
+ msgstr "Ascendente"
2239
 
2240
  #: admin/views/Shortcode.php:623
2241
  msgid "Descending"
2242
+ msgstr "Descendente"
2243
 
2244
  #: admin/views/Shortcode.php:628 admin/views/Shortcode.php:684
2245
  #: admin/views/Shortcode.php:744 admin/views/Shortcode.php:788
2246
  #: admin/views/Shortcode.php:832
2247
  msgid "Images per load"
2248
+ msgstr "Imágenes por carga"
2249
 
2250
  #: admin/views/Shortcode.php:636 admin/views/Shortcode.php:692
2251
  msgid "Enable Autoplay"
2252
+ msgstr "Habilitar la reproducción automática"
2253
 
2254
  #: admin/views/Shortcode.php:653
2255
  msgid "Enable slideshow filmstrip view."
2256
+ msgstr "Habilita la vista de diapositivas tira de película."
2257
 
2258
  #: admin/views/Shortcode.php:658
2259
  msgid "Slideshow Filmstrip size"
2260
+ msgstr "Tamaño de tira de diapositivas de diapositivas"
2261
 
2262
  #: admin/views/Shortcode.php:678
2263
  msgid "Load more"
2264
+ msgstr "Ver más"
2265
 
2266
  #: admin/views/Shortcode.php:708 admin/views/Shortcode.php:752
2267
  #: admin/views/Shortcode.php:796
 
 
2268
  msgid "Albums per page"
2269
+ msgstr "Álbumes por página"
2270
 
2271
  #: admin/views/Shortcode.php:712 admin/views/Shortcode.php:739
2272
  #: admin/views/Shortcode.php:756 admin/views/Shortcode.php:783
2273
  #: admin/views/Shortcode.php:800 admin/views/Shortcode.php:827
2274
+ msgid "If you want to display all albums you should leave it blank or insert 0."
2275
+ msgstr "Si desea visualizar todos los álbumes, debe dejarlos en blanco o insertar 0."
 
2276
 
2277
  #: admin/views/Shortcode.php:735 admin/views/Shortcode.php:779
2278
  #: admin/views/Shortcode.php:823
2279
  msgid "Albums per load"
2280
+ msgstr "Álbumes por carga"
2281
 
2282
  #: admin/views/Shortcode.php:842
2283
  msgid "Show gallery title"
2284
+ msgstr "Mostrar título de la galería"
2285
 
2286
  #: admin/views/Shortcode.php:849
2287
  msgid "Show album title"
2288
+ msgstr "Mostrar título del álbum"
2289
 
2290
  #: admin/views/Shortcode.php:856
2291
  msgid "Enable album description"
2292
+ msgstr "Habilitar descripción del álbum"
2293
 
2294
  #: admin/views/Shortcode.php:859
2295
+ msgid "If you disable description only the title of the album will be displayed."
2296
+ msgstr "Si desactiva la descripción, solo se mostrará el título del álbum."
 
2297
 
2298
  #: admin/views/Shortcode.php:871 admin/views/Shortcode.php:1051
2299
  #: admin/views/Shortcode.php:1100
2300
  msgid "Image title"
2301
+ msgstr "Título de la imagen"
2302
 
2303
  #: admin/views/Shortcode.php:879
2304
  msgid "Enable Shuffle"
2305
+ msgstr "Habilitar reproducción aleatoria"
2306
 
2307
  #: admin/views/Shortcode.php:886 admin/views/Shortcode.php:974
2308
  msgid "Enable Image Title"
2309
+ msgstr "Habilitar título de imagen"
2310
 
2311
  #: admin/views/Shortcode.php:893
2312
  msgid "Title Position"
2313
+ msgstr "Posición del Título"
2314
 
2315
  #: admin/views/Shortcode.php:913
2316
  msgid "Image title position on slideshow."
2317
+ msgstr "Posición del título de la imagen en la presentación."
2318
 
2319
  #: admin/views/Shortcode.php:926
2320
  msgid "Enable Image Description"
2321
+ msgstr "Habilitar descripción de imagen"
2322
 
2323
  #: admin/views/Shortcode.php:933
2324
  msgid "Description Position"
2325
+ msgstr "Descripción Posición"
2326
 
2327
  #: admin/views/Shortcode.php:952
2328
  msgid "Image description position on slideshow."
2329
+ msgstr "Posición de descripción de la imagen en la presentación."
2330
 
2331
  #: admin/views/Shortcode.php:958
2332
  msgid "Enable Slideshow Music"
2333
+ msgstr "Habilitar la música del pase"
2334
 
2335
  #: admin/views/Shortcode.php:969
2336
  msgid "Enter absolute audio file url or add file from Options page."
2337
+ msgstr "Ingrese la URL absoluta del archivo de audio o agregue el archivo desde la página de Opciones."
2338
 
2339
  #: admin/views/Shortcode.php:1002
 
 
2340
  msgid "Album title"
2341
+ msgstr "Título del album"
2342
 
2343
  #: admin/views/Shortcode.php:1010 admin/views/Shortcode.php:1059
 
 
2344
  msgid "Album view type"
2345
+ msgstr "Tipo de vista del album"
2346
 
2347
  #: admin/views/Shortcode.php:1014 admin/views/Shortcode.php:1063
2348
  msgid "The gallery images view type in the album."
2349
+ msgstr "El tipo de vista de galería de imágenes en el álbum."
2350
 
2351
  #: admin/views/Shortcode.php:1070 admin/views/Shortcode.php:2910
2352
  msgid "Image thumbnail width: "
2353
+ msgstr "Ancho de miniatura de la imagen: "
2354
 
2355
  #: admin/views/Shortcode.php:1074 admin/views/Shortcode.php:2911
2356
  msgid "Max. number of image columns:"
2357
+ msgstr "Max. cantidad de columnas de imagen:"
2358
 
2359
  #: admin/views/Shortcode.php:1128
2360
  msgid "Open in new window"
2361
+ msgstr "Abrir en Nueva ventana"
2362
 
2363
  #: admin/views/Shortcode.php:1131
2364
  msgid "Open new window when redirecting."
2365
+ msgstr "Abre una nueva ventana al redireccionar."
2366
 
2367
  #: admin/views/Shortcode.php:1151
2368
  msgid "Maximum values for lightbox width and height."
2369
+ msgstr "Valores máximos para ancho y alto de lightbox."
2370
 
2371
  #: admin/views/Shortcode.php:1166
2372
  msgid "Lightbox slideshow effect."
2373
+ msgstr "Efecto de presentación de la caja de luz."
2374
 
2375
  #: admin/views/Shortcode.php:1196
2376
  msgid "Enable filmstrip in lightbox"
2377
+ msgstr "Habilitar tira de película en lightbox"
2378
 
2379
  #: admin/views/Shortcode.php:1199
2380
  msgid "Enable filmstrip view for images."
2381
+ msgstr "Habilita la vista de tira de película para las imágenes."
2382
 
2383
  #: admin/views/Shortcode.php:1224
2384
  msgid "Enable control buttons in lightbox."
2385
+ msgstr "Habilita los botones de control en lightbox."
2386
 
2387
  #: admin/views/Shortcode.php:1233
2388
  msgid "Enable fullscreen view for images."
2389
+ msgstr "Habilitar visualización a pantalla completa para imágenes."
2390
 
2391
  #: admin/views/Shortcode.php:1241
2392
  msgid "Enable title, description for images."
2393
+ msgstr "Habilitar título, descripción de imágenes."
2394
 
2395
  #: admin/views/Shortcode.php:1264
2396
  msgid "Enable rating for images."
2397
+ msgstr "Habilite la calificación de las imágenes."
2398
 
2399
  #: admin/views/Shortcode.php:1272
2400
  msgid "Enable comments for images."
2401
+ msgstr "Habilite los comentarios para las imágenes."
2402
 
2403
  #: admin/views/Shortcode.php:1284
2404
  msgid "Enable Facebook share button for images."
2405
+ msgstr "Habilite el botón Compartir de Facebook para las imágenes."
2406
 
2407
  #: admin/views/Shortcode.php:1292
2408
  msgid "Enable Twitter share button for images."
2409
+ msgstr "Habilite el botón Compartir de Twitter para las imágenes."
2410
 
2411
  #: admin/views/Shortcode.php:1300
2412
  msgid "Enable Google+ share button for images."
2413
+ msgstr "Habilite el botón compartir de Google+ para las imágenes."
2414
 
2415
  #: admin/views/Shortcode.php:1308
2416
  msgid "Enable Pinterest share button for images."
2417
+ msgstr "Habilite el botón Compartir de Pinterest para las imágenes."
2418
 
2419
  #: admin/views/Shortcode.php:1316
2420
  msgid "Enable Tumblr share button for images."
2421
+ msgstr "Habilite el botón de compartir de Tumblr para las imágenes."
2422
 
2423
  #: admin/views/Shortcode.php:1327
2424
  msgid "Enable Ecommerce for images."
2425
+ msgstr "Habilite el comercio electrónico para las imágenes."
2426
 
2427
  #: admin/views/Shortcode.php:1340
2428
  msgid "Toggle panel"
2429
+ msgstr "Panel de alternancia"
2430
 
2431
  #: admin/views/Shortcode.php:1386
2432
  msgid "Advertisement type:"
2433
+ msgstr "Tipo de Publicidad:"
2434
 
2435
  #: admin/views/Shortcode.php:1397
2436
  msgid "Enter absolute url."
2437
+ msgstr "Ingrese la URL absoluta."
2438
 
2439
  #: admin/views/Shortcode.php:1404
2440
  msgid "Enter absolute image file url or add file from Options page."
2441
+ msgstr "Ingrese la URL del archivo de imagen absoluta o agregue el archivo desde la página de Opciones."
2442
 
2443
  #: admin/views/Shortcode.php:1507
2444
  msgid "Insert into post"
2445
+ msgstr "Insertar en la publicación"
2446
 
2447
  #: admin/views/Shortcode.php:1532
2448
  msgid "New shortcode"
2449
+ msgstr "Nuevo shortcode"
2450
 
2451
  #: admin/views/Shortcode.php:1541 admin/views/Shortcode.php:1604
2452
  msgid "Generate"
2453
+ msgstr "Generar"
2454
 
2455
  #: admin/views/Shortcode.php:1546
2456
  msgid "Shortcode"
2457
+ msgstr "Shortcode"
2458
 
2459
  #: admin/views/Shortcode.php:1552
2460
  msgid "PHP function"
2461
+ msgstr "Función de PHP"
2462
 
2463
  #: admin/views/Shortcode.php:1618
2464
  msgid "There is no shortcode with such ID!"
2465
+ msgstr "¡No hay shortcode con dicha identificación!"
2466
 
2467
  #: admin/views/Shortcode.php:2909
2468
  msgid "Image thumbnail dimensions:"
2469
+ msgstr "Dimensiones de la miniatura de la imagen:"
2470
 
2471
  #: admin/views/Shortcode.php:2912
2472
  msgid "Image thumbnail height:"
2473
+ msgstr "Altura de la miniatura de la imagen:"
2474
 
2475
  #: admin/views/Shortcode.php:2913
2476
  msgid "Number of image rows:"
2477
+ msgstr "Número de filas de imágenes:"
2478
 
2479
  #: admin/views/Themes.php:18
2480
  msgid "You can't change theme parameters in free version."
2481
+ msgstr "No puede cambiar los parámetros del tema en la versión gratuita."
2482
 
2483
  #: admin/views/Themes.php:170
2484
  msgid "Theme Name"
2485
+ msgstr "Nombre del tema"
2486
 
2487
  #: admin/views/Themes.php:178
2488
  msgid "Reset to default theme"
2489
+ msgstr "Restablecer el tema predeterminado"
2490
 
2491
  #: admin/views/Themes.php:206 admin/views/Themes.php:1516
2492
  #: admin/views/Themes.php:1801 admin/views/Themes.php:2334
2493
  #: admin/views/Themes.php:3118 admin/views/Themes.php:4490
2494
  msgid "Margin:"
2495
+ msgstr "Margen:"
2496
 
2497
  #: admin/views/Themes.php:212 admin/views/Themes.php:512
2498
  #: admin/views/Themes.php:761 admin/views/Themes.php:1523
2499
  #: admin/views/Themes.php:1794 admin/views/Themes.php:2341
2500
  #: admin/views/Themes.php:3125 admin/views/Themes.php:4497
2501
  msgid "Padding:"
2502
+ msgstr "Relleno:"
2503
 
2504
  #: admin/views/Themes.php:218 admin/views/Themes.php:518
2505
  #: admin/views/Themes.php:767 admin/views/Themes.php:1530
2506
  #: admin/views/Themes.php:1808 admin/views/Themes.php:2774
2507
  #: admin/views/Themes.php:3183 admin/views/Themes.php:4447
2508
  msgid "Border width:"
2509
+ msgstr "Ancho del borde:"
2510
 
2511
  #: admin/views/Themes.php:224 admin/views/Themes.php:524
2512
  #: admin/views/Themes.php:773 admin/views/Themes.php:1536
2513
  #: admin/views/Themes.php:1814 admin/views/Themes.php:2780
2514
  #: admin/views/Themes.php:3189 admin/views/Themes.php:4453
 
 
2515
  msgid "Border style:"
2516
+ msgstr "Estilo del borde:"
2517
 
2518
  #: admin/views/Themes.php:238 admin/views/Themes.php:538
2519
  #: admin/views/Themes.php:787 admin/views/Themes.php:1550
2520
  #: admin/views/Themes.php:1828 admin/views/Themes.php:2794
2521
  #: admin/views/Themes.php:3203 admin/views/Themes.php:4467
2522
  msgid "Border color:"
2523
+ msgstr "Color del borde:"
2524
 
2525
  #: admin/views/Themes.php:244 admin/views/Themes.php:544
2526
  #: admin/views/Themes.php:793 admin/views/Themes.php:1556
2528
  #: admin/views/Themes.php:2800 admin/views/Themes.php:3209
2529
  #: admin/views/Themes.php:4473
2530
  msgid "Border radius:"
2531
+ msgstr "Borde del radio:"
2532
 
2533
  #: admin/views/Themes.php:247 admin/views/Themes.php:254
2534
  #: admin/views/Themes.php:410 admin/views/Themes.php:417
2577
  #: admin/views/Themes.php:4500 admin/views/Themes.php:4529
2578
  #: admin/views/Themes.php:4690 admin/views/Themes.php:4779
2579
  msgid "Use CSS type values."
2580
+ msgstr "Use valores de tipo CSS."
2581
 
2582
  #: admin/views/Themes.php:251 admin/views/Themes.php:1841
2583
  msgid "Shadow:"
2584
+ msgstr "Sombra:"
2585
 
2586
  #: admin/views/Themes.php:258 admin/views/Themes.php:607
2587
  #: admin/views/Themes.php:854 admin/views/Themes.php:1848
2588
  #: admin/views/Themes.php:2807
2589
  msgid "Hover effect:"
2590
+ msgstr "Efecto de desplazamiento:"
2591
 
2592
  #: admin/views/Themes.php:272 admin/views/Themes.php:621
2593
  #: admin/views/Themes.php:868 admin/views/Themes.php:1862
2594
  #: admin/views/Themes.php:2250 admin/views/Themes.php:2821
2595
  msgid "Hover effect value:"
2596
+ msgstr "Valor del efecto de desplazamiento:"
2597
 
2598
  #: admin/views/Themes.php:275 admin/views/Themes.php:624
2599
  #: admin/views/Themes.php:871 admin/views/Themes.php:1865
2600
  #: admin/views/Themes.php:2253 admin/views/Themes.php:2824
2601
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
2602
+ msgstr "Ej. Rotar: 10deg, Escala: 1.5, Sesgo: 10deg."
2603
 
2604
  #: admin/views/Themes.php:279 admin/views/Themes.php:628
2605
  #: admin/views/Themes.php:875
2606
  msgid "Transition:"
2607
+ msgstr "Transición:"
2608
 
2609
  #: admin/views/Themes.php:299 admin/views/Themes.php:1888
2610
  #: admin/views/Themes.php:2257
2611
  msgid "Thumbnail background color:"
2612
+ msgstr "Color de fondo de la miniatura:"
2613
 
2614
  #: admin/views/Themes.php:306 admin/views/Themes.php:1894
2615
  #: admin/views/Themes.php:2229 admin/views/Themes.php:2847
2616
  msgid "Thumbnail transparency:"
2617
+ msgstr "Transparencia de miniaturas:"
2618
 
2619
  #: admin/views/Themes.php:313 admin/views/Themes.php:1446
2620
  #: admin/views/Themes.php:1901 admin/views/Themes.php:2854
2621
  msgid "Full background color:"
2622
+ msgstr "Color de fondo completo:"
2623
 
2624
  #: admin/views/Themes.php:319 admin/views/Themes.php:1452
2625
  #: admin/views/Themes.php:1907 admin/views/Themes.php:2860
2626
  msgid "Full background transparency:"
2627
+ msgstr "Completa transparencia de fondo:"
2628
 
2629
  #: admin/views/Themes.php:326 admin/views/Themes.php:582
2630
  #: admin/views/Themes.php:830 admin/views/Themes.php:1502
2631
  #: admin/views/Themes.php:1914 admin/views/Themes.php:2867
2632
  #: admin/views/Themes.php:3104 admin/views/Themes.php:4552
2633
  msgid "Alignment:"
2634
+ msgstr "Alineacion:"
2635
 
2636
  #: admin/views/Themes.php:350 admin/views/Themes.php:1593
2637
  #: admin/views/Themes.php:1938
2638
  msgid "Title position:"
2639
+ msgstr "Posición del Título:"
2640
 
2641
  #: admin/views/Themes.php:353 admin/views/Themes.php:1158
2642
  #: admin/views/Themes.php:1596 admin/views/Themes.php:1941
2644
  #: admin/views/Themes.php:3806 admin/views/Themes.php:3874
2645
  #: admin/views/Themes.php:4016 admin/views/Themes.php:4546
2646
  msgid "Top"
2647
+ msgstr "Arriba"
2648
 
2649
  #: admin/views/Themes.php:355 admin/views/Themes.php:1160
2650
  #: admin/views/Themes.php:1598 admin/views/Themes.php:1943
2652
  #: admin/views/Themes.php:3808 admin/views/Themes.php:3876
2653
  #: admin/views/Themes.php:4018 admin/views/Themes.php:4548
2654
  msgid "Bottom"
2655
+ msgstr "Abajo"
2656
 
2657
  #: admin/views/Themes.php:359 admin/views/Themes.php:884
2658
  #: admin/views/Themes.php:1947 admin/views/Themes.php:2543
2659
  #: admin/views/Themes.php:2891 admin/views/Themes.php:4138
2660
  #: admin/views/Themes.php:4817
2661
  msgid "Title font size:"
2662
+ msgstr "Tamaño del texto del título:"
2663
 
2664
  #: admin/views/Themes.php:365 admin/views/Themes.php:890
2665
  #: admin/views/Themes.php:1953 admin/views/Themes.php:2549
2666
  #: admin/views/Themes.php:2897 admin/views/Themes.php:4096
2667
  msgid "Title font color:"
2668
+ msgstr "Color de texto para el título:"
2669
 
2670
  #: admin/views/Themes.php:371 admin/views/Themes.php:896
2671
  #: admin/views/Themes.php:1342 admin/views/Themes.php:1959
2672
  #: admin/views/Themes.php:2555 admin/views/Themes.php:2903
2673
  #: admin/views/Themes.php:4102
2674
  msgid "Title font family:"
2675
+ msgstr "Familia de tipografía para el título:"
2676
 
2677
  #: admin/views/Themes.php:393 admin/views/Themes.php:918
2678
  #: admin/views/Themes.php:1981 admin/views/Themes.php:2577
2679
  #: admin/views/Themes.php:2925 admin/views/Themes.php:4124
2680
  #: admin/views/Themes.php:4829
2681
  msgid "Title font weight:"
2682
+ msgstr "Peso de la fuente del título:"
2683
 
2684
  #: admin/views/Themes.php:407 admin/views/Themes.php:932
2685
  #: admin/views/Themes.php:1995 admin/views/Themes.php:2939
2686
  msgid "Title box shadow:"
2687
+ msgstr "Sombra del cuadro de título:"
2688
 
2689
  #: admin/views/Themes.php:414 admin/views/Themes.php:939
2690
  #: admin/views/Themes.php:2002 admin/views/Themes.php:2504
2691
  #: admin/views/Themes.php:4783
2692
  msgid "Title margin:"
2693
+ msgstr "Margen del título:"
2694
 
2695
  #: admin/views/Themes.php:421 admin/views/Themes.php:671
2696
  #: admin/views/Themes.php:946 admin/views/Themes.php:1703
2697
  #: admin/views/Themes.php:2064 admin/views/Themes.php:2684
2698
  #: admin/views/Themes.php:3001 admin/views/Themes.php:3305
2699
  msgid "Gallery title/description font size:"
2700
+ msgstr "Tamaño de la fuente del título de la galería / descripción:"
2701
 
2702
  #: admin/views/Themes.php:428 admin/views/Themes.php:677
2703
  #: admin/views/Themes.php:952 admin/views/Themes.php:1710
2704
  #: admin/views/Themes.php:2070 admin/views/Themes.php:2690
2705
  #: admin/views/Themes.php:3007 admin/views/Themes.php:3312
2706
  msgid "Gallery title/description font color:"
2707
+ msgstr "Título de la galería / color de fuente de la descripción:"
2708
 
2709
  #: admin/views/Themes.php:434 admin/views/Themes.php:683
2710
  #: admin/views/Themes.php:958 admin/views/Themes.php:1716
2711
  #: admin/views/Themes.php:2076 admin/views/Themes.php:2696
2712
  #: admin/views/Themes.php:3013 admin/views/Themes.php:3318
2713
  msgid "Gallery title/description font family:"
2714
+ msgstr "Familia de fuentes de título / descripción de la galería:"
2715
 
2716
  #: admin/views/Themes.php:456 admin/views/Themes.php:705
2717
  #: admin/views/Themes.php:980 admin/views/Themes.php:1738
2718
  #: admin/views/Themes.php:2098 admin/views/Themes.php:2718
2719
  #: admin/views/Themes.php:3035 admin/views/Themes.php:3340
2720
  msgid "Gallery title/description font weight:"
2721
+ msgstr "Título de la galería / peso de la fuente de la descripción:"
2722
 
2723
  #: admin/views/Themes.php:470 admin/views/Themes.php:719
2724
  #: admin/views/Themes.php:994 admin/views/Themes.php:1752
2725
  #: admin/views/Themes.php:2112 admin/views/Themes.php:2732
2726
  #: admin/views/Themes.php:3049 admin/views/Themes.php:3354
2727
  msgid "Gallery title/description box shadow:"
2728
+ msgstr "Sombra del cuadro de título / descripción de la galería:"
2729
 
2730
  #: admin/views/Themes.php:477 admin/views/Themes.php:726
2731
  #: admin/views/Themes.php:1001 admin/views/Themes.php:1759
2732
  #: admin/views/Themes.php:2119 admin/views/Themes.php:2739
2733
  #: admin/views/Themes.php:3056 admin/views/Themes.php:3361
2734
  msgid "Gallery title/description margin:"
2735
+ msgstr "Título de la galería / margen de descripción:"
2736
 
2737
  #: admin/views/Themes.php:484 admin/views/Themes.php:733
2738
  #: admin/views/Themes.php:1008 admin/views/Themes.php:1766
2739
  #: admin/views/Themes.php:2126 admin/views/Themes.php:2746
2740
  #: admin/views/Themes.php:3063 admin/views/Themes.php:3368
2741
  msgid "Gallery title/description alignment:"
2742
+ msgstr "Alineación de título / descripción de la galería:"
2743
 
2744
  #: admin/views/Themes.php:562 admin/views/Themes.php:810
2745
  msgid "Transparency:"
2746
+ msgstr "Transparencia:"
2747
 
2748
  #: admin/views/Themes.php:569 admin/views/Themes.php:817
2749
  #: admin/views/Themes.php:1036 admin/views/Themes.php:1563
2750
  #: admin/views/Themes.php:2347 admin/views/Themes.php:3091
2751
  #: admin/views/Themes.php:4599
2752
  msgid "Background color:"
2753
+ msgstr "Color de fondo:"
2754
 
2755
  #: admin/views/Themes.php:575 admin/views/Themes.php:823
2756
  #: admin/views/Themes.php:1569 admin/views/Themes.php:2353
2757
  #: admin/views/Themes.php:3097
2758
  msgid "Background transparency:"
2759
+ msgstr "Transparencia del Fondo:"
2760
 
2761
  #: admin/views/Themes.php:637 admin/views/Themes.php:1391
2762
  #: admin/views/Themes.php:2624 admin/views/Themes.php:4187
2763
  msgid "Description font size:"
2764
+ msgstr "Tamaño de la fuente de descripción:"
2765
 
2766
  #: admin/views/Themes.php:643 admin/views/Themes.php:2630
2767
  #: admin/views/Themes.php:4145
2768
  msgid "Description font color:"
2769
+ msgstr "Color de la Fuente de la Descripción:"
2770
 
2771
  #: admin/views/Themes.php:649 admin/views/Themes.php:1403
2772
  #: admin/views/Themes.php:2636 admin/views/Themes.php:4151
2773
  msgid "Description font family:"
2774
+ msgstr "Familia de fuentes de descripción:"
2775
 
2776
  #: admin/views/Themes.php:1042 admin/views/Themes.php:3664
2777
  #: admin/views/Themes.php:4612
2778
  msgid "Right, left buttons size:"
2779
+ msgstr "Tamaño de botones derecho e izquierdo:"
2780
 
2781
  #: admin/views/Themes.php:1048 admin/views/Themes.php:4618
2782
  msgid "Play, pause buttons size:"
2783
+ msgstr "Reproducir, pausa el tamaño de los botones:"
2784
 
2785
  #: admin/views/Themes.php:1054 admin/views/Themes.php:3239
2786
  #: admin/views/Themes.php:4624
2787
  msgid "Buttons color:"
2788
+ msgstr "Color de los botones:"
2789
 
2790
  #: admin/views/Themes.php:1060 admin/views/Themes.php:4630
2791
  msgid "Buttons transparency:"
2792
+ msgstr "Transparencia de botones:"
2793
 
2794
  #: admin/views/Themes.php:1067 admin/views/Themes.php:4637
2795
  msgid "Buttons hover color:"
2796
+ msgstr "Botones de color flotar:"
2797
 
2798
  #: admin/views/Themes.php:1073 admin/views/Themes.php:3658
2799
  #: admin/views/Themes.php:4643
2800
  msgid "Right, left buttons width:"
2801
+ msgstr "Ancho de botones derecho e izquierdo:"
2802
 
2803
  #: admin/views/Themes.php:1079 admin/views/Themes.php:3652
2804
  #: admin/views/Themes.php:4649
2805
  msgid "Right, left buttons height:"
2806
+ msgstr "Derecha, izquierda botones altura:"
2807
 
2808
  #: admin/views/Themes.php:1085 admin/views/Themes.php:3633
2809
  #: admin/views/Themes.php:4655
2810
  msgid "Right, left buttons background color:"
2811
+ msgstr "Derecha, botones izquierdo color de fondo:"
2812
 
2813
  #: admin/views/Themes.php:1091 admin/views/Themes.php:3689
2814
  #: admin/views/Themes.php:4661
2815
  msgid "Right, left buttons border width:"
2816
+ msgstr "A la derecha, ancho del borde izquierdo de los botones:"
2817
 
2818
  #: admin/views/Themes.php:1097 admin/views/Themes.php:3695
2819
  #: admin/views/Themes.php:4667
2820
  msgid "Right, left buttons border style:"
2821
+ msgstr "Derecha, botones izquierdos borde estilo:"
2822
 
2823
  #: admin/views/Themes.php:1111 admin/views/Themes.php:3709
2824
  #: admin/views/Themes.php:4681
2825
  msgid "Right, left buttons border color:"
2826
+ msgstr "Derecha, botones izquierdo color del borde:"
2827
 
2828
  #: admin/views/Themes.php:1117 admin/views/Themes.php:3682
2829
  #: admin/views/Themes.php:4687
2830
  msgid "Right, left buttons border radius:"
2831
+ msgstr "Derecha, izquierda, botones, borde, radio:"
2832
 
2833
  #: admin/views/Themes.php:1124 admin/views/Themes.php:3619
2834
  #: admin/views/Themes.php:4694
2835
  msgid "Right, left buttons style:"
2836
+ msgstr "Derecha, estilo de botones a la izquierda:"
2837
 
2838
  #: admin/views/Themes.php:1138 admin/views/Themes.php:3645
2839
  msgid "Right, left buttons box shadow:"
2840
+ msgstr "A la derecha, a la izquierda sombra del cuadro de botones:"
2841
 
2842
  #: admin/views/Themes.php:1155
2843
  msgid "Filmstrip/Slider bullet position:"
2844
+ msgstr "Tira de película / posición de bala deslizante:"
2845
 
2846
  #: admin/views/Themes.php:1166
2847
  msgid "Filmstrip margin:"
2848
+ msgstr "Margen de tira de película:"
2849
 
2850
  #: admin/views/Themes.php:1173
2851
  msgid "Filmstrip border width:"
2852
+ msgstr "Ancho del borde de la tira de película:"
2853
 
2854
  #: admin/views/Themes.php:1179
2855
  msgid "Filmstrip border style:"
2856
+ msgstr "Estilo de borde de tira de película:"
2857
 
2858
  #: admin/views/Themes.php:1194
2859
  msgid "Filmstrip border color:"
2860
+ msgstr "Color del borde de la tira de película:"
2861
 
2862
  #: admin/views/Themes.php:1200
2863
  msgid "Filmstrip border radius:"
2864
+ msgstr "Radio del borde de la tira de película:"
2865
 
2866
  #: admin/views/Themes.php:1207
2867
  msgid "Filmstrip active border width:"
2868
+ msgstr "Ancho del borde activo de la tira de película:"
2869
 
2870
  #: admin/views/Themes.php:1213
2871
  msgid "Filmstrip active border color:"
2872
+ msgstr "Color del borde activo de la tira de película:"
2873
 
2874
  #: admin/views/Themes.php:1219
2875
  msgid "Filmstrip deactive transparency: "
2876
+ msgstr "Transparencia de desactivación de película de diapositivas: "
2877
 
2878
  #: admin/views/Themes.php:1226
2879
  msgid "Filmstrip right, left buttons background color: "
2880
+ msgstr "Tira de película derecha, botón izquierdo color de fondo: "
2881
 
2882
  #: admin/views/Themes.php:1232 admin/views/Themes.php:3791
2883
  msgid "Filmstrip right, left buttons color:"
2884
+ msgstr "Tira de película derecha, botón de color izquierdo:"
2885
 
2886
  #: admin/views/Themes.php:1238 admin/views/Themes.php:3785
2887
  msgid "Filmstrip right, left buttons size:"
2888
+ msgstr "Tira de película derecha, tamaño de botones izquierdo:"
2889
 
2890
  #: admin/views/Themes.php:1244
2891
  msgid "Slider bullet width: "
2892
+ msgstr "Ancho de bala del control deslizante: "
2893
 
2894
  #: admin/views/Themes.php:1250
2895
  msgid "Slider bullet height:"
2896
+ msgstr "Altura de bala del control deslizante:"
2897
 
2898
  #: admin/views/Themes.php:1256
2899
  msgid "Slider bullet border radius: "
2900
+ msgstr "Radio de borde de bala del control deslizante: "
2901
 
2902
  #: admin/views/Themes.php:1263
2903
  msgid "Slider bullet background color:"
2904
+ msgstr "Color de fondo de bala deslizante:"
2905
 
2906
  #: admin/views/Themes.php:1269
2907
  msgid "Slider bullet margin:"
2908
+ msgstr "Margen de viñeta del control deslizante:"
2909
 
2910
  #: admin/views/Themes.php:1275
2911
  msgid "Slider bullet active background color: "
2912
+ msgstr "Control deslizante viñeta color de fondo activo: "
2913
 
2914
  #: admin/views/Themes.php:1281
2915
  msgid "Slider bullet active border width:"
2916
+ msgstr "Ancho del borde activo del control deslizante del control deslizante:"
2917
 
2918
  #: admin/views/Themes.php:1287
2919
  msgid "Slider bullet active border color: "
2920
+ msgstr "Control deslizante bullet color de borde activo: "
2921
 
2922
  #: admin/views/Themes.php:1303
2923
  msgid "Title background color: "
2924
+ msgstr "Color de fondo del título: "
2925
 
2926
  #: admin/views/Themes.php:1309
2927
  msgid "Title transparency: "
2928
+ msgstr "Transparencia del título: "
2929
 
2930
  #: admin/views/Themes.php:1316 admin/views/Themes.php:4776
2931
  msgid "Title border radius:"
2932
+ msgstr "Radio del borde del título:"
2933
 
2934
  #: admin/views/Themes.php:1323
2935
  msgid "Title padding: "
2936
+ msgstr "Padding del título: "
2937
 
2938
  #: admin/views/Themes.php:1330
2939
  msgid "Title font size: "
2940
+ msgstr "Tamaño del texto del título: "
2941
 
2942
  #: admin/views/Themes.php:1336
2943
  msgid "Title color: "
2944
+ msgstr "Color del Título: "
2945
 
2946
  #: admin/views/Themes.php:1364 admin/views/Themes.php:1697
2947
  msgid "Description background color:"
2948
+ msgstr "Color de fondo de la descripción:"
2949
 
2950
  #: admin/views/Themes.php:1370
2951
  msgid "Description transparency:"
2952
+ msgstr "Descripción transparencia:"
2953
 
2954
  #: admin/views/Themes.php:1377 admin/views/Themes.php:1690
2955
  msgid "Description border radius:"
2956
+ msgstr "Descripción del radio del borde:"
2957
 
2958
  #: admin/views/Themes.php:1384 admin/views/Themes.php:1657
2959
  #: admin/views/Themes.php:2591
2960
  msgid "Description padding:"
2961
+ msgstr "Descripción de relleno:"
2962
 
2963
  #: admin/views/Themes.php:1397
2964
  msgid "Description color:"
2965
+ msgstr "Descripción color:"
2966
 
2967
  #: admin/views/Themes.php:1439
2968
  msgid "Full padding:"
2969
+ msgstr "Relleno completo:"
2970
 
2971
  #: admin/views/Themes.php:1459
2972
  msgid "Full border radius:"
2973
+ msgstr "Radio de borde completo:"
2974
 
2975
  #: admin/views/Themes.php:1466
2976
  msgid "Full border width:"
2977
+ msgstr "Ancho del borde completo:"
2978
 
2979
  #: admin/views/Themes.php:1472
2980
  msgid "Full border style:"
2981
+ msgstr "Estilo de borde completo:"
2982
 
2983
  #: admin/views/Themes.php:1486
2984
  msgid "Full border color:"
2985
+ msgstr "Color de borde completo:"
2986
 
2987
  #: admin/views/Themes.php:1576 admin/views/Themes.php:3132
2988
  #: admin/views/Themes.php:4526
2989
  msgid "Box shadow:"
2990
+ msgstr "Sombra del contenedor:"
2991
 
2992
  #: admin/views/Themes.php:1602
2993
  msgid "Title alignment:"
2994
+ msgstr "Alineación del título:"
2995
 
2996
  #: admin/views/Themes.php:1616 admin/views/Themes.php:2009
2997
  #: admin/views/Themes.php:2946 admin/views/Themes.php:3171
2998
  #: admin/views/Themes.php:4399
2999
  msgid "Font size:"
3000
+ msgstr "Tamaño de fuente:"
3001
 
3002
  #: admin/views/Themes.php:1622 admin/views/Themes.php:2015
3003
  #: admin/views/Themes.php:2952 admin/views/Themes.php:3177
3004
  #: admin/views/Themes.php:4405
3005
  msgid "Font color:"
3006
+ msgstr "Color de fuente:"
3007
 
3008
  #: admin/views/Themes.php:1628 admin/views/Themes.php:2021
3009
  #: admin/views/Themes.php:2958 admin/views/Themes.php:3149
3010
  #: admin/views/Themes.php:4411
3011
  msgid "Font family:"
3012
+ msgstr "Familia tipográfica:"
3013
 
3014
  #: admin/views/Themes.php:1650
3015
  msgid "Description margin:"
3016
+ msgstr "Margen de descripción:"
3017
 
3018
  #: admin/views/Themes.php:1664 admin/views/Themes.php:2598
3019
  msgid "Description border width:"
3020
+ msgstr "Descripción del ancho del borde:"
3021
 
3022
  #: admin/views/Themes.php:1670 admin/views/Themes.php:2604
3023
  msgid "Description border style:"
3024
+ msgstr "Descripción estilo de borde:"
3025
 
3026
  #: admin/views/Themes.php:1684 admin/views/Themes.php:2618
3027
  msgid "Description border color:"
3028
+ msgstr "Descripción del color del borde:"
3029
 
3030
  #: admin/views/Themes.php:1869 admin/views/Themes.php:2206
3031
  #: admin/views/Themes.php:2828
3032
  msgid "Thumbnail transition:"
3033
+ msgstr "Transición de miniatura:"
3034
 
3035
  #: admin/views/Themes.php:2043 admin/views/Themes.php:2980
3036
  #: admin/views/Themes.php:4433
3037
  msgid "Font weight:"
3038
+ msgstr "Grosor de la fuente:"
3039
 
3040
  #: admin/views/Themes.php:2057 admin/views/Themes.php:2393
3041
  #: admin/views/Themes.php:2994
3042
  msgid "Back padding:"
3043
+ msgstr "Relleno de espalda:"
3044
 
3045
  #: admin/views/Themes.php:2154
3046
  msgid "Thumbnail margin:"
3047
+ msgstr "Margen de miniaturas:"
3048
 
3049
  #: admin/views/Themes.php:2160
3050
  msgid "Thumbnail padding:"
3051
+ msgstr "Relleno de la miniatura:"
3052
 
3053
  #: admin/views/Themes.php:2166
3054
  msgid "Thumbnail border width:"
3055
+ msgstr "Ancho del borde de la miniatura:"
3056
 
3057
  #: admin/views/Themes.php:2172
3058
  msgid "Thumbnail border style:"
3059
+ msgstr "Estilo de borde de miniatura:"
3060
 
3061
  #: admin/views/Themes.php:2186
3062
  msgid "Thumbnail border color:"
3063
+ msgstr "Color del borde de la miniatura:"
3064
 
3065
  #: admin/views/Themes.php:2192
3066
  msgid "Thumbnail border radius:"
3067
+ msgstr "Radio de borde de miniatura:"
3068
 
3069
  #: admin/views/Themes.php:2199
3070
  msgid "Thumbnail box shadow:"
3071
+ msgstr "Sombra de la caja de miniaturas:"
3072
 
3073
  #: admin/views/Themes.php:2215
3074
  msgid "Thumbnail alignment:"
3075
+ msgstr "Alineación de miniaturas:"
3076
 
3077
  #: admin/views/Themes.php:2236
3078
  msgid "Thumbnail hover effect:"
3079
+ msgstr "Efecto de desplazamiento en miniatura:"
3080
 
3081
  #: admin/views/Themes.php:2263
3082
  msgid "Thumbnails background color:"
3083
+ msgstr "Color de fondo de miniaturas:"
3084
 
3085
  #: admin/views/Themes.php:2269
3086
  msgid "Thumbnail background transparency:"
3087
+ msgstr "Transparencia de fondo en miniatura:"
3088
 
3089
  #: admin/views/Themes.php:2287
3090
  msgid "Thumbnail div padding:"
3091
+ msgstr "Acolchado div en miniatura:"
3092
 
3093
  #: admin/views/Themes.php:2294
3094
  msgid "Thumbnail div background color:"
3095
+ msgstr "Color de fondo div en miniatura:"
3096
 
3097
  #: admin/views/Themes.php:2300
3098
  msgid "Thumbnail div border width:"
3099
+ msgstr "Ancho de borde div en miniatura:"
3100
 
3101
  #: admin/views/Themes.php:2307
3102
  msgid "humbnail div border style:"
3103
+ msgstr "estilo de borde div de humbnail:"
3104
 
3105
  #: admin/views/Themes.php:2321
3106
  msgid "Thumbnail div border color:"
3107
+ msgstr "Color del borde div en miniatura:"
3108
 
3109
  #: admin/views/Themes.php:2327
3110
  msgid "Thumbnail div border radius:"
3111
+ msgstr "Radio del borde div en miniatura:"
3112
 
3113
  #: admin/views/Themes.php:2367
3114
  msgid "Separator width:"
3115
+ msgstr "Ancho del separador:"
3116
 
3117
  #: admin/views/Themes.php:2373
3118
  msgid "Separator style:"
3119
+ msgstr "Estilo del separador:"
3120
 
3121
  #: admin/views/Themes.php:2387
3122
  msgid "Separator color:"
3123
+ msgstr "Color del separador:"
3124
 
3125
  #: admin/views/Themes.php:2400
3126
  msgid "Back font size:"
3127
+ msgstr "Tamaño de fuente posterior:"
3128
 
3129
  #: admin/views/Themes.php:2406
3130
  msgid "Back font color:"
3131
+ msgstr "Color de la fuente posterior:"
3132
 
3133
  #: admin/views/Themes.php:2412
3134
  msgid "Back font family:"
3135
+ msgstr "Familia de fuentes traseras:"
3136
 
3137
  #: admin/views/Themes.php:2434
3138
  msgid "Back font weight:"
3139
+ msgstr "Peso de la fuente posterior:"
3140
 
3141
  #: admin/views/Themes.php:2458
3142
  msgid "Text div padding:"
3143
+ msgstr "Text div padding:"
3144
 
3145
  #: admin/views/Themes.php:2465
3146
  msgid "Text div border width:"
3147
+ msgstr "Ancho de borde div de texto:"
3148
 
3149
  #: admin/views/Themes.php:2471
3150
  msgid "Text border style:"
3151
+ msgstr "Estilo de borde de texto:"
3152
 
3153
  #: admin/views/Themes.php:2485
3154
  msgid "Text border color:"
3155
+ msgstr "Color del borde del texto:"
3156
 
3157
  #: admin/views/Themes.php:2491
3158
  msgid "Text div border radius:"
3159
+ msgstr "Radio de borde de div de texto:"
3160
 
3161
  #: admin/views/Themes.php:2498
3162
  msgid "Text background color:"
3163
+ msgstr "Color del fondo del texto:"
3164
 
3165
  #: admin/views/Themes.php:2510 admin/views/Themes.php:4789
3166
  msgid "Title padding:"
3167
+ msgstr "Relleno del título:"
3168
 
3169
  #: admin/views/Themes.php:2517
3170
  msgid "Title border width:"
3171
+ msgstr "Ancho del borde del título:"
3172
 
3173
  #: admin/views/Themes.php:2523
3174
  msgid "Title border style:"
3175
+ msgstr "Estilo del borde del título:"
3176
 
3177
  #: admin/views/Themes.php:2537
3178
  msgid "Title border color:"
3179
+ msgstr "Color del borde del título:"
3180
 
3181
  #: admin/views/Themes.php:2658 admin/views/Themes.php:4173
3182
  msgid "Description font weight:"
3183
+ msgstr "Peso de la fuente de descripción:"
3184
 
3185
  #: admin/views/Themes.php:2672
3186
  msgid "Description more size:"
3187
+ msgstr "Descripción más tamaño:"
3188
 
3189
  #: admin/views/Themes.php:2678
3190
  msgid "Description more color:"
3191
+ msgstr "Descripción más color:"
3192
 
3193
  #: admin/views/Themes.php:3226
3194
  msgid "Buttons and title margin:"
3195
+ msgstr "Botones y margen de título:"
3196
 
3197
  #: admin/views/Themes.php:3233
3198
  msgid "Buttons size:"
3199
+ msgstr "Tamaño de los botones:"
3200
 
3201
  #: admin/views/Themes.php:3245
3202
  msgid "Buttons and title border width:"
3203
+ msgstr "Botones y ancho del borde del título:"
3204
 
3205
  #: admin/views/Themes.php:3251
3206
  msgid "Buttons and title border style:"
3207
+ msgstr "Botones y estilo del borde del título:"
3208
 
3209
  #: admin/views/Themes.php:3265
3210
  msgid "Buttons and title border color:"
3211
+ msgstr "Botones y color del borde del título:"
3212
 
3213
  #: admin/views/Themes.php:3271
3214
  msgid "Buttons and title border radius:"
3215
+ msgstr "Botones y radio del borde del título:"
3216
 
3217
  #: admin/views/Themes.php:3278
3218
  msgid "Buttons and title background color:"
3219
+ msgstr "Botones y color de fondo del título:"
3220
 
3221
  #: admin/views/Themes.php:3284
3222
  msgid "Buttons and title background transparency:"
3223
+ msgstr "Botones y transparencia de fondo del título:"
3224
 
3225
  #: admin/views/Themes.php:3291
3226
  msgid "Buttons or title alignment:"
3227
+ msgstr "Botones o alineación del título:"
3228
 
3229
  #: admin/views/Themes.php:3396
3230
  msgid "Overlay background color:"
3231
+ msgstr "Color de fondo superpuesto:"
3232
 
3233
  #: admin/views/Themes.php:3402
3234
  msgid "Overlay background transparency:"
3235
+ msgstr "Transparencia de fondo de superposición:"
3236
 
3237
  #: admin/views/Themes.php:3409
3238
  msgid "Lightbox background color:"
3239
+ msgstr "Color de fondo de la caja de luz:"
3240
 
3241
  #: admin/views/Themes.php:3415
3242
  msgid "Lightbox background transparency:"
3243
+ msgstr "Transparencia del fondo de la caja de luz:"
3244
 
3245
  #: admin/views/Themes.php:3422
3246
  msgid "Control buttons height:"
3247
+ msgstr "Altura de los botones de control:"
3248
 
3249
  #: admin/views/Themes.php:3428
3250
  msgid "Control buttons margin (top):"
3251
+ msgstr "Margen de botones de control (arriba):"
3252
 
3253
  #: admin/views/Themes.php:3434
3254
  msgid "Control buttons margin (left):"
3255
+ msgstr "Margen de botones de control (izquierda):"
3256
 
3257
  #: admin/views/Themes.php:3440
3258
  msgid "Control buttons position:"
3259
+ msgstr "Posición de los botones de control:"
3260
 
3261
  #: admin/views/Themes.php:3449
3262
  msgid "Control buttons background color:"
3263
+ msgstr "Color de fondo de los botones de control:"
3264
 
3265
  #: admin/views/Themes.php:3455
3266
  msgid "Control buttons container border radius:"
3267
+ msgstr "Botones de control radio de borde del contenedor:"
3268
 
3269
  #: admin/views/Themes.php:3462
3270
  msgid "Control buttons container background transparency:"
3271
+ msgstr "Botones de control transparencia del fondo del contenedor:"
3272
 
3273
  #: admin/views/Themes.php:3469
3274
  msgid "Control buttons alignment:"
3275
+ msgstr "Alineación de botones de control:"
3276
 
3277
  #: admin/views/Themes.php:3483
3278
  msgid "Control buttons color:"
3279
+ msgstr "Botones de control de color:"
3280
 
3281
  #: admin/views/Themes.php:3489
3282
  msgid "Control buttons transparency:"
3283
+ msgstr "Controle la transparencia de los botones:"
3284
 
3285
  #: admin/views/Themes.php:3496
3286
  msgid "Toggle button height:"
3287
+ msgstr "Alternar la altura del botón:"
3288
 
3289
  #: admin/views/Themes.php:3502
3290
  msgid "Toggle button width:"
3291
+ msgstr "Ancho del botón de alternar:"
3292
 
3293
  #: admin/views/Themes.php:3508
3294
  msgid "Close button border radius:"
3295
+ msgstr "Radio de borde de botón cerrado:"
3296
 
3297
  #: admin/views/Themes.php:3516
3298
  msgid "Close button border width:"
3299
+ msgstr "Cerrar el ancho del borde del botón:"
3300
 
3301
  #: admin/views/Themes.php:3522
3302
  msgid "Close button border style:"
3303
+ msgstr "Estilo de borde de botón cerrado:"
3304
 
3305
  #: admin/views/Themes.php:3536
3306
  msgid "Close button border color:"
3307
+ msgstr "Cerrar el color del borde del botón:"
3308
 
3309
  #: admin/views/Themes.php:3542
3310
  msgid "Close button box shadow:"
3311
+ msgstr "Cerrar la sombra de la caja del botón:"
3312
 
3313
  #: admin/views/Themes.php:3549
3314
  msgid "Close button background color:"
3315
+ msgstr "Cerrar el color de fondo del botón:"
3316
 
3317
  #: admin/views/Themes.php:3555
3318
  msgid "Close button transparency:"
3319
+ msgstr "Cerrar la transparencia del botón:"
3320
 
3321
  #: admin/views/Themes.php:3561
3322
  msgid "Close button width:"
3323
+ msgstr "Ancho del botón de cierre:"
3324
 
3325
  #: admin/views/Themes.php:3567
3326
  msgid "Close button height:"
3327
+ msgstr "Altura del botón de cierre:"
3328
 
3329
  #: admin/views/Themes.php:3573
3330
  msgid "Close button top:"
3331
+ msgstr "Cerrar el botón superior:"
3332
 
3333
  #: admin/views/Themes.php:3579
3334
  msgid "Close button right:"
3335
+ msgstr "Cerrar el botón a la derecha:"
3336
 
3337
  #: admin/views/Themes.php:3585
3338
  msgid "Close button size:"
3339
+ msgstr "Tamaño del botón de cierre:"
3340
 
3341
  #: admin/views/Themes.php:3591
3342
  msgid "Close button color:"
3343
+ msgstr "Cerrar el color del botón:"
3344
 
3345
  #: admin/views/Themes.php:3597
3346
  msgid "Fullscreen close button color:"
3347
+ msgstr "Color de botón de cierre a pantalla completa:"
3348
 
3349
  #: admin/views/Themes.php:3603
 
 
3350
  msgid "Share buttons color:"
3351
+ msgstr "Color de los botones de compartir:"
3352
 
3353
  #: admin/views/Themes.php:3639
3354
  msgid "Right, left buttons transparency:"
3355
+ msgstr "Derecha, izquierda botones de transparencia:"
3356
 
3357
  #: admin/views/Themes.php:3670
3358
  msgid "Right, left, close buttons hover color:"
3359
+ msgstr "Derecha, izquierda, botones de cierre color flotar:"
3360
 
3361
  #: admin/views/Themes.php:3676
3362
  msgid "Right, left buttons color:"
3363
+ msgstr "Derecha, color de botones izquierdo:"
3364
 
3365
  #: admin/views/Themes.php:3715
3366
  msgid "Filmstrip position:"
3367
+ msgstr "Posición de la tira de película:"
3368
 
3369
  #: admin/views/Themes.php:3726
3370
  msgid "Filmstrip thumbnail margin:"
3371
+ msgstr "Margen de miniatura de la tira de película:"
3372
 
3373
  #: admin/views/Themes.php:3733
3374
  msgid "Filmstrip thumbnail border width:"
3375
+ msgstr "Ancho del borde de la miniatura de la tira de película:"
3376
 
3377
  #: admin/views/Themes.php:3739
3378
  msgid "Filmstrip thumbnail border style:"
3379
+ msgstr "Estilo de borde de miniatura de tira de película:"
3380
 
3381
  #: admin/views/Themes.php:3753
3382
  msgid "Filmstrip thumbnail border color:"
3383
+ msgstr "Color de borde de miniatura de tira de película:"
3384
 
3385
  #: admin/views/Themes.php:3759
3386
  msgid "Filmstrip thumbnail border radius:"
3387
+ msgstr "Radio de borde de miniatura de película:"
3388
 
3389
  #: admin/views/Themes.php:3766
3390
  msgid "Filmstrip thumbnail active border width:"
3391
+ msgstr "Ancho del borde activo de la miniatura de tira de película:"
3392
 
3393
  #: admin/views/Themes.php:3772
3394
  msgid "Filmstrip thumbnail active border color:"
3395
+ msgstr "Color de borde activo de miniatura de tira de película:"
3396
 
3397
  #: admin/views/Themes.php:3778
3398
  msgid "Filmstrip thumbnail deactive transparency:"
3399
+ msgstr "Transparencia de desactivación de miniaturas de diapositivas:"
3400
 
3401
  #: admin/views/Themes.php:3797
3402
  msgid "Filmstrip right, left button background color:"
3403
+ msgstr "Tira de película derecha, color de fondo del botón izquierdo:"
3404
 
3405
  #: admin/views/Themes.php:3803
3406
  msgid "Rating position:"
3407
+ msgstr "Posición de calificación:"
3408
 
3409
  #: admin/views/Themes.php:3812
3410
  msgid "Rating alignment:"
3411
+ msgstr "Alineación de calificación:"
3412
 
3413
  #: admin/views/Themes.php:3826
3414
  msgid "Rating icon:"
3415
+ msgstr "Ícono de clasificación:"
3416
 
3417
  #: admin/views/Themes.php:3840
3418
  msgid "Rating color:"
3419
+ msgstr "Color de clasificación:"
3420
 
3421
  #: admin/views/Themes.php:3846
3422
  msgid "Rating hover color:"
3423
+ msgstr "Puntuación del color de desplazamiento:"
3424
 
3425
  #: admin/views/Themes.php:3852
3426
  msgid "Rating size:"
3427
+ msgstr "Tamaño de calificación:"
3428
 
3429
  #: admin/views/Themes.php:3858
3430
  msgid "Rating icon count:"
3431
+ msgstr "Recuento de iconos de clasificación:"
3432
 
3433
  #: admin/views/Themes.php:3864
3434
  msgid "Rating padding:"
3435
+ msgstr "Relleno de calificación:"
3436
 
3437
  #: admin/views/Themes.php:3871
3438
  msgid "Hit counter position:"
3439
+ msgstr "Posición del contador de visitas:"
3440
 
3441
  #: admin/views/Themes.php:3880
3442
  msgid "Hit counter alignment:"
3443
+ msgstr "Alineamiento del contador de vistas:"
3444
 
3445
  #: admin/views/Themes.php:3894
3446
  msgid "Hit counter background color:"
3447
+ msgstr "Color de fondo del contador de vistas:"
3448
 
3449
  #: admin/views/Themes.php:3900
3450
  msgid "Hit counter background transparency:"
3451
+ msgstr "Transparencia del fondo del contador:"
3452
 
3453
  #: admin/views/Themes.php:3907
3454
  msgid "Hit counter border width:"
3455
+ msgstr "Ancho del borde del contador:"
3456
 
3457
  #: admin/views/Themes.php:3913
3458
  msgid "Hit counter border style:"
3459
+ msgstr "Estilo del borde del contador:"
3460
 
3461
  #: admin/views/Themes.php:3927
3462
  msgid "Hit counter border color:"
3463
+ msgstr "Color del borde del contador:"
3464
 
3465
  #: admin/views/Themes.php:3933
3466
  msgid "Hit counter border radius:"
3467
+ msgstr "Radio del borde del contador:"
3468
 
3469
  #: admin/views/Themes.php:3940
3470
  msgid "Hit counter padding:"
3471
+ msgstr "Relleno del contador:"
3472
 
3473
  #: admin/views/Themes.php:3947
3474
  msgid "Hit counter margin:"
3475
+ msgstr "Margen de contador:"
3476
 
3477
  #: admin/views/Themes.php:3954
3478
  msgid "Hit counter font color:"
3479
+ msgstr "Color de la fuente del contador:"
3480
 
3481
  #: admin/views/Themes.php:3960
3482
  msgid "Hit counter font family:"
3483
+ msgstr "Familia de la fuente del contador:"
3484
 
3485
  #: admin/views/Themes.php:3982
3486
  msgid "Hit counter font weight:"
3487
+ msgstr "Peso de la fuente del contador:"
3488
 
3489
  #: admin/views/Themes.php:3996
3490
  msgid "Hit counter font size:"
3491
+ msgstr "Tamaño de la fuente del contador:"
3492
 
3493
  #: admin/views/Themes.php:4013
3494
  msgid "Info position:"
3495
+ msgstr "Posición de la información:"
3496
 
3497
  #: admin/views/Themes.php:4022
3498
  msgid "Info alignment:"
3499
+ msgstr "Alineación de información:"
3500
 
3501
  #: admin/views/Themes.php:4036
3502
  msgid "Info background color:"
3503
+ msgstr "Color de fondo de información:"
3504
 
3505
  #: admin/views/Themes.php:4042
3506
  msgid "Info background transparency:"
3507
+ msgstr "Transparencia de fondo de información:"
3508
 
3509
  #: admin/views/Themes.php:4049
3510
  msgid "Info border width:"
3511
+ msgstr "Ancho del borde de información:"
3512
 
3513
  #: admin/views/Themes.php:4055
3514
  msgid "Info border style:"
3515
+ msgstr "Estilo de borde de información:"
3516
 
3517
  #: admin/views/Themes.php:4069
3518
  msgid "Info border color:"
3519
+ msgstr "Color del borde de información:"
3520
 
3521
  #: admin/views/Themes.php:4075
3522
  msgid "Info border radius:"
3523
+ msgstr "Radio de borde de información:"
3524
 
3525
  #: admin/views/Themes.php:4082
3526
  msgid "Info padding:"
3527
+ msgstr "Relleno de información:"
3528
 
3529
  #: admin/views/Themes.php:4089
3530
  msgid "Info margin:"
3531
+ msgstr "Margen de información:"
3532
 
3533
  #: admin/views/Themes.php:4194
 
 
3534
  msgid "Comments Width:"
3535
+ msgstr "Anchura de comentarios:"
3536
 
3537
  #: admin/views/Themes.php:4200
3538
  msgid "Comments position:"
3539
+ msgstr "Posición de los comentarios:"
3540
 
3541
  #: admin/views/Themes.php:4209
3542
  msgid "Comments background color:"
3543
+ msgstr "Color de fondo de comentarios:"
3544
 
3545
  #: admin/views/Themes.php:4215
3546
  msgid "Comments font size:"
3547
+ msgstr "Tamaño de letra de los comentarios:"
3548
 
3549
  #: admin/views/Themes.php:4221
3550
  msgid "Comments font color:"
3551
+ msgstr "Color de fuente de comentarios:"
3552
 
3553
  #: admin/views/Themes.php:4227
3554
  msgid "Comments font family:"
3555
+ msgstr "Familia de fuentes de comentarios:"
3556
 
3557
  #: admin/views/Themes.php:4249
3558
  msgid "Comments author font size:"
3559
+ msgstr "Tamaño de la fuente del autor de los comentarios:"
3560
 
3561
  #: admin/views/Themes.php:4256
3562
  msgid "Comments date font size:"
3563
+ msgstr "Tamaño de letra de fecha de los comentarios:"
3564
 
3565
  #: admin/views/Themes.php:4262
3566
  msgid "Comments body font size:"
3567
+ msgstr "Tamaño de letra del cuerpo de comentarios:"
3568
 
3569
  #: admin/views/Themes.php:4268
3570
  msgid "Comment input border width:"
3571
+ msgstr "Ancho de borde de entrada de comentario:"
3572
 
3573
  #: admin/views/Themes.php:4274
3574
  msgid "omment input border style:"
3575
+ msgstr "estilo de borde de entrada omment:"
3576
 
3577
  #: admin/views/Themes.php:4288
3578
  msgid "Comment input border color:"
3579
+ msgstr "Color de borde de entrada de comentario:"
3580
 
3581
  #: admin/views/Themes.php:4294
3582
  msgid "Comment input border radius:"
3583
+ msgstr "Radio de entrada del comentario:"
3584
 
3585
  #: admin/views/Themes.php:4300
3586
  msgid "Comment input padding:"
3587
+ msgstr "Compensación de entrada de comentarios:"
3588
 
3589
  #: admin/views/Themes.php:4307
3590
  msgid "Comment input background color:"
3591
+ msgstr "Color de fondo de entrada de comentario:"
3592
 
3593
  #: admin/views/Themes.php:4313
3594
  msgid "Comment button background color:"
3595
+ msgstr "Color de fondo del botón de comentario:"
3596
 
3597
  #: admin/views/Themes.php:4319
3598
  msgid "Comment button padding:"
3599
+ msgstr "Relleno del botón de comentario:"
3600
 
3601
  #: admin/views/Themes.php:4326
3602
  msgid "Comment button border width:"
3603
+ msgstr "Ancho del borde del botón de comentario:"
3604
 
3605
  #: admin/views/Themes.php:4332
3606
  msgid "Comment button border style:"
3607
+ msgstr "Estilo del borde del botón de comentario:"
3608
 
3609
  #: admin/views/Themes.php:4346
3610
  msgid "Comment button border color:"
3611
+ msgstr "Color del borde del botón de comentario:"
3612
 
3613
  #: admin/views/Themes.php:4352
3614
  msgid "omment button border radius:"
3615
+ msgstr "radio de borde de botón de omisión:"
3616
 
3617
  #: admin/views/Themes.php:4359
3618
  msgid "Comment separator width:"
3619
+ msgstr "Ancho del separador de comentarios:"
3620
 
3621
  #: admin/views/Themes.php:4365
3622
  msgid "Comment separator style:"
3623
+ msgstr "Estilo de separador de comentarios:"
3624
 
3625
  #: admin/views/Themes.php:4379
3626
  msgid "Comment separator color:"
3627
+ msgstr "Color del separador de comentarios:"
3628
 
3629
  #: admin/views/Themes.php:4504
3630
  msgid "Button background color:"
3631
+ msgstr "Color del fondo de los botones:"
3632
 
3633
  #: admin/views/Themes.php:4510
3634
  msgid "Button background transparency:"
3635
+ msgstr "Transparencia de fondo del botón:"
3636
 
3637
  #: admin/views/Themes.php:4517
3638
  msgid "Button transition:"
3639
+ msgstr "Transición de botones:"
3640
 
3641
  #: admin/views/Themes.php:4543
3642
  msgid "Position:"
3643
+ msgstr "Posición:"
3644
 
3645
  #: admin/views/Themes.php:4566
3646
  msgid "Numbering:"
3647
+ msgstr "Numeración:"
3648
 
3649
  #: admin/views/Themes.php:4575
3650
  msgid "Button text:"
3651
+ msgstr "Texto de abajo:"
3652
 
3653
  #: admin/views/Themes.php:4580
3654
  msgid "Arrow"
3655
+ msgstr "Flecha"
3656
 
3657
  #: admin/views/Themes.php:4581
3658
  msgid "Next, previous buttons values."
3659
+ msgstr "A continuación, los valores de los botones anteriores."
3660
 
3661
  #: admin/views/Themes.php:4605
3662
  msgid "Container opacity:"
3663
+ msgstr "Opacidad del contenedor:"
3664
 
3665
  #: admin/views/Themes.php:4718
3666
  msgid "Carousel margin:"
3667
+ msgstr "Margen del carrusel:"
3668
 
3669
  #: admin/views/Themes.php:4724
3670
  msgid "Image border width:"
3671
+ msgstr "Ancho del borde de la imagen:"
3672
 
3673
  #: admin/views/Themes.php:4731
3674
  msgid "Image border style:"
3675
+ msgstr "Estilo de borde de la imagen:"
3676
 
3677
  #: admin/views/Themes.php:4746
3678
  msgid "Image border color:"
3679
+ msgstr "Color del borde de la imagen:"
3680
 
3681
  #: admin/views/Themes.php:4762
3682
  msgid "Title background color:"
3683
+ msgstr "Color de fondo del título:"
3684
 
3685
  #: admin/views/Themes.php:4769
3686
  msgid "Title opacity:"
3687
+ msgstr "Opacidad del título:"
3688
 
3689
  #: admin/views/Themes.php:4796
3690
  msgid "Title Font family:"
3691
+ msgstr "Familia de la fuente para el título:"
3692
 
3693
  #: admin/views/Themes.php:4823
3694
  msgid "Title color:"
3695
+ msgstr "Color del Título:"
3696
 
3697
  #: admin/views/Uninstall.php:41
3698
  #, php-format
3699
+ msgid "%s to Finish the Uninstallation and %s will be Deactivated Automatically."
3700
+ msgstr "%s para finalizar la desinstalación y %s se desactivará automáticamente."
 
3701
 
3702
  #: admin/views/Uninstall.php:41
3703
  msgid "Click Here"
3704
+ msgstr "Haga clic aquí"
3705
 
3706
  #: admin/views/Uninstall.php:50
3707
  msgid "support team"
3708
+ msgstr "equipo de soporte"
3709
 
3710
  #: admin/views/Uninstall.php:51 wd/templates/display_overview_support.php:41
3711
  msgid "Contact us"
3712
+ msgstr "Contáctanos"
3713
 
3714
  #: admin/views/Uninstall.php:52
3715
  #, php-format
3716
  msgid ""
3717
+ "Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out with your issue. We value each and every user and value what's right for our users in everything we do.<br />\n"
3718
+ " However, if anyway you have made a decision to uninstall the plugin, please take a minute to %s and tell what you didn't like for our plugins further improvement and development. Thank you !!!"
3719
+ msgstr "Antes de desinstalar el complemento, póngase en contacto con nuestro %s . Haremos nuestro mejor esfuerzo para ayudarlo con su problema. Valoramos a todos y cada uno de los usuarios y valoramos lo que es correcto para nuestros usuarios en todo lo que hacemos. <br /> \\ n Sin embargo, si de todos modos ha tomado la decisión de desinstalar el complemento, tómese un minuto para %s y sepa lo que hizo Nos gusta para nuestros complementos más mejoras y desarrollo. Gracias !!!"
 
 
 
 
3720
 
3721
  #: admin/views/Uninstall.php:56
3722
  #, php-format
3723
+ msgid "Deactivating %s plugin does not remove any data that may have been created. To completely remove this plugin, you can uninstall it here."
3724
+ msgstr "La desactivación del complemento %s no elimina ningún dato que pueda haberse creado. Para eliminar completamente este complemento, puede desinstalarlo aquí."
 
 
3725
 
3726
  #: admin/views/Uninstall.php:59
3727
  msgid "WARNING:"
3728
+ msgstr "ADVERTENCIA:"
3729
 
3730
  #: admin/views/Uninstall.php:60
3731
+ msgid "Once uninstalled, this can't be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
3732
+ msgstr "Una vez desinstalado, no se puede deshacer. Debe usar un complemento de copia de seguridad de la base de datos de WordPress para hacer una copia de seguridad de todos los datos primero."
 
 
3733
 
3734
  #: admin/views/Uninstall.php:63
3735
  msgid "The following Database Tables will be deleted:"
3736
+ msgstr "Las siguientes tablas de base de datos se eliminarán:"
3737
 
3738
  #: admin/views/Uninstall.php:68
3739
  msgid "Database Tables"
3740
+ msgstr "Tablas de la base de datos"
3741
 
3742
  #: admin/views/Uninstall.php:86
3743
  msgid "Delete the folder containing uploaded images."
3744
+ msgstr "Elimina la carpeta que contiene las imágenes cargadas."
3745
 
3746
  #: admin/views/Uninstall.php:92
3747
  #, php-format
3748
  msgid "Do you really want to uninstall %s?"
3749
+ msgstr "¿Realmente quieres desinstalar %s ?"
3750
 
3751
  #: admin/views/Uninstall.php:102
3752
  msgid "UNINSTALL"
3753
+ msgstr "DESINSTALAR"
3754
 
3755
  #: admin/views/Uninstall.php:104
3756
  #, php-format
3757
+ msgid "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
3758
+ msgstr "Estás a punto de desinstalar %s de WordPress. Esta acción no es reversible."
 
3759
 
3760
  #: admin/views/Widget.php:98 photo-gallery.php:88
3761
  msgid "Photo Gallery"
3762
+ msgstr "Galería de fotos"
3763
 
3764
  #: admin/views/Widget.php:112 admin/views/WidgetSlideshow.php:83
3765
  #: admin/views/WidgetTags.php:80
3766
  msgid "Title:"
3767
+ msgstr "Título:"
3768
 
3769
  #: admin/views/Widget.php:116 admin/views/WidgetTags.php:84
3770
  msgid "Type:"
3771
+ msgstr "Tipo:"
3772
 
3773
  #: admin/views/Widget.php:118
3774
  msgid "Gallery groups"
3775
+ msgstr "Grupos de galerías"
3776
 
3777
  #: admin/views/Widget.php:121 admin/views/WidgetSlideshow.php:87
3778
  msgid "Galleries:"
3779
+ msgstr "Galerías:"
3780
 
3781
  #: admin/views/Widget.php:123 admin/views/Widget.php:144
3782
  #: admin/views/WidgetSlideshow.php:89
3783
  msgid "Select"
3784
+ msgstr "Select"
3785
 
3786
  #: admin/views/Widget.php:134
 
 
3787
  msgid "Gallery Type:"
3788
+ msgstr "Tipo de galería:"
3789
 
3790
  #: admin/views/Widget.php:142
3791
  msgid "Gallery Groups:"
3792
+ msgstr "Grupos de galerías:"
3793
 
3794
  #: admin/views/Widget.php:155
3795
  msgid "Sort:"
3796
+ msgstr "Ordenar:"
3797
 
3798
  #: admin/views/Widget.php:157 framework/WDWLibrary.php:655
3799
  msgid "First"
3805
 
3806
  #: admin/views/Widget.php:162
3807
  msgid "Count:"
3808
+ msgstr "Contador:"
3809
 
3810
  #: admin/views/Widget.php:166 admin/views/WidgetSlideshow.php:132
3811
  #: admin/views/WidgetTags.php:107
3812
  msgid "Dimensions:"
3813
+ msgstr "Dimensiones:"
3814
 
3815
  #: admin/views/Widget.php:171 admin/views/WidgetSlideshow.php:148
3816
  #: admin/views/WidgetTags.php:126
3817
  msgid "Themes:"
3818
+ msgstr "Temas:"
3819
 
3820
  #: admin/views/WidgetSlideshow.php:68 photo-gallery.php:1421
3821
  msgid "Photo Gallery Slideshow"
3822
+ msgstr "Pase de diapositivas"
3823
 
3824
  #: admin/views/WidgetSlideshow.php:100
3825
  msgid "Slideshow effect:"
3826
+ msgstr "Efecto de presentaciόn:"
3827
 
3828
  #: admin/views/WidgetSlideshow.php:114
3829
  msgid "Enable shuffle:"
3830
+ msgstr "Habilitar mezcla aleatoria:"
3831
 
3832
  #: admin/views/WidgetSlideshow.php:120
3833
  msgid "Enable autoplay:"
3834
+ msgstr "Habilitar la reproducción automática:"
3835
 
3836
  #: admin/views/WidgetSlideshow.php:126
3837
  msgid "Enable control buttons:"
3838
+ msgstr "Habilitar botones de control:"
3839
 
3840
  #: admin/views/WidgetSlideshow.php:137
3841
  msgid "Filmstrip height:"
3842
+ msgstr "Altura de la tira de película:"
3843
 
3844
  #: admin/views/WidgetSlideshow.php:144
3845
  msgid "Time interval:"
3846
+ msgstr "Intervalo de tiempo:"
3847
 
3848
  #: admin/views/WidgetTags.php:65 photo-gallery.php:1417
3849
  msgid "Photo Gallery Tags Cloud"
3850
+ msgstr "Galería de fotos Etiquetas Nube"
3851
 
3852
  #: admin/views/WidgetTags.php:90
3853
  msgid "Show Tag Names:"
3854
+ msgstr "Mostrar nombres de etiqueta:"
3855
 
3856
  #: admin/views/WidgetTags.php:96
3857
  msgid "Open in:"
3858
+ msgstr "Abrir en:"
3859
 
3860
  #: admin/views/WidgetTags.php:97
3861
  msgid "Page"
3862
+ msgstr "Página"
3863
 
3864
  #: admin/views/WidgetTags.php:102
3865
  msgid "Number:"
3866
+ msgstr "Número:"
3867
 
3868
  #: admin/views/WidgetTags.php:104
3869
  msgid "0 for all."
3870
+ msgstr "0 para todos."
3871
 
3872
  #: admin/views/WidgetTags.php:112
3873
  msgid "Transparent Background:"
3874
+ msgstr "Fondo transparente:"
3875
 
3876
  #: admin/views/WidgetTags.php:118
3877
  msgid "Background Color:"
3878
+ msgstr "Color de fondo:"
3879
 
3880
  #: admin/views/WidgetTags.php:122
3881
  msgid "Text Color:"
3882
+ msgstr "Color del texto:"
3883
 
3884
  #: filemanager/controller.php:66
3885
  msgid "Directory already exists."
3886
+ msgstr "El directorio ya existe."
3887
 
3888
  #: filemanager/controller.php:113
3889
  msgid "File doesn't exist."
3890
+ msgstr "El archivo no existe."
3891
 
3892
  #: filemanager/controller.php:117 filemanager/controller.php:130
3893
  #: filemanager/controller.php:150
3894
  msgid "Can't rename the file."
3895
+ msgstr "No se puede cambiar el nombre del archivo."
3896
 
3897
  #: filemanager/controller.php:187
3898
  msgid "Some of the files couldn't be removed."
3899
+ msgstr "Algunos de los archivos no pudieron ser eliminados."
3900
 
3901
  #: filemanager/controller.php:274
3902
  msgid "Failed to copy some of the files."
3903
+ msgstr "Error al copiar algunos de los archivos."
3904
 
3905
  #: filemanager/controller.php:296
3906
  msgid "Failed to move some of the files."
3907
+ msgstr "Error al mover algunos de los archivos."
3908
 
3909
  #: filemanager/view.php:53
3910
  msgid "File loading failed"
3911
+ msgstr "Error al cargar el archivo"
3912
 
3913
  #: filemanager/view.php:55
3914
  msgid "Are you sure you want to permanently remove selected items?"
3915
+ msgstr "¿Seguro que quieres eliminar de forma permanente los elementos seleccionados?"
3916
 
3917
  #: filemanager/view.php:56
3918
  msgid "This will cancel uploads. Continue?"
3919
+ msgstr "Esto cancelará las cargas. ¿Continuar?"
3920
 
3921
  #: filemanager/view.php:58
3922
  msgid "Enter directory name"
3923
+ msgstr "Ingrese el nombre del directorio"
3924
 
3925
  #: filemanager/view.php:59
3926
  msgid "Enter new name"
3927
+ msgstr "Ingresa un nuevo nombre"
3928
 
3929
  #: filemanager/view.php:60
3930
  msgid "Processing uploaded files..."
3931
+ msgstr "Procesando archivos cargados ..."
3932
 
3933
  #: filemanager/view.php:98
3934
  msgid "Up"
3935
+ msgstr "Arriba"
3936
 
3937
  #: filemanager/view.php:99
3938
  msgid "Make a directory"
3939
+ msgstr "Hacer un directorio"
3940
 
3941
  #: filemanager/view.php:100
3942
  msgid "Rename item"
3943
+ msgstr "Cambiar el nombre del elemento"
3944
 
3945
  #: filemanager/view.php:102
3946
  msgid "Copy"
3947
+ msgstr "Copia"
3948
 
3949
  #: filemanager/view.php:103
3950
  msgid "Cut"
3951
+ msgstr "Cortar"
3952
 
3953
  #: filemanager/view.php:104
3954
  msgid "Paste"
3955
+ msgstr "Pegar"
3956
 
3957
  #: filemanager/view.php:105
 
 
3958
  msgid "Remove items"
3959
+ msgstr "Eliminar objeto"
3960
 
3961
  #: filemanager/view.php:109
3962
  msgid "View thumbs"
3963
+ msgstr "Ver miniaturas"
3964
 
3965
  #: filemanager/view.php:110
3966
  msgid "View list"
3967
+ msgstr "Ver lista"
3968
 
3969
  #: filemanager/view.php:114
3970
  msgid "Upload files"
3971
+ msgstr "Subir archivos"
3972
 
3973
  #: filemanager/view.php:128
3974
  msgid "To change upload directory go to Options page."
3975
+ msgstr "Para cambiar el directorio de carga vaya a la página de Opciones."
3976
 
3977
  #: filemanager/view.php:140
 
 
3978
  msgid "Order by:"
3979
+ msgstr "Ordenar por:"
3980
 
3981
  #: filemanager/view.php:142
3982
  msgid "Click to sort by name"
3983
+ msgstr "Haga clic para ordenar por nombre"
3984
 
3985
  #: filemanager/view.php:154
3986
  msgid "Click to sort by size"
3987
+ msgstr "Haga clic para ordenar por tamaño"
3988
 
3989
  #: filemanager/view.php:166
3990
  msgid "Click to sort by date modified"
3991
+ msgstr "Haga clic para ordenar por fecha modificada"
3992
 
3993
  #: filemanager/view.php:256
 
 
3994
  msgid "Add selected images to gallery"
3995
+ msgstr "Añadir las imágenes seleccionadas a la galería"
3996
 
3997
  #: filemanager/view.php:272
3998
  msgid "Thumbnail Maximum Dimensions:"
3999
+ msgstr "Dimensiones máximas en miniatura:"
4000
 
4001
  #: filemanager/view.php:273
4002
  msgid "Thumbnail:"
4003
+ msgstr "Miniatura:"
4004
 
4005
  #: filemanager/view.php:278 frontend/views/BWGViewAlbum_compact_preview.php:243
4006
  #: frontend/views/BWGViewAlbum_extended_preview.php:236
4011
 
4012
  #: filemanager/view.php:281
4013
  msgid "Image Maximum Dimensions:"
4014
+ msgstr "Dimensiones máximas de la imagen:"
4015
 
4016
  #: filemanager/view.php:282
4017
  msgid "Image:"
4018
+ msgstr "Imagen:"
4019
 
4020
  #: filemanager/view.php:290
4021
  msgid "Drag files here or click the button below"
4022
+ msgstr "Arrastre los archivos aquí o haga clic en el botón de abajo"
4023
 
4024
  #: filemanager/view.php:290
4025
  msgid "to upload files"
4026
+ msgstr "para cargar archivos"
4027
 
4028
  #: filemanager/view.php:354
4029
  msgid "No files to upload"
4030
+ msgstr "No hay archivos para cargar"
4031
 
4032
  #: framework/WDWLibrary.php:61
4033
  msgid "Item successfully saved."
4034
+ msgstr "Artículo exitosamente guardado."
4035
 
4036
  #: framework/WDWLibrary.php:67 framework/WDWLibrary.php:172
4037
  msgid "Failed."
4038
+ msgstr "Falló."
4039
 
4040
  #: framework/WDWLibrary.php:73
4041
  msgid "Item successfully deleted."
4042
+ msgstr "Artículo eliminado con éxito."
4043
 
4044
  #: framework/WDWLibrary.php:79
4045
  msgid "You can't delete default theme."
4046
+ msgstr "No puedes eliminar el tema predeterminado."
4047
 
4048
  #: framework/WDWLibrary.php:85
4049
  msgid "Items Successfully Deleted."
4050
+ msgstr "Artículos eliminados con éxito."
4051
 
4052
  #: framework/WDWLibrary.php:99
4053
  msgid "The item is successfully set as default."
4054
+ msgstr "El elemento se configuró correctamente como predeterminado."
4055
 
4056
  #: framework/WDWLibrary.php:105
4057
  msgid "Options successfully saved."
4058
+ msgstr "Opciones guardadas con éxito."
4059
 
4060
  #: framework/WDWLibrary.php:111
4061
  msgid "Item successfully published."
4062
+ msgstr "Artículo publicado con éxito."
4063
 
4064
  #: framework/WDWLibrary.php:117
4065
  msgid "Item successfully unpublished."
4066
+ msgstr "Artículo sin publicar exitosamente."
4067
 
4068
  #: framework/WDWLibrary.php:123
4069
  msgid "Item successfully duplicated."
4070
+ msgstr "Artículo duplicado con éxito."
4071
 
4072
  #: framework/WDWLibrary.php:130
4073
  msgid "Items Succesfully Unpublished."
4074
+ msgstr "Artículos exitosamente inéditos."
4075
 
4076
  #: framework/WDWLibrary.php:136
4077
  msgid "Ordering Succesfully Saved."
4078
+ msgstr "Ordenar satisfactoriamente guardado."
4079
 
4080
  #: framework/WDWLibrary.php:142
4081
  msgid "A term with the name provided already exists."
4082
+ msgstr "Un término con el nombre provisto ya existe."
4083
 
4084
  #: framework/WDWLibrary.php:148
 
 
4085
  msgid "Name field is required."
4086
+ msgstr "El cambo nombre es requerido."
4087
 
4088
  #: framework/WDWLibrary.php:154
4089
  msgid "The slug must be unique."
4090
+ msgstr "La babosa debe ser única."
4091
 
4092
  #: framework/WDWLibrary.php:160
4093
  msgid "Changes must be saved."
4094
+ msgstr "Los cambios deben ser guardados."
4095
 
4096
  #: framework/WDWLibrary.php:166
4097
  msgid "Theme successfully copied."
4098
+ msgstr "Tema copiado con éxito."
4099
 
4100
  #: framework/WDWLibrary.php:177
4101
  msgid "Items successfully reset."
4102
+ msgstr "Artículos restablecidos con éxito."
4103
 
4104
  #: framework/WDWLibrary.php:182
4105
  msgid "Watermark successfully set."
4106
+ msgstr "Marca de agua establecida con éxito."
4107
 
4108
  #: framework/WDWLibrary.php:187
4109
  msgid "Items successfully rotated."
4110
+ msgstr "Artículos girados con éxito."
4111
 
4112
  #: framework/WDWLibrary.php:192
4113
  msgid "Items successfully recreated."
4114
+ msgstr "Artículos exitosamente recreados."
4115
 
4116
  #: framework/WDWLibrary.php:197
4117
  msgid "Items successfully resized."
4118
+ msgstr "Artículos redimensionados con éxito."
4119
 
4120
  #: framework/WDWLibrary.php:202
4121
  msgid "Items successfully edited."
4122
+ msgstr "Artículos editados con éxito."
4123
 
4124
  #: framework/WDWLibrary.php:253
4125
  msgid "Click to sort by this item"
4126
+ msgstr "Haga clic para ordenar por este elemento"
4127
 
4128
  #: framework/WDWLibrary.php:418 framework/WDWLibrary.php:567
4129
  #: photo-gallery.php:398
 
 
4130
  msgid "item"
4131
+ msgstr "objeto"
4132
 
4133
  #: framework/WDWLibrary.php:650
4134
  msgid " item(s)"
4135
+ msgstr " objeto(s)"
4136
 
4137
  #: framework/WDWLibrary.php:656
4138
  msgid "Previous"
4160
 
4161
  #: framework/WDWLibrary.php:696
4162
  msgid "Load More..."
4163
+ msgstr "Cargar más..."
4164
 
4165
  #: framework/WDWLibrary.php:886
4166
  msgid "Order by: "
4167
+ msgstr "Ordenar por: "
4168
 
4169
  #: framework/WDWLibrary.php:1972
4170
  #, php-format
4171
  msgid "No %s found."
4172
+ msgstr "Ningún %s encontrado."
4173
 
4174
  #: framework/WDWLibrary.php:2012
 
 
4175
  msgid "Gallery Tags"
4176
+ msgstr "Etiquetas de galería"
4177
 
4178
  #: frontend/views/BWGViewAlbum_compact_preview.php:23
4179
  #: frontend/views/BWGViewAlbum_extended_preview.php:19
4186
  #: frontend/views/BWGViewThumbnails_masonry.php:28
4187
  #: frontend/views/BWGViewThumbnails_mosaic.php:31
4188
  msgid "There is no theme selected or the theme was deleted."
4189
+ msgstr "No hay ningún tema seleccionado o se ha eliminado el tema."
4190
 
4191
  #: frontend/views/BWGViewAlbum_compact_preview.php:51
4192
  #: frontend/views/BWGViewAlbum_compact_preview.php:91
4195
  #: frontend/views/BWGViewAlbum_masonry_preview.php:47
4196
  #: frontend/views/BWGViewAlbum_masonry_preview.php:86
4197
  msgid "There is no album selected or the album was deleted."
4198
+ msgstr "No hay ningún álbum seleccionado o se eliminó el álbum."
4199
 
4200
  #: frontend/views/BWGViewAlbum_compact_preview.php:77
4201
  #: frontend/views/BWGViewAlbum_extended_preview.php:71
4214
  #: frontend/views/BWGViewAlbum_extended_preview.php:264
4215
  #: frontend/views/BWGViewAlbum_masonry_preview.php:255
4216
  msgid "Album is empty."
4217
+ msgstr "El álbum está vacío."
4218
 
4219
  #: frontend/views/BWGViewAlbum_compact_preview.php:384
4220
  #: frontend/views/BWGViewAlbum_extended_preview.php:247
4226
  #: frontend/views/BWGViewAlbum_extended_preview.php:252
4227
  #: frontend/views/BWGViewAlbum_masonry_preview.php:331
4228
  msgid "Gallery is empty."
4229
+ msgstr "La galería está vacía."
4230
 
4231
  #: frontend/views/BWGViewAlbum_compact_preview.php:453
4232
  #: frontend/views/BWGViewAlbum_compact_preview.php:531
4251
  #: frontend/views/BWGViewThumbnails_masonry.php:168
4252
  #: frontend/views/BWGViewThumbnails_mosaic.php:191
4253
  msgid "Open"
4254
+ msgstr "Abr"
4255
 
4256
  #: frontend/views/BWGViewAlbum_compact_preview.php:472
4257
  #: frontend/views/BWGViewAlbum_compact_preview.php:498
4264
  #: frontend/views/BWGViewThumbnails_masonry.php:169
4265
  #: frontend/views/BWGViewThumbnails_mosaic.php:192
4266
  msgid "Ecommerce"
4267
+ msgstr "Ecommerce"
4268
 
4269
  #: frontend/views/BWGViewAlbum_compact_preview.php:1013
4270
  #: frontend/views/BWGViewAlbum_extended_preview.php:1037
4276
  #: frontend/views/BWGViewThumbnails.php:280
4277
  #: frontend/views/BWGViewThumbnails_masonry.php:314
4278
  #: frontend/views/BWGViewThumbnails_mosaic.php:602
 
 
4279
  msgid "Download gallery"
4280
+ msgstr "Descargar galería"
4281
 
4282
  #: frontend/views/BWGViewAlbum_extended_preview.php:366
4283
  #: frontend/views/BWGViewAlbum_extended_preview.php:546
4305
  #: frontend/views/BWGViewThumbnails.php:73
4306
  #: frontend/views/BWGViewThumbnails_masonry.php:71
4307
  #: frontend/views/BWGViewThumbnails_mosaic.php:75
 
 
4308
  msgid "There are no images."
4309
  msgstr "No hay imágenes en esta galería."
4310
 
4349
  msgstr "Compartir en Tumblr"
4350
 
4351
  #: frontend/views/BWGViewBlog_style.php:353
 
 
4352
  msgid "Show ecommerce"
4353
+ msgstr "Mostrar carrito ecommerce"
4354
 
4355
  #: frontend/views/BWGViewCarousel.php:224
4356
  #: frontend/views/BWGViewCarousel.php:230
4362
  msgstr "Pausar"
4363
 
4364
  #: frontend/views/BWGViewDownload_gallery.php:37
 
 
4365
  msgid "There are no images to download."
4366
+ msgstr "No hay imágenes para descargar."
4367
 
4368
  #: frontend/views/BWGViewGalleryBox.php:1020
4369
  msgid "The image has been deleted."
4370
+ msgstr "La imagen ha sido borrada."
4371
 
4372
  #: frontend/views/BWGViewGalleryBox.php:1138
4373
  #: frontend/views/BWGViewGalleryBox.php:2760
4394
 
4395
  #: frontend/views/BWGViewGalleryBox.php:1190
4396
  msgid "Open image in original size."
4397
+ msgstr "Abrir imagen en tamaño original."
4398
 
4399
  #: frontend/views/BWGViewGalleryBox.php:1211
4400
  msgid "Download original image"
4406
 
4407
  #: frontend/views/BWGViewGalleryBox.php:1254
4408
  msgid "Rated."
4409
+ msgstr "Puntuada."
4410
 
4411
  #: frontend/views/BWGViewGalleryBox.php:1258
4412
  #: frontend/views/BWGViewGalleryBox.php:1275
4413
  msgid "Not rated yet."
4414
+ msgstr "No se ha puntuado todavia."
4415
 
4416
  #: frontend/views/BWGViewGalleryBox.php:1261
4417
  #: frontend/views/BWGViewGalleryBox.php:1297
4428
 
4429
  #: frontend/views/BWGViewGalleryBox.php:1406
4430
  msgid "Error. Incorrect Verification Code."
4431
+ msgstr "Error. Código de verificación incorrecto."
4432
 
4433
  #: frontend/views/BWGViewGalleryBox.php:1413 photo-gallery.php:1004
4434
  msgid "This is not a valid email address."
4449
 
4450
  #: frontend/views/BWGViewGalleryBox.php:1467
4451
  msgid "Your comment is awaiting moderation"
4452
+ msgstr "Tu comentario está pendiente de moderación"
4453
 
4454
  #: frontend/views/BWGViewGalleryBox.php:1496
4455
  msgid "Delete Comment"
4457
 
4458
  #: frontend/views/BWGViewGalleryBox.php:1531
4459
  #: frontend/views/BWGViewGalleryBox.php:3043
 
 
4460
  msgid "Hide Ecommerce"
4461
+ msgstr "Ocultar carrito ecomerce"
4462
 
4463
  #: frontend/views/BWGViewGalleryBox.php:1538
4464
  #: frontend/views/BWGViewGalleryBox.php:1726
4465
  msgid "Add to cart"
4466
+ msgstr "Añadir al carro"
4467
 
4468
  #: frontend/views/BWGViewGalleryBox.php:1541
 
 
4469
  msgid "items"
4470
+ msgstr "objetos"
4471
 
4472
  #: frontend/views/BWGViewGalleryBox.php:1551
4473
  msgid "Prints and products"
4474
+ msgstr "Impresiones y productos"
4475
 
4476
  #: frontend/views/BWGViewGalleryBox.php:1558
4477
  msgid "Downloads"
4478
+ msgstr "Descargas"
4479
 
4480
  #: frontend/views/BWGViewGalleryBox.php:1573
4481
  #: frontend/views/BWGViewGalleryBox.php:1686
4482
  msgid "Price"
4483
+ msgstr "Precio"
4484
 
4485
  #: frontend/views/BWGViewGalleryBox.php:1593
4486
  msgid "Count"
4487
+ msgstr "Cantidad"
4488
 
4489
  #: frontend/views/BWGViewGalleryBox.php:1673
4490
  #: frontend/views/BWGViewGalleryBox.php:1717
4491
  msgid "Total"
4492
+ msgstr "Total"
4493
 
4494
  #: frontend/views/BWGViewGalleryBox.php:1683
4495
  msgid "Choose"
4496
+ msgstr "Selecciona"
4497
 
4498
  #: frontend/views/BWGViewGalleryBox.php:1685
4499
  msgid "Dimensions"
4500
+ msgstr "Dimensiones"
4501
 
4502
  #: frontend/views/BWGViewGalleryBox.php:1727
4503
  msgid "View cart"
4504
+ msgstr "Ver carrito"
4505
 
4506
  #: frontend/views/BWGViewGalleryBox.php:1909
4507
  msgid "Please select at least one item"
4508
+ msgstr "Seleccione al menos un elemento"
4509
 
4510
  #: frontend/views/BWGViewGalleryBox.php:1944
4511
  msgid "Please select Prints and products or Downloads"
4512
+ msgstr "Seleccione Impresiones o Descargas"
4513
 
4514
  #: frontend/views/BWGViewGalleryBox.php:2668
4515
  #: frontend/views/BWGViewGalleryBox.php:2991
4516
  #: frontend/views/BWGViewGalleryBox.php:3035
 
 
4517
  msgid "Show Ecommerce"
4518
+ msgstr "Mostrar carrito ecommerce"
4519
 
4520
  #: frontend/views/BWGViewGalleryBox.php:3000
4521
  #: frontend/views/BWGViewGalleryBox.php:3028
4541
 
4542
  #: insert.php:1152
4543
  msgid "Theme 1"
4544
+ msgstr "Tema 1"
4545
 
4546
  #: insert.php:1158
4547
  msgid "Theme 2"
4548
+ msgstr "Tema 2"
4549
 
4550
  #: photo-gallery.php:97
4551
  msgid "This option is disabled in free version."
4552
+ msgstr "Esta opción está deshabilitada en la versión gratuita."
4553
 
4554
  #: photo-gallery.php:254
4555
  msgid "Add Galleries/Images"
4556
+ msgstr "Añadir galerías / imágenes"
4557
 
4558
  #: photo-gallery.php:262
4559
  msgid "Options"
4560
+ msgstr "Opciones"
4561
 
4562
  #: photo-gallery.php:275
4563
  msgid "Pro Version"
4564
+ msgstr "Versión Pro"
4565
 
4566
  #: photo-gallery.php:280
4567
  msgid "Add-ons"
4568
+ msgstr "Complementos"
4569
 
4570
  #: photo-gallery.php:308
4571
  #, php-format
4572
  msgid "The controller %s file not exist."
4573
+ msgstr "El archivo del controlador %s no existe."
4574
 
4575
  #: photo-gallery.php:313
4576
  #, php-format
4577
  msgid "The view %s file not exist."
4578
+ msgstr "El archivo de %s visualización no existe."
4579
 
4580
  #: photo-gallery.php:329 photo-gallery.php:334
4581
  #, php-format
4582
  msgid "The %s class not exist."
4583
+ msgstr "La clase %s no existe."
4584
 
4585
  #: photo-gallery.php:376 photo-gallery.php:409
4586
  msgid "Do you want to delete selected items?"
4587
+ msgstr "¿Quieres eliminar elementos seleccionados?"
4588
 
4589
  #: photo-gallery.php:377 photo-gallery.php:404
4590
  msgid "You must select at least one item."
4591
+ msgstr "Debe seleccionar al menos un elemento."
4592
 
4593
  #: photo-gallery.php:384 photo-gallery.php:1003
4594
  msgid "field is required."
4595
+ msgstr "se requiere el campo."
4596
 
4597
  #: photo-gallery.php:385
4598
  msgid "You must select an image file."
4599
+ msgstr "Debe seleccionar un archivo de imagen."
4600
 
4601
  #: photo-gallery.php:386
4602
  msgid "You must select an audio file."
4603
+ msgstr "Debe seleccionar un archivo de audio."
4604
 
4605
  #: photo-gallery.php:387
4606
+ msgid "You do not have Instagram access token. Sign in with Instagram in Options -> Advanced tab. "
4607
+ msgstr "No tienes token de acceso a Instagram. Inicie sesión con Instagram en Opciones -> pestaña Avanzado. "
 
 
4608
 
4609
  #: photo-gallery.php:388
4610
+ msgid "You do not have Instagram CLIENT_ID. Input its value in Options->Embed options."
4611
+ msgstr "No tiene Instagram CLIENT_ID. Ingrese su valor en Opciones-> Opciones de inserción."
 
 
4612
 
4613
  #: photo-gallery.php:389
4614
  msgid "Instagram recent post number must be between 1 and 33."
4615
+ msgstr "El número de publicación reciente de Instagram debe estar entre 1 y 33."
4616
 
4617
  #: photo-gallery.php:390
4618
  msgid "The gallery is not empty. Please delete all the images first."
4619
+ msgstr "La galería no está vacía. Por favor, elimine todas las imágenes primero."
4620
 
4621
  #: photo-gallery.php:391
4622
  msgid "Please enter url to embed."
4623
+ msgstr "Por favor ingrese url para incrustar."
4624
 
4625
  #: photo-gallery.php:392
4626
  msgid "Error: cannot get response from the server."
4627
+ msgstr "Error: no se puede obtener respuesta del servidor."
4628
 
4629
  #: photo-gallery.php:393
4630
  msgid "Error: something wrong happened at the server."
4631
+ msgstr "Error: algo malo sucedió en el servidor."
4632
 
4633
  #: photo-gallery.php:394
4634
  msgid "Error"
4635
+ msgstr "Error"
4636
 
4637
  #: photo-gallery.php:396
4638
  msgid "Hide order column"
4639
+ msgstr "Ocultar columna de pedido"
4640
 
4641
  #: photo-gallery.php:397
4642
  msgid "Selected"
4643
+ msgstr "Seleccionado"
4644
 
4645
  #: photo-gallery.php:399
4646
  msgid "Items Succesfully Saved."
4647
+ msgstr "Artículos exitosamente guardados."
4648
 
4649
  #: photo-gallery.php:400
4650
  msgid "Item Succesfully Recovered."
4651
+ msgstr "Artículo exitosamente recuperado."
4652
 
4653
  #: photo-gallery.php:401
4654
  msgid "Item Succesfully Published."
4655
+ msgstr "Artículo exitosamente publicado."
4656
 
4657
  #: photo-gallery.php:402
4658
  msgid "Item Succesfully Unpublished."
4659
+ msgstr "Artículo exitosamente despublicados."
4660
 
4661
  #: photo-gallery.php:403
4662
  msgid "Item Succesfully Deleted."
4663
+ msgstr "Artículo eliminado satisfactoriamente."
4664
 
4665
  #: photo-gallery.php:405
4666
  msgid "Items Succesfully resized."
4667
+ msgstr "Artículos redimensionados con éxito."
4668
 
4669
  #: photo-gallery.php:406
4670
  msgid "Watermarks Succesfully Set."
4671
+ msgstr "Marcas de agua establecidas con éxito."
4672
 
4673
  #: photo-gallery.php:407
4674
  msgid "Items Succesfully Reset."
4675
+ msgstr "Elementos restablecidos con éxito."
4676
 
4677
  #: photo-gallery.php:408
4678
  msgid "Save Tag"
4679
+ msgstr "Guardar etiqueta"
4680
 
4681
  #: photo-gallery.php:410 photo-gallery.php:412
4682
+ msgid "This action will reset gallery type to mixed and will save that choice. You cannot undo it."
4683
+ msgstr "Esta acción restablecerá el tipo de galería a mixto y guardará esa elección. No puedes deshacerlo."
 
 
4684
 
4685
  #: photo-gallery.php:411
4686
+ msgid "After pressing save/apply buttons, you cannot change gallery type back to Instagram!"
4687
+ msgstr "¡Después de presionar los botones guardar / aplicar, no puede cambiar el tipo de galería a Instagram!"
 
 
4688
 
4689
  #: photo-gallery.php:413
4690
  msgid "Insert"
4691
+ msgstr "Insertar"
4692
 
4693
  #: photo-gallery.php:414
4694
  msgid "Failed to import images from media library"
4695
+ msgstr "Error al importar imágenes de la biblioteca multimedia"
4696
 
4697
  #: photo-gallery.php:710
4698
  msgid "Insert Photo Gallery"
4699
+ msgstr "Insertar galería de fotos"
4700
 
4701
  #: photo-gallery.php:712
4702
  msgid "Add Photo Gallery"
4703
+ msgstr "Agregar Galería de fotos"
4704
 
4705
  #: photo-gallery.php:1008
4706
  msgid "Select Tag"
4707
+ msgstr "Seleccionar etiqueta"
4708
 
4709
  #: photo-gallery.php:1177
4710
  #, php-format
4711
  msgid "This section allows you to %s."
4712
+ msgstr "Esta sección te permite %s ."
4713
 
4714
  #: photo-gallery.php:1179
4715
  msgid "Read More in User Manual"
4716
+ msgstr "Lea más en el manual de usuario"
4717
 
4718
  #: photo-gallery.php:1185
4719
  msgid "Upgrade to paid version"
4720
+ msgstr "Actualizar a la versión paga"
4721
 
4722
  #: photo-gallery.php:1196 photo-gallery.php:1640
4723
  #: wd/templates/display_overview_user_guide.php:33
4724
  msgid "Support Forum"
4725
+ msgstr "Foro de Soporte"
4726
 
4727
  #: photo-gallery.php:1224
4728
+ msgid "Photo Gallery 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 gallery groups, and provide descriptions and tags."
4729
+ msgstr "Photo Gallery es un complemento de galería totalmente receptivo con funcionalidad avanzada. Permite tener diferentes galerías de imágenes para tus publicaciones y páginas. Puede crear un número ilimitado de galerías, combinarlas en grupos de galería y proporcionar descripciones y etiquetas."
 
 
 
 
4730
 
4731
  #: photo-gallery.php:1228
4732
  msgid "Easy Set-up and Management"
4733
+ msgstr "Fácil configuración y administración"
4734
 
4735
  #: photo-gallery.php:1229
4736
+ msgid "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. Use the File Manager with single-step and easy-to-manage functionality to rename, upload, copy, add and remove images and image directories. Otherwise use WordPress built in media uploader."
4737
+ msgstr "Cree galerías de fotos impresionantes, 100% receptivas y aptas para el SEO en cuestión de minutos. Utilice el Administrador de archivos con funcionalidad de un solo paso y fácil de administrar para cambiar el nombre, cargar, copiar, agregar y eliminar imágenes y directorios de imágenes. De lo contrario, use WordPress incorporado en el cargador multimedia."
 
 
 
 
4738
 
4739
  #: photo-gallery.php:1232
4740
  msgid "Unlimited Photos and Albums"
4741
+ msgstr "Fotos y álbumes ilimitados"
4742
 
4743
  #: photo-gallery.php:1233
4744
+ msgid "The plugin allows creating unlimited number of galleries or gallery groups and upload images in each gallery as many as you wish. Add single/ multiple galleries into your pages and posts with the help of functional shortcode; visual shortcodes for an easier management."
4745
+ msgstr "El complemento permite crear un número ilimitado de galerías o grupos de galería y cargar imágenes en cada galería tantas como desee. Agregue galerías individuales / múltiples en sus páginas y publicaciones con la ayuda de shortcode funcional; códigos cortos visuales para una gestión más fácil."
 
 
 
 
4746
 
4747
  #: photo-gallery.php:1236
4748
  msgid "Customizable"
4749
+ msgstr "Personalizable"
4750
 
4751
  #: photo-gallery.php:1237
4752
+ msgid "The gallery plugin is easily customizable. You can edit themes changing sizes and colors for different features. Specify the number of images to display in a single row in an gallery group. Additionally, you can customize thumbnail images by cropping, flipping and rotating them."
4753
+ msgstr "El plugin de la galería es fácilmente personalizable. Puede editar temas cambiando los tamaños y colores para diferentes funciones. Especifique la cantidad de imágenes para mostrar en una sola fila en un grupo de galería. Además, puede personalizar imágenes en miniatura recortando, volteándolas y rotándolas."
 
 
 
 
4754
 
4755
  #: photo-gallery.php:1240
4756
  msgid "10 View Options"
4757
+ msgstr "Ver opciones"
4758
 
4759
  #: photo-gallery.php:1241
4760
+ msgid "Photo Gallery plugin allows displaying galleries and gallery groups in 10 elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image Browser, Masonry Album, Compact Album, Extended Album, Blog Style Gallery, Ecommerce."
4761
+ msgstr "Photo Gallery plugin permite mostrar galerías y grupos de galería en 10 vistas elegantes y hermosas: miniatura, mampostería, mosaico, presentación de diapositivas, navegador de imágenes, álbum de mampostería, álbum compacto, álbum ampliado, galería de estilo de blog, comercio electrónico."
 
 
 
 
4762
 
4763
  #: photo-gallery.php:1244
4764
  msgid "Audio and Video Support"
4765
+ msgstr "Soporte de audio y video"
4766
 
4767
  #: photo-gallery.php:1245
4768
+ msgid "You can include both videos and images within a single gallery. WordPress Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. It’s also possible to add audio tracks for the image slideshow."
4769
+ msgstr "Puede incluir tanto videos como imágenes en una sola galería. El complemento de galería de fotos de WordPress es compatible con los videos de YouTube y Vimeo dentro de las galerías. También es posible agregar pistas de audio para la presentación de diapositivas de la imagen."
 
 
 
4770
 
4771
  #: photo-gallery.php:1251
4772
  msgid "Installing"
4773
+ msgstr "Instalación"
4774
 
4775
  #: photo-gallery.php:1256
4776
  msgid "Creating/Editing Galleries"
4777
+ msgstr "Creando / Editando Galerías"
4778
 
4779
  #: photo-gallery.php:1260
4780
  msgid "Instagram Gallery"
4781
+ msgstr "Galería de Instagram"
4782
 
4783
  #: photo-gallery.php:1266
4784
  msgid "Creating/Editing Tags"
4785
+ msgstr "Creando / Editando Etiquetas"
4786
 
4787
  #: photo-gallery.php:1271
4788
  msgid "Creating/Editing Albums"
4789
+ msgstr "Crear / editar álbumes"
4790
 
4791
  #: photo-gallery.php:1276
4792
  msgid "Editing Options"
4793
+ msgstr "Opciones de edición"
4794
 
4795
  #: photo-gallery.php:1280
4796
  msgid "Global Options"
4797
+ msgstr "Opciones globales"
4798
 
4799
  #: photo-gallery.php:1296
4800
  msgid "Album Options"
4801
+ msgstr "Opciones de álbum"
4802
 
4803
  #: photo-gallery.php:1304
4804
  msgid "Thumbnail Options"
4805
+ msgstr "Opciones de Miniaturas"
4806
 
4807
  #: photo-gallery.php:1308
4808
  msgid "Image Options"
4809
+ msgstr "Opciones de imagen"
4810
 
4811
  #: photo-gallery.php:1312
4812
  msgid "Social Options"
4813
+ msgstr "Opciones de Redes Sociales"
4814
 
4815
  #: photo-gallery.php:1316
4816
  msgid "Carousel Options"
4817
+ msgstr "Opciones de carrusel"
4818
 
4819
  #: photo-gallery.php:1322
4820
  msgid "Creating/Editing Themes"
4821
+ msgstr "Crear / editar temas"
4822
 
4823
  #: photo-gallery.php:1346
4824
  msgid "Compact Album"
4825
+ msgstr "Álbum Compacto"
4826
 
4827
  #: photo-gallery.php:1350
4828
  msgid "Masonry Album"
4829
+ msgstr "Álbum Masonry"
4830
 
4831
  #: photo-gallery.php:1354
4832
  msgid "Extended Album"
4833
+ msgstr "Álbum Extendido"
4834
 
4835
  #: photo-gallery.php:1366
4836
  msgid "Page Navigation"
4837
+ msgstr "Navegación entre páginas"
4838
 
4839
  #: photo-gallery.php:1376
4840
  msgid "Generating Shortcode"
4841
+ msgstr "Generando shortcode"
4842
 
4843
  #: photo-gallery.php:1381
 
 
4844
  msgid "Editing Comments"
4845
+ msgstr "Editar comentarios"
4846
 
4847
  #: photo-gallery.php:1386
4848
  msgid "Editing Ratings"
4849
+ msgstr "Edición de valoraciones"
4850
 
4851
  #: photo-gallery.php:1391
4852
  msgid "Publishing the Created Photo Gallery"
4853
+ msgstr "Publicando la Galería de fotos creada"
4854
 
4855
  #: photo-gallery.php:1395
4856
  msgid "General Parameters"
4857
+ msgstr "Parámetros Generales"
4858
 
4859
  #: photo-gallery.php:1399
4860
  msgid "Lightbox Parameters"
4861
+ msgstr "Parámetros de Lightbox"
4862
 
4863
  #: photo-gallery.php:1409
4864
  msgid "Publishing Photo Gallery Widgets"
4865
+ msgstr "Publicación Widgets de Galería de fotos"
4866
 
4867
  #: photo-gallery.php:1413
4868
  msgid "Tag Cloud"
4869
+ msgstr "Nube de etiquetas"
4870
 
4871
  #: photo-gallery.php:1425
4872
  msgid "Photo Gallery Widget"
4873
+ msgstr "Widget de galería de fotos"
4874
 
4875
  #: photo-gallery.php:1492
4876
  msgid "Albums"
4877
+ msgstr "Álbumes"
4878
 
4879
  #: photo-gallery.php:1506
 
 
4880
  msgid "Gallery tags"
4881
+ msgstr "Etiquetas de galería"
4882
 
4883
  #: photo-gallery.php:1555
4884
  msgid "Photo gallery plugin autoupdate interval."
4885
+ msgstr "Intervalo de actualización automática del plugin Photo gallery."
4886
 
4887
  #: photo-gallery.php:1598
4888
  #, php-format
4889
  msgid "Please update the %s add-on to start using."
4890
+ msgstr "Actualice el complemento %s para comenzar a usarlos."
4891
 
4892
  #: photo-gallery.php:1599
4893
  #, php-format
4894
  msgid "Please update the %s add-ons to start using."
4895
+ msgstr "Actualice los complementos %s para comenzar a usarlos."
4896
 
4897
  #: photo-gallery.php:1641
 
 
4898
  msgid "Rate"
4899
+ msgstr "Puntuación"
4900
 
4901
  #: photo-gallery.php:1716
4902
  #, php-format
4903
+ msgid "%s advises: Install brand new %s plugin to optimize your website images quickly and easily."
4904
+ msgstr "%s informa: Instale el nuevo %s plugin para optimizar las imágenes de su sitio web de forma rápida y sencilla."
 
 
4905
 
4906
  #: photo-gallery.php:1716
4907
  msgid "More details"
4908
+ msgstr "Más detalles"
4909
 
4910
  #: photo-gallery.php:1716
4911
  msgid "Image Optimizer WD"
4912
+ msgstr "Image Optimizer WD"
4913
 
4914
  #: photo-gallery.php:1721
4915
  msgid "Activate"
4916
+ msgstr "Activar"
4917
 
4918
  #: photo-gallery.php:1722 photo-gallery.php:1729
4919
  msgid "Optimize now"
4920
+ msgstr "Optimiza ahora"
4921
 
4922
  #: photo-gallery.php:1723
4923
  msgid "Activation failed, please try again."
4924
+ msgstr "La activación falló, por favor intente de nuevo."
4925
 
4926
  #: photo-gallery.php:1727
4927
  msgid "Install"
4928
+ msgstr "Instalar"
4929
 
4930
  #: photo-gallery.php:1728
4931
  msgid "Activation"
4932
+ msgstr "Activación"
4933
 
4934
  #: photo-gallery.php:1730
4935
  msgid "Installation failed, please try again."
4936
+ msgstr "La instalación falló, intente de nuevo."
4937
 
4938
  #: wd/includes/deactivate.php:35
4939
  msgid "Technical problems / hard to use"
4940
+ msgstr "Problemas técnicos / difíciles de usar"
4941
 
4942
  #: wd/includes/deactivate.php:39
4943
  msgid "Free version is limited"
4944
+ msgstr "La versión gratuita es limitada"
4945
 
4946
  #: wd/includes/deactivate.php:43
4947
  msgid "Premium is expensive"
4948
+ msgstr "La prima es costosa"
4949
 
4950
  #: wd/includes/deactivate.php:47
4951
  msgid "Upgrading to paid version"
4952
+ msgstr "Actualización a la versión paga"
4953
 
4954
  #: wd/includes/deactivate.php:51
4955
  msgid "Temporary deactivation"
4956
+ msgstr "Desactivación temporal"
4957
 
4958
  #: wd/includes/notices.php:211
4959
  msgid "Leave A Review?"
4960
+ msgstr "Dejar una reseña?"
4961
 
4962
  #: wd/includes/notices.php:212
4963
  #, php-format
4964
+ msgid "We hope you've enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?"
4965
+ msgstr "¡Esperamos que hayas disfrutado usando WordPress %s ! ¿Consideraría dejarnos una revisión en WordPress.org?"
 
 
4966
 
4967
  #: wd/includes/notices.php:213
4968
  msgid "Sure! I'd love to!"
4969
+ msgstr "¡Por supuesto! ¡Me encantaría!"
4970
 
4971
  #: wd/includes/notices.php:214
4972
  msgid "I've already left a review"
4973
+ msgstr "Ya he dejado una reseña"
4974
 
4975
  #: wd/includes/notices.php:215
4976
  msgid "Maybe Later"
4977
+ msgstr "Tal vez mas tarde"
4978
 
4979
  #: wd/includes/notices.php:216
4980
  msgid "Never show again"
4981
+ msgstr "Nunca lo muestres otra vez"
4982
 
4983
  #: wd/includes/overview.php:27
4984
  msgid "Welcome"
4985
+ msgstr "Gracias"
4986
 
4987
  #: wd/includes/overview.php:31
4988
  msgid "User Guide"
4989
+ msgstr "Guía del usuario"
4990
 
4991
  #: wd/includes/overview.php:35
4992
  msgid "Deals"
4993
+ msgstr "Ofertas"
4994
 
4995
  #: wd/includes/overview.php:39
4996
  msgid "Support"
4997
+ msgstr "Apoyo"
4998
 
4999
  #: wd/includes/overview.php:43
5000
  msgid "Submit Your Idea"
5001
+ msgstr "Envía tu idea"
5002
 
5003
  #: wd/includes/overview.php:47
5004
  msgid "Forum"
5005
+ msgstr "Foro"
5006
 
5007
  #: wd/includes/overview.php:79
5008
  msgid "Wordpress form builder plugin"
5009
+ msgstr "Complemento del generador de formularios de Wordpress"
5010
 
5011
  #: wd/includes/overview.php:80
5012
+ msgid "Form Maker is a modern and advanced tool for creating WordPress forms easily and fast."
5013
+ msgstr "Form Maker es una herramienta moderna y avanzada para crear formularios de WordPress de manera fácil y rápida."
 
 
5014
 
5015
  #: wd/includes/overview.php:85
5016
  msgid "WordPress Photo Gallery plugin"
5017
+ msgstr "Complemento de galería de fotos de WordPress"
5018
 
5019
  #: wd/includes/overview.php:86
5020
+ msgid "Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality."
5021
+ msgstr "Photo Gallery es un plugin de WordPress Gallery totalmente receptivo con funcionalidad avanzada."
 
 
5022
 
5023
  #: wd/includes/overview.php:91
5024
  msgid "WordPress calendar plugin"
5025
+ msgstr "Plugin de calendario de WordPress"
5026
 
5027
  #: wd/includes/overview.php:92
5028
+ msgid "Organize and publish your events in an easy and elegant way using Event Calendar WD."
5029
+ msgstr "Organice y publique sus eventos de una manera fácil y elegante usando Event Calendar WD."
 
 
5030
 
5031
  #: wd/includes/overview.php:97
5032
  msgid "WD Google Maps plugin"
5033
+ msgstr "WD Google Maps plugin"
5034
 
5035
  #: wd/includes/overview.php:98
5036
+ msgid "Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website."
5037
+ msgstr "Google Maps WD es una herramienta intuitiva para crear mapas de Google con marcadores avanzados, capas personalizadas y superposiciones para su sitio web."
 
 
5038
 
5039
  #: wd/includes/overview.php:103
5040
  msgid "WordPress slider plugin"
5041
+ msgstr "Plugin deslizante de WordPress"
5042
 
5043
  #: wd/includes/overview.php:104
5044
+ msgid "Create responsive, highly configurable sliders with various effects for your WordPress site."
5045
+ msgstr "Cree controles deslizantes receptivos y altamente configurables con diversos efectos para su sitio de WordPress."
 
 
5046
 
5047
  #: wd/includes/overview.php:109
5048
  msgid "WordPress event calendar plugin"
5049
+ msgstr "Plugin de calendario de eventos de WordPress"
5050
 
5051
  #: wd/includes/overview.php:110
5052
+ msgid "Spider Event Calendar is a highly configurable product which allows you to have multiple organized events."
5053
+ msgstr "Spider Event Calendar es un producto altamente configurable que le permite tener múltiples eventos organizados."
 
 
5054
 
5055
  #: wd/includes/overview.php:115
5056
  msgid "WordPress Instagram Feed plugin"
5057
+ msgstr "Plugin de WordPress Instagram Feed"
5058
 
5059
  #: wd/includes/overview.php:116
5060
+ msgid "WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website."
5061
+ msgstr "WD Instagram Feed es una herramienta fácil de usar para mostrar feeds basados ​​en hashtag y usuarios en su sitio web."
 
 
5062
 
5063
  #: wd/includes/overview.php:169
5064
  msgid "Not set"
5065
+ msgstr "No establecido"
5066
 
5067
  #: wd/includes/overview.php:174
5068
  msgid "On"
5069
+ msgstr "Encendido"
5070
 
5071
  #: wd/includes/overview.php:176
5072
  msgid "Off"
5073
+ msgstr "Apagado"
5074
 
5075
  #: wd/includes/overview.php:185 wd/includes/overview.php:193
5076
  #: wd/includes/overview.php:200 wd/includes/overview.php:207
5077
  #: wd/includes/overview.php:215 wd/includes/overview.php:222
5078
  msgid "N/A"
5079
+ msgstr "N/A"
5080
 
5081
  #: wd/includes/overview.php:220
5082
  msgid " MByte"
5083
+ msgstr " MByte"
5084
 
5085
  #: wd/includes/subscribe.php:43
5086
  msgid "Your name &"
5087
+ msgstr "Tu nombre &"
5088
 
5089
  #: wd/includes/subscribe.php:44
5090
  msgid "Email address"
5091
+ msgstr "Email"
5092
 
5093
  #: wd/includes/subscribe.php:48
5094
  msgid "Site URL"
5095
+ msgstr "Sitio URL"
5096
 
5097
  #: wd/includes/subscribe.php:49
5098
  msgid "Wordpress version"
5099
+ msgstr "Versión de Wordpress"
5100
 
5101
  #: wd/includes/subscribe.php:53
5102
  msgid "List of plugins"
5103
+ msgstr "Lista de complementos"
5104
 
5105
  #: wd/templates/display_deactivation_popup.php:8
5106
+ msgid "Please let us know why you are deactivating. Your answer will help us to serve you better"
5107
+ msgstr "Por favor, háganos saber por qué está desactivando. Su respuesta nos ayudará a servirle mejor"
 
 
5108
 
5109
  #: wd/templates/display_deactivation_popup.php:21
5110
  msgid "Deactivate"
5111
+ msgstr "Desactivar"
5112
 
5113
  #: wd/templates/display_deactivation_popup.php:22
5114
  msgid "Submit and deactivate"
5115
+ msgstr "Enviar y desactivar"
5116
 
5117
  #: wd/templates/display_overview.php:6
5118
  #, php-format
5119
  msgid "Welcome to %s"
5120
+ msgstr "Bienvenido a %s"
5121
 
5122
  #: wd/templates/display_overview.php:8
5123
  #, php-format
5124
  msgid "CONGRATS! You've successfully installed %s WordPress plugin."
5125
+ msgstr "¡Felicidades! Has instalado con éxito el complemento %s WordPress."
5126
 
5127
  #: wd/templates/display_overview_deals.php:12
5128
  #, php-format
5129
  msgid "Get %s"
5130
+ msgstr "Obtener %s"
5131
 
5132
  #: wd/templates/display_overview_deals.php:13
5133
  msgid "plugins"
5134
+ msgstr "complementos"
5135
 
5136
  #: wd/templates/display_overview_deals.php:14
5137
  #: wd/templates/display_overview_deals.php:58
5138
  msgid "for"
5139
+ msgstr "de"
5140
 
5141
  #: wd/templates/display_overview_deals.php:14
5142
  #: wd/templates/display_overview_deals.php:58
5143
  msgid "only"
5144
+ msgstr "solamente"
5145
 
5146
  #: wd/templates/display_overview_deals.php:16
5147
  msgid "Save 80%"
5148
+ msgstr "Ahorra el 80%"
5149
 
5150
  #: wd/templates/display_overview_deals.php:35
5151
  msgid "Download"
5152
+ msgstr "Descargar"
5153
 
5154
  #: wd/templates/display_overview_deals.php:45
5155
  msgid "Get all plugins"
5156
+ msgstr "Obtenga todos los complementos"
5157
 
5158
  #: wd/templates/display_overview_deals.php:57
5159
  msgid "Get all 11 themes"
5160
+ msgstr "Obtenga los 11 temas"
5161
 
5162
  #: wd/templates/display_overview_deals.php:60
5163
  msgid "Save 70%"
5164
+ msgstr "Ahorra el 70%"
5165
 
5166
  #: wd/templates/display_overview_deals.php:77
5167
  msgid "Find out more"
5168
+ msgstr "Saber más"
5169
 
5170
  #: wd/templates/display_overview_support.php:3
5171
  #, php-format
5172
+ msgid "You may contact us by filling in this form or by email %s any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback."
5173
+ msgstr "Puede ponerse en contacto con nosotros rellenando este formulario o por correo electrónico %s cualquier momento que necesite ayuda profesional o si tiene alguna pregunta. También puede completar el formulario para dejar sus comentarios o comentarios."
 
 
 
5174
 
5175
  #: wd/templates/display_overview_support.php:6
5176
  msgid "Site Details"
5177
+ msgstr "Detalles del Sitio"
5178
 
5179
  #: wd/templates/display_overview_support.php:8
5180
+ msgid "When contacting support, consider copying and pasting this information in your support request."
5181
+ msgstr "Cuando contacte al soporte, considere copiar y pegar esta información en su solicitud de soporte."
 
 
5182
 
5183
  #: wd/templates/display_overview_support.php:10
5184
  msgid "It helps us troubleshoot more quickly."
5185
+ msgstr "Nos ayuda a resolver problemas más rápidamente."
5186
 
5187
  #: wd/templates/display_overview_support.php:17
5188
  msgid "Copy to Clipboard"
5189
+ msgstr "Copiar al portapapeles"
5190
 
5191
  #: wd/templates/display_overview_support.php:20
5192
  msgid "Server Settings"
5193
+ msgstr "Configuración del servidor"
5194
 
5195
  #: wd/templates/display_overview_support.php:26
5196
  msgid "Graphic Library"
5197
+ msgstr "Biblioteca gráfica"
5198
 
5199
  #: wd/templates/display_overview_user_guide.php:26
5200
  msgid "Demo"
5201
+ msgstr "Manifestación"
5202
 
5203
  #: wd/templates/display_overview_user_guide.php:36
5204
  msgid "FAQ"
5205
+ msgstr "FAQ"
5206
 
5207
  #: wd/templates/display_overview_user_guide.php:40
5208
  msgid "Addons"
5209
+ msgstr "Complementos"
5210
 
5211
  #: wd/templates/display_overview_welcome.php:18
5212
  msgid "Run Install Wizard "
5213
+ msgstr "Ejecutar asistente de instalación "
5214
 
5215
  #: wd/templates/display_overview_welcome.php:26
5216
  msgid "More features"
5217
+ msgstr "Más características"
5218
 
5219
  #: wd/templates/display_subscribe.php:9
5220
  msgid "Hi there"
5221
+ msgstr "Hola"
5222
 
5223
  #: wd/templates/display_subscribe.php:11
5224
  #, php-format
5225
+ msgid "Allow %s to collect some usage data. This will allow you to get more out of your plugin experience - get awesome customer support, receive exclusive deals and discounts on premium products and more. You can choose to skip this step, %s will still work just fine."
5226
+ msgstr "Permita que %s recopile algunos datos de uso. Esto le permitirá obtener más de su experiencia de complementos: obtenga una atención al cliente increíble, reciba ofertas exclusivas y descuentos en productos premium y más. Puede optar por omitir este paso, %s seguirá funcionando bien."
 
 
 
 
5227
 
5228
  #: wd/templates/display_subscribe.php:19
5229
  msgid "What data is being collected?"
5230
+ msgstr "¿Qué datos se están recopilando?"
5231
 
5232
  #: wd/templates/display_subscribe.php:36
5233
  msgid "Privacy Policy"
5234
+ msgstr "Política de privacidad"
5235
 
5236
  #: wd/templates/display_subscribe.php:42
5237
  msgid "Terms of Use"
5238
+ msgstr "Términos de Uso"
5239
 
5240
  #: wd/wd.php:72
5241
  msgid "Overview"
5242
+ msgstr "Resumen"
photo-gallery.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
5
  * 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.
6
- * Version: 1.4.5
7
  * Author: Photo Gallery Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -71,9 +71,6 @@ final class BWG {
71
  $this->define_constants();
72
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
73
  $this->add_actions();
74
- if (session_id() == '' || (function_exists('session_status') && (session_status() == PHP_SESSION_NONE))) {
75
- @session_start();
76
- }
77
  }
78
 
79
  /**
@@ -83,8 +80,8 @@ final class BWG {
83
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
84
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
85
  $this->main_file = plugin_basename(__FILE__);
86
- $this->plugin_version = '1.4.5';
87
- $this->db_version = '1.4.5';
88
  $this->prefix = 'bwg';
89
  $this->nicename = __('Photo Gallery', $this->prefix);
90
 
@@ -518,9 +515,15 @@ final class BWG {
518
  * @param $params
519
  */
520
  public function front_end($params) {
521
- require_once(BWG()->plugin_dir . '/frontend/controllers/BWGController' . ucfirst($params['gallery_type']) . '.php');
522
- $controller_class = 'BWGController' . ucfirst($params['gallery_type']) . '';
523
- $controller = new $controller_class();
 
 
 
 
 
 
524
  global $bwg;
525
  $controller->execute($params, 1, $bwg);
526
  $bwg++;
@@ -558,7 +561,7 @@ final class BWG {
558
  }
559
  $l = rand($cap_length_min, $cap_length_max);
560
  $code = code_generic($l, $cap_digital, $cap_latin_char);
561
- @session_start();
562
  $_SESSION['bwg_captcha_code'] = $code;
563
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
564
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
@@ -1036,9 +1039,17 @@ final class BWG {
1036
  'bwg_mail_validation' => __('This is not a valid email address.', $this->prefix),
1037
  'bwg_search_result' => __('There are no images matching your search.', $this->prefix),
1038
  ));
1039
- wp_localize_script('bwg_sumoselect', 'bwg_objectsL10n', array(
1040
  'bwg_select_tag' => __('Select Tag', $this->prefix),
1041
  'bwg_search' => __('Search', $this->prefix),
 
 
 
 
 
 
 
 
1042
  ));
1043
 
1044
  // Google fonts.
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
5
  * 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.
6
+ * Version: 1.4.6
7
  * Author: Photo Gallery Team
8
  * Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
71
  $this->define_constants();
72
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
73
  $this->add_actions();
 
 
 
74
  }
75
 
76
  /**
80
  $this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
81
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
82
  $this->main_file = plugin_basename(__FILE__);
83
+ $this->plugin_version = '1.4.6';
84
+ $this->db_version = '1.4.6';
85
  $this->prefix = 'bwg';
86
  $this->nicename = __('Photo Gallery', $this->prefix);
87
 
515
  * @param $params
516
  */
517
  public function front_end($params) {
518
+ if ($params['gallery_type'] == 'thumbnails') {
519
+ require_once(BWG()->plugin_dir . '/frontend/controllers/controller.php');
520
+ $controller = new BWGControllerSite( ucfirst( $params[ 'gallery_type' ] ) );
521
+ }
522
+ else {
523
+ require_once(BWG()->plugin_dir . '/frontend/controllers/BWGController' . ucfirst($params['gallery_type']) . '.php');
524
+ $controller_class = 'BWGController' . ucfirst($params['gallery_type']) . '';
525
+ $controller = new $controller_class();
526
+ }
527
  global $bwg;
528
  $controller->execute($params, 1, $bwg);
529
  $bwg++;
561
  }
562
  $l = rand($cap_length_min, $cap_length_max);
563
  $code = code_generic($l, $cap_digital, $cap_latin_char);
564
+ WDWLibrary::bwg_session_start();
565
  $_SESSION['bwg_captcha_code'] = $code;
566
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
567
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
1039
  'bwg_mail_validation' => __('This is not a valid email address.', $this->prefix),
1040
  'bwg_search_result' => __('There are no images matching your search.', $this->prefix),
1041
  ));
1042
+ wp_localize_script('bwg_frontend', 'bwg_objectsL10n', array(
1043
  'bwg_select_tag' => __('Select Tag', $this->prefix),
1044
  'bwg_search' => __('Search', $this->prefix),
1045
+ 'bwg_show_ecommerce' => __('Show Ecommerce', $this->prefix),
1046
+ 'bwg_hide_ecommerce' => __('Hide Ecommerce', $this->prefix),
1047
+ 'bwg_show_comments' => __('Show Comments', $this->prefix),
1048
+ 'bwg_hide_comments' => __('Hide Comments', $this->prefix),
1049
+ 'bwg_how_comments' => __('how Comments', $this->prefix),
1050
+ 'bwg_restore' => __('Restore', $this->prefix),
1051
+ 'bwg_maximize' => __('Maximize', $this->prefix),
1052
+ 'bwg_fullscreen' => __('Fullscreen', $this->prefix),
1053
  ));
1054
 
1055
  // Google fonts.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,wdsupport,photogallerysupport
3
  Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
- Stable tag: 1.4.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -279,6 +279,30 @@ Choose whether to display random or the first/last specific number of images.
279
 
280
  == Changelog ==
281
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  = 1.4.5 =
283
  * Fixed: Shortcode save in some cases.
284
  * Fixed: Shortcode popup with some page builders.
3
  Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
4
  Requires at least: 3.4
5
  Tested up to: 4.9
6
+ Stable tag: 1.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
279
 
280
  == Changelog ==
281
 
282
+ = 1.4.6 =
283
+ * Fixed: "The loopback request to your site failed" error.
284
+ * Fixed: Import large amount of images from media library.
285
+ * Fixed: Album random effect from widget.
286
+ * Fixed: Preload images bug, when count is 0.
287
+ * Fixed: Fixed: Load more and scroll load doesn't work for images in extended album view (masonry view of images).
288
+ * Fixed: Show gallery description functionality for Gallery groups.
289
+ * Fixed: Warnings on PHP 7.1.
290
+ * Fixed: Total width of mosaic gallery.
291
+ * Fixed: Gallery title/description in gallery views.
292
+ * Fixed: Add tag to image.
293
+ * Fixed: Watermark image broken thumbnail shows on Carousel view.
294
+ * Fixed: Keep selected theme tab.
295
+ * Fixed: Filmstrip width on Mac.
296
+ * Added: All Galleries option in Gallery group when adding a shortcode.
297
+ * Added: Loading for admin pages.
298
+ * Added: Zoom effect for thumbnail view.
299
+ * Added: Resizable functionality for thumbnails.
300
+ * Added: Distance from container frame option.
301
+ * Changed: Removed hover effect from mobile devices.
302
+ * Improved: Distance between thumbnails in standard thumbnail view.
303
+ * Improved: Spanish translation (thanks to Pedro Javier Fernandez Ruiz).
304
+ * Improved: Greek translation (thanks to John Fy).
305
+
306
  = 1.4.5 =
307
  * Fixed: Shortcode save in some cases.
308
  * Fixed: Shortcode popup with some page builders.