Photo Gallery by WD – Responsive Photo Gallery - Version 1.6.3

Version Description

  • Improved: Storable sort order in filemanager.
  • Improved: Storable sort order in list views.
  • Fixed: SQL Injection.
  • Fixed: Cross-Site Scripting.
  • Fixed: Slideshow responsiveness.
  • Fixed: Add tag functionality on PHP 8.
  • Fixed: Open gallery in new tab from gallery group.
  • Fixed: Thumbnails alignment with enabled images titles.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 Photo Gallery by WD – Responsive Photo Gallery
Version 1.6.3
Comparing to
See all releases

Code changes from version 1.6.2 to 1.6.3

admin/controllers/Albums.php CHANGED
@@ -95,7 +95,15 @@ class AlbumsController_bwg {
95
  $params['page_title'] = __('Gallery Groups', BWG()->prefix);
96
  $params['actions'] = $this->actions;
97
  $params['order'] = WDWLibrary::get('order', 'asc');
98
- $params['orderby'] = WDWLibrary::get('orderby', 'name');
 
 
 
 
 
 
 
 
99
  // To prevent SQL injections.
100
  $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
101
  if (!in_array($params['orderby'], array('name', 'author'))) {
95
  $params['page_title'] = __('Gallery Groups', BWG()->prefix);
96
  $params['actions'] = $this->actions;
97
  $params['order'] = WDWLibrary::get('order', 'asc');
98
+ $params['orderby'] = WDWLibrary::get('orderby', '');
99
+ if ( $params['orderby'] != '' ) {
100
+ WDWLibrary::set_sorting( array('list_type'=>'albums', 'order_by' => $params['orderby'].'_'.$params['order']) );
101
+ } else {
102
+ $sorting = WDWLibrary::get_sorting( array('list_type'=>'albums') );
103
+ $sorting = explode("_", $sorting);
104
+ $params['orderby'] = isset($sorting[0]) ? $sorting[0] : 'name';
105
+ $params['order'] = isset($sorting[1]) ? $sorting[1] : 'asc';
106
+ }
107
  // To prevent SQL injections.
108
  $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
109
  if (!in_array($params['orderby'], array('name', 'author'))) {
admin/controllers/Galleries.php CHANGED
@@ -98,6 +98,14 @@ class GalleriesController_bwg {
98
  $params['actions'] = $this->actions;
99
  $params['order'] = WDWLibrary::get('order', 'asc');
100
  $params['orderby'] = WDWLibrary::get('orderby', 'order');
 
 
 
 
 
 
 
 
101
  // To prevent SQL injections.
102
  $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
103
  if ( !in_array($params['orderby'], array( 'name', 'author' )) ) {
@@ -353,10 +361,11 @@ class GalleriesController_bwg {
353
  // Image display params.
354
  $params['actions'] = WDWLibrary::image_actions( $params['gallery_type'] );
355
  $params['page_url'] = $params['form_action'];
356
- $order_by = WDWLibrary::get('order_by', 'order_asc');
357
- if ( !array_key_exists($order_by, WDWLibrary::admin_images_ordering_choices())) {
358
- $order_by = 'order_asc';
359
  }
 
360
  $order_by = explode('_', $order_by);
361
  $params['order'] = $order_by[1];
362
  $params['orderby'] = $order_by[0];
98
  $params['actions'] = $this->actions;
99
  $params['order'] = WDWLibrary::get('order', 'asc');
100
  $params['orderby'] = WDWLibrary::get('orderby', 'order');
101
+ if ( $params['orderby'] != 'order' ) {
102
+ WDWLibrary::set_sorting( array('list_type'=>'galleries', 'order_by' => $params['orderby'].'_'.$params['order']) );
103
+ } else {
104
+ $sorting = WDWLibrary::get_sorting( array('list_type'=>'galleries') );
105
+ $sorting = explode("_", $sorting);
106
+ $params['orderby'] = isset($sorting[0]) ? $sorting[0] : 'order';
107
+ $params['order'] = isset($sorting[1]) ? $sorting[1] : 'asc';
108
+ }
109
  // To prevent SQL injections.
110
  $params['order'] = ($params['order'] == 'desc') ? 'desc' : 'asc';
111
  if ( !in_array($params['orderby'], array( 'name', 'author' )) ) {
361
  // Image display params.
362
  $params['actions'] = WDWLibrary::image_actions( $params['gallery_type'] );
363
  $params['page_url'] = $params['form_action'];
364
+ $order_by = WDWLibrary::get('order_by', '');
365
+ if ( $order_by != '' && array_key_exists($order_by, WDWLibrary::admin_images_ordering_choices()) ) {
366
+ WDWLibrary::set_sorting( array('gallery_id' => $id, 'list_type' => 'edit', 'order_by' => $order_by) );
367
  }
368
+ $order_by = WDWLibrary::get_sorting( array('gallery_id' => $id, 'list_type' => 'edit') );
369
  $order_by = explode('_', $order_by);
370
  $params['order'] = $order_by[1];
371
  $params['orderby'] = $order_by[0];
admin/views/AddTags.php CHANGED
@@ -47,7 +47,7 @@ class AddTagsView_bwg extends AdminView_bwg {
47
  //for newly added images, id starts with pr_
48
  //if Select all checked, id equal to 0
49
  //for other cases id must be positive number
50
- if ( str_contains(WDWLibrary::get('image_id', 0), 'pr_') ) {
51
  $image_id = WDWLibrary::get('image_id', 0);
52
  } else {
53
  $image_id = WDWLibrary::get('image_id', 0, 'intval');
@@ -113,7 +113,7 @@ class AddTagsView_bwg extends AdminView_bwg {
113
  </table>
114
  </div>
115
  </div>
116
- <input id="image_id" name="image_id" type="hidden" value="<?php echo $image_id; ?>" />
117
  <div class="media-frame-toolbar">
118
  <div class="media-toolbar">
119
  <div class="media-toolbar-primary search-form">
47
  //for newly added images, id starts with pr_
48
  //if Select all checked, id equal to 0
49
  //for other cases id must be positive number
50
+ if ( strpos(WDWLibrary::get('image_id', 0), 'pr_') > -1 ) {
51
  $image_id = WDWLibrary::get('image_id', 0);
52
  } else {
53
  $image_id = WDWLibrary::get('image_id', 0, 'intval');
113
  </table>
114
  </div>
115
  </div>
116
+ <input id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
117
  <div class="media-frame-toolbar">
118
  <div class="media-toolbar">
119
  <div class="media-toolbar-primary search-form">
admin/views/AdminView.php CHANGED
@@ -85,7 +85,7 @@ class AdminView_bwg {
85
  }
86
  ob_start();
87
  ?>
88
- <div class="wd-list-view-header">
89
  <div class="wd-list-view-header-left">
90
  <div class="wd-page-title <?php echo $title_class; ?>">
91
  <h1 class="wd-heading-inline"><?php echo $title; ?>
@@ -184,13 +184,15 @@ class AdminView_bwg {
184
  */
185
  protected function sorting() {
186
  $options = WDWLibrary::admin_images_ordering_choices();
 
 
187
  ob_start();
188
  ?>
189
  <select name="order_by" onchange="bwg_sort_images(this.value);">
190
  <?php
191
  foreach ( $options as $key => $option ) {
192
  ?>
193
- <option value="<?php echo $key; ?>"><?php echo $option; ?></option>
194
  <?php
195
  }
196
  ?>
85
  }
86
  ob_start();
87
  ?>
88
+ <div class="wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
89
  <div class="wd-list-view-header-left">
90
  <div class="wd-page-title <?php echo $title_class; ?>">
91
  <h1 class="wd-heading-inline"><?php echo $title; ?>
184
  */
185
  protected function sorting() {
186
  $options = WDWLibrary::admin_images_ordering_choices();
187
+ $id = WDWLibrary::get('current_id', 0);
188
+ $order_by = WDWLibrary::get_sorting( array('gallery_id' => $id, 'list_type' => 'edit') );
189
  ob_start();
190
  ?>
191
  <select name="order_by" onchange="bwg_sort_images(this.value);">
192
  <?php
193
  foreach ( $options as $key => $option ) {
194
  ?>
195
+ <option value="<?php echo $key; ?>" <?php if ($order_by == $key) { echo 'selected'; } ?>><?php echo $option; ?></option>
196
  <?php
197
  }
198
  ?>
admin/views/Albums.php CHANGED
@@ -188,7 +188,7 @@ class AlbumsView_bwg extends AdminView_bwg {
188
  ),
189
  );
190
  ?>
191
- <div class="bwg-page-header wd-list-view-header">
192
  <div class="wd-page-title wd-header wd-list-view-header-left">
193
  <div>
194
  <h1 class="wp-heading-inline bwg-heading"><?php _e('Gallery Group Title', BWG()->prefix); ?></h1>
188
  ),
189
  );
190
  ?>
191
+ <div class="bwg-page-header wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
192
  <div class="wd-page-title wd-header wd-list-view-header-left">
193
  <div>
194
  <h1 class="wp-heading-inline bwg-heading"><?php _e('Gallery Group Title', BWG()->prefix); ?></h1>
admin/views/Editimage.php CHANGED
@@ -26,33 +26,12 @@ class EditimageView_bwg {
26
  }
27
  }
28
  $image_id = WDWLibrary::get('image_id', '0');
29
- $image_url = WDWLibrary::get('image_url', '');
30
- $facebook_post = WDWLibrary::get('FACEBOOK_POST', '0');
31
- $fb_post_url = WDWLibrary::get('fb_post_url', '');
32
- $app_id = BWG()->options->facebook_app_id;
33
  ?>
34
  <div id="loading_div"></div>
35
  <div id="wd-content" style="width:100%; height:100%;">
36
  <div id="bwg_container_for_media_1" style="width:100%; height:100%; margin:0 auto; text-align:center; vertical-align:middle;">
37
- <?php if ( !$facebook_post ) { ?>
38
  <img id="image_display" src="<?php echo BWG()->upload_url . WDWLibrary::image_url_version($image_url, $modified_date); ?>" style="max-width:100%; max-height:100%; position: relative; transform: translateY(-50%); top: 50%;" />
39
- <?php }
40
- else { ?>
41
- <div id="fb-root"></div>
42
- <script>
43
- (function (d, s, id) {
44
- var js, fjs = d.getElementsByTagName(s)[0];
45
- if (d.getElementById(id)) {
46
- return;
47
- }
48
- js = d.createElement(s);
49
- js.id = id;
50
- js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&version=v2.3&appId=<?php echo $app_id; ?>";
51
- fjs.parentNode.insertBefore(js, fjs);
52
- }(document, 'script', 'facebook-jssdk'));
53
- </script>
54
- <div class="fb-post" data-width="300" data-href="https://www.facebook.com/{user_name_or_id}/<?php echo $fb_post_url; ?>"></div>
55
- <?php } ?>
56
  </div>
57
  </div>
58
  <script language="javascript" type="text/javascript" src="<?php echo BWG()->plugin_url . '/js/bwg_embed.js?ver=' . BWG()->plugin_version; ?>"></script>
@@ -60,31 +39,28 @@ class EditimageView_bwg {
60
  var file_type = window.parent.document.getElementById("input_filetype_<?php echo $image_id; ?>").value;
61
  var file_url = window.parent.document.getElementById("image_url_<?php echo $image_id; ?>").value;
62
  var is_embed = file_type.indexOf("EMBED_") > -1 ? true : false;
63
- //for facebook
64
- var is_facebook_post = file_type.indexOf("_FACEBOOK_POST") > -1 ? true : false;
65
  var is_instagram_post = file_type.indexOf("INSTAGRAM_POST") > -1 ? true : false;
66
  if (is_embed) {
67
  var embed_id = window.parent.document.getElementById("input_filename_<?php echo $image_id; ?>").value;
68
- if (!is_facebook_post) {
69
- window.document.getElementById("image_display").setAttribute('style', 'display: none;');
70
- if (!is_instagram_post) {
71
- window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
72
- class: "embed_display",
73
- frameborder: "0",
74
- allowfullscreen: "allowfullscreen",
75
- style: "width:100%; height:100%; vertical-align:middle; text-align: center; margin: 0 auto;"
76
- });
77
- }
78
- else {
79
- window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
80
- class: "embed_display",
81
- width: "<?php echo $instagram_post_width; ?>",
82
- height: "<?php echo $instagram_post_height; ?>",
83
- frameborder: "0",
84
- allowfullscreen: "allowfullscreen",
85
- style: "width:<?php echo $instagram_post_width; ?>px; height:<?php echo $instagram_post_height; ?>px; vertical-align:middle; text-align: center; margin: 0 auto;"
86
- });
87
- }
88
  }
89
  }
90
  jQuery(window).on('load',function(){
@@ -95,27 +71,6 @@ class EditimageView_bwg {
95
  die();
96
  }
97
 
98
- public function thumb_display() {
99
- $popup_width = WDWLibrary::get('width', 1000, 'intval') - 30;
100
- $image_width = $popup_width - 40;
101
- $popup_height = WDWLibrary::get('width', 600, 'intval') - 50;
102
- $image_height = $popup_height - 40;
103
- $image_id = WDWLibrary::get('image_id', 0, 'intval');
104
- $modified_date = WDWLibrary::get('modified_date', '');
105
- ?>
106
- <div style="display:table; width:100%; height:<?php echo $popup_height; ?>px;">
107
- <div style="display:table-cell; text-align:center; vertical-align:middle;">
108
- <img id="thumb_view" src="" style="max-width:<?php echo $image_width; ?>px; max-height:<?php echo $image_height; ?>px;" />
109
- </div>
110
- </div>
111
- <script>
112
- var image_url = "<?php echo BWG()->upload_url; ?>" + window.parent.document.getElementById("thumb_url_<?php echo $image_id; ?>").value;
113
- window.document.getElementById("thumb_view").src = image_url + "<?php echo $modified_date ? '?bwg=' . $modified_date : ''; ?>";
114
- </script>
115
- <?php
116
- die();
117
- }
118
-
119
  public function crop($image_data = array()) {
120
  $thumb_width = BWG()->options->upload_thumb_width;
121
  $thumb_height = BWG()->options->upload_thumb_height;
@@ -898,9 +853,9 @@ class EditimageView_bwg {
898
  </div>
899
  </div>
900
  <input type="hidden" name="edit_type" id="edit_type" />
901
- <input type="hidden" name="image_id" id="image_id" value="<?php echo $image_id; ?>" />
902
- <input type="hidden" name="brightness_val" id="brightness_val" value="<?php echo $brightness_val; ?>" />
903
- <input type="hidden" name="contrast_val" id="contrast_val" value="<?php echo $contrast_val; ?>" />
904
  </form>
905
  <script>
906
  jQuery(function () {
26
  }
27
  }
28
  $image_id = WDWLibrary::get('image_id', '0');
29
+ $image_url = WDWLibrary::get('image_url', '', 'esc_url');
 
 
 
30
  ?>
31
  <div id="loading_div"></div>
32
  <div id="wd-content" style="width:100%; height:100%;">
33
  <div id="bwg_container_for_media_1" style="width:100%; height:100%; margin:0 auto; text-align:center; vertical-align:middle;">
 
34
  <img id="image_display" src="<?php echo BWG()->upload_url . WDWLibrary::image_url_version($image_url, $modified_date); ?>" style="max-width:100%; max-height:100%; position: relative; transform: translateY(-50%); top: 50%;" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  </div>
36
  </div>
37
  <script language="javascript" type="text/javascript" src="<?php echo BWG()->plugin_url . '/js/bwg_embed.js?ver=' . BWG()->plugin_version; ?>"></script>
39
  var file_type = window.parent.document.getElementById("input_filetype_<?php echo $image_id; ?>").value;
40
  var file_url = window.parent.document.getElementById("image_url_<?php echo $image_id; ?>").value;
41
  var is_embed = file_type.indexOf("EMBED_") > -1 ? true : false;
42
+
 
43
  var is_instagram_post = file_type.indexOf("INSTAGRAM_POST") > -1 ? true : false;
44
  if (is_embed) {
45
  var embed_id = window.parent.document.getElementById("input_filename_<?php echo $image_id; ?>").value;
46
+ window.document.getElementById("image_display").setAttribute('style', 'display: none;');
47
+ if (!is_instagram_post) {
48
+ window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
49
+ class: "embed_display",
50
+ frameborder: "0",
51
+ allowfullscreen: "allowfullscreen",
52
+ style: "width:100%; height:100%; vertical-align:middle; text-align: center; margin: 0 auto;"
53
+ });
54
+ }
55
+ else {
56
+ window.document.getElementById("bwg_container_for_media_1").innerHTML = spider_display_embed(file_type, file_url, embed_id, {
57
+ class: "embed_display",
58
+ width: "<?php echo $instagram_post_width; ?>",
59
+ height: "<?php echo $instagram_post_height; ?>",
60
+ frameborder: "0",
61
+ allowfullscreen: "allowfullscreen",
62
+ style: "width:<?php echo $instagram_post_width; ?>px; height:<?php echo $instagram_post_height; ?>px; vertical-align:middle; text-align: center; margin: 0 auto;"
63
+ });
 
 
64
  }
65
  }
66
  jQuery(window).on('load',function(){
71
  die();
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  public function crop($image_data = array()) {
75
  $thumb_width = BWG()->options->upload_thumb_width;
76
  $thumb_height = BWG()->options->upload_thumb_height;
853
  </div>
854
  </div>
855
  <input type="hidden" name="edit_type" id="edit_type" />
856
+ <input type="hidden" name="image_id" id="image_id" value="<?php echo esc_attr($image_id); ?>" />
857
+ <input type="hidden" name="brightness_val" id="brightness_val" value="<?php echo esc_attr($brightness_val); ?>" />
858
+ <input type="hidden" name="contrast_val" id="contrast_val" value="<?php echo esc_attr($contrast_val); ?>" />
859
  </form>
860
  <script>
861
  jQuery(function () {
admin/views/Galleries.php CHANGED
@@ -232,7 +232,7 @@ class GalleriesView_bwg extends AdminView_bwg {
232
  ?>
233
  </div>
234
  <div id="message_div" class="wd_updated" style="display: none;"></div>
235
- <div class="bwg-page-header wd-list-view-header">
236
  <div class="wd-page-title wd-header wd-list-view-header-left">
237
  <div>
238
  <h1 class="wp-heading-inline bwg-heading"><?php _e('Gallery title', BWG()->prefix); ?></h1>
232
  ?>
233
  </div>
234
  <div id="message_div" class="wd_updated" style="display: none;"></div>
235
+ <div class="bwg-page-header wd-list-view-header<?php echo !BWG()->is_pro ? ' bwg-page-header-free' : ''?>">
236
  <div class="wd-page-title wd-header wd-list-view-header-left">
237
  <div>
238
  <h1 class="wp-heading-inline bwg-heading"><?php _e('Gallery title', BWG()->prefix); ?></h1>
css/bwg_tables.css CHANGED
@@ -1152,12 +1152,17 @@ textarea.bwg_popup_input {
1152
  .wd-page-title > div:first-child {
1153
  margin-right: 15px;
1154
  }
 
 
 
 
1155
  .bwg-page-actions {
1156
  float: right;
1157
  margin-top: 20px;
1158
  margin-bottom: 3px;
1159
  position: relative;
1160
  }
 
1161
  .bwg-clear {
1162
  content: '';
1163
  clear: both;
@@ -2509,8 +2514,8 @@ form.bwg_form {
2509
  .wd-list-view-header-buttons .bwg-howto-button:before,
2510
  .bwg-page-actions .bwg-howto-button:before {
2511
  content: "";
2512
- background: url(images/button_plus.svg) no-repeat 5px ;
2513
- background-position: 5px;
2514
  background-color: #323A45;
2515
  border-radius: 50%;
2516
  position: absolute;
@@ -3201,6 +3206,9 @@ bwg-gallery-ul {
3201
  .wd-page-title > div:first-child {
3202
  flex: 1 1 280px;
3203
  }
 
 
 
3204
  }
3205
  /* style for 1366 */
3206
  @media screen and (max-width: 1913px) {
@@ -3341,11 +3349,65 @@ bwg-gallery-ul {
3341
 
3342
  }
3343
  /* style for 1280 */
3344
- @media screen and (max-width: 1280px) {
3345
  .wd-list-view-header .wd-list-view-header-free-right {
3346
  margin-left: 10px;
3347
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3348
  }
 
3349
  @media screen and (max-width: 1365px) {
3350
  #bwg_tab_gallery_content > .bwg-section > .wd-box-content,
3351
  #bwg_tab_gallery_group_content > .bwg-section > .wd-box-content{
@@ -3433,7 +3495,7 @@ bwg-gallery-ul {
3433
 
3434
  }
3435
  /* style for 1024*/
3436
- @media screen and (max-width: 1275px) {
3437
  .wd-form .list-search-box input[type=search] {
3438
  width: 100%;
3439
  }
@@ -3443,6 +3505,9 @@ bwg-gallery-ul {
3443
  .wd-list-view-header .wd-list-view-header-free-right {
3444
  display: none;
3445
  }
 
 
 
3446
  .upgrade-to-pro-text {
3447
  padding-top: 80px;
3448
  }
@@ -3756,6 +3821,10 @@ bwg-gallery-ul {
3756
  }
3757
 
3758
  @media screen and (max-width: 826px) {
 
 
 
 
3759
  .bwg_form .tablenav.top .actions, .tablenav .view-switch {
3760
  display: none;
3761
  }
@@ -3870,14 +3939,32 @@ bwg-gallery-ul {
3870
  .upgrade-to-pro-text .button-upgrade,.upgrade-to-pro-text .button-demo {
3871
  margin: 10px auto;
3872
  }
 
3873
  .wd-list-view-header .wd-list-view-header-left {
3874
  display: flex;
3875
  flex-wrap: wrap;
3876
  }
 
 
 
 
 
 
 
 
 
 
 
3877
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
3878
  display: inline-block;
3879
  margin-bottom: 15px;
3880
  }
 
 
 
 
 
 
3881
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header h1.wd-heading-inline {
3882
  font-size: 18px;
3883
  line-height: 24px;
@@ -3927,6 +4014,44 @@ bwg-gallery-ul {
3927
  }
3928
 
3929
  @media screen and (max-width: 655px) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3930
  .wd-list-view-header .wd-list-view-header-left {
3931
  align-items: flex-start;
3932
  flex-grow: 0;
@@ -3936,11 +4061,21 @@ bwg-gallery-ul {
3936
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
3937
  margin-left: 5px;
3938
  }
 
 
 
 
 
 
3939
  .wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons {
3940
  margin-top: 20px;
3941
  }
 
 
 
3942
  .wd-page-title > div:first-child {
3943
  flex: 0;
 
3944
  }
3945
  }
3946
 
@@ -3952,14 +4087,25 @@ bwg-gallery-ul {
3952
  .wd-list-view-header .bwg-howto-button {
3953
  display: block;
3954
  }
 
3955
  .bwg-page-actions .bwg-howto-button,
3956
  .bwg-page-header.wd-list-view-header .bwg-howto-button {
3957
- margin-top: 10px;
3958
- }
3959
  .wd-list-view-header .bwg-howto-button {
3960
  margin-top: 20px;
3961
  margin-left: 5px;
3962
  }
 
 
 
 
 
 
 
 
 
 
3963
  .bwg-page-header.wd-list-view-header .bwg-howto-button {
3964
  margin-left: 0px;
3965
  }
1152
  .wd-page-title > div:first-child {
1153
  margin-right: 15px;
1154
  }
1155
+ .bwg-page-header-free.bwg-page-actions {
1156
+ margin-top: 18px;
1157
+ }
1158
+
1159
  .bwg-page-actions {
1160
  float: right;
1161
  margin-top: 20px;
1162
  margin-bottom: 3px;
1163
  position: relative;
1164
  }
1165
+
1166
  .bwg-clear {
1167
  content: '';
1168
  clear: both;
2514
  .wd-list-view-header-buttons .bwg-howto-button:before,
2515
  .bwg-page-actions .bwg-howto-button:before {
2516
  content: "";
2517
+ background: url(images/button_plus.svg) no-repeat;
2518
+ background-position: 5px 5px;
2519
  background-color: #323A45;
2520
  border-radius: 50%;
2521
  position: absolute;
3206
  .wd-page-title > div:first-child {
3207
  flex: 1 1 280px;
3208
  }
3209
+ .bwg-page-header-free .wd-page-title > div:first-child {
3210
+ flex: 1 1 200px;
3211
+ }
3212
  }
3213
  /* style for 1366 */
3214
  @media screen and (max-width: 1913px) {
3349
 
3350
  }
3351
  /* style for 1280 */
3352
+ @media screen and (max-width: 1366px) {
3353
  .wd-list-view-header .wd-list-view-header-free-right {
3354
  margin-left: 10px;
3355
  }
3356
+
3357
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
3358
+ display: block;
3359
+ }
3360
+
3361
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
3362
+ width: auto;
3363
+ height: 40px;
3364
+ display: inline-block;
3365
+ }
3366
+
3367
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons .page-title-action {
3368
+ line-height: 70px;
3369
+ }
3370
+
3371
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
3372
+ height: 103px;
3373
+ }
3374
+
3375
+ .bwg-page-header-free#name {
3376
+ width:160px;
3377
+ }
3378
+
3379
+ .bwg-page-header-free .tw-button-primary {
3380
+ margin: 0 10px 20px 0px;
3381
+ }
3382
+
3383
+ .bwg-page-header-free .wd-howto-divider-vertical-two {
3384
+ display: none;
3385
+ }
3386
+
3387
+ .bwg-page-header-free .bwg-howto-button {
3388
+ display: block;
3389
+ }
3390
+
3391
+ .bwg-page-header-free .bwg-page-actions {
3392
+ display: block;
3393
+ float: left;
3394
+ }
3395
+
3396
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
3397
+ height: 103px;
3398
+ }
3399
+
3400
+
3401
+ .bwg-page-header-free .wd-page-title > div:first-child {
3402
+ flex: none;
3403
+ margin-right:40px;
3404
+ }
3405
+
3406
+ .bwg-page-header-free .bwg-page-actions .tw-button-primary {
3407
+ min-width: 100px;
3408
+ }
3409
  }
3410
+
3411
  @media screen and (max-width: 1365px) {
3412
  #bwg_tab_gallery_content > .bwg-section > .wd-box-content,
3413
  #bwg_tab_gallery_group_content > .bwg-section > .wd-box-content{
3495
 
3496
  }
3497
  /* style for 1024*/
3498
+ @media screen and (max-width: 1280px) {
3499
  .wd-form .list-search-box input[type=search] {
3500
  width: 100%;
3501
  }
3505
  .wd-list-view-header .wd-list-view-header-free-right {
3506
  display: none;
3507
  }
3508
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
3509
+ display: block;
3510
+ }
3511
  .upgrade-to-pro-text {
3512
  padding-top: 80px;
3513
  }
3821
  }
3822
 
3823
  @media screen and (max-width: 826px) {
3824
+ .wd-list-view-header .wd-list-view-header-free-right {
3825
+ margin-right: -15px
3826
+ }
3827
+
3828
  .bwg_form .tablenav.top .actions, .tablenav .view-switch {
3829
  display: none;
3830
  }
3939
  .upgrade-to-pro-text .button-upgrade,.upgrade-to-pro-text .button-demo {
3940
  margin: 10px auto;
3941
  }
3942
+
3943
  .wd-list-view-header .wd-list-view-header-left {
3944
  display: flex;
3945
  flex-wrap: wrap;
3946
  }
3947
+
3948
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
3949
+ display: block;
3950
+ flex-wrap: unset;
3951
+ }
3952
+
3953
+ .wd-list-view-header .wd-list-view-header-left {
3954
+ display: flex;
3955
+ flex-wrap: wrap;
3956
+ }
3957
+
3958
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
3959
  display: inline-block;
3960
  margin-bottom: 15px;
3961
  }
3962
+
3963
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
3964
+ display: inline-block;
3965
+ margin-bottom: inherit;
3966
+ }
3967
+
3968
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header h1.wd-heading-inline {
3969
  font-size: 18px;
3970
  line-height: 24px;
4014
  }
4015
 
4016
  @media screen and (max-width: 655px) {
4017
+ .bwg-page-header-free.wd-list-view-header {
4018
+ display: block;
4019
+ }
4020
+
4021
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left {
4022
+ margin-top: 170px;
4023
+ }
4024
+
4025
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right {
4026
+ width: 100%;
4027
+ background-image: none;
4028
+ background-color: #000E14;
4029
+ margin: 0;
4030
+ padding: 0;
4031
+ box-sizing: border-box;
4032
+ position: absolute;
4033
+ left:0px;
4034
+ top:-105px;
4035
+ border-radius: 0;
4036
+ }
4037
+
4038
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-header,
4039
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-text {
4040
+ text-align: center;
4041
+ }
4042
+
4043
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-free-right .upgrade-button {
4044
+ text-align: center;
4045
+ display: block;
4046
+ width: 136px;
4047
+ margin: auto;
4048
+ box-sizing: border-box;
4049
+ }
4050
+
4051
+ form.bwg_form {
4052
+ position: relative;
4053
+ }
4054
+
4055
  .wd-list-view-header .wd-list-view-header-left {
4056
  align-items: flex-start;
4057
  flex-grow: 0;
4061
  .wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
4062
  margin-left: 5px;
4063
  }
4064
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-page-title.wd-header {
4065
+ margin: 20px 0 0 5px;
4066
+ }
4067
+ .bwg-page-header-free.wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons {
4068
+ margin-top: 0px;
4069
+ }
4070
  .wd-list-view-header .wd-list-view-header-left .wd-list-view-header-buttons {
4071
  margin-top: 20px;
4072
  }
4073
+ .bwg-page-header-free .wd-page-title > div:first-child {
4074
+ padding-top: 30px;
4075
+ }
4076
  .wd-page-title > div:first-child {
4077
  flex: 0;
4078
+ padding-top: inherit;
4079
  }
4080
  }
4081
 
4087
  .wd-list-view-header .bwg-howto-button {
4088
  display: block;
4089
  }
4090
+
4091
  .bwg-page-actions .bwg-howto-button,
4092
  .bwg-page-header.wd-list-view-header .bwg-howto-button {
4093
+ margin-top: 10px;
4094
+ }
4095
  .wd-list-view-header .bwg-howto-button {
4096
  margin-top: 20px;
4097
  margin-left: 5px;
4098
  }
4099
+
4100
+ .bwg-page-header-free.bwg-page-actions .bwg-howto-button,
4101
+ .bwg-page-header-free.bwg-page-header.wd-list-view-header .bwg-howto-button {
4102
+ margin-top: inherit;
4103
+ }
4104
+ .bwg-page-header-free.wd-list-view-header .bwg-howto-button {
4105
+ margin-top: inherit;
4106
+ margin-left: inherit;
4107
+ }
4108
+
4109
  .bwg-page-header.wd-list-view-header .bwg-howto-button {
4110
  margin-left: 0px;
4111
  }
filemanager/controller.php CHANGED
@@ -49,24 +49,37 @@ class FilemanagerController {
49
  $valid_types = explode( ',', strtolower('jpg,jpeg,png,gif,svg') );
50
 
51
  // set session data.
52
- $session_data = array();
53
- $session_data['sort_by'] = $this->model->get_from_session('sort_by', 'date_modified');
54
- $session_data['sort_order'] = $this->model->get_from_session('sort_order', 'desc');
55
  $session_data['items_view'] = $this->model->get_from_session('items_view', 'thumbs');
56
  $session_data['clipboard_task'] = $this->model->get_from_session('clipboard_task', '');
57
  $session_data['clipboard_files'] = $this->model->get_from_session('clipboard_files', '');
58
  $session_data['clipboard_src'] = $this->model->get_from_session('clipboard_src', '');
59
  $session_data['clipboard_dest'] = $this->model->get_from_session('clipboard_dest', '');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  $params['session_data'] = $session_data;
61
-
62
  $params['dir'] = ($dir == '' || $dir == '/') ? '/' : $dir .'/';
63
  $params['path_components'] = $this->model->get_path_components( $dir );
64
  $params['search'] = $search;
65
  $params['page_num'] = $page_num;
66
  $params['valid_types'] = $valid_types;
67
- $params['orderby'] = $session_data['sort_by'];
 
68
  $params['order'] = $session_data['sort_order'];
69
  $params['page_per'] = $this->page_per;
 
70
  // get file lists.
71
  $items = $this->model->get_file_lists( $params );
72
  $params['items'] = $items;
49
  $valid_types = explode( ',', strtolower('jpg,jpeg,png,gif,svg') );
50
 
51
  // set session data.
52
+ $session_data = array();
 
 
53
  $session_data['items_view'] = $this->model->get_from_session('items_view', 'thumbs');
54
  $session_data['clipboard_task'] = $this->model->get_from_session('clipboard_task', '');
55
  $session_data['clipboard_files'] = $this->model->get_from_session('clipboard_files', '');
56
  $session_data['clipboard_src'] = $this->model->get_from_session('clipboard_src', '');
57
  $session_data['clipboard_dest'] = $this->model->get_from_session('clipboard_dest', '');
58
+ $bwg_filemanager_sorting_array = get_option('bwg_filemanager_sorting', 0);
59
+ if ($bwg_filemanager_sorting_array !== 0) {
60
+ if (array_key_exists(get_current_user_id(), $bwg_filemanager_sorting_array)) {
61
+ $session_data['sort_by'] = $bwg_filemanager_sorting_array[get_current_user_id()]['sort_by'];
62
+ $session_data['sort_order'] = $bwg_filemanager_sorting_array[get_current_user_id()]['sort_order'];
63
+ } else {
64
+ $session_data['sort_by'] = 'date_modified';
65
+ $session_data['sort_order'] = 'asc';
66
+ }
67
+ } else {
68
+ $session_data['sort_by'] = 'date_modified';
69
+ $session_data['sort_order'] = 'asc';
70
+ }
71
+ $params['orderby'] = $session_data['sort_by'];
72
  $params['session_data'] = $session_data;
 
73
  $params['dir'] = ($dir == '' || $dir == '/') ? '/' : $dir .'/';
74
  $params['path_components'] = $this->model->get_path_components( $dir );
75
  $params['search'] = $search;
76
  $params['page_num'] = $page_num;
77
  $params['valid_types'] = $valid_types;
78
+
79
+
80
  $params['order'] = $session_data['sort_order'];
81
  $params['page_per'] = $this->page_per;
82
+
83
  // get file lists.
84
  $items = $this->model->get_file_lists( $params );
85
  $params['items'] = $items;
framework/WDWLibrary.php CHANGED
@@ -498,7 +498,7 @@ class WDWLibrary {
498
  </div>
499
  <?php if (!$pager) { ?>
500
  <input type="hidden" id="page_number" name="page_number" value="<?php echo self::get('page_number', 1, 'intval'); ?>" />
501
- <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo self::get('search_or_not'); ?>"/>
502
  <?php
503
  }
504
  }
@@ -1247,7 +1247,7 @@ class WDWLibrary {
1247
  $filter_teg = trim( WDWLibrary::get('filter_tag_' . $bwg) );
1248
 
1249
  if ( !empty($filter_teg) ) {
1250
- $filter_teg_arr = explode(',', trim($filter_teg));
1251
  $_REQUEST[$tag_input_name] = $filter_teg_arr;
1252
  }
1253
  }
@@ -3312,5 +3312,60 @@ class WDWLibrary {
3312
 
3313
  return $data;
3314
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3315
  }
3316
 
498
  </div>
499
  <?php if (!$pager) { ?>
500
  <input type="hidden" id="page_number" name="page_number" value="<?php echo self::get('page_number', 1, 'intval'); ?>" />
501
+ <input type="hidden" id="search_or_not" name="search_or_not" value="<?php echo self::get('search_or_not', '', 'esc_attr'); ?>"/>
502
  <?php
503
  }
504
  }
1247
  $filter_teg = trim( WDWLibrary::get('filter_tag_' . $bwg) );
1248
 
1249
  if ( !empty($filter_teg) ) {
1250
+ $filter_teg_arr = array_map('intval', explode(",", trim($filter_teg)));
1251
  $_REQUEST[$tag_input_name] = $filter_teg_arr;
1252
  }
1253
  }
3312
 
3313
  return $data;
3314
  }
3315
+
3316
+ /**
3317
+ * Saving admin galleries, gallery edit, albums list page sorted value to wp_options.
3318
+ *
3319
+ * @param $params array list_type => edit/galleries/albums, gallery_id for edit case only, order_by for all cases
3320
+ */
3321
+ public static function set_sorting( $params = array() ) {
3322
+
3323
+ $gallery_id = isset( $params['gallery_id'] ) ? $params['gallery_id'] : 0;
3324
+ $order_by = isset( $params['order_by'] ) ? $params['order_by'] : 'order_asc';
3325
+ $list_type = isset( $params['list_type'] ) ? $params['list_type'] : '';
3326
+
3327
+ if ( $list_type == '' ) {
3328
+ return;
3329
+ }
3330
+
3331
+ $data = get_option('bwg_gallery_sorting');
3332
+ $user_id = get_current_user_id();
3333
+
3334
+ if( $list_type == 'edit' && ((!empty($data[$user_id][$gallery_id]) && $data[$user_id][$gallery_id]['order_by'] == $order_by) || $gallery_id == 0 || $user_id == 0) ) {
3335
+ return;
3336
+ }
3337
+ if ( $list_type == 'edit') {
3338
+ $data[$user_id][$gallery_id]['order_by'] = $order_by;
3339
+ } elseif ( $list_type == 'galleries' ) {
3340
+ $data[$user_id]['galleries']['order_by'] = $order_by;
3341
+ } elseif ( $list_type == 'albums' ) {
3342
+ $data[$user_id]['albums']['order_by'] = $order_by;
3343
+ }
3344
+
3345
+ update_option( 'bwg_gallery_sorting', $data, 1 );
3346
+ }
3347
+
3348
+ /**
3349
+ * Getting admin gallery list page sorted value from wp_options.
3350
+ *
3351
+ * @param $params array list_type => edit/galleries/albums, gallery_id for edit case only
3352
+ *
3353
+ * @return string
3354
+ */
3355
+ public static function get_sorting( $params = array() ) {
3356
+ $gallery_id = isset($params['gallery_id']) ? $params['gallery_id'] : 0;
3357
+ $list_type = isset($params['list_type']) ? $params['list_type'] : '';
3358
+ $user_id = get_current_user_id();
3359
+ $data = get_option('bwg_gallery_sorting');
3360
+
3361
+ if ( $list_type == 'edit' && !empty($data[$user_id][$gallery_id]['order_by']) ) {
3362
+ return $data[$user_id][$gallery_id]['order_by'];
3363
+ } elseif ($list_type == 'galleries' && !empty($data[$user_id]['galleries']['order_by']) ) {
3364
+ return $data[$user_id]['galleries']['order_by'];
3365
+ } elseif ($list_type == 'albums' && !empty($data[$user_id]['albums']['order_by']) ) {
3366
+ return $data[$user_id]['albums']['order_by'];
3367
+ }
3368
+ return 'order_asc';
3369
+ }
3370
  }
3371
 
frontend/models/BWGModelGalleryBox.php CHANGED
@@ -42,11 +42,11 @@ class BWGModelGalleryBox {
42
  $filter_tags = array();
43
  $bwg_filter_tag_temp = WDWLibrary::get('filter_tag_' . $bwg, 0);
44
  if ( !empty($bwg_filter_tag_temp) ) {
45
- $filter_tags = explode(",", $bwg_filter_tag_temp);
46
  }
47
  }
48
  else {
49
- $filter_tags = explode(",", $bwg_filter_tag_temp);
50
  }
51
 
52
  $filter_search_name_temp = WDWLibrary::get('filter_search_name', '');
@@ -110,7 +110,8 @@ class BWGModelGalleryBox {
110
  } else {
111
  $join .= ' LEFT JOIN (SELECT GROUP_CONCAT(tag_id order by tag_id SEPARATOR ",") AS tags_combined, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tags ON image.id=tags.image_id';
112
  }
113
- $where .= ' AND CONCAT(",", tags.tags_combined, ",") REGEXP ",(' . implode($compare_sign, $filter_tags) . ')," ';
 
114
  }
115
 
116
  $rate_join = '';
42
  $filter_tags = array();
43
  $bwg_filter_tag_temp = WDWLibrary::get('filter_tag_' . $bwg, 0);
44
  if ( !empty($bwg_filter_tag_temp) ) {
45
+ $filter_tags = array_map('intval', explode(",", $bwg_filter_tag_temp));
46
  }
47
  }
48
  else {
49
+ $filter_tags = array_map('intval', explode(",", $bwg_filter_tag_temp));
50
  }
51
 
52
  $filter_search_name_temp = WDWLibrary::get('filter_search_name', '');
110
  } else {
111
  $join .= ' LEFT JOIN (SELECT GROUP_CONCAT(tag_id order by tag_id SEPARATOR ",") AS tags_combined, image_id FROM ' . $wpdb->prefix . 'bwg_image_tag GROUP BY image_id) AS tags ON image.id=tags.image_id';
112
  }
113
+ $where .= ' AND CONCAT(",", tags.tags_combined, ",") REGEXP ",( %s )," ';
114
+ $prepareArgs[] = implode($compare_sign, $filter_tags);
115
  }
116
 
117
  $rate_join = '';
frontend/views/BWGViewGalleryBox.php CHANGED
@@ -1067,8 +1067,8 @@ class BWGViewGalleryBox {
1067
  </p>
1068
  <p class="bwg_comment_waiting_message"><?php _e('Your comment is awaiting moderation', BWG()->prefix); ?></p>
1069
  <input id="ajax_task" name="ajax_task" type="hidden" value="" />
1070
- <input id="image_id"id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
1071
- <input id="comment_id" name="comment_id" type="hidden" value="" />
1072
  <input type="hidden" value="<?php echo esc_attr($params['comment_moderation']) ?>" id="bwg_comment_moderation">
1073
  <input type="hidden" value="<?php echo ($params['gdpr_compliance']) ? 0 : esc_attr($params['popup_enable_captcha']); ?>" id="bwg_popup_enable_captcha">
1074
  </form>
1067
  </p>
1068
  <p class="bwg_comment_waiting_message"><?php _e('Your comment is awaiting moderation', BWG()->prefix); ?></p>
1069
  <input id="ajax_task" name="ajax_task" type="hidden" value="" />
1070
+ <input id="image_id" name="image_id" type="hidden" value="<?php echo esc_attr($image_id); ?>" />
1071
+ <input id="comment_id" name="comment_id" type="hidden" value="" />
1072
  <input type="hidden" value="<?php echo esc_attr($params['comment_moderation']) ?>" id="bwg_comment_moderation">
1073
  <input type="hidden" value="<?php echo ($params['gdpr_compliance']) ? 0 : esc_attr($params['popup_enable_captcha']); ?>" id="bwg_popup_enable_captcha">
1074
  </form>
frontend/views/BWGViewThumbnails.php CHANGED
@@ -165,7 +165,7 @@ class BWGViewThumbnails extends BWGViewSite {
165
  }
166
  ?>
167
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-item {
168
- justify-content: <?php echo $theme_row->thumb_title_pos == 'top'? 'flex-end' : 'flex-start'; ?>;
169
  max-width: <?php echo $params['thumb_width']; ?>px;
170
  <?php if ( !BWG()->options->resizable_thumbnails ) { ?>
171
  width: <?php echo $params['thumb_width']; ?>px !important;
165
  }
166
  ?>
167
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg-container-<?php echo $bwg; ?>.bwg-standard-thumbnails .bwg-item {
168
+ justify-content: <?php echo ($theme_row->thumb_title_pos == 'bottom' || $params['show_thumb_description']) ? 'flex-start' : 'flex-end'; ?>;
169
  max-width: <?php echo $params['thumb_width']; ?>px;
170
  <?php if ( !BWG()->options->resizable_thumbnails ) { ?>
171
  width: <?php echo $params['thumb_width']; ?>px !important;
frontend/views/view.php CHANGED
@@ -544,7 +544,7 @@ class BWGViewSite {
544
  $bwg_search_tags = WDWLibrary::get('bwg_tag_id_' . $cur_gal_id, array());
545
  $get_filter_teg = WDWLibrary::get('filter_tag_' . $bwg);
546
  if ( BWG()->options->front_ajax == "1" && isset($get_filter_teg) && !empty($get_filter_teg) ) {
547
- $filter_teg_arr = explode(',', $get_filter_teg);
548
  $bwg_search_tags = $filter_teg_arr;
549
  } ob_start();
550
  $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, 0, 'intval');
@@ -634,7 +634,7 @@ class BWGViewSite {
634
  }
635
  ?>
636
  </div>
637
- <div class="bwg_tag_button_see_all"><div class="see_all_tags show"><span>&#43;</span><?php echo __('see all tags', BWG()->prefix);?></div></div>
638
  <?php
639
  } ?>
640
  <input type="hidden" id="bwg_tag_id_<?php echo sanitize_html_class($cur_gal_id); ?>" value="<?php echo esc_attr($get_filter_teg) ?>" />
@@ -906,6 +906,9 @@ class BWGViewSite {
906
  ?>
907
  <input type="hidden" id="page_number_<?php echo sanitize_html_class($current_view); ?>" name="page_number_<?php echo esc_attr($current_view); ?>" value="<?php echo esc_attr($page_number); ?>" />
908
  <script type="text/javascript">
 
 
 
909
  function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
910
  if (typeof load_more == "undefined") {
911
  var load_more = false;
544
  $bwg_search_tags = WDWLibrary::get('bwg_tag_id_' . $cur_gal_id, array());
545
  $get_filter_teg = WDWLibrary::get('filter_tag_' . $bwg);
546
  if ( BWG()->options->front_ajax == "1" && isset($get_filter_teg) && !empty($get_filter_teg) ) {
547
+ $filter_teg_arr = array_map('intval', explode(",", trim($get_filter_teg)));
548
  $bwg_search_tags = $filter_teg_arr;
549
  } ob_start();
550
  $album_gallery_id = WDWLibrary::get('album_gallery_id_' . $current_view, 0, 'intval');
634
  }
635
  ?>
636
  </div>
637
+ <div class="bwg_tag_button_see_all"><div class="see_all_tags bwg_show"><span>&#43;</span><?php echo __('see all tags', BWG()->prefix);?></div></div>
638
  <?php
639
  } ?>
640
  <input type="hidden" id="bwg_tag_id_<?php echo sanitize_html_class($cur_gal_id); ?>" value="<?php echo esc_attr($get_filter_teg) ?>" />
906
  ?>
907
  <input type="hidden" id="page_number_<?php echo sanitize_html_class($current_view); ?>" name="page_number_<?php echo esc_attr($current_view); ?>" value="<?php echo esc_attr($page_number); ?>" />
908
  <script type="text/javascript">
909
+ if( jQuery('.bwg_nav_cont_<?php echo $current_view; ?>').length > 1 ) {
910
+ jQuery('.bwg_nav_cont_<?php echo $current_view; ?>').first().remove()
911
+ }
912
  function spider_page_<?php echo $current_view; ?>(cur, x, y, load_more) {
913
  if (typeof load_more == "undefined") {
914
  var load_more = false;
js/bwg_frontend.js CHANGED
@@ -166,11 +166,14 @@ function bwg_tags_button_section_visibility() {
166
  var visible_buttons_maxheight = parseInt( (tags_button_filter.find('.bwg_tags_filter_buttons').outerHeight(true) * 2 ) + 3 );
167
 
168
  if( tags_button_filter_full > visible_buttons_maxheight ) {
169
- tags_button_filter.css({
170
- 'min-height':visible_buttons_minheight,
171
- 'max-height':visible_buttons_maxheight,
172
- 'overflow':"hidden",
173
- });
 
 
 
174
  tags_button_filter.next('.bwg_tag_button_see_all').show();
175
  }
176
  else {
@@ -187,8 +190,8 @@ function bwg_tags_button_section_visibility() {
187
  tags_button_filter.next().find('.see_all_tags').attr('style', 'margin-left: -'+ see_all_button_width +'px');
188
 
189
  tags_button_filter.next().find('.see_all_tags').off("click").on('click', function () {
190
- if ( jQuery(this).hasClass("show") ) {
191
- jQuery(this).removeClass("show").addClass("hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
192
  tags_button_filter.css({
193
  'min-height':'auto',
194
  'max-height':'100%',
@@ -196,8 +199,8 @@ function bwg_tags_button_section_visibility() {
196
  'overflow':"visible",
197
  });
198
  }
199
- else if ( jQuery(this).hasClass("hide") ) {
200
- jQuery(this).removeClass("hide").addClass("show").html("<span>&#43;</span>" + bwg_objectsL10n.bwg_tag_see_all);
201
  tags_button_filter.css({
202
  'min-height':visible_buttons_minheight,
203
  'max-height':visible_buttons_maxheight,
@@ -207,7 +210,7 @@ function bwg_tags_button_section_visibility() {
207
  });
208
  /* Show all tags section, if selected tags position is under than 2-rd line */
209
  if ( show_bottom_tag == 1 ) {
210
- jQuery(this).find('.see_all_tags').removeClass("show").addClass("hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
211
  tags_button_filter.css({
212
  'min-height':'auto',
213
  'max-height':'100%',
@@ -3666,12 +3669,22 @@ function bwg_preload_images( key, bwg ) {
3666
  }
3667
 
3668
  function bwg_popup_resize_slidshow( bwg ) {
 
 
 
 
 
 
3669
  var slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_" + bwg;
3670
  // Slideshow filmstrip type is Fix count.
3671
  if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3672
  slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_fix_count_" + bwg;
3673
  }
3674
  var parentt = jQuery("#bwg_container1_" + bwg).parent();
 
 
 
 
3675
  /* Trick to set parent's width to elementor tab. */
3676
  if ( parentt.hasClass('elementor-tab-content') ) {
3677
  parentt.width(parentt.closest('.elementor-widget-wrap').width());
@@ -3765,6 +3778,8 @@ function bwg_popup_resize_slidshow( bwg ) {
3765
  }
3766
  }
3767
  else {
 
 
3768
  /* Slideshow filmstrip type is Fix dimension. */
3769
  if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
3770
  bwg_resize_slideshow_filmstrip_fix_dimension({ 'bwg': bwg, 'params': bwg_params[bwg], 'parent_width': parent_width - 40 });
@@ -3783,7 +3798,19 @@ function bwg_popup_resize_slidshow( bwg ) {
3783
  jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + ":hover").css({ fontSize: (parent_width * (bwg_params[bwg]['watermark_font_size'] / bwg_params[bwg]['image_width']) ) });
3784
  jQuery(".bwg_slideshow_title_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_title_font_size'] / bwg_params[bwg]['image_width']) });
3785
  jQuery(".bwg_slideshow_description_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_description_font_size'] / bwg_params[bwg]['image_width']) });
3786
- jQuery(".bwg_slideshow_image_" + bwg).css({ 'display': 'inline-block' });
 
 
 
 
 
 
 
 
 
 
 
 
3787
  }
3788
  if ( data[parseInt(jQuery("#bwg_current_image_key_" + bwg).val())]["is_embed_video"] ) {
3789
  jQuery("#bwg_slideshow_play_pause_" + bwg).css({ display: 'none' });
166
  var visible_buttons_maxheight = parseInt( (tags_button_filter.find('.bwg_tags_filter_buttons').outerHeight(true) * 2 ) + 3 );
167
 
168
  if( tags_button_filter_full > visible_buttons_maxheight ) {
169
+ /* Check for not closing see all tags container if it is already open ex. during page load */
170
+ if(jQuery(this).find(".see_all_tags.bwg_hide").length === 0 ) {
171
+ tags_button_filter.css({
172
+ 'min-height':visible_buttons_minheight,
173
+ 'max-height':visible_buttons_maxheight,
174
+ 'overflow':"hidden",
175
+ });
176
+ }
177
  tags_button_filter.next('.bwg_tag_button_see_all').show();
178
  }
179
  else {
190
  tags_button_filter.next().find('.see_all_tags').attr('style', 'margin-left: -'+ see_all_button_width +'px');
191
 
192
  tags_button_filter.next().find('.see_all_tags').off("click").on('click', function () {
193
+ if ( jQuery(this).hasClass("bwg_show") ) {
194
+ jQuery(this).removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
195
  tags_button_filter.css({
196
  'min-height':'auto',
197
  'max-height':'100%',
199
  'overflow':"visible",
200
  });
201
  }
202
+ else if ( jQuery(this).hasClass("bwg_hide") ) {
203
+ jQuery(this).removeClass("bwg_hide").addClass("bwg_show").html("<span>&#43;</span>" + bwg_objectsL10n.bwg_tag_see_all);
204
  tags_button_filter.css({
205
  'min-height':visible_buttons_minheight,
206
  'max-height':visible_buttons_maxheight,
210
  });
211
  /* Show all tags section, if selected tags position is under than 2-rd line */
212
  if ( show_bottom_tag == 1 ) {
213
+ jQuery(this).find('.see_all_tags').removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>" + bwg_objectsL10n.bwg_tag_see_less);
214
  tags_button_filter.css({
215
  'min-height':'auto',
216
  'max-height':'100%',
3669
  }
3670
 
3671
  function bwg_popup_resize_slidshow( bwg ) {
3672
+ var bwg_container1_class_name = '#bwg_container1_' + bwg;
3673
+ var bwg_container2_class_name = bwg_container1_class_name + ' #bwg_container2_' + bwg;
3674
+ var bwg_slideshow_image_wrap_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_wrap_' + bwg;
3675
+ var bwg_slideshow_image_container_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_container_' + bwg;
3676
+ var bwg_slideshow_image_class_name = bwg_container2_class_name + ' .bwg_slideshow_image_' + bwg;
3677
+
3678
  var slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_" + bwg;
3679
  // Slideshow filmstrip type is Fix count.
3680
  if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3681
  slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_fix_count_" + bwg;
3682
  }
3683
  var parentt = jQuery("#bwg_container1_" + bwg).parent();
3684
+ // Trick to set parent's width to wordpress content area.
3685
+ if ( parentt.hasClass('content-area') ) {
3686
+ parentt.width(parentt.closest('.content-area').width());
3687
+ }
3688
  /* Trick to set parent's width to elementor tab. */
3689
  if ( parentt.hasClass('elementor-tab-content') ) {
3690
  parentt.width(parentt.closest('.elementor-widget-wrap').width());
3778
  }
3779
  }
3780
  else {
3781
+ var slideshow_ratio = bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'];
3782
+ var new_slideshow_height = parent_width * slideshow_ratio;
3783
  /* Slideshow filmstrip type is Fix dimension. */
3784
  if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
3785
  bwg_resize_slideshow_filmstrip_fix_dimension({ 'bwg': bwg, 'params': bwg_params[bwg], 'parent_width': parent_width - 40 });
3798
  jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + ":hover").css({ fontSize: (parent_width * (bwg_params[bwg]['watermark_font_size'] / bwg_params[bwg]['image_width']) ) });
3799
  jQuery(".bwg_slideshow_title_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_title_font_size'] / bwg_params[bwg]['image_width']) });
3800
  jQuery(".bwg_slideshow_description_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_description_font_size'] / bwg_params[bwg]['image_width']) });
3801
+ jQuery(bwg_slideshow_image_wrap_class_name).css({
3802
+ width: parent_width,
3803
+ height: new_slideshow_height
3804
+ });
3805
+ jQuery(bwg_slideshow_image_container_class_name).css({
3806
+ width: parent_width,
3807
+ height: new_slideshow_height
3808
+ });
3809
+ jQuery(bwg_slideshow_image_class_name).css({
3810
+ 'display': 'inline-block',
3811
+ 'max-width': parent_width,
3812
+ 'max-height': new_slideshow_height
3813
+ });
3814
  }
3815
  if ( data[parseInt(jQuery("#bwg_current_image_key_" + bwg).val())]["is_embed_video"] ) {
3816
  jQuery("#bwg_slideshow_play_pause_" + bwg).css({ display: 'none' });
js/scripts.min.js CHANGED
@@ -1 +1 @@
1
- var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");void 0!==e&&bwg_rating((e=JSON.parse(e)).current_rate,e.current_rate_count,e.current_avg_rating,e.current_image_key)}),1==gallery_box_data.is_pro&&1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&(addthis_share={url:gallery_box_data.share_url}),lightbox_comment_pos=gallery_box_data.lightbox_comment_pos,bwg_image_info_pos=jQuery(".bwg_ctrl_btn_container").length?jQuery(".bwg_ctrl_btn_container").height():0,bwg_transition_duration=gallery_box_data.slideshow_interval<4*gallery_box_data.slideshow_effect_duration&&0!=gallery_box_data.slideshow_interval?1e3*gallery_box_data.slideshow_interval/4:1e3*gallery_box_data.slideshow_effect_duration,gallery_box_data.bwg_transition_duration=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!1,(jQuery("#spider_popup_wrap").width()>=jQuery(window).width()||jQuery("#spider_popup_wrap").height()>=jQuery(window).height())&&parseInt(jQuery(".spider_popup_close").css("right"))<0&&jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"),window.clearInterval(bwg_playInterval),bwg_current_filmstrip_pos=gallery_box_data.current_pos,jQuery(document).on("keydown",function(e){jQuery("#bwg_name").is(":focus")||jQuery("#bwg_email").is(":focus")||jQuery("#bwg_comment").is(":focus")||jQuery("#bwg_captcha_input").is(":focus")||("ArrowRight"==e.key?parseInt(jQuery("#bwg_current_image_key").val())==gallery_box_data.data.length-1?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):"ArrowLeft"==e.key?0==parseInt(jQuery("#bwg_current_image_key").val())?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),gallery_box_data.data.length-1):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):"Escape"==e.key?spider_destroypopup(1e3):"Space"==e.key&&jQuery(".bwg_play_pause").trigger("click"))}),jQuery(window).resize(function(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||bwg_popup_resize())});var r=gallery_box_data.image_width,_=gallery_box_data.image_height;if(1==gallery_box_data.is_pro){1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&jQuery(".at4-share-outer").show(),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form");var e=gallery_box_data.data,t=gallery_box_data.current_image_key;jQuery(".bwg_image_hits span").html(++e[t].hit_count);var i=window.location.hash;i&&"-1"!=i.indexOf("bwg")||(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id))}1==gallery_box_data.image_right_click&&(jQuery(".bwg_image_wrap").bind("contextmenu",function(e){return!1}),jQuery(".bwg_image_wrap").css("webkitTouchCallout","none")),jQuery("#spider_popup_wrap").bind("touchmove",function(e){e.preventDefault()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),bwg_reset_zoom();var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";jQuery("#spider_popup_left").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),jQuery("#spider_popup_right").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),-1!=navigator.appVersion.indexOf("MSIE 10")||-1!=navigator.appVersion.indexOf("MSIE 9")?setTimeout(function(){bwg_popup_resize()},1):bwg_popup_resize(),jQuery(".bwg_watermark").css({display:"none"}),setTimeout(function(){bwg_change_watermark_container()},500),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isNativelySupported()||jQuery(".bwg_fullscreen").hide()),"horizontal"==gallery_box_data.filmstrip_direction?(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()-gallery_box_data.image_filmstrip_height),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width())):(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width()-gallery_box_data.image_filmstrip_width)),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}});var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_filmstrip").on(s,function(e){var t=window.event||e,i=(t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta,a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());0<i?jQuery(".bwg_filmstrip_left").trigger(a?"touchend":"click"):jQuery(".bwg_filmstrip_right").trigger(a?"touchend":"click")}),jQuery(".bwg_filmstrip_right").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),"left"==gallery_box_data.left_or_top?"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({top:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500))}),"left"==gallery_box_data.left_or_top?jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().left<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({left:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().left&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}):jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().top<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({top:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().top&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}),"width"==gallery_box_data.width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").width(),"",gallery_box_data):bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").height(),"",gallery_box_data),jQuery(".bwg_info").on(a,function(){if("none"==jQuery(".bwg_image_info_container1").css("display")){jQuery(".bwg_image_info_container1").css("display","table-cell"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_hide_info);jQuery(".bwg_ctrl_btn_container").length&&jQuery(".bwg_ctrl_btn_container").height();jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set()}else jQuery(".bwg_image_info_container1").css("display","none"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_show_info)}),jQuery(".bwg_rate").on(a,function(){"none"==jQuery(".bwg_image_rate_container1").css("display")?(jQuery(".bwg_image_rate_container1").css("display","table-cell"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_hide_rating)):(jQuery(".bwg_image_rate_container1").css("display","none"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_show_rating))}),jQuery(".bwg_zoom").on(a,function(){var e=["mousemove","touchmove"];jQuery("figure.bwg_popup_image").each(function(){var i=jQuery(this);i.hasClass("zoom")?jQuery.each(e,function(e,t){i.removeClass("zoom"),i.off(t)}):jQuery.each(e,function(e,t){i.addClass("zoom"),i.on(t,function(e){var t,i,a,r;window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause");var _=e.target,s=_.getBoundingClientRect();e.targetTouches&&(a=e.targetTouches[0].clientX-s.left,r=e.targetTouches[0].clientY-s.top),t=e.offsetX?e.offsetX:e.targetTouches?a:_.offsetHeight,i=e.offsetY?e.offsetY:e.targetTouches?r:_.offsetWidth,x=t/_.offsetWidth*100,y=i/_.offsetHeight*100,_.parentNode.style.backgroundPosition=x+"% "+y+"%"})})})}),jQuery(".bwg_comment, .bwg_comments_close_btn").on(a,function(){bwg_comment()}),jQuery(".bwg_ecommerce, .bwg_ecommerce_close_btn").on(a,function(){bwg_ecommerce()}),jQuery(".bwg_toggle_container").on(a,function(){var e="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-up":"bwg-icon-caret-down",t="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-down":"bwg-icon-caret-up";jQuery(".bwg_toggle_container i").hasClass(e)?(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:0},500):jQuery(".bwg_image_rate").animate({bottom:0},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:0},500):jQuery(".bwg_image_hit").animate({bottom:0},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({top:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}}))):(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_rate").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_hit").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({top:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}}))),bwg_info_position(!0)});var o=window.innerHeight;jQuery(".bwg_resize-full").on(a,function(){bwg_resize_full()}),jQuery(".bwg_fullscreen").on(a,function(){jQuery(".bwg_watermark").css({display:"none"});var e,t=0;if((jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(t=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen))if(jQuery.fullscreen.isFullScreen())jQuery.fullscreen.exit(),e=o,jQuery(window).width()>gallery_box_data.image_width&&(r=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(_=gallery_box_data.image_height),gallery_box_data.open_with_fullscreen&&(r=jQuery(window).width(),_=e),jQuery("#spider_popup_wrap").on("fscreenclose",function(){jQuery("#spider_popup_wrap").css({width:r,height:_,left:"50%",top:"50%",marginLeft:-r/2,marginTop:-_/2,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:r-t}),jQuery(".bwg_image_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(r-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(_-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:_-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_fullscreen),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")});else{jQuery("#spider_popup_wrap").fullscreen();var i=screen.width,a=screen.height;jQuery("#spider_popup_wrap").css({width:i,height:a,left:0,top:0,margin:0,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:i-t}),jQuery(".bwg_image_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)},500),jQuery(".bwg_filmstrip").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction)?"comment_container_width":0}),jQuery(".bwg_filmstrip").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:a-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").hide(),jQuery(".bwg_fullscreen").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_exit_fullscreen),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}return!1}),jQuery(".bwg_play_pause").on(a,function(){jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")?(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")):(window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause"))}),gallery_box_data.open_with_autoplay&&(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")),gallery_box_data.open_with_fullscreen&&bwg_open_with_fullscreen(),jQuery(".bwg_popup_image").removeAttr("width"),jQuery(".bwg_popup_image").removeAttr("height"),jQuery(window).focus(function(){jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(gallery_box_data.data)}),jQuery(window).blur(function(){event_stack=[],window.clearInterval(bwg_playInterval)});gallery_box_data.lightbox_ctrl_btn_pos;1==gallery_box_data.open_ecommerce&&setTimeout(function(){bwg_ecommerce()},400),1==gallery_box_data.open_comment&&bwg_comment()}function spider_createpopup(e,t,a,r,_,s,o,l){e=e.replace(/&#038;/g,"&"),isPopUpOpened||(isPopUpOpened=!0,spider_isunsupporteduseragent()||(bwg_overflow_initial_value=jQuery("html").css("overflow"),bwg_overflow_x_initial_value=jQuery("html").css("overflow-x"),bwg_overflow_y_initial_value=jQuery("html").css("overflow-y"),jQuery("html").attr("style","overflow:hidden !important;"),jQuery("#bwg_spider_popup_loading_"+t).show(),jQuery("#spider_popup_overlay_"+t).css({display:"block"}),jQuery.ajax({type:"GET",url:e,success:function(e){var t=jQuery('<div id="spider_popup_wrap" class="spider_popup_wrap" style=" width:'+a+"px; height:"+r+"px; margin-top:-"+r/2+"px; margin-left: -"+a/2+'px; ">'+e+"</div>").hide().appendTo("body");if(gallery_box_ready(),spider_showpopup(s,o,t,_,l),"undefined"!=typeof addthis){jQuery(".addthis-smartlayers").show();var i=setInterval(function(){void 0!==addthis.layers.refresh&&(clearInterval(i),addthis.layers.refresh())},100)}},beforeSend:function(){},complete:function(){}})))}function spider_showpopup(e,t,i,a,r){var _=gallery_box_data.data,s=parseInt(jQuery("#bwg_current_image_key").val());if(void 0!==_[s]&&(isPopUpOpened=!0,-1<_[s].filetype.indexOf("EMBED_")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").prop("complete")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").on("load error",function(){bwg_first_image_load(i,r)}),"EMBED_OEMBED_INSTAGRAM_POST"==_[s].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds)){instgrm.Embeds.process();var o=parseInt(jQuery("#bwg_image_container").height());jQuery(".bwg_embed_frame .instagram-media").css({"max-height":o+"px"})}}function bwg_first_image_load(e,t){e.show(),""==gallery_box_data.data[key].alt&&""==gallery_box_data.data[key].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show();var i=jQuery(".bwg_ctrl_btn_container").height();"bottom"==t?jQuery(".bwg_toggle_container").css("bottom",i+"px"):"top"==t&&jQuery(".bwg_toggle_container").css("top",i+"px"),jQuery(".bwg_spider_popup_loading").hide(),1==gallery_box_data.preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key").val())),bwg_load_filmstrip(),bwg_info_height_set()}function spider_isunsupporteduseragent(){return!window.XMLHttpRequest}function spider_destroypopup(e){jQuery(".addthis-smartlayers").hide(),null!=document.getElementById("spider_popup_wrap")&&(void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&jQuery.fullscreen.isFullScreen()&&jQuery.fullscreen.exit(),"undefined"!=typeof enable_addthis&&enable_addthis&&jQuery(".at4-share-outer").hide(),setTimeout(function(){jQuery(".spider_popup_wrap").remove(),jQuery(".bwg_spider_popup_loading").css({display:"none"}),jQuery(".spider_popup_overlay").css({display:"none"}),jQuery(document).off("keydown"),!1!==bwg_overflow_initial_value&&jQuery("html").css("overflow",bwg_overflow_initial_value),!1!==bwg_overflow_x_initial_value&&jQuery("html").css("overflow-x",bwg_overflow_x_initial_value),!1!==bwg_overflow_y_initial_value&&jQuery("html").css("overflow-y",bwg_overflow_y_initial_value)},20)),isPopUpOpened=!1;var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),i=document.querySelector('meta[name="viewport"]');t&&i&&(i.content="width=device-width, initial-scale=1");var a=jQuery(document).scrollTop();bwg_objectsL10n.is_pro&&history.pushState(history.state,null,window.location.origin+window.location.pathname+window.location.search),jQuery(document).scrollTop(a),void 0!==gallery_box_data.bwg_playInterval&&clearInterval(gallery_box_data.bwg_playInterval)}function get_ajax_pricelist(){var e={};return jQuery(".add_to_cart_msg").html(""),e.ajax_task="display",e.image_id=jQuery("#bwg_popup_image").attr("image_id"),jQuery("#ecommerce_ajax_loading").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_opacity_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_loading_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_loading_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("display","block"),jQuery("#ecommerce_loading_div").css("display","table-cell"),jQuery.ajax({type:"POST",url:jQuery("#bwg_ecommerce_form").attr("action"),data:e,success:function(e){jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var t=jQuery(e).find(".manual").html();jQuery(".manual").html(t);var i=jQuery(e).find(".downloads").html();jQuery(".downloads").html(i);var a=jQuery(e).find(".pge_options").html();jQuery(".pge_options").html(a);var r=jQuery(e).find(".pge_add_to_cart").html();jQuery(".pge_add_to_cart").html(r)},beforeSend:function(){},complete:function(){jQuery("#ecommerce_opacity_div").css("display","none"),jQuery("#ecommerce_loading_div").css("display","none")}}),!1}function spider_ajax_save(e){var t={};return t.bwg_name=jQuery("#bwg_name").val(),t.bwg_comment=jQuery("#bwg_comment").val(),t.bwg_email=jQuery("#bwg_email").val(),t.bwg_captcha_input=jQuery("#bwg_captcha_input").val(),t.ajax_task=jQuery("#ajax_task").val(),t.image_id=jQuery("#image_id").val(),t.comment_id=jQuery("#comment_id").val(),jQuery("#ajax_loading").css("height",jQuery(".bwg_comments").css("height")),jQuery("#opacity_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#opacity_div").css("height",jQuery(".bwg_comments").css("height")),jQuery("#loading_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#loading_div").css("height",jQuery(".bwg_comments").css("height")),document.getElementById("opacity_div").style.display="",document.getElementById("loading_div").style.display="table-cell",jQuery.ajax({type:"POST",url:jQuery("#"+e).attr("action"),data:t,success:function(e){jQuery(".bwg_comments").mCustomScrollbar("destroy");var t=jQuery(e).find(".bwg_comments").html();jQuery(".bwg_comments").html(t)},beforeSend:function(){},complete:function(){document.getElementById("opacity_div").style.display="none",document.getElementById("loading_div").style.display="none",jQuery(".bwg_comments").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i,e){var t={};return t.image_id=jQuery("#"+i+" input[name='image_id']").val(),t.rate=void 0!==e?e:jQuery("#"+i+" input[name='score']").val(),t.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:t,success:function(e){var t=jQuery(e).find("#"+i).html();jQuery("#"+i).html(t)},beforeSend:function(){},complete:function(){}})}function spider_set_input_value(e,t){document.getElementById(e)&&(document.getElementById(e).value=t)}function spider_form_submit(e,t){document.getElementById(t)&&document.getElementById(t).submit(),e.preventDefault?e.preventDefault():e.returnValue=!1}function spider_check_required(e,t){return""==jQuery("#"+e).val()&&(alert(t+" "+bwg_objectsL10n.bwg_field_required),jQuery("#"+e).attr("style","border-color: #FF0000;"),jQuery("#"+e).focus(),!0)}function comment_check_privacy_policy(){var e=jQuery("#bwg_submit");e.removeClass("bwg-submit-disabled"),e.removeAttr("disabled"),jQuery("#bwg_comment_privacy_policy").is(":checked")||(e.addClass("bwg-submit-disabled"),e.attr("disabled","disabled"))}function spider_check_email(e){if(""!=jQuery("#"+e).val())return-1==jQuery("#"+e).val().replace(/^\s+|\s+$/g,"").search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/)&&(alert(bwg_objectsL10n.bwg_mail_validation),!0)}function bwg_captcha_refresh(e){document.getElementById(e+"_img")&&document.getElementById(e+"_input")&&(srcArr=document.getElementById(e+"_img").src.split("&r="),document.getElementById(e+"_img").src=srcArr[0]+"&r="+Math.floor(100*Math.random()),document.getElementById(e+"_img").style.display="inline-block",document.getElementById(e+"_input").value="")}function bwg_play_instagram_video(e,t){jQuery(e).parent().find("video").each(function(){jQuery(this).get(0).paused?(jQuery(this).get(0).play(),jQuery(e).children().hide()):(jQuery(this).get(0).pause(),jQuery(e).children().show())})}function bwg_add_comment(){var t=jQuery("#bwg_comment_form"),e=t.attr("action"),i={ajax_task:"add_comment"};return i.comment_name=t.find("#bwg_name").val(),i.comment_email=t.find("#bwg_email").val(),i.comment_text=t.find("#bwg_comment").val(),i.comment_captcha=t.find("#bwg_captcha_input").val(),i.popup_enable_captcha=t.find("#bwg_popup_enable_captcha").val(),i.privacy_policy=t.find("#bwg_comment_privacy_policy").is(":checked")?1:0,i.comment_image_id=jQuery("#bwg_popup_image").attr("image_id"),i.comment_moderation=t.find("#bwg_comment_moderation").val(),jQuery(".bwg_spider_ajax_loading").hide(),jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){jQuery(".bwg_comment_error").text(""),1==e.error?jQuery.each(e.error_messages,function(e,t){t&&jQuery(".bwg_comment_"+e+"_error").text(t)}):(t.find("#bwg_comment").val(""),jQuery(".bwg_comment_waiting_message").hide(),0==e.published&&jQuery(".bwg_comment_waiting_message").show(),""!=e.html_comments_block&&jQuery("#bwg_added_comments").html(e.html_comments_block).show())},beforeSend:function(){jQuery(".bwg_spider_ajax_loading").show()},complete:function(){0<t.find("#bwg_comment_privacy_policy").length&&(t.find("#bwg_comment_privacy_policy").prop("checked",!1),comment_check_privacy_policy()),bwg_captcha_refresh("bwg_captcha"),jQuery(".bwg_spider_ajax_loading").hide()},error:function(){}}),!1}function bwg_remove_comment(t){var e=jQuery("#bwg_comment_form").attr("action"),i={ajax_task:"delete_comment"};return i.id_image=jQuery("#bwg_popup_image").attr("image_id"),i.id_comment=t,jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){0==e.error&&jQuery("#bwg_comment_block_"+t).fadeOut("slow").remove()},beforeSend:function(){},complete:function(){},error:function(){}}),!1}function bwg_gallery_box(e,t,i,a){jQuery(".bwg-validate").each(function(){jQuery(this).on("keypress change",function(){jQuery(this).parent().next().find(".bwg_comment_error").html("")})}),void 0===i&&(i=!1);var r,_=t.data("bwg");r=t.find(".bwg-container").data("lightbox-url")?t.find(".bwg-container").data("lightbox-url"):t.data("lightbox-url");var s=t.find(".cur_gal_id").val(),o=jQuery("#bwg_tag_id_"+s).val();o=o||0;var l=1==i?"&open_ecommerce=1":"",n=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";n=n||"",void 0!==a&&(r+="&gallery_id="+a);var w="",b=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==b&&!1!==b&&(w="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+o+l+w+"&filter_search_name="+n+g,_,t.data("popup-width"),t.data("popup-height"),1,"testpopup",5,t.data("buttons-position"))}function bwg_change_image_lightbox(e,a,r,t){if(jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),bwg_current_key=gallery_box_data.bwg_current_key,""==gallery_box_data.data[a].alt&&""==gallery_box_data.data[a].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show(),jQuery(".bwg_image_info").css("height","auto"),setTimeout(function(){bwg_info_height_set(),jQuery(".bwg_image_description").height()>jQuery(".bwg_image_info").height()&&jQuery(".mCSB_container").hasClass("mCS_no_scrollbar")&&jQuery(".bwg_image_info").mCustomScrollbar("destroy"),jQuery(".bwg_image_info").hasClass("mCustomScrollbar")||void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})},200),jQuery("#spider_popup_left").show(),jQuery("#spider_popup_right").show(),jQuery(".bwg_image_info").hide(),0==gallery_box_data.enable_loop&&(a==parseInt(r.length)-1&&jQuery("#spider_popup_right").hide(),0==a&&jQuery("#spider_popup_left").hide()),1==gallery_box_data.ecommerceACtive&&1==gallery_box_data.enable_image_ecommerce)if(0==gallery_box_data.data[a].pricelist)jQuery(".bwg_ecommerce").hide();else{jQuery(".bwg_ecommerce").show(),jQuery(".pge_tabs li").hide(),jQuery("#downloads").hide(),jQuery("#manual").hide();var i=gallery_box_data.data[a].pricelist_sections.split(",");if(i)if(jQuery("#"+i[0]).show(),jQuery("[name=type]").val(i[0]),1<i.length)for(jQuery(".pge_tabs").show(),k=0;k<i.length;k++)jQuery("#"+i[k]+"_li").show();else jQuery(".pge_tabs").hide();else jQuery("[name=type]").val("")}if(jQuery("#bwg_image_container").find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#bwg_image_container").find("video").each(function(){jQuery(this).trigger("pause")}),void 0===r&&(r=gallery_box_data.data),void 0!==r[a]&&void 0!==r[e]){if(jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(r),t||jQuery("#bwg_current_image_key").val(a),gallery_box_data.bwg_trans_in_progress)return void gallery_box_data.event_stack.push(e+"-"+a);var _="right";if(bwg_current_key>a)_="left";else if(bwg_current_key==a)return;jQuery(".bwg_image_count").html(r[a].number),jQuery(".bwg_watermark").css({display:"none"}),"width"==gallery_box_data.width_or_height?bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").width()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width):"height"==gallery_box_data.width_or_height&&(bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").height()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width)),gallery_box_data.bwg_current_key=a,bwg_objectsL10n.is_pro&&(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+r[a].id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+r[a].id)),jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),gallery_box_data.popup_enable_rate&&(jQuery("#bwg_star").attr("data-score",r[a].avg_rating),jQuery("#bwg_star").removeAttr("title"),r[a].cur_key=a,bwg_rating(r[a].rate,r[a].rate_count,r[a].avg_rating,a)),jQuery(".bwg_image_hits span").html(++r[a].hit_count),jQuery("#bwg_popup_image").attr("image_id",r[a].id),jQuery(".bwg_image_title").html(jQuery("<span />").html(r[a].alt).text()),jQuery(".bwg_image_description").html(jQuery("<span />").html(r[a].description).text()),jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+a).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_image_info").css("opacity",1),""==r[a].alt.trim()&&""==r[a].description.trim()&&jQuery(".bwg_image_info").css("opacity",0),"none"!=jQuery(".bwg_image_info_container1").css("display")?jQuery(".bwg_image_info_container1").css("display","table-cell"):jQuery(".bwg_image_info_container1").css("display","none"),"none"!=jQuery(".bwg_image_rate_container1").css("display")?jQuery(".bwg_image_rate_container1").css("display","table-cell"):jQuery(".bwg_image_rate_container1").css("display","none");var s=2==jQuery(".bwg_popup_image_spun").css("zIndex")?".bwg_popup_image_spun":".bwg_popup_image_second_spun",o=".bwg_popup_image_second_spun"==s?".bwg_popup_image_spun":".bwg_popup_image_second_spun",l=-1<r[a].filetype.indexOf("EMBED_"),n=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),g=-1<r[a].filetype.indexOf("INSTAGRAM_VIDEO"),w=-1!==jQuery.inArray(r[a].filetype,["EMBED_OEMBED_YOUTUBE_VIDEO","EMBED_OEMBED_VIMEO_VIDEO","EMBED_OEMBED_FACEBOOK_VIDEO","EMBED_OEMBED_DAILYMOTION_VIDEO"]),b=jQuery(s).height(),u=jQuery(s).width(),d='<span class="bwg_popup_image_spun1" style="display: '+(l?"block":"table")+'; width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display:'+(l?"block":"table-cell")+'; vertical-align: middle;text-align: center;height: 100%;">';if(l){if(jQuery("#bwg_download").addClass("bwg-hidden"),d+='<span class="bwg_popup_embed bwg_popup_watermark" style="display: '+(w?"block":"table")+'; table-layout: fixed; height: 100%;">'+(g?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),n){var h=jQuery(".instagram-media"),m=jQuery(".bwg_embed_frame"),c=jQuery(".bwg_image_container").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),p=jQuery(".bwg_image_container").height()-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),y=r[a].image_width,f=r[a].image_height,j=bwg_resizing_ratio(y,f,c,p);m.attr("data-width",c),m.attr("data-height",p);var Q=j.width,v=j.height;Q<v?Q-=109:Q+=109,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":c,"data-height":p,"data-instagram-width":y,"data-instagram-height":f,style:"width:"+Q+"px; height:"+v+"px; vertical-align:middle; display:inline-block; position:relative;"}),h.css({"max-height":v+"px","min-width":Q+"px !important"})}else d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen",style:"display:"+(w?"block":"table-cell")+"; width:inherit; height:inherit; vertical-align:middle;"});d+="</span>"}else{jQuery(".bwg-loading").removeClass("bwg-hidden"),jQuery("#bwg_download").removeClass("bwg-hidden");var x="'"+(gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()).split("?bwg")[0]+"'";gallery_box_data.popup_enable_zoom&&(d+='<figure style="max-height: '+b+"px; max-width: "+u+"px; background-image: url("+x+'); background-repeat: no-repeat" class="bwg_popup_image bwg_popup_watermark" alt="'+r[a].alt+'" />'),d+='<img style="max-height: '+b+"px; max-width: "+u+'px;" class="bwg_popup_image bwg_popup_watermark" src="'+gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()+'" alt="'+r[a].alt+'" />'}function z(){gallery_box_data.preload_images&&bwg_preload_images(a),window["bwg_"+gallery_box_data.bwg_image_effect](s,o,_),jQuery(s).find(".bwg_fb_video").each(function(){jQuery(this).attr("src","")}),l?jQuery("#bwg_fullsize_image").attr("href",decodeURIComponent(r[a].image_url)):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].image_url)),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].thumb_url).replace("/thumb/","/.original/")));var e=decodeURIComponent(r[a].image_url).split("/");jQuery("#bwg_download").attr("download",e[e.length-1].replace(/\?bwg=(\d+)$/,""));var t=encodeURIComponent(gallery_box_data.bwg_share_url)+"="+r[a].id+encodeURIComponent("#bwg"+gallery_box_data.gallery_id+"/")+r[a].id;if(l)var i=encodeURIComponent(r[a].thumb_url);else i=gallery_box_data.bwg_share_image_url+encodeURIComponent(encodeURIComponent(r[a].pure_image_url));i=i.replace(/%252F|%25252F/g,"%2F"),void 0!==addthis_share&&(addthis_share.url=t),jQuery("#bwg_facebook_a").attr("href","https://www.facebook.com/sharer/sharer.php?u="+t),jQuery("#bwg_twitter_a").attr("href","https://twitter.com/intent/tweet?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_slideshow_filmstrip_fix_dimension(),bwg_resize_instagram_post()}if(gallery_box_data.popup_enable_zoom?d+="</figure></span></span>":d+="</span></span>",jQuery(o).html(d),jQuery(o).find("img").on("load error",function(){jQuery(".bwg-loading").addClass("bwg-hidden")}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:u,maxHeight:b,height:"auto"}),l)z();else jQuery(o).find("img").one("load",function(){z()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").show())}}function bwg_preload_images_lightbox(e){for(var t=gallery_box_data.data,i=t.length,a=0==gallery_box_data.preload_images_count||gallery_box_data.preload_images_count>=i?i:gallery_box_data.preload_images_count,r=0,_=1;r<a;_++){var s=1;do{var o=(e+_*s+i)%i;if(void 0!==t[o])-1<t[o].filetype.indexOf("EMBED_")||jQuery("<img/>").attr("src",gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(t[o].image_url)).text());s*=-1,r++}while(1!=s)}}function bwg_popup_sidebar_open(e){var t=gallery_box_data.lightbox_comment_width,i=gallery_box_data.lightbox_comment_pos;if(t>jQuery(window).width()){if(t=jQuery(window).width(),e.css({width:t}),jQuery(".spider_popup_close_fullscreen").hide(),jQuery(".spider_popup_close").hide(),jQuery(".bwg_ctrl_btn").hasClass("bwg-icon-pause")){var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());jQuery(".bwg_play_pause").trigger(a?"touchend":"click")}}else jQuery(".spider_popup_close_fullscreen").show();"left"==i?e.animate({left:0},100):e.animate({right:0},100)}function bwg_comment(){if(jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","-1"),jQuery(".bwg_comment_wrap").css("z-index","25"),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)),jQuery(".bwg_comment_container").hasClass("bwg_open"))"1"==jQuery(".bwg_comment_container").attr("data-play-status")&&jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-play").addClass("bwg-icon-pause").attr("title",bwg_objectsL10n.bwg_pause),bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments),jQuery(".spider_popup_close_fullscreen").show();else{jQuery(".bwg_play_pause").hasClass("bwg-icon-pause")?jQuery(".bwg_comment_container").attr("data-play-status","1"):jQuery(".bwg_comment_container").attr("data-play-status","0"),jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-pause").addClass("bwg-icon-play").attr("title",bwg_objectsL10n.bwg_play),bwg_popup_sidebar_open(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_open"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_hide_comments);var e=parseInt(jQuery("#bwg_current_image_key").val());void 0!==gallery_box_data.current_image_key&&0!=gallery_box_data.data[e].comment_count&&(jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form"))}jQuery(".bwg_comments").mCustomScrollbar("update",{scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})}function bwg_ecommerce(){jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","25"),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments)),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)):(bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_open"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_hide_ecommerce),get_ajax_pricelist())}function bwg_popup_sidebar_close(e){var t=parseInt(e.css("borderRightWidth"));t||(t=0),"left"==lightbox_comment_pos?e.animate({left:-e.width()-t},100):"right"==lightbox_comment_pos&&e.animate({right:-e.width()-t},100)}function bwg_animate_image_box_for_hide_sidebar(){"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:0,width:jQuery("#spider_popup_wrap").width()},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:0,width:jQuery("#spider_popup_wrap").width()},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({width:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)):"height"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").animate({height:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({height:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)),bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),jQuery(".spider_popup_close_fullscreen").show(100)}function bwg_animate_image_box_for_show_sidebar(){var e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width();"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:e,width:jQuery("#spider_popup_wrap").width()-e},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:e,width:jQuery("#spider_popup_wrap").width()-e},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").css({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?0:e)}),jQuery(".bwg_filmstrip").animate({width:jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100),bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data))}function bwg_reset_zoom(){var e=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),t=document.querySelector('meta[name="viewport"]');e&&t&&(t.content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0")}function bwg_open_with_fullscreen(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_video").css({width:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}function bwg_resize_full(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery(window).width()>gallery_box_data.image_width&&(bwg_popup_current_width=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(bwg_popup_current_height=gallery_box_data.image_height),jQuery("#spider_popup_wrap").animate({width:bwg_popup_current_width,height:bwg_popup_current_height,left:"50%",top:"50%",marginLeft:-bwg_popup_current_width/2,marginTop:-bwg_popup_current_height/2,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:bwg_popup_current_width-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_width-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:bwg_popup_current_height-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),setTimeout(function(){bwg_info_height_set()},500)):(bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").animate({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:jQuery(window).width()-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:window.innerHeight-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")),setTimeout(function(){bwg_info_height_set()},500)}function bwg_popup_resize_lightbox(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||(jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")||jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.fullscreen)));var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=gallery_box_data.lightbox_comment_width),e>jQuery(window).width()?(e=jQuery(window).width(),jQuery(".bwg_comment_container").css({width:e}),jQuery(".bwg_ecommerce_container").css({width:e}),jQuery(".spider_popup_close_fullscreen").hide()):jQuery(".spider_popup_close_fullscreen").show(),window.innerHeight>gallery_box_data.image_height&&1!=gallery_box_data.open_with_fullscreen&&!jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery("#spider_popup_wrap").css({height:gallery_box_data.image_height,top:"50%",marginTop:-gallery_box_data.image_height/2,zIndex:100002}),jQuery(".bwg_image_container").css({height:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:gallery_box_data.image_height}),jQuery(".bwg_filmstrip").css({height:gallery_box_data.image_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=gallery_box_data.image_height):(jQuery("#spider_popup_wrap").css({height:window.innerHeight,top:0,marginTop:0,zIndex:100002}),jQuery(".bwg_image_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=window.innerHeight),jQuery(window).width()>=gallery_box_data.image_width&&1!=gallery_box_data.open_with_fullscreen?(jQuery("#spider_popup_wrap").css({width:gallery_box_data.image_width,left:"50%",marginLeft:-gallery_box_data.image_width/2,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_image_container").css({width:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_filmstrip").css({width:gallery_box_data.image_width-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=gallery_box_data.image_width):(jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),left:0,marginLeft:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({width:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-e}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=jQuery(window).width()),bwg_resize_instagram_post(),bwg_change_watermark_container(),1!=gallery_box_data.open_with_fullscreen&&(gallery_box_data.lightbox_close_btn_right<0&&jQuery("#spider_popup_wrap").width()-2*gallery_box_data.lightbox_close_btn_right>=jQuery(window).width()||gallery_box_data.lightbox_close_btn_top<0&&jQuery("#spider_popup_wrap").height()-2*gallery_box_data.lightbox_close_btn_top>=jQuery(window).height()?jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"):jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"));var t=jQuery(".bwg_ctrl_btn_container").height();"bottom"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-down")&&jQuery(".bwg_toggle_container").css("bottom",t+"px"),"top"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-up")&&jQuery(".bwg_toggle_container").css("top",t+"px")}function bwg_rating(e,t,i,a){lightbox_rate_stars_count=gallery_box_data.lightbox_rate_stars_count,lightbox_rate_size=gallery_box_data.lightbox_rate_size,lightbox_rate_icon=gallery_box_data.lightbox_rate_icon;var r="Not rated yet.";if(0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)){var _=parseFloat(jQuery("#bwg_star").attr("data-score"));jQuery("#bwg_star").removeAttr("data-score").html("");var s={starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,noRatedMsg:"Not rated yet.",readOnly:!1,score:_,starHalf:"bwg-icon-"+lightbox_rate_icon+("star"==lightbox_rate_icon?"-half":"")+"-o",starOff:"bwg-icon-"+lightbox_rate_icon+"-o",starOn:"bwg-icon-"+lightbox_rate_icon,cancelOff:"bwg-icon-minus-square-o",cancelOn:"bwg-icon-minus-square-o",cancel:!1,cancelHint:"Cancel your rating.",hints:[r,r,r,r,r],alreadyRatedMsg:parseFloat(i).toFixed(1)+"\nYou have already rated.\nVotes: "+t};e||(s.click=function(e,t){jQuery("#bwg_star").hide(),jQuery("#bwg_rated").show(),spider_set_input_value("rate_ajax_task","save_rate"),jQuery.when(spider_rate_ajax_save("bwg_rate_form",e)).then(function(){gallery_box_data.data[a].rate=e,++gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating=_?((_+e)/2).toFixed(1):e.toFixed(1),bwg_rating(gallery_box_data.data[a].rate,gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating,gallery_box_data.current_image_key)})}),jQuery("#bwg_star").raty(s),jQuery(".bwg_image_rate_disabled").hide(),e&&jQuery(".bwg_image_rate_disabled").show()}}function changeDownloadsTotal(e){var t=0;0==jQuery("[name=option_show_digital_items_count]").val()?jQuery("[name=selected_download_item]:checked").each(function(){t+=Number(jQuery(this).closest("tr").attr("data-price"))}):jQuery(".digital_image_count").each(function(){0!=Number(jQuery(this).val())&&(t+=Number(jQuery(this).closest("tr").attr("data-price"))*Number(jQuery(this).val()))}),t=t.toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_downloads_price").html(t)}function changeMenualTotal(e){Number(jQuery(e).val())<=0&&jQuery(e).val("1");var t=Number(jQuery(e).val()),i=Number(jQuery(".product_manual_price").attr("data-actual-price"));i=(i*=t).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onSelectableParametersChange(e){var t=0,i=gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price?gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price:"0";i=parseFloat(i.replace(",",""));var a=jQuery(e).closest(".image_selected_parameter").attr("data-parameter-type"),r=jQuery(e).val();r=r.split("*");var _=parseFloat(r[1]),s=r[0],o=Number(jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val());if("4"==a||"5"==a){var l=parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(l)}else if("6"==a){if(0==jQuery(e).is(":checked"))var n=o-parseFloat(s+_);else n=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(n)}jQuery(".already_selected_values").each(function(){t+=Number(jQuery(this).val())}),i+=t,jQuery(".product_manual_price").attr("data-actual-price",i),i=(i*=Number(jQuery(".image_count").val())<=0?1:Number(jQuery(".image_count").val())).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onBtnClickAddToCart(){var e=jQuery("[name=type]").val();if(""!=e){var t={};if("manual"==e){var i=jQuery(".image_count").val(),a={};jQuery(".manual").find(".image_selected_parameter").each(function(){var e=jQuery(this).attr("data-parameter-id"),t="";switch(jQuery(this).attr("data-parameter-type")){case"2":t=jQuery(this).find("input").val();break;case"3":t=jQuery(this).find("textarea").val();break;case"4":t=jQuery(this).find("select :selected").val();break;case"5":t=jQuery(this).find("[type=radio]:checked").val();break;case"6":var i=[];jQuery(this).find("[type=checkbox]:checked").each(function(){i.push(jQuery(this).val())}),t=i}a[e]=t}),t.count=i,t.parameters=a,t.price=jQuery(".product_manual_price").attr("data-price").replace(",","")}else{var r=[];if(0==jQuery("[name=option_show_digital_items_count]").val()){if(0==jQuery("[name=selected_download_item]:checked").length)return void jQuery(".add_to_cart_msg").html("You must select at least one item.");jQuery("[name=selected_download_item]:checked").each(function(){var e={};e.id=jQuery(this).val(),e.count=1,e.price=jQuery(this).closest("tr").attr("data-price"),r.push(e)})}else jQuery(".digital_image_count").each(function(){var e={};0<jQuery(this).val()&&(e.id=jQuery(this).closest("tr").attr("data-id"),e.price=jQuery(this).closest("tr").attr("data-price"),e.count=jQuery(this).val(),r.push(e))});if(0==(t.downloadItems=r).length)return void jQuery(".add_to_cart_msg").html("Please select at least one item")}var _=jQuery("#ajax_url").val(),s={action:"add_cart",task:"add_cart",controller:"checkout",image_id:jQuery("#bwg_popup_image").attr("image_id"),type:e,data:JSON.stringify(t)};jQuery.ajax({type:"POST",url:_,data:s,success:function(e){responseData=JSON.parse(e),jQuery(".add_to_cart_msg").html(responseData.msg),jQuery(".products_in_cart").html(responseData.products_in_cart),1==responseData.redirect&&(window.location.href="<?php echo get_permalink($options->checkout_page);?>")},beforeSend:function(){},complete:function(){}})}else jQuery(".add_to_cart_msg").html("Please select Prints and products or Downloads")}function onBtnViewCart(){var e=jQuery("[name=option_checkout_page]").val();jQuery("#bwg_ecommerce_form").attr("action",e),jQuery("#bwg_ecommerce_form").submit()}function bwg_load_visible_images(e,t,i){0<=e-t&&(startPoint=e-t),i<e+t&&(endPoint=i);for(var a=startPoint;a<=endPoint;a++){var r=jQuery("#bwg_filmstrip_thumbnail_"+a+" img");r.removeClass("bwg-hidden"),r.attr("src",r.data("url"))}}function bwg_load_filmstrip(){for(var e=1;e<=total_thumbnail_count;e++){var t;if(leftIndex=startPoint-e,rightIndex=endPoint+e,rightIndex<total_thumbnail_count)(t=jQuery("#bwg_filmstrip_thumbnail_"+rightIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"));if(0<=leftIndex)(t=jQuery("#bwg_filmstrip_thumbnail_"+leftIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"))}jQuery(".bwg_filmstrip_thumbnail").each(function(){var e=jQuery(this).find("img");void 0===e.attr("style")&&(0==e.width()?e.on("load",function(){jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)}):(jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)))})}function bwg_filmstrip_thumb_view(e){var t=gallery_box_data.image_filmstrip_height,i=gallery_box_data.image_filmstrip_width,a=i-gallery_box_data.filmstrip_thumb_right_left_space,r=t,_=Math.max(i/e.width(),t/e.height()),s=e.width()*_,o=e.height()*_;e.css({width:s,height:o,marginLeft:(a-s)/2,marginTop:(r-o)/2})}function bwg_info_height_set(){bwg_info_position(!1),jQuery(".mCustomScrollBox").length&&jQuery(".bwg_image_info_container1").height()<jQuery(".mCustomScrollBox").height()+jQuery(".bwg_toggle_container").height()+bwg_image_info_pos+2*parseInt(gallery_box_data.lightbox_info_margin)&&jQuery(".bwg_image_info").css({height:jQuery(".bwg_image_info_container1").height()-jQuery(".bwg_toggle_container").height()-bwg_image_info_pos-2*parseInt(gallery_box_data.lightbox_info_margin)})}function bwg_info_position(e){var t=0,i="none";"top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(i="top"):"bottom"==gallery_box_data.lightbox_info_pos&&(i="bottom"),jQuery(".bwg_ctrl_btn_container").hasClass("closed")||("top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height()):"bottom"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height())),"top"==i?0==e?jQuery(".bwg_image_info").css("top",t):jQuery(".bwg_image_info").animate({top:t+"px"},500):"bottom"==i&&(0==e?jQuery(".bwg_image_info").css("bottom",t):jQuery(".bwg_image_info").animate({bottom:t+"px"},500))}function spider_display_embed(e,t,i,a){var r="";switch(e){case"EMBED_OEMBED_YOUTUBE_VIDEO":var _="<iframe ";for(attr in""!=i&&(_+=' src="//www.youtube.com/embed/'+i+'?enablejsapi=1&wmode=transparent"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(_+=" "+attr+'="'+a[attr]+'"');r+=_+=" ></iframe>";break;case"EMBED_OEMBED_VIMEO_VIDEO":var s="<iframe ";for(attr in""!=i&&(s+=' src="//player.vimeo.com/video/'+i+'?enablejsapi=1"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(s+=" "+attr+'="'+a[attr]+'"');r+=s+=" ></iframe>";break;case"EMBED_OEMBED_FLICKR_IMAGE":var o="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(o+=" "+attr+'="'+a[attr]+'"');o+=" >",""!=i&&(o+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto !important; height:auto !important;">'),r+=o+="</div>";break;case"EMBED_OEMBED_FLICKR_VIDEO":break;case"EMBED_OEMBED_INSTAGRAM_VIDEO":var l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+decodeURIComponent(t)+'" type="video/mp4"> Your browser does not support the video tag. </video>'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_IMAGE":var n=a["data-max-width"],g=a["data-max-height"];l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<img src="'+decodeURIComponent(t)+'" style="max-width:'+n+"px; max-height:"+g+'px; width: auto; height: auto">'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_POST":l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"',"CLASS"!=attr&&"class"!=attr&&"Class"!=attr||(obj_class=a[attr]));l+=">",""!=t&&(l+='<div class="inner_instagram_iframe_'+obj_class+'" style="max-width: 100% !important; max-height: 100% !important; width: 100%; height: 100%; margin:0; vertical-align:middle;">'+atob(t)+"</div>"),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var w="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');w+=" >",""!=i&&(w+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=w+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(b+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<iframe src="//www.facebook.com/video/embed?video_id='+t+'&enablejsapi=1&wmode=transparent" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" class="bwg_fb_video" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=b+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var u="<iframe ";for(attr in""!=i&&(u+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');r+=u+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var d="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');d+=" >",""!=i&&(d+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=d+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var h="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(h+=" "+attr+'="'+a[attr]+'"');h+=" >",""!=i&&(h+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=h+="</div>";break;default:var m={content:""};jQuery(document).trigger("bwg_display_embed",[m,e,t,i,a]),r=m.content}return r}function bwg_add_instagram_gallery(e,s){if(!0===(s=void 0!==s&&s)){if(bwg_check_instagram_gallery_input(e,s))return!1;var t="0";1==jQuery("input[name=popup_instagram_post_gallery]:checked").val()&&(t="1");var i=encodeURI(jQuery("#popup_instagram_gallery_source").val()),a=encodeURI(jQuery("#popup_instagram_image_number").val())}else{if(bwg_check_instagram_gallery_input(e,s))return!1;if(!bwg_check_gallery_empty(!1,!0))return!1;t="0";1==jQuery("input[name=instagram_post_gallery]:checked").val()&&(t="1");i=encodeURI(jQuery("#gallery_source").val());var r=jQuery("input[name=update_flag]:checked").val();a=encodeURI(jQuery("#autogallery_image_number").val())}jQuery("#bulk_embed").hide(),jQuery("#loading_div").show();var o=[],_={action:"addInstagramGallery",instagram_user:i,instagram_access_token:e,whole_post:t,autogallery_image_number:a,update_flag:r,async:!0};jQuery.post(bwg_ajax_url_nonce,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_slideshow_filmstrip_thumbnail_timer=!1;window.bwg_slideshow_filmstrip_thumb={};var bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_remove_lazy_loader_icon(){1==bwg_objectsL10n.lazy_load&&jQuery("img.bwg_lazyload").Lazy({afterLoad:function(){jQuery(".lazy_loader").removeClass("lazy_loader")},onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}function bwg_main_ready(e){var t=e.data("bwg");bwg_remove_lazy_loader_icon(),0<e.find(".wd_error").length&&bwg_container_loaded(t);var i=e.find(".bwg-container");if("album"===e.data("is-album")&&i.hasClass("bwg-thumbnails"))var a="thumbnails";else a=e.data("gallery-type");switch(bwg_document_ready(e),a){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(i);break;case"thumbnails_mosaic":bwg_thumbnail_mosaic(i);break;case"slideshow":bwg_slideshow_ready(t);break;case"carousel":bwg_carousel_ready(t),bwg_carousel_onload(e);break;case"image_browser":bwg_image_browser_ready(e);break;case"blog_style":bwg_blog_style_ready(e)}}function bwg_resize_search_line(){jQuery(".search_line").each(function(){var e=jQuery(this);e.width()<410?e.addClass("bwg-search-line-responsive"):e.removeClass("bwg-search-line-responsive")})}function bwg_tags_button_section_visibility(){jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this),t=e.find(".current_view").val(),i=e.find(".show_bottom_tag").val(),a=e.find(".bwg_tags_container_"+t+" .bwg_tag_button_view_container");if(a.length)var r=a[0].scrollHeight;var _=a.find(".bwg_tags_filter_buttons").outerHeight(!0),s=parseInt(2*a.find(".bwg_tags_filter_buttons").outerHeight(!0)+3);s<r?(a.css({"min-height":_,"max-height":s,overflow:"hidden"}),a.next(".bwg_tag_button_see_all").show()):(a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}),a.next(".bwg_tag_button_see_all").hide());var o=a.next().find(".see_all_tags").width()/2;a.next().find(".see_all_tags").attr("style","margin-left: -"+o+"px"),a.next().find(".see_all_tags").off("click").on("click",function(){jQuery(this).hasClass("show")?(jQuery(this).removeClass("show").addClass("hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"})):jQuery(this).hasClass("hide")&&(jQuery(this).removeClass("hide").addClass("show").html("<span>&#43;</span>"+bwg_objectsL10n.bwg_tag_see_all),a.css({"min-height":_,"max-height":s,overflow:"hidden"}))}),1==i&&(jQuery(this).find(".see_all_tags").removeClass("show").addClass("hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}))})}function bwg_slideshow_resize(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],bwg_popup_resize(bwg))})}function bwg_blog_style_resize(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)})})}function bwg_blog_style_onload(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg");jQuery("#bwg_blog_style_"+bwg);jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){if(jQuery(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").length){jQuery(".fluid-width-video-wrapper").removeAttr("style");var t=jQuery(this).parents(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").contents();jQuery(this).parents(".fluid-width-video-wrapper").replaceWith(t)}jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),bwg_container_loaded(bwg)})}function bwg_blog_style_ready(t){var e=t.data("bwg");bwg_container_loaded(e);var i=!1;t.find(".bwg_lightbox_"+e).on("click",function(){var e=jQuery(this).attr("data-image-id");if(jQuery("#bwg_blog_style_share_buttons_"+e).removeAttr("data-open-comment"),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(e,t.closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(t.attr("data-image-id"),t.closest(".bwg_container"),!0),!1});var a=window.location.hash.substring(1);a&&"-1"!=a.indexOf("bwg")&&(bwg_hash_array=a.replace("bwg","").split("/"),"<?php echo $params_array['gallery_id']; ?>"==bwg_hash_array[0]&&bwg_gallery_box(bwg_hash_array[1]))}function bwg_slideshow_focus(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]),jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-play")||bwg_play(bwg_params[bwg].data,bwg))})}function bwg_carousel_focus(){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery(".bwg_carousel_image_container_"+bwg).length&&jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-pause")&&bwg_params_carousel[bwg].carousel.start()})}function bwg_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight||jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]))})}function bwg_carousel_blur(e){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight||jQuery(".bwg_carousel_image_container_"+bwg).length&&void 0!==bwg_params_carousel[bwg]&&bwg_params_carousel[bwg].carousel.pause()})}function bwg_carousel_ready(t){bwg_params_carousel[t]=[],bwg_params_carousel[t].bwg_currentCenterNum=1,bwg_params_carousel[t].bwg_currentlyMoving=!1,bwg_params_carousel[t].data=[],jQuery("#spider_carousel_left-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.prev(),e.stopPropagation(),e.stopImmediatePropagation()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.next(),e.stopPropagation(),e.stopImmediatePropagation()}),parseInt(bwg_params_carousel[t].carousel_enable_autoplay)&&(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t)),jQuery(".bwg_carousel_play_pause_"+t).on(bwg_click,function(e){jQuery(".bwg_ctrl_btn_"+t).hasClass("bwg-icon-play")?(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.start()):(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.play),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-play bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.pause()),e.stopPropagation(),e.stopImmediatePropagation()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+t).swiperight(function(){bwg_params_carousel[t].carousel.prev()}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+t).swipeleft(function(){bwg_params_carousel[t].carousel.next()})}function bwg_carousel_resize(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");jQuery("#bwg_carousel-container"+e).length&&(bwg_carousel_params(e,!0),bwg_params_carousel[e].carousel.pause(),bwg_carousel_watermark(e),jQuery(".bwg_ctrl_btn_"+e).hasClass("bwg-icon-play")||bwg_params_carousel[e].carousel.start())})}function bwg_carousel_onload(e){var t=e.data("bwg"),i=e.find(".bwg_carousel-container"+t);i.length&&(bwg_params_carousel[t]=i.data("params"),bwg_params_carousel[t].parent_width=0,bwg_carousel_watermark(t),bwg_carousel_params(t,!1),bwg_container_loaded(t))}function bwg_carousel_params(t,e){var i=jQuery("#bwg_container1_"+t).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=1;a<bwg_params_carousel[t].carousel_r_width?r=a/bwg_params_carousel[t].carousel_r_width:a=bwg_params_carousel[t].carousel_r_width,bwg_params_carousel[t].parent_width!=a&&(bwg_params_carousel[t].parent_width=a,bwg_params_carousel[t].carousel_image_column_number>bwg_params_carousel[t].count&&(bwg_params_carousel[t].carousel_image_column_number=bwg_params_carousel[t].count),jQuery(".bwg_carousel_play_pause_"+t).css({display:parseInt(bwg_params_carousel[t].carousel_play_pause_butt)?"":"none"}),parseInt(bwg_params_carousel[t].carousel_prev_next_butt)?(jQuery("#bwg_carousel-right"+t).css({display:""}),jQuery("#bwg_carousel-left"+t).css({display:""})):(jQuery("#bwg_carousel-left"+t).css({display:"none"}),jQuery("#bwg_carousel-right"+t).css({display:"none"})),jQuery(".inner_instagram_iframe_bwg_embed_frame_"+t).each(function(){var e=jQuery(this).parent();bwg_params_carousel[t].image_height/(parseInt(e.attr("data-height"))+96)<bwg_params_carousel[t].image_width/parseInt(e.attr("data-width"))?(e.height(bwg_params_carousel[t].image_height*r),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*r),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),jQuery(".bwg_carousel_image_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:a*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*r}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel-container"+t).css({width:a,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),bwg_params_carousel[t].carousel&&!e||(e&&bwg_params_carousel[t].carousel&&bwg_params_carousel[t].carousel.pause(),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:a*r,containerHeight:bwg_params_carousel[t].image_height*r,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*r,largeFeatureHeight:bwg_params_carousel[t].image_height*r,smallFeaturePar:bwg_params_carousel[t].carousel_image_par,currentlyMoving:!1,startingFeature:bwg_params_carousel[t].bwg_currentCenterNum,featuresArray:[],timeoutVar:null,rotationsRemaining:0,autoPlay:1e3*bwg_params_carousel[t].car_inter,interval:1e3*bwg_params_carousel[t].carousel_interval,imagecount:bwg_params_carousel[t].carousel_image_column_number,bwg_number:t,enable_image_title:bwg_params_carousel[t].enable_image_title,borderWidth:0})))}function bwg_carousel_watermark(e){var t=1,i=jQuery("#bwg_container1_"+e).parent().width();if(i<bwg_params_carousel[e].carousel_r_width&&(t=i/bwg_params_carousel[e].carousel_r_width),i>=bwg_params_carousel[e].image_width)bwg_carousel_change_watermark_container(e),jQuery("#bwg_carousel_play_pause-ico_"+e).css({fontSize:bwg_params_carousel[e].carousel_play_pause_btn_size}),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:bwg_params_carousel[e].watermark_width*t,maxHeight:bwg_params_carousel[e].watermark_height*t}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:t*bwg_params_carousel[e].watermark_font_size});else{var a=bwg_params_carousel[e].image_width/t;bwg_carousel_change_watermark_container(e),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:i*bwg_params_carousel[e].watermark_width/a,maxHeight:i*bwg_params_carousel[e].watermark_height/a}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:i*bwg_params_carousel[e].watermark_font_size/a})}}function bwg_carousel_change_watermark_container(a){jQuery(".bwg_carousel"+a).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");e.length||(e=jQuery(this).find("iframe"));var t=e.width(),i=e.height();jQuery(".bwg_carousel_watermark_spun_"+a).width(t),jQuery(".bwg_carousel_watermark_spun_"+a).height(i),jQuery(".bwg_carousel_title_spun_"+a).width(t),jQuery(".bwg_carouel_title_spun_"+a).height(i),jQuery(".bwg_carousel_watermark_"+a).css({display:"none"})}})}function bwg_carousel_preload(e,t){var i=jQuery(".bwg_carousel_preload").get();t||i.reverse();var a=0;jQuery(i).each(function(){if(1<++a)return!1;jQuery(this).parent().hasClass("bwg_carousel_embed_video_"+e)||jQuery(this).parent().hasClass("bwg_embed_frame_"+e)||jQuery(this).parent().hasClass("bwg_carousel_video")?(jQuery(this).attr("src",jQuery(this).attr("data-src")),jQuery(this).on("load",function(){jQuery(this).removeClass("bwg_carousel_preload")}),jQuery(this).parent().hasClass("bwg_carousel_video")&&(jQuery(".bwg_carousel_video")[0].load(),jQuery(this).parent().parent().removeClass("bwg_carousel_preload")),jQuery(this).removeAttr("data-src")):(jQuery(this).css({"background-image":"url('"+jQuery(this).attr("data-background")+"')",height:"100%"}),jQuery(this).removeClass("bwg_carousel_preload"),jQuery(this).removeAttr("data-background"))})}function bwg_slideshow_ready(i){if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[];var e=".bwg_slideshow_filmstrip_"+i,t="bwg_slideshow_filmstrip_thumbnail_"+i;bwg_slideshow_filmstrip_thumb[t]={},bwg_slideshow_filmstrip_thumb[t].next_prev_index=0;var a=!1;2==bwg_params[i].slideshow_filmstrip_type&&(a=!0,e=".bwg_slideshow_filmstrip_fix_count_"+i),bwg_container_loaded(i);var r=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%r.length:r.length-1,r,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%r.length,r,"",i),!1});var _=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),1==bwg_params[i].slideshow_filmstrip_type&&("horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width));var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(e).bind(s,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1});var o={bwg:i,params:bwg_params[i],slideshow_filmstrip_class_name:e};if(jQuery(".bwg_slideshow_filmstrip_right_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_next(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_next(o)}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_prev(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_prev(o)}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(e).width(),i):bwg_set_filmstrip_pos(jQuery(e).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(_).on(_,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height"),"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds){var l=jQuery("#instagram-embed-"+i),n=jQuery(".bwg_embed_frame_"+i).data("height");l.hide(),instgrm.Embeds.process(),l.css({"max-height":n+"px"}).show()}}}function bwg_image_browser_resize(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery("#bwg_container1_"+e+" .image_browser_images_conteiner_"+e).attr("data-params")),bwg_image_browser(e))})}function bwg_image_browser_ready(e){var t=e.data("bwg");bwg_container_loaded(t),jQuery(".image_browser_images_conteiner_"+t).length&&(bwg_params_ib[t]=JSON.parse(jQuery(".image_browser_images_conteiner_"+t).attr("data-params")),setTimeout(function(){bwg_image_browser(t)},3))}function bwg_search_focus(e){jQuery(e).parent().find(".bwg_search_input").focus(),jQuery(e).hide()}function bwg_key_press(e){jQuery(e).parent().find(".bwg_search_reset_container").removeClass("bwg-hidden"),jQuery(e).parent().find(".bwg_search_loupe_container1").removeClass("bwg-hidden")}function bwg_all_thumnails_loaded(t){var i=0,a=jQuery(t).find("img").length;return 0==a?bwg_all_thumbnails_loaded_callback(t):jQuery(t).find("img").each(function(){var e=jQuery(this).attr("src");jQuery("<img/>").attr("src",e).on("load error",function(){++i>=a&&bwg_all_thumbnails_loaded_callback(t)})}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)}),0==a}function bwg_all_thumbnails_loaded_callback(e){jQuery(e).hasClass("bwg-thumbnails")&&!jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail(e),jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail_masonry(e),jQuery(e).hasClass("bwg-album-extended")&&bwg_album_extended(e)}function bwg_album_thumbnail(e){bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_album_extended(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("spacing"),r=jQuery(e).data("max-count"),_=parseInt(t/(2*i));_<1&&(_=1),r<_&&(_=r);var s=100/_,o=jQuery(e).find(".bwg-extended-item"),l=parseInt(o.css("margin-left")),n=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+n)+"px)"}),o.width()<i?o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(100% - "+a+"px)"}):o.width()>2*i?(o.find(".bwg-extended-item0").css({width:"calc(50% - "+a+"px)"}),o.find(".bwg-extended-item1").css({width:"calc(100% - "+(i+2*a)+"px)"})):o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(50% - "+a+"px)"}),jQuery(e).children(".bwg-extended-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item0"),i=jQuery(this).find(".bwg-item2"),a=e.data("width"),r=e.data("height");""!=a&&""!=r||(a=e.width(),r=e.height());var _=a/r;i.width()/i.height()>a/r?(i.width()>a?e.css({width:"100%",height:i.width()/_}):e.css({maxWidth:"100%",height:i.width()/_}),a=i.width(),r=i.width()/_):(i.height()>r?e.css({height:"100%",width:i.height()*_,maxWidth:"initial"}):e.css({maxHeight:"100%",width:i.height()*_,maxWidth:"initial"}),r=i.height(),a=i.height()*_),jQuery(this).find(".bwg-item2").css({marginLeft:(t.width()-a)/2,marginTop:(t.height()-r)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("max-count"),r=parseInt(t/i)+1;a<r&&(r=a);var _=100/r;jQuery(e).find(".bwg-item").css({width:_+"%"}),jQuery(e).children(".bwg-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item2"),i=jQuery(this).find(".bwg-item1"),a=0<t.width()?t.width():i.width(),r=0<t.height()?t.height():i.height(),_=e.data("width"),s=e.data("height");""!=_&&""!=s&&void 0!==_&&void 0!==s||(_=e.width(),s=e.height());var o=_/s;e.removeAttr("style"),o<a/r?(_<a?e.css({width:"100%",height:a/o}):e.css({maxWidth:"100%",height:Math.ceil(a/o)}),s=(_=a)/o):(r>e.height()?e.css({height:"100%",width:r*o,maxWidth:"initial"}):e.css({maxHeight:"100%",width:r*o,maxWidth:"initial"}),_=(s=r)*o),jQuery(this).find(".bwg-item2").css({marginLeft:(a-_)/2,marginTop:(r-s)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail_masonry(e){var t="#bwg_thumbnails_masonry_"+(bwg=jQuery(e).attr("data-bwg"));jQuery("#bwg_album_masonry_"+bwg).length&&(t="#bwg_album_masonry_"+bwg),0===jQuery(".bwg-container-temp"+bwg).length&&(jQuery(t).clone().appendTo("#bwg_container3_"+bwg).removeAttr("id").removeClass("bwg-container-"+bwg).addClass("bwg-container-temp"+bwg),jQuery(".bwg-container-temp"+bwg).empty());var a=jQuery(".bwg-container-temp"+bwg),r=jQuery(t),_=a;if(a.prepend(r.html()),_.find(".bwg-empty-item").remove(),"horizontal"==_.data("masonry-type")){var s=_.data("thumbnail-height"),o=_.data("max-count"),l=[];for(i=0;i<o;i++)l.push(0);_.find(".bwg-item").each(function(){var e=l.indexOf(Math.min.apply(Math,l));jQuery(this).css({height:s,order:e+1}),l[e]+=jQuery(this)[0].getBoundingClientRect().width});var n=Math.max.apply(Math,l);for(_.width(n),i=0;i<o;i++)l[i]<n&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:s,order:i+1,width:n-l[i]}))}else{_.removeAttr("style");n=_.width();var g=_.data("thumbnail-width"),w=_.data("thumbnail-border"),b=(_.data("thumbnail-padding"),o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<b&&(b=o);var u=_.find(".bwg-item").length;u<b&&(b=u);var d,h,m=100/b,c=[];for(i=0;i<b;i++)c.push(0);_.find(".bwg-item").each(function(){var e=c.indexOf(Math.min.apply(Math,c)),t=jQuery(this).find("img");if(jQuery(this).css({width:m+"%",order:e+1}),void 0!==t.data("src")&&-1===t.data("src").indexOf("svg")&&0<t.attr("data-width").length&&0<t.attr("data-height").length){h=parseInt(t.data("width"))/parseInt(t.data("height")),d=t.width()/h;var i=(this.querySelector("a .bwg-zoom-effect-overlay .bwg-title2")||!this.querySelector("a .bwg-title1 .bwg-title2")?0:this.querySelector("a .bwg-title1 .bwg-title2").getClientRects()[0].height)+(0<jQuery(this).find(".bwg-masonry-thumb-description").length?jQuery(this).find(".bwg-masonry-thumb-description").height():0);jQuery(this).height(Math.floor(d+i+2*w))}c[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,c);for(i=0;i<b;i++)c[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:m+"%",order:i+1,height:p-c[i]}));_.outerWidth(b*(g+2*w)),_.height(p)}if(""!=a.html()){r.outerWidth(b*(g+2*w)),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var y=a.html();r.append(y),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).data("src")&&""!=jQuery(this).data("src")&&(jQuery(this).attr("src",jQuery(this).data("src")),jQuery(this).on("load",function(){jQuery(this).removeClass("lazy_loader")}))}),a.empty().hide()}bwg_container_loaded(_.data("bwg"))}function bwg_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden"),jQuery(".bwg_container img").removeAttr("width").removeAttr("height")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),t=t*s/i,p.eq(e).height(s),p.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;p.each(function(e){row_cum_width2=b+p.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==p.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==p.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)b=0,p.each(function(e){g[e]==h&&(b+=p.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;if(0==n)for(h=0;h<=n;h++)d[h]>s&&(u[h]=1,d[h]=l);(O=[])[0]=0;var m=[],c=[];m[0]=0,c[0]=0;for(h=1;h<=n;h++)m[h]=m[0],c[h]=c[h-1]+d[h-1];p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[g[e]]),p.eq(e).height(i*u[g[e]]),p.eq(e).parent().css({top:c[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,O[g[e]]=e}),jQuery("#"+i).height(c[n]+d[n]-c[0])}else{var p,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),p.eq(e).height(i*f/t),p.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.min(Math.floor(o/(j+2*r)),p.length),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;p.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,H=i,T=0+t*(j+2*r),p.eq(e).parent().css({top:H,left:T}),k[t]+=p.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,M=0;for(z=0;z<Q;z++)C+=j,I[z]=0,p.each(function(e){v[e]==z&&(I[z]+=p.eq(e).height())}),0!=I[z]&&(E+=j/I[z],M+=j*x[z]*2*r/I[z]);var S=0;0!=E&&(S=(C+M)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(S-2*x[z]*r)/I[z]);var O,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var H=[];for(z=0;z<Q;z++)H[z]=0;(O=[])[0]=0,p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[v[e]]),p.eq(e).height(i*u[v[e]]),p.eq(e).parent().css({top:H[v[e]],left:T[v[e]]}),H[v[e]]+=i*u[v[e]]+2*r,O[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(H[0])}}function bwg_thumbnail_mosaic(e){var t=jQuery(e),i=jQuery.Deferred();if(i.done([bwg_thumbnail_mosaic_logic]).done(function(e){"1"!=e.data("mosaic-thumb-transition")&&jQuery(".bwg_mosaic_thumb_spun_"+t).css({transition:"all 0.3s ease 0s","-webkit-transition":"all 0.3s ease 0s"});var t=e.data("bwg");jQuery(".bwg_mosaic_thumbnails_"+t).css({visibility:"visible"}),jQuery(".tablenav-pages_"+t).css({visibility:"visible"}),bwg_container_loaded(t),jQuery(".bwg_mosaic_thumb_"+t).removeClass("bwg-hidden"),jQuery("#bwg_mosaic_thumbnails_div_"+t).removeClass("bwg-hidden")}),i.resolve(t),"hover"==t.attr("data-image-title")){var a=parseInt(t.attr("data-thumb-padding"))/2,r=parseInt(t.attr("data-thumb-border"))+a;bwg_mosaic_title_on_hover(t.data("bwg"),t,r)}"hover"==t.attr("data-ecommerce-icon")&&(jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseenter",function(){var e=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).width(),t=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(e);var i=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(),a=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:r+.5*t-.5*a,left:r+.5*e-.5*i,opacity:1})}),jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseleave",function(){jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:0,left:-1e4,opacity:0,padding:t.attr("data-title-margin")})}))}function bwg_mosaic_title_on_hover(t,e,i){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+t).width();jQuery(this).find(".bwg_mosaic_title_spun1_"+t).width(e),jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:1,"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})})}function bwg_mosaic_ajax(e,t){var i=0;jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("load",function(){++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100),++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)})}function bwg_add_album(){var t=!1;"1"!=bwg_objectsL10n.front_ajax&&jQuery(document).off("click",".bwg-album").on("click",".bwg-album",function(){if(!t){var e=jQuery(this).attr("data-bwg");return t=!0,setTimeout(function(){t=!1},100),bwg_ajax("gal_front_form_"+e,e,jQuery(this).attr("data-container_id"),jQuery(this).attr("data-alb_gal_id"),jQuery(this).attr("data-album_gallery_id"),jQuery(this).attr("data-def_type"),"",jQuery(this).attr("data-title")),!1}}),jQuery(".bwg_description_more").on("click",function(){jQuery(this).hasClass("bwg_more")?(jQuery(this).parent().find(".bwg_description_full").show(),jQuery(this).addClass("bwg_hide").removeClass("bwg_more"),jQuery(this).html(jQuery(this).data("hide-msg"))):(jQuery(this).parent().find(".bwg_description_full").hide(),jQuery(this).addClass("bwg_more").removeClass("bwg_hide"),jQuery(this).html(jQuery(this).data("more-msg")))})}function bwg_add_lightbox(){var i=!1;jQuery(document).on("click",".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1",function(e){e.stopPropagation(),e.preventDefault();var t=jQuery(this).closest("a");if(!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(t).attr("data-image-id"),jQuery(t).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(this).closest(".bwg_lightbox").attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1})}function bwg_filter_by_tag(e){var t,i="",a="",r=(a=jQuery(e).parent().parent().hasClass("bwg_tag_buttons_view")?jQuery(e).parent().parent():jQuery(e).parent().parent().parent()).find(".current_view").val(),_=a.find(".form_id").val(),s=a.find(".cur_gal_id").val(),o=a.find(".album_gallery_id").val(),l=a.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){i=i+jQuery(e).text()+","}),""==(i=i.slice(0,-1))&&(i=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",i),jQuery(e).parent().find(".CaptionCont .placeholder").html(i);var n=jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+s).val();t="string"==typeof n&&""!==n?n.split(","):[],"object"==typeof n&&(t=n),jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+r).val(t),bwg_select_tag(r,_,s,o,l,!1)}function bwg_document_ready(i){bwg_add_lightbox(),i.data("right-click-protection")&&bwg_disable_right_click(i),jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var e=i.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&e.length)for(var t=0;t<e[0].length;t++)void 0===e[0][t].attributes.selected&&(e[0][t].selected=!1);e.length&&(e.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),e.off("change").on("change",function(){bwg_filter_by_tag(this)})),bwg_search_tag_init(i);var a=i.find(".cur_gal_id").val(),r=i.find(".current_view").val(),_=i.find(".bwg_tags_container_"+r+" .bwg_tag_button_view_container"),s=i.find("#bwg_tag_id_"+a),o=parseInt(2*_.find(".bwg_tags_filter_buttons").outerHeight(!0));_.length&&(_.find(".bwg_tags_filter_buttons").off("click").on("click",function(){if(!jQuery(this).hasClass("active")){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1"),""==s.val()?s.val(jQuery(this).val()):s.val(s.val()+","+jQuery(this).val()),bwg_filter_by_tag(this)}return!1}),_.find(".bwg_all_tags").off("click").on("click",function(){return jQuery(this).hasClass("active")||(s.val(""),bwg_filter_by_tag(this)),!1}),""!=s.val()&&_.find(".bwg_all_tags").removeClass("active"),s.val().split(",").forEach(function(t){_.find(".bwg_tags_filter_buttons").each(function(){if(jQuery(this).val()==t){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1")}})}),bwg_tags_button_section_visibility());var l=i.find(".bwg_order");l.length&&l.SumoSelect({triggerChangeCombined:!0,forceCustomRendering:!0}),jQuery(this).find("search_placeholder_title").hide(),""==jQuery(this).find(".bwg_search_input").val()&&jQuery(this).find("search_placeholder_title").show(),jQuery(".bwg_thumbnail .bwg_search_container_2").focusout(function(e){""==jQuery(this).find(".bwg_search_input").val()&&(jQuery(this).find(".search_placeholder_title").show(),jQuery(this).find(".bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery(this).find(".bwg_search_reset_container").addClass("bwg-hidden"))}),jQuery(".search_tags").on("sumo:opened",function(){var e=jQuery(this).parents(".bwg_container").height(),t=jQuery(this).parents(".bwg_container").find(".wd_error").length,i=jQuery(this).parents(".bwg_container").find(".SumoSelect>.optWrapper>.options");void 0!==i&&(e-50<i.height()&&!t&&i.css("max-height",e-50));0==jQuery(this).parent().find("ul li").length&&(jQuery(".no-match").html(bwg_objectsL10n.bwg_tag_no_match),jQuery(".no-match").show())}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:closed",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-up opened"),jQuery(this).find("label i").addClass("bwg-icon-angle-down closed")}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:opened",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-down closed"),jQuery(this).find("label i").addClass("bwg-icon-angle-up opened")}),bwg_add_album();var n=window.location.hash.substring(1);if(n&&"-1"!=n.indexOf("bwg")){bwg_hash_array=n.replace("bwg","").split("/");var g=jQuery(".bwg_container");g&&bwg_gallery_box(bwg_hash_array[1],g,!1,bwg_hash_array[0])}bwg_resize_search_line()}function bwg_search_tag_init(e){jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var t=e.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&t.length)for(var i=0;i<t[0].length;i++)void 0===t[0][i].attributes.selected&&(t[0][i].selected=!1);t.length&&(t.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),t.off("change").on("change",function(){bwg_filter_by_tag(this)}))}function bwg_clear_search_input(e){if("1"!=bwg_objectsL10n.front_ajax)jQuery("#bwg_search_input_"+e).val(""),jQuery("#bwg_search_container_1_"+e+" .bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery("#bwg_search_container_1_"+e+" .bwg_search_reset_container").addClass("bwg-hidden");else{var t=window.location.href,i=bwg_remove_url_parameter("bwg_search_"+e,t,t);window.location.replace(i)}}function bwg_check_search_input_enter(e,t){return"Enter"!=t.key||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,n,g,w){if("1"!=bwg_objectsL10n.front_ajax||!0===n){jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),"function"==typeof bwg_scroll_load_action&&jQuery(window).off("scroll",bwg_scroll_load_action),jQuery(".bwg_thumbnail .search_tags").off("sumo:closed");var b=jQuery("#"+t).data("ajax-url"),u=0;if(void 0===n)n=!1;var d,h=jQuery("#page_number_"+i).val(),m=jQuery("#bwg_search_input_"+i).val(),c={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var y=JSON.parse(p);if("back"==r){y.splice(-1,1);var f=y.slice(-1)[0];r=f.id,h=f.page,c["action_"+i]="back"}else"numeric"===n||s?(y.splice(-1,1),y.push({id:r,page:h,search:m})):(y.push({id:r,page:1}),h=1);c["bwg_album_breadcrumb_"+i]=JSON.stringify(y)}if(c["bwg-preview-type"]=jQuery("#"+t).data("gallery-type"),c.gallery_type=jQuery("#"+t).data("gallery-type"),c.gallery_id=jQuery("#"+t).data("gallery-id"),c.tag=jQuery("#"+t).data("tag"),c.album_id=jQuery("#"+t).data("album-id"),c.theme_id=jQuery("#"+t).data("theme-id"),c.shortcode_id=jQuery("#"+t).data("shortcode-id"),c.bwg=i,c.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(h=1),void 0===o||""==o)o="";if(void 0===g||""==g)g="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(void 0===w)w=!0;if(1==w&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),c["page_number_"+i]=h,c["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),c["album_gallery_id_"+i]=r,c["type_"+i]=_,c["title_"+i]=o,c["description_"+i]=g,c["sortImagesByValue_"+i]=l,c["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(c["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==c["bwg_album_breadcrumb_"+i]){var j=JSON.parse(c["bwg_album_breadcrumb_"+i]);jQuery.each(j,function(e,t){c["bwg_search_"+i]="",r==t.id&&(c["bwg_search_"+i]=t.search)})}var Q=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val();return d="string"==typeof Q&&""!==Q?Q.split(","):[],"object"==typeof Q&&(d=Q),c["bwg_tag_id_"+a]=d,jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),jQuery.ajax({type:"POST",url:b,data:c,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,u=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===n?(a=="bwg_thumbnails_mosaic_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).find("#"+a).html()):a=="bwg_album_compact_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-album-thumbnails").html()):a=="bwg_thumbnails_masonry_"+i?jQuery(".bwg-container-temp"+i).append(jQuery(e).closest(".bwg-container-"+i).html()):jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).html()),jQuery(".bwg_nav_cont_"+i).html(jQuery(e).closest(".bwg_nav_cont_"+i).html())):jQuery("#bwg_container3_"+i).html(e),bwg_remove_lazy_loader_icon()},complete:function(){jQuery("div[id^='bwg_container1_'] img").each(function(){null!=jQuery(this).attr("data-lazy-src")&&""!=jQuery(this).attr("data-lazy-src")?jQuery(this).attr("src",jQuery(this).attr("data-lazy-src")):null!=jQuery(this).attr("data-src")&&""!=jQuery(this).attr("data-src")&&jQuery(this).attr("src",jQuery(this).attr("data-src"))}),jQuery(".blog_style_image_buttons_conteiner_"+i).find(jQuery(".bwg_blog_style_img_"+i)).on("load",function(){jQuery(".bwg_blog_style_img_"+i).closest(jQuery(".blog_style_image_buttons_conteiner_"+i)).show()}),""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val(d),d.forEach(function(t){jQuery(".bwg_tags_container_"+i+" .bwg_tags_filter_buttons").each(function(){var e=parseInt(2*jQuery(this).outerHeight(!0));jQuery(this).val()==t&&(jQuery(this).addClass("active"),e<jQuery(this).position().top&&jQuery(".bwg_tags_container_"+i+" .show_bottom_tag").val("1"),jQuery(".bwg_tags_container_"+i+" .bwg_all_tags").removeClass("active"))})}),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(jQuery("#bwg_container1_"+i));var e=jQuery("#bwg_container1_"+i).data("gallery-type");if(jQuery("#bwg_container1_"+i+" .bwg-album-thumbnails").length){bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i)}else{switch(e){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(".bwg-container-"+i);break;case"slideshow":bwg_slideshow_ready(i);break;case"carousel":bwg_carousel_ready(i),bwg_carousel_onload(jQuery("#bwg_container1_"+i));break;case"image_browser":bwg_image_browser_ready(jQuery("#bwg_container1_"+i));break;case"blog_style":bwg_blog_style_ready(jQuery("#bwg_container1_"+i))}bwg_mosaic_ajax(i,u)}jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(c["bwg_search_"+i]),""!=jQuery("#bwg_search_input_"+i).val()?(jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").hide(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_reset_container").show(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_loupe_container1").show()):jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").show();jQuery("#bwg_container2_"+i+" .cur_gal_id").val();""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+i).val(d)}}),!1}if("back"===r)return-1==document.referrer.indexOf(window.location.host)?(str=jQuery(location).attr("href"),void window.location.replace(str.substring(0,str.indexOf("type_0")))):void window.history.back();var v=jQuery("#bwg_search_input_"+i).val(),x=jQuery(".bwg_tags_container_"+i+" .cur_gal_id").val(),k=window.location.href,z="",C=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+x).val();if(jQuery(".bwg_tags_container_"+i).parent().hasClass("bwg_tag_select_view")&&(C=C.toString()),"#"==k.substr(-1)&&(k=k.slice(0,-1)),""!==v&&void 0!==v?!1!==(z=bwg_add_url_parameter(z=bwg_remove_url_parameter("page_number_"+i,k),"bwg_search_"+i,v))&&(k=z):!1!==(z=bwg_remove_url_parameter("bwg_search_"+i,k))&&(k=z),void 0!==l&&""!==l&&!1!==(z=bwg_add_url_parameter(k,"sort_by_"+i,l))&&(k=z),null!=C&&0<C.length){var I="",E=C.split(",");jQuery.each(E,function(e){var t=",";e===E.length-1&&(t=""),I+=E[e]+t}),""!==I&&!1!==(z=bwg_add_url_parameter(k,"filter_tag_"+i,I))&&(k=z)}else!1!==(z=bwg_remove_url_parameter("filter_tag_"+i,z))&&(k=z);window.location.href=k}function bwg_add_url_parameter(e,t,i){var a=new RegExp("([?&])"+t+"=.*?(&|$)","i"),r=-1!==e.indexOf("?")?"&":"?";return e.match(a)?e.replace(a,"$1"+t+"="+i+"$2"):e+r+t+"="+i}function bwg_remove_url_parameter(e,t){var i=t.split("?"),a=i[0]+"?",r="";if(void 0!==i[1]&&(r=i[1]),""===r)return t;var _,s,o=decodeURIComponent(r).split("&");for(s=0;s<o.length;s++)(_=o[s].split("="))[0]!=e&&(a=a+_[0]+"="+_[1]+"&");return a.substring(0,a.length-1)}function bwg_select_tag(e,t,i,a,r,_){_&&jQuery(".bwg_tags_container_"+e+" #bwg_tag_id_"+i).val(""),bwg_ajax(t,e,i,a,"",r,1,"")}function bwg_cube(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(void 0!==g&&""!==g){b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration;bwg_params[g].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(g))return bwg_fallback(o,l,n,g);if(!bwg_testBrowser_cssTransforms3d(g))return bwg_fallback3d(o,l,n,g);function d(){if(jQuery(o).removeAttr("style"),jQuery(l).removeAttr("style"),jQuery(".bwg_slider"+u).removeAttr("style"),jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),jQuery(".bwg_image_info").show(),jQuery(o).html(""),b){bwg_change_watermark_container(g),bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].data,t=bwg_params[g].event_stack}else{e="";gallery_box_data.bwg_trans_in_progress=!1;t=gallery_box_data.event_stack}if(void 0!==t&&0<t.length){var i=t[0].split("-");t.shift(),bwg_change_image(i[0],i[1],e,!0,g)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g),jQuery(".bwg_slide_bg_"+g).css("perspective",1e3)):(gallery_box_data.bwg_trans_in_progress=!0,jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_slide_bg").css("perspective",1e3)),jQuery(o).css({transform:"translateZ("+e+"px)",backfaceVisibility:"hidden"}),jQuery(l).css({opacity:1,backfaceVisibility:"hidden",transform:"translateY("+i+"px) translateX("+t+"px) rotateY("+r+"deg) rotateX("+a+"deg)"}),jQuery(".bwg_slider"+u).css({transform:"translateZ(-"+e+"px)",transformStyle:"preserve-3d"}),setTimeout(function(){jQuery(".bwg_slider"+u).css({transition:"all "+w+"ms ease-in-out",transform:"translateZ(-"+e+"px) rotateX("+_+"deg) rotateY("+s+"deg)"})},20),jQuery(".bwg_slider"+u).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(d)),0==w&&d()}function bwg_cubeH(e,t,i,a){var r=jQuery(e).width()/2;"right"==i?bwg_cube(r,r,0,0,90,0,-90,e,t,i,a):"left"==i&&bwg_cube(r,-r,0,0,-90,0,90,e,t,i,a)}function bwg_cubeV(e,t,i,a){var r=jQuery(e).height()/2;"right"==i?bwg_cube(r,0,-r,90,0,-90,0,e,t,i,a):"left"==i&&bwg_cube(r,0,r,-90,0,90,0,e,t,i,a)}function bwg_fade(e,t,i,a){var r,_=!1;function s(){jQuery(".bwg_image_info").show(),bwg_change_watermark_container(a),_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1}r=void 0!==a&&""!==a?(_=!0,bwg_params[a].bwg_trans_in_progress=!0,bwg_params[a].bwg_transition_duration):(gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.bwg_transition_duration),_?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+a).removeClass("bwg_slideshow_thumb_active_"+a).addClass("bwg_slideshow_thumb_deactive_"+a),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_thumb_deactive_"+a).addClass("bwg_slideshow_thumb_active_"+a),jQuery(".bwg_slideshow_dots_"+a).removeClass("bwg_slideshow_dots_active_"+a).addClass("bwg_slideshow_dots_deactive_"+a),jQuery("#bwg_dots_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_dots_deactive_"+a).addClass("bwg_slideshow_dots_active_"+a)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active")),bwg_testBrowser_cssTransitions()?(jQuery(t).css("transition","opacity "+r+"ms linear"),jQuery(e).css("transition","opacity "+r+"ms linear"),jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),jQuery(t).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(s))):(jQuery(e).animate({opacity:0,"z-index":1},r),jQuery(t).animate({opacity:1,"z-index":2},{duration:r,complete:function(){_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),s()}}),jQuery(e).fadeTo(r,0),jQuery(t).fadeTo(r,1)),0==r&&s()}function bwg_grid(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(event_stack=void 0!==g&&""!==g?(b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration,bwg_params[g].event_stack):(w=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.event_stack),!bwg_testBrowser_cssTransitions())return bwg_fallback(o,l,n);b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"));var d=w/(e+t);var h=jQuery(o).find("img"),m=jQuery(o).find("figure"),c=(jQuery(o).find("iframe").css("opacity",0),jQuery('<span style="display: block;" />').addClass("bwg_grid"+u));jQuery(o).prepend(c);var p,y,f,j,Q,v,x,k,z,C,I,E=jQuery(".bwg_slide_bg"+u),M=h.width(),S=h.height(),O=E.width(),T=E.height(),H=Math.floor(O/e),L=Math.floor(T/t),A=O-e*H,B=Math.ceil(A/e),W=T-t*L,D=Math.ceil(W/t),R=0,F=Math.ceil((jQuery(".bwg_slide_bg"+u).width()-h.width())/2),N=void 0===h.attr("src")?"":h.attr("src");a="min-auto"===(a="auto"===a?O:a)?-O:a,r="min-auto"===(r="auto"===r?T:r)?-T:r;for(var P=0;P<e;P++){var U=0,V=Math.floor((jQuery(".bwg_slide_bg"+u).height()-h.height())/2),q=H;if(0<A){var J=B<=A?B:A;q+=J,A-=J}for(var G=0;G<t;G++){var Y=L,$=W;0<$&&(Y+=J=D<=$?D:W,$-=J),c.append((p=q,y=Y,f=U,j=V,Q=R,v=F,x=N,k=M,z=S,C=g,void 0,I=(P+G)*d,jQuery('<span class="bwg_gridlet'+u+'" />').css({display:"block",width:p,height:y,top:f,left:Q,backgroundImage:'url("'+x+'")',backgroundColor:b?jQuery(".bwg_slideshow_image_wrap_"+C).css("background-color"):jQuery(".spider_popup_wrap").css("background-color"),backgroundRepeat:"no-repeat",backgroundPosition:v+"px "+j+"px",backgroundSize:k+"px "+z+"px",transition:"all "+w+"ms ease-in-out "+I+"ms",transform:"none"}))),U+=Y,V-=Y}F-=q,R+=q}var X=c.children().last();function K(){if(jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),h.css("opacity",1),m.css("opacity",1),c.remove(),b){bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].event_stack,t=bwg_params[g].data}else{gallery_box_data.bwg_trans_in_progress=!1;e=gallery_box_data.event_stack,t=""}if(jQuery(".bwg_image_info").show(),jQuery(o).html(""),void 0!==e&&0<e.length){var i=e[0].split("-");e.shift(),bwg_change_image(i[0],i[1],t,!0,g)}b?bwg_change_watermark_container(g):bwg_change_watermark_container()}c.show(),h.css("opacity",0),m.css("opacity",0),c.children().first().addClass("rs-top-left"),c.children().last().addClass("rs-bottom-right"),c.children().eq(t-1).addClass("rs-bottom-left"),c.children().eq(-t).addClass("rs-top-right"),setTimeout(function(){c.children().css({opacity:s,transform:"rotate("+i+"deg) translateX("+a+"px) translateY("+r+"px) scale("+_+")"})},1),jQuery(l).css("opacity",1),jQuery(X).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(K)),0==w&&K()}function bwg_sliceH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,8,0,r,0,1,0,e,t,i,a)}function bwg_sliceV(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(10,1,0,0,r,1,0,e,t,i,a)}function bwg_slideV(e,t,i,a){if("right"==i)var r="auto";else if("left"==i)r="min-auto";bwg_grid(1,1,0,0,r,1,1,e,t,i,a)}function bwg_slideH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,1,0,r,0,1,1,e,t,i,a)}function bwg_scaleOut(e,t,i,a){bwg_grid(1,1,0,0,0,1.5,0,e,t,i,a)}function bwg_scaleIn(e,t,i,a){bwg_grid(1,1,0,0,0,.5,0,e,t,i,a)}function bwg_blockScale(e,t,i,a){bwg_grid(8,6,0,0,0,.6,0,e,t,i,a)}function bwg_kaleidoscope(e,t,i,a){bwg_grid(10,8,0,0,0,1,0,e,t,i,a)}function bwg_fan(e,t,i,a){if("right"==i)var r=45,_=100;else if("left"==i)r=-45,_=-100;bwg_grid(1,10,r,_,0,1,0,e,t,i,a)}function bwg_blindV(e,t,i,a){bwg_grid(1,8,0,0,0,.7,0,e,t,"",a)}function bwg_blindH(e,t,i,a){bwg_grid(10,1,0,0,0,.7,0,e,t,"",a)}function bwg_random(e,t,i,a){var r=["sliceH","sliceV","slideH","slideV","scaleOut","scaleIn","blockScale","kaleidoscope","fan","blindH","blindV"];this["bwg_"+r[Math.floor(Math.random()*r.length)]](e,t,i,a)}function bwg_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_slideshow":"",i=void 0!==bwg_params[e]&&2==bwg_params[e].slideshow_filmstrip_type?"_filmstrip_fix_count":"_filmstrip",a=void 0!==e&&""!==e?"_"+e:"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).width(),_=jQuery(".bwg"+t+i+a).width();else r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).height(),_=jQuery(".bwg"+t+i+a).height();r<_?(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).hide()):(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).show())}function bwg_slideshow_filmstrip_fix_dimension(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e&&void 0!==bwg_params[e].outerWidth_or_outerHeight?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e&&void 0!==bwg_params[e].left_or_top?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_slideshow_filmstrip_fix_count(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_resize_slideshow_filmstrip_fix_count(e){var _=e.bwg,t=e.parent_width,i=e.params,a=i.filmstrip_direction,r=i.data,s=i.filmstrip_thumb_margin_hor,o=jQuery(window).width()<=767&&5<i.slideshow_thumbnails_count,l=o?5:i.slideshow_thumbnails_count,n="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_container_"+_,g="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_,w="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_,b="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_,u="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_image_container_"+_,d=jQuery(u).data("filmstrip-position"),h=(jQuery(u).data("filmstrip-size"),i.slideshow_filmstrip_rl_btn_size);if(jQuery("#bwg_container1_"+_).css({width:"100%"}),jQuery("#bwg_container1_"+_+" #bwg_container2_"+_).css({width:t}),"undefined"==typeof resize_in_progress||!1===resize_in_progress){window.resize_in_progress=!0,void 0!==m&&clearTimeout(m);var m=setTimeout(function(){resize_in_progress=!1;var e={};"bottom"==d||"top"==d?e.left=0:e.top=0,jQuery(w).css(e);var t="horizontal"==a?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+_).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+_).css({display:"none"})},500)}if(bwg_resize_instagram_post(_),bwg_change_watermark_container(_),"horizontal"==a){var c=i.image_height/i.image_width,p=t-40,y=Math.round(c*p),f=(p-s*l)/l,j=Math.round(c*f);jQuery(n).css({width:t,height:j}),jQuery(g).css({width:p,height:j}),jQuery(b).css({width:f,height:j}),jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);i*=r=Math.max(f/i,j/a),a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(w).css({width:f*r.length+s*r.length,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:t*i.image_height/i.image_width}),(Q={width:t,height:t*(i.image_height/i.image_width)-j})[d]=j,jQuery(".bwg_slideshow_image_container_"+_).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+t+"px !important; max-height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+t+"px !important; height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),j<h&&(h=j),jQuery(n).find(".bwg-icon-angle-left").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":h})}else{var Q,v=t*i.image_height/i.image_width;c=i.image_width/i.image_height,y=v-40,p=Math.round(c*y),j=(y-s*l)/l,f=Math.round(c*j);jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);r=Math.max(f/i,j/a),i*=r,a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(n).css({width:f,height:v}),jQuery(g).css({width:f,height:y}),jQuery(w).css({width:f,height:j*r.length+s*r.length}),jQuery(b).css({width:f,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:v}),(Q={width:t-f,height:v})[d]=f,jQuery(u).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+(t-f)+"px !important; max-height:"+v+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+(t-f)+"px !important; height:"+v+"px !important;"}),f<h&&(h=f),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":h})}o&&(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"))}function bwg_resize_slideshow_filmstrip_fix_dimension(e){var t=e.bwg,i=e.parent_width,a=e.params,r=a.filmstrip_direction;jQuery(".bwg_slideshow_image_wrap_"+t).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+t).css({height:i*(a.image_height/a.image_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({width:i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({height:i*a.image_height/a.image_width-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+t).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[t].filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; max-height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+t).css({cssText:"width: "+(i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(t),bwg_change_watermark_container(t),"horizontal"==r?(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+t).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({height:i*a.image_height/a.image_width}),jQuery(".bwg_slideshow_filmstrip_"+t).css({height:i*a.image_height/a.image_width-40}))}function bwg_calculate_slideshow_filmstrip_thumbnail_size(e){var t=e.bwg,i=e.params,a=i.slideshow_filmstrip_width;if(2==i.slideshow_filmstrip_type){var r="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_fix_count_"+t+" .bwg_slideshow_filmstrip_thumbnail_"+t;a=(i.left_or_top,"width"==i.width_or_height?jQuery(r).width():jQuery(r).height())}return parseFloat(a)}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display: '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=jQuery(".bwg_embed_frame"),h=jQuery(".bwg_slideshow_image_container_"+r).width(),m=jQuery(".bwg_slideshow_image_container_"+r).height(),c=i[t].image_width,p=i[t].image_height,y=bwg_resizing_ratio(c,p,h,m);d.attr("data-width",h),d.attr("data-height",m);var f=y.width,j=y.height;f<j?f-=109:f+=109,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":h,"data-height":m,"data-instagram-width":c,"data-instagram-height":p,style:"width:"+f+"px; height:"+j+"px; vertical-align:middle; display:inline-block; position:relative;"})}else u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen","data-max-width":b,"data-max-height":w,style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var Q="";"open_lightbox"==bwg_params[r].thumb_click_action?Q+=' class="bwg_lightbox" data-image-id="'+i[t].id+'" data-elementor-open-lightbox="no"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(Q+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+Q+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),1==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_dimension(r):2==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_count(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox(),"EMBED_OEMBED_INSTAGRAM_POST"==i[t].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").css({"max-height":j+"px","min-width":f+"px !important"}),jQuery(".instagram-media").show())}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t=".bwg_slideshow_filmstrip_"+e;2==bwg_params[e].slideshow_filmstrip_type&&(t=".bwg_slideshow_filmstrip_fix_count_"+e);var i=jQuery("#bwg_container1_"+e).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=bwg_params[e].data;if(a>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var _="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,s="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);if(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:_}),jQuery(t).css({cssText:s}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" :hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size}),2==bwg_params[e].slideshow_filmstrip_type){var o=bwg_params[e].filmstrip_direction,l="#bwg_container1_"+e+" #bwg_container2_"+e;jQuery(l).removeAttr("style");var n=l+" .bwg_slideshow_filmstrip_container_"+e,g=bwg_params[e].slideshow_filmstrip_rl_btn_size,w=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).width();"horizontal"==o&&(w=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).height());var b="horizontal"==o?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+e).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+e).css({display:b}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+e).css({display:b}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+e).css({display:"none"}),w<g?(g=w,jQuery(n).find(".bwg-icon-angle-left").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":g}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":g})):(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"));var u=l+" .bwg_slideshow_filmstrip_thumbnails_"+e;jQuery(u).removeAttr("style"),jQuery(u+" .bwg_slideshow_filmstrip_thumbnail_"+e).each(function(e,t){jQuery(t).attr("style",jQuery(t).attr("data-style")),jQuery(t).find("img").attr("style",jQuery(t).attr("data-style"))});var d="#bwg_container1_"+e+" #bwg_container2_"+e+" .bwg_slideshow_image_container_"+e,h=(jQuery(d).data("filmstrip-position"),jQuery(d).data("filmstrip-size"));jQuery(d).css({filmstrip_position:h});var m="bwg_slideshow_filmstrip_thumbnail_"+e;window.bwg_slideshow_filmstrip_thumb[m].next_prev_index&&(window.bwg_slideshow_filmstrip_thumb[m].next_prev_index=0)}}else 1==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_dimension({bwg:e,params:bwg_params[e],parent_width:a-40}),2==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_count({bwg:e,params:bwg_params[e],parent_width:a}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:a}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:a*(bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:a*(bwg_params[e].watermark_width/bwg_params[e].image_width),maxHeight:a*(bwg_params[e].watermark_height/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:a*(bwg_params[e].watermark_font_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*a*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*a*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});r[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){var t=!1;if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){t=!0;var i=jQuery("#instagram-embed-"+e),a=jQuery(".bwg_slideshow_embed_"+e),r=jQuery(".bwg_embed_frame_"+e),_=void 0!==a.width()?a.width():jQuery(".bwg_slideshow_embed_"+e).width(),s=void 0!==a.height()?a.height():jQuery(".bwg_slideshow_embed_"+e).height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=!0;i=jQuery(".instagram-media"),r=jQuery(".bwg_embed_frame"),_=jQuery(".bwg_image_container").width(),s=jQuery(".bwg_image_container").height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container()}if(!0===t){var n=bwg_resizing_ratio(o,l,_,s);r.attr("data-width",_),r.attr("data-height",s);var g=n.width,w=n.height;g<w?g-=109:g+=109,r.width(g),r.height(w),i.css({"max-height":w+"px","min-width":g+"px !important"})}}function bwg_play(t,i){if(void 0!==i&&""!==i)t=bwg_params[i].data;void 0!==i&&""!==i?(window.clearInterval(window["bwg_playInterval"+i]),window["bwg_playInterval"+i]=setInterval(function(){var e=1;1==bwg_params[i].enable_slideshow_shuffle&&(e=Math.floor((t.length-1)*Math.random()+1)),bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),(parseInt(jQuery("#bwg_current_image_key_"+i).val())+e)%t.length,t,"",i)},1e3*bwg_params[i].slideshow_interval)):(window.clearInterval(gallery_box_data.bwg_playInterval),gallery_box_data.bwg_playInterval=setInterval(function(){jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")||(void 0===t||void 0!==t[parseInt(jQuery("#bwg_current_image_key").val())+1]?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):1==gallery_box_data.enable_loop&&bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0))},1e3*gallery_box_data.slideshow_interval))}function bwg_image_browser(e){if(jQuery("#bwg_embed_frame_16x9_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery("#bwg_embed_frame_16x9_"+e).height(.5625*jQuery("#bwg_embed_frame_16x9_"+e).width()),jQuery("#bwg_embed_frame_instapost_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").length){var t=jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").contents();jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").replaceWith(t)}jQuery(".bwg_embed_frame_instapost_"+e).height((jQuery(".bwg_embed_frame_instapost_"+e).width()-16)*jQuery(".bwg_embed_frame_instapost_"+e).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+e).attr("data-width")+96);var i=jQuery(".image_browser_images_"+e).width();i<=108?jQuery(".paging-input_"+e).css("display","none"):(i<=200?(jQuery(".paging-input_"+e).css("margin","0% 0% 0% 0%"),jQuery(".paging-input_"+e).css("display","inline")):i<=580?(jQuery(".paging-input_"+e).css("display","inline"),jQuery(".tablenav-pages_"+e+" a").css("font-size","13px"),jQuery(".paging-input_"+e).css("margin","0% 7% 0% 7%")):(jQuery(".tablenav-pages_"+e+" a").css("font-size","15px"),jQuery(".paging-input_"+e).css("margin","0% 14% 0% 14%"),jQuery(".paging-input_"+e).css("display","inline")),jQuery(".tablenav-pages_"+e+" .next-page").css("margin","0% 0% 0% 0%"),jQuery(".tablenav-pages_"+e+" .prev-page").css("margin","0% 0% 0% 0%"))}function bwg_disable_right_click(e){e.bind("contextmenu",function(){return!1}),e.css("webkitTouchCallout","none")}function bwg_resizing_ratio(e,t,i,a){var r=[i/e,a/t];return{width:e*(r=Math.min(r[0],r[1])),height:t*r}}function bwg_slideshow_filmstrip_next(e){var t=e.bwg,i=e.params,a=e.slideshow_filmstrip_class_name,r=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),_="bwg_slideshow_filmstrip_thumbnail_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,n="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,g="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-parseInt(i.filmstrip_thumb_margin_hor)+r)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-parseInt(i.filmstrip_thumb_margin_hor)+r},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[_].next_prev_index=bwg_slideshow_filmstrip_thumb[_].next_prev_index+1}function bwg_slideshow_filmstrip_prev(e){var t=e.bwg,i=e.params,a=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),r="bwg_slideshow_filmstrip_thumbnail_"+t,_="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,n="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[r].next_prev_index=bwg_slideshow_filmstrip_thumb[r].next_prev_index-1}jQuery(function(){function i(e){bwg_slideshow_blur(e),bwg_carousel_blur(e),0<jQuery(".bwg_play_pause").length&&window.clearInterval(gallery_box_data.bwg_playInterval)}function a(e){e&&bwg_main_ready(e),bwg_slideshow_focus(),bwg_carousel_focus(),jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")&&bwg_play(gallery_box_data.data)}var r=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(r=!0),!r){var e=jQuery(this);if(e[0].offsetHeight)var t=0;else t=1;setInterval(function(){e[0].offsetHeight?1==t&&(t=0,a(e)):0==t&&i(!(t=1))},200)}}),r||jQuery(window).focus(function(){a()}).blur(function(){i(!0)})}),jQuery(window).on("resize",function(){setTimeout(function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),bwg_tags_button_section_visibility(),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
1
+ var bwg_current_filmstrip_pos,total_thumbnail_count,key,startPoint,endPoint,bwg_image_info_pos,filmstrip_width,preloadCount,filmstrip_thumbnail_width,filmstrip_thumbnail_height,addthis_share,lightbox_comment_pos,bwg_transition_duration,bwg_playInterval,isPopUpOpened=!1,bwg_overflow_initial_value=!1,bwg_overflow_x_initial_value=!1,bwg_overflow_y_initial_value=!1;function gallery_box_ready(){filmstrip_thumbnail_width=jQuery(".bwg_filmstrip_thumbnail").width(),filmstrip_thumbnail_height=jQuery(".bwg_filmstrip_thumbnail").height(),1==gallery_box_data.open_with_fullscreen?(filmstrip_width=jQuery(window).width(),filmstrip_height=jQuery(window).height()):(filmstrip_width=jQuery(".bwg_filmstrip_container").width(),filmstrip_height=jQuery(".bwg_filmstrip_container").height()),preloadCount="horizontal"==gallery_box_data.filmstrip_direction?parseInt(filmstrip_width/filmstrip_thumbnail_width)+gallery_box_data.preload_images_count:parseInt(filmstrip_height/filmstrip_thumbnail_height)+gallery_box_data.preload_images_count,total_thumbnail_count=jQuery(".bwg_filmstrip_thumbnail").length,key=parseInt(jQuery("#bwg_current_image_key").val()),startPoint=0,endPoint=key+preloadCount,jQuery(function(){bwg_load_visible_images(key,preloadCount,total_thumbnail_count),jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var e=jQuery("#bwg_rated").attr("data-params");void 0!==e&&bwg_rating((e=JSON.parse(e)).current_rate,e.current_rate_count,e.current_avg_rating,e.current_image_key)}),1==gallery_box_data.is_pro&&1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&(addthis_share={url:gallery_box_data.share_url}),lightbox_comment_pos=gallery_box_data.lightbox_comment_pos,bwg_image_info_pos=jQuery(".bwg_ctrl_btn_container").length?jQuery(".bwg_ctrl_btn_container").height():0,bwg_transition_duration=gallery_box_data.slideshow_interval<4*gallery_box_data.slideshow_effect_duration&&0!=gallery_box_data.slideshow_interval?1e3*gallery_box_data.slideshow_interval/4:1e3*gallery_box_data.slideshow_effect_duration,gallery_box_data.bwg_transition_duration=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!1,(jQuery("#spider_popup_wrap").width()>=jQuery(window).width()||jQuery("#spider_popup_wrap").height()>=jQuery(window).height())&&parseInt(jQuery(".spider_popup_close").css("right"))<0&&jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"),window.clearInterval(bwg_playInterval),bwg_current_filmstrip_pos=gallery_box_data.current_pos,jQuery(document).on("keydown",function(e){jQuery("#bwg_name").is(":focus")||jQuery("#bwg_email").is(":focus")||jQuery("#bwg_comment").is(":focus")||jQuery("#bwg_captcha_input").is(":focus")||("ArrowRight"==e.key?parseInt(jQuery("#bwg_current_image_key").val())==gallery_box_data.data.length-1?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):"ArrowLeft"==e.key?0==parseInt(jQuery("#bwg_current_image_key").val())?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),gallery_box_data.data.length-1):bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())-1):"Escape"==e.key?spider_destroypopup(1e3):"Space"==e.key&&jQuery(".bwg_play_pause").trigger("click"))}),jQuery(window).resize(function(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||bwg_popup_resize())});var r=gallery_box_data.image_width,_=gallery_box_data.image_height;if(1==gallery_box_data.is_pro){1==gallery_box_data.enable_addthis&&gallery_box_data.addthis_profile_id&&jQuery(".at4-share-outer").show(),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form");var e=gallery_box_data.data,t=gallery_box_data.current_image_key;jQuery(".bwg_image_hits span").html(++e[t].hit_count);var i=window.location.hash;i&&"-1"!=i.indexOf("bwg")||(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+gallery_box_data.current_image_id))}1==gallery_box_data.image_right_click&&(jQuery(".bwg_image_wrap").bind("contextmenu",function(e){return!1}),jQuery(".bwg_image_wrap").css("webkitTouchCallout","none")),jQuery("#spider_popup_wrap").bind("touchmove",function(e){e.preventDefault()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#spider_popup_wrap .bwg_image_wrap").swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),bwg_reset_zoom();var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";jQuery("#spider_popup_left").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+gallery_box_data.data.length-1)%gallery_box_data.data.length),!1}),jQuery("#spider_popup_right").on(a,function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),(parseInt(jQuery("#bwg_current_image_key").val())+1)%gallery_box_data.data.length),!1}),-1!=navigator.appVersion.indexOf("MSIE 10")||-1!=navigator.appVersion.indexOf("MSIE 9")?setTimeout(function(){bwg_popup_resize()},1):bwg_popup_resize(),jQuery(".bwg_watermark").css({display:"none"}),setTimeout(function(){bwg_change_watermark_container()},500),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isNativelySupported()||jQuery(".bwg_fullscreen").hide()),"horizontal"==gallery_box_data.filmstrip_direction?(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()-gallery_box_data.image_filmstrip_height),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width())):(jQuery(".bwg_image_container").height(jQuery(".bwg_image_wrap").height()),jQuery(".bwg_image_container").width(jQuery(".bwg_image_wrap").width()-gallery_box_data.image_filmstrip_width)),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments,.bwg_ecommerce_panel, .bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}});var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(".bwg_filmstrip").on(s,function(e){var t=window.event||e,i=(t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta,a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());0<i?jQuery(".bwg_filmstrip_left").trigger(a?"touchend":"click"):jQuery(".bwg_filmstrip_right").trigger(a?"touchend":"click")}),jQuery(".bwg_filmstrip_right").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),"left"==gallery_box_data.left_or_top?"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().left>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({left:-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").width()-jQuery(".bwg_filmstrip").width())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500)):(jQuery(".bwg_filmstrip_thumbnails").position().top>=-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&(jQuery(".bwg_filmstrip_left").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top<-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width+gallery_box_data.all_images_right_left_space))?jQuery(".bwg_filmstrip_thumbnails").animate({top:-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height()-gallery_box_data.all_images_right_left_space)},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_filmstrip_thumbnails").position().left==-(jQuery(".bwg_filmstrip_thumbnails").height()-jQuery(".bwg_filmstrip").height())&&jQuery(".bwg_filmstrip_right").css({opacity:.3})},500))}),"left"==gallery_box_data.left_or_top?jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().left<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().left>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({left:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({left:jQuery(".bwg_filmstrip_thumbnails").position().left+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().left&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}):jQuery(".bwg_filmstrip_left").on(a,function(){jQuery(".bwg_filmstrip_thumbnails").stop(!0,!1),jQuery(".bwg_filmstrip_thumbnails").position().top<0&&(jQuery(".bwg_filmstrip_right").css({opacity:1}),jQuery(".bwg_filmstrip_thumbnails").position().top>-(gallery_box_data.filmstrip_thumb_right_left_space+gallery_box_data.image_filmstrip_width)?jQuery(".bwg_filmstrip_thumbnails").animate({top:0},500,"linear"):jQuery(".bwg_filmstrip_thumbnails").animate({top:jQuery(".bwg_filmstrip_thumbnails").position().top+gallery_box_data.image_filmstrip_width+gallery_box_data.filmstrip_thumb_right_left_space},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_filmstrip_thumbnails").position().top&&jQuery(".bwg_filmstrip_left").css({opacity:.3})},500)}),"width"==gallery_box_data.width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").width(),"",gallery_box_data):bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip").height(),"",gallery_box_data),jQuery(".bwg_info").on(a,function(){if("none"==jQuery(".bwg_image_info_container1").css("display")){jQuery(".bwg_image_info_container1").css("display","table-cell"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_hide_info);jQuery(".bwg_ctrl_btn_container").length&&jQuery(".bwg_ctrl_btn_container").height();jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set()}else jQuery(".bwg_image_info_container1").css("display","none"),jQuery(".bwg_info").attr("title",bwg_objectsL10n.bwg_show_info)}),jQuery(".bwg_rate").on(a,function(){"none"==jQuery(".bwg_image_rate_container1").css("display")?(jQuery(".bwg_image_rate_container1").css("display","table-cell"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_hide_rating)):(jQuery(".bwg_image_rate_container1").css("display","none"),jQuery(".bwg_rate").attr("title",bwg_objectsL10n.bwg_show_rating))}),jQuery(".bwg_zoom").on(a,function(){var e=["mousemove","touchmove"];jQuery("figure.bwg_popup_image").each(function(){var i=jQuery(this);i.hasClass("zoom")?jQuery.each(e,function(e,t){i.removeClass("zoom"),i.off(t)}):jQuery.each(e,function(e,t){i.addClass("zoom"),i.on(t,function(e){var t,i,a,r;window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause");var _=e.target,s=_.getBoundingClientRect();e.targetTouches&&(a=e.targetTouches[0].clientX-s.left,r=e.targetTouches[0].clientY-s.top),t=e.offsetX?e.offsetX:e.targetTouches?a:_.offsetHeight,i=e.offsetY?e.offsetY:e.targetTouches?r:_.offsetWidth,x=t/_.offsetWidth*100,y=i/_.offsetHeight*100,_.parentNode.style.backgroundPosition=x+"% "+y+"%"})})})}),jQuery(".bwg_comment, .bwg_comments_close_btn").on(a,function(){bwg_comment()}),jQuery(".bwg_ecommerce, .bwg_ecommerce_close_btn").on(a,function(){bwg_ecommerce()}),jQuery(".bwg_toggle_container").on(a,function(){var e="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-up":"bwg-icon-caret-down",t="top"==gallery_box_data.lightbox_ctrl_btn_pos?"bwg-icon-caret-down":"bwg-icon-caret-up";jQuery(".bwg_toggle_container i").hasClass(e)?(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:0},500):jQuery(".bwg_image_rate").animate({bottom:0},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:0},500):jQuery(".bwg_image_hit").animate({bottom:0},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:"-"+jQuery(".bwg_ctrl_btn_container").height()},500).addClass("closed"),jQuery(".bwg_toggle_container").animate({top:0},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+t)}}))):(gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_rate_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_rate_pos||jQuery(".bwg_image_rate").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_rate").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),gallery_box_data.enable_image_filmstrip&&"bottom"==gallery_box_data.lightbox_filmstrip_pos||"bottom"!=gallery_box_data.lightbox_ctrl_btn_pos||"bottom"!=gallery_box_data.lightbox_hit_pos?gallery_box_data.enable_image_filmstrip&&"top"==gallery_box_data.lightbox_filmstrip_pos||"top"!=gallery_box_data.lightbox_ctrl_btn_pos||"top"!=gallery_box_data.lightbox_hit_pos||jQuery(".bwg_image_hit").animate({top:jQuery(".bwg_ctrl_btn_container").height()},500):jQuery(".bwg_image_hit").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},500),"bottom"==gallery_box_data.lightbox_ctrl_btn_pos?(jQuery(".bwg_ctrl_btn_container").animate({bottom:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({bottom:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}})):(jQuery(".bwg_ctrl_btn_container").animate({top:0},500).removeClass("closed"),jQuery(".bwg_toggle_container").animate({top:jQuery(".bwg_ctrl_btn_container").height()},{duration:500,complete:function(){jQuery(".bwg_toggle_container i").attr("class","bwg_toggle_btn "+e)}}))),bwg_info_position(!0)});var o=window.innerHeight;jQuery(".bwg_resize-full").on(a,function(){bwg_resize_full()}),jQuery(".bwg_fullscreen").on(a,function(){jQuery(".bwg_watermark").css({display:"none"});var e,t=0;if((jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(t=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen))if(jQuery.fullscreen.isFullScreen())jQuery.fullscreen.exit(),e=o,jQuery(window).width()>gallery_box_data.image_width&&(r=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(_=gallery_box_data.image_height),gallery_box_data.open_with_fullscreen&&(r=jQuery(window).width(),_=e),jQuery("#spider_popup_wrap").on("fscreenclose",function(){jQuery("#spider_popup_wrap").css({width:r,height:_,left:"50%",top:"50%",marginLeft:-r/2,marginTop:-_/2,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:r-t}),jQuery(".bwg_image_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:r-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:_-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:r-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(r-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:_-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(_-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:_-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_fullscreen),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")});else{jQuery("#spider_popup_wrap").fullscreen();var i=screen.width,a=screen.height;jQuery("#spider_popup_wrap").css({width:i,height:a,left:0,top:0,margin:0,zIndex:1e5}),jQuery(".bwg_image_wrap").css({width:i-t}),jQuery(".bwg_image_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:i-t-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:a-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),bwg_resize_instagram_post(),bwg_change_watermark_container(),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)},500),jQuery(".bwg_filmstrip").css({width:i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(i-("horizontal"==gallery_box_data.filmstrip_direction?t:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction)?"comment_container_width":0}),jQuery(".bwg_filmstrip").css({height:a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(a-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:a-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").hide(),jQuery(".bwg_fullscreen").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.bwg_exit_fullscreen),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}return!1}),jQuery(".bwg_play_pause").on(a,function(){jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")?(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")):(window.clearInterval(bwg_playInterval),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_play),jQuery(".bwg_play_pause").attr("class","bwg-icon-play bwg_ctrl_btn bwg_play_pause"))}),gallery_box_data.open_with_autoplay&&(bwg_play(gallery_box_data.data),jQuery(".bwg_play_pause").attr("title",bwg_objectsL10n.bwg_pause),jQuery(".bwg_play_pause").attr("class","bwg-icon-pause bwg_ctrl_btn bwg_play_pause")),gallery_box_data.open_with_fullscreen&&bwg_open_with_fullscreen(),jQuery(".bwg_popup_image").removeAttr("width"),jQuery(".bwg_popup_image").removeAttr("height"),jQuery(window).focus(function(){jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(gallery_box_data.data)}),jQuery(window).blur(function(){event_stack=[],window.clearInterval(bwg_playInterval)});gallery_box_data.lightbox_ctrl_btn_pos;1==gallery_box_data.open_ecommerce&&setTimeout(function(){bwg_ecommerce()},400),1==gallery_box_data.open_comment&&bwg_comment()}function spider_createpopup(e,t,a,r,_,s,o,l){e=e.replace(/&#038;/g,"&"),isPopUpOpened||(isPopUpOpened=!0,spider_isunsupporteduseragent()||(bwg_overflow_initial_value=jQuery("html").css("overflow"),bwg_overflow_x_initial_value=jQuery("html").css("overflow-x"),bwg_overflow_y_initial_value=jQuery("html").css("overflow-y"),jQuery("html").attr("style","overflow:hidden !important;"),jQuery("#bwg_spider_popup_loading_"+t).show(),jQuery("#spider_popup_overlay_"+t).css({display:"block"}),jQuery.ajax({type:"GET",url:e,success:function(e){var t=jQuery('<div id="spider_popup_wrap" class="spider_popup_wrap" style=" width:'+a+"px; height:"+r+"px; margin-top:-"+r/2+"px; margin-left: -"+a/2+'px; ">'+e+"</div>").hide().appendTo("body");if(gallery_box_ready(),spider_showpopup(s,o,t,_,l),"undefined"!=typeof addthis){jQuery(".addthis-smartlayers").show();var i=setInterval(function(){void 0!==addthis.layers.refresh&&(clearInterval(i),addthis.layers.refresh())},100)}},beforeSend:function(){},complete:function(){}})))}function spider_showpopup(e,t,i,a,r){var _=gallery_box_data.data,s=parseInt(jQuery("#bwg_current_image_key").val());if(void 0!==_[s]&&(isPopUpOpened=!0,-1<_[s].filetype.indexOf("EMBED_")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").prop("complete")?bwg_first_image_load(i,r):jQuery("#spider_popup_wrap .bwg_popup_image_spun img").on("load error",function(){bwg_first_image_load(i,r)}),"EMBED_OEMBED_INSTAGRAM_POST"==_[s].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds)){instgrm.Embeds.process();var o=parseInt(jQuery("#bwg_image_container").height());jQuery(".bwg_embed_frame .instagram-media").css({"max-height":o+"px"})}}function bwg_first_image_load(e,t){e.show(),""==gallery_box_data.data[key].alt&&""==gallery_box_data.data[key].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show();var i=jQuery(".bwg_ctrl_btn_container").height();"bottom"==t?jQuery(".bwg_toggle_container").css("bottom",i+"px"):"top"==t&&jQuery(".bwg_toggle_container").css("top",i+"px"),jQuery(".bwg_spider_popup_loading").hide(),1==gallery_box_data.preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key").val())),bwg_load_filmstrip(),bwg_info_height_set()}function spider_isunsupporteduseragent(){return!window.XMLHttpRequest}function spider_destroypopup(e){jQuery(".addthis-smartlayers").hide(),null!=document.getElementById("spider_popup_wrap")&&(void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&jQuery.fullscreen.isFullScreen()&&jQuery.fullscreen.exit(),"undefined"!=typeof enable_addthis&&enable_addthis&&jQuery(".at4-share-outer").hide(),setTimeout(function(){jQuery(".spider_popup_wrap").remove(),jQuery(".bwg_spider_popup_loading").css({display:"none"}),jQuery(".spider_popup_overlay").css({display:"none"}),jQuery(document).off("keydown"),!1!==bwg_overflow_initial_value&&jQuery("html").css("overflow",bwg_overflow_initial_value),!1!==bwg_overflow_x_initial_value&&jQuery("html").css("overflow-x",bwg_overflow_x_initial_value),!1!==bwg_overflow_y_initial_value&&jQuery("html").css("overflow-y",bwg_overflow_y_initial_value)},20)),isPopUpOpened=!1;var t=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),i=document.querySelector('meta[name="viewport"]');t&&i&&(i.content="width=device-width, initial-scale=1");var a=jQuery(document).scrollTop();bwg_objectsL10n.is_pro&&history.pushState(history.state,null,window.location.origin+window.location.pathname+window.location.search),jQuery(document).scrollTop(a),void 0!==gallery_box_data.bwg_playInterval&&clearInterval(gallery_box_data.bwg_playInterval)}function get_ajax_pricelist(){var e={};return jQuery(".add_to_cart_msg").html(""),e.ajax_task="display",e.image_id=jQuery("#bwg_popup_image").attr("image_id"),jQuery("#ecommerce_ajax_loading").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_opacity_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_loading_div").css("width",jQuery(".bwg_ecommerce_panel").css("width")),jQuery("#ecommerce_loading_div").css("height",jQuery(".bwg_ecommerce_panel").css("height")),jQuery("#ecommerce_opacity_div").css("display","block"),jQuery("#ecommerce_loading_div").css("display","table-cell"),jQuery.ajax({type:"POST",url:jQuery("#bwg_ecommerce_form").attr("action"),data:e,success:function(e){jQuery(".pge_tabs li a").on("click",function(){return jQuery(".pge_tabs_container > div").hide(),jQuery(".pge_tabs li").removeClass("pge_active"),jQuery(jQuery(this).attr("href")).show(),jQuery(this).closest("li").addClass("pge_active"),jQuery("[name=type]").val(jQuery(this).attr("href").substr(1)),!1});var t=jQuery(e).find(".manual").html();jQuery(".manual").html(t);var i=jQuery(e).find(".downloads").html();jQuery(".downloads").html(i);var a=jQuery(e).find(".pge_options").html();jQuery(".pge_options").html(a);var r=jQuery(e).find(".pge_add_to_cart").html();jQuery(".pge_add_to_cart").html(r)},beforeSend:function(){},complete:function(){jQuery("#ecommerce_opacity_div").css("display","none"),jQuery("#ecommerce_loading_div").css("display","none")}}),!1}function spider_ajax_save(e){var t={};return t.bwg_name=jQuery("#bwg_name").val(),t.bwg_comment=jQuery("#bwg_comment").val(),t.bwg_email=jQuery("#bwg_email").val(),t.bwg_captcha_input=jQuery("#bwg_captcha_input").val(),t.ajax_task=jQuery("#ajax_task").val(),t.image_id=jQuery("#image_id").val(),t.comment_id=jQuery("#comment_id").val(),jQuery("#ajax_loading").css("height",jQuery(".bwg_comments").css("height")),jQuery("#opacity_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#opacity_div").css("height",jQuery(".bwg_comments").css("height")),jQuery("#loading_div").css("width",jQuery(".bwg_comments").css("width")),jQuery("#loading_div").css("height",jQuery(".bwg_comments").css("height")),document.getElementById("opacity_div").style.display="",document.getElementById("loading_div").style.display="table-cell",jQuery.ajax({type:"POST",url:jQuery("#"+e).attr("action"),data:t,success:function(e){jQuery(".bwg_comments").mCustomScrollbar("destroy");var t=jQuery(e).find(".bwg_comments").html();jQuery(".bwg_comments").html(t)},beforeSend:function(){},complete:function(){document.getElementById("opacity_div").style.display="none",document.getElementById("loading_div").style.display="none",jQuery(".bwg_comments").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments_close_btn").click(bwg_comment),bwg_captcha_refresh("bwg_captcha")}}),!1}function spider_rate_ajax_save(i,e){var t={};return t.image_id=jQuery("#"+i+" input[name='image_id']").val(),t.rate=void 0!==e?e:jQuery("#"+i+" input[name='score']").val(),t.ajax_task=jQuery("#rate_ajax_task").val(),jQuery.ajax({type:"POST",url:jQuery("#"+i).attr("action"),data:t,success:function(e){var t=jQuery(e).find("#"+i).html();jQuery("#"+i).html(t)},beforeSend:function(){},complete:function(){}})}function spider_set_input_value(e,t){document.getElementById(e)&&(document.getElementById(e).value=t)}function spider_form_submit(e,t){document.getElementById(t)&&document.getElementById(t).submit(),e.preventDefault?e.preventDefault():e.returnValue=!1}function spider_check_required(e,t){return""==jQuery("#"+e).val()&&(alert(t+" "+bwg_objectsL10n.bwg_field_required),jQuery("#"+e).attr("style","border-color: #FF0000;"),jQuery("#"+e).focus(),!0)}function comment_check_privacy_policy(){var e=jQuery("#bwg_submit");e.removeClass("bwg-submit-disabled"),e.removeAttr("disabled"),jQuery("#bwg_comment_privacy_policy").is(":checked")||(e.addClass("bwg-submit-disabled"),e.attr("disabled","disabled"))}function spider_check_email(e){if(""!=jQuery("#"+e).val())return-1==jQuery("#"+e).val().replace(/^\s+|\s+$/g,"").search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/)&&(alert(bwg_objectsL10n.bwg_mail_validation),!0)}function bwg_captcha_refresh(e){document.getElementById(e+"_img")&&document.getElementById(e+"_input")&&(srcArr=document.getElementById(e+"_img").src.split("&r="),document.getElementById(e+"_img").src=srcArr[0]+"&r="+Math.floor(100*Math.random()),document.getElementById(e+"_img").style.display="inline-block",document.getElementById(e+"_input").value="")}function bwg_play_instagram_video(e,t){jQuery(e).parent().find("video").each(function(){jQuery(this).get(0).paused?(jQuery(this).get(0).play(),jQuery(e).children().hide()):(jQuery(this).get(0).pause(),jQuery(e).children().show())})}function bwg_add_comment(){var t=jQuery("#bwg_comment_form"),e=t.attr("action"),i={ajax_task:"add_comment"};return i.comment_name=t.find("#bwg_name").val(),i.comment_email=t.find("#bwg_email").val(),i.comment_text=t.find("#bwg_comment").val(),i.comment_captcha=t.find("#bwg_captcha_input").val(),i.popup_enable_captcha=t.find("#bwg_popup_enable_captcha").val(),i.privacy_policy=t.find("#bwg_comment_privacy_policy").is(":checked")?1:0,i.comment_image_id=jQuery("#bwg_popup_image").attr("image_id"),i.comment_moderation=t.find("#bwg_comment_moderation").val(),jQuery(".bwg_spider_ajax_loading").hide(),jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){jQuery(".bwg_comment_error").text(""),1==e.error?jQuery.each(e.error_messages,function(e,t){t&&jQuery(".bwg_comment_"+e+"_error").text(t)}):(t.find("#bwg_comment").val(""),jQuery(".bwg_comment_waiting_message").hide(),0==e.published&&jQuery(".bwg_comment_waiting_message").show(),""!=e.html_comments_block&&jQuery("#bwg_added_comments").html(e.html_comments_block).show())},beforeSend:function(){jQuery(".bwg_spider_ajax_loading").show()},complete:function(){0<t.find("#bwg_comment_privacy_policy").length&&(t.find("#bwg_comment_privacy_policy").prop("checked",!1),comment_check_privacy_policy()),bwg_captcha_refresh("bwg_captcha"),jQuery(".bwg_spider_ajax_loading").hide()},error:function(){}}),!1}function bwg_remove_comment(t){var e=jQuery("#bwg_comment_form").attr("action"),i={ajax_task:"delete_comment"};return i.id_image=jQuery("#bwg_popup_image").attr("image_id"),i.id_comment=t,jQuery.ajax({url:e,type:"POST",dataType:"json",data:i,success:function(e){0==e.error&&jQuery("#bwg_comment_block_"+t).fadeOut("slow").remove()},beforeSend:function(){},complete:function(){},error:function(){}}),!1}function bwg_gallery_box(e,t,i,a){jQuery(".bwg-validate").each(function(){jQuery(this).on("keypress change",function(){jQuery(this).parent().next().find(".bwg_comment_error").html("")})}),void 0===i&&(i=!1);var r,_=t.data("bwg");r=t.find(".bwg-container").data("lightbox-url")?t.find(".bwg-container").data("lightbox-url"):t.data("lightbox-url");var s=t.find(".cur_gal_id").val(),o=jQuery("#bwg_tag_id_"+s).val();o=o||0;var l=1==i?"&open_ecommerce=1":"",n=jQuery("#bwg_search_input_"+_).val(),g=jQuery("#bwg_order_"+_).val()?"&filtersortby="+jQuery("#bwg_order_"+_).val():"";n=n||"",void 0!==a&&(r+="&gallery_id="+a);var w="",b=jQuery("#bwg_blog_style_share_buttons_"+e).attr("data-open-comment");void 0!==b&&!1!==b&&(w="&open_comment=1"),spider_createpopup(r+"&bwg_random_seed="+jQuery("#bwg_random_seed_"+_).val()+"&image_id="+e+"&filter_tag="+o+l+w+"&filter_search_name="+n+g,_,t.data("popup-width"),t.data("popup-height"),1,"testpopup",5,t.data("buttons-position"))}function bwg_change_image_lightbox(e,a,r,t){if(jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),bwg_current_key=gallery_box_data.bwg_current_key,""==gallery_box_data.data[a].alt&&""==gallery_box_data.data[a].description?jQuery(".bwg_info").hide():jQuery(".bwg_info").show(),jQuery(".bwg_image_info").css("height","auto"),setTimeout(function(){bwg_info_height_set(),jQuery(".bwg_image_description").height()>jQuery(".bwg_image_info").height()&&jQuery(".mCSB_container").hasClass("mCS_no_scrollbar")&&jQuery(".bwg_image_info").mCustomScrollbar("destroy"),jQuery(".bwg_image_info").hasClass("mCustomScrollbar")||void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_image_info").mCustomScrollbar({scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})},200),jQuery("#spider_popup_left").show(),jQuery("#spider_popup_right").show(),jQuery(".bwg_image_info").hide(),0==gallery_box_data.enable_loop&&(a==parseInt(r.length)-1&&jQuery("#spider_popup_right").hide(),0==a&&jQuery("#spider_popup_left").hide()),1==gallery_box_data.ecommerceACtive&&1==gallery_box_data.enable_image_ecommerce)if(0==gallery_box_data.data[a].pricelist)jQuery(".bwg_ecommerce").hide();else{jQuery(".bwg_ecommerce").show(),jQuery(".pge_tabs li").hide(),jQuery("#downloads").hide(),jQuery("#manual").hide();var i=gallery_box_data.data[a].pricelist_sections.split(",");if(i)if(jQuery("#"+i[0]).show(),jQuery("[name=type]").val(i[0]),1<i.length)for(jQuery(".pge_tabs").show(),k=0;k<i.length;k++)jQuery("#"+i[k]+"_li").show();else jQuery(".pge_tabs").hide();else jQuery("[name=type]").val("")}if(jQuery("#bwg_image_container").find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#bwg_image_container").find("video").each(function(){jQuery(this).trigger("pause")}),void 0===r&&(r=gallery_box_data.data),void 0!==r[a]&&void 0!==r[e]){if(jQuery(".bwg_play_pause").length&&!jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&bwg_play(r),t||jQuery("#bwg_current_image_key").val(a),gallery_box_data.bwg_trans_in_progress)return void gallery_box_data.event_stack.push(e+"-"+a);var _="right";if(bwg_current_key>a)_="left";else if(bwg_current_key==a)return;jQuery(".bwg_image_count").html(r[a].number),jQuery(".bwg_watermark").css({display:"none"}),"width"==gallery_box_data.width_or_height?bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").width()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width):"height"==gallery_box_data.width_or_height&&(bwg_current_filmstrip_pos=a*(jQuery(".bwg_filmstrip_thumbnail").height()+2+2*gallery_box_data.lightbox_filmstrip_thumb_border_width)),gallery_box_data.bwg_current_key=a,bwg_objectsL10n.is_pro&&(location.replace("#bwg"+gallery_box_data.gallery_id+"/"+r[a].id),history.replaceState(void 0,void 0,"#bwg"+gallery_box_data.gallery_id+"/"+r[a].id)),jQuery("#bwg_rate_form input[name='image_id']").val(r[a].id),spider_set_input_value("rate_ajax_task","save_hit_count"),spider_rate_ajax_save("bwg_rate_form"),gallery_box_data.popup_enable_rate&&(jQuery("#bwg_star").attr("data-score",r[a].avg_rating),jQuery("#bwg_star").removeAttr("title"),r[a].cur_key=a,bwg_rating(r[a].rate,r[a].rate_count,r[a].avg_rating,a)),jQuery(".bwg_image_hits span").html(++r[a].hit_count),jQuery("#bwg_popup_image").attr("image_id",r[a].id),jQuery(".bwg_image_title").html(jQuery("<span />").html(r[a].alt).text()),jQuery(".bwg_image_description").html(jQuery("<span />").html(r[a].description).text()),jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+a).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_image_info").css("opacity",1),""==r[a].alt.trim()&&""==r[a].description.trim()&&jQuery(".bwg_image_info").css("opacity",0),"none"!=jQuery(".bwg_image_info_container1").css("display")?jQuery(".bwg_image_info_container1").css("display","table-cell"):jQuery(".bwg_image_info_container1").css("display","none"),"none"!=jQuery(".bwg_image_rate_container1").css("display")?jQuery(".bwg_image_rate_container1").css("display","table-cell"):jQuery(".bwg_image_rate_container1").css("display","none");var s=2==jQuery(".bwg_popup_image_spun").css("zIndex")?".bwg_popup_image_spun":".bwg_popup_image_second_spun",o=".bwg_popup_image_second_spun"==s?".bwg_popup_image_spun":".bwg_popup_image_second_spun",l=-1<r[a].filetype.indexOf("EMBED_"),n=-1<r[a].filetype.indexOf("INSTAGRAM_POST"),g=-1<r[a].filetype.indexOf("INSTAGRAM_VIDEO"),w=-1!==jQuery.inArray(r[a].filetype,["EMBED_OEMBED_YOUTUBE_VIDEO","EMBED_OEMBED_VIMEO_VIDEO","EMBED_OEMBED_FACEBOOK_VIDEO","EMBED_OEMBED_DAILYMOTION_VIDEO"]),b=jQuery(s).height(),u=jQuery(s).width(),d='<span class="bwg_popup_image_spun1" style="display: '+(l?"block":"table")+'; width: inherit; height: inherit;"><span class="bwg_popup_image_spun2" style="display:'+(l?"block":"table-cell")+'; vertical-align: middle;text-align: center;height: 100%;">';if(l){if(jQuery("#bwg_download").addClass("bwg-hidden"),d+='<span class="bwg_popup_embed bwg_popup_watermark" style="display: '+(w?"block":"table")+'; table-layout: fixed; height: 100%;">'+(g?'<div class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)" ><div class="bwg_inst_play"></div></div>':" "),n){var h=jQuery(".instagram-media"),m=jQuery(".bwg_embed_frame"),c=jQuery(".bwg_image_container").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),p=jQuery(".bwg_image_container").height()-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),y=r[a].image_width,f=r[a].image_height,j=bwg_resizing_ratio(y,f,c,p);m.attr("data-width",c),m.attr("data-height",p);var Q=j.width,v=j.height;Q<v?Q-=109:Q+=109,d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame","data-width":c,"data-height":p,"data-instagram-width":y,"data-instagram-height":f,style:"width:"+Q+"px; height:"+v+"px; vertical-align:middle; display:inline-block; position:relative;"}),h.css({"max-height":v+"px","min-width":Q+"px !important"})}else d+=spider_display_embed(r[a].filetype,r[a].image_url,r[a].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen",style:"display:"+(w?"block":"table-cell")+"; width:inherit; height:inherit; vertical-align:middle;"});d+="</span>"}else{jQuery(".bwg-loading").removeClass("bwg-hidden"),jQuery("#bwg_download").removeClass("bwg-hidden");var x="'"+(gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()).split("?bwg")[0]+"'";gallery_box_data.popup_enable_zoom&&(d+='<figure style="max-height: '+b+"px; max-width: "+u+"px; background-image: url("+x+'); background-repeat: no-repeat" class="bwg_popup_image bwg_popup_watermark" alt="'+r[a].alt+'" />'),d+='<img style="max-height: '+b+"px; max-width: "+u+'px;" class="bwg_popup_image bwg_popup_watermark" src="'+gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(r[a].image_url)).text()+'" alt="'+r[a].alt+'" />'}function z(){gallery_box_data.preload_images&&bwg_preload_images(a),window["bwg_"+gallery_box_data.bwg_image_effect](s,o,_),jQuery(s).find(".bwg_fb_video").each(function(){jQuery(this).attr("src","")}),l?jQuery("#bwg_fullsize_image").attr("href",decodeURIComponent(r[a].image_url)):(jQuery("#bwg_fullsize_image").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].image_url)),jQuery("#bwg_download").attr("href",gallery_box_data.site_url+decodeURIComponent(r[a].thumb_url).replace("/thumb/","/.original/")));var e=decodeURIComponent(r[a].image_url).split("/");jQuery("#bwg_download").attr("download",e[e.length-1].replace(/\?bwg=(\d+)$/,""));var t=encodeURIComponent(gallery_box_data.bwg_share_url)+"="+r[a].id+encodeURIComponent("#bwg"+gallery_box_data.gallery_id+"/")+r[a].id;if(l)var i=encodeURIComponent(r[a].thumb_url);else i=gallery_box_data.bwg_share_image_url+encodeURIComponent(encodeURIComponent(r[a].pure_image_url));i=i.replace(/%252F|%25252F/g,"%2F"),void 0!==addthis_share&&(addthis_share.url=t),jQuery("#bwg_facebook_a").attr("href","https://www.facebook.com/sharer/sharer.php?u="+t),jQuery("#bwg_twitter_a").attr("href","https://twitter.com/intent/tweet?url="+t),jQuery("#bwg_pinterest_a").attr("href","http://pinterest.com/pin/create/button/?s=100&url="+t+"&media="+i+"&description="+r[a].alt+"%0A"+r[a].description),jQuery("#bwg_tumblr_a").attr("href","https://www.tumblr.com/share/photo?source="+i+"&caption="+r[a].alt+"&clickthru="+t),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(jQuery(".bwg_comments .mCSB_container").css("top","0"),jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form")),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(0==r[a].pricelist?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce),jQuery(".spider_popup_close_fullscreen").show()):get_ajax_pricelist()),void 0!==jQuery().mCustomScrollbar&&jQuery.isFunction(jQuery().mCustomScrollbar)&&jQuery(".bwg_comments").mCustomScrollbar({advanced:{updateOnContentResize:!0}}),jQuery(".bwg_comments .mCSB_scrollTools").hide(),gallery_box_data.enable_image_filmstrip&&bwg_slideshow_filmstrip_fix_dimension(),bwg_resize_instagram_post()}if(gallery_box_data.popup_enable_zoom?d+="</figure></span></span>":d+="</span></span>",jQuery(o).html(d),jQuery(o).find("img").on("load error",function(){jQuery(".bwg-loading").addClass("bwg-hidden")}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:u,maxHeight:b,height:"auto"}),l)z();else jQuery(o).find("img").one("load",function(){z()}).each(function(){this.complete&&jQuery(this).load()});"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").show())}}function bwg_preload_images_lightbox(e){for(var t=gallery_box_data.data,i=t.length,a=0==gallery_box_data.preload_images_count||gallery_box_data.preload_images_count>=i?i:gallery_box_data.preload_images_count,r=0,_=1;r<a;_++){var s=1;do{var o=(e+_*s+i)%i;if(void 0!==t[o])-1<t[o].filetype.indexOf("EMBED_")||jQuery("<img/>").attr("src",gallery_box_data.site_url+jQuery("<span />").html(decodeURIComponent(t[o].image_url)).text());s*=-1,r++}while(1!=s)}}function bwg_popup_sidebar_open(e){var t=gallery_box_data.lightbox_comment_width,i=gallery_box_data.lightbox_comment_pos;if(t>jQuery(window).width()){if(t=jQuery(window).width(),e.css({width:t}),jQuery(".spider_popup_close_fullscreen").hide(),jQuery(".spider_popup_close").hide(),jQuery(".bwg_ctrl_btn").hasClass("bwg-icon-pause")){var a=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase());jQuery(".bwg_play_pause").trigger(a?"touchend":"click")}}else jQuery(".spider_popup_close_fullscreen").show();"left"==i?e.animate({left:0},100):e.animate({right:0},100)}function bwg_comment(){if(jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","-1"),jQuery(".bwg_comment_wrap").css("z-index","25"),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)),jQuery(".bwg_comment_container").hasClass("bwg_open"))"1"==jQuery(".bwg_comment_container").attr("data-play-status")&&jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-play").addClass("bwg-icon-pause").attr("title",bwg_objectsL10n.bwg_pause),bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments),jQuery(".spider_popup_close_fullscreen").show();else{jQuery(".bwg_play_pause").hasClass("bwg-icon-pause")?jQuery(".bwg_comment_container").attr("data-play-status","1"):jQuery(".bwg_comment_container").attr("data-play-status","0"),jQuery(".bwg_ctrl_btn.bwg_play_pause").removeClass("bwg-icon-pause").addClass("bwg-icon-play").attr("title",bwg_objectsL10n.bwg_play),bwg_popup_sidebar_open(jQuery(".bwg_comment_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_open"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_hide_comments);var e=parseInt(jQuery("#bwg_current_image_key").val());void 0!==gallery_box_data.current_image_key&&0!=gallery_box_data.data[e].comment_count&&(jQuery("#bwg_added_comments").show(),spider_set_input_value("ajax_task","display"),spider_set_input_value("image_id",jQuery("#bwg_popup_image").attr("image_id")),spider_ajax_save("bwg_comment_form"))}jQuery(".bwg_comments").mCustomScrollbar("update",{scrollInertia:150,theme:"dark-thick",advanced:{updateOnContentResize:!0}})}function bwg_ecommerce(){jQuery(".bwg_watermark").css({display:"none"}),jQuery(".bwg_ecommerce_wrap").css("z-index","25"),jQuery(".bwg_comment_wrap").css("z-index","-1"),jQuery(".bwg_comment_container").hasClass("bwg_open")&&(bwg_popup_sidebar_close(jQuery(".bwg_comment_container")),jQuery(".bwg_comment_container").attr("class","bwg_comment_container bwg_close"),jQuery(".bwg_comment").attr("title",bwg_objectsL10n.bwg_show_comments)),jQuery(".bwg_ecommerce_container").hasClass("bwg_open")?(bwg_popup_sidebar_close(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_hide_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_close"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_show_ecommerce)):(bwg_popup_sidebar_open(jQuery(".bwg_ecommerce_container")),bwg_animate_image_box_for_show_sidebar(),jQuery(".bwg_ecommerce_container").attr("class","bwg_ecommerce_container bwg_open"),jQuery(".bwg_ecommerce").attr("title",bwg_objectsL10n.bwg_hide_ecommerce),get_ajax_pricelist())}function bwg_popup_sidebar_close(e){var t=parseInt(e.css("borderRightWidth"));t||(t=0),"left"==lightbox_comment_pos?e.animate({left:-e.width()-t},100):"right"==lightbox_comment_pos&&e.animate({right:-e.width()-t},100)}function bwg_animate_image_box_for_hide_sidebar(){"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:0,width:jQuery("#spider_popup_wrap").width()},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:0,width:jQuery("#spider_popup_wrap").width()},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({width:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)):"height"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").animate({height:jQuery(".spider_popup_wrap").width()},100),jQuery(".bwg_filmstrip").animate({height:jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100)),bwg_set_filmstrip_pos(jQuery(".spider_popup_wrap").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),jQuery(".spider_popup_close_fullscreen").show(100)}function bwg_animate_image_box_for_show_sidebar(){var e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width();"left"==lightbox_comment_pos?jQuery(".bwg_image_wrap").animate({left:e,width:jQuery("#spider_popup_wrap").width()-e},100):"right"==lightbox_comment_pos&&jQuery(".bwg_image_wrap").animate({right:e,width:jQuery("#spider_popup_wrap").width()-e},100),jQuery(".bwg_image_container").animate({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e},100),jQuery(".bwg_popup_image").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery("#spider_popup_wrap").width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},{duration:100,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height&&(jQuery(".bwg_filmstrip_container").css({width:jQuery("#spider_popup_wrap").width()-("vertical"==gallery_box_data.filmstrip_direction?0:e)}),jQuery(".bwg_filmstrip").animate({width:jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},100),bwg_set_filmstrip_pos(jQuery(".bwg_filmstrip_container").width()-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data))}function bwg_reset_zoom(){var e=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),t=document.querySelector('meta[name="viewport"]');e&&t&&(t.content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0")}function bwg_open_with_fullscreen(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_video").css({width:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())}),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?"comment_container_width":0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")}function bwg_resize_full(){jQuery(".bwg_watermark").css({display:"none"});var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=jQuery(".bwg_comment_container").width()||jQuery(".bwg_ecommerce_container").width()),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery(window).width()>gallery_box_data.image_width&&(bwg_popup_current_width=gallery_box_data.image_width),window.innerHeight>gallery_box_data.image_height&&(bwg_popup_current_height=gallery_box_data.image_height),jQuery("#spider_popup_wrap").animate({width:bwg_popup_current_width,height:bwg_popup_current_height,left:"50%",top:"50%",marginLeft:-bwg_popup_current_width/2,marginTop:-bwg_popup_current_height/2,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:bwg_popup_current_width-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container(),jQuery("#spider_popup_wrap").width()<jQuery(window).width()&&jQuery("#spider_popup_wrap").height()<window.innerHeight&&jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close")}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:bwg_popup_current_width-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_width-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(bwg_popup_current_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:bwg_popup_current_height-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),setTimeout(function(){bwg_info_height_set()},500)):(bwg_popup_current_width=jQuery(window).width(),bwg_popup_current_height=window.innerHeight,jQuery("#spider_popup_wrap").animate({width:jQuery(window).width(),height:window.innerHeight,left:0,top:0,margin:0,zIndex:100002},500),jQuery(".bwg_image_wrap").animate({width:jQuery(window).width()-e},500),jQuery(".bwg_image_container").animate({height:bwg_popup_current_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0),width:bwg_popup_current_width-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)},500),jQuery(".bwg_popup_image").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_change_watermark_container()}}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").animate({maxWidth:jQuery(window).width()-e-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)},{duration:500,complete:function(){bwg_resize_instagram_post(),bwg_change_watermark_container()}}),"width"==gallery_box_data.width_or_height?(jQuery(".bwg_filmstrip_container").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({width:jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(jQuery(window).width()-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data)):(jQuery(".bwg_filmstrip_container").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)},500),jQuery(".bwg_filmstrip").animate({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())},500),bwg_set_filmstrip_pos(window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?e:0)-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height()),"",gallery_box_data),"horizontal"!=gallery_box_data.filmstrip_direction&&jQuery(".bwg_filmstrip_right").css({top:window.innerHeight-jQuery(".bwg_filmstrip_right").height()})),jQuery(".bwg_resize-full").attr("class","bwg-icon-compress bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_restore),jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen")),setTimeout(function(){bwg_info_height_set()},500)}function bwg_popup_resize_lightbox(){void 0!==jQuery().fullscreen&&jQuery.isFunction(jQuery().fullscreen)&&(jQuery.fullscreen.isFullScreen()||(jQuery(".bwg_resize-full").show(),jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")||jQuery(".bwg_resize-full").attr("class","bwg-icon-expand bwg_ctrl_btn bwg_resize-full"),jQuery(".bwg_resize-full").attr("title",bwg_objectsL10n.bwg_maximize),jQuery(".bwg_fullscreen").attr("class","bwg-icon-arrows-out bwg_ctrl_btn bwg_fullscreen"),jQuery(".bwg_fullscreen").attr("title",bwg_objectsL10n.fullscreen)));var e=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(e=gallery_box_data.lightbox_comment_width),e>jQuery(window).width()?(e=jQuery(window).width(),jQuery(".bwg_comment_container").css({width:e}),jQuery(".bwg_ecommerce_container").css({width:e}),jQuery(".spider_popup_close_fullscreen").hide()):jQuery(".spider_popup_close_fullscreen").show(),window.innerHeight>gallery_box_data.image_height&&1!=gallery_box_data.open_with_fullscreen&&!jQuery(".bwg_resize-full").hasClass("bwg-icon-compress")?(jQuery("#spider_popup_wrap").css({height:gallery_box_data.image_height,top:"50%",marginTop:-gallery_box_data.image_height/2,zIndex:100002}),jQuery(".bwg_image_container").css({height:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:gallery_box_data.image_height-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:gallery_box_data.image_height}),jQuery(".bwg_filmstrip").css({height:gallery_box_data.image_height-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=gallery_box_data.image_height):(jQuery("#spider_popup_wrap").css({height:window.innerHeight,top:0,marginTop:0,zIndex:100002}),jQuery(".bwg_image_container").css({height:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxHeight:window.innerHeight-("horizontal"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_height:0)}),"vertical"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({height:window.innerHeight}),jQuery(".bwg_filmstrip").css({height:window.innerHeight-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_height=window.innerHeight),jQuery(window).width()>=gallery_box_data.image_width&&1!=gallery_box_data.open_with_fullscreen?(jQuery("#spider_popup_wrap").css({width:gallery_box_data.image_width,left:"50%",marginLeft:-gallery_box_data.image_width/2,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_image_container").css({width:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_image_info").css("height","auto"),bwg_info_height_set(),jQuery(".bwg_popup_image").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:gallery_box_data.image_width-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:gallery_box_data.image_width-e}),jQuery(".bwg_filmstrip").css({width:gallery_box_data.image_width-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=gallery_box_data.image_width):(jQuery("#spider_popup_wrap").css({width:jQuery(window).width(),left:0,marginLeft:0,zIndex:100002}),jQuery(".bwg_image_wrap").css({width:jQuery(window).width()-e}),jQuery(".bwg_image_container").css({width:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_image").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),jQuery(".bwg_popup_embed > .bwg_embed_frame > img, .bwg_popup_embed > .bwg_embed_frame > video").css({maxWidth:jQuery(window).width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0)-e}),"horizontal"==gallery_box_data.filmstrip_direction&&(jQuery(".bwg_filmstrip_container").css({width:jQuery(window).width()-e}),jQuery(".bwg_filmstrip").css({width:jQuery(window).width()-e-2*("horizontal"==gallery_box_data.filmstrip_direction?jQuery(".bwg_filmstrip_right").width():jQuery(".bwg_filmstrip_right").height())})),bwg_popup_current_width=jQuery(window).width()),bwg_resize_instagram_post(),bwg_change_watermark_container(),1!=gallery_box_data.open_with_fullscreen&&(gallery_box_data.lightbox_close_btn_right<0&&jQuery("#spider_popup_wrap").width()-2*gallery_box_data.lightbox_close_btn_right>=jQuery(window).width()||gallery_box_data.lightbox_close_btn_top<0&&jQuery("#spider_popup_wrap").height()-2*gallery_box_data.lightbox_close_btn_top>=jQuery(window).height()?jQuery(".spider_popup_close").attr("class","spider_popup_close_fullscreen"):jQuery(".spider_popup_close_fullscreen").attr("class","spider_popup_close"));var t=jQuery(".bwg_ctrl_btn_container").height();"bottom"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-down")&&jQuery(".bwg_toggle_container").css("bottom",t+"px"),"top"==gallery_box_data.lightbox_ctrl_btn_pos&&jQuery(".bwg_toggle_container i").hasClass("bwg-icon-caret-up")&&jQuery(".bwg_toggle_container").css("top",t+"px")}function bwg_rating(e,t,i,a){lightbox_rate_stars_count=gallery_box_data.lightbox_rate_stars_count,lightbox_rate_size=gallery_box_data.lightbox_rate_size,lightbox_rate_icon=gallery_box_data.lightbox_rate_icon;var r="Not rated yet.";if(0!=i&&""!=i&&(r=parseFloat(i).toFixed(1)+"\n Votes: "+t),void 0!==jQuery().raty&&jQuery.isFunction(jQuery().raty)){var _=parseFloat(jQuery("#bwg_star").attr("data-score"));jQuery("#bwg_star").removeAttr("data-score").html("");var s={starType:"i",number:lightbox_rate_stars_count,size:lightbox_rate_size,noRatedMsg:"Not rated yet.",readOnly:!1,score:_,starHalf:"bwg-icon-"+lightbox_rate_icon+("star"==lightbox_rate_icon?"-half":"")+"-o",starOff:"bwg-icon-"+lightbox_rate_icon+"-o",starOn:"bwg-icon-"+lightbox_rate_icon,cancelOff:"bwg-icon-minus-square-o",cancelOn:"bwg-icon-minus-square-o",cancel:!1,cancelHint:"Cancel your rating.",hints:[r,r,r,r,r],alreadyRatedMsg:parseFloat(i).toFixed(1)+"\nYou have already rated.\nVotes: "+t};e||(s.click=function(e,t){jQuery("#bwg_star").hide(),jQuery("#bwg_rated").show(),spider_set_input_value("rate_ajax_task","save_rate"),jQuery.when(spider_rate_ajax_save("bwg_rate_form",e)).then(function(){gallery_box_data.data[a].rate=e,++gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating=_?((_+e)/2).toFixed(1):e.toFixed(1),bwg_rating(gallery_box_data.data[a].rate,gallery_box_data.data[a].rate_count,gallery_box_data.data[a].avg_rating,gallery_box_data.current_image_key)})}),jQuery("#bwg_star").raty(s),jQuery(".bwg_image_rate_disabled").hide(),e&&jQuery(".bwg_image_rate_disabled").show()}}function changeDownloadsTotal(e){var t=0;0==jQuery("[name=option_show_digital_items_count]").val()?jQuery("[name=selected_download_item]:checked").each(function(){t+=Number(jQuery(this).closest("tr").attr("data-price"))}):jQuery(".digital_image_count").each(function(){0!=Number(jQuery(this).val())&&(t+=Number(jQuery(this).closest("tr").attr("data-price"))*Number(jQuery(this).val()))}),t=t.toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_downloads_price").html(t)}function changeMenualTotal(e){Number(jQuery(e).val())<=0&&jQuery(e).val("1");var t=Number(jQuery(e).val()),i=Number(jQuery(".product_manual_price").attr("data-actual-price"));i=(i*=t).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onSelectableParametersChange(e){var t=0,i=gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price?gallery_box_data.data[jQuery("#bwg_current_image_key").val()].pricelist_manual_price:"0";i=parseFloat(i.replace(",",""));var a=jQuery(e).closest(".image_selected_parameter").attr("data-parameter-type"),r=jQuery(e).val();r=r.split("*");var _=parseFloat(r[1]),s=r[0],o=Number(jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val());if("4"==a||"5"==a){var l=parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(l)}else if("6"==a){if(0==jQuery(e).is(":checked"))var n=o-parseFloat(s+_);else n=o+parseFloat(s+_);jQuery(e).closest(".image_selected_parameter").find(".already_selected_values").val(n)}jQuery(".already_selected_values").each(function(){t+=Number(jQuery(this).val())}),i+=t,jQuery(".product_manual_price").attr("data-actual-price",i),i=(i*=Number(jQuery(".image_count").val())<=0?1:Number(jQuery(".image_count").val())).toFixed(2).toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),jQuery(".product_manual_price").html(i)}function onBtnClickAddToCart(){var e=jQuery("[name=type]").val();if(""!=e){var t={};if("manual"==e){var i=jQuery(".image_count").val(),a={};jQuery(".manual").find(".image_selected_parameter").each(function(){var e=jQuery(this).attr("data-parameter-id"),t="";switch(jQuery(this).attr("data-parameter-type")){case"2":t=jQuery(this).find("input").val();break;case"3":t=jQuery(this).find("textarea").val();break;case"4":t=jQuery(this).find("select :selected").val();break;case"5":t=jQuery(this).find("[type=radio]:checked").val();break;case"6":var i=[];jQuery(this).find("[type=checkbox]:checked").each(function(){i.push(jQuery(this).val())}),t=i}a[e]=t}),t.count=i,t.parameters=a,t.price=jQuery(".product_manual_price").attr("data-price").replace(",","")}else{var r=[];if(0==jQuery("[name=option_show_digital_items_count]").val()){if(0==jQuery("[name=selected_download_item]:checked").length)return void jQuery(".add_to_cart_msg").html("You must select at least one item.");jQuery("[name=selected_download_item]:checked").each(function(){var e={};e.id=jQuery(this).val(),e.count=1,e.price=jQuery(this).closest("tr").attr("data-price"),r.push(e)})}else jQuery(".digital_image_count").each(function(){var e={};0<jQuery(this).val()&&(e.id=jQuery(this).closest("tr").attr("data-id"),e.price=jQuery(this).closest("tr").attr("data-price"),e.count=jQuery(this).val(),r.push(e))});if(0==(t.downloadItems=r).length)return void jQuery(".add_to_cart_msg").html("Please select at least one item")}var _=jQuery("#ajax_url").val(),s={action:"add_cart",task:"add_cart",controller:"checkout",image_id:jQuery("#bwg_popup_image").attr("image_id"),type:e,data:JSON.stringify(t)};jQuery.ajax({type:"POST",url:_,data:s,success:function(e){responseData=JSON.parse(e),jQuery(".add_to_cart_msg").html(responseData.msg),jQuery(".products_in_cart").html(responseData.products_in_cart),1==responseData.redirect&&(window.location.href="<?php echo get_permalink($options->checkout_page);?>")},beforeSend:function(){},complete:function(){}})}else jQuery(".add_to_cart_msg").html("Please select Prints and products or Downloads")}function onBtnViewCart(){var e=jQuery("[name=option_checkout_page]").val();jQuery("#bwg_ecommerce_form").attr("action",e),jQuery("#bwg_ecommerce_form").submit()}function bwg_load_visible_images(e,t,i){0<=e-t&&(startPoint=e-t),i<e+t&&(endPoint=i);for(var a=startPoint;a<=endPoint;a++){var r=jQuery("#bwg_filmstrip_thumbnail_"+a+" img");r.removeClass("bwg-hidden"),r.attr("src",r.data("url"))}}function bwg_load_filmstrip(){for(var e=1;e<=total_thumbnail_count;e++){var t;if(leftIndex=startPoint-e,rightIndex=endPoint+e,rightIndex<total_thumbnail_count)(t=jQuery("#bwg_filmstrip_thumbnail_"+rightIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"));if(0<=leftIndex)(t=jQuery("#bwg_filmstrip_thumbnail_"+leftIndex+" img")).removeClass("bwg-hidden"),t.attr("src",t.data("url"))}jQuery(".bwg_filmstrip_thumbnail").each(function(){var e=jQuery(this).find("img");void 0===e.attr("style")&&(0==e.width()?e.on("load",function(){jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)}):(jQuery(this).find(".bwg_filmstrip_thumbnail_img_wrap"),bwg_filmstrip_thumb_view(e)))})}function bwg_filmstrip_thumb_view(e){var t=gallery_box_data.image_filmstrip_height,i=gallery_box_data.image_filmstrip_width,a=i-gallery_box_data.filmstrip_thumb_right_left_space,r=t,_=Math.max(i/e.width(),t/e.height()),s=e.width()*_,o=e.height()*_;e.css({width:s,height:o,marginLeft:(a-s)/2,marginTop:(r-o)/2})}function bwg_info_height_set(){bwg_info_position(!1),jQuery(".mCustomScrollBox").length&&jQuery(".bwg_image_info_container1").height()<jQuery(".mCustomScrollBox").height()+jQuery(".bwg_toggle_container").height()+bwg_image_info_pos+2*parseInt(gallery_box_data.lightbox_info_margin)&&jQuery(".bwg_image_info").css({height:jQuery(".bwg_image_info_container1").height()-jQuery(".bwg_toggle_container").height()-bwg_image_info_pos-2*parseInt(gallery_box_data.lightbox_info_margin)})}function bwg_info_position(e){var t=0,i="none";"top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(i="top"):"bottom"==gallery_box_data.lightbox_info_pos&&(i="bottom"),jQuery(".bwg_ctrl_btn_container").hasClass("closed")||("top"==gallery_box_data.lightbox_ctrl_btn_pos?"top"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height()):"bottom"==gallery_box_data.lightbox_info_pos&&(t=jQuery(".bwg_ctrl_btn_container").height())),"top"==i?0==e?jQuery(".bwg_image_info").css("top",t):jQuery(".bwg_image_info").animate({top:t+"px"},500):"bottom"==i&&(0==e?jQuery(".bwg_image_info").css("bottom",t):jQuery(".bwg_image_info").animate({bottom:t+"px"},500))}function spider_display_embed(e,t,i,a){var r="";switch(e){case"EMBED_OEMBED_YOUTUBE_VIDEO":var _="<iframe ";for(attr in""!=i&&(_+=' src="//www.youtube.com/embed/'+i+'?enablejsapi=1&wmode=transparent"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(_+=" "+attr+'="'+a[attr]+'"');r+=_+=" ></iframe>";break;case"EMBED_OEMBED_VIMEO_VIDEO":var s="<iframe ";for(attr in""!=i&&(s+=' src="//player.vimeo.com/video/'+i+'?enablejsapi=1"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(s+=" "+attr+'="'+a[attr]+'"');r+=s+=" ></iframe>";break;case"EMBED_OEMBED_FLICKR_IMAGE":var o="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(o+=" "+attr+'="'+a[attr]+'"');o+=" >",""!=i&&(o+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto !important; height:auto !important;">'),r+=o+="</div>";break;case"EMBED_OEMBED_FLICKR_VIDEO":break;case"EMBED_OEMBED_INSTAGRAM_VIDEO":var l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<video style="width:auto !important; height:auto !important; max-width:100% !important; max-height:100% !important; margin:0 !important;" controls><source src="'+decodeURIComponent(t)+'" type="video/mp4"> Your browser does not support the video tag. </video>'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_IMAGE":var n=a["data-max-width"],g=a["data-max-height"];l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');l+=" >",""!=t&&(l+='<img src="'+decodeURIComponent(t)+'" style="max-width:'+n+"px; max-height:"+g+'px; width: auto; height: auto">'),r+=l+="</div>";break;case"EMBED_OEMBED_INSTAGRAM_POST":l="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"',"CLASS"!=attr&&"class"!=attr&&"Class"!=attr||(obj_class=a[attr]));l+=">",""!=t&&(l+='<div class="inner_instagram_iframe_'+obj_class+'" style="max-width: 100% !important; max-height: 100% !important; width: 100%; height: 100%; margin:0; vertical-align:middle;">'+atob(t)+"</div>"),r+=l+="</div>";break;case"EMBED_OEMBED_FACEBOOK_IMAGE":var w="<span ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(w+=" "+attr+'="'+a[attr]+'"');w+=" >",""!=i&&(w+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:100%;">'),r+=w+="</span>";break;case"EMBED_OEMBED_FACEBOOK_VIDEO":var b="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(b+=" "+attr+'="'+a[attr]+'"');b+=" >",""!=i&&(b+='<iframe src="//www.facebook.com/video/embed?video_id='+t+'&enablejsapi=1&wmode=transparent" style="max-width:100% !important; max-height:100% !important; width:100%; height:100%; margin:0; display:table-cell; vertical-align:middle;"frameborder="0" class="bwg_fb_video" scrolling="no" allowtransparency="false" allowfullscreen></iframe>'),r+=b+="</div>";break;case"EMBED_OEMBED_DAILYMOTION_VIDEO":var u="<iframe ";for(attr in""!=i&&(u+=' src="//www.dailymotion.com/embed/video/'+i+'?api=postMessage"'),a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(u+=" "+attr+'="'+a[attr]+'"');r+=u+=" ></iframe>";break;case"EMBED_OEMBED_IMGUR":var d="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(l+=" "+attr+'="'+a[attr]+'"');d+=" >",""!=i&&(d+='<img src="'+i+'" style="max-width:100% !important; max-height:100% !important; width:auto; height:auto !important;">'),r+=d+="</div>";break;case"EMBED_OEMBED_GOOGLE_PHOTO_IMAGE":var h="<div ";for(attr in a)/src/i.test(attr)||""!=attr&&""!=a[attr]&&(h+=" "+attr+'="'+a[attr]+'"');h+=" >",""!=i&&(h+='<img src="'+t+'" style=" max-width:100% !important; max-height:100% !important; width:auto; height:auto;">'),r+=h+="</div>";break;default:var m={content:""};jQuery(document).trigger("bwg_display_embed",[m,e,t,i,a]),r=m.content}return r}function bwg_add_instagram_gallery(e,s){if(!0===(s=void 0!==s&&s)){if(bwg_check_instagram_gallery_input(e,s))return!1;var t="0";1==jQuery("input[name=popup_instagram_post_gallery]:checked").val()&&(t="1");var i=encodeURI(jQuery("#popup_instagram_gallery_source").val()),a=encodeURI(jQuery("#popup_instagram_image_number").val())}else{if(bwg_check_instagram_gallery_input(e,s))return!1;if(!bwg_check_gallery_empty(!1,!0))return!1;t="0";1==jQuery("input[name=instagram_post_gallery]:checked").val()&&(t="1");i=encodeURI(jQuery("#gallery_source").val());var r=jQuery("input[name=update_flag]:checked").val();a=encodeURI(jQuery("#autogallery_image_number").val())}jQuery("#bulk_embed").hide(),jQuery("#loading_div").show();var o=[],_={action:"addInstagramGallery",instagram_user:i,instagram_access_token:e,whole_post:t,autogallery_image_number:a,update_flag:r,async:!0};jQuery.post(bwg_ajax_url_nonce,_,function(e){if(0==e)return alert("Error: cannot get response from the server."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;var t=e.indexOf("WD_delimiter_start"),i=e.indexOf("WD_delimiter_end");if(-1==t||-1==i)return jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;if(e=e.substring(t+18,i),response_JSON=JSON.parse(e),response_JSON){if("error"==response_JSON[0])return alert("Error: "+JSON.parse(e)[1]),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1;for(var a=response_JSON.length,r=1;r<=a;r++)if(0!=response_JSON[a-r]){var _=response_JSON[a-r];o.push(_)}return bwg_add_image(o),s||(bwg_gallery_update_flag(),jQuery("#tr_instagram_gallery_add_button").hide()),jQuery("#loading_div").hide(),s&&jQuery(".opacity_bulk_embed").hide(),"ok"}return alert("There is some error. Cannot add Instagram gallery."),jQuery("#loading_div").hide(),s&&jQuery("#bulk_embed").show(),!1})}var bwg=0,isMobile=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()),bwg_click=isMobile?"touchend":"click",bwg_slideshow_filmstrip_thumbnail_timer=!1;window.bwg_slideshow_filmstrip_thumb={};var bwg_params=[],bwg_params_ib=[],bwg_params_carousel=[];function bwg_remove_lazy_loader_icon(){1==bwg_objectsL10n.lazy_load&&jQuery("img.bwg_lazyload").Lazy({afterLoad:function(){jQuery(".lazy_loader").removeClass("lazy_loader")},onFinishedAll:function(){jQuery(".lazy_loader").removeClass("lazy_loader")}})}function bwg_main_ready(e){var t=e.data("bwg");bwg_remove_lazy_loader_icon(),0<e.find(".wd_error").length&&bwg_container_loaded(t);var i=e.find(".bwg-container");if("album"===e.data("is-album")&&i.hasClass("bwg-thumbnails"))var a="thumbnails";else a=e.data("gallery-type");switch(bwg_document_ready(e),a){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(i);break;case"thumbnails_mosaic":bwg_thumbnail_mosaic(i);break;case"slideshow":bwg_slideshow_ready(t);break;case"carousel":bwg_carousel_ready(t),bwg_carousel_onload(e);break;case"image_browser":bwg_image_browser_ready(e);break;case"blog_style":bwg_blog_style_ready(e)}}function bwg_resize_search_line(){jQuery(".search_line").each(function(){var e=jQuery(this);e.width()<410?e.addClass("bwg-search-line-responsive"):e.removeClass("bwg-search-line-responsive")})}function bwg_tags_button_section_visibility(){jQuery('div[id^="bwg_container1_"]').each(function(){var e=jQuery(this),t=e.find(".current_view").val(),i=e.find(".show_bottom_tag").val(),a=e.find(".bwg_tags_container_"+t+" .bwg_tag_button_view_container");if(a.length)var r=a[0].scrollHeight;var _=a.find(".bwg_tags_filter_buttons").outerHeight(!0),s=parseInt(2*a.find(".bwg_tags_filter_buttons").outerHeight(!0)+3);s<r?(0===jQuery(this).find(".see_all_tags.bwg_hide").length&&a.css({"min-height":_,"max-height":s,overflow:"hidden"}),a.next(".bwg_tag_button_see_all").show()):(a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}),a.next(".bwg_tag_button_see_all").hide());var o=a.next().find(".see_all_tags").width()/2;a.next().find(".see_all_tags").attr("style","margin-left: -"+o+"px"),a.next().find(".see_all_tags").off("click").on("click",function(){jQuery(this).hasClass("bwg_show")?(jQuery(this).removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"})):jQuery(this).hasClass("bwg_hide")&&(jQuery(this).removeClass("bwg_hide").addClass("bwg_show").html("<span>&#43;</span>"+bwg_objectsL10n.bwg_tag_see_all),a.css({"min-height":_,"max-height":s,overflow:"hidden"}))}),1==i&&(jQuery(this).find(".see_all_tags").removeClass("bwg_show").addClass("bwg_hide").html("<span>&#8722;</span>"+bwg_objectsL10n.bwg_tag_see_less),a.css({"min-height":"auto","max-height":"100%",height:"auto",overflow:"visible"}))})}function bwg_slideshow_resize(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],bwg_popup_resize(bwg))})}function bwg_blog_style_resize(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg"),jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)})})}function bwg_blog_style_onload(){jQuery(".bwg_blog_style").each(function(){bwg=jQuery(this).attr("data-bwg");jQuery("#bwg_blog_style_"+bwg);jQuery(".bwg_embed_frame_16x9_"+bwg).each(function(e){if(jQuery(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").length){jQuery(".fluid-width-video-wrapper").removeAttr("style");var t=jQuery(this).parents(".bwg_blog_style_image_"+bwg).find(".fluid-width-video-wrapper").contents();jQuery(this).parents(".fluid-width-video-wrapper").replaceWith(t)}jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".bwg_embed_frame_instapost_"+bwg).each(function(e){jQuery(this).width(jQuery(this).parents(".bwg_blog_style_image_"+bwg).width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),bwg_container_loaded(bwg)})}function bwg_blog_style_ready(t){var e=t.data("bwg");bwg_container_loaded(e);var i=!1;t.find(".bwg_lightbox_"+e).on("click",function(){var e=jQuery(this).attr("data-image-id");if(jQuery("#bwg_blog_style_share_buttons_"+e).removeAttr("data-open-comment"),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(e,t.closest(".bwg_container")),!1}),jQuery(".bwg_lightbox_"+e+" .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(t.attr("data-image-id"),t.closest(".bwg_container"),!0),!1});var a=window.location.hash.substring(1);a&&"-1"!=a.indexOf("bwg")&&(bwg_hash_array=a.replace("bwg","").split("/"),"<?php echo $params_array['gallery_id']; ?>"==bwg_hash_array[0]&&bwg_gallery_box(bwg_hash_array[1]))}function bwg_slideshow_focus(){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]),jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-play")||bwg_play(bwg_params[bwg].data,bwg))})}function bwg_carousel_focus(){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight&&jQuery(".bwg_carousel_image_container_"+bwg).length&&jQuery(".bwg_ctrl_btn_"+bwg).hasClass("bwg-icon-pause")&&bwg_params_carousel[bwg].carousel.start()})}function bwg_slideshow_blur(e){jQuery(".bwg_slideshow").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_slideshow[data-bwg="+bwg+"]")[0].offsetHeight||jQuery("#bwg_slideshow_image_container_"+bwg).length&&(bwg_params[bwg]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+bwg).attr("data-params")),bwg_params[bwg].event_stack=[],window.clearInterval(window["bwg_playInterval"+bwg]))})}function bwg_carousel_blur(e){jQuery(".bwg_carousel").each(function(){bwg=jQuery(this).data("bwg"),!e&&jQuery(".bwg_carousel[data-bwg="+bwg+"]")[0].offsetHeight||jQuery(".bwg_carousel_image_container_"+bwg).length&&void 0!==bwg_params_carousel[bwg]&&bwg_params_carousel[bwg].carousel.pause()})}function bwg_carousel_ready(t){bwg_params_carousel[t]=[],bwg_params_carousel[t].bwg_currentCenterNum=1,bwg_params_carousel[t].bwg_currentlyMoving=!1,bwg_params_carousel[t].data=[],jQuery("#spider_carousel_left-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.prev(),e.stopPropagation(),e.stopImmediatePropagation()}),jQuery("#spider_carousel_right-ico_"+t).on("click",function(e){bwg_params_carousel[t].carousel.next(),e.stopPropagation(),e.stopImmediatePropagation()}),parseInt(bwg_params_carousel[t].carousel_enable_autoplay)&&(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t)),jQuery(".bwg_carousel_play_pause_"+t).on(bwg_click,function(e){jQuery(".bwg_ctrl_btn_"+t).hasClass("bwg-icon-play")?(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-pause bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.start()):(jQuery(".bwg_carousel_play_pause_"+t).attr("title",bwg_objectsL10n.play),jQuery(".bwg_carousel_play_pause_"+t).attr("class","bwg-icon-play bwg_ctrl_btn_"+t+" bwg_carousel_play_pause_"+t),bwg_params_carousel[t].carousel.pause()),e.stopPropagation(),e.stopImmediatePropagation()}),void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+t).swiperight(function(){bwg_params_carousel[t].carousel.prev()}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+t).swipeleft(function(){bwg_params_carousel[t].carousel.next()})}function bwg_carousel_resize(){jQuery(".bwg-carousel").each(function(){var e=jQuery(this).data("bwg");jQuery("#bwg_carousel-container"+e).length&&(bwg_carousel_params(e,!0),bwg_params_carousel[e].carousel.pause(),bwg_carousel_watermark(e),jQuery(".bwg_ctrl_btn_"+e).hasClass("bwg-icon-play")||bwg_params_carousel[e].carousel.start())})}function bwg_carousel_onload(e){var t=e.data("bwg"),i=e.find(".bwg_carousel-container"+t);i.length&&(bwg_params_carousel[t]=i.data("params"),bwg_params_carousel[t].parent_width=0,bwg_carousel_watermark(t),bwg_carousel_params(t,!1),bwg_container_loaded(t))}function bwg_carousel_params(t,e){var i=jQuery("#bwg_container1_"+t).parent();i.hasClass("elementor-tab-content")&&i.width(i.closest(".elementor-widget-wrap").width());var a=i.width(),r=1;a<bwg_params_carousel[t].carousel_r_width?r=a/bwg_params_carousel[t].carousel_r_width:a=bwg_params_carousel[t].carousel_r_width,bwg_params_carousel[t].parent_width!=a&&(bwg_params_carousel[t].parent_width=a,bwg_params_carousel[t].carousel_image_column_number>bwg_params_carousel[t].count&&(bwg_params_carousel[t].carousel_image_column_number=bwg_params_carousel[t].count),jQuery(".bwg_carousel_play_pause_"+t).css({display:parseInt(bwg_params_carousel[t].carousel_play_pause_butt)?"":"none"}),parseInt(bwg_params_carousel[t].carousel_prev_next_butt)?(jQuery("#bwg_carousel-right"+t).css({display:""}),jQuery("#bwg_carousel-left"+t).css({display:""})):(jQuery("#bwg_carousel-left"+t).css({display:"none"}),jQuery("#bwg_carousel-right"+t).css({display:"none"})),jQuery(".inner_instagram_iframe_bwg_embed_frame_"+t).each(function(){var e=jQuery(this).parent();bwg_params_carousel[t].image_height/(parseInt(e.attr("data-height"))+96)<bwg_params_carousel[t].image_width/parseInt(e.attr("data-width"))?(e.height(bwg_params_carousel[t].image_height*r),e.width((e.height()-96)*e.attr("data-width")/e.attr("data-height")+16)):(e.width(bwg_params_carousel[t].image_width*r),e.height((e.width()-16)*e.attr("data-height")/e.attr("data-width")+96))}),jQuery(".bwg_carousel_image_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_text_"+t+", .bwg_carousel_watermark_text_"+t+":hover").css({fontSize:a*(bwg_params_carousel[t].watermark_font_size/bwg_params_carousel[t].image_width)*r}),jQuery(".bwg_carousel-image "+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_container_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_embed_video_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel_watermark_spun_"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_carousel-container"+t).css({width:a,height:bwg_params_carousel[t].image_height*r}),jQuery(".bwg_video_hide"+t).css({width:bwg_params_carousel[t].image_width*r,height:bwg_params_carousel[t].image_height*r}),bwg_params_carousel[t].carousel&&!e||(e&&bwg_params_carousel[t].carousel&&bwg_params_carousel[t].carousel.pause(),bwg_params_carousel[t].carousel=jQuery("#bwg_carousel"+t).featureCarousel({containerWidth:a*r,containerHeight:bwg_params_carousel[t].image_height*r,fit_containerWidth:bwg_params_carousel[t].carousel_fit_containerWidth,largeFeatureWidth:bwg_params_carousel[t].image_width*r,largeFeatureHeight:bwg_params_carousel[t].image_height*r,smallFeaturePar:bwg_params_carousel[t].carousel_image_par,currentlyMoving:!1,startingFeature:bwg_params_carousel[t].bwg_currentCenterNum,featuresArray:[],timeoutVar:null,rotationsRemaining:0,autoPlay:1e3*bwg_params_carousel[t].car_inter,interval:1e3*bwg_params_carousel[t].carousel_interval,imagecount:bwg_params_carousel[t].carousel_image_column_number,bwg_number:t,enable_image_title:bwg_params_carousel[t].enable_image_title,borderWidth:0})))}function bwg_carousel_watermark(e){var t=1,i=jQuery("#bwg_container1_"+e).parent().width();if(i<bwg_params_carousel[e].carousel_r_width&&(t=i/bwg_params_carousel[e].carousel_r_width),i>=bwg_params_carousel[e].image_width)bwg_carousel_change_watermark_container(e),jQuery("#bwg_carousel_play_pause-ico_"+e).css({fontSize:bwg_params_carousel[e].carousel_play_pause_btn_size}),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:bwg_params_carousel[e].watermark_width*t,maxHeight:bwg_params_carousel[e].watermark_height*t}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:t*bwg_params_carousel[e].watermark_font_size});else{var a=bwg_params_carousel[e].image_width/t;bwg_carousel_change_watermark_container(e),jQuery(".bwg_carousel_watermark_image_"+e).css({maxWidth:i*bwg_params_carousel[e].watermark_width/a,maxHeight:i*bwg_params_carousel[e].watermark_height/a}),jQuery(".bwg_carousel_watermark_text_"+e+", .bwg_carousel_watermark_text_"+e+":hover").css({fontSize:i*bwg_params_carousel[e].watermark_font_size/a})}}function bwg_carousel_change_watermark_container(a){jQuery(".bwg_carousel"+a).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");e.length||(e=jQuery(this).find("iframe"));var t=e.width(),i=e.height();jQuery(".bwg_carousel_watermark_spun_"+a).width(t),jQuery(".bwg_carousel_watermark_spun_"+a).height(i),jQuery(".bwg_carousel_title_spun_"+a).width(t),jQuery(".bwg_carouel_title_spun_"+a).height(i),jQuery(".bwg_carousel_watermark_"+a).css({display:"none"})}})}function bwg_carousel_preload(e,t){var i=jQuery(".bwg_carousel_preload").get();t||i.reverse();var a=0;jQuery(i).each(function(){if(1<++a)return!1;jQuery(this).parent().hasClass("bwg_carousel_embed_video_"+e)||jQuery(this).parent().hasClass("bwg_embed_frame_"+e)||jQuery(this).parent().hasClass("bwg_carousel_video")?(jQuery(this).attr("src",jQuery(this).attr("data-src")),jQuery(this).on("load",function(){jQuery(this).removeClass("bwg_carousel_preload")}),jQuery(this).parent().hasClass("bwg_carousel_video")&&(jQuery(".bwg_carousel_video")[0].load(),jQuery(this).parent().parent().removeClass("bwg_carousel_preload")),jQuery(this).removeAttr("data-src")):(jQuery(this).css({"background-image":"url('"+jQuery(this).attr("data-background")+"')",height:"100%"}),jQuery(this).removeClass("bwg_carousel_preload"),jQuery(this).removeAttr("data-background"))})}function bwg_slideshow_ready(i){if(jQuery("#bwg_slideshow_image_container_"+i).length){bwg_params[i]=JSON.parse(jQuery("#bwg_slideshow_image_container_"+i).attr("data-params")),bwg_params[i].event_stack=[];var e=".bwg_slideshow_filmstrip_"+i,t="bwg_slideshow_filmstrip_thumbnail_"+i;bwg_slideshow_filmstrip_thumb[t]={},bwg_slideshow_filmstrip_thumb[t].next_prev_index=0;var a=!1;2==bwg_params[i].slideshow_filmstrip_type&&(a=!0,e=".bwg_slideshow_filmstrip_fix_count_"+i),bwg_container_loaded(i);var r=bwg_params[i].data;void 0!==jQuery().swiperight&&jQuery.isFunction(jQuery().swiperight)&&jQuery("#bwg_container1_"+i).swiperight(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),0<=parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i)?(parseInt(jQuery("#bwg_current_image_key_"+i).val())-bwg_iterator(i))%r.length:r.length-1,r,"",i),!1}),void 0!==jQuery().swipeleft&&jQuery.isFunction(jQuery().swipeleft)&&jQuery("#bwg_container1_"+i).swipeleft(function(){return bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),parseInt(jQuery("#bwg_current_image_key_"+i).val())+bwg_iterator(i)%r.length,r,"",i),!1});var _=/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase())?"touchend":"click";bwg_popup_resize(i),jQuery(".bwg_slideshow_watermark_"+i).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+i).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+i).css({display:"none"}),setTimeout(function(){bwg_change_watermark_container(i)},500),1==bwg_params[i].slideshow_filmstrip_type&&("horizontal"==bwg_params[i].filmstrip_direction?jQuery(".bwg_slideshow_image_container_"+i).height(jQuery(".bwg_slideshow_image_wrap_"+i).height()-bwg_params[i].slideshow_filmstrip_height):jQuery(".bwg_slideshow_image_container_"+i).width(jQuery(".bwg_slideshow_image_wrap_"+i).width()-bwg_params[i].slideshow_filmstrip_width));var s=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";jQuery(e).bind(s,function(e){var t=window.event||e;return 0<((t=t.originalEvent?t.originalEvent:t).detail?-40*t.detail:t.wheelDelta)?jQuery(".bwg_slideshow_filmstrip_left_"+i).trigger("click"):jQuery(".bwg_slideshow_filmstrip_right_"+i).trigger("click"),!1});var o={bwg:i,params:bwg_params[i],slideshow_filmstrip_class_name:e};if(jQuery(".bwg_slideshow_filmstrip_right_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_next(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_next(o)}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(_,function(){1==a?!1===bwg_slideshow_filmstrip_thumbnail_timer&&(bwg_slideshow_filmstrip_thumbnail_timer=!0,bwg_slideshow_filmstrip_prev(o),setTimeout(function(){bwg_slideshow_filmstrip_thumbnail_timer=!1},505)):bwg_slideshow_filmstrip_prev(o)}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(e).width(),i):bwg_set_filmstrip_pos(jQuery(e).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(_).on(_,function(){jQuery(".bwg_ctrl_btn_"+i).hasClass("bwg-icon-play")?(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).play()):(window.clearInterval(window["bwg_playInterval"+i]),jQuery(".bwg_slideshow_play_pause_"+i).attr("title","Play"),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-play bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&document.getElementById("bwg_audio_"+i).pause())}),0!=bwg_params[i].enable_slideshow_autoplay&&(bwg_play(bwg_params[i].data,i),jQuery(".bwg_slideshow_play_pause_"+i).attr("title",bwg_objectsL10n.pause),jQuery(".bwg_slideshow_play_pause_"+i).attr("class","bwg-icon-pause bwg_ctrl_btn_"+i+" bwg_slideshow_play_pause_"+i),1==bwg_params[i].enable_slideshow_music&&jQuery("#bwg_audio_"+i).length&&document.getElementById("bwg_audio_"+i).play()),bwg_params[i].preload_images&&bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()),i),jQuery(".bwg_slideshow_image_"+i).removeAttr("width"),jQuery(".bwg_slideshow_image_"+i).removeAttr("height"),"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds){var l=jQuery("#instagram-embed-"+i),n=jQuery(".bwg_embed_frame_"+i).data("height");l.hide(),instgrm.Embeds.process(),l.css({"max-height":n+"px"}).show()}}}function bwg_image_browser_resize(){jQuery(".bwg_image_browser").each(function(){var e=jQuery(this).attr("data-bwg");jQuery(".image_browser_images_conteiner_"+e).length&&(bwg_params_ib[e]=JSON.parse(jQuery("#bwg_container1_"+e+" .image_browser_images_conteiner_"+e).attr("data-params")),bwg_image_browser(e))})}function bwg_image_browser_ready(e){var t=e.data("bwg");bwg_container_loaded(t),jQuery(".image_browser_images_conteiner_"+t).length&&(bwg_params_ib[t]=JSON.parse(jQuery(".image_browser_images_conteiner_"+t).attr("data-params")),setTimeout(function(){bwg_image_browser(t)},3))}function bwg_search_focus(e){jQuery(e).parent().find(".bwg_search_input").focus(),jQuery(e).hide()}function bwg_key_press(e){jQuery(e).parent().find(".bwg_search_reset_container").removeClass("bwg-hidden"),jQuery(e).parent().find(".bwg_search_loupe_container1").removeClass("bwg-hidden")}function bwg_all_thumnails_loaded(t){var i=0,a=jQuery(t).find("img").length;return 0==a?bwg_all_thumbnails_loaded_callback(t):jQuery(t).find("img").each(function(){var e=jQuery(this).attr("src");jQuery("<img/>").attr("src",e).on("load error",function(){++i>=a&&bwg_all_thumbnails_loaded_callback(t)})}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)}),0==a}function bwg_all_thumbnails_loaded_callback(e){jQuery(e).hasClass("bwg-thumbnails")&&!jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail(e),jQuery(e).hasClass("bwg-masonry-thumbnails")&&bwg_thumbnail_masonry(e),jQuery(e).hasClass("bwg-album-extended")&&bwg_album_extended(e)}function bwg_album_thumbnail(e){bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_album_extended(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("spacing"),r=jQuery(e).data("max-count"),_=parseInt(t/(2*i));_<1&&(_=1),r<_&&(_=r);var s=100/_,o=jQuery(e).find(".bwg-extended-item"),l=parseInt(o.css("margin-left")),n=parseInt(o.css("margin-right"));o.css({width:"calc("+s+"% - "+(l+n)+"px)"}),o.width()<i?o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(100% - "+a+"px)"}):o.width()>2*i?(o.find(".bwg-extended-item0").css({width:"calc(50% - "+a+"px)"}),o.find(".bwg-extended-item1").css({width:"calc(100% - "+(i+2*a)+"px)"})):o.find(".bwg-extended-item0, .bwg-extended-item1").css({width:"calc(50% - "+a+"px)"}),jQuery(e).children(".bwg-extended-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item0"),i=jQuery(this).find(".bwg-item2"),a=e.data("width"),r=e.data("height");""!=a&&""!=r||(a=e.width(),r=e.height());var _=a/r;i.width()/i.height()>a/r?(i.width()>a?e.css({width:"100%",height:i.width()/_}):e.css({maxWidth:"100%",height:i.width()/_}),a=i.width(),r=i.width()/_):(i.height()>r?e.css({height:"100%",width:i.height()*_,maxWidth:"initial"}):e.css({maxHeight:"100%",width:i.height()*_,maxWidth:"initial"}),r=i.height(),a=i.height()*_),jQuery(this).find(".bwg-item2").css({marginLeft:(t.width()-a)/2,marginTop:(t.height()-r)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail(e){var t=jQuery(e).width(),i=jQuery(e).data("thumbnail-width"),a=jQuery(e).data("max-count"),r=parseInt(t/i)+1;a<r&&(r=a);var _=100/r;jQuery(e).find(".bwg-item").css({width:_+"%"}),jQuery(e).children(".bwg-item").each(function(){var e=jQuery(this).find("img"),t=jQuery(this).find(".bwg-item2"),i=jQuery(this).find(".bwg-item1"),a=0<t.width()?t.width():i.width(),r=0<t.height()?t.height():i.height(),_=e.data("width"),s=e.data("height");""!=_&&""!=s&&void 0!==_&&void 0!==s||(_=e.width(),s=e.height());var o=_/s;e.removeAttr("style"),o<a/r?(_<a?e.css({width:"100%",height:a/o}):e.css({maxWidth:"100%",height:Math.ceil(a/o)}),s=(_=a)/o):(r>e.height()?e.css({height:"100%",width:r*o,maxWidth:"initial"}):e.css({maxHeight:"100%",width:r*o,maxWidth:"initial"}),_=(s=r)*o),jQuery(this).find(".bwg-item2").css({marginLeft:(a-_)/2,marginTop:(r-s)/2})}),bwg_container_loaded(jQuery(e).data("bwg"))}function bwg_thumbnail_masonry(e){var t="#bwg_thumbnails_masonry_"+(bwg=jQuery(e).attr("data-bwg"));jQuery("#bwg_album_masonry_"+bwg).length&&(t="#bwg_album_masonry_"+bwg),0===jQuery(".bwg-container-temp"+bwg).length&&(jQuery(t).clone().appendTo("#bwg_container3_"+bwg).removeAttr("id").removeClass("bwg-container-"+bwg).addClass("bwg-container-temp"+bwg),jQuery(".bwg-container-temp"+bwg).empty());var a=jQuery(".bwg-container-temp"+bwg),r=jQuery(t),_=a;if(a.prepend(r.html()),_.find(".bwg-empty-item").remove(),"horizontal"==_.data("masonry-type")){var s=_.data("thumbnail-height"),o=_.data("max-count"),l=[];for(i=0;i<o;i++)l.push(0);_.find(".bwg-item").each(function(){var e=l.indexOf(Math.min.apply(Math,l));jQuery(this).css({height:s,order:e+1}),l[e]+=jQuery(this)[0].getBoundingClientRect().width});var n=Math.max.apply(Math,l);for(_.width(n),i=0;i<o;i++)l[i]<n&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({height:s,order:i+1,width:n-l[i]}))}else{_.removeAttr("style");n=_.width();var g=_.data("thumbnail-width"),w=_.data("thumbnail-border"),b=(_.data("thumbnail-padding"),o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<b&&(b=o);var u=_.find(".bwg-item").length;u<b&&(b=u);var d,h,m=100/b,c=[];for(i=0;i<b;i++)c.push(0);_.find(".bwg-item").each(function(){var e=c.indexOf(Math.min.apply(Math,c)),t=jQuery(this).find("img");if(jQuery(this).css({width:m+"%",order:e+1}),void 0!==t.data("src")&&-1===t.data("src").indexOf("svg")&&0<t.attr("data-width").length&&0<t.attr("data-height").length){h=parseInt(t.data("width"))/parseInt(t.data("height")),d=t.width()/h;var i=(this.querySelector("a .bwg-zoom-effect-overlay .bwg-title2")||!this.querySelector("a .bwg-title1 .bwg-title2")?0:this.querySelector("a .bwg-title1 .bwg-title2").getClientRects()[0].height)+(0<jQuery(this).find(".bwg-masonry-thumb-description").length?jQuery(this).find(".bwg-masonry-thumb-description").height():0);jQuery(this).height(Math.floor(d+i+2*w))}c[e]+=jQuery(this)[0].getBoundingClientRect().height});var p=Math.max.apply(Math,c);for(i=0;i<b;i++)c[i]<p&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:m+"%",order:i+1,height:p-c[i]}));_.outerWidth(b*(g+2*w)),_.height(p)}if(""!=a.html()){r.outerWidth(b*(g+2*w)),"0"!=p?(r.css("opacity","1"),r.height(p)):r.css("opacity","0"),r.empty();var y=a.html();r.append(y),r.find(".bwg_lazyload").each(function(){null!=jQuery(this).data("src")&&""!=jQuery(this).data("src")&&(jQuery(this).attr("src",jQuery(this).data("src")),jQuery(this).on("load",function(){jQuery(this).removeClass("lazy_loader")}))}),a.empty().hide()}bwg_container_loaded(_.data("bwg"))}function bwg_container_loaded(e){jQuery("#gal_front_form_"+e).removeClass("bwg-hidden"),jQuery("#ajax_loading_"+e).addClass("bwg-hidden"),jQuery(".bwg_container img").removeAttr("width").removeAttr("height")}function bwg_thumbnail_mosaic_logic(e){var t=e.attr("data-bwg"),i=e.attr("data-block-id"),a=parseInt(e.attr("data-thumb-padding"))/2,r=parseInt(e.attr("data-thumb-border"))+a;if("horizontal"==e.attr("data-mosaic-direction")){var _=parseInt(e.attr("data-height"));if("1"==e.attr("data-resizable"))if(1920<=jQuery(window).width())var s=(1+jQuery(window).width()/1920)*_;else if(jQuery(window).width()<=640)s=jQuery(window).width()/640*_;else s=_;else s=_;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),t=t*s/i,p.eq(e).height(s),p.eq(e).width(t)});var o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var l=s+2*r,n=0,g=[];g[0]=0;var w=[],b=w[0]=0;p.each(function(e){row_cum_width2=b+p.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==p.length-1?Math.abs(b-o)>Math.abs(row_cum_width2-o)||Math.abs(b-o)<=Math.abs(row_cum_width2-o)&&0==w[n]?e!==p.length-2?(b=row_cum_width2,g[e]=n,w[n]++,w[++n]=0,b=0):(b=row_cum_width2,g[e]=n,w[n]++):(w[++n]=1,g[e]=n,b=row_cum_width2-b):(b=row_cum_width2,g[e]=n,w[n]++)});for(var u=[],d=[],h=0;h<=n;h++)b=0,p.each(function(e){g[e]==h&&(b+=p.eq(e).width())}),u[h]=z=(o-2*w[h]*r)/b,d[h]=(l-2*r)*u[h]+2*r;if(0==n)for(h=0;h<=n;h++)d[h]>s&&(u[h]=1,d[h]=l);(O=[])[0]=0;var m=[],c=[];m[0]=0,c[0]=0;for(h=1;h<=n;h++)m[h]=m[0],c[h]=c[h-1]+d[h-1];p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[g[e]]),p.eq(e).height(i*u[g[e]]),p.eq(e).parent().css({top:c[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,O[g[e]]=e}),jQuery("#"+i).height(c[n]+d[n]-c[0])}else{var p,y=parseInt(e.attr("data-width"));if("1"==e.attr("data-resizable")){if(1920<=jQuery(window).width())var f=(1+jQuery(window).width()/1920)*y;else if(jQuery(window).width()<=640)f=jQuery(window).width()/640*y;else f=y;if(0<jQuery(".header-content-with_tab").length)f=jQuery(".header-content-with_tab").width()/4-10}else f=y;(p=jQuery(".bwg_mosaic_thumb_"+t)).each(function(e){jQuery(this).removeAttr("style"),jQuery(this).parent().removeAttr("style");var t=jQuery(this).data("width"),i=jQuery(this).data("height");""!=t&&""!=i&&void 0!==t&&void 0!==i||(t=p.get(e).naturalWidth,i=p.get(e).naturalHeight),p.eq(e).height(i*f/t),p.eq(e).width(f)});o=jQuery("#bwg_mosaic_thumbnails_div_"+t).width()/100*parseInt(e.attr("data-total-width"));jQuery("#"+i).width(o);var j=f+2*r<o?f:o-2*r,Q=Math.min(Math.floor(o/(j+2*r)),p.length),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;p.each(function(e){for(var t=0,i=k[0],a=0;a<Q;a++)i>k[a]&&(i=k[a],t=a);v[e]=t,x[t]++,H=i,T=0+t*(j+2*r),p.eq(e).parent().css({top:H,left:T}),k[t]+=p.eq(e).height()+2*r}),(u=[])[0]=1;var C=0,I=[],E=0,M=0;for(z=0;z<Q;z++)C+=j,I[z]=0,p.each(function(e){v[e]==z&&(I[z]+=p.eq(e).height())}),0!=I[z]&&(E+=j/I[z],M+=j*x[z]*2*r/I[z]);var S=0;0!=E&&(S=(C+M)/E);for(z=0;z<Q;z++)0!=I[z]&&(u[z]=(S-2*x[z]*r)/I[z]);var O,T=[];T[0]=0;for(z=1;z<=Q;z++)T[z]=T[z-1]+j*u[z-1]+2*r;var H=[];for(z=0;z<Q;z++)H[z]=0;(O=[])[0]=0,p.each(function(e){var t=p.eq(e).width(),i=p.eq(e).height();p.eq(e).width(t*u[v[e]]),p.eq(e).height(i*u[v[e]]),p.eq(e).parent().css({top:H[v[e]],left:T[v[e]]}),H[v[e]]+=i*u[v[e]]+2*r,O[v[e]]=e}),jQuery("#"+i).width(T[Q]).height(H[0])}}function bwg_thumbnail_mosaic(e){var t=jQuery(e),i=jQuery.Deferred();if(i.done([bwg_thumbnail_mosaic_logic]).done(function(e){"1"!=e.data("mosaic-thumb-transition")&&jQuery(".bwg_mosaic_thumb_spun_"+t).css({transition:"all 0.3s ease 0s","-webkit-transition":"all 0.3s ease 0s"});var t=e.data("bwg");jQuery(".bwg_mosaic_thumbnails_"+t).css({visibility:"visible"}),jQuery(".tablenav-pages_"+t).css({visibility:"visible"}),bwg_container_loaded(t),jQuery(".bwg_mosaic_thumb_"+t).removeClass("bwg-hidden"),jQuery("#bwg_mosaic_thumbnails_div_"+t).removeClass("bwg-hidden")}),i.resolve(t),"hover"==t.attr("data-image-title")){var a=parseInt(t.attr("data-thumb-padding"))/2,r=parseInt(t.attr("data-thumb-border"))+a;bwg_mosaic_title_on_hover(t.data("bwg"),t,r)}"hover"==t.attr("data-ecommerce-icon")&&(jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseenter",function(){var e=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).width(),t=jQuery(this).parents(".bwg-mosaic-thumb-span").children(".bwg_mosaic_thumb_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(e);var i=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).width(),a=jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).height();jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:r+.5*t-.5*a,left:r+.5*e-.5*i,opacity:1})}),jQuery(".bwg_mosaic_thumb_spun_"+bwg).on("mouseleave",function(){jQuery(this).children(".bwg_ecommerce_spun1_"+bwg).css({top:0,left:-1e4,opacity:0,padding:t.attr("data-title-margin")})}))}function bwg_mosaic_title_on_hover(t,e,i){jQuery(".bwg-mosaic-thumb-span").on("mouseenter",function(){var e=jQuery(this).children(".bwg_mosaic_thumb_"+t).width();jQuery(this).find(".bwg_mosaic_title_spun1_"+t).width(e),jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:1,"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})}),jQuery(".bwg-mosaic-thumb-span").on("mouseleave",function(){jQuery(this).find(".bwg_mosaic_title_spun1_"+t).css({opacity:0,padding:e.attr("data-title-margin"),"max-height":"calc(100% - "+2*i+"px)",overflow:"hidden"})})}function bwg_mosaic_ajax(e,t){var i=0;jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("load",function(){++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_mosaic_thumb_spun_"+e+" img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100),++i>=t&&bwg_thumbnail_mosaic(jQuery(".bwg-mosaic-thumbnails[data-bwg="+e+"]"))}),jQuery(".bwg_container").each(function(){var e=jQuery(this).data("bwg");0<jQuery(this).find(".wd_error").length&&bwg_container_loaded(e)})}function bwg_add_album(){var t=!1;"1"!=bwg_objectsL10n.front_ajax&&jQuery(document).off("click",".bwg-album").on("click",".bwg-album",function(){if(!t){var e=jQuery(this).attr("data-bwg");return t=!0,setTimeout(function(){t=!1},100),bwg_ajax("gal_front_form_"+e,e,jQuery(this).attr("data-container_id"),jQuery(this).attr("data-alb_gal_id"),jQuery(this).attr("data-album_gallery_id"),jQuery(this).attr("data-def_type"),"",jQuery(this).attr("data-title")),!1}}),jQuery(".bwg_description_more").on("click",function(){jQuery(this).hasClass("bwg_more")?(jQuery(this).parent().find(".bwg_description_full").show(),jQuery(this).addClass("bwg_hide").removeClass("bwg_more"),jQuery(this).html(jQuery(this).data("hide-msg"))):(jQuery(this).parent().find(".bwg_description_full").hide(),jQuery(this).addClass("bwg_more").removeClass("bwg_hide"),jQuery(this).html(jQuery(this).data("more-msg")))})}function bwg_add_lightbox(){var i=!1;jQuery(document).on("click",".bwg_lightbox .bwg-item0, .bwg_lightbox .bwg_slide, .bwg_lightbox .bwg-carousel-image, .bwg_lightbox .bwg-title1",function(e){e.stopPropagation(),e.preventDefault();var t=jQuery(this).closest("a");if(!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(t).attr("data-image-id"),jQuery(t).closest(".bwg_container")),!1}),jQuery(".bwg_lightbox .bwg_ecommerce").on("click",function(e){if(e.stopPropagation(),!i)return i=!0,setTimeout(function(){i=!1},100),bwg_gallery_box(jQuery(this).closest(".bwg_lightbox").attr("data-image-id"),jQuery(this).closest(".bwg_container"),!0),!1})}function bwg_filter_by_tag(e){var t,i="",a="",r=(a=jQuery(e).parent().parent().hasClass("bwg_tag_buttons_view")?jQuery(e).parent().parent():jQuery(e).parent().parent().parent()).find(".current_view").val(),_=a.find(".form_id").val(),s=a.find(".cur_gal_id").val(),o=a.find(".album_gallery_id").val(),l=a.find(".type").val();jQuery(e).parent().find(".opt.selected").each(function(){i=i+jQuery(e).text()+","}),""==(i=i.slice(0,-1))&&(i=bwg_objectsL10n.bwg_select_tag),jQuery(e).parent().find(".CaptionCont").attr("title",i),jQuery(e).parent().find(".CaptionCont .placeholder").html(i);var n=jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+s).val();t="string"==typeof n&&""!==n?n.split(","):[],"object"==typeof n&&(t=n),jQuery(".bwg_tags_container_"+r+" #bwg_tag_id_"+r).val(t),bwg_select_tag(r,_,s,o,l,!1)}function bwg_document_ready(i){bwg_add_lightbox(),i.data("right-click-protection")&&bwg_disable_right_click(i),jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var e=i.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&e.length)for(var t=0;t<e[0].length;t++)void 0===e[0][t].attributes.selected&&(e[0][t].selected=!1);e.length&&(e.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),e.off("change").on("change",function(){bwg_filter_by_tag(this)})),bwg_search_tag_init(i);var a=i.find(".cur_gal_id").val(),r=i.find(".current_view").val(),_=i.find(".bwg_tags_container_"+r+" .bwg_tag_button_view_container"),s=i.find("#bwg_tag_id_"+a),o=parseInt(2*_.find(".bwg_tags_filter_buttons").outerHeight(!0));_.length&&(_.find(".bwg_tags_filter_buttons").off("click").on("click",function(){if(!jQuery(this).hasClass("active")){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1"),""==s.val()?s.val(jQuery(this).val()):s.val(s.val()+","+jQuery(this).val()),bwg_filter_by_tag(this)}return!1}),_.find(".bwg_all_tags").off("click").on("click",function(){return jQuery(this).hasClass("active")||(s.val(""),bwg_filter_by_tag(this)),!1}),""!=s.val()&&_.find(".bwg_all_tags").removeClass("active"),s.val().split(",").forEach(function(t){_.find(".bwg_tags_filter_buttons").each(function(){if(jQuery(this).val()==t){var e=jQuery(this).position().top;o<e&&i.find(".show_bottom_tag").val("1")}})}),bwg_tags_button_section_visibility());var l=i.find(".bwg_order");l.length&&l.SumoSelect({triggerChangeCombined:!0,forceCustomRendering:!0}),jQuery(this).find("search_placeholder_title").hide(),""==jQuery(this).find(".bwg_search_input").val()&&jQuery(this).find("search_placeholder_title").show(),jQuery(".bwg_thumbnail .bwg_search_container_2").focusout(function(e){""==jQuery(this).find(".bwg_search_input").val()&&(jQuery(this).find(".search_placeholder_title").show(),jQuery(this).find(".bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery(this).find(".bwg_search_reset_container").addClass("bwg-hidden"))}),jQuery(".search_tags").on("sumo:opened",function(){var e=jQuery(this).parents(".bwg_container").height(),t=jQuery(this).parents(".bwg_container").find(".wd_error").length,i=jQuery(this).parents(".bwg_container").find(".SumoSelect>.optWrapper>.options");void 0!==i&&(e-50<i.height()&&!t&&i.css("max-height",e-50));0==jQuery(this).parent().find("ul li").length&&(jQuery(".no-match").html(bwg_objectsL10n.bwg_tag_no_match),jQuery(".no-match").show())}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:closed",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-up opened"),jQuery(this).find("label i").addClass("bwg-icon-angle-down closed")}),jQuery(".bwg_thumbnail .SumoSelect").on("sumo:opened",function(){jQuery(this).find("label i").removeClass("bwg-icon-angle-down closed"),jQuery(this).find("label i").addClass("bwg-icon-angle-up opened")}),bwg_add_album();var n=window.location.hash.substring(1);if(n&&"-1"!=n.indexOf("bwg")){bwg_hash_array=n.replace("bwg","").split("/");var g=jQuery(".bwg_container");g&&bwg_gallery_box(bwg_hash_array[1],g,!1,bwg_hash_array[0])}bwg_resize_search_line()}function bwg_search_tag_init(e){jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");var t=e.find(".search_tags");if("1"==bwg_objectsL10n.front_ajax&&t.length)for(var i=0;i<t[0].length;i++)void 0===t[0][i].attributes.selected&&(t[0][i].selected=!1);t.length&&(t.SumoSelect({triggerChangeCombined:!0,placeholder:bwg_objectsL10n.bwg_select_tag,search:!0,searchText:bwg_objectsL10n.bwg_search,forceCustomRendering:!0,noMatch:bwg_objectsL10n.bwg_tag_no_match,captionFormatAllSelected:bwg_objectsL10n.bwg_all_tags_selected,captionFormat:"{0} "+bwg_objectsL10n.bwg_tags_selected,okCancelInMulti:!0,locale:[bwg_objectsL10n.ok,bwg_objectsL10n.cancel,bwg_objectsL10n.select_all]}),t.off("change").on("change",function(){bwg_filter_by_tag(this)}))}function bwg_clear_search_input(e){if("1"!=bwg_objectsL10n.front_ajax)jQuery("#bwg_search_input_"+e).val(""),jQuery("#bwg_search_container_1_"+e+" .bwg_search_loupe_container1").addClass("bwg-hidden"),jQuery("#bwg_search_container_1_"+e+" .bwg_search_reset_container").addClass("bwg-hidden");else{var t=window.location.href,i=bwg_remove_url_parameter("bwg_search_"+e,t,t);window.location.replace(i)}}function bwg_check_search_input_enter(e,t){return"Enter"!=t.key||(jQuery(e).closest(".bwg_search_container_1").find(".bwg_search").trigger("click"),!1)}function bwg_ajax(t,i,a,r,e,_,s,o,l,n,g,w){if("1"!=bwg_objectsL10n.front_ajax||!0===n){jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),"function"==typeof bwg_scroll_load_action&&jQuery(window).off("scroll",bwg_scroll_load_action),jQuery(".bwg_thumbnail .search_tags").off("sumo:closed");var b=jQuery("#"+t).data("ajax-url"),u=0;if(void 0===n)n=!1;var d,h=jQuery("#page_number_"+i).val(),m=jQuery("#bwg_search_input_"+i).val(),c={},p=jQuery("#bwg_album_breadcrumb_"+i).val();if(p&&!0!==n){var y=JSON.parse(p);if("back"==r){y.splice(-1,1);var f=y.slice(-1)[0];r=f.id,h=f.page,c["action_"+i]="back"}else"numeric"===n||s?(y.splice(-1,1),y.push({id:r,page:h,search:m})):(y.push({id:r,page:1}),h=1);c["bwg_album_breadcrumb_"+i]=JSON.stringify(y)}if(c["bwg-preview-type"]=jQuery("#"+t).data("gallery-type"),c.gallery_type=jQuery("#"+t).data("gallery-type"),c.gallery_id=jQuery("#"+t).data("gallery-id"),c.tag=jQuery("#"+t).data("tag"),c.album_id=jQuery("#"+t).data("album-id"),c.theme_id=jQuery("#"+t).data("theme-id"),c.shortcode_id=jQuery("#"+t).data("shortcode-id"),c.bwg=i,c.current_url=encodeURI(jQuery("#bwg_container1_"+i).data("current-url")),s&&(h=1),void 0===o||""==o)o="";if(void 0===g||""==g)g="";if(void 0===l||""==l)l=jQuery(".bwg_order_"+i).val();if(void 0===w)w=!0;if(1==w&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),c["page_number_"+i]=h,c["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),c["album_gallery_id_"+i]=r,c["type_"+i]=_,c["title_"+i]=o,c["description_"+i]=g,c["sortImagesByValue_"+i]=l,c["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(c["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==c["bwg_album_breadcrumb_"+i]){var j=JSON.parse(c["bwg_album_breadcrumb_"+i]);jQuery.each(j,function(e,t){c["bwg_search_"+i]="",r==t.id&&(c["bwg_search_"+i]=t.search)})}var Q=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val();return d="string"==typeof Q&&""!==Q?Q.split(","):[],"object"==typeof Q&&(d=Q),c["bwg_tag_id_"+a]=d,jQuery("#ajax_loading_"+i).removeClass("bwg-hidden"),jQuery(".bwg_load_more_ajax_loading").css({top:jQuery("#bwg_container1_"+bwg).height()-jQuery(".bwg_load_more_ajax_loading").height()}),jQuery.ajax({type:"POST",url:b,data:c,success:function(e){jQuery(e).find(".bwg_masonry_thumb_spun_"+i+" img").length,u=jQuery(e).find(".bwg_mosaic_thumb_spun_"+i+" img").length,!0===n?(a=="bwg_thumbnails_mosaic_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).find("#"+a).html()):a=="bwg_album_compact_"+i?jQuery("#"+a).append(jQuery(e).closest(".bwg-album-thumbnails").html()):a=="bwg_thumbnails_masonry_"+i?jQuery(".bwg-container-temp"+i).append(jQuery(e).closest(".bwg-container-"+i).html()):jQuery("#"+a).append(jQuery(e).closest(".bwg-container-"+i).html()),jQuery(".bwg_nav_cont_"+i).html(jQuery(e).closest(".bwg_nav_cont_"+i).html())):jQuery("#bwg_container3_"+i).html(e),bwg_remove_lazy_loader_icon()},complete:function(){jQuery("div[id^='bwg_container1_'] img").each(function(){null!=jQuery(this).attr("data-lazy-src")&&""!=jQuery(this).attr("data-lazy-src")?jQuery(this).attr("src",jQuery(this).attr("data-lazy-src")):null!=jQuery(this).attr("data-src")&&""!=jQuery(this).attr("data-src")&&jQuery(this).attr("src",jQuery(this).attr("data-src"))}),jQuery(".blog_style_image_buttons_conteiner_"+i).find(jQuery(".bwg_blog_style_img_"+i)).on("load",function(){jQuery(".bwg_blog_style_img_"+i).closest(jQuery(".blog_style_image_buttons_conteiner_"+i)).show()}),""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+a).val(d),d.forEach(function(t){jQuery(".bwg_tags_container_"+i+" .bwg_tags_filter_buttons").each(function(){var e=parseInt(2*jQuery(this).outerHeight(!0));jQuery(this).val()==t&&(jQuery(this).addClass("active"),e<jQuery(this).position().top&&jQuery(".bwg_tags_container_"+i+" .show_bottom_tag").val("1"),jQuery(".bwg_tags_container_"+i+" .bwg_all_tags").removeClass("active"))})}),jQuery(".pagination-links_"+i).length&&jQuery("html, body").animate({scrollTop:jQuery("#"+t).offset().top-150},500),bwg_document_ready(jQuery("#bwg_container1_"+i));var e=jQuery("#bwg_container1_"+i).data("gallery-type");if(jQuery("#bwg_container1_"+i+" .bwg-album-thumbnails").length){bwg_all_thumnails_loaded(".bwg-container-"+i)&&bwg_container_loaded(i)}else{switch(e){case"thumbnails":case"thumbnails_masonry":case"album_compact_preview":case"album_masonry_preview":case"album_extended_preview":bwg_all_thumnails_loaded(".bwg-container-"+i);break;case"slideshow":bwg_slideshow_ready(i);break;case"carousel":bwg_carousel_ready(i),bwg_carousel_onload(jQuery("#bwg_container1_"+i));break;case"image_browser":bwg_image_browser_ready(jQuery("#bwg_container1_"+i));break;case"blog_style":bwg_blog_style_ready(jQuery("#bwg_container1_"+i))}bwg_mosaic_ajax(i,u)}jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_16x9_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height(.5625*jQuery(this).width())}),jQuery(".blog_style_images_conteiner_"+i+" .bwg_embed_frame_instapost_"+i).each(function(e){jQuery(this).width(jQuery(this).parent().width()),jQuery(this).height((jQuery(this).width()-16)*jQuery(this).attr("data-height")/jQuery(this).attr("data-width")+96)}),jQuery("#bwg_embed_frame_16x9_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery("#bwg_embed_frame_16x9_"+i).height(.5625*jQuery("#bwg_embed_frame_16x9_"+i).width()),jQuery("#bwg_embed_frame_instapost_"+i).width(jQuery("#bwg_embed_frame_16x9_"+i).parent().width()),jQuery(".bwg_embed_frame_instapost_"+i).height((jQuery(".bwg_embed_frame_instapost_"+i).width()-16)*jQuery(".bwg_embed_frame_instapost_"+i).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+i).attr("data-width")+96),jQuery("#bwg_search_input_"+i).val(c["bwg_search_"+i]),""!=jQuery("#bwg_search_input_"+i).val()?(jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").hide(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_reset_container").show(),jQuery("#bwg_search_input_"+i).parent().parent().find(".bwg_search_loupe_container1").show()):jQuery("#bwg_search_input_"+i).parent().find(".search_placeholder_title").show();jQuery("#bwg_container2_"+i+" .cur_gal_id").val();""==d&&(d=[]),jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+i).val(d)}}),!1}if("back"===r)return-1==document.referrer.indexOf(window.location.host)?(str=jQuery(location).attr("href"),void window.location.replace(str.substring(0,str.indexOf("type_0")))):void window.history.back();var v=jQuery("#bwg_search_input_"+i).val(),x=jQuery(".bwg_tags_container_"+i+" .cur_gal_id").val(),k=window.location.href,z="",C=jQuery(".bwg_tags_container_"+i+" #bwg_tag_id_"+x).val();if(jQuery(".bwg_tags_container_"+i).parent().hasClass("bwg_tag_select_view")&&(C=C.toString()),"#"==k.substr(-1)&&(k=k.slice(0,-1)),""!==v&&void 0!==v?!1!==(z=bwg_add_url_parameter(z=bwg_remove_url_parameter("page_number_"+i,k),"bwg_search_"+i,v))&&(k=z):!1!==(z=bwg_remove_url_parameter("bwg_search_"+i,k))&&(k=z),void 0!==l&&""!==l&&!1!==(z=bwg_add_url_parameter(k,"sort_by_"+i,l))&&(k=z),null!=C&&0<C.length){var I="",E=C.split(",");jQuery.each(E,function(e){var t=",";e===E.length-1&&(t=""),I+=E[e]+t}),""!==I&&!1!==(z=bwg_add_url_parameter(k,"filter_tag_"+i,I))&&(k=z)}else!1!==(z=bwg_remove_url_parameter("filter_tag_"+i,z))&&(k=z);window.location.href=k}function bwg_add_url_parameter(e,t,i){var a=new RegExp("([?&])"+t+"=.*?(&|$)","i"),r=-1!==e.indexOf("?")?"&":"?";return e.match(a)?e.replace(a,"$1"+t+"="+i+"$2"):e+r+t+"="+i}function bwg_remove_url_parameter(e,t){var i=t.split("?"),a=i[0]+"?",r="";if(void 0!==i[1]&&(r=i[1]),""===r)return t;var _,s,o=decodeURIComponent(r).split("&");for(s=0;s<o.length;s++)(_=o[s].split("="))[0]!=e&&(a=a+_[0]+"="+_[1]+"&");return a.substring(0,a.length-1)}function bwg_select_tag(e,t,i,a,r,_){_&&jQuery(".bwg_tags_container_"+e+" #bwg_tag_id_"+i).val(""),bwg_ajax(t,e,i,a,"",r,1,"")}function bwg_cube(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(void 0!==g&&""!==g){b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration;bwg_params[g].event_stack}else w=bwg_transition_duration;if(!bwg_testBrowser_cssTransitions(g))return bwg_fallback(o,l,n,g);if(!bwg_testBrowser_cssTransforms3d(g))return bwg_fallback3d(o,l,n,g);function d(){if(jQuery(o).removeAttr("style"),jQuery(l).removeAttr("style"),jQuery(".bwg_slider"+u).removeAttr("style"),jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),jQuery(".bwg_image_info").show(),jQuery(o).html(""),b){bwg_change_watermark_container(g),bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].data,t=bwg_params[g].event_stack}else{e="";gallery_box_data.bwg_trans_in_progress=!1;t=gallery_box_data.event_stack}if(void 0!==t&&0<t.length){var i=t[0].split("-");t.shift(),bwg_change_image(i[0],i[1],e,!0,g)}bwg_change_watermark_container()}b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+"_"+g).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g),jQuery(".bwg_slide_bg_"+g).css("perspective",1e3)):(gallery_box_data.bwg_trans_in_progress=!0,jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"),jQuery(".bwg_slide_bg").css("perspective",1e3)),jQuery(o).css({transform:"translateZ("+e+"px)",backfaceVisibility:"hidden"}),jQuery(l).css({opacity:1,backfaceVisibility:"hidden",transform:"translateY("+i+"px) translateX("+t+"px) rotateY("+r+"deg) rotateX("+a+"deg)"}),jQuery(".bwg_slider"+u).css({transform:"translateZ(-"+e+"px)",transformStyle:"preserve-3d"}),setTimeout(function(){jQuery(".bwg_slider"+u).css({transition:"all "+w+"ms ease-in-out",transform:"translateZ(-"+e+"px) rotateX("+_+"deg) rotateY("+s+"deg)"})},20),jQuery(".bwg_slider"+u).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(d)),0==w&&d()}function bwg_cubeH(e,t,i,a){var r=jQuery(e).width()/2;"right"==i?bwg_cube(r,r,0,0,90,0,-90,e,t,i,a):"left"==i&&bwg_cube(r,-r,0,0,-90,0,90,e,t,i,a)}function bwg_cubeV(e,t,i,a){var r=jQuery(e).height()/2;"right"==i?bwg_cube(r,0,-r,90,0,-90,0,e,t,i,a):"left"==i&&bwg_cube(r,0,r,-90,0,90,0,e,t,i,a)}function bwg_fade(e,t,i,a){var r,_=!1;function s(){jQuery(".bwg_image_info").show(),bwg_change_watermark_container(a),_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1}r=void 0!==a&&""!==a?(_=!0,bwg_params[a].bwg_trans_in_progress=!0,bwg_params[a].bwg_transition_duration):(gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.bwg_transition_duration),_?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+a).removeClass("bwg_slideshow_thumb_active_"+a).addClass("bwg_slideshow_thumb_deactive_"+a),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_thumb_deactive_"+a).addClass("bwg_slideshow_thumb_active_"+a),jQuery(".bwg_slideshow_dots_"+a).removeClass("bwg_slideshow_dots_active_"+a).addClass("bwg_slideshow_dots_deactive_"+a),jQuery("#bwg_dots_"+bwg_params[a].bwg_current_key+"_"+a).removeClass("bwg_slideshow_dots_deactive_"+a).addClass("bwg_slideshow_dots_active_"+a)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active")),bwg_testBrowser_cssTransitions()?(jQuery(t).css("transition","opacity "+r+"ms linear"),jQuery(e).css("transition","opacity "+r+"ms linear"),jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),jQuery(t).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(s))):(jQuery(e).animate({opacity:0,"z-index":1},r),jQuery(t).animate({opacity:1,"z-index":2},{duration:r,complete:function(){_?bwg_params[a].bwg_trans_in_progress=!1:gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),s()}}),jQuery(e).fadeTo(r,0),jQuery(t).fadeTo(r,1)),0==r&&s()}function bwg_grid(e,t,i,a,r,_,s,o,l,n,g){var w,b=!1,u="";if(event_stack=void 0!==g&&""!==g?(b=!0,bwg_params[g].bwg_trans_in_progress=!0,u="_"+g,w=bwg_params[g].bwg_transition_duration,bwg_params[g].event_stack):(w=bwg_transition_duration,gallery_box_data.bwg_trans_in_progress=!0,gallery_box_data.event_stack),!bwg_testBrowser_cssTransitions())return bwg_fallback(o,l,n);b?(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+g).removeClass("bwg_slideshow_thumb_active_"+g).addClass("bwg_slideshow_thumb_deactive_"+g),jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_thumb_deactive_"+g).addClass("bwg_slideshow_thumb_active_"+g),jQuery(".bwg_slideshow_dots_"+g).removeClass("bwg_slideshow_dots_active_"+g).addClass("bwg_slideshow_dots_deactive_"+g),jQuery("#bwg_dots_"+bwg_params[g].bwg_current_key+u).removeClass("bwg_slideshow_dots_deactive_"+g).addClass("bwg_slideshow_dots_active_"+g)):(jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive"),jQuery("#bwg_filmstrip_thumbnail_"+gallery_box_data.bwg_current_key).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active"));var d=w/(e+t);var h=jQuery(o).find("img"),m=jQuery(o).find("figure"),c=(jQuery(o).find("iframe").css("opacity",0),jQuery('<span style="display: block;" />').addClass("bwg_grid"+u));jQuery(o).prepend(c);var p,y,f,j,Q,v,x,k,z,C,I,E=jQuery(".bwg_slide_bg"+u),M=h.width(),S=h.height(),O=E.width(),T=E.height(),H=Math.floor(O/e),L=Math.floor(T/t),A=O-e*H,B=Math.ceil(A/e),W=T-t*L,D=Math.ceil(W/t),R=0,F=Math.ceil((jQuery(".bwg_slide_bg"+u).width()-h.width())/2),N=void 0===h.attr("src")?"":h.attr("src");a="min-auto"===(a="auto"===a?O:a)?-O:a,r="min-auto"===(r="auto"===r?T:r)?-T:r;for(var P=0;P<e;P++){var U=0,V=Math.floor((jQuery(".bwg_slide_bg"+u).height()-h.height())/2),q=H;if(0<A){var J=B<=A?B:A;q+=J,A-=J}for(var G=0;G<t;G++){var Y=L,$=W;0<$&&(Y+=J=D<=$?D:W,$-=J),c.append((p=q,y=Y,f=U,j=V,Q=R,v=F,x=N,k=M,z=S,C=g,void 0,I=(P+G)*d,jQuery('<span class="bwg_gridlet'+u+'" />').css({display:"block",width:p,height:y,top:f,left:Q,backgroundImage:'url("'+x+'")',backgroundColor:b?jQuery(".bwg_slideshow_image_wrap_"+C).css("background-color"):jQuery(".spider_popup_wrap").css("background-color"),backgroundRepeat:"no-repeat",backgroundPosition:v+"px "+j+"px",backgroundSize:k+"px "+z+"px",transition:"all "+w+"ms ease-in-out "+I+"ms",transform:"none"}))),U+=Y,V-=Y}F-=q,R+=q}var X=c.children().last();function K(){if(jQuery(o).css({opacity:0,"z-index":1}),jQuery(l).css({opacity:1,"z-index":2}),h.css("opacity",1),m.css("opacity",1),c.remove(),b){bwg_params[g].bwg_trans_in_progress=!1;var e=bwg_params[g].event_stack,t=bwg_params[g].data}else{gallery_box_data.bwg_trans_in_progress=!1;e=gallery_box_data.event_stack,t=""}if(jQuery(".bwg_image_info").show(),jQuery(o).html(""),void 0!==e&&0<e.length){var i=e[0].split("-");e.shift(),bwg_change_image(i[0],i[1],t,!0,g)}b?bwg_change_watermark_container(g):bwg_change_watermark_container()}c.show(),h.css("opacity",0),m.css("opacity",0),c.children().first().addClass("rs-top-left"),c.children().last().addClass("rs-bottom-right"),c.children().eq(t-1).addClass("rs-bottom-left"),c.children().eq(-t).addClass("rs-top-right"),setTimeout(function(){c.children().css({opacity:s,transform:"rotate("+i+"deg) translateX("+a+"px) translateY("+r+"px) scale("+_+")"})},1),jQuery(l).css("opacity",1),jQuery(X).one("webkitTransitionEnd transitionend otransitionend oTransitionEnd mstransitionend",jQuery.proxy(K)),0==w&&K()}function bwg_sliceH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,8,0,r,0,1,0,e,t,i,a)}function bwg_sliceV(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(10,1,0,0,r,1,0,e,t,i,a)}function bwg_slideV(e,t,i,a){if("right"==i)var r="auto";else if("left"==i)r="min-auto";bwg_grid(1,1,0,0,r,1,1,e,t,i,a)}function bwg_slideH(e,t,i,a){if("right"==i)var r="min-auto";else if("left"==i)r="auto";bwg_grid(1,1,0,r,0,1,1,e,t,i,a)}function bwg_scaleOut(e,t,i,a){bwg_grid(1,1,0,0,0,1.5,0,e,t,i,a)}function bwg_scaleIn(e,t,i,a){bwg_grid(1,1,0,0,0,.5,0,e,t,i,a)}function bwg_blockScale(e,t,i,a){bwg_grid(8,6,0,0,0,.6,0,e,t,i,a)}function bwg_kaleidoscope(e,t,i,a){bwg_grid(10,8,0,0,0,1,0,e,t,i,a)}function bwg_fan(e,t,i,a){if("right"==i)var r=45,_=100;else if("left"==i)r=-45,_=-100;bwg_grid(1,10,r,_,0,1,0,e,t,i,a)}function bwg_blindV(e,t,i,a){bwg_grid(1,8,0,0,0,.7,0,e,t,"",a)}function bwg_blindH(e,t,i,a){bwg_grid(10,1,0,0,0,.7,0,e,t,"",a)}function bwg_random(e,t,i,a){var r=["sliceH","sliceV","slideH","slideV","scaleOut","scaleIn","blockScale","kaleidoscope","fan","blindH","blindV"];this["bwg_"+r[Math.floor(Math.random()*r.length)]](e,t,i,a)}function bwg_change_watermark_container(t){jQuery(".bwg_slider"+(void 0!==t&&""!==t?"_"+t:"")).children().each(function(){if(2==jQuery(this).css("zIndex")){var e=jQuery(this).find("img");if(e.length)if(e.prop("complete"))bwg_change_each_watermark_container(e.width(),e.height(),t);else e.on("load",function(){bwg_change_each_watermark_container(e.width(),e.height(),t)});else(e=jQuery(this).find("iframe")).length||(e=jQuery(this).find("video")),bwg_change_each_watermark_container(e.width(),e.height(),t)}})}function bwg_change_each_watermark_container(e,t,i){var a=void 0!==i&&""!==i?"_"+i:"",r=void 0!==i&&""!==i?"_slideshow":"";if(jQuery(".bwg"+r+"_watermark_spun"+a).width(e),jQuery(".bwg"+r+"_watermark_spun"+a).height(t),jQuery(".bwg"+r+"_watermark"+a).css({display:""}),void 0===i||""===i){var _=0;(jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_ecommerce_container").hasClass("bwg_open"))&&(_=gallery_box_data.lightbox_comment_width),e<=jQuery(window).width()-_&&(jQuery(".bwg_watermark_image").css({width:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}),jQuery(".bwg_watermark_text, .bwg_watermark_text:hover").css({fontSize:(jQuery(".spider_popup_wrap").width()-_)*gallery_box_data.watermark_font_size/gallery_box_data.image_width}))}else jQuery(".bwg"+r+"_title_spun"+a).width(e),jQuery(".bwg"+r+"_title_spun"+a).height(t),jQuery(".bwg"+r+"_description_spun"+a).width(e),jQuery(".bwg"+r+"_description_spun"+a).height(t);jQuery.trim(jQuery(".bwg"+r+"_title_text"+a).text())&&jQuery(".bwg_slideshow_title_text"+a).css({display:""}),jQuery.trim(jQuery(".bwg"+r+"_description_text"+a).text())&&jQuery(".bwg"+r+"_description_text"+a).css({display:""})}function bwg_set_filmstrip_pos(e,t,i){var a,r=void 0!==t&&""!==t?"_"+t:"",_=void 0!==t&&""!==t?"_slideshow":"";a=void 0!==t&&""!==t?bwg_params[t].left_or_top:gallery_box_data.left_or_top;var s=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-top-bottom-space")),o=parseInt(jQuery(".bwg_filmstrip_thumbnails").attr("data-all-images-right-left-space"));if(void 0===t||""===t){if("outerWidth"==gallery_box_data.outerWidth_or_outerHeight)var l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerWidth(!0)/2;else if("outerHeight"==gallery_box_data.outerWidth_or_outerHeight)l=-bwg_current_filmstrip_pos-jQuery(".bwg_filmstrip_thumbnail").outerHeight(!0)/2;if("width"==gallery_box_data.width_or_height)var n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").width(),l+e/2));else if("height"==gallery_box_data.width_or_height)n=Math.min(0,Math.max(e-jQuery(".bwg_filmstrip_thumbnails").height(),l+e/2))}else if("width"==bwg_params[t].width_or_height)l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).width()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).width(),l+e/2));else l=-bwg_params[t].bwg_current_filmstrip_pos-(jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).height()+bwg_params[t].filmstrip_thumb_margin_hor)/2,n=Math.min(0,Math.max(e-jQuery(".bwg_slideshow_filmstrip_thumbnails"+r).height(),l+e/2));0<n+o&&(o=0),0<n+s&&(s=0),"left"==a?jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({left:n+o},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}}):jQuery(".bwg"+_+"_filmstrip_thumbnails"+r).animate({top:n+s},{duration:500,complete:function(){bwg_filmstrip_arrows(t)}})}function bwg_filmstrip_arrows(e){var t=void 0!==e&&""!==e?"_slideshow":"",i=void 0!==bwg_params[e]&&2==bwg_params[e].slideshow_filmstrip_type?"_filmstrip_fix_count":"_filmstrip",a=void 0!==e&&""!==e?"_"+e:"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).width(),_=jQuery(".bwg"+t+i+a).width();else r=jQuery(".bwg"+t+"_filmstrip_thumbnails"+a).height(),_=jQuery(".bwg"+t+i+a).height();r<_?(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).hide()):(jQuery(".bwg"+t+"_filmstrip_left"+a).hide(),jQuery(".bwg"+t+"_filmstrip_right"+a).show())}function bwg_slideshow_filmstrip_fix_dimension(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e&&void 0!==bwg_params[e].outerWidth_or_outerHeight?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e&&void 0!==bwg_params[e].left_or_top?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_slideshow_filmstrip_fix_count(e){var t,i,a,r,_,s,o=void 0!==e&&""!==e?"_"+e:"",l=void 0!==e&&""!==e?"_slideshow":"",n=void 0!==e&&""!==e?bwg_params[e].outerWidth_or_outerHeight:gallery_box_data.outerWidth_or_outerHeight,g=void 0!==e&&""!==e?bwg_params[e].left_or_top:gallery_box_data.left_or_top;i="outerWidth"==n?(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerWidth(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerWidth(!0)):(t=jQuery(".bwg"+l+"_filmstrip_fix_count"+o).outerHeight(!0),jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).outerHeight(!0)),s="left"==g?(a=jQuery(".bwg"+l+"_thumb_active"+o).position().left,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().left+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().left)+t):(a=jQuery(".bwg"+l+"_thumb_active"+o).position().top,r="outerWidth"==n?jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerWidth(!0):jQuery(".bwg"+l+"_thumb_active"+o).position().top+jQuery(".bwg"+l+"_thumb_active"+o).outerHeight(!0),_=jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top,Math.abs(jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).position().top)+t),i<t||(a<Math.abs(_)?"left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-a},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):s<r&&("left"==g?jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({left:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}}):jQuery(".bwg"+l+"_filmstrip_thumbnails"+o).animate({top:-(r-t)},{duration:500,complete:function(){bwg_filmstrip_arrows(e)}})))}function bwg_resize_slideshow_filmstrip_fix_count(e){var _=e.bwg,t=e.parent_width,i=e.params,a=i.filmstrip_direction,r=i.data,s=i.filmstrip_thumb_margin_hor,o=jQuery(window).width()<=767&&5<i.slideshow_thumbnails_count,l=o?5:i.slideshow_thumbnails_count,n="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_container_"+_,g="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_,w="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_,b="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnails_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_,u="#bwg_container1_"+_+" #bwg_container2_"+_+" .bwg_slideshow_image_container_"+_,d=jQuery(u).data("filmstrip-position"),h=(jQuery(u).data("filmstrip-size"),i.slideshow_filmstrip_rl_btn_size);if(jQuery("#bwg_container1_"+_).css({width:"100%"}),jQuery("#bwg_container1_"+_+" #bwg_container2_"+_).css({width:t}),"undefined"==typeof resize_in_progress||!1===resize_in_progress){window.resize_in_progress=!0,void 0!==m&&clearTimeout(m);var m=setTimeout(function(){resize_in_progress=!1;var e={};"bottom"==d||"top"==d?e.left=0:e.top=0,jQuery(w).css(e);var t="horizontal"==a?"table-cell":"block";jQuery(n).find(".bwg_slideshow_filmstrip_left_"+_).css({display:"none"}),jQuery(n).find(".bwg_slideshow_filmstrip_left_disabled_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_"+_).css({display:t}),jQuery(n).find(".bwg_slideshow_filmstrip_right_disabled_"+_).css({display:"none"})},500)}if(bwg_resize_instagram_post(_),bwg_change_watermark_container(_),"horizontal"==a){var c=i.image_height/i.image_width,p=t-40,y=Math.round(c*p),f=(p-s*l)/l,j=Math.round(c*f);jQuery(n).css({width:t,height:j}),jQuery(g).css({width:p,height:j}),jQuery(b).css({width:f,height:j}),jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);i*=r=Math.max(f/i,j/a),a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(w).css({width:f*r.length+s*r.length,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:t*i.image_height/i.image_width}),(Q={width:t,height:t*(i.image_height/i.image_width)-j})[d]=j,jQuery(".bwg_slideshow_image_container_"+_).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+t+"px !important; max-height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+t+"px !important; height:"+(t*(i.image_height/i.image_width)-j)+"px !important;"}),j<h&&(h=j),jQuery(n).find(".bwg-icon-angle-left").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-right").css({"font-size":h})}else{var Q,v=t*i.image_height/i.image_width;c=i.image_width/i.image_height,y=v-40,p=Math.round(c*y),j=(y-s*l)/l,f=Math.round(c*j);jQuery.each(r,function(e,t){var i=f,a=j;if(""!=t.image_width&&""!=t.image_height){var r=Math.max(f/t.image_width,j/t.image_height);i=t.image_width*r,a=t.thumb_height*r}""!=t.thumb_width&&""!=t.thumb_height&&(i=t.thumb_width,a=t.thumb_height);r=Math.max(f/i,j/a),i*=r,a*=r;jQuery(".bwg_slideshow_filmstrip_fix_count_"+_+" .bwg_slideshow_filmstrip_thumbnail_"+_+" .bwg_slideshow_filmstrip_thumbnail_img_"+_).css({width:f,height:j,"margin-left":0,"margin-top":0})}),jQuery(n).css({width:f,height:v}),jQuery(g).css({width:f,height:y}),jQuery(w).css({width:f,height:j*r.length+s*r.length}),jQuery(b).css({width:f,height:j}),jQuery(".bwg_slideshow_image_wrap_"+_).css({width:t,height:v}),(Q={width:t-f,height:v})[d]=f,jQuery(u).css(Q),jQuery(".bwg_slideshow_image_"+_).css({cssText:"max-width:"+(t-f)+"px !important; max-height:"+v+"px !important;"}),jQuery(".bwg_slideshow_embed_"+_).css({cssText:"width:"+(t-f)+"px !important; height:"+v+"px !important;"}),f<h&&(h=f),jQuery(n).find(".bwg-icon-angle-up").css({"font-size":h}),jQuery(n).find(".bwg-icon-angle-down").css({"font-size":h})}o&&(jQuery(n).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(n).find(".bwg-icon-angle-down").removeAttr("style"))}function bwg_resize_slideshow_filmstrip_fix_dimension(e){var t=e.bwg,i=e.parent_width,a=e.params,r=a.filmstrip_direction;jQuery(".bwg_slideshow_image_wrap_"+t).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+t).css({height:i*(a.image_height/a.image_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({width:i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+t).css({height:i*a.image_height/a.image_width-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+t).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[t].filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; max-height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+t).css({cssText:"width: "+(i-("horizontal"==a.filmstrip_direction?0:a.slideshow_filmstrip_width))+"px !important; height: "+(i*(a.image_height/a.image_width)-("horizontal"==a.filmstrip_direction?a.slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(t),bwg_change_watermark_container(t),"horizontal"==r?(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+t).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+t).css({height:i*a.image_height/a.image_width}),jQuery(".bwg_slideshow_filmstrip_"+t).css({height:i*a.image_height/a.image_width-40}))}function bwg_calculate_slideshow_filmstrip_thumbnail_size(e){var t=e.bwg,i=e.params,a=i.slideshow_filmstrip_width;if(2==i.slideshow_filmstrip_type){var r="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_fix_count_"+t+" .bwg_slideshow_filmstrip_thumbnail_"+t;a=(i.left_or_top,"width"==i.width_or_height?jQuery(r).width():jQuery(r).height())}return parseFloat(a)}function bwg_move_dots(e){var t=jQuery(".bwg_slideshow_dots_active_"+e).position().left,i=jQuery(".bwg_slideshow_dots_active_"+e).position().left+jQuery(".bwg_slideshow_dots_active_"+e).outerWidth(!0),a=jQuery(".bwg_slideshow_dots_container_"+e).outerWidth(!0),r=jQuery(".bwg_slideshow_dots_thumbnails_"+e).outerWidth(!1),_=jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left,s=Math.abs(jQuery(".bwg_slideshow_dots_thumbnails_"+e).position().left)+a;r<a||(t<Math.abs(_)?jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-t},{duration:500,complete:function(){}}):s<i&&jQuery(".bwg_slideshow_dots_thumbnails_"+e).animate({left:-(i-a)},{duration:500,complete:function(){}}))}function bwg_testBrowser_cssTransitions(e){return bwg_testDom("Transition",e)}function bwg_testBrowser_cssTransforms3d(e){return bwg_testDom("Perspective",e)}function bwg_testDom(e,t){for(var i=["","Webkit","Moz","ms","O","Khtml"],a=i.length;a--;)if(void 0!==document.body.style[i[a]+e])return!0;return!1}function bwg_fallback(e,t,i,a){bwg_fade(e,t,i,a)}function bwg_fallback3d(e,t,i,a){bwg_sliceV(e,t,i,a)}function bwg_none(e,t,i,a){var r=void 0!==a&&""!==a?"_"+a:"";if(jQuery(e).css({opacity:0,"z-index":1}),jQuery(t).css({opacity:1,"z-index":2}),void 0!==a&&""!==a){var _=bwg_params[a].bwg_current_key;bwg_change_watermark_container(a),jQuery(".bwg_slideshow_filmstrip_thumbnail"+r).removeClass("bwg_slideshow_thumb_active"+r).addClass("bwg_slideshow_thumb_deactive"+r),jQuery("#bwg_filmstrip_thumbnail_"+_+r).removeClass("bwg_slideshow_thumb_deactive"+r).addClass("bwg_slideshow_thumb_active"+r),jQuery(".bwg_slideshow_dots"+r).removeClass("bwg_slideshow_dots_active"+r).addClass("bwg_slideshow_dots_deactive"+r),jQuery("#bwg_dots_"+_+r).removeClass("bwg_slideshow_dots_deactive"+r).addClass("bwg_slideshow_dots_active"+r)}else jQuery(".bwg_image_info").show(),gallery_box_data.bwg_trans_in_progress=!1,jQuery(e).html(""),bwg_change_watermark_container()}function bwg_iterator(e){var t=1;return void 0!==e&&""!==e&&void 0!==bwg_params[e]&&1==bwg_params[e].enable_slideshow_shuffle&&(t=Math.floor((bwg_params[e].data.length-1)*Math.random()+1)),t}function bwg_change_image_slideshow(e,t,i,a,r){i=bwg_params[r].data;if(jQuery("#bwg_slideshow_image_container_"+r).find("iframe").each(function(){jQuery(this)[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*"),jQuery(this)[0].contentWindow.postMessage('{ "method": "pause" }',"*"),jQuery(this)[0].contentWindow.postMessage("pause","*")}),jQuery("#image_id_"+r+"_"+i[e].id).find(".bwg_fb_video").each(function(){jQuery(this).attr("src",jQuery(this).attr("src"))}),i[t]){if(jQuery(".bwg_ctrl_btn_"+r).hasClass("bwg-icon-pause")&&bwg_play(bwg_params[r].data,r),a||(jQuery("#bwg_current_image_key_"+r).val(t),"-1"==e?e=jQuery(".bwg_slideshow_thumb_active_"+r).children("img").attr("image_key"):"-2"==e&&(e=jQuery(".bwg_slideshow_dots_active_"+r).attr("image_key"))),bwg_params[r].bwg_trans_in_progress)return void bwg_params[r].event_stack.push(e+"-"+t);var _="right";if(t<e)_="left";else if(e==t)return;jQuery(".bwg_slideshow_watermark_"+r).css({display:"none"}),jQuery(".bwg_slideshow_title_text_"+r).css({display:"none"}),jQuery(".bwg_slideshow_description_text_"+r).css({display:"none"}),"width"==bwg_params[r].width_or_height?bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).width()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width):bwg_params[r].bwg_current_filmstrip_pos=t*(jQuery(".bwg_slideshow_filmstrip_thumbnail_"+r).height()+2+2*bwg_params[r].lightbox_filmstrip_thumb_border_width),e=t,bwg_params[r].bwg_current_key=e,jQuery("#bwg_slideshow_image_"+r).attr("image_id",i[t].id),jQuery(".bwg_slideshow_title_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].alt).text()),jQuery(".bwg_slideshow_description_text_"+r).html(jQuery('<span style="display: block;" />').html(i[t].description).text());var s=2==jQuery(".bwg_slideshow_image_spun_"+r).css("zIndex")?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,o=s==".bwg_slideshow_image_second_spun_"+r?".bwg_slideshow_image_spun_"+r:".bwg_slideshow_image_second_spun_"+r,l=-1<i[t].filetype.indexOf("EMBED_"),n=-1<i[t].filetype.indexOf("INSTAGRAM_POST"),g=-1<i[t].filetype.indexOf("INSTAGRAM_VIDEO"),w=jQuery(s).height(),b=jQuery(s).width(),u='<span class="bwg_slideshow_image_spun1_'+r+'" style="display: '+(l?"block":"table")+' ;width: inherit; height: inherit;"><span class="bwg_slideshow_image_spun2_'+r+'" style="display: '+(l?"block":"table-cell")+'; vertical-align: middle; text-align: center; ">';if(l){if(u+='<span style="height: '+w+"px; width: "+b+'px;" class="bwg_popup_embed bwg_popup_watermark">',g&&(u+='<span class="bwg_inst_play_btn_cont" onclick="bwg_play_instagram_video(this)"><span class="bwg_inst_play"></span></span>'),n){var d=jQuery(".bwg_embed_frame"),h=jQuery(".bwg_slideshow_image_container_"+r).width(),m=jQuery(".bwg_slideshow_image_container_"+r).height(),c=i[t].image_width,p=i[t].image_height,y=bwg_resizing_ratio(c,p,h,m);d.attr("data-width",h),d.attr("data-height",m);var f=y.width,j=y.height;f<j?f-=109:f+=109,u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame","data-width":h,"data-height":m,"data-instagram-width":c,"data-instagram-height":p,style:"width:"+f+"px; height:"+j+"px; vertical-align:middle; display:inline-block; position:relative;"})}else u+=spider_display_embed(i[t].filetype,decodeURIComponent(i[t].image_url),i[t].filename,{class:"bwg_embed_frame",frameborder:"0",allowfullscreen:"allowfullscreen","data-max-width":b,"data-max-height":w,style:"width:inherit; height:inherit; vertical-align:middle; display:table-cell;"});u+="</span>"}else{if("do_nothing"!=bwg_params[r].thumb_click_action){var Q="";"open_lightbox"==bwg_params[r].thumb_click_action?Q+=' class="bwg_lightbox" data-image-id="'+i[t].id+'" data-elementor-open-lightbox="no"':"redirect_to_url"==bwg_params[r].thumb_click_action&&i[t].redirect_url&&(Q+='href="'+i[t].redirect_url+'"'+(bwg_params[r].thumb_link_target&&1==bwg_params[r].thumb_link_target?' target="_blank"':"")),u+="<a "+Q+">"}u+='<img style="max-height: '+w+"px !important; max-width: "+b+'px !important; display:inline-block;" ',u+=' class="bwg_slide bwg_slideshow_image_'+r+'" ',u+=' id="bwg_slideshow_image_'+r+'" ',u+=' src="'+bwg_params[r].upload_url+jQuery("<span style='display: block;' />").html(decodeURIComponent(i[t].image_url)).text()+'" alt="'+i[t].alt+'" image_id="'+i[t].id+'" /></a>'}u+="</span></span>",jQuery(o).html(u),bwg_params[r].preload_images&&bwg_preload_images(t,r),window["bwg_"+bwg_params[r].slideshow_effect](s,o,_,r),1==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_dimension(r):2==bwg_params[r].slideshow_filmstrip_type?bwg_slideshow_filmstrip_fix_count(r):bwg_move_dots(r),i[t].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+r).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+r).css({display:""})}bwg_add_lightbox(),"EMBED_OEMBED_INSTAGRAM_POST"==i[t].filetype&&"undefined"!=typeof instgrm&&void 0!==instgrm.Embeds&&(jQuery(".instagram-media").hide(),instgrm.Embeds.process(),jQuery(".instagram-media").css({"max-height":j+"px","min-width":f+"px !important"}),jQuery(".instagram-media").show())}function bwg_preload_images_slideshow(e,t){var i=bwg_params[t].data;count=bwg_params[t].preload_images_count/2;var a=i.length;if(a<bwg_params[t].preload_images_count&&(count=0),0!=count)for(var r=e-count;r<e+count;r++){var _=parseInt((r+a)%a),s=-1<i[_].filetype.indexOf("EMBED_");void 0!==i[_]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[_].image_url)).text()))}else for(r=0;r<i.length;r++){s=-1<i[r].filetype.indexOf("EMBED_");void 0!==i[r]&&(s||jQuery("<img/>").attr("src",bwg_params[t].upload_url+jQuery('<span style="display: block;" />').html(decodeURIComponent(i[r].image_url)).text()))}}function bwg_preload_images(e,t){void 0!==t&&""!==t?bwg_preload_images_slideshow(e,t):bwg_preload_images_lightbox(e)}function bwg_popup_resize_slidshow(e){var t="#bwg_container1_"+e+" #bwg_container2_"+e,i=t+" .bwg_slideshow_image_wrap_"+e,a=t+" .bwg_slideshow_image_container_"+e,r=t+" .bwg_slideshow_image_"+e,_=".bwg_slideshow_filmstrip_"+e;2==bwg_params[e].slideshow_filmstrip_type&&(_=".bwg_slideshow_filmstrip_fix_count_"+e);var s=jQuery("#bwg_container1_"+e).parent();s.hasClass("content-area")&&s.width(s.closest(".content-area").width()),s.hasClass("elementor-tab-content")&&s.width(s.closest(".elementor-widget-wrap").width());var o=s.width(),l=bwg_params[e].data;if(o>=bwg_params[e].image_width){jQuery(".bwg_slideshow_image_wrap_"+e).css({width:bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_container_"+e).css({width:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_width:bwg_params[e].image_width-bwg_params[e].slideshow_filmstrip_width}),jQuery(".bwg_slideshow_image_container_"+e).css({height:"horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].image_height-bwg_params[e].slideshow_filmstrip_height:bwg_params[e].image_height}),jQuery(".bwg_slideshow_image_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:(bwg_params[e].filmstrip_direction,bwg_params[e].image_width)}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e);var n="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,g="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);if(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:n}),jQuery(_).css({cssText:g}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:bwg_params[e].image_width}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:bwg_params[e].slideshow_play_pause_btn_size}),"image"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:bwg_params[e].watermark_width,maxHeight:bwg_params[e].watermark_height}),"text"==bwg_params[e].watermark_type&&jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+" :hover").css({fontSize:bwg_params[e].watermark_font_size}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*bwg_params[e].slideshow_title_font_size}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*bwg_params[e].slideshow_description_font_size}),2==bwg_params[e].slideshow_filmstrip_type){var w=bwg_params[e].filmstrip_direction,b="#bwg_container1_"+e+" #bwg_container2_"+e;jQuery(b).removeAttr("style");var u=b+" .bwg_slideshow_filmstrip_container_"+e,d=bwg_params[e].slideshow_filmstrip_rl_btn_size,h=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).width();"horizontal"==w&&(h=jQuery(".bwg_slideshow_filmstrip_fix_count_"+e).height());var m="horizontal"==w?"table-cell":"block";jQuery(u).find(".bwg_slideshow_filmstrip_left_"+e).css({display:"none"}),jQuery(u).find(".bwg_slideshow_filmstrip_left_disabled_"+e).css({display:m}),jQuery(u).find(".bwg_slideshow_filmstrip_right_"+e).css({display:m}),jQuery(u).find(".bwg_slideshow_filmstrip_right_disabled_"+e).css({display:"none"}),h<d?(d=h,jQuery(u).find(".bwg-icon-angle-left").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-right").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-up").css({"font-size":d}),jQuery(u).find(".bwg-icon-angle-down").css({"font-size":d})):(jQuery(u).find(".bwg-icon-angle-left").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-right").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-up").removeAttr("style"),jQuery(u).find(".bwg-icon-angle-down").removeAttr("style"));var c=b+" .bwg_slideshow_filmstrip_thumbnails_"+e;jQuery(c).removeAttr("style"),jQuery(c+" .bwg_slideshow_filmstrip_thumbnail_"+e).each(function(e,t){jQuery(t).attr("style",jQuery(t).attr("data-style")),jQuery(t).find("img").attr("style",jQuery(t).attr("data-style"))});var p="#bwg_container1_"+e+" #bwg_container2_"+e+" .bwg_slideshow_image_container_"+e,y=(jQuery(p).data("filmstrip-position"),jQuery(p).data("filmstrip-size"));jQuery(p).css({filmstrip_position:y});var f="bwg_slideshow_filmstrip_thumbnail_"+e;window.bwg_slideshow_filmstrip_thumb[f].next_prev_index&&(window.bwg_slideshow_filmstrip_thumb[f].next_prev_index=0)}}else{var j=o*(bwg_params[e].image_height/bwg_params[e].image_width);1==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_dimension({bwg:e,params:bwg_params[e],parent_width:o-40}),2==bwg_params[e].slideshow_filmstrip_type&&bwg_resize_slideshow_filmstrip_fix_count({bwg:e,params:bwg_params[e],parent_width:o}),jQuery(".bwg_slideshow_dots_container_"+e).css({width:o}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:o*(bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:o*(bwg_params[e].watermark_width/bwg_params[e].image_width),maxHeight:o*(bwg_params[e].watermark_height/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:o*(bwg_params[e].watermark_font_size/bwg_params[e].image_width)}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*o*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*o*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(i).css({width:o,height:j}),jQuery(a).css({width:o,height:j}),jQuery(r).css({display:"inline-block","max-width":o,"max-height":j})}l[parseInt(jQuery("#bwg_current_image_key_"+e).val())].is_embed_video?jQuery("#bwg_slideshow_play_pause_"+e).css({display:"none"}):jQuery("#bwg_slideshow_play_pause_"+e).css({display:""})}function bwg_popup_resize(e){void 0!==e&&""!==e?bwg_popup_resize_slidshow(e):bwg_popup_resize_lightbox()}function bwg_change_image(e,t,i,a,r){void 0!==r&&""!==r?bwg_change_image_slideshow(e,t,i,a,r):bwg_change_image_lightbox(e,t,i=gallery_box_data.data,a)}function bwg_resize_instagram_post(e){var t=!1;if(void 0!==e&&""!==e){if(jQuery(".inner_instagram_iframe_bwg_embed_frame_"+e).length){t=!0;var i=jQuery("#instagram-embed-"+e),a=jQuery(".bwg_slideshow_embed_"+e),r=jQuery(".bwg_embed_frame_"+e),_=void 0!==a.width()?a.width():jQuery(".bwg_slideshow_embed_"+e).width(),s=void 0!==a.height()?a.height():jQuery(".bwg_slideshow_embed_"+e).height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container(e)}}else if(jQuery(".inner_instagram_iframe_bwg_embed_frame").length){t=!0;i=jQuery(".instagram-media"),r=jQuery(".bwg_embed_frame"),_=jQuery(".bwg_image_container").width(),s=jQuery(".bwg_image_container").height(),o=r.data("instagram-width"),l=r.data("instagram-height");bwg_change_watermark_container()}if(!0===t){var n=bwg_resizing_ratio(o,l,_,s);r.attr("data-width",_),r.attr("data-height",s);var g=n.width,w=n.height;g<w?g-=109:g+=109,r.width(g),r.height(w),i.css({"max-height":w+"px","min-width":g+"px !important"})}}function bwg_play(t,i){if(void 0!==i&&""!==i)t=bwg_params[i].data;void 0!==i&&""!==i?(window.clearInterval(window["bwg_playInterval"+i]),window["bwg_playInterval"+i]=setInterval(function(){var e=1;1==bwg_params[i].enable_slideshow_shuffle&&(e=Math.floor((t.length-1)*Math.random()+1)),bwg_change_image(parseInt(jQuery("#bwg_current_image_key_"+i).val()),(parseInt(jQuery("#bwg_current_image_key_"+i).val())+e)%t.length,t,"",i)},1e3*bwg_params[i].slideshow_interval)):(window.clearInterval(gallery_box_data.bwg_playInterval),gallery_box_data.bwg_playInterval=setInterval(function(){jQuery(".bwg_comment_container").hasClass("bwg_open")||jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")||(void 0===t||void 0!==t[parseInt(jQuery("#bwg_current_image_key").val())+1]?bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),parseInt(jQuery("#bwg_current_image_key").val())+1):1==gallery_box_data.enable_loop&&bwg_change_image(parseInt(jQuery("#bwg_current_image_key").val()),0))},1e3*gallery_box_data.slideshow_interval))}function bwg_image_browser(e){if(jQuery("#bwg_embed_frame_16x9_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery("#bwg_embed_frame_16x9_"+e).height(.5625*jQuery("#bwg_embed_frame_16x9_"+e).width()),jQuery("#bwg_embed_frame_instapost_"+e).width(jQuery("#bwg_embed_frame_16x9_"+e).parents(".image_browser_image_buttons_"+e).width()),jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").length){var t=jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").contents();jQuery(".image_browser_images_conteiner_"+e).find(".fluid-width-video-wrapper").replaceWith(t)}jQuery(".bwg_embed_frame_instapost_"+e).height((jQuery(".bwg_embed_frame_instapost_"+e).width()-16)*jQuery(".bwg_embed_frame_instapost_"+e).attr("data-height")/jQuery(".bwg_embed_frame_instapost_"+e).attr("data-width")+96);var i=jQuery(".image_browser_images_"+e).width();i<=108?jQuery(".paging-input_"+e).css("display","none"):(i<=200?(jQuery(".paging-input_"+e).css("margin","0% 0% 0% 0%"),jQuery(".paging-input_"+e).css("display","inline")):i<=580?(jQuery(".paging-input_"+e).css("display","inline"),jQuery(".tablenav-pages_"+e+" a").css("font-size","13px"),jQuery(".paging-input_"+e).css("margin","0% 7% 0% 7%")):(jQuery(".tablenav-pages_"+e+" a").css("font-size","15px"),jQuery(".paging-input_"+e).css("margin","0% 14% 0% 14%"),jQuery(".paging-input_"+e).css("display","inline")),jQuery(".tablenav-pages_"+e+" .next-page").css("margin","0% 0% 0% 0%"),jQuery(".tablenav-pages_"+e+" .prev-page").css("margin","0% 0% 0% 0%"))}function bwg_disable_right_click(e){e.bind("contextmenu",function(){return!1}),e.css("webkitTouchCallout","none")}function bwg_resizing_ratio(e,t,i,a){var r=[i/e,a/t];return{width:e*(r=Math.min(r[0],r[1])),height:t*r}}function bwg_slideshow_filmstrip_next(e){var t=e.bwg,i=e.params,a=e.slideshow_filmstrip_class_name,r=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),_="bwg_slideshow_filmstrip_thumbnail_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,n="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,g="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):"width"==i.width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width()-parseInt(i.filmstrip_thumb_margin_hor)+r)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-parseInt(i.filmstrip_thumb_margin_hor)+r},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).width()-jQuery(a).width())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())&&(jQuery(s).css({display:g}),jQuery(o).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height()-(parseInt(i.filmstrip_thumb_margin_hor)+r))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top-(parseInt(i.filmstrip_thumb_margin_hor)+r)},500,"linear")),window.setTimeout(function(){parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)==-parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).height()-jQuery(a).height())?(jQuery(l).css({display:"none"}),jQuery(n).css({display:g})):(jQuery(l).css({display:g}),jQuery(n).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[_].next_prev_index=bwg_slideshow_filmstrip_thumb[_].next_prev_index+1}function bwg_slideshow_filmstrip_prev(e){var t=e.bwg,i=e.params,a=bwg_calculate_slideshow_filmstrip_thumbnail_size({bwg:t,params:i}),r="bwg_slideshow_filmstrip_thumbnail_"+t,_="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_"+t,s="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_left_disabled_"+t,o="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_"+t,l="#bwg_container1_"+t+" #bwg_container2_"+t+" .bwg_slideshow_filmstrip_right_disabled_"+t,n="horizontal"==i.filmstrip_direction?"table-cell":"block";"left"==i.left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().left)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top<0&&(jQuery(o).css({display:n}),jQuery(l).css({display:"none"}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top>-(i.filmstrip_thumb_margin_hor+a)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top+parseInt(i.filmstrip_thumb_margin_hor)+a},500,"linear")),window.setTimeout(function(){0==parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+t).position().top)?(jQuery(_).css({display:"none"}),jQuery(s).css({display:n})):(jQuery(_).css({display:n}),jQuery(s).css({display:"none"}))},510)),bwg_slideshow_filmstrip_thumb[r].next_prev_index=bwg_slideshow_filmstrip_thumb[r].next_prev_index-1}jQuery(function(){function i(e){bwg_slideshow_blur(e),bwg_carousel_blur(e),0<jQuery(".bwg_play_pause").length&&window.clearInterval(gallery_box_data.bwg_playInterval)}function a(e){e&&bwg_main_ready(e),bwg_slideshow_focus(),bwg_carousel_focus(),jQuery(".bwg_play_pause").length&&jQuery(".bwg_play_pause").hasClass("bwg-icon-play")&&!jQuery(".bwg_comment_container").hasClass("bwg_open")&&bwg_play(gallery_box_data.data)}var r=!1;jQuery(".bwg_container").each(function(){if(0<jQuery(this).find(".wd_error").length&&(r=!0),!r){var e=jQuery(this);if(e[0].offsetHeight)var t=0;else t=1;setInterval(function(){e[0].offsetHeight?1==t&&(t=0,a(e)):0==t&&i(!(t=1))},200)}}),r||jQuery(window).focus(function(){a()}).blur(function(){i(!0)})}),jQuery(window).on("resize",function(){setTimeout(function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),bwg_tags_button_section_visibility(),e||(jQuery(".bwg-thumbnails, .bwg-masonry-thumbnails, .bwg-album-thumbnails").each(function(){bwg_all_thumnails_loaded(this)}),bwg_slideshow_resize(),bwg_image_browser_resize(),bwg_carousel_resize(),bwg_blog_style_resize(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)})),bwg_resize_search_line()},0)}),jQuery(window).on("load",function(){var e=!1;jQuery(".bwg_container").each(function(){0<jQuery(this).find(".wd_error").length&&(e=!0)}),e||(bwg_blog_style_onload(),jQuery(".bwg-mosaic-thumbnails").each(function(){bwg_thumbnail_mosaic(this)}))}),jQuery(".bwg-masonry-thumb-span img, .bwg-mosaic-thumb-span img").on("error",function(){jQuery(this).height(100),jQuery(this).width(100)});
languages/bwg-en_US.mo CHANGED
Binary file
languages/bwg-en_US.po CHANGED
@@ -1,99 +1,90 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2019-11-06 12:38+0400\n"
5
- "PO-Revision-Date: 2019-11-06 12:38+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_GB\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.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
  "X-Poedit-SearchPath-0: .\n"
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
  msgid "NextGen Gallery Import to Photo Gallery"
30
  msgstr ""
31
 
32
- #: addons/addons.php:15
33
  msgid ""
34
  "This addon integrates NextGen with Photo Gallery allowing to import images "
35
  "and related data from NextGen to use with Photo Gallery"
36
  msgstr ""
37
 
38
- #: addons/addons.php:20
39
  msgid "Photo Gallery Export / Import"
40
  msgstr ""
41
 
42
- #: addons/addons.php:22
43
  msgid ""
44
  "Photo Gallery Export/Import helps to move created galleries and gallery "
45
  "groups from one site to another. This way you can save the gallery/album "
46
  "options and manual modifications."
47
  msgstr ""
48
 
49
- #: addons/addons.php:27
50
  msgid "Photo Gallery Google Photos Integration"
51
  msgstr ""
52
 
53
- #: addons/addons.php:29
54
  msgid "Link and display your Google Photos albums in one click."
55
  msgstr ""
56
 
57
- #: addons/addons.php:39
58
  msgid "Photo Gallery Add-ons"
59
  msgstr ""
60
 
61
- #: addons/addons.php:72
62
  msgid "GET THIS ADD ON"
63
  msgstr ""
64
 
65
- #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:782
66
- #: photo-gallery.php:467
67
  msgid "Tags"
68
  msgstr ""
69
 
70
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
71
- #: admin/controllers/Galleries.php:34 admin/views/Albums.php:111
72
- #: admin/views/Albums.php:183 admin/views/Comments.php:109
73
- #: admin/views/Galleries.php:118 admin/views/Galleries.php:213
74
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2475
75
  msgid "Publish"
76
  msgstr ""
77
 
78
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
79
- #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2476
80
  msgid "published"
81
  msgstr ""
82
 
83
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
84
- #: admin/controllers/Galleries.php:38 admin/views/Albums.php:111
85
- #: admin/views/Comments.php:109 admin/views/Galleries.php:118
86
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2480
87
  msgid "Unpublish"
88
  msgstr ""
89
 
90
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
91
- #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2481
92
  msgid "unpublished"
93
  msgstr ""
94
 
95
- #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
96
- #: admin/views/Albums.php:112 admin/views/Themes.php:105
 
97
  msgid "Duplicate"
98
  msgstr ""
99
 
@@ -102,23 +93,21 @@ msgid "duplicate"
102
  msgstr ""
103
 
104
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
105
- #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
106
- #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
107
- #: admin/views/Comments.php:112 admin/views/Galleries.php:119
108
- #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
109
- #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
110
- #, fuzzy
111
- #| msgid "Delete Comment"
112
  msgid "Delete"
113
- msgstr "Delete Comment"
114
 
115
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
116
- #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
117
- #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
118
  msgid "deleted"
119
  msgstr ""
120
 
121
- #: admin/controllers/Albums.php:95 photo-gallery.php:464
122
  msgid "Gallery Groups"
123
  msgstr ""
124
 
@@ -126,11 +115,9 @@ msgstr ""
126
  msgid "Galleries / Gallery groups"
127
  msgstr ""
128
 
129
- #: admin/controllers/Comments.php:91 photo-gallery.php:475
130
- #, fuzzy
131
- #| msgid "Comment"
132
  msgid "Comments"
133
- msgstr "Comment"
134
 
135
  #: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
136
  msgid "Filter by gallery"
@@ -140,289 +127,292 @@ msgstr ""
140
  msgid "Filter by image"
141
  msgstr ""
142
 
143
- #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
144
- #, fuzzy
145
- #| msgid "Gallery is empty."
 
 
146
  msgid "Galleries"
147
- msgstr "Gallery is empty."
148
 
149
- #: admin/controllers/Galleries.php:343
150
  msgid "Mixed"
151
  msgstr ""
152
 
153
- #: admin/controllers/Galleries.php:343
154
  msgid "Instagram only"
155
  msgstr ""
156
 
157
- #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
158
- #, fuzzy
159
- #| msgid "Share on Facebook"
160
  msgid "Facebook"
161
- msgstr "Share on Facebook"
162
 
163
- #: admin/controllers/Options.php:48
164
- msgid "Edit options"
165
  msgstr ""
166
 
167
- #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
168
- #: admin/views/Options.php:375 admin/views/Shortcode.php:68
169
- #: admin/views/Shortcode.php:430 photo-gallery.php:1585
170
  msgid "Thumbnails"
171
  msgstr ""
172
 
173
- #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
174
  #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
175
- #: admin/controllers/Themes.php:263 admin/views/Options.php:383
176
- #: admin/views/Options.php:473 admin/views/Options.php:2681
177
- #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
178
- #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
179
- #: photo-gallery.php:1589
 
180
  msgid "Masonry"
181
  msgstr ""
182
 
183
- #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
184
- #: admin/controllers/Themes.php:264 admin/views/Options.php:392
185
- #: admin/views/Options.php:2682 admin/views/Options.php:3221
186
- #: admin/views/Shortcode.php:85 photo-gallery.php:1593
 
187
  msgid "Mosaic"
188
  msgstr ""
189
 
190
- #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
191
- #: admin/controllers/Themes.php:265 admin/views/Options.php:401
192
- #: admin/views/Options.php:2683 admin/views/Options.php:3222
193
- #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
 
194
  msgid "Slideshow"
195
  msgstr ""
196
 
197
- #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
198
- #: admin/views/Options.php:407 admin/views/Options.php:2684
199
- #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
200
- #: photo-gallery.php:1601
201
  msgid "Image Browser"
202
  msgstr ""
203
 
204
- #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
205
- #: admin/views/Options.php:413 admin/views/Options.php:2685
206
- #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
207
- #: photo-gallery.php:1617
208
  msgid "Blog Style"
209
  msgstr ""
210
 
211
- #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
212
- #: admin/controllers/Themes.php:273 admin/views/Options.php:422
213
- #: admin/views/Options.php:2686 admin/views/Options.php:3225
214
- #: admin/views/Shortcode.php:115 photo-gallery.php:1629
 
215
  msgid "Carousel"
216
  msgstr ""
217
 
218
- #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
219
- #: admin/views/Options.php:467 admin/views/Shortcode.php:140
 
220
  msgid "Compact"
221
  msgstr ""
222
 
223
- #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
224
- #: admin/views/Options.php:482 admin/views/Shortcode.php:155
 
225
  msgid "Extended"
226
  msgstr ""
227
 
228
- #: admin/controllers/Options.php:130
229
  msgid "Default values restored. Changes must be saved."
230
  msgstr ""
231
 
232
- #: admin/controllers/Options.php:162
233
  msgid "Uploads directory doesn't exist. Old value is restored."
234
  msgstr ""
235
 
236
- #: admin/controllers/Options.php:165
237
  msgid ""
238
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
239
  "value is restored."
240
  msgstr ""
241
 
242
- #: admin/controllers/Options.php:195
243
  msgid "All thumbnails are successfully recreated."
244
  msgstr ""
245
 
246
- #: admin/controllers/Options.php:208
247
  msgid "Item Succesfully Saved."
248
  msgstr ""
249
 
250
- #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
251
  msgid ""
252
  "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
253
  msgstr ""
254
 
255
- #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
256
  msgid "Watermark could not be set. The image URL is incorrect."
257
  msgstr ""
258
 
259
- #: admin/controllers/Options.php:258
260
  msgid "All images are successfully watermarked."
261
  msgstr ""
262
 
263
- #: admin/controllers/Ratings.php:86 photo-gallery.php:478
264
  msgid "Ratings"
265
  msgstr ""
266
 
267
- #: admin/controllers/Themes.php:40
268
- msgid "duplicated"
269
- msgstr ""
270
-
271
- #: admin/controllers/Themes.php:88 photo-gallery.php:471
272
  msgid "Themes"
273
  msgstr ""
274
 
275
- #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
276
- #: admin/views/Options.php:3219 admin/views/Widget.php:138
277
  msgid "Thumbnail"
278
  msgstr ""
279
 
280
- #: admin/controllers/Themes.php:266
281
  msgid "Image browser"
282
  msgstr ""
283
 
284
- #: admin/controllers/Themes.php:267
285
  msgid "Compact album"
286
  msgstr ""
287
 
288
- #: admin/controllers/Themes.php:268
289
  msgid "Masonry album"
290
  msgstr ""
291
 
292
- #: admin/controllers/Themes.php:269
293
  msgid "Extended album"
294
  msgstr ""
295
 
296
- #: admin/controllers/Themes.php:270
297
  msgid "Blog style"
298
  msgstr ""
299
 
300
- #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
301
- #: photo-gallery.php:1551 photo-gallery.php:1621
302
  msgid "Lightbox"
303
  msgstr ""
304
 
305
- #: admin/controllers/Themes.php:272
306
  msgid "Navigation"
307
  msgstr ""
308
 
309
- #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
310
- #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
311
- #: admin/views/Options.php:677 admin/views/Options.php:830
312
- #: admin/views/Options.php:1060 admin/views/Options.php:1108
313
- #: admin/views/Options.php:1326 admin/views/Options.php:1562
314
- #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
 
315
  msgid "None"
316
  msgstr ""
317
 
318
- #: admin/controllers/Themes.php:278
319
  msgid "Solid"
320
  msgstr ""
321
 
322
- #: admin/controllers/Themes.php:279
323
  msgid "Dotted"
324
  msgstr ""
325
 
326
- #: admin/controllers/Themes.php:280
327
  msgid "Dashed"
328
  msgstr ""
329
 
330
- #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
331
  msgid "Double"
332
  msgstr ""
333
 
334
- #: admin/controllers/Themes.php:282
335
  msgid "Groove"
336
  msgstr ""
337
 
338
- #: admin/controllers/Themes.php:283
339
  msgid "Ridge"
340
  msgstr ""
341
 
342
- #: admin/controllers/Themes.php:284
343
  msgid "Inset"
344
  msgstr ""
345
 
346
- #: admin/controllers/Themes.php:285
347
  msgid "Outset"
348
  msgstr ""
349
 
350
- #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
351
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
352
  msgid "Left"
353
  msgstr ""
354
 
355
- #: admin/controllers/Themes.php:304
356
  msgid "Center"
357
  msgstr ""
358
 
359
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
360
- #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
361
  msgid "Right"
362
  msgstr ""
363
 
364
- #: admin/controllers/Themes.php:309
365
  msgid "Lighter"
366
  msgstr ""
367
 
368
- #: admin/controllers/Themes.php:310
369
  msgid "Normal"
370
  msgstr ""
371
 
372
- #: admin/controllers/Themes.php:311
373
  msgid "Bold"
374
  msgstr ""
375
 
376
- #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
377
  msgid "Rotate"
378
  msgstr ""
379
 
380
- #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
381
  msgid "Scale"
382
  msgstr ""
383
 
384
- #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
385
  msgid "Skew"
386
  msgstr ""
387
 
388
- #: admin/controllers/Themes.php:326
389
  msgid "Zoom"
390
  msgstr ""
391
 
392
- #: admin/controllers/Themes.php:331
393
  msgid "Angle"
394
  msgstr ""
395
 
396
- #: admin/controllers/Themes.php:332
397
  msgid "Chevron"
398
  msgstr ""
399
 
400
- #: admin/controllers/Themes.php:337
401
  msgid "Star"
402
  msgstr ""
403
 
404
- #: admin/controllers/Themes.php:338
405
  msgid "Bell"
406
  msgstr ""
407
 
408
- #: admin/controllers/Themes.php:339
409
  msgid "Circle"
410
  msgstr ""
411
 
412
- #: admin/controllers/Themes.php:340
413
  msgid "Flag"
414
  msgstr ""
415
 
416
- #: admin/controllers/Themes.php:341
417
  msgid "Heart"
418
  msgstr ""
419
 
420
- #: admin/controllers/Themes.php:342
421
  msgid "Square"
422
  msgstr ""
423
 
424
  #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
425
- #: admin/views/Options.php:351
426
  #, php-format
427
  msgid "Uninstall %s"
428
  msgstr ""
@@ -435,511 +425,526 @@ msgstr ""
435
  msgid "Add Photo Gallery slideshow to Your widget area."
436
  msgstr ""
437
 
438
- #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
439
  msgid "Cube Horizontal"
440
  msgstr ""
441
 
442
- #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
443
  msgid "Cube Vertical"
444
  msgstr ""
445
 
446
- #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
447
  msgid "Fade"
448
  msgstr ""
449
 
450
- #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
451
  msgid "Slice Horizontal"
452
  msgstr ""
453
 
454
- #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
455
  msgid "Slice Vertical"
456
  msgstr ""
457
 
458
- #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
459
  msgid "Slide Horizontal"
460
  msgstr ""
461
 
462
- #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
463
  msgid "Slide Vertical"
464
  msgstr ""
465
 
466
- #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
467
  msgid "Scale Out"
468
  msgstr ""
469
 
470
- #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
471
  msgid "Scale In"
472
  msgstr ""
473
 
474
- #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
475
  msgid "Block Scale"
476
  msgstr ""
477
 
478
- #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
479
  msgid "Kaleidoscope"
480
  msgstr ""
481
 
482
- #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
483
  msgid "Fan"
484
  msgstr ""
485
 
486
- #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
487
  msgid "Blind Horizontal"
488
  msgstr ""
489
 
490
- #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
491
  msgid "Blind Vertical"
492
  msgstr ""
493
 
494
- #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
495
- #: admin/views/Options.php:1151 admin/views/Options.php:1369
496
- #: admin/views/Options.php:1605 admin/views/Options.php:1802
497
- #: admin/views/Options.php:2042 admin/views/Options.php:2201
498
- #: admin/views/Options.php:2378 admin/views/Options.php:2563
499
- #: admin/views/Options.php:2585 admin/views/Options.php:2863
500
- #: admin/views/Options.php:2885 admin/views/Options.php:3103
501
- #: admin/views/Options.php:3125 admin/views/Widget.php:159
502
- #: frontend/views/view.php:433
503
  msgid "Random"
504
- msgstr "Random"
505
 
506
  #: admin/controllers/WidgetTags.php:14
507
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
508
  msgstr ""
509
 
510
- #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
511
- #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
512
- #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
513
- msgid "Gallery"
514
  msgstr ""
515
 
516
- #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
517
- #: photo-gallery.php:417
518
  msgid "General"
519
  msgstr ""
520
 
521
- #: admin/models/Comments.php:62 admin/models/Ratings.php:81
522
- #: framework/WDWLibrary.php:2751
523
  msgid "All galleries"
524
  msgstr ""
525
 
526
- #: admin/models/Comments.php:76 admin/models/Ratings.php:100
527
- #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
528
  msgid "All images"
529
  msgstr ""
530
 
531
- #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
532
  msgid ""
533
  "Selected pricelist item longest dimension greater than some original images "
534
  "dimensions."
535
  msgstr ""
536
 
537
- #: admin/views/AddTags.php:66 admin/views/Albums.php:58
538
- #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
 
539
  msgid "Select all"
540
  msgstr ""
541
 
542
- #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
543
  #: admin/views/Comments.php:69 admin/views/Comments.php:90
544
- #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
545
- #: frontend/views/BWGViewGalleryBox.php:1112
546
- #: frontend/views/BWGViewGalleryBox.php:1226
547
  msgid "Name"
548
- msgstr "Name"
549
 
550
- #: admin/views/AddTags.php:108
551
- #, fuzzy
552
- #| msgid "Reset"
553
  msgid "Remove from image"
554
- msgstr "Reset"
555
 
556
- #: admin/views/AddTags.php:109
557
  msgid "Add to image"
558
  msgstr ""
559
 
560
- #: admin/views/AdminView.php:95
561
- msgid "Add New"
562
  msgstr ""
563
 
564
- #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
565
- #: framework/WDWLibrary.php:527 photo-gallery.php:1412
566
  msgid "Search"
567
- msgstr "Search"
568
 
569
- #: admin/views/AdminView.php:260
570
- #, fuzzy
571
  #| msgid "First"
572
  msgid "First page"
573
- msgstr "First"
574
 
575
- #: admin/views/AdminView.php:261
576
- #, fuzzy
577
  #| msgid "Previous"
578
  msgid "Previous page"
579
- msgstr "Previous"
580
 
581
- #: admin/views/AdminView.php:266
582
  msgid "Current Page"
583
  msgstr ""
584
 
585
- #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
586
- #: framework/WDWLibrary.php:629 frontend/views/view.php:663
587
  msgid "of"
588
- msgstr "of"
589
 
590
- #: admin/views/AdminView.php:282
591
- #, fuzzy
592
- #| msgid "Next"
593
  msgid "Next page"
594
- msgstr "Next"
595
 
596
- #: admin/views/AdminView.php:283
597
- #, fuzzy
598
- #| msgid "Last"
599
  msgid "Last page"
600
- msgstr "Last"
601
 
602
- #: admin/views/AdminView.php:315 filemanager/view.php:205
603
  msgid "Select All"
604
  msgstr ""
605
 
606
- #: admin/views/AdminView.php:320
607
  msgid "Select bulk action"
608
  msgstr ""
609
 
610
- #: admin/views/AdminView.php:322
611
  msgid "Bulk Actions"
612
  msgstr ""
613
 
614
- #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
615
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
616
- #: admin/views/Galleries.php:728 admin/views/Options.php:157
617
- #: admin/views/Options.php:957 admin/views/Options.php:960
618
  #: filemanager/view.php:66
619
  msgid "This option is disabled in demo."
620
  msgstr ""
621
 
622
- #: admin/views/AdminView.php:331
623
  msgid "Apply"
624
  msgstr ""
625
 
626
- #: admin/views/Albums.php:61 admin/views/Albums.php:97
627
- #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
628
- #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
629
- #: admin/views/Galleries.php:104 admin/views/Options.php:1145
630
- #: admin/views/Options.php:1363 admin/views/Options.php:1599
631
- #: admin/views/Options.php:1796 admin/views/Options.php:2036
632
- #: admin/views/Options.php:2195 admin/views/Options.php:2372
633
- #: admin/views/Options.php:2562 admin/views/Options.php:2579
634
- #: admin/views/Options.php:2862 admin/views/Options.php:2879
635
- #: admin/views/Options.php:3102 admin/views/Options.php:3119
636
- #: admin/views/Themes.php:80 admin/views/Themes.php:99
 
 
 
 
 
637
  msgid "Title"
638
  msgstr ""
639
 
640
- #: admin/views/Albums.php:62 admin/views/Albums.php:120
641
- #: admin/views/Albums.php:241 admin/views/Galleries.php:65
642
- #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
643
  msgid "Author"
644
  msgstr ""
645
 
646
- #: admin/views/Albums.php:106 admin/views/Albums.php:333
647
- #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
648
- #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
649
  msgid "Unpublished"
650
  msgstr ""
651
 
652
- #: admin/views/Albums.php:110 admin/views/Editimage.php:325
653
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
654
- #: admin/views/Themes.php:104
655
  msgid "Edit"
656
  msgstr ""
657
 
658
- #: admin/views/Albums.php:113 admin/views/Comments.php:112
659
- #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
660
- #: admin/views/Ratings.php:84 admin/views/Themes.php:106
661
  msgid "Do you want to delete selected item?"
662
  msgstr ""
663
 
664
- #: admin/views/Albums.php:114 admin/views/Albums.php:186
665
- #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
666
- #, fuzzy
667
  #| msgid "Previous"
668
  msgid "Preview"
669
- msgstr "Previous"
670
 
671
- #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
672
- #: admin/views/Comments.php:115 admin/views/Galleries.php:123
673
- #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
674
- #: admin/views/Themes.php:109
675
- #, fuzzy
676
  #| msgid "Show comments"
677
  msgid "Show more details"
678
- msgstr "Show comments"
 
 
 
 
 
 
679
 
680
- #: admin/views/Albums.php:174
681
  msgid "Gallery Group Title"
682
  msgstr ""
683
 
684
- #: admin/views/Albums.php:183 admin/views/Galleries.php:213
685
- #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
686
- #: admin/views/Themes.php:181
687
  msgid "Update"
688
  msgstr ""
689
 
690
- #: admin/views/Albums.php:197 admin/views/Albums.php:233
691
- #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
692
- #: admin/views/Options.php:528 admin/views/Options.php:596
693
- #: admin/views/Options.php:664 admin/views/Shortcode.php:260
694
- #: admin/views/Shortcode.php:275
 
 
 
 
 
695
  msgid "Toggle panel:"
696
  msgstr ""
697
 
698
- #: admin/views/Albums.php:201 admin/views/Galleries.php:233
699
  msgid "Basic"
700
  msgstr ""
701
 
702
- #: admin/views/Albums.php:206 admin/views/Galleries.php:238
703
  msgid "Preview image"
704
  msgstr ""
705
 
706
- #: admin/views/Albums.php:208 admin/views/Galleries.php:242
707
  msgid "Add Preview Image"
708
  msgstr ""
709
 
710
- #: admin/views/Albums.php:209 admin/views/Albums.php:296
711
- #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
712
- #: filemanager/view.php:213
713
  msgid "Add"
714
  msgstr ""
715
 
716
- #: admin/views/Albums.php:214
717
  msgid ""
718
  "Add a preview image, which will be displayed as the cover image of the "
719
  "gallery group when it is published in a parent gallery group."
720
  msgstr ""
721
 
722
- #: admin/views/Albums.php:218 admin/views/Galleries.php:255
723
  msgid "Published"
724
  msgstr ""
725
 
726
- #: admin/views/Albums.php:220 admin/views/Galleries.php:257
727
- #: admin/views/Options.php:134 admin/views/Options.php:175
728
- #: admin/views/Options.php:185 admin/views/Options.php:195
729
- #: admin/views/Options.php:214 admin/views/Options.php:224
730
- #: admin/views/Options.php:234 admin/views/Options.php:244
731
- #: admin/views/Options.php:256 admin/views/Options.php:267
732
- #: admin/views/Options.php:277 admin/views/Options.php:287
733
- #: admin/views/Options.php:297 admin/views/Options.php:307
734
- #: admin/views/Options.php:317 admin/views/Options.php:335
735
- #: admin/views/Options.php:341 admin/views/Options.php:628
736
- #: admin/views/Options.php:639 admin/views/Options.php:650
737
- #: admin/views/Options.php:1167 admin/views/Options.php:1193
738
- #: admin/views/Options.php:1203 admin/views/Options.php:1215
739
- #: admin/views/Options.php:1225 admin/views/Options.php:1246
740
- #: admin/views/Options.php:1256 admin/views/Options.php:1385
741
- #: admin/views/Options.php:1411 admin/views/Options.php:1421
742
- #: admin/views/Options.php:1433 admin/views/Options.php:1443
743
- #: admin/views/Options.php:1464 admin/views/Options.php:1475
744
- #: admin/views/Options.php:1485 admin/views/Options.php:1532
745
- #: admin/views/Options.php:1621 admin/views/Options.php:1647
746
- #: admin/views/Options.php:1657 admin/views/Options.php:1669
747
- #: admin/views/Options.php:1679 admin/views/Options.php:1699
748
- #: admin/views/Options.php:1709 admin/views/Options.php:1818
749
- #: admin/views/Options.php:1828 admin/views/Options.php:1838
750
- #: admin/views/Options.php:1860 admin/views/Options.php:1881
751
- #: admin/views/Options.php:1918 admin/views/Options.php:1928
752
- #: admin/views/Options.php:1965 admin/views/Options.php:1984
753
- #: admin/views/Options.php:2013 admin/views/Options.php:2022
754
- #: admin/views/Options.php:2058 admin/views/Options.php:2084
755
- #: admin/views/Options.php:2094 admin/views/Options.php:2106
756
- #: admin/views/Options.php:2116 admin/views/Options.php:2126
757
- #: admin/views/Options.php:2217 admin/views/Options.php:2243
758
- #: admin/views/Options.php:2253 admin/views/Options.php:2265
759
- #: admin/views/Options.php:2275 admin/views/Options.php:2285
760
- #: admin/views/Options.php:2296 admin/views/Options.php:2307
761
- #: admin/views/Options.php:2394 admin/views/Options.php:2417
762
- #: admin/views/Options.php:2428 admin/views/Options.php:2439
763
- #: admin/views/Options.php:2450 admin/views/Options.php:2461
764
- #: admin/views/Options.php:2601 admin/views/Options.php:2627
765
- #: admin/views/Options.php:2637 admin/views/Options.php:2649
766
- #: admin/views/Options.php:2659 admin/views/Options.php:2707
767
- #: admin/views/Options.php:2742 admin/views/Options.php:2752
768
- #: admin/views/Options.php:2901 admin/views/Options.php:2927
769
- #: admin/views/Options.php:2937 admin/views/Options.php:2949
770
- #: admin/views/Options.php:2959 admin/views/Options.php:2980
771
- #: admin/views/Options.php:3141 admin/views/Options.php:3167
772
- #: admin/views/Options.php:3177 admin/views/Options.php:3189
773
- #: admin/views/Options.php:3199 admin/views/Options.php:3209
774
- #: admin/views/Options.php:3246 admin/views/Options.php:3281
775
- #: admin/views/Options.php:3291 admin/views/Options.php:3345
776
- #: admin/views/Options.php:3356 admin/views/Options.php:3405
777
- #: admin/views/Options.php:3424 admin/views/Options.php:3460
778
- #: admin/views/Options.php:3483 admin/views/Options.php:3495
779
- #: admin/views/Options.php:3508 admin/views/Options.php:3519
780
- #: admin/views/Options.php:3530 admin/views/Options.php:3541
781
- #: admin/views/Options.php:3551 admin/views/Options.php:3561
782
- #: admin/views/Options.php:3581 admin/views/Options.php:3592
783
- #: admin/views/Options.php:3605 admin/views/Options.php:3615
784
- #: admin/views/Options.php:3625 admin/views/Options.php:3635
785
- #: admin/views/Options.php:3645 admin/views/Options.php:3666
786
- #: admin/views/Options.php:3677 admin/views/Options.php:3688
787
- #: admin/views/Options.php:3699 admin/views/Options.php:3713
788
- #: admin/views/Themes.php:221 admin/views/Themes.php:298
789
- #: admin/views/Themes.php:543 admin/views/Themes.php:607
790
- #: admin/views/Themes.php:865 admin/views/Themes.php:929
791
- #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
792
- #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
793
- #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
794
- #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
 
 
 
 
795
  #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
796
  #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
797
  #: admin/views/WidgetTags.php:111
798
  msgid "Yes"
799
  msgstr ""
800
 
801
- #: admin/views/Albums.php:222 admin/views/Galleries.php:259
802
- #: admin/views/Options.php:135 admin/views/Options.php:176
803
- #: admin/views/Options.php:186 admin/views/Options.php:196
804
- #: admin/views/Options.php:215 admin/views/Options.php:225
805
- #: admin/views/Options.php:235 admin/views/Options.php:245
806
- #: admin/views/Options.php:257 admin/views/Options.php:268
807
- #: admin/views/Options.php:278 admin/views/Options.php:288
808
- #: admin/views/Options.php:298 admin/views/Options.php:308
809
- #: admin/views/Options.php:318 admin/views/Options.php:336
810
- #: admin/views/Options.php:342 admin/views/Options.php:629
811
- #: admin/views/Options.php:640 admin/views/Options.php:651
812
- #: admin/views/Options.php:1168 admin/views/Options.php:1194
813
- #: admin/views/Options.php:1204 admin/views/Options.php:1216
814
- #: admin/views/Options.php:1226 admin/views/Options.php:1247
815
- #: admin/views/Options.php:1257 admin/views/Options.php:1386
816
- #: admin/views/Options.php:1412 admin/views/Options.php:1422
817
- #: admin/views/Options.php:1434 admin/views/Options.php:1444
818
- #: admin/views/Options.php:1465 admin/views/Options.php:1476
819
- #: admin/views/Options.php:1486 admin/views/Options.php:1533
820
- #: admin/views/Options.php:1622 admin/views/Options.php:1648
821
- #: admin/views/Options.php:1658 admin/views/Options.php:1670
822
- #: admin/views/Options.php:1680 admin/views/Options.php:1700
823
- #: admin/views/Options.php:1710 admin/views/Options.php:1819
824
- #: admin/views/Options.php:1829 admin/views/Options.php:1839
825
- #: admin/views/Options.php:1861 admin/views/Options.php:1882
826
- #: admin/views/Options.php:1919 admin/views/Options.php:1929
827
- #: admin/views/Options.php:1966 admin/views/Options.php:1985
828
- #: admin/views/Options.php:2014 admin/views/Options.php:2023
829
- #: admin/views/Options.php:2059 admin/views/Options.php:2085
830
- #: admin/views/Options.php:2095 admin/views/Options.php:2107
831
- #: admin/views/Options.php:2117 admin/views/Options.php:2127
832
- #: admin/views/Options.php:2218 admin/views/Options.php:2244
833
- #: admin/views/Options.php:2254 admin/views/Options.php:2266
834
- #: admin/views/Options.php:2276 admin/views/Options.php:2286
835
- #: admin/views/Options.php:2297 admin/views/Options.php:2308
836
- #: admin/views/Options.php:2395 admin/views/Options.php:2418
837
- #: admin/views/Options.php:2429 admin/views/Options.php:2440
838
- #: admin/views/Options.php:2451 admin/views/Options.php:2462
839
- #: admin/views/Options.php:2525 admin/views/Options.php:2602
840
- #: admin/views/Options.php:2628 admin/views/Options.php:2638
841
- #: admin/views/Options.php:2650 admin/views/Options.php:2660
842
- #: admin/views/Options.php:2708 admin/views/Options.php:2743
843
- #: admin/views/Options.php:2753 admin/views/Options.php:2825
844
- #: admin/views/Options.php:2902 admin/views/Options.php:2928
845
- #: admin/views/Options.php:2938 admin/views/Options.php:2950
846
- #: admin/views/Options.php:2960 admin/views/Options.php:2981
847
- #: admin/views/Options.php:3065 admin/views/Options.php:3142
848
- #: admin/views/Options.php:3168 admin/views/Options.php:3178
849
- #: admin/views/Options.php:3190 admin/views/Options.php:3200
850
- #: admin/views/Options.php:3210 admin/views/Options.php:3247
851
- #: admin/views/Options.php:3282 admin/views/Options.php:3292
852
- #: admin/views/Options.php:3346 admin/views/Options.php:3357
853
- #: admin/views/Options.php:3406 admin/views/Options.php:3425
854
- #: admin/views/Options.php:3474 admin/views/Options.php:3484
855
- #: admin/views/Options.php:3498 admin/views/Options.php:3509
856
- #: admin/views/Options.php:3520 admin/views/Options.php:3531
857
- #: admin/views/Options.php:3542 admin/views/Options.php:3552
858
- #: admin/views/Options.php:3562 admin/views/Options.php:3582
859
- #: admin/views/Options.php:3593 admin/views/Options.php:3606
860
- #: admin/views/Options.php:3616 admin/views/Options.php:3626
861
- #: admin/views/Options.php:3636 admin/views/Options.php:3646
862
- #: admin/views/Options.php:3667 admin/views/Options.php:3678
863
- #: admin/views/Options.php:3689 admin/views/Options.php:3700
864
- #: admin/views/Options.php:3714 admin/views/Themes.php:223
865
- #: admin/views/Themes.php:300 admin/views/Themes.php:545
866
- #: admin/views/Themes.php:609 admin/views/Themes.php:867
867
- #: admin/views/Themes.php:931 admin/views/Themes.php:1922
868
- #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
869
- #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
870
- #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
 
 
 
 
871
  #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
872
  #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
873
  #: admin/views/WidgetTags.php:112
874
  msgid "No"
875
  msgstr ""
876
 
877
- #: admin/views/Albums.php:237 admin/views/Galleries.php:274
878
- #: admin/views/Options.php:86 admin/views/Shortcode.php:293
879
  msgid "Advanced"
880
  msgstr ""
881
 
882
- #: admin/views/Albums.php:245 admin/views/Galleries.php:285
883
  msgid "Slug"
884
  msgstr ""
885
 
886
- #: admin/views/Albums.php:250 admin/views/Galleries.php:290
887
- #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
888
  msgid "Description"
889
  msgstr ""
890
 
891
- #: admin/views/Albums.php:277
892
  msgid "Galleries and Gallery Groups"
893
  msgstr ""
894
 
895
- #: admin/views/Albums.php:324 admin/views/Galleries.php:97
896
- #: admin/views/Galleries.php:694
897
  msgid "Drag to re-order"
898
  msgstr ""
899
 
900
- #: admin/views/Albums.php:332
901
  msgid "Remove"
902
  msgstr ""
903
 
904
- #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
905
- #: admin/views/Galleries.php:714 admin/views/Options.php:1149
906
- #: admin/views/Options.php:1367 admin/views/Options.php:1603
907
- #: admin/views/Options.php:1800 admin/views/Options.php:2040
908
- #: admin/views/Options.php:2199 admin/views/Options.php:2376
909
- #: admin/views/Options.php:2583 admin/views/Options.php:2883
910
- #: admin/views/Options.php:3123
911
  msgid "Type"
912
  msgstr ""
913
 
914
- #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
915
- #: admin/views/Shortcode.php:264
916
- #, fuzzy
917
  #| msgid "Gallery is empty."
918
  msgid "Gallery group"
919
- msgstr "Gallery is empty."
920
 
921
- #: admin/views/Albumsgalleries.php:137
 
 
 
 
 
 
922
  msgid "Add to Gallery Group"
923
  msgstr ""
924
 
925
  #: admin/views/Comments.php:70 admin/views/Comments.php:118
926
- #: frontend/views/BWGViewGalleryBox.php:1000
927
  msgid "Email"
928
- msgstr "Email"
929
 
930
  #: admin/views/Comments.php:71 admin/views/Comments.php:121
931
- #: frontend/views/BWGViewGalleryBox.php:1005
932
  msgid "Comment"
933
- msgstr "Comment"
934
 
935
  #: admin/views/Comments.php:72 admin/views/Comments.php:124
936
- #: admin/views/Galleries.php:711 admin/views/Options.php:1146
937
- #: admin/views/Options.php:1364 admin/views/Options.php:1600
938
- #: admin/views/Options.php:1797 admin/views/Options.php:2037
939
- #: admin/views/Options.php:2196 admin/views/Options.php:2373
940
- #: admin/views/Options.php:2580 admin/views/Options.php:2880
941
- #: admin/views/Options.php:3120 admin/views/Ratings.php:60
942
- #: admin/views/Ratings.php:92 frontend/views/view.php:424
 
 
943
  msgid "Date"
944
  msgstr ""
945
 
@@ -959,366 +964,355 @@ msgstr ""
959
  msgid "Crop"
960
  msgstr ""
961
 
962
- #: admin/views/Editimage.php:321
963
  msgid "The thumbnail was successfully cropped."
964
  msgstr ""
965
 
966
- #: admin/views/Editimage.php:803
967
  msgid "Grayscale"
968
  msgstr ""
969
 
970
- #: admin/views/Editimage.php:807
971
  msgid "Negative"
972
  msgstr ""
973
 
974
- #: admin/views/Editimage.php:811
975
  msgid "Removal"
976
  msgstr ""
977
 
978
- #: admin/views/Editimage.php:815
979
  msgid "Sepia"
980
  msgstr ""
981
 
982
- #: admin/views/Editimage.php:819
983
  msgid "Slate"
984
  msgstr ""
985
 
986
- #: admin/views/Editimage.php:823
987
  msgid "Saturate"
988
  msgstr ""
989
 
990
- #: admin/views/Editimage.php:827 admin/views/Galleries.php:728
991
  msgid "Do you want to reset the image?"
992
  msgstr ""
993
 
994
- #: admin/views/Editimage.php:829
995
- #, fuzzy
996
  #| msgid "Reset"
997
  msgid "Reset image"
998
- msgstr "Reset"
999
 
1000
- #: admin/views/Editimage.php:855
1001
  msgid "Brightness"
1002
  msgstr ""
1003
 
1004
- #: admin/views/Editimage.php:857 admin/views/Editimage.php:882
1005
  msgid "Press for result"
1006
  msgstr ""
1007
 
1008
- #: admin/views/Editimage.php:880
1009
  msgid "Contrast"
1010
  msgstr ""
1011
 
1012
- #: admin/views/Galleries.php:58 admin/views/Galleries.php:622
1013
- msgid "Drag&Drop"
 
1014
  msgstr ""
1015
 
1016
- #: admin/views/Galleries.php:64 admin/views/Galleries.php:126
1017
  msgid "Images count"
1018
  msgstr ""
1019
 
1020
- #: admin/views/Galleries.php:200
1021
- #, fuzzy
1022
  #| msgid "Gallery is empty."
1023
  msgid "Gallery title"
1024
- msgstr "Gallery is empty."
 
 
 
 
1025
 
1026
- #: admin/views/Galleries.php:252
1027
  msgid ""
1028
  "Add a preview image, which will be displayed as the cover image of the "
1029
  "gallery when it is published in a gallery group."
1030
  msgstr ""
1031
 
1032
- #: admin/views/Galleries.php:316
1033
  msgid "Gallery content type"
1034
  msgstr ""
1035
 
1036
- #: admin/views/Galleries.php:330
1037
  msgid ""
1038
  "Select the type of gallery content. Mixed galleries can include all "
1039
  "supported items. Alternatively, you can showcase images from one specific "
1040
  "source only."
1041
  msgstr ""
1042
 
1043
- #: admin/views/Galleries.php:332
1044
  msgid ""
1045
  "Gallery type cannot be changed, as it is not empty. If you would like to "
1046
  "show images from another source, please create a new gallery."
1047
  msgstr ""
1048
 
1049
- #: admin/views/Galleries.php:338
1050
  msgid "Number of Instagram recent posts to add to gallery"
1051
  msgstr ""
1052
 
1053
- #: admin/views/Galleries.php:342
1054
  msgid "Instagram embed type"
1055
  msgstr ""
1056
 
1057
- #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
1058
  msgid "Content"
1059
  msgstr ""
1060
 
1061
- #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
1062
  msgid "Whole post"
1063
  msgstr ""
1064
 
1065
- #: admin/views/Galleries.php:349
1066
- #, fuzzy
1067
  #| msgid "Photo gallery plugin autoupdate interval."
1068
  msgid "Gallery autoupdate option"
1069
- msgstr "Photo gallery plugin autoupdate interval."
1070
 
1071
- #: admin/views/Galleries.php:351
1072
  msgid "No update"
1073
  msgstr ""
1074
 
1075
- #: admin/views/Galleries.php:353
1076
  msgid "Add new media, keep old ones published."
1077
  msgstr ""
1078
 
1079
- #: admin/views/Galleries.php:355
1080
  msgid "Add new media, unpublish old ones."
1081
  msgstr ""
1082
 
1083
- #: admin/views/Galleries.php:358
1084
  msgid "Add Instagram Gallery"
1085
  msgstr ""
1086
 
1087
- #: admin/views/Galleries.php:367
1088
  msgid "Photo Gallery Facebook Integration"
1089
  msgstr ""
1090
 
1091
- #: admin/views/Galleries.php:368
1092
  #, php-format
1093
  msgid "Please install %s add-on to use this feature."
1094
  msgstr ""
1095
 
1096
- #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
1097
  msgid "Add Images"
1098
  msgstr ""
1099
 
1100
- #: admin/views/Galleries.php:398
1101
  msgid "Import from Media Library"
1102
  msgstr ""
1103
 
1104
- #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
1105
  msgid "Embed Media"
1106
  msgstr ""
1107
 
1108
- #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
1109
  msgid "Social Bulk Embed"
1110
  msgstr ""
1111
 
1112
- #: admin/views/Galleries.php:410 photo-gallery.php:108
1113
- msgid "This option is disabled in free version."
1114
  msgstr ""
1115
 
1116
- #: admin/views/Galleries.php:413
1117
  msgid "Optimize Images"
1118
  msgstr ""
1119
 
1120
- #: admin/views/Galleries.php:429
1121
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1122
  msgstr ""
1123
 
1124
- #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
1125
  msgid "Add to gallery"
1126
  msgstr ""
1127
 
1128
- #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
1129
- #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
1130
- #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
1131
- #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
1132
  msgid "Cancel"
1133
  msgstr ""
1134
 
1135
- #: admin/views/Galleries.php:436
1136
  msgid "<b>Youtube</b> URL example:"
1137
  msgstr ""
1138
 
1139
- #: admin/views/Galleries.php:440
1140
  msgid "<b>Vimeo</b> URL example:"
1141
  msgstr ""
1142
 
1143
- #: admin/views/Galleries.php:444
1144
  msgid "<b>Instagram</b> URL example:"
1145
  msgstr ""
1146
 
1147
- #: admin/views/Galleries.php:446
1148
- msgid "post"
1149
- msgstr ""
1150
-
1151
- #: admin/views/Galleries.php:446
1152
- msgid ""
1153
- "to the end of URL if you want to embed the whole Instagram post, not only "
1154
- "its content."
1155
- msgstr ""
1156
-
1157
- #: admin/views/Galleries.php:454
1158
  msgid "<b>Flickr</b> URL example:"
1159
  msgstr ""
1160
 
1161
- #: admin/views/Galleries.php:458
1162
  msgid "<b>Dailymotion</b> URL example:"
1163
  msgstr ""
1164
 
1165
- #: admin/views/Galleries.php:477
1166
  msgid "username:"
1167
  msgstr ""
1168
 
1169
- #: admin/views/Galleries.php:485
1170
  msgid "Number of Instagram recent posts to add to gallery:"
1171
  msgstr ""
1172
 
1173
- #: admin/views/Galleries.php:493
1174
  msgid "embed type:"
1175
  msgstr ""
1176
 
1177
- #: admin/views/Galleries.php:512
1178
  msgid "Resize images to: "
1179
  msgstr ""
1180
 
1181
- #: admin/views/Galleries.php:515
1182
  msgid "The maximum size of resized image."
1183
  msgstr ""
1184
 
1185
- #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
1186
  msgid "Resize"
1187
  msgstr ""
1188
 
1189
- #: admin/views/Galleries.php:532
1190
  msgid "Alt/Title: "
1191
  msgstr ""
1192
 
1193
- #: admin/views/Galleries.php:535
1194
  msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1195
  msgstr ""
1196
 
1197
- #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
1198
- #: admin/views/Galleries.php:581
1199
  msgid "Save changes"
1200
  msgstr ""
1201
 
1202
- #: admin/views/Galleries.php:551
1203
  msgid "Redirect URL: "
1204
  msgstr ""
1205
 
1206
- #: admin/views/Galleries.php:554
1207
  msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1208
  msgstr ""
1209
 
1210
- #: admin/views/Galleries.php:570
1211
  msgid "Description: "
1212
  msgstr ""
1213
 
1214
- #: admin/views/Galleries.php:573
1215
  msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1216
  msgstr ""
1217
 
1218
- #: admin/views/Galleries.php:599
1219
- #, fuzzy
1220
  #| msgid "You have already rated."
1221
  msgid "You have unsaved changes."
1222
- msgstr "You have already rated."
1223
 
1224
- #: admin/views/Galleries.php:604
1225
  msgid ""
1226
  "This sorting does not affect the published galleries. You can change the "
1227
  "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1228
  msgstr ""
1229
 
1230
- #: admin/views/Galleries.php:621 photo-gallery.php:616
1231
- #, fuzzy
1232
  #| msgid "Show comments"
1233
  msgid "Show order column"
1234
- msgstr "Show comments"
1235
 
1236
- #: admin/views/Galleries.php:623
 
 
 
 
1237
  msgid "Numerate"
1238
  msgstr ""
1239
 
1240
- #: admin/views/Galleries.php:629
1241
- #, fuzzy
1242
  #| msgid "Order by: "
1243
  msgid "Ordering"
1244
- msgstr "Order by: "
1245
-
1246
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
1247
- #: admin/views/Options.php:1147 admin/views/Options.php:1365
1248
- #: admin/views/Options.php:1601 admin/views/Options.php:1798
1249
- #: admin/views/Options.php:2038 admin/views/Options.php:2197
1250
- #: admin/views/Options.php:2374 admin/views/Options.php:2581
1251
- #: admin/views/Options.php:2881 admin/views/Options.php:3121
1252
- #: frontend/views/view.php:427
1253
  msgid "Filename"
1254
- msgstr "Filename"
1255
 
1256
- #: admin/views/Galleries.php:640 admin/views/Options.php:681
1257
- #: admin/views/Options.php:834 admin/views/Ratings.php:57
1258
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
1259
  #: admin/views/WidgetTags.php:84
1260
  msgid "Image"
1261
  msgstr ""
1262
 
1263
- #: admin/views/Galleries.php:712 admin/views/Options.php:1150
1264
- #: admin/views/Options.php:1368 admin/views/Options.php:1604
1265
- #: admin/views/Options.php:1801 admin/views/Options.php:2041
1266
- #: admin/views/Options.php:2200 admin/views/Options.php:2377
1267
- #: admin/views/Options.php:2584 admin/views/Options.php:2884
1268
- #: admin/views/Options.php:3124
1269
  msgid "Resolution"
1270
  msgstr ""
1271
 
1272
- #: admin/views/Galleries.php:713 admin/views/Options.php:1148
1273
- #: admin/views/Options.php:1366 admin/views/Options.php:1602
1274
- #: admin/views/Options.php:1799 admin/views/Options.php:2039
1275
- #: admin/views/Options.php:2198 admin/views/Options.php:2375
1276
- #: admin/views/Options.php:2582 admin/views/Options.php:2882
1277
- #: admin/views/Options.php:3122 filemanager/view.php:151
1278
- #: frontend/views/view.php:430
1279
  msgid "Size"
1280
- msgstr "Size"
1281
 
1282
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
1283
- #: admin/views/Options.php:157 admin/views/Options.php:957
1284
- #: admin/views/Options.php:960
1285
  msgid "Image edit functionality is not supported by your web host."
1286
  msgstr ""
1287
 
1288
- #: admin/views/Galleries.php:727
1289
  msgid "Crop Thumbnail"
1290
  msgstr ""
1291
 
1292
- #: admin/views/Galleries.php:728 admin/views/Themes.php:191
1293
- #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
1294
- #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
 
1295
  msgid "Reset"
1296
- msgstr "Reset"
1297
 
1298
- #: admin/views/Galleries.php:748
1299
  msgid "Alt/Title"
1300
  msgstr ""
1301
 
1302
- #: admin/views/Galleries.php:770
1303
  msgid "Redirect URL"
1304
  msgstr ""
1305
 
1306
- #: admin/views/Galleries.php:774
1307
  msgid "Options > General"
1308
  msgstr ""
1309
 
1310
- #: admin/views/Galleries.php:775
1311
  #, php-format
1312
  msgid ""
1313
  "To activate this feature, go to %s, then set \"Image click action\" to "
1314
  "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1315
  msgstr ""
1316
 
1317
- #: admin/views/Galleries.php:793
1318
  msgid "Remove tag"
1319
  msgstr ""
1320
 
1321
- #: admin/views/Galleries.php:803
1322
  msgid "Add tag"
1323
  msgstr ""
1324
 
@@ -1333,10 +1327,9 @@ msgid "Name is required."
1333
  msgstr ""
1334
 
1335
  #: admin/views/LibSubscribe.php:20
1336
- #, fuzzy
1337
  #| msgid "This is not a valid email address."
1338
  msgid "Please enter a valid email."
1339
- msgstr "This is not a valid email address."
1340
 
1341
  #: admin/views/LibSubscribe.php:62
1342
  msgid ""
@@ -1362,1764 +1355,1749 @@ msgstr ""
1362
  msgid "Skip"
1363
  msgstr ""
1364
 
1365
- #: admin/views/Options.php:47 admin/views/Themes.php:181
1366
- msgid "Save"
1367
- msgstr ""
1368
-
1369
- #: admin/views/Options.php:53
1370
- msgid "Reset all options"
1371
  msgstr ""
1372
 
1373
- #: admin/views/Options.php:54 admin/views/Themes.php:186
1374
  msgid "Do you want to reset to default?"
1375
  msgstr ""
1376
 
1377
- #: admin/views/Options.php:77
1378
- #, fuzzy
1379
  #| msgid "Gallery is empty."
1380
- msgid "Gallery defaults"
1381
- msgstr "Gallery is empty."
1382
 
1383
- #: admin/views/Options.php:80
1384
- #, fuzzy
1385
  #| msgid "Gallery is empty."
1386
- msgid "Gallery Group defaults"
1387
- msgstr "Gallery is empty."
1388
-
1389
- #: admin/views/Options.php:83
1390
- msgid "Lightbox defaults"
1391
  msgstr ""
1392
 
1393
- #: admin/views/Options.php:89 photo-gallery.php:1543
1394
  msgid "Watermark"
1395
  msgstr ""
1396
 
1397
- #: admin/views/Options.php:109
1398
  msgid "Images directory"
1399
  msgstr ""
1400
 
1401
- #: admin/views/Options.php:114
1402
  msgid ""
1403
  "Provide the path of an existing folder inside the WordPress directory of "
1404
  "your website to store uploaded images.<br />The content of the previous "
1405
  "directory will be moved to the new one."
1406
  msgstr ""
1407
 
1408
- #: admin/views/Options.php:122 admin/views/Options.php:3333
1409
  msgid "Image click action"
1410
  msgstr ""
1411
 
1412
- #: admin/views/Options.php:124 admin/views/Options.php:3335
1413
  msgid "Open lightbox"
1414
  msgstr ""
1415
 
1416
- #: admin/views/Options.php:125 admin/views/Options.php:3336
1417
  msgid "Redirect to url"
1418
  msgstr ""
1419
 
1420
- #: admin/views/Options.php:126 admin/views/Options.php:3337
1421
  msgid "Do Nothing"
1422
  msgstr ""
1423
 
1424
- #: admin/views/Options.php:128 admin/views/Options.php:3339
1425
  msgid "Select the action which runs after clicking on gallery thumbnails."
1426
  msgstr ""
1427
 
1428
- #: admin/views/Options.php:132 admin/views/Options.php:3343
1429
  msgid "Open in a new window"
1430
  msgstr ""
1431
 
1432
- #: admin/views/Options.php:142 admin/views/Options.php:2335
1433
  msgid "Image dimensions"
1434
  msgstr ""
1435
 
1436
- #: admin/views/Options.php:147
1437
  msgid ""
1438
  "Specify the maximum dimensions of uploaded images (set 0 for original size)."
1439
  msgstr ""
1440
 
1441
- #: admin/views/Options.php:152
1442
  msgid "Generated thumbnail dimensions"
1443
  msgstr ""
1444
 
1445
- #: admin/views/Options.php:157 photo-gallery.php:417
1446
  msgid "Recreate"
1447
  msgstr ""
1448
 
1449
- #: admin/views/Options.php:159
1450
  msgid ""
1451
  "Specify the maximum dimensions of generated thumbnails. They must be larger "
1452
  "than frontend thumbnail dimensions."
1453
  msgstr ""
1454
 
1455
- #: admin/views/Options.php:164
1456
  msgid "Image quality"
1457
  msgstr ""
1458
 
1459
- #: admin/views/Options.php:168
1460
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1461
  msgstr ""
1462
 
1463
- #: admin/views/Options.php:173
1464
  msgid "Resizable thumbnails"
1465
  msgstr ""
1466
 
1467
- #: admin/views/Options.php:178
1468
  msgid ""
1469
  "Enable this option to allow resizing gallery thumbnails on smaller screens."
1470
  msgstr ""
1471
 
1472
- #: admin/views/Options.php:183
1473
  msgid "Lazy load"
1474
  msgstr ""
1475
 
1476
- #: admin/views/Options.php:188
1477
  msgid ""
1478
  "Enable this option to activate lazy loading for images and improve the "
1479
  "loading speed on your galleries."
1480
  msgstr ""
1481
 
1482
- #: admin/views/Options.php:193
1483
  msgid "Preload images"
1484
  msgstr ""
1485
 
1486
- #: admin/views/Options.php:198
1487
  msgid ""
1488
  "If this setting is enabled, Photo Gallery loads a specific number of images "
1489
  "before opening lightbox. This lets you showcase images without loading "
1490
  "delays, providing better user experience."
1491
  msgstr ""
1492
 
1493
- #: admin/views/Options.php:203
1494
  msgid "Number of preloaded images"
1495
  msgstr ""
1496
 
1497
- #: admin/views/Options.php:207
1498
  msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1499
  msgstr ""
1500
 
1501
- #: admin/views/Options.php:212
1502
- #, fuzzy
1503
  #| msgid "Show comments"
1504
  msgid "Show custom posts"
1505
- msgstr "Show comments"
1506
 
1507
- #: admin/views/Options.php:217
1508
  msgid ""
1509
  "Activate this setting to display Photo Gallery custom posts with new menu "
1510
  "items under WordPress admin menu."
1511
  msgstr ""
1512
 
1513
- #: admin/views/Options.php:222
1514
  msgid "Discourage Search Engine Visibility"
1515
  msgstr ""
1516
 
1517
- #: admin/views/Options.php:227
1518
  msgid "Discourage search engines from indexing Photo Gallery custom posts."
1519
  msgstr ""
1520
 
1521
- #: admin/views/Options.php:232
1522
- #, fuzzy
1523
  #| msgid "Show comments"
1524
  msgid "Show comments for custom posts"
1525
- msgstr "Show comments"
1526
 
1527
- #: admin/views/Options.php:237
1528
  msgid ""
1529
  "Use this setting to show or hide comments under Photo Gallery custom posts."
1530
  msgstr ""
1531
 
1532
- #: admin/views/Options.php:242
1533
  msgid "Use AND operator for tag filtering"
1534
  msgstr ""
1535
 
1536
- #: admin/views/Options.php:247
1537
  msgid ""
1538
  "Enable this option to filter images with AND operator. In this case, the "
1539
  "filter results must have all selected tags in the Tag Box."
1540
  msgstr ""
1541
 
1542
- #: admin/views/Options.php:254
 
 
 
 
 
 
 
 
 
1543
  msgid "Save IP "
1544
  msgstr ""
1545
 
1546
- #: admin/views/Options.php:259
1547
  msgid "Disable saving user IP address when rating the images."
1548
  msgstr ""
1549
 
1550
- #: admin/views/Options.php:265
1551
  msgid "Right-click protection"
1552
  msgstr ""
1553
 
1554
- #: admin/views/Options.php:270
1555
  msgid "Switch off right-click on your gallery images by enabling this setting."
1556
  msgstr ""
1557
 
1558
- #: admin/views/Options.php:275
1559
  msgid "Include styles/scripts on gallery pages only"
1560
  msgstr ""
1561
 
1562
- #: admin/views/Options.php:280
1563
  msgid ""
1564
  "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1565
  "only load on pages with galleries and gallery groups."
1566
  msgstr ""
1567
 
1568
- #: admin/views/Options.php:285
1569
- #, fuzzy
1570
  #| msgid "Show comments"
1571
  msgid "Enable Google fonts"
1572
- msgstr "Show comments"
1573
 
1574
- #: admin/views/Options.php:290
1575
  msgid ""
1576
  "If this option is disabled, Google fonts will not be included in your pages."
1577
  msgstr ""
1578
 
1579
- #: admin/views/Options.php:295
1580
- #, fuzzy
1581
  #| msgid "Hide info"
1582
  msgid "Enable HTML editor"
1583
- msgstr "Hide info"
1584
 
1585
- #: admin/views/Options.php:300
1586
  msgid ""
1587
  "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1588
  "this setting is enabled."
1589
  msgstr ""
1590
 
1591
- #: admin/views/Options.php:305
 
 
 
 
 
 
 
 
 
 
1592
  msgid "Enable href attribute"
1593
  msgstr ""
1594
 
1595
- #: admin/views/Options.php:310
1596
  msgid "Disable this option only if Photo Gallery conflicts with your theme."
1597
  msgstr ""
1598
 
1599
- #: admin/views/Options.php:315
1600
  msgid "Auto-fill metadata"
1601
  msgstr ""
1602
 
1603
- #: admin/views/Options.php:320
1604
  msgid ""
1605
  "Enabling this option will let the plugin fill in meta descriptions of photos "
1606
  "into Image Description option automatically."
1607
  msgstr ""
1608
 
1609
- #: admin/views/Options.php:325 admin/views/Options.php:328
1610
- #: photo-gallery.php:491
1611
  msgid "Generate Shortcode"
1612
  msgstr ""
1613
 
1614
- #: admin/views/Options.php:331
1615
  msgid ""
1616
  "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1617
  "or gallery groups."
1618
  msgstr ""
1619
 
1620
- #: admin/views/Options.php:334
1621
  msgid "Enable dynamic URLs for galleries and gallery groups"
1622
  msgstr ""
1623
 
1624
- #: admin/views/Options.php:337
1625
  msgid ""
1626
  "Enable this option to browse galleries and gallery groups, as well as search "
1627
  "results and tagged images with dynamic links."
1628
  msgstr ""
1629
 
1630
- #: admin/views/Options.php:340
1631
  msgid "Developer mode"
1632
  msgstr ""
1633
 
1634
- #: admin/views/Options.php:343
1635
  msgid ""
1636
  "Do not use minified JS and CSS files. Enable this option if You need to "
1637
  "debug JS or CSS issues."
1638
  msgstr ""
1639
 
1640
- #: admin/views/Options.php:354 photo-gallery.php:490
1641
  msgid "Uninstall"
1642
  msgstr ""
1643
 
1644
- #: admin/views/Options.php:357
1645
  msgid ""
1646
  "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1647
  "gallery groups and other data on the plugin. Please make sure you don't have "
1648
  "any important information before you proceed."
1649
  msgstr ""
1650
 
1651
- #: admin/views/Options.php:430 admin/views/Options.php:487
1652
- #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
1653
- msgid "View type"
1654
  msgstr ""
1655
 
1656
- #: admin/views/Options.php:447 admin/views/Options.php:504
1657
- #: admin/views/Shortcode.php:177
1658
- msgid "This view is not available in free version."
 
 
 
 
 
1659
  msgstr ""
1660
 
1661
- #: admin/views/Options.php:532
1662
  msgid "Social"
1663
  msgstr ""
1664
 
1665
- #: admin/views/Options.php:538
1666
- #, fuzzy
1667
  #| msgid "Photo gallery plugin autoupdate interval."
1668
  msgid "Gallery autoupdate interval"
1669
- msgstr "Photo gallery plugin autoupdate interval."
1670
 
1671
- #: admin/views/Options.php:541
1672
  msgid "hour"
1673
  msgstr ""
1674
 
1675
- #: admin/views/Options.php:543
1676
  msgid "min"
1677
  msgstr ""
1678
 
1679
- #: admin/views/Options.php:545
1680
  msgid ""
1681
  "Set the interval when Instagram galleries will be updated, and will display "
1682
  "new posts of your Instagram or Facebook account."
1683
  msgstr ""
1684
 
1685
- #: admin/views/Options.php:551
1686
  msgid "Instagram"
1687
  msgstr ""
1688
 
1689
- #: admin/views/Options.php:557
1690
- msgid ""
1691
- "Press this button to sign in to your Instagram account. In this case, access "
1692
- "token will be added automatically."
1693
- msgstr ""
1694
-
1695
- #: admin/views/Options.php:561
1696
- msgid "Sign in with Instagram"
1697
  msgstr ""
1698
 
1699
- #: admin/views/Options.php:563
1700
  msgid ""
1701
  "Press this button to sign in to your Instagram account. This lets you "
1702
  "incorporate Instagram API to your website."
1703
  msgstr ""
1704
 
1705
- #: admin/views/Options.php:566
1706
- msgid ""
1707
- "Press this button to sign out from your Instagram account. The access token "
1708
- "will reset."
1709
- msgstr ""
1710
-
1711
- #: admin/views/Options.php:568
1712
  msgid ""
1713
  "Are you sure you want to reset access token, after resetting it you will "
1714
  "need to log in with Instagram again for using plugin"
1715
  msgstr ""
1716
 
1717
- #: admin/views/Options.php:570
1718
- msgid "Sign out from Instagram"
1719
- msgstr ""
1720
-
1721
- #: admin/views/Options.php:572
1722
- msgid "Press this button to sign out from your Instagram account."
1723
  msgstr ""
1724
 
1725
- #: admin/views/Options.php:600 admin/views/Options.php:606
1726
  msgid "Roles"
1727
  msgstr ""
1728
 
1729
- #: admin/views/Options.php:618
1730
  msgid ""
1731
  "Choose a WordPress user role which can add and edit galleries, images, "
1732
- "gallery groups and tags."
1733
  msgstr ""
1734
 
1735
- #: admin/views/Options.php:626
1736
- #, fuzzy
1737
  #| msgid "Gallery is empty."
1738
  msgid "Gallery role restrictions"
1739
- msgstr "Gallery is empty."
1740
 
1741
- #: admin/views/Options.php:631
1742
  msgid ""
1743
  "Enable this setting to restrict authors from modifying galleries created by "
1744
  "other users."
1745
  msgstr ""
1746
 
1747
- #: admin/views/Options.php:637
1748
- #, fuzzy
1749
  #| msgid "Gallery is empty."
1750
  msgid "Gallery group restrictions"
1751
- msgstr "Gallery is empty."
1752
 
1753
- #: admin/views/Options.php:642
1754
  msgid ""
1755
  "Enabling this option will restrict authors from modifying galleries groups "
1756
  "created by other users."
1757
  msgstr ""
1758
 
1759
- #: admin/views/Options.php:648
1760
  msgid "Image role restrictions"
1761
  msgstr ""
1762
 
1763
- #: admin/views/Options.php:653
1764
  msgid ""
1765
  "Enable this setting to restrict authors from modifying images added by other "
1766
  "users."
1767
  msgstr ""
1768
 
1769
- #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1770
  msgid "Advertisement"
1771
  msgstr ""
1772
 
1773
- #: admin/views/Options.php:674 admin/views/Shortcode.php:298
1774
  msgid "Advertisement type"
1775
  msgstr ""
1776
 
1777
- #: admin/views/Options.php:679 admin/views/Options.php:832
1778
- #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
1779
  #: admin/views/WidgetTags.php:83
1780
  msgid "Text"
1781
  msgstr ""
1782
 
1783
- #: admin/views/Options.php:683 admin/views/Shortcode.php:302
1784
  msgid "Add Text or Image advertisement to your images with this option."
1785
  msgstr ""
1786
 
1787
- #: admin/views/Options.php:688 admin/views/Shortcode.php:315
1788
  msgid "Advertisement URL"
1789
  msgstr ""
1790
 
1791
- #: admin/views/Options.php:696 admin/views/Options.php:698
1792
- #: admin/views/Options.php:849 admin/views/Options.php:851
1793
- #, fuzzy
1794
  #| msgid "Reset"
1795
  msgid "Select Image"
1796
- msgstr "Reset"
1797
 
1798
- #: admin/views/Options.php:700 admin/views/Options.php:853
1799
- #: filemanager/view.php:246
1800
- #, fuzzy
1801
  #| msgid "More"
1802
  msgid "or"
1803
- msgstr "More"
1804
 
1805
- #: admin/views/Options.php:703 admin/views/Shortcode.php:317
1806
  msgid ""
1807
  "Provide the absolute URL of the image you would like to use as advertisement."
1808
  msgstr ""
1809
 
1810
- #: admin/views/Options.php:708 admin/views/Shortcode.php:322
1811
  msgid "Advertisement text"
1812
  msgstr ""
1813
 
1814
- #: admin/views/Options.php:712 admin/views/Shortcode.php:324
1815
  msgid "Write the text to add to images as advertisement."
1816
  msgstr ""
1817
 
1818
- #: admin/views/Options.php:717 admin/views/Shortcode.php:308
1819
  msgid "Advertisement link"
1820
  msgstr ""
1821
 
1822
- #: admin/views/Options.php:721 admin/views/Shortcode.php:310
1823
  msgid "Provide the link to be added to advertisement on images."
1824
  msgstr ""
1825
 
1826
- #: admin/views/Options.php:726 admin/views/Shortcode.php:362
1827
  msgid "Advertisement dimensions"
1828
  msgstr ""
1829
 
1830
- #: admin/views/Options.php:731 admin/views/Shortcode.php:367
1831
  msgid "Select the dimensions of the advertisement image."
1832
  msgstr ""
1833
 
1834
- #: admin/views/Options.php:736 admin/views/Shortcode.php:353
1835
  msgid "Advertisement font size"
1836
  msgstr ""
1837
 
1838
- #: admin/views/Options.php:740 admin/views/Shortcode.php:357
1839
  msgid "Specify the font size of the advertisement text."
1840
  msgstr ""
1841
 
1842
- #: admin/views/Options.php:745 admin/views/Shortcode.php:331
1843
  msgid "Advertisement font style"
1844
  msgstr ""
1845
 
1846
- #: admin/views/Options.php:760 admin/views/Shortcode.php:345
1847
- #: admin/views/Themes.php:408 admin/views/Themes.php:471
1848
- #: admin/views/Themes.php:704 admin/views/Themes.php:759
1849
- #: admin/views/Themes.php:793 admin/views/Themes.php:1028
1850
- #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
1851
- #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
1852
- #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
1853
- #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
1854
- #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
1855
- #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
1856
- #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
1857
- #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
1858
- #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
1859
- #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
1860
- #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
1861
- #: admin/views/Themes.php:4993
1862
  msgid "Google fonts"
1863
  msgstr ""
1864
 
1865
- #: admin/views/Options.php:762 admin/views/Options.php:1144
1866
- #: admin/views/Options.php:1362 admin/views/Options.php:1598
1867
- #: admin/views/Options.php:1795 admin/views/Options.php:2035
1868
- #: admin/views/Options.php:2194 admin/views/Options.php:2371
1869
- #: admin/views/Options.php:2561 admin/views/Options.php:2578
1870
- #: admin/views/Options.php:2861 admin/views/Options.php:2878
1871
- #: admin/views/Options.php:3101 admin/views/Options.php:3118
1872
- #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
1873
- #: admin/views/Themes.php:112 admin/views/Themes.php:410
1874
- #: admin/views/Themes.php:473 admin/views/Themes.php:706
1875
- #: admin/views/Themes.php:761 admin/views/Themes.php:795
1876
- #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
1877
- #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
1878
- #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
1879
- #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
1880
- #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
1881
- #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
1882
- #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
1883
- #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
1884
- #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
1885
- #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
1886
- #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
1887
- #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
1888
  msgid "Default"
1889
- msgstr "Default"
1890
 
1891
- #: admin/views/Options.php:764 admin/views/Shortcode.php:348
1892
  msgid "Select the font family of the advertisement text."
1893
  msgstr ""
1894
 
1895
- #: admin/views/Options.php:769 admin/views/Shortcode.php:372
1896
  msgid "Advertisement color"
1897
  msgstr ""
1898
 
1899
- #: admin/views/Options.php:773 admin/views/Shortcode.php:374
1900
  msgid "Choose the color for the advertisement text on images."
1901
  msgstr ""
1902
 
1903
- #: admin/views/Options.php:778 admin/views/Shortcode.php:381
1904
  msgid "Advertisement opacity"
1905
  msgstr ""
1906
 
1907
- #: admin/views/Options.php:782 admin/views/Shortcode.php:385
1908
  msgid ""
1909
  "Specify the opacity of the advertisement. The value must be between 0 to 100."
1910
  msgstr ""
1911
 
1912
- #: admin/views/Options.php:787 admin/views/Shortcode.php:390
1913
  msgid "Advertisement position"
1914
  msgstr ""
1915
 
1916
- #: admin/views/Options.php:810 admin/views/Shortcode.php:410
1917
  msgid "Mark the position where the advertisement should appear on images."
1918
  msgstr ""
1919
 
1920
- #: admin/views/Options.php:827
1921
  msgid "Watermark type"
1922
  msgstr ""
1923
 
1924
- #: admin/views/Options.php:836
1925
  msgid "Add Text or Image watermark to your images with this option."
1926
  msgstr ""
1927
 
1928
- #: admin/views/Options.php:841
1929
  msgid "Watermark URL"
1930
  msgstr ""
1931
 
1932
- #: admin/views/Options.php:856
1933
  msgid ""
1934
  "Provide the absolute URL of the image you would like to use as watermark."
1935
  msgstr ""
1936
 
1937
- #: admin/views/Options.php:856
1938
  msgid "Only .png format is supported."
1939
  msgstr ""
1940
 
1941
- #: admin/views/Options.php:861
1942
  msgid "Watermark text"
1943
  msgstr ""
1944
 
1945
- #: admin/views/Options.php:865
1946
  msgid "Provide the text to add to images as watermark."
1947
  msgstr ""
1948
 
1949
- #: admin/views/Options.php:870
1950
  msgid "Watermark size"
1951
  msgstr ""
1952
 
1953
- #: admin/views/Options.php:874
1954
  msgid "Specify the size of watermark on images in percent."
1955
  msgstr ""
1956
 
1957
- #: admin/views/Options.php:879
1958
  msgid "Watermark font size"
1959
  msgstr ""
1960
 
1961
- #: admin/views/Options.php:883
1962
  msgid "Specify the font size of the watermark text."
1963
  msgstr ""
1964
 
1965
- #: admin/views/Options.php:888
1966
  msgid "Watermark font style"
1967
  msgstr ""
1968
 
1969
- #: admin/views/Options.php:912
1970
  msgid "Select the font family of the watermark text."
1971
  msgstr ""
1972
 
1973
- #: admin/views/Options.php:917
1974
  msgid "Watermark color"
1975
  msgstr ""
1976
 
1977
- #: admin/views/Options.php:921
1978
  msgid "Choose the color for the watermark text on images."
1979
  msgstr ""
1980
 
1981
- #: admin/views/Options.php:926
1982
  msgid "Watermark opacity"
1983
  msgstr ""
1984
 
1985
- #: admin/views/Options.php:930
1986
  msgid ""
1987
  "Specify the opacity of the watermark. The value must be between 0 to 100."
1988
  msgstr ""
1989
 
1990
- #: admin/views/Options.php:935
1991
  msgid "Watermark position"
1992
  msgstr ""
1993
 
1994
- #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
1995
  msgid "Set watermark"
1996
  msgstr ""
1997
 
1998
- #: admin/views/Options.php:958
1999
  msgid "Set Watermark"
2000
  msgstr ""
2001
 
2002
- #: admin/views/Options.php:959
2003
  msgid "Reset watermark"
2004
  msgstr ""
2005
 
2006
- #: admin/views/Options.php:961
2007
  msgid "Reset Watermark"
2008
  msgstr ""
2009
 
2010
- #: admin/views/Options.php:963
2011
  msgid "Mark the position where the watermark should appear on images."
2012
  msgstr ""
2013
 
2014
- #: admin/views/Options.php:1087 admin/views/Options.php:2513
2015
- #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
2016
  msgid "Thumbnail dimensions"
2017
  msgstr ""
2018
 
2019
- #: admin/views/Options.php:1092 admin/views/Options.php:2518
2020
- #: admin/views/Options.php:2818 admin/views/Options.php:3058
2021
  msgid ""
2022
  "The default dimensions of thumbnails which will display on published "
2023
  "galleries."
2024
  msgstr ""
2025
 
2026
- #: admin/views/Options.php:1097 admin/views/Options.php:1314
2027
- #: admin/views/Options.php:2504 admin/views/Options.php:2805
2028
- #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
2029
  msgid "Number of image columns"
2030
  msgstr ""
2031
 
2032
- #: admin/views/Options.php:1101 admin/views/Options.php:2508
2033
- #: admin/views/Options.php:2809 admin/views/Options.php:3048
2034
  msgid ""
2035
  "Set the maximum number of image columns in galleries. Note, that the parent "
2036
  "container needs to be large enough to display all columns."
2037
  msgstr ""
2038
 
2039
- #: admin/views/Options.php:1106 admin/views/Options.php:1324
2040
- #: admin/views/Options.php:1560 admin/views/Options.php:2154
2041
- #: admin/views/Options.php:2523 admin/views/Options.php:2823
2042
- #: admin/views/Options.php:3063
2043
  msgid "Pagination"
2044
  msgstr ""
2045
 
2046
- #: admin/views/Options.php:1109 admin/views/Options.php:1327
2047
- #: admin/views/Options.php:1563 admin/views/Options.php:2157
2048
- #: admin/views/Options.php:2526 admin/views/Options.php:2826
2049
- #: admin/views/Options.php:3066
2050
  msgid "Simple"
2051
  msgstr ""
2052
 
2053
- #: admin/views/Options.php:1110 admin/views/Options.php:1328
2054
- #: admin/views/Options.php:1564 admin/views/Options.php:2158
2055
- #: admin/views/Options.php:2527 admin/views/Options.php:2827
2056
- #: admin/views/Options.php:3067
2057
- #, fuzzy
2058
  #| msgid "Load More..."
2059
  msgid "Load More"
2060
- msgstr "Load More..."
2061
 
2062
- #: admin/views/Options.php:1111 admin/views/Options.php:1329
2063
- #: admin/views/Options.php:1565 admin/views/Options.php:2159
2064
- #: admin/views/Options.php:2528 admin/views/Options.php:2828
2065
- #: admin/views/Options.php:3068
2066
  msgid "Scroll Load"
2067
  msgstr ""
2068
 
2069
- #: admin/views/Options.php:1113 admin/views/Options.php:1331
2070
- #: admin/views/Options.php:1567 admin/views/Options.php:2161
2071
- #: admin/views/Options.php:2530 admin/views/Options.php:2830
2072
- #: admin/views/Options.php:3070
2073
  msgid "This option removes all types of pagination from your galleries."
2074
  msgstr ""
2075
 
2076
- #: admin/views/Options.php:1114 admin/views/Options.php:1332
2077
- #: admin/views/Options.php:1568 admin/views/Options.php:2162
2078
- #: admin/views/Options.php:2531 admin/views/Options.php:2831
2079
- #: admin/views/Options.php:3071
2080
  msgid ""
2081
  "Activating this option will add page numbers and next/previous buttons to "
2082
  "your galleries."
2083
  msgstr ""
2084
 
2085
- #: admin/views/Options.php:1115 admin/views/Options.php:1333
2086
- #: admin/views/Options.php:1569 admin/views/Options.php:2163
2087
- #: admin/views/Options.php:2532 admin/views/Options.php:2832
2088
- #: admin/views/Options.php:3072
2089
  msgid ""
2090
  "Adding a Load More button, you can let users display a new set of images "
2091
  "from your galleries."
2092
  msgstr ""
2093
 
2094
- #: admin/views/Options.php:1116 admin/views/Options.php:1334
2095
- #: admin/views/Options.php:1570 admin/views/Options.php:2164
2096
- #: admin/views/Options.php:2533 admin/views/Options.php:2833
2097
- #: admin/views/Options.php:3073
2098
  msgid ""
2099
  "With this option, users can load new images of your galleries simply by "
2100
  "scrolling down."
2101
  msgstr ""
2102
 
2103
- #: admin/views/Options.php:1121 admin/views/Options.php:1339
2104
- #: admin/views/Options.php:1575 admin/views/Options.php:2170
2105
- #: admin/views/Options.php:2547 admin/views/Options.php:2847
2106
- #: admin/views/Options.php:3087
2107
  msgid "Images per page"
2108
  msgstr ""
2109
 
2110
- #: admin/views/Options.php:1125 admin/views/Options.php:1343
2111
- #: admin/views/Options.php:1579 admin/views/Options.php:2551
2112
- #: admin/views/Options.php:2851 admin/views/Options.php:3091
2113
  msgid ""
2114
  "Specify the number of images to display per page on galleries. Setting this "
2115
  "option to 0 shows all items."
2116
  msgstr ""
2117
 
2118
- #: admin/views/Options.php:1130 admin/views/Options.php:1348
2119
- #: admin/views/Options.php:1584 admin/views/Options.php:2180
2120
  msgid "Images per load"
2121
  msgstr ""
2122
 
2123
- #: admin/views/Options.php:1134 admin/views/Options.php:1352
2124
- #: admin/views/Options.php:1588 admin/views/Options.php:2184
2125
  msgid "Specify the number of images to display per load on galleries."
2126
  msgstr ""
2127
 
2128
- #: admin/views/Options.php:1142 admin/views/Options.php:1359
2129
- #: admin/views/Options.php:1595 admin/views/Options.php:1792
2130
- #: admin/views/Options.php:2032 admin/views/Options.php:2191
2131
- #: admin/views/Options.php:2368
2132
- #, fuzzy
2133
  #| msgid "Order by: "
2134
  msgid "Order by"
2135
- msgstr "Order by: "
2136
-
2137
- #: admin/views/Options.php:1156 admin/views/Options.php:1374
2138
- #: admin/views/Options.php:1610 admin/views/Options.php:1807
2139
- #: admin/views/Options.php:2047 admin/views/Options.php:2206
2140
- #: admin/views/Options.php:2383 admin/views/Options.php:2568
2141
- #: admin/views/Options.php:2590 admin/views/Options.php:2868
2142
- #: admin/views/Options.php:2890 admin/views/Options.php:3108
2143
- #: admin/views/Options.php:3130
2144
  msgid "Ascending"
2145
  msgstr ""
2146
 
2147
- #: admin/views/Options.php:1157 admin/views/Options.php:1375
2148
- #: admin/views/Options.php:1611 admin/views/Options.php:1808
2149
- #: admin/views/Options.php:2048 admin/views/Options.php:2207
2150
- #: admin/views/Options.php:2384 admin/views/Options.php:2569
2151
- #: admin/views/Options.php:2591 admin/views/Options.php:2869
2152
- #: admin/views/Options.php:2891 admin/views/Options.php:3109
2153
- #: admin/views/Options.php:3131
2154
  msgid "Descending"
2155
  msgstr ""
2156
 
2157
- #: admin/views/Options.php:1160 admin/views/Options.php:1378
2158
- #: admin/views/Options.php:1614 admin/views/Options.php:1811
2159
- #: admin/views/Options.php:2051 admin/views/Options.php:2210
2160
- #: admin/views/Options.php:2387 admin/views/Options.php:2594
2161
- #: admin/views/Options.php:2894 admin/views/Options.php:3134
2162
  msgid ""
2163
  "Select the parameter and order direction to sort the gallery images with. E."
2164
  "g. Title and Ascending."
2165
  msgstr ""
2166
 
2167
- #: admin/views/Options.php:1165 admin/views/Options.php:1383
2168
- #: admin/views/Options.php:1619 admin/views/Options.php:2056
2169
- #: admin/views/Options.php:2215 admin/views/Options.php:2599
2170
- #: admin/views/Options.php:2899 admin/views/Options.php:3139
2171
  msgid "Show search box"
2172
  msgstr ""
2173
 
2174
- #: admin/views/Options.php:1170 admin/views/Options.php:1388
2175
- #: admin/views/Options.php:1624 admin/views/Options.php:2061
2176
- #: admin/views/Options.php:2220 admin/views/Options.php:2604
2177
- #: admin/views/Options.php:2904 admin/views/Options.php:3144
2178
  msgid ""
2179
  "Enable this option to display a search box with your gallery or gallery "
2180
  "group."
2181
  msgstr ""
2182
 
2183
- #: admin/views/Options.php:1175 admin/views/Options.php:1393
2184
- #: admin/views/Options.php:1629 admin/views/Options.php:2066
2185
- #: admin/views/Options.php:2225 admin/views/Options.php:2609
2186
- #: admin/views/Options.php:2909 admin/views/Options.php:3149
2187
  msgid "Add placeholder to search"
2188
  msgstr ""
2189
 
2190
- #: admin/views/Options.php:1183 admin/views/Options.php:1401
2191
- #: admin/views/Options.php:1637 admin/views/Options.php:2074
2192
- #: admin/views/Options.php:2233 admin/views/Options.php:2617
2193
- #: admin/views/Options.php:2917 admin/views/Options.php:3157
2194
  msgid "Search box maximum width"
2195
  msgstr ""
2196
 
2197
- #: admin/views/Options.php:1191 admin/views/Options.php:1409
2198
- #: admin/views/Options.php:1645 admin/views/Options.php:2082
2199
- #: admin/views/Options.php:2241 admin/views/Options.php:2625
2200
- #: admin/views/Options.php:2925 admin/views/Options.php:3165
2201
  msgid "Show \"Order by\" dropdown list"
2202
  msgstr ""
2203
 
2204
- #: admin/views/Options.php:1196 admin/views/Options.php:1414
2205
- #: admin/views/Options.php:1650 admin/views/Options.php:2087
2206
- #: admin/views/Options.php:2246 admin/views/Options.php:2630
2207
- #: admin/views/Options.php:2930 admin/views/Options.php:3170
2208
  msgid ""
2209
  "Activate this dropdown box to let users browse your gallery images with "
2210
  "different ordering options."
2211
  msgstr ""
2212
 
2213
- #: admin/views/Options.php:1201 admin/views/Options.php:1419
2214
- #: admin/views/Options.php:1655 admin/views/Options.php:2092
2215
- #: admin/views/Options.php:2251 admin/views/Options.php:2635
2216
- #: admin/views/Options.php:2935 admin/views/Options.php:3175
2217
- #, fuzzy
2218
  #| msgid "Show rating"
2219
  msgid "Show tag box"
2220
- msgstr "Show rating"
2221
 
2222
- #: admin/views/Options.php:1206 admin/views/Options.php:1424
2223
- #: admin/views/Options.php:1660 admin/views/Options.php:2097
2224
- #: admin/views/Options.php:2256 admin/views/Options.php:2640
2225
- #: admin/views/Options.php:2940 admin/views/Options.php:3180
2226
  msgid ""
2227
  "Enable Tag Box to allow users to filter the gallery images by their tags."
2228
  msgstr ""
2229
 
2230
- #: admin/views/Options.php:1213 admin/views/Options.php:1431
2231
- #: admin/views/Options.php:1667 admin/views/Options.php:2104
2232
- #: admin/views/Options.php:2263 admin/views/Options.php:2667
 
2233
  msgid "Show gallery title"
2234
  msgstr ""
2235
 
2236
- #: admin/views/Options.php:1218 admin/views/Options.php:1436
2237
- #: admin/views/Options.php:1672 admin/views/Options.php:2109
2238
- #: admin/views/Options.php:2268
2239
  msgid ""
2240
  "Allow users to see the titles of your galleries by enabling this setting."
2241
  msgstr ""
2242
 
2243
- #: admin/views/Options.php:1223 admin/views/Options.php:1441
2244
- #: admin/views/Options.php:1677 admin/views/Options.php:2114
2245
- #: admin/views/Options.php:2273
2246
  msgid "Show gallery description"
2247
  msgstr ""
2248
 
2249
- #: admin/views/Options.php:1228 admin/views/Options.php:1446
2250
- #: admin/views/Options.php:1682 admin/views/Options.php:2119
2251
- #: admin/views/Options.php:2278
2252
  msgid "Display the descriptions of your galleries by activating this option."
2253
  msgstr ""
2254
 
2255
- #: admin/views/Options.php:1233 admin/views/Options.php:1451
2256
- #: admin/views/Options.php:1687 admin/views/Options.php:1879
2257
- #: admin/views/Options.php:2011 admin/views/Options.php:2283
2258
- #: admin/views/Options.php:2415 admin/views/Options.php:2726
2259
- #: admin/views/Options.php:2967 admin/views/Options.php:3265
2260
  msgid "Show image title"
2261
  msgstr ""
2262
 
2263
- #: admin/views/Options.php:1235 admin/views/Options.php:1275
2264
- #: admin/views/Options.php:1453 admin/views/Options.php:1504
2265
- #: admin/views/Options.php:1689 admin/views/Options.php:1728
2266
- #: admin/views/Options.php:2669 admin/views/Options.php:2729
2267
- #: admin/views/Options.php:2771 admin/views/Options.php:2969
2268
- #: admin/views/Options.php:2999 admin/views/Options.php:3268
2269
- #: admin/views/Options.php:3310
2270
- #, fuzzy
2271
  #| msgid "Show info"
2272
  msgid "Show on hover"
2273
- msgstr "Show info"
2274
 
2275
- #: admin/views/Options.php:1236 admin/views/Options.php:1276
2276
- #: admin/views/Options.php:1454 admin/views/Options.php:2670
2277
- #: admin/views/Options.php:2731 admin/views/Options.php:2772
2278
- #: admin/views/Options.php:2970 admin/views/Options.php:3270
2279
- #: admin/views/Options.php:3311
2280
  msgid "Always show"
2281
  msgstr ""
2282
 
2283
- #: admin/views/Options.php:1237 admin/views/Options.php:1277
2284
- #: admin/views/Options.php:1455 admin/views/Options.php:1505
2285
- #: admin/views/Options.php:1690 admin/views/Options.php:1729
2286
- #: admin/views/Options.php:2671 admin/views/Options.php:2733
2287
- #: admin/views/Options.php:2773 admin/views/Options.php:2971
2288
- #: admin/views/Options.php:3000 admin/views/Options.php:3272
2289
- #: admin/views/Options.php:3312
2290
  msgid "Don't show"
2291
  msgstr ""
2292
 
2293
- #: admin/views/Options.php:1239 admin/views/Options.php:1457
2294
- #: admin/views/Options.php:1692 admin/views/Options.php:2735
2295
- #: admin/views/Options.php:2973 admin/views/Options.php:3274
2296
  msgid "Choose to show/hide titles of images, or display them on hover."
2297
  msgstr ""
2298
 
2299
- #: admin/views/Options.php:1244 admin/views/Options.php:1473
2300
- #: admin/views/Options.php:1697 admin/views/Options.php:2740
2301
- #: admin/views/Options.php:3279
 
 
 
 
 
 
 
 
 
2302
  msgid "Show Play icon on video thumbnails"
2303
  msgstr ""
2304
 
2305
- #: admin/views/Options.php:1249 admin/views/Options.php:1478
2306
- #: admin/views/Options.php:1702 admin/views/Options.php:2745
2307
- #: admin/views/Options.php:3284
2308
  msgid "Activate this option to add a Play button on thumbnails of videos."
2309
  msgstr ""
2310
 
2311
- #: admin/views/Options.php:1254 admin/views/Options.php:1483
2312
- #: admin/views/Options.php:1707 admin/views/Options.php:1982
2313
- #: admin/views/Options.php:2124 admin/views/Options.php:2305
2314
- #: admin/views/Options.php:2459 admin/views/Options.php:2750
2315
- #: admin/views/Options.php:2978 admin/views/Options.php:3289
2316
  msgid "Enable bulk download button"
2317
  msgstr ""
2318
 
2319
- #: admin/views/Options.php:1259 admin/views/Options.php:1488
2320
- #: admin/views/Options.php:1712 admin/views/Options.php:1987
2321
- #: admin/views/Options.php:2129 admin/views/Options.php:2310
2322
- #: admin/views/Options.php:2464 admin/views/Options.php:2755
2323
- #: admin/views/Options.php:2983 admin/views/Options.php:3294
2324
  msgid ""
2325
  "Activate this setting to let users download all images of your gallery with "
2326
  "a click."
2327
  msgstr ""
2328
 
2329
- #: admin/views/Options.php:1263 admin/views/Options.php:1492
2330
- #: admin/views/Options.php:1716 admin/views/Options.php:1991
2331
- #: admin/views/Options.php:2133 admin/views/Options.php:2314
2332
- #: admin/views/Options.php:2468 admin/views/Options.php:2759
2333
- #: admin/views/Options.php:2987 admin/views/Options.php:3298
2334
  msgid ""
2335
  "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2336
  "disabled on your website. Please contact your hosting provider and ask them "
2337
  "to enable it."
2338
  msgstr ""
2339
 
2340
- #: admin/views/Options.php:1273 admin/views/Options.php:1502
2341
- #: admin/views/Options.php:1726 admin/views/Options.php:2769
2342
- #: admin/views/Options.php:2997 admin/views/Options.php:3308
2343
- #, fuzzy
2344
  #| msgid "Show comments"
2345
  msgid "Show ecommerce icon"
2346
- msgstr "Show comments"
2347
 
2348
- #: admin/views/Options.php:1279 admin/views/Options.php:1507
2349
- #: admin/views/Options.php:1731 admin/views/Options.php:2775
2350
- #: admin/views/Options.php:3002 admin/views/Options.php:3314
2351
  msgid "Choose to show/hide ecommerce icon, or display them on hover."
2352
  msgstr ""
2353
 
2354
- #: admin/views/Options.php:1305 admin/views/Options.php:1551
2355
  msgid "Thumbnail size"
2356
  msgstr ""
2357
 
2358
- #: admin/views/Options.php:1309 admin/views/Options.php:1555
2359
  msgid ""
2360
  "The default size of thumbnails which will display on published galleries."
2361
  msgstr ""
2362
 
2363
- #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
2364
  msgid "Number of image rows"
2365
  msgstr ""
2366
 
2367
- #: admin/views/Options.php:1319
2368
  msgid ""
2369
  "Set the maximum number of image columns (or rows) in galleries. Note, that "
2370
  "the parent container needs to be large enough to display all columns."
2371
  msgstr ""
2372
 
2373
- #: admin/views/Options.php:1462
2374
- #, fuzzy
2375
- #| msgid "Show comments"
2376
- msgid "Show image descriptions"
2377
- msgstr "Show comments"
2378
-
2379
- #: admin/views/Options.php:1467
2380
- msgid "Enable this setting to display descriptions under images."
2381
- msgstr ""
2382
-
2383
- #: admin/views/Options.php:1519 admin/views/Options.php:2694
2384
- #: admin/views/Options.php:3233
2385
- #, fuzzy
2386
  #| msgid "Gallery is empty."
2387
  msgid "Mosaic gallery type"
2388
- msgstr "Gallery is empty."
2389
 
2390
- #: admin/views/Options.php:1521 admin/views/Options.php:2696
2391
- #: admin/views/Options.php:3235
2392
  msgid "Vertical"
2393
  msgstr ""
2394
 
2395
- #: admin/views/Options.php:1522 admin/views/Options.php:2697
2396
- #: admin/views/Options.php:3236
2397
  msgid "Horizontal"
2398
  msgstr ""
2399
 
2400
- #: admin/views/Options.php:1524 admin/views/Options.php:2699
2401
- #: admin/views/Options.php:3238
2402
  msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2403
  msgstr ""
2404
 
2405
- #: admin/views/Options.php:1530 admin/views/Options.php:2705
2406
- #: admin/views/Options.php:3244
2407
  msgid "Resizable mosaic"
2408
  msgstr ""
2409
 
2410
- #: admin/views/Options.php:1535 admin/views/Options.php:2710
2411
- #: admin/views/Options.php:3249
2412
  msgid ""
2413
  "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2414
  "Mosaic galleries, without modifying their initial display."
2415
  msgstr ""
2416
 
2417
- #: admin/views/Options.php:1541 admin/views/Options.php:2716
2418
- #: admin/views/Options.php:3255
2419
  msgid "Width of mosaic galleries"
2420
  msgstr ""
2421
 
2422
- #: admin/views/Options.php:1545 admin/views/Options.php:2720
2423
- #: admin/views/Options.php:3259
2424
  msgid ""
2425
  "The total width of mosaic galleries as a percentage of container's width."
2426
  msgstr ""
2427
 
2428
- #: admin/views/Options.php:1743
2429
  msgid "Slideshow effect"
2430
  msgstr ""
2431
 
2432
- #: admin/views/Options.php:1750 admin/views/Options.php:3381
2433
  #: admin/views/WidgetSlideshow.php:105
2434
  msgid "This effect is disabled in free version."
2435
  msgstr ""
2436
 
2437
- #: admin/views/Options.php:1757
2438
  msgid "Select the animation effect for your slideshow."
2439
  msgstr ""
2440
 
2441
- #: admin/views/Options.php:1762 admin/views/Options.php:3393
2442
  msgid "Effect duration"
2443
  msgstr ""
2444
 
2445
- #: admin/views/Options.php:1766
2446
  msgid "Set the duration of your slideshow animation effect."
2447
  msgstr ""
2448
 
2449
- #: admin/views/Options.php:1771 admin/views/Options.php:2403
2450
- #: admin/views/Options.php:3413
2451
  msgid "Time interval"
2452
  msgstr ""
2453
 
2454
- #: admin/views/Options.php:1775
2455
  msgid ""
2456
  "Specify the time interval between slides in Photo Gallery's Slideshow view."
2457
  msgstr ""
2458
 
2459
- #: admin/views/Options.php:1780
2460
  msgid "Slideshow dimensions"
2461
  msgstr ""
2462
 
2463
- #: admin/views/Options.php:1785
2464
  msgid "Set the default dimensions of your slideshow galleries."
2465
  msgstr ""
2466
 
2467
- #: admin/views/Options.php:1816 admin/views/Options.php:2392
2468
  msgid "Enable autoplay"
2469
  msgstr ""
2470
 
2471
- #: admin/views/Options.php:1821
2472
  msgid "Activate this option to autoplay slideshow galleries."
2473
  msgstr ""
2474
 
2475
- #: admin/views/Options.php:1826
2476
  msgid "Enable shuffle"
2477
  msgstr ""
2478
 
2479
- #: admin/views/Options.php:1831
2480
  msgid "The slideshow images will be shuffled in case this setting is enabled."
2481
  msgstr ""
2482
 
2483
- #: admin/views/Options.php:1836 admin/views/Options.php:3445
2484
  msgid "Enable control buttons"
2485
  msgstr ""
2486
 
2487
- #: admin/views/Options.php:1841
2488
  msgid "Enable this option to show control buttons on your slideshow galleries."
2489
  msgstr ""
2490
 
2491
- #: admin/views/Options.php:1846 admin/views/Options.php:3569
2492
  msgid "Show Next / Previous buttons"
2493
  msgstr ""
2494
 
2495
- #: admin/views/Options.php:1848 admin/views/Options.php:3571
2496
  msgid "On hover"
2497
  msgstr ""
2498
 
2499
- #: admin/views/Options.php:1849 admin/views/Options.php:3572
2500
  msgid "Always"
2501
  msgstr ""
2502
 
2503
- #: admin/views/Options.php:1851
2504
  msgid ""
2505
  "Display Next/Previous buttons on your slideshow galleries activating this "
2506
  "setting."
2507
  msgstr ""
2508
 
2509
- #: admin/views/Options.php:1858
2510
- msgid "Enable slideshow filmstrip"
 
 
 
 
 
 
 
 
2511
  msgstr ""
2512
 
2513
- #: admin/views/Options.php:1863
 
 
 
 
 
 
 
 
2514
  msgid ""
2515
- "Add a filmstrip with image thumbnails to your slideshow galleries by "
2516
- "enabling this option."
2517
  msgstr ""
2518
 
2519
- #: admin/views/Options.php:1869
2520
  msgid "Slideshow filmstrip size"
2521
  msgstr ""
2522
 
2523
- #: admin/views/Options.php:1873 admin/views/Options.php:3437
 
2524
  msgid ""
2525
  "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2526
  "indicates its height, whereas for vertical filmstrips it sets the width."
2527
  msgstr ""
2528
 
2529
- #: admin/views/Options.php:1884
2530
- msgid "Enable this setting to display titles of images in Slideshow view."
2531
- msgstr ""
2532
-
2533
- #: admin/views/Options.php:1889
2534
  msgid "Title position"
2535
  msgstr ""
2536
 
2537
- #: admin/views/Options.php:1911
2538
  msgid "Set the position of image titles in Slideshow view."
2539
  msgstr ""
2540
 
2541
- #: admin/views/Options.php:1916
2542
  msgid "Full width title"
2543
  msgstr ""
2544
 
2545
- #: admin/views/Options.php:1921
2546
  msgid "Display image title based on the slideshow dimensions."
2547
  msgstr ""
2548
 
2549
- #: admin/views/Options.php:1926 admin/views/Options.php:2020
2550
- #: admin/views/Options.php:2294
2551
- #, fuzzy
2552
  #| msgid "Show comments"
2553
  msgid "Show image description"
2554
- msgstr "Show comments"
2555
 
2556
- #: admin/views/Options.php:1931
2557
  msgid "Enable this setting to show descriptions of images in Slideshow view."
2558
  msgstr ""
2559
 
2560
- #: admin/views/Options.php:1936
2561
  msgid "Description position"
2562
  msgstr ""
2563
 
2564
- #: admin/views/Options.php:1958
2565
  msgid "Set the position of image descriptions in Slideshow view."
2566
  msgstr ""
2567
 
2568
- #: admin/views/Options.php:1963
2569
  msgid "Enable slideshow Music"
2570
  msgstr ""
2571
 
2572
- #: admin/views/Options.php:1968
2573
  msgid ""
2574
  "Enabling this option, you can have music playing along with your slideshow."
2575
  msgstr ""
2576
 
2577
- #: admin/views/Options.php:1973
2578
  msgid "Audio URL"
2579
  msgstr ""
2580
 
2581
- #: admin/views/Options.php:1977
2582
  msgid ""
2583
  "Provide the absolute URL of the audio file you would like to play with your "
2584
  "slideshow."
2585
  msgstr ""
2586
 
2587
- #: admin/views/Options.php:2002 admin/views/Options.php:2144
2588
  msgid "Image width"
2589
  msgstr ""
2590
 
2591
- #: admin/views/Options.php:2006
2592
  msgid "Specify the default width of images in Image Browser view."
2593
  msgstr ""
2594
 
2595
- #: admin/views/Options.php:2025
2596
  msgid "Enable this setting to display titles of images in Image Browser view."
2597
  msgstr ""
2598
 
2599
- #: admin/views/Options.php:2148
2600
  msgid "Specify the default width of images in Blog Style view."
2601
  msgstr ""
2602
 
2603
- #: admin/views/Options.php:2174
2604
  msgid "Select the number of images displayed per page in Blog Style view."
2605
  msgstr ""
2606
 
2607
- #: admin/views/Options.php:2288
2608
  msgid "Enable this setting to display titles of images in Blog Style view."
2609
  msgstr ""
2610
 
2611
- #: admin/views/Options.php:2299
2612
  msgid "Enable this setting to show descriptions of images in Blog Style view."
2613
  msgstr ""
2614
 
2615
- #: admin/views/Options.php:2325
2616
  msgid "Max. number of images"
2617
  msgstr ""
2618
 
2619
- #: admin/views/Options.php:2329
2620
  msgid "Set the maximum number of images that are shown with Carousel display."
2621
  msgstr ""
2622
 
2623
- #: admin/views/Options.php:2340
2624
  msgid "Specify the dimensions of carousel images in pixels."
2625
  msgstr ""
2626
 
2627
- #: admin/views/Options.php:2346
2628
  msgid "Carousel ratio"
2629
  msgstr ""
2630
 
2631
- #: admin/views/Options.php:2350
2632
  msgid ""
2633
  "This option defines the proportion of dimensions between neighboring images "
2634
  "in the carousel."
2635
  msgstr ""
2636
 
2637
- #: admin/views/Options.php:2356
2638
  msgid "Fixed width"
2639
  msgstr ""
2640
 
2641
- #: admin/views/Options.php:2360
2642
  msgid "Specify the fixed width of Carousel gallery container."
2643
  msgstr ""
2644
 
2645
- #: admin/views/Options.php:2397
2646
  msgid "Activate this option to autoplay Carousel galleries."
2647
  msgstr ""
2648
 
2649
- #: admin/views/Options.php:2407
2650
  msgid ""
2651
  "Specify the time interval between rotations in Photo Gallery's Carousel view."
2652
  msgstr ""
2653
 
2654
- #: admin/views/Options.php:2420
2655
- msgid ""
2656
- "Display image titles in Photo Gallery Carousel view by activating this "
2657
- "option."
2658
- msgstr ""
2659
-
2660
- #: admin/views/Options.php:2426
2661
  msgid "Container fit"
2662
  msgstr ""
2663
 
2664
- #: admin/views/Options.php:2431
2665
  msgid ""
2666
  "Enabling this setting fits the images inside their container on Carousel "
2667
  "galleries with fixed width."
2668
  msgstr ""
2669
 
2670
- #: admin/views/Options.php:2437
2671
  msgid "Next/Previous buttons"
2672
  msgstr ""
2673
 
2674
- #: admin/views/Options.php:2442
2675
  msgid ""
2676
  "Enable this setting to display Next/Previous buttons on your galleries with "
2677
  "Carousel view."
2678
  msgstr ""
2679
 
2680
- #: admin/views/Options.php:2448
 
 
 
 
 
 
2681
  msgid "Play/Pause buttons"
2682
  msgstr ""
2683
 
2684
- #: admin/views/Options.php:2453
2685
  msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
2686
  msgstr ""
2687
 
2688
- #: admin/views/Options.php:2485 admin/views/Options.php:2787
2689
  msgid "Number of gallery group columns"
2690
  msgstr ""
2691
 
2692
- #: admin/views/Options.php:2489 admin/views/Options.php:2791
2693
  msgid ""
2694
  "Set the maximum number of columns in gallery groups. Note, that the parent "
2695
  "container needs to be large enough to display all columns."
2696
  msgstr ""
2697
 
2698
- #: admin/views/Options.php:2494 admin/views/Options.php:3034
2699
  msgid "Gallery group thumbnail dimensions"
2700
  msgstr ""
2701
 
2702
- #: admin/views/Options.php:2499 admin/views/Options.php:2800
2703
- #: admin/views/Options.php:3039
2704
  msgid "Specify the dimensions of thumbnails in gallery groups."
2705
  msgstr ""
2706
 
2707
- #: admin/views/Options.php:2538 admin/views/Options.php:2838
2708
- #: admin/views/Options.php:3078
2709
- #, fuzzy
2710
  #| msgid "Gallery is empty."
2711
  msgid "Gallery groups per page"
2712
- msgstr "Gallery is empty."
2713
 
2714
- #: admin/views/Options.php:2542 admin/views/Options.php:2842
2715
- #: admin/views/Options.php:3082
2716
  msgid ""
2717
  "Specify the number of galleries/gallery groups to display per page. Setting "
2718
  "this option to 0 shows all items."
2719
  msgstr ""
2720
 
2721
- #: admin/views/Options.php:2558 admin/views/Options.php:2858
2722
- #: admin/views/Options.php:3098
2723
- #, fuzzy
2724
  #| msgid "Gallery is empty."
2725
  msgid "Order Gallery group by"
2726
- msgstr "Gallery is empty."
2727
 
2728
- #: admin/views/Options.php:2572 admin/views/Options.php:2872
2729
- #: admin/views/Options.php:3112
2730
  msgid ""
2731
  "Select the parameter and order direction to sort the gallery group images "
2732
  "with. E.g. Title and Ascending."
2733
  msgstr ""
2734
 
2735
- #: admin/views/Options.php:2575 admin/views/Options.php:2875
2736
- #: admin/views/Options.php:3116
2737
- #, fuzzy
2738
  #| msgid "Order by: "
2739
  msgid "Order images by"
2740
- msgstr "Order by: "
2741
 
2742
- #: admin/views/Options.php:2647 admin/views/Options.php:2947
2743
- #: admin/views/Options.php:3187
2744
  msgid "Show gallery group or gallery title"
2745
  msgstr ""
2746
 
2747
- #: admin/views/Options.php:2652 admin/views/Options.php:2952
2748
- #: admin/views/Options.php:3192
2749
  msgid ""
2750
  "Display the title of displayed gallery or gallery group by enabling this "
2751
  "setting."
2752
  msgstr ""
2753
 
2754
- #: admin/views/Options.php:2657 admin/views/Options.php:2957
2755
- #: admin/views/Options.php:3197
2756
  msgid "Show gallery group or gallery description"
2757
  msgstr ""
2758
 
2759
- #: admin/views/Options.php:2662 admin/views/Options.php:2962
2760
- #: admin/views/Options.php:3202
2761
  msgid ""
2762
  "Display the description of displayed gallery or gallery group by enabling "
2763
  "this setting."
2764
  msgstr ""
2765
 
2766
- #: admin/views/Options.php:2673
2767
  msgid ""
2768
  "Choose to show/hide titles of galleries/gallery groups, or display them on "
2769
  "hover."
2770
  msgstr ""
2771
 
2772
- #: admin/views/Options.php:2678 admin/views/Options.php:3217
2773
- #, fuzzy
2774
  #| msgid "Gallery is empty."
2775
  msgid "Gallery view type"
2776
- msgstr "Gallery is empty."
2777
 
2778
- #: admin/views/Options.php:2688 admin/views/Options.php:3227
2779
  msgid ""
2780
  "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2781
  "Slideshow, Image browser, Blog style or Carousel."
2782
  msgstr ""
2783
 
2784
- #: admin/views/Options.php:2796
2785
- #, fuzzy
2786
  #| msgid "Gallery is empty."
2787
  msgid "Gallery group thumbnail width"
2788
- msgstr "Gallery is empty."
2789
 
2790
- #: admin/views/Options.php:2814
2791
  msgid "Thumbnail width"
2792
  msgstr ""
2793
 
2794
- #: admin/views/Options.php:3014
2795
  msgid "Extended gallery group height"
2796
  msgstr ""
2797
 
2798
- #: admin/views/Options.php:3018
2799
  msgid "Set the height of blocks in Extended gallery groups."
2800
  msgstr ""
2801
 
2802
- #: admin/views/Options.php:3023
2803
  msgid "Number of columns"
2804
  msgstr ""
2805
 
2806
- #: admin/views/Options.php:3025
2807
  msgid "1 column"
2808
  msgstr ""
2809
 
2810
- #: admin/views/Options.php:3026
2811
  msgid "2 column"
2812
  msgstr ""
2813
 
2814
- #: admin/views/Options.php:3027
2815
  msgid "3 column"
2816
  msgstr ""
2817
 
2818
- #: admin/views/Options.php:3029
2819
  msgid "Set the maximum number of columns."
2820
  msgstr ""
2821
 
2822
- #: admin/views/Options.php:3207
2823
  msgid "Show extended gallery group description"
2824
  msgstr ""
2825
 
2826
- #: admin/views/Options.php:3212
2827
  msgid ""
2828
  "Enable this option to show descriptions of galleries/gallery groups in "
2829
  "Extended view."
2830
  msgstr ""
2831
 
2832
- #: admin/views/Options.php:3354
2833
  msgid "Full-width lightbox"
2834
  msgstr ""
2835
 
2836
- #: admin/views/Options.php:3359
2837
  msgid "Image lightbox will appear full-width if this setting is activated."
2838
  msgstr ""
2839
 
2840
- #: admin/views/Options.php:3364
2841
  msgid "Lightbox dimensions"
2842
  msgstr ""
2843
 
2844
- #: admin/views/Options.php:3369
2845
  msgid "Set the dimensions of image lightbox."
2846
  msgstr ""
2847
 
2848
- #: admin/views/Options.php:3374
2849
  msgid "Lightbox effect"
2850
  msgstr ""
2851
 
2852
- #: admin/views/Options.php:3388
2853
  msgid "Select the animation effect for image lightbox."
2854
  msgstr ""
2855
 
2856
- #: admin/views/Options.php:3397
2857
  msgid "Set the duration of lightbox animation effect."
2858
  msgstr ""
2859
 
2860
- #: admin/views/Options.php:3398
2861
  msgid ""
2862
  "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2863
  "Interval."
2864
  msgstr ""
2865
 
2866
- #: admin/views/Options.php:3403
2867
  msgid "Lightbox autoplay"
2868
  msgstr ""
2869
 
2870
- #: admin/views/Options.php:3408
2871
  msgid "Activate this option to autoplay images in gallery lightbox."
2872
  msgstr ""
2873
 
2874
- #: admin/views/Options.php:3417
2875
  msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2876
  msgstr ""
2877
 
2878
- #: admin/views/Options.php:3422
2879
  msgid "Enable filmstrip"
2880
  msgstr ""
2881
 
2882
- #: admin/views/Options.php:3427
2883
  msgid ""
2884
  "Add a filmstrip with image thumbnails to the lightbox of your galleries."
2885
  msgstr ""
2886
 
2887
- #: admin/views/Options.php:3433
2888
  msgid "Filmstrip size"
2889
  msgstr ""
2890
 
2891
- #: admin/views/Options.php:3476
2892
  msgid "Enable this option to show control buttons on Photo Gallery lightbox."
2893
  msgstr ""
2894
 
2895
- #: admin/views/Options.php:3481
2896
- #, fuzzy
2897
  #| msgid "Exit Fullscreen"
2898
  msgid "Enable fullscreen button"
2899
- msgstr "Exit Fullscreen"
2900
 
2901
- #: admin/views/Options.php:3486
2902
  msgid ""
2903
  "Activate this setting to add Fullscreen button to lightbox control buttons."
2904
  msgstr ""
2905
 
2906
- #: admin/views/Options.php:3491
2907
- #, fuzzy
2908
  #| msgid "Show comments"
2909
  msgid "Enable comments"
2910
- msgstr "Show comments"
2911
 
2912
- #: admin/views/Options.php:3500
2913
  msgid ""
2914
  "Let users to leave comments on images by enabling comments section of "
2915
  "lightbox."
2916
  msgstr ""
2917
 
2918
- #: admin/views/Options.php:3506
2919
- #, fuzzy
2920
  #| msgid "Show comments"
2921
  msgid "Show Email for comments"
2922
- msgstr "Show comments"
2923
 
2924
- #: admin/views/Options.php:3511
2925
  msgid ""
2926
  "Activate this option to display email address field in comments section."
2927
  msgstr ""
2928
 
2929
- #: admin/views/Options.php:3517
2930
- #, fuzzy
2931
  #| msgid "Show comments"
2932
  msgid "Show Captcha for comments"
2933
- msgstr "Show comments"
2934
 
2935
- #: admin/views/Options.php:3522
2936
  msgid ""
2937
  "Enable this setting to place Captcha word verification in comments section."
2938
  msgstr ""
2939
 
2940
- #: admin/views/Options.php:3528
2941
- #, fuzzy
 
 
 
2942
  #| msgid "Your comment is awaiting moderation"
2943
  msgid "Enable comments moderation"
2944
- msgstr "Your comment is awaiting moderation"
2945
 
2946
- #: admin/views/Options.php:3533
2947
  msgid "Moderate each comment left on images by activating this setting."
2948
  msgstr ""
2949
 
2950
- #: admin/views/Options.php:3539
2951
- #, fuzzy
2952
  #| msgid "Show comments"
2953
  msgid "Show image info"
2954
- msgstr "Show comments"
2955
 
2956
- #: admin/views/Options.php:3544
2957
  msgid ""
2958
  "Activate this setting to show Info button among lightbox control buttons."
2959
  msgstr ""
2960
 
2961
- #: admin/views/Options.php:3549
2962
  msgid "Display info by default"
2963
  msgstr ""
2964
 
2965
- #: admin/views/Options.php:3554
2966
  msgid ""
2967
  "Enabling this option will let you show image title and description on "
2968
  "lightbox by default."
2969
  msgstr ""
2970
 
2971
- #: admin/views/Options.php:3559
2972
  msgid "Full width info"
2973
  msgstr ""
2974
 
2975
- #: admin/views/Options.php:3564
2976
  msgid ""
2977
  "Display info box with the full width of the lightbox by enabling this option."
2978
  msgstr ""
2979
 
2980
- #: admin/views/Options.php:3574
2981
  msgid ""
2982
  "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2983
  "or always."
2984
  msgstr ""
2985
 
2986
- #: admin/views/Options.php:3579
2987
  msgid "Display views counter"
2988
  msgstr ""
2989
 
2990
- #: admin/views/Options.php:3584
2991
  msgid "Show the number of views, when a gallery image was opened in lightbox."
2992
  msgstr ""
2993
 
2994
- #: admin/views/Options.php:3590
2995
- #, fuzzy
2996
  #| msgid "Hide rating"
2997
  msgid "Enable rating"
2998
- msgstr "Hide rating"
2999
 
3000
- #: admin/views/Options.php:3595
3001
  msgid ""
3002
  "Allow users to rate your images by adding rating feature to Photo Gallery "
3003
  "lightbox."
3004
  msgstr ""
3005
 
3006
- #: admin/views/Options.php:3603
 
 
 
 
 
 
 
 
 
3007
  msgid "Show Display Original Image button"
3008
  msgstr ""
3009
 
3010
- #: admin/views/Options.php:3608
3011
  msgid ""
3012
  "Let users view original versions of your images by enabling this button."
3013
  msgstr ""
3014
 
3015
- #: admin/views/Options.php:3613
3016
  msgid "Show download button"
3017
  msgstr ""
3018
 
3019
- #: admin/views/Options.php:3618
3020
  msgid ""
3021
  "This option will allow users to download gallery images while viewing them "
3022
  "in lightbox."
3023
  msgstr ""
3024
 
3025
- #: admin/views/Options.php:3623
3026
- #, fuzzy
3027
  #| msgid "Show comments"
3028
  msgid "Show image counter"
3029
- msgstr "Show comments"
3030
 
3031
- #: admin/views/Options.php:3628
3032
  msgid "Enable this option to display image counter on Photo Gallery lightbox."
3033
  msgstr ""
3034
 
3035
- #: admin/views/Options.php:3633
3036
- #, fuzzy
3037
  #| msgid "Hide rating"
3038
  msgid "Enable looping"
3039
- msgstr "Hide rating"
3040
 
3041
- #: admin/views/Options.php:3638
3042
  msgid ""
3043
  "Activate looping to start lightbox navigation from the beginning when users "
3044
  "reach its last image."
3045
  msgstr ""
3046
 
3047
- #: admin/views/Options.php:3643
3048
  msgid "Enable"
3049
  msgstr ""
3050
 
3051
- #: admin/views/Options.php:3648
3052
  msgid "Display AddThis on Photo Gallery lightbox by activating this option."
3053
  msgstr ""
3054
 
3055
- #: admin/views/Options.php:3654
3056
  msgid "profile ID"
3057
  msgstr ""
3058
 
3059
- #: admin/views/Options.php:3658
3060
  msgid "Provide the ID of your profile to connect to AddThis."
3061
  msgstr ""
3062
 
3063
- #: admin/views/Options.php:3658
3064
  #, php-format
3065
  msgid "Create an account %s."
3066
  msgstr ""
3067
 
3068
- #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
3069
  msgid "here"
3070
  msgstr ""
3071
 
3072
- #: admin/views/Options.php:3664
3073
- #, fuzzy
3074
  #| msgid "Share on Facebook"
3075
  msgid "Show Facebook button"
3076
- msgstr "Share on Facebook"
3077
 
3078
- #: admin/views/Options.php:3669
3079
  msgid ""
3080
  "Enabling this setting will add Facebook sharing button to Photo Gallery "
3081
  "lightbox."
3082
  msgstr ""
3083
 
3084
- #: admin/views/Options.php:3675
3085
- #, fuzzy
3086
  #| msgid "Share on Twitter"
3087
  msgid "Show Twitter button"
3088
- msgstr "Share on Twitter"
3089
 
3090
- #: admin/views/Options.php:3680
3091
  msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
3092
  msgstr ""
3093
 
3094
- #: admin/views/Options.php:3686
3095
- #, fuzzy
3096
  #| msgid "Share on Pinterest"
3097
  msgid "Show Pinterest button"
3098
- msgstr "Share on Pinterest"
3099
 
3100
- #: admin/views/Options.php:3691
3101
  msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3102
  msgstr ""
3103
 
3104
- #: admin/views/Options.php:3697
3105
- #, fuzzy
3106
  #| msgid "Share on Tumblr"
3107
  msgid "Show Tumblr button"
3108
- msgstr "Share on Tumblr"
3109
 
3110
- #: admin/views/Options.php:3702
3111
  msgid ""
3112
  "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3113
  "activating this setting."
3114
  msgstr ""
3115
 
3116
- #: admin/views/Options.php:3711
3117
- #, fuzzy
3118
  #| msgid "Show comments"
3119
  msgid "Show Ecommerce button"
3120
- msgstr "Show comments"
3121
 
3122
- #: admin/views/Options.php:3716
3123
  msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
3124
  msgstr ""
3125
 
@@ -3132,1423 +3110,1520 @@ msgstr ""
3132
  msgid "Rating"
3133
  msgstr ""
3134
 
3135
- #: admin/views/Shortcode.php:198
 
 
 
 
3136
  msgid "Select the gallery to display."
3137
  msgstr ""
3138
 
3139
- #: admin/views/Shortcode.php:201
3140
- #, fuzzy
3141
  #| msgid "Gallery is empty."
3142
  msgid "Gallery Group"
3143
- msgstr "Gallery is empty."
3144
 
3145
- #: admin/views/Shortcode.php:212
3146
  msgid "Select the gallery group to display."
3147
  msgstr ""
3148
 
3149
- #: admin/views/Shortcode.php:218
3150
  msgid "Tag"
3151
  msgstr ""
3152
 
3153
- #: admin/views/Shortcode.php:230
3154
- #, fuzzy
3155
  #| msgid "There are no images in this gallery."
3156
  msgid "Filter gallery images by this tag."
3157
- msgstr "There are no images in this gallery."
3158
 
3159
- #: admin/views/Shortcode.php:235
3160
  msgid "Theme"
3161
  msgstr ""
3162
 
3163
- #: admin/views/Shortcode.php:247
3164
  msgid "Choose the theme for your gallery."
3165
  msgstr ""
3166
 
3167
- #: admin/views/Shortcode.php:253
3168
  msgid "Use default options"
3169
  msgstr ""
3170
 
3171
- #: admin/views/Shortcode.php:254
3172
  msgid ""
3173
  "Mark this option to use default settings configured in Photo Gallery Options."
3174
  msgstr ""
3175
 
3176
- #: admin/views/Shortcode.php:254
3177
  #, php-format
3178
  msgid "You can change the default options %s."
3179
  msgstr ""
3180
 
3181
- #: admin/views/Shortcode.php:279
3182
  msgid "Action on image click"
3183
  msgstr ""
3184
 
3185
- #: admin/views/Shortcode.php:289
3186
  msgid "Toggle panel"
3187
  msgstr ""
3188
 
3189
- #: admin/views/Shortcode.php:425
3190
  msgid "Insert into post"
3191
  msgstr ""
3192
 
3193
- #: admin/views/Shortcode.php:430
3194
- msgid "Please see "
3195
- msgstr ""
3196
-
3197
- #: admin/views/Shortcode.php:430
3198
- msgid "View in Premium version"
3199
- msgstr ""
3200
-
3201
- #: admin/views/Shortcode.php:452
3202
  msgid "New shortcode"
3203
  msgstr ""
3204
 
3205
- #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
3206
  msgid "Generate"
3207
  msgstr ""
3208
 
3209
- #: admin/views/Shortcode.php:463
3210
  msgid ""
3211
  "If you would like to edit an existing shortcode, use this dropdown box to "
3212
  "select it."
3213
  msgstr ""
3214
 
3215
- #: admin/views/Shortcode.php:467
3216
  msgid "Shortcode"
3217
  msgstr ""
3218
 
3219
- #: admin/views/Shortcode.php:469
3220
  msgid ""
3221
  "Add the selected gallery or gallery group to any WordPress page or post. "
3222
  "Simply copy the generated shortcode and paste it in the content of page/post "
3223
  "editor."
3224
  msgstr ""
3225
 
3226
- #: admin/views/Shortcode.php:474
3227
  msgid "PHP function"
3228
  msgstr ""
3229
 
3230
- #: admin/views/Shortcode.php:476
3231
  msgid ""
3232
  "Use generated PHP function to call the selected gallery or gallery group on "
3233
  "a custom PHP template."
3234
  msgstr ""
3235
 
3236
- #: admin/views/Shortcode.php:563
3237
  msgid "There is no shortcode with such ID!"
3238
  msgstr ""
3239
 
3240
- #: admin/views/Shortcode.php:2153
3241
  msgid "Image thumbnail width "
3242
  msgstr ""
3243
 
3244
- #: admin/views/Shortcode.php:2155
3245
  msgid "Image thumbnail height"
3246
  msgstr ""
3247
 
3248
- #: admin/views/Themes.php:22
3249
- msgid "You can't change theme parameters in free version."
 
3250
  msgstr ""
3251
 
3252
- #: admin/views/Themes.php:176
3253
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3254
  #| msgid "Show rating"
3255
  msgid "Theme title"
3256
- msgstr "Show rating"
 
 
 
 
3257
 
3258
- #: admin/views/Themes.php:184
3259
  msgid "Reset to default theme"
3260
  msgstr ""
3261
 
3262
- #: admin/views/Themes.php:212 admin/views/Themes.php:534
3263
- #: admin/views/Themes.php:856 admin/views/Themes.php:1911
3264
- #: admin/views/Themes.php:2921
3265
  msgid "Distance between pictures:"
3266
  msgstr ""
3267
 
3268
- #: admin/views/Themes.php:218 admin/views/Themes.php:540
3269
- #: admin/views/Themes.php:862 admin/views/Themes.php:1917
3270
- #: admin/views/Themes.php:2927
3271
  msgid "Distance from container frame:"
3272
  msgstr ""
3273
 
3274
- #: admin/views/Themes.php:224 admin/views/Themes.php:546
3275
- #: admin/views/Themes.php:868 admin/views/Themes.php:1923
3276
- #: admin/views/Themes.php:2933
3277
  msgid ""
3278
  "Enable this option to add distance between the parent container and the "
3279
  "thumbnails grid."
3280
  msgstr ""
3281
 
3282
- #: admin/views/Themes.php:228 admin/views/Themes.php:1640
3283
- #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
3284
- #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
 
3285
  msgid "Padding:"
3286
  msgstr ""
3287
 
3288
- #: admin/views/Themes.php:234 admin/views/Themes.php:550
3289
- #: admin/views/Themes.php:872 admin/views/Themes.php:1647
3290
- #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
3291
- #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
 
3292
  msgid "Border width:"
3293
  msgstr ""
3294
 
3295
- #: admin/views/Themes.php:240 admin/views/Themes.php:556
3296
- #: admin/views/Themes.php:878 admin/views/Themes.php:1653
3297
- #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
3298
- #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
3299
- #, fuzzy
3300
  #| msgid "Order by: "
3301
  msgid "Border style:"
3302
- msgstr "Order by: "
3303
 
3304
- #: admin/views/Themes.php:254 admin/views/Themes.php:570
3305
- #: admin/views/Themes.php:892 admin/views/Themes.php:1667
3306
- #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
3307
- #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
 
3308
  msgid "Border color:"
3309
  msgstr ""
3310
 
3311
- #: admin/views/Themes.php:260 admin/views/Themes.php:576
3312
- #: admin/views/Themes.php:898 admin/views/Themes.php:1673
3313
- #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
3314
- #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
3315
- #: admin/views/Themes.php:4655
3316
  msgid "Border radius:"
3317
  msgstr ""
3318
 
3319
- #: admin/views/Themes.php:263 admin/views/Themes.php:270
3320
- #: admin/views/Themes.php:432 admin/views/Themes.php:439
3321
- #: admin/views/Themes.php:495 admin/views/Themes.php:502
3322
- #: admin/views/Themes.php:579 admin/views/Themes.php:728
3323
- #: admin/views/Themes.php:817 admin/views/Themes.php:824
3324
- #: admin/views/Themes.php:901 admin/views/Themes.php:1052
3325
- #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
3326
- #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
3327
- #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
3328
- #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
3329
- #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
3330
- #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
3331
- #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
3332
- #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
3333
- #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
3334
- #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
3335
- #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
3336
- #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
3337
- #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
3338
- #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
3339
- #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
3340
- #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
3341
- #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
3342
- #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
3343
- #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
3344
- #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
3345
- #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
3346
- #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
3347
- #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
3348
- #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
3349
- #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
3350
- #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
3351
- #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
3352
- #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
3353
- #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
3354
- #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
3355
- #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
3356
- #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
3357
- #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
3358
- #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
3359
- #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
3360
- #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
3361
- #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
3362
- #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
3363
- #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
3364
- #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
 
 
 
3365
  msgid "Use CSS type values."
3366
  msgstr ""
3367
 
3368
- #: admin/views/Themes.php:267 admin/views/Themes.php:1967
3369
  msgid "Shadow:"
3370
  msgstr ""
3371
 
3372
- #: admin/views/Themes.php:274 admin/views/Themes.php:583
3373
- #: admin/views/Themes.php:905 admin/views/Themes.php:1974
3374
- #: admin/views/Themes.php:2970
3375
  msgid "Hover effect:"
3376
  msgstr ""
3377
 
3378
- #: admin/views/Themes.php:288 admin/views/Themes.php:597
3379
- #: admin/views/Themes.php:919 admin/views/Themes.php:1988
3380
- #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
3381
  msgid "Hover effect value:"
3382
  msgstr ""
3383
 
3384
- #: admin/views/Themes.php:291
3385
  msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3386
  msgstr ""
3387
 
3388
- #: admin/views/Themes.php:295 admin/views/Themes.php:604
3389
- #: admin/views/Themes.php:926
3390
  msgid "Transition:"
3391
  msgstr ""
3392
 
3393
- #: admin/views/Themes.php:315 admin/views/Themes.php:624
3394
- #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
3395
- #: admin/views/Themes.php:3011
3396
  msgid "Thumbnail background color:"
3397
  msgstr ""
3398
 
3399
- #: admin/views/Themes.php:322 admin/views/Themes.php:2020
3400
- #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
3401
- msgid "Thumbnail transparency:"
 
3402
  msgstr ""
3403
 
3404
- #: admin/views/Themes.php:325 admin/views/Themes.php:338
3405
- #: admin/views/Themes.php:634 admin/views/Themes.php:647
3406
- #: admin/views/Themes.php:954 admin/views/Themes.php:967
3407
- #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
3408
- #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
3409
- #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
3410
- #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
3411
- #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
3412
- #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
3413
- #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
3414
- #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
3415
- #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
3416
- #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
3417
- #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
3418
- #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
3419
- #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
 
 
3420
  msgid "Value must be between 0 to 100."
3421
  msgstr ""
3422
 
3423
- #: admin/views/Themes.php:329 admin/views/Themes.php:1563
3424
- #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
 
 
 
 
 
3425
  msgid "Full background color:"
3426
  msgstr ""
3427
 
3428
- #: admin/views/Themes.php:335 admin/views/Themes.php:1569
3429
- #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
3430
  msgid "Full background transparency:"
3431
  msgstr ""
3432
 
3433
- #: admin/views/Themes.php:342 admin/views/Themes.php:651
3434
- #: admin/views/Themes.php:971 admin/views/Themes.php:1619
3435
- #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
3436
- #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
3437
  msgid "Alignment:"
3438
  msgstr ""
3439
 
3440
- #: admin/views/Themes.php:366 admin/views/Themes.php:1710
3441
- #: admin/views/Themes.php:2064
3442
  msgid "Title position:"
3443
  msgstr ""
3444
 
3445
- #: admin/views/Themes.php:369 admin/views/Themes.php:1275
3446
- #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
3447
- #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
3448
- #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
3449
- #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
3450
  msgid "Top"
3451
  msgstr ""
3452
 
3453
- #: admin/views/Themes.php:371 admin/views/Themes.php:1277
3454
- #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
3455
- #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
3456
- #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
3457
- #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
3458
  msgid "Bottom"
3459
  msgstr ""
3460
 
3461
- #: admin/views/Themes.php:375 admin/views/Themes.php:671
3462
- #: admin/views/Themes.php:995 admin/views/Themes.php:2073
3463
- #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
3464
- #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
3465
  msgid "Title font size:"
3466
  msgstr ""
3467
 
3468
- #: admin/views/Themes.php:381 admin/views/Themes.php:677
3469
- #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
3470
- #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
3471
- #: admin/views/Themes.php:4278
3472
  msgid "Title font color:"
3473
  msgstr ""
3474
 
3475
- #: admin/views/Themes.php:387 admin/views/Themes.php:683
3476
- #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
3477
- #: admin/views/Themes.php:3074
3478
  msgid "Title font color (Show on hover):"
3479
  msgstr ""
3480
 
3481
- #: admin/views/Themes.php:393 admin/views/Themes.php:689
3482
- #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
3483
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
3484
- #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
3485
  msgid "Title font family:"
3486
  msgstr ""
3487
 
3488
- #: admin/views/Themes.php:415 admin/views/Themes.php:711
3489
- #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
3490
- #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
3491
- #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
3492
  msgid "Title font weight:"
3493
  msgstr ""
3494
 
3495
- #: admin/views/Themes.php:429 admin/views/Themes.php:1049
3496
- #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
3497
  msgid "Title box shadow:"
3498
  msgstr ""
3499
 
3500
- #: admin/views/Themes.php:436 admin/views/Themes.php:725
3501
- #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
3502
- #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
3503
  msgid "Title margin:"
3504
  msgstr ""
3505
 
3506
- #: admin/views/Themes.php:443 admin/views/Themes.php:766
3507
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
3508
- #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
3509
- #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3510
  msgid "Gallery title/description font size:"
3511
  msgstr ""
3512
 
3513
- #: admin/views/Themes.php:450 admin/views/Themes.php:772
3514
- #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
3515
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
3516
- #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
 
3517
  msgid "Gallery title/description font color:"
3518
  msgstr ""
3519
 
3520
- #: admin/views/Themes.php:456 admin/views/Themes.php:778
3521
- #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
3522
- #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
3523
- #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
 
3524
  msgid "Gallery title/description font family:"
3525
  msgstr ""
3526
 
3527
- #: admin/views/Themes.php:478 admin/views/Themes.php:800
3528
- #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
3529
- #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
3530
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
 
3531
  msgid "Gallery title/description font weight:"
3532
  msgstr ""
3533
 
3534
- #: admin/views/Themes.php:492 admin/views/Themes.php:814
3535
- #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
3536
- #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
3537
- #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
 
3538
  msgid "Gallery title/description box shadow:"
3539
  msgstr ""
3540
 
3541
- #: admin/views/Themes.php:499 admin/views/Themes.php:821
3542
- #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
3543
- #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
3544
- #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
 
3545
  msgid "Gallery title/description margin:"
3546
  msgstr ""
3547
 
3548
- #: admin/views/Themes.php:506 admin/views/Themes.php:828
3549
- #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
3550
- #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
3551
- #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
3552
- #, fuzzy
3553
  #| msgid "Gallery is empty."
3554
  msgid "Gallery title alignment:"
3555
- msgstr "Gallery is empty."
3556
 
3557
- #: admin/views/Themes.php:600 admin/views/Themes.php:922
3558
- #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
3559
- #: admin/views/Themes.php:2987
3560
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3561
  msgstr ""
3562
 
3563
- #: admin/views/Themes.php:631 admin/views/Themes.php:951
3564
  msgid "Transparency:"
3565
  msgstr ""
3566
 
3567
- #: admin/views/Themes.php:638 admin/views/Themes.php:958
3568
  msgid "Full Background color:"
3569
  msgstr ""
3570
 
3571
- #: admin/views/Themes.php:644 admin/views/Themes.php:964
3572
- #: admin/views/Themes.php:1686 admin/views/Themes.php:2485
3573
- #: admin/views/Themes.php:3274
3574
  msgid "Background transparency:"
3575
  msgstr ""
3576
 
3577
- #: admin/views/Themes.php:732 admin/views/Themes.php:1508
3578
- #: admin/views/Themes.php:2770 admin/views/Themes.php:4369
3579
  msgid "Description font size:"
3580
  msgstr ""
3581
 
3582
- #: admin/views/Themes.php:738 admin/views/Themes.php:2776
3583
- #: admin/views/Themes.php:4327
3584
  msgid "Description font color:"
3585
  msgstr ""
3586
 
3587
- #: admin/views/Themes.php:744 admin/views/Themes.php:1520
3588
- #: admin/views/Themes.php:2782 admin/views/Themes.php:4333
3589
- msgid "Description font family:"
3590
- msgstr ""
3591
-
3592
- #: admin/views/Themes.php:945 admin/views/Themes.php:1153
3593
- #: admin/views/Themes.php:1680 admin/views/Themes.php:2479
3594
- #: admin/views/Themes.php:3268 admin/views/Themes.php:4781
3595
  msgid "Background color:"
3596
  msgstr ""
3597
 
3598
- #: admin/views/Themes.php:1159 admin/views/Themes.php:3846
3599
- #: admin/views/Themes.php:4794
3600
  msgid "Right, left buttons size:"
3601
  msgstr ""
3602
 
3603
- #: admin/views/Themes.php:1165 admin/views/Themes.php:4800
3604
  msgid "Play, pause buttons size:"
3605
  msgstr ""
3606
 
3607
- #: admin/views/Themes.php:1171 admin/views/Themes.php:3416
3608
- #: admin/views/Themes.php:4806
3609
  msgid "Buttons color:"
3610
  msgstr ""
3611
 
3612
- #: admin/views/Themes.php:1177 admin/views/Themes.php:4812
3613
  msgid "Buttons transparency:"
3614
  msgstr ""
3615
 
3616
- #: admin/views/Themes.php:1184 admin/views/Themes.php:4819
3617
  msgid "Buttons hover color:"
3618
  msgstr ""
3619
 
3620
- #: admin/views/Themes.php:1190 admin/views/Themes.php:3840
3621
- #: admin/views/Themes.php:4825
3622
  msgid "Right, left buttons width:"
3623
  msgstr ""
3624
 
3625
- #: admin/views/Themes.php:1196 admin/views/Themes.php:3834
3626
- #: admin/views/Themes.php:4831
3627
  msgid "Right, left buttons height:"
3628
  msgstr ""
3629
 
3630
- #: admin/views/Themes.php:1202 admin/views/Themes.php:3815
3631
- #: admin/views/Themes.php:4837
3632
  msgid "Right, left buttons background color:"
3633
  msgstr ""
3634
 
3635
- #: admin/views/Themes.php:1208 admin/views/Themes.php:3871
3636
- #: admin/views/Themes.php:4843
3637
  msgid "Right, left buttons border width:"
3638
  msgstr ""
3639
 
3640
- #: admin/views/Themes.php:1214 admin/views/Themes.php:3877
3641
- #: admin/views/Themes.php:4849
3642
  msgid "Right, left buttons border style:"
3643
  msgstr ""
3644
 
3645
- #: admin/views/Themes.php:1228 admin/views/Themes.php:3891
3646
- #: admin/views/Themes.php:4863
3647
  msgid "Right, left buttons border color:"
3648
  msgstr ""
3649
 
3650
- #: admin/views/Themes.php:1234 admin/views/Themes.php:3864
3651
- #: admin/views/Themes.php:4869
3652
  msgid "Right, left buttons border radius:"
3653
  msgstr ""
3654
 
3655
- #: admin/views/Themes.php:1241 admin/views/Themes.php:3801
3656
- #: admin/views/Themes.php:4876
3657
  msgid "Right, left buttons style:"
3658
  msgstr ""
3659
 
3660
- #: admin/views/Themes.php:1255 admin/views/Themes.php:3827
3661
  msgid "Right, left buttons box shadow:"
3662
  msgstr ""
3663
 
3664
- #: admin/views/Themes.php:1272
3665
  msgid "Filmstrip/Slider bullet position:"
3666
  msgstr ""
3667
 
3668
- #: admin/views/Themes.php:1283
3669
  msgid "Filmstrip margin:"
3670
  msgstr ""
3671
 
3672
- #: admin/views/Themes.php:1290
3673
  msgid "Filmstrip border width:"
3674
  msgstr ""
3675
 
3676
- #: admin/views/Themes.php:1296
3677
  msgid "Filmstrip border style:"
3678
  msgstr ""
3679
 
3680
- #: admin/views/Themes.php:1311
3681
  msgid "Filmstrip border color:"
3682
  msgstr ""
3683
 
3684
- #: admin/views/Themes.php:1317
3685
  msgid "Filmstrip border radius:"
3686
  msgstr ""
3687
 
3688
- #: admin/views/Themes.php:1324
3689
  msgid "Filmstrip active border width:"
3690
  msgstr ""
3691
 
3692
- #: admin/views/Themes.php:1330
3693
  msgid "Filmstrip active border color:"
3694
  msgstr ""
3695
 
3696
- #: admin/views/Themes.php:1336
3697
  msgid "Filmstrip deactive transparency: "
3698
  msgstr ""
3699
 
3700
- #: admin/views/Themes.php:1343
3701
  msgid "Filmstrip right, left buttons background color: "
3702
  msgstr ""
3703
 
3704
- #: admin/views/Themes.php:1349 admin/views/Themes.php:3973
3705
  msgid "Filmstrip right, left buttons color:"
3706
  msgstr ""
3707
 
3708
- #: admin/views/Themes.php:1355 admin/views/Themes.php:3967
3709
  msgid "Filmstrip right, left buttons size:"
3710
  msgstr ""
3711
 
3712
- #: admin/views/Themes.php:1361
3713
  msgid "Slider bullet width: "
3714
  msgstr ""
3715
 
3716
- #: admin/views/Themes.php:1367
3717
  msgid "Slider bullet height:"
3718
  msgstr ""
3719
 
3720
- #: admin/views/Themes.php:1373
3721
  msgid "Slider bullet border radius: "
3722
  msgstr ""
3723
 
3724
- #: admin/views/Themes.php:1380
3725
  msgid "Slider bullet background color:"
3726
  msgstr ""
3727
 
3728
- #: admin/views/Themes.php:1386
3729
  msgid "Slider bullet margin:"
3730
  msgstr ""
3731
 
3732
- #: admin/views/Themes.php:1392
3733
  msgid "Slider bullet active background color: "
3734
  msgstr ""
3735
 
3736
- #: admin/views/Themes.php:1398
3737
  msgid "Slider bullet active border width:"
3738
  msgstr ""
3739
 
3740
- #: admin/views/Themes.php:1404
3741
  msgid "Slider bullet active border color: "
3742
  msgstr ""
3743
 
3744
- #: admin/views/Themes.php:1420
3745
  msgid "Title background color: "
3746
  msgstr ""
3747
 
3748
- #: admin/views/Themes.php:1426
3749
  msgid "Title transparency: "
3750
  msgstr ""
3751
 
3752
- #: admin/views/Themes.php:1433 admin/views/Themes.php:4958
3753
  msgid "Title border radius:"
3754
  msgstr ""
3755
 
3756
- #: admin/views/Themes.php:1440
3757
  msgid "Title padding: "
3758
  msgstr ""
3759
 
3760
- #: admin/views/Themes.php:1447
3761
  msgid "Title font size: "
3762
  msgstr ""
3763
 
3764
- #: admin/views/Themes.php:1453
3765
  msgid "Title color: "
3766
  msgstr ""
3767
 
3768
- #: admin/views/Themes.php:1481 admin/views/Themes.php:1814
3769
  msgid "Description background color:"
3770
  msgstr ""
3771
 
3772
- #: admin/views/Themes.php:1487
3773
  msgid "Description transparency:"
3774
  msgstr ""
3775
 
3776
- #: admin/views/Themes.php:1494 admin/views/Themes.php:1807
3777
  msgid "Description border radius:"
3778
  msgstr ""
3779
 
3780
- #: admin/views/Themes.php:1501 admin/views/Themes.php:1774
3781
- #: admin/views/Themes.php:2737
3782
  msgid "Description padding:"
3783
  msgstr ""
3784
 
3785
- #: admin/views/Themes.php:1514
3786
  msgid "Description color:"
3787
  msgstr ""
3788
 
3789
- #: admin/views/Themes.php:1556
3790
  msgid "Full padding:"
3791
  msgstr ""
3792
 
3793
- #: admin/views/Themes.php:1576
3794
  msgid "Full border radius:"
3795
  msgstr ""
3796
 
3797
- #: admin/views/Themes.php:1583
3798
  msgid "Full border width:"
3799
  msgstr ""
3800
 
3801
- #: admin/views/Themes.php:1589
3802
  msgid "Full border style:"
3803
  msgstr ""
3804
 
3805
- #: admin/views/Themes.php:1603
3806
  msgid "Full border color:"
3807
  msgstr ""
3808
 
3809
- #: admin/views/Themes.php:1633 admin/views/Themes.php:2466
3810
- #: admin/views/Themes.php:3295 admin/views/Themes.php:4672
 
3811
  msgid "Margin:"
3812
  msgstr ""
3813
 
3814
- #: admin/views/Themes.php:1693 admin/views/Themes.php:3309
3815
- #: admin/views/Themes.php:4708
3816
  msgid "Box shadow:"
3817
  msgstr ""
3818
 
3819
- #: admin/views/Themes.php:1719
3820
  msgid "Title alignment:"
3821
  msgstr ""
3822
 
3823
- #: admin/views/Themes.php:1733 admin/views/Themes.php:3348
3824
- #: admin/views/Themes.php:4581
3825
  msgid "Font size:"
3826
  msgstr ""
3827
 
3828
- #: admin/views/Themes.php:1739 admin/views/Themes.php:3354
3829
- #: admin/views/Themes.php:4587
3830
  msgid "Font color:"
3831
  msgstr ""
3832
 
3833
- #: admin/views/Themes.php:1745 admin/views/Themes.php:3326
3834
- #: admin/views/Themes.php:4593
3835
  msgid "Font family:"
3836
  msgstr ""
3837
 
3838
- #: admin/views/Themes.php:1767
3839
  msgid "Description margin:"
3840
  msgstr ""
3841
 
3842
- #: admin/views/Themes.php:1781 admin/views/Themes.php:2744
3843
  msgid "Description border width:"
3844
  msgstr ""
3845
 
3846
- #: admin/views/Themes.php:1787 admin/views/Themes.php:2750
3847
  msgid "Description border style:"
3848
  msgstr ""
3849
 
3850
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2764
3851
  msgid "Description border color:"
3852
  msgstr ""
3853
 
3854
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2338
3855
- #: admin/views/Themes.php:2991
3856
  msgid "Thumbnail transition:"
3857
  msgstr ""
3858
 
3859
- #: admin/views/Themes.php:2141 admin/views/Themes.php:3123
3860
  msgid "Back Font size:"
3861
  msgstr ""
3862
 
3863
- #: admin/views/Themes.php:2147 admin/views/Themes.php:3129
3864
- #, fuzzy
3865
  #| msgid "Share on Facebook"
3866
  msgid "Back Font color:"
3867
- msgstr "Share on Facebook"
3868
 
3869
- #: admin/views/Themes.php:2153 admin/views/Themes.php:3135
3870
  msgid "Back Font family:"
3871
  msgstr ""
3872
 
3873
- #: admin/views/Themes.php:2175 admin/views/Themes.php:3157
3874
  msgid "Back Font weight:"
3875
  msgstr ""
3876
 
3877
- #: admin/views/Themes.php:2189 admin/views/Themes.php:2525
3878
- #: admin/views/Themes.php:3171
3879
  msgid "Back padding:"
3880
  msgstr ""
3881
 
3882
- #: admin/views/Themes.php:2286
3883
  msgid "Thumbnail margin:"
3884
  msgstr ""
3885
 
3886
- #: admin/views/Themes.php:2292
3887
  msgid "Thumbnail padding:"
3888
  msgstr ""
3889
 
3890
- #: admin/views/Themes.php:2298
3891
  msgid "Thumbnail border width:"
3892
  msgstr ""
3893
 
3894
- #: admin/views/Themes.php:2304
3895
  msgid "Thumbnail border style:"
3896
  msgstr ""
3897
 
3898
- #: admin/views/Themes.php:2318
3899
  msgid "Thumbnail border color:"
3900
  msgstr ""
3901
 
3902
- #: admin/views/Themes.php:2324
3903
  msgid "Thumbnail border radius:"
3904
  msgstr ""
3905
 
3906
- #: admin/views/Themes.php:2331
3907
  msgid "Thumbnail box shadow:"
3908
  msgstr ""
3909
 
3910
- #: admin/views/Themes.php:2347
3911
  msgid "Description alignment:"
3912
  msgstr ""
3913
 
3914
- #: admin/views/Themes.php:2368
3915
  msgid "Thumbnail hover effect:"
3916
  msgstr ""
3917
 
3918
- #: admin/views/Themes.php:2395
3919
  msgid "Thumbnails background color:"
3920
  msgstr ""
3921
 
3922
- #: admin/views/Themes.php:2401
3923
- msgid "Thumbnail background transparency:"
3924
- msgstr ""
3925
-
3926
- #: admin/views/Themes.php:2419
3927
  msgid "Thumbnail div padding:"
3928
  msgstr ""
3929
 
3930
- #: admin/views/Themes.php:2426
3931
  msgid "Thumbnail div background color:"
3932
  msgstr ""
3933
 
3934
- #: admin/views/Themes.php:2432
3935
  msgid "Thumbnail div border width:"
3936
  msgstr ""
3937
 
3938
- #: admin/views/Themes.php:2439
3939
  msgid "humbnail div border style:"
3940
  msgstr ""
3941
 
3942
- #: admin/views/Themes.php:2453
3943
  msgid "Thumbnail div border color:"
3944
  msgstr ""
3945
 
3946
- #: admin/views/Themes.php:2459
3947
  msgid "Thumbnail div border radius:"
3948
  msgstr ""
3949
 
3950
- #: admin/views/Themes.php:2499
3951
  msgid "Separator width:"
3952
  msgstr ""
3953
 
3954
- #: admin/views/Themes.php:2505
3955
  msgid "Separator style:"
3956
  msgstr ""
3957
 
3958
- #: admin/views/Themes.php:2519
3959
  msgid "Separator color:"
3960
  msgstr ""
3961
 
3962
- #: admin/views/Themes.php:2532
3963
  msgid "Back font size:"
3964
  msgstr ""
3965
 
3966
- #: admin/views/Themes.php:2538
3967
  msgid "Back font color:"
3968
  msgstr ""
3969
 
3970
- #: admin/views/Themes.php:2544
3971
  msgid "Back font family:"
3972
  msgstr ""
3973
 
3974
- #: admin/views/Themes.php:2566
3975
  msgid "Back font weight:"
3976
  msgstr ""
3977
 
3978
- #: admin/views/Themes.php:2590
3979
  msgid "Title/description alignment:"
3980
  msgstr ""
3981
 
3982
- #: admin/views/Themes.php:2604
3983
  msgid "Text div padding:"
3984
  msgstr ""
3985
 
3986
- #: admin/views/Themes.php:2611
3987
  msgid "Text div border width:"
3988
  msgstr ""
3989
 
3990
- #: admin/views/Themes.php:2617
3991
  msgid "Text border style:"
3992
  msgstr ""
3993
 
3994
- #: admin/views/Themes.php:2631
3995
  msgid "Text border color:"
3996
  msgstr ""
3997
 
3998
- #: admin/views/Themes.php:2637
3999
  msgid "Text div border radius:"
4000
  msgstr ""
4001
 
4002
- #: admin/views/Themes.php:2644
4003
  msgid "Text background color:"
4004
  msgstr ""
4005
 
4006
- #: admin/views/Themes.php:2656 admin/views/Themes.php:4971
4007
  msgid "Title padding:"
4008
  msgstr ""
4009
 
4010
- #: admin/views/Themes.php:2663
4011
  msgid "Title border width:"
4012
  msgstr ""
4013
 
4014
- #: admin/views/Themes.php:2669
4015
  msgid "Title border style:"
4016
  msgstr ""
4017
 
4018
- #: admin/views/Themes.php:2683
4019
  msgid "Title border color:"
4020
  msgstr ""
4021
 
4022
- #: admin/views/Themes.php:2804 admin/views/Themes.php:4355
4023
  msgid "Description font weight:"
4024
  msgstr ""
4025
 
4026
- #: admin/views/Themes.php:2818
4027
  msgid "Description more size:"
4028
  msgstr ""
4029
 
4030
- #: admin/views/Themes.php:2824
4031
  msgid "Description more color:"
4032
  msgstr ""
4033
 
4034
- #: admin/views/Themes.php:3403
4035
  msgid "Buttons and title margin:"
4036
  msgstr ""
4037
 
4038
- #: admin/views/Themes.php:3410
4039
  msgid "Buttons size:"
4040
  msgstr ""
4041
 
4042
- #: admin/views/Themes.php:3422
4043
  msgid "Buttons and title border width:"
4044
  msgstr ""
4045
 
4046
- #: admin/views/Themes.php:3428
4047
  msgid "Buttons and title border style:"
4048
  msgstr ""
4049
 
4050
- #: admin/views/Themes.php:3442
4051
  msgid "Buttons and title border color:"
4052
  msgstr ""
4053
 
4054
- #: admin/views/Themes.php:3448
4055
  msgid "Buttons and title border radius:"
4056
  msgstr ""
4057
 
4058
- #: admin/views/Themes.php:3455
4059
  msgid "Buttons and title background color:"
4060
  msgstr ""
4061
 
4062
- #: admin/views/Themes.php:3461
4063
  msgid "Buttons and title background transparency:"
4064
  msgstr ""
4065
 
4066
- #: admin/views/Themes.php:3468
4067
  msgid "Buttons or title alignment:"
4068
  msgstr ""
4069
 
4070
- #: admin/views/Themes.php:3573
4071
  msgid "Overlay background color:"
4072
  msgstr ""
4073
 
4074
- #: admin/views/Themes.php:3579
4075
  msgid "Overlay background transparency:"
4076
  msgstr ""
4077
 
4078
- #: admin/views/Themes.php:3586
4079
  msgid "Lightbox background color:"
4080
  msgstr ""
4081
 
4082
- #: admin/views/Themes.php:3592
4083
  msgid "Lightbox background transparency:"
4084
  msgstr ""
4085
 
4086
- #: admin/views/Themes.php:3599
4087
  msgid "Control buttons height:"
4088
  msgstr ""
4089
 
4090
- #: admin/views/Themes.php:3605
4091
  msgid "Control buttons margin (top):"
4092
  msgstr ""
4093
 
4094
- #: admin/views/Themes.php:3611
4095
  msgid "Control buttons margin (left):"
4096
  msgstr ""
4097
 
4098
- #: admin/views/Themes.php:3617
4099
  msgid "Control buttons position:"
4100
  msgstr ""
4101
 
4102
- #: admin/views/Themes.php:3626
4103
  msgid "Control buttons background color:"
4104
  msgstr ""
4105
 
4106
- #: admin/views/Themes.php:3632
4107
  msgid "Control buttons container border radius:"
4108
  msgstr ""
4109
 
4110
- #: admin/views/Themes.php:3639
4111
  msgid "Control buttons container background transparency:"
4112
  msgstr ""
4113
 
4114
- #: admin/views/Themes.php:3646
4115
  msgid "Control buttons alignment:"
4116
  msgstr ""
4117
 
4118
- #: admin/views/Themes.php:3660
4119
  msgid "Control buttons color:"
4120
  msgstr ""
4121
 
4122
- #: admin/views/Themes.php:3666
4123
  msgid "Control buttons transparency:"
4124
  msgstr ""
4125
 
4126
- #: admin/views/Themes.php:3673
4127
  msgid "Toggle button height:"
4128
  msgstr ""
4129
 
4130
- #: admin/views/Themes.php:3679
4131
  msgid "Toggle button width:"
4132
  msgstr ""
4133
 
4134
- #: admin/views/Themes.php:3685
4135
  msgid "Close button border radius:"
4136
  msgstr ""
4137
 
4138
- #: admin/views/Themes.php:3693
4139
  msgid "Close button border width:"
4140
  msgstr ""
4141
 
4142
- #: admin/views/Themes.php:3699
4143
  msgid "Close button border style:"
4144
  msgstr ""
4145
 
4146
- #: admin/views/Themes.php:3713
4147
  msgid "Close button border color:"
4148
  msgstr ""
4149
 
4150
- #: admin/views/Themes.php:3719
4151
  msgid "Close button box shadow:"
4152
  msgstr ""
4153
 
4154
- #: admin/views/Themes.php:3726
4155
  msgid "Close button background color:"
4156
  msgstr ""
4157
 
4158
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3742
4159
- #: admin/views/Themes.php:3749 admin/views/Themes.php:3756
4160
- #: admin/views/Themes.php:3763
4161
  msgid "The option does not apply to Full-width lightbox."
4162
  msgstr ""
4163
 
4164
- #: admin/views/Themes.php:3733
4165
  msgid "Close button transparency:"
4166
  msgstr ""
4167
 
4168
- #: admin/views/Themes.php:3739
4169
  msgid "Close button width:"
4170
  msgstr ""
4171
 
4172
- #: admin/views/Themes.php:3746
4173
  msgid "Close button height:"
4174
  msgstr ""
4175
 
4176
- #: admin/views/Themes.php:3753
4177
  msgid "Close button top:"
4178
  msgstr ""
4179
 
4180
- #: admin/views/Themes.php:3760
4181
  msgid "Close button right:"
4182
  msgstr ""
4183
 
4184
- #: admin/views/Themes.php:3767
4185
  msgid "Close button size:"
4186
  msgstr ""
4187
 
4188
- #: admin/views/Themes.php:3773
4189
  msgid "Close button color:"
4190
  msgstr ""
4191
 
4192
- #: admin/views/Themes.php:3779
4193
  msgid "Fullscreen close button color:"
4194
  msgstr ""
4195
 
4196
- #: admin/views/Themes.php:3785
4197
- #, fuzzy
4198
  #| msgid "Share on Facebook"
4199
  msgid "Share buttons color:"
4200
- msgstr "Share on Facebook"
4201
 
4202
- #: admin/views/Themes.php:3821
4203
  msgid "Right, left buttons transparency:"
4204
  msgstr ""
4205
 
4206
- #: admin/views/Themes.php:3852
4207
  msgid "Right, left, close buttons hover color:"
4208
  msgstr ""
4209
 
4210
- #: admin/views/Themes.php:3858
4211
  msgid "Right, left buttons color:"
4212
  msgstr ""
4213
 
4214
- #: admin/views/Themes.php:3897
4215
  msgid "Filmstrip position:"
4216
  msgstr ""
4217
 
4218
- #: admin/views/Themes.php:3908
4219
  msgid "Filmstrip thumbnail margin:"
4220
  msgstr ""
4221
 
4222
- #: admin/views/Themes.php:3915
4223
  msgid "Filmstrip thumbnail border width:"
4224
  msgstr ""
4225
 
4226
- #: admin/views/Themes.php:3921
4227
  msgid "Filmstrip thumbnail border style:"
4228
  msgstr ""
4229
 
4230
- #: admin/views/Themes.php:3935
4231
  msgid "Filmstrip thumbnail border color:"
4232
  msgstr ""
4233
 
4234
- #: admin/views/Themes.php:3941
4235
  msgid "Filmstrip thumbnail border radius:"
4236
  msgstr ""
4237
 
4238
- #: admin/views/Themes.php:3948
4239
  msgid "Filmstrip thumbnail active border width:"
4240
  msgstr ""
4241
 
4242
- #: admin/views/Themes.php:3954
4243
  msgid "Filmstrip thumbnail active border color:"
4244
  msgstr ""
4245
 
4246
- #: admin/views/Themes.php:3960
4247
  msgid "Filmstrip thumbnail deactive transparency:"
4248
  msgstr ""
4249
 
4250
- #: admin/views/Themes.php:3979
4251
  msgid "Filmstrip right, left button background color:"
4252
  msgstr ""
4253
 
4254
- #: admin/views/Themes.php:3985
4255
  msgid "Rating position:"
4256
  msgstr ""
4257
 
4258
- #: admin/views/Themes.php:3994
4259
  msgid "Rating alignment:"
4260
  msgstr ""
4261
 
4262
- #: admin/views/Themes.php:4008
4263
  msgid "Rating icon:"
4264
  msgstr ""
4265
 
4266
- #: admin/views/Themes.php:4022
4267
  msgid "Rating color:"
4268
  msgstr ""
4269
 
4270
- #: admin/views/Themes.php:4028
4271
  msgid "Rating hover color:"
4272
  msgstr ""
4273
 
4274
- #: admin/views/Themes.php:4034
4275
  msgid "Rating size:"
4276
  msgstr ""
4277
 
4278
- #: admin/views/Themes.php:4040
4279
  msgid "Rating icon count:"
4280
  msgstr ""
4281
 
4282
- #: admin/views/Themes.php:4046
4283
  msgid "Rating padding:"
4284
  msgstr ""
4285
 
4286
- #: admin/views/Themes.php:4053
4287
  msgid "Hit counter position:"
4288
  msgstr ""
4289
 
4290
- #: admin/views/Themes.php:4062
4291
  msgid "Hit counter alignment:"
4292
  msgstr ""
4293
 
4294
- #: admin/views/Themes.php:4076
4295
  msgid "Hit counter background color:"
4296
  msgstr ""
4297
 
4298
- #: admin/views/Themes.php:4082
4299
  msgid "Hit counter background transparency:"
4300
  msgstr ""
4301
 
4302
- #: admin/views/Themes.php:4089
4303
  msgid "Hit counter border width:"
4304
  msgstr ""
4305
 
4306
- #: admin/views/Themes.php:4095
4307
  msgid "Hit counter border style:"
4308
  msgstr ""
4309
 
4310
- #: admin/views/Themes.php:4109
4311
  msgid "Hit counter border color:"
4312
  msgstr ""
4313
 
4314
- #: admin/views/Themes.php:4115
4315
  msgid "Hit counter border radius:"
4316
  msgstr ""
4317
 
4318
- #: admin/views/Themes.php:4122
4319
  msgid "Hit counter padding:"
4320
  msgstr ""
4321
 
4322
- #: admin/views/Themes.php:4129
4323
  msgid "Hit counter margin:"
4324
  msgstr ""
4325
 
4326
- #: admin/views/Themes.php:4136
4327
  msgid "Hit counter font color:"
4328
  msgstr ""
4329
 
4330
- #: admin/views/Themes.php:4142
4331
  msgid "Hit counter font family:"
4332
  msgstr ""
4333
 
4334
- #: admin/views/Themes.php:4164
4335
  msgid "Hit counter font weight:"
4336
  msgstr ""
4337
 
4338
- #: admin/views/Themes.php:4178
4339
  msgid "Hit counter font size:"
4340
  msgstr ""
4341
 
4342
- #: admin/views/Themes.php:4195
4343
  msgid "Info position:"
4344
  msgstr ""
4345
 
4346
- #: admin/views/Themes.php:4204
4347
  msgid "Info alignment:"
4348
  msgstr ""
4349
 
4350
- #: admin/views/Themes.php:4218
4351
  msgid "Info background color:"
4352
  msgstr ""
4353
 
4354
- #: admin/views/Themes.php:4224
4355
  msgid "Info background transparency:"
4356
  msgstr ""
4357
 
4358
- #: admin/views/Themes.php:4231
4359
  msgid "Info border width:"
4360
  msgstr ""
4361
 
4362
- #: admin/views/Themes.php:4237
4363
  msgid "Info border style:"
4364
  msgstr ""
4365
 
4366
- #: admin/views/Themes.php:4251
4367
  msgid "Info border color:"
4368
  msgstr ""
4369
 
4370
- #: admin/views/Themes.php:4257
4371
  msgid "Info border radius:"
4372
  msgstr ""
4373
 
4374
- #: admin/views/Themes.php:4264
4375
  msgid "Info padding:"
4376
  msgstr ""
4377
 
4378
- #: admin/views/Themes.php:4271
4379
  msgid "Info margin:"
4380
  msgstr ""
4381
 
4382
- #: admin/views/Themes.php:4376
4383
- #, fuzzy
4384
  #| msgid "Comment"
4385
  msgid "Comments Width:"
4386
- msgstr "Comment"
4387
 
4388
- #: admin/views/Themes.php:4382
4389
  msgid "Comments position:"
4390
  msgstr ""
4391
 
4392
- #: admin/views/Themes.php:4391
4393
  msgid "Comments background color:"
4394
  msgstr ""
4395
 
4396
- #: admin/views/Themes.php:4397
4397
  msgid "Comments font size:"
4398
  msgstr ""
4399
 
4400
- #: admin/views/Themes.php:4403
4401
  msgid "Comments font color:"
4402
  msgstr ""
4403
 
4404
- #: admin/views/Themes.php:4409
4405
  msgid "Comments font family:"
4406
  msgstr ""
4407
 
4408
- #: admin/views/Themes.php:4431
4409
  msgid "Comments author font size:"
4410
  msgstr ""
4411
 
4412
- #: admin/views/Themes.php:4438
4413
  msgid "Comments date font size:"
4414
  msgstr ""
4415
 
4416
- #: admin/views/Themes.php:4444
4417
  msgid "Comments body font size:"
4418
  msgstr ""
4419
 
4420
- #: admin/views/Themes.php:4450
4421
  msgid "Comment input border width:"
4422
  msgstr ""
4423
 
4424
- #: admin/views/Themes.php:4456
4425
  msgid "omment input border style:"
4426
  msgstr ""
4427
 
4428
- #: admin/views/Themes.php:4470
4429
  msgid "Comment input border color:"
4430
  msgstr ""
4431
 
4432
- #: admin/views/Themes.php:4476
4433
  msgid "Comment input border radius:"
4434
  msgstr ""
4435
 
4436
- #: admin/views/Themes.php:4482
4437
  msgid "Comment input padding:"
4438
  msgstr ""
4439
 
4440
- #: admin/views/Themes.php:4489
4441
  msgid "Comment input background color:"
4442
  msgstr ""
4443
 
4444
- #: admin/views/Themes.php:4495
4445
  msgid "Comment button background color:"
4446
  msgstr ""
4447
 
4448
- #: admin/views/Themes.php:4501
4449
  msgid "Comment button padding:"
4450
  msgstr ""
4451
 
4452
- #: admin/views/Themes.php:4508
4453
  msgid "Comment button border width:"
4454
  msgstr ""
4455
 
4456
- #: admin/views/Themes.php:4514
4457
  msgid "Comment button border style:"
4458
  msgstr ""
4459
 
4460
- #: admin/views/Themes.php:4528
4461
  msgid "Comment button border color:"
4462
  msgstr ""
4463
 
4464
- #: admin/views/Themes.php:4534
4465
  msgid "omment button border radius:"
4466
  msgstr ""
4467
 
4468
- #: admin/views/Themes.php:4541
4469
  msgid "Comment separator width:"
4470
  msgstr ""
4471
 
4472
- #: admin/views/Themes.php:4547
4473
  msgid "Comment separator style:"
4474
  msgstr ""
4475
 
4476
- #: admin/views/Themes.php:4561
4477
  msgid "Comment separator color:"
4478
  msgstr ""
4479
 
4480
- #: admin/views/Themes.php:4615
4481
  msgid "Font weight:"
4482
  msgstr ""
4483
 
4484
- #: admin/views/Themes.php:4686
4485
  msgid "Button background color:"
4486
  msgstr ""
4487
 
4488
- #: admin/views/Themes.php:4692
4489
  msgid "Button background transparency:"
4490
  msgstr ""
4491
 
4492
- #: admin/views/Themes.php:4699
4493
  msgid "Button transition:"
4494
  msgstr ""
4495
 
4496
- #: admin/views/Themes.php:4725
4497
  msgid "Position:"
4498
  msgstr ""
4499
 
4500
- #: admin/views/Themes.php:4748
4501
  msgid "Numbering:"
4502
  msgstr ""
4503
 
4504
- #: admin/views/Themes.php:4757
4505
  msgid "Button text:"
4506
  msgstr ""
4507
 
4508
- #: admin/views/Themes.php:4762
4509
  msgid "Arrow"
4510
  msgstr ""
4511
 
4512
- #: admin/views/Themes.php:4763
4513
  msgid "Next, previous buttons values."
4514
  msgstr ""
4515
 
4516
- #: admin/views/Themes.php:4787
4517
  msgid "Container opacity:"
4518
  msgstr ""
4519
 
4520
- #: admin/views/Themes.php:4900
4521
  msgid "Carousel margin:"
4522
  msgstr ""
4523
 
4524
- #: admin/views/Themes.php:4906
4525
  msgid "Image border width:"
4526
  msgstr ""
4527
 
4528
- #: admin/views/Themes.php:4913
4529
  msgid "Image border style:"
4530
  msgstr ""
4531
 
4532
- #: admin/views/Themes.php:4928
4533
  msgid "Image border color:"
4534
  msgstr ""
4535
 
4536
- #: admin/views/Themes.php:4944
4537
  msgid "Title background color:"
4538
  msgstr ""
4539
 
4540
- #: admin/views/Themes.php:4951
4541
  msgid "Title opacity:"
4542
  msgstr ""
4543
 
4544
- #: admin/views/Themes.php:4978
4545
  msgid "Title Font family:"
4546
  msgstr ""
4547
 
4548
- #: admin/views/Themes.php:5005
4549
  msgid "Title color:"
4550
  msgstr ""
4551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4552
  #: admin/views/Uninstall.php:31
4553
  msgid "support team"
4554
  msgstr ""
@@ -4612,68 +4687,63 @@ msgid ""
4612
  "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4613
  msgstr ""
4614
 
4615
- #: admin/views/Widget.php:98 photo-gallery.php:92
4616
- msgid "Photo Gallery"
4617
- msgstr ""
4618
-
4619
- #: admin/views/Widget.php:115 admin/views/WidgetSlideshow.php:82
4620
  #: admin/views/WidgetTags.php:78
4621
  msgid "Title:"
4622
  msgstr ""
4623
 
4624
- #: admin/views/Widget.php:119 admin/views/WidgetTags.php:82
4625
  msgid "Type:"
4626
  msgstr ""
4627
 
4628
- #: admin/views/Widget.php:121
4629
  msgid "Gallery groups"
4630
  msgstr ""
4631
 
4632
- #: admin/views/Widget.php:124 admin/views/WidgetSlideshow.php:86
4633
  msgid "Galleries:"
4634
  msgstr ""
4635
 
4636
- #: admin/views/Widget.php:137
4637
- #, fuzzy
4638
  #| msgid "Gallery is empty."
4639
  msgid "Gallery Type:"
4640
- msgstr "Gallery is empty."
4641
 
4642
- #: admin/views/Widget.php:145
4643
  msgid "Gallery Groups:"
4644
  msgstr ""
4645
 
4646
- #: admin/views/Widget.php:147
4647
  msgid "All Galleries"
4648
  msgstr ""
4649
 
4650
- #: admin/views/Widget.php:158
4651
  msgid "Sort:"
4652
  msgstr ""
4653
 
4654
- #: admin/views/Widget.php:160 frontend/views/view.php:639
4655
  msgid "First"
4656
- msgstr "First"
4657
 
4658
- #: admin/views/Widget.php:161 frontend/views/view.php:642
4659
  msgid "Last"
4660
- msgstr "Last"
4661
 
4662
- #: admin/views/Widget.php:165
4663
  msgid "Count:"
4664
  msgstr ""
4665
 
4666
- #: admin/views/Widget.php:169 admin/views/WidgetSlideshow.php:131
4667
  #: admin/views/WidgetTags.php:105
4668
  msgid "Dimensions:"
4669
  msgstr ""
4670
 
4671
- #: admin/views/Widget.php:174 admin/views/WidgetSlideshow.php:147
4672
  #: admin/views/WidgetTags.php:124
4673
  msgid "Themes:"
4674
  msgstr ""
4675
 
4676
- #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1680
4677
  msgid "Photo Gallery Slideshow"
4678
  msgstr ""
4679
 
@@ -4705,7 +4775,7 @@ msgstr ""
4705
  msgid "Time interval:"
4706
  msgstr ""
4707
 
4708
- #: admin/views/WidgetTags.php:63 photo-gallery.php:1676
4709
  msgid "Photo Gallery Tags Cloud"
4710
  msgstr ""
4711
 
@@ -4765,24 +4835,24 @@ msgstr ""
4765
  msgid "Directory already exists."
4766
  msgstr ""
4767
 
4768
- #: filemanager/controller.php:263
4769
  msgid "File doesn't exist."
4770
  msgstr ""
4771
 
4772
- #: filemanager/controller.php:267 filemanager/controller.php:300
4773
- #: filemanager/controller.php:332
4774
  msgid "Can't rename the file."
4775
  msgstr ""
4776
 
4777
- #: filemanager/controller.php:371
4778
  msgid "Some of the files couldn't be removed."
4779
  msgstr ""
4780
 
4781
- #: filemanager/controller.php:481
4782
  msgid "Failed to copy some of the files."
4783
  msgstr ""
4784
 
4785
- #: filemanager/controller.php:528
4786
  msgid "Failed to move some of the files."
4787
  msgstr ""
4788
 
@@ -4810,362 +4880,405 @@ msgstr ""
4810
  msgid "Processing uploaded files..."
4811
  msgstr ""
4812
 
4813
- #: filemanager/view.php:93
4814
  msgid "Up"
4815
  msgstr ""
4816
 
4817
- #: filemanager/view.php:94
4818
  msgid "Make a directory"
4819
  msgstr ""
4820
 
4821
- #: filemanager/view.php:95
4822
  msgid "Rename item"
4823
  msgstr ""
4824
 
4825
- #: filemanager/view.php:97 framework/howto/data.php:168
4826
  msgid "Copy"
4827
  msgstr ""
4828
 
4829
- #: filemanager/view.php:98
4830
  msgid "Cut"
4831
  msgstr ""
4832
 
4833
- #: filemanager/view.php:99
4834
  msgid "Paste"
4835
  msgstr ""
4836
 
4837
- #: filemanager/view.php:100
4838
- #, fuzzy
4839
  #| msgid " item(s)"
4840
  msgid "Remove items"
4841
- msgstr "item(s)"
4842
 
4843
- #: filemanager/view.php:102
4844
  msgid "Refresh"
4845
  msgstr ""
4846
 
4847
- #: filemanager/view.php:106
4848
  msgid "View thumbs"
4849
  msgstr ""
4850
 
4851
- #: filemanager/view.php:107
4852
  msgid "View list"
4853
  msgstr ""
4854
 
4855
- #: filemanager/view.php:111
4856
  msgid "Upload files"
4857
  msgstr ""
4858
 
4859
- #: filemanager/view.php:130
4860
- #, fuzzy
4861
  #| msgid "Order by: "
4862
  msgid "Order by:"
4863
- msgstr "Order by: "
4864
 
4865
- #: filemanager/view.php:132
4866
  msgid "Click to sort by name"
4867
  msgstr ""
4868
 
4869
- #: filemanager/view.php:148
4870
  msgid "Click to sort by size"
4871
  msgstr ""
4872
 
4873
- #: filemanager/view.php:164
4874
  msgid "Click to sort by date modified"
4875
  msgstr ""
4876
 
4877
- #: filemanager/view.php:167
4878
  msgid "Date modified"
4879
  msgstr ""
4880
 
4881
- #: filemanager/view.php:198
4882
  msgid "No items found."
4883
  msgstr ""
4884
 
4885
- #: filemanager/view.php:213
4886
- #, fuzzy
4887
  #| msgid "There are no images in this gallery."
4888
  msgid "Add selected images to gallery"
4889
- msgstr "There are no images in this gallery."
 
 
 
 
4890
 
4891
- #: filemanager/view.php:228
4892
  msgid "Thumbnail Max Dimensions:"
4893
  msgstr ""
4894
 
4895
- #: filemanager/view.php:229
4896
  msgid "Thumbnail:"
4897
  msgstr ""
4898
 
4899
- #: filemanager/view.php:234 frontend/views/view.php:241
4900
- msgid "Back"
4901
- msgstr "Back"
4902
-
4903
- #: filemanager/view.php:237
4904
  msgid "Image Max Dimensions:"
4905
  msgstr ""
4906
 
4907
- #: filemanager/view.php:238
4908
  msgid "Image:"
4909
  msgstr ""
4910
 
4911
- #: filemanager/view.php:246
4912
  msgid "Drag files here"
4913
  msgstr ""
4914
 
4915
- #: filemanager/view.php:246
4916
  msgid "Select Files"
4917
  msgstr ""
4918
 
4919
- #: filemanager/view.php:265
4920
  msgid "No files to upload"
4921
  msgstr ""
4922
 
4923
- #: filemanager/view.php:292
4924
  msgid "Uploaded"
4925
  msgstr ""
4926
 
4927
- #: filemanager/view.php:293
4928
  msgid "Upload failed"
4929
  msgstr ""
4930
 
4931
- #: filemanager/view.php:294
4932
  msgid ""
4933
  "There has been a problem while trying to upload the following images. Please "
4934
  "try to upload them again."
4935
  msgstr ""
4936
 
4937
- #: filemanager/view.php:295
4938
  msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
4939
  msgstr ""
4940
 
4941
- #: framework/WDWLibrary.php:69
4942
  msgid "Item successfully saved."
4943
  msgstr ""
4944
 
4945
- #: framework/WDWLibrary.php:75 framework/WDWLibrary.php:178
4946
  msgid "Failed."
4947
  msgstr ""
4948
 
4949
- #: framework/WDWLibrary.php:81
4950
  msgid "Item successfully deleted."
4951
  msgstr ""
4952
 
4953
- #: framework/WDWLibrary.php:87
4954
  msgid "You can't delete default theme."
4955
  msgstr ""
4956
 
4957
- #: framework/WDWLibrary.php:93
4958
- msgid "Items Successfully Deleted."
4959
  msgstr ""
4960
 
4961
- #: framework/WDWLibrary.php:99
4962
  msgid "You must set watermark type from Options page."
4963
  msgstr ""
4964
 
4965
- #: framework/WDWLibrary.php:105
4966
  msgid "The item is successfully set as default."
4967
  msgstr ""
4968
 
4969
- #: framework/WDWLibrary.php:111
4970
  msgid "Options successfully saved."
4971
  msgstr ""
4972
 
4973
- #: framework/WDWLibrary.php:117
4974
  msgid "Item successfully published."
4975
  msgstr ""
4976
 
4977
- #: framework/WDWLibrary.php:123
4978
  msgid "Item successfully unpublished."
4979
  msgstr ""
4980
 
4981
- #: framework/WDWLibrary.php:129
4982
  msgid "Item successfully duplicated."
4983
  msgstr ""
4984
 
4985
- #: framework/WDWLibrary.php:136
4986
- msgid "Items Succesfully Unpublished."
4987
  msgstr ""
4988
 
4989
- #: framework/WDWLibrary.php:142
4990
- msgid "Ordering Succesfully Saved."
4991
  msgstr ""
4992
 
4993
- #: framework/WDWLibrary.php:148
4994
  msgid "A term with the name provided already exists."
4995
  msgstr ""
4996
 
4997
- #: framework/WDWLibrary.php:154
4998
  msgid "Name field is required."
4999
  msgstr ""
5000
 
5001
- #: framework/WDWLibrary.php:160
5002
  msgid "The slug must be unique."
5003
  msgstr ""
5004
 
5005
- #: framework/WDWLibrary.php:166
5006
  msgid "Changes must be saved."
5007
  msgstr ""
5008
 
5009
- #: framework/WDWLibrary.php:172
5010
  msgid "Theme successfully copied."
5011
  msgstr ""
5012
 
5013
- #: framework/WDWLibrary.php:183
5014
  msgid "Items were reset successfully."
5015
  msgstr ""
5016
 
5017
- #: framework/WDWLibrary.php:188
5018
  msgid "Watermark successfully set."
5019
  msgstr ""
5020
 
5021
- #: framework/WDWLibrary.php:193
5022
  msgid "Items successfully rotated."
5023
  msgstr ""
5024
 
5025
- #: framework/WDWLibrary.php:198
5026
  msgid "Items successfully recreated."
5027
  msgstr ""
5028
 
5029
- #: framework/WDWLibrary.php:203
5030
  msgid "Items successfully resized."
5031
  msgstr ""
5032
 
5033
- #: framework/WDWLibrary.php:208
5034
  msgid "Items successfully edited."
5035
  msgstr ""
5036
 
5037
- #: framework/WDWLibrary.php:269
 
 
 
 
 
 
 
 
 
 
 
 
5038
  msgid "Click to sort by this item"
5039
  msgstr ""
5040
 
5041
- #: framework/WDWLibrary.php:451 framework/WDWLibrary.php:600
5042
- msgid "item"
 
5043
  msgstr ""
5044
 
5045
- #: framework/WDWLibrary.php:2156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5046
  #, php-format
5047
  msgid "No %s found."
5048
  msgstr ""
5049
 
5050
- #: framework/WDWLibrary.php:2212
5051
- #, fuzzy
5052
  #| msgid "Gallery is empty."
5053
  msgid "Gallery Tags"
5054
- msgstr "Gallery is empty."
5055
 
5056
- #: framework/WDWLibrary.php:2423
5057
  msgid "resized"
5058
  msgstr ""
5059
 
5060
- #: framework/WDWLibrary.php:2427
5061
  msgid "Recreate thumbnail"
5062
  msgstr ""
5063
 
5064
- #: framework/WDWLibrary.php:2428
5065
  msgid "recreated"
5066
  msgstr ""
5067
 
5068
- #: framework/WDWLibrary.php:2432
5069
  msgid "Rotate left"
5070
  msgstr ""
5071
 
5072
- #: framework/WDWLibrary.php:2433
5073
- #, fuzzy
5074
  #| msgid "Not rated yet."
5075
  msgid "rotated left"
5076
- msgstr "Not rated yet."
5077
 
5078
- #: framework/WDWLibrary.php:2437
5079
  msgid "Rotate right"
5080
  msgstr ""
5081
 
5082
- #: framework/WDWLibrary.php:2438
5083
  msgid "rotated right"
5084
  msgstr ""
5085
 
5086
- #: framework/WDWLibrary.php:2443 framework/WDWLibrary.php:2456
5087
- #: framework/WDWLibrary.php:2461 framework/WDWLibrary.php:2466
5088
- #: framework/WDWLibrary.php:2471 framework/WDWLibrary.php:2494
5089
- #: framework/WDWLibrary.php:2499
5090
  msgid "edited"
5091
  msgstr ""
5092
 
5093
- #: framework/WDWLibrary.php:2448
5094
- #, fuzzy
5095
  #| msgid "Reset"
5096
  msgid "reset"
5097
- msgstr "Reset"
5098
 
5099
- #: framework/WDWLibrary.php:2455
5100
  msgid "Edit Alt/Title"
5101
  msgstr ""
5102
 
5103
- #: framework/WDWLibrary.php:2460
5104
  msgid "Edit description"
5105
  msgstr ""
5106
 
5107
- #: framework/WDWLibrary.php:2465
5108
  msgid "Edit redirect URL"
5109
  msgstr ""
5110
 
5111
- #: framework/WDWLibrary.php:2470
5112
- #, fuzzy
5113
  #| msgid " item(s)"
5114
  msgid "Add/Remove tag"
5115
- msgstr "item(s)"
5116
 
5117
- #: framework/WDWLibrary.php:2493
5118
  msgid "Add pricelist"
5119
  msgstr ""
5120
 
5121
- #: framework/WDWLibrary.php:2498
5122
  msgid "Remove pricelist"
5123
  msgstr ""
5124
 
5125
- #: framework/WDWLibrary.php:2604
5126
- #, fuzzy
5127
  #| msgid "Share on Facebook"
5128
  msgid "Photo Gallery Premium"
5129
- msgstr "Share on Facebook"
5130
 
5131
- #: framework/WDWLibrary.php:2607
5132
  msgid ""
5133
  "Get more stunning views with fully customizable themes, powerful lightbox "
5134
  "and much more."
5135
  msgstr ""
5136
 
5137
- #: framework/WDWLibrary.php:2611 framework/WDWLibrary.php:2662
5138
- msgid "Upgrade"
5139
- msgstr ""
5140
-
5141
- #: framework/WDWLibrary.php:2625
5142
  msgid "User guide"
5143
  msgstr ""
5144
 
5145
- #: framework/WDWLibrary.php:2640 photo-gallery.php:498 photo-gallery.php:1905
 
5146
  msgid "Ask a question"
5147
  msgstr ""
5148
 
5149
- #: framework/WDWLibrary.php:2654
5150
  msgid "Forms"
5151
  msgstr ""
5152
 
5153
- #: framework/WDWLibrary.php:2658 photo-gallery.php:488
5154
  msgid "Add-ons"
5155
  msgstr ""
5156
 
5157
- #: framework/WDWLibrary.php:2662
5158
  msgid "Premium Version"
5159
  msgstr ""
5160
 
5161
- #: framework/WDWLibrary.php:2796
5162
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5163
  #| msgid "Gallery is empty."
5164
  msgid "All tags"
5165
- msgstr "Gallery is empty."
5166
 
5167
- #: framework/WDWLibraryEmbed.php:399 framework/WDWLibraryEmbed.php:408
5168
- #: framework/WDWLibraryEmbed.php:410
5169
  msgid "The entered URL is incorrect. Please check the URL and try again."
5170
  msgstr ""
5171
 
@@ -5210,10 +5323,9 @@ msgid "How to insert Photo Gallery as widget ?"
5210
  msgstr ""
5211
 
5212
  #: framework/howto/data.php:32
5213
- #, fuzzy
5214
  #| msgid "Gallery is empty."
5215
  msgid "Add Gallery Widget"
5216
- msgstr "Gallery is empty."
5217
 
5218
  #: framework/howto/data.php:33
5219
  msgid ""
@@ -5316,306 +5428,337 @@ msgid ""
5316
  "The Photo Gallery will now appear in the section of the site you’ve chosen."
5317
  msgstr ""
5318
 
5319
- #: framework/howto/howto.php:339 framework/howto/howto.php:357
5320
  msgid "How to ..."
5321
  msgstr ""
5322
 
5323
- #: framework/howto/howto.php:409
5324
- msgid "How to use"
 
5325
  msgstr ""
5326
 
5327
- #: frontend/controllers/BWGControllerGalleryBox.php:74
5328
- #: frontend/controllers/BWGControllerGalleryBox.php:79
5329
- #: frontend/controllers/BWGControllerGalleryBox.php:88
5330
- #: frontend/controllers/BWGControllerGalleryBox.php:96
5331
- #: frontend/controllers/BWGControllerGalleryBox.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5332
  #, php-format
5333
  msgid "The %s field is required."
5334
  msgstr ""
5335
 
5336
- #: frontend/controllers/BWGControllerGalleryBox.php:83
5337
- #, fuzzy, php-format
5338
  #| msgid "This is not a valid email address."
5339
  msgid "The %s field must contain a valid email address."
5340
- msgstr "This is not a valid email address."
5341
 
5342
- #: frontend/controllers/BWGControllerGalleryBox.php:100
5343
- #, fuzzy
5344
  #| msgid "Error. Incorrect Verification Code."
5345
  msgid "Incorrect Security code."
5346
- msgstr "Error. Incorrect Verification Code."
5347
 
5348
- #: frontend/controllers/controller.php:94
5349
- #, fuzzy
5350
  #| msgid "There is no gallery selected or the gallery was deleted."
5351
  msgid "There is no album selected or the gallery was deleted."
5352
- msgstr "There is no gallery selected or the gallery was deleted."
5353
 
5354
- #: frontend/controllers/controller.php:276
5355
- #: frontend/controllers/controller.php:304
5356
  msgid "There is no gallery selected or the gallery was deleted."
5357
- msgstr "There is no gallery selected or the gallery was deleted."
5358
 
5359
- #: frontend/views/BWGViewAlbum_compact_preview.php:78
5360
- #: frontend/views/BWGViewAlbum_extended_preview.php:89
5361
- #: frontend/views/BWGViewAlbum_masonry_preview.php:64
5362
  msgid "No results found."
5363
  msgstr ""
5364
 
5365
  #: frontend/views/BWGViewAlbum_extended_preview.php:161
5366
  #: frontend/views/BWGViewAlbum_extended_preview.php:164
5367
  msgid "More"
5368
- msgstr "More"
5369
 
5370
  #: frontend/views/BWGViewAlbum_extended_preview.php:162
5371
  msgid "Hide"
5372
- msgstr "Hide"
5373
 
5374
- #: frontend/views/BWGViewBlog_style.php:149
5375
- #: frontend/views/BWGViewGalleryBox.php:793
5376
  msgid "Show comments"
5377
- msgstr "Show comments"
 
 
 
 
 
 
 
5378
 
5379
- #: frontend/views/BWGViewBlog_style.php:155
5380
- #: frontend/views/BWGViewBlog_style.php:156
5381
  #: frontend/views/BWGViewGalleryBox.php:801
5382
  #: frontend/views/BWGViewGalleryBox.php:802
5383
- msgid "Share on Facebook"
5384
- msgstr "Share on Facebook"
5385
 
5386
- #: frontend/views/BWGViewBlog_style.php:162
5387
- #: frontend/views/BWGViewBlog_style.php:163
5388
  #: frontend/views/BWGViewGalleryBox.php:808
5389
  #: frontend/views/BWGViewGalleryBox.php:809
5390
- msgid "Share on Twitter"
5391
- msgstr "Share on Twitter"
5392
 
5393
- #: frontend/views/BWGViewBlog_style.php:169
5394
- #: frontend/views/BWGViewBlog_style.php:170
5395
  #: frontend/views/BWGViewGalleryBox.php:815
5396
  #: frontend/views/BWGViewGalleryBox.php:816
5397
- msgid "Share on Pinterest"
5398
- msgstr "Share on Pinterest"
5399
-
5400
- #: frontend/views/BWGViewBlog_style.php:176
5401
- #: frontend/views/BWGViewBlog_style.php:177
5402
- #: frontend/views/BWGViewGalleryBox.php:822
5403
- #: frontend/views/BWGViewGalleryBox.php:823
5404
  msgid "Share on Tumblr"
5405
- msgstr "Share on Tumblr"
5406
 
5407
- #: frontend/views/BWGViewBlog_style.php:184
5408
- #, fuzzy
5409
  #| msgid "Show comments"
5410
  msgid "Show ecommerce"
5411
- msgstr "Show comments"
5412
 
5413
  #: frontend/views/BWGViewDownload_gallery.php:53
5414
- #, fuzzy
5415
  #| msgid "There are no images in this gallery."
5416
  msgid "There are no images to download."
5417
- msgstr "There are no images in this gallery."
5418
 
5419
- #: frontend/views/BWGViewGalleryBox.php:642
5420
  msgid "The image has been deleted."
5421
- msgstr "The image has been deleted."
5422
 
5423
- #: frontend/views/BWGViewGalleryBox.php:781
5424
- #: frontend/views/BWGViewThumbnails.php:45
5425
- #: frontend/views/BWGViewThumbnails_masonry.php:56
5426
- #: frontend/views/BWGViewThumbnails_mosaic.php:90 photo-gallery.php:1425
5427
- #: photo-gallery.php:1428
5428
  msgid "Play"
5429
- msgstr "Play"
5430
 
5431
- #: frontend/views/BWGViewGalleryBox.php:785 photo-gallery.php:1418
5432
  msgid "Maximize"
5433
- msgstr "Maximize"
5434
 
5435
- #: frontend/views/BWGViewGalleryBox.php:789 photo-gallery.php:1419
5436
  msgid "Fullscreen"
5437
- msgstr "Fullscreen"
5438
 
5439
- #: frontend/views/BWGViewGalleryBox.php:791 photo-gallery.php:1431
5440
  msgid "Show info"
5441
- msgstr "Show info"
5442
 
5443
- #: frontend/views/BWGViewGalleryBox.php:795 photo-gallery.php:1433
5444
  msgid "Show rating"
5445
- msgstr "Show rating"
5446
 
5447
- #: frontend/views/BWGViewGalleryBox.php:830
 
 
 
 
5448
  msgid "Open image in original size."
5449
- msgstr "Open image in original size."
5450
 
5451
- #: frontend/views/BWGViewGalleryBox.php:845
5452
  msgid "Download original image"
5453
- msgstr "Download original image"
5454
 
5455
- #: frontend/views/BWGViewGalleryBox.php:852
5456
- #: frontend/views/BWGViewThumbnails.php:49
5457
- #: frontend/views/BWGViewThumbnails_masonry.php:60
5458
- #: frontend/views/BWGViewThumbnails_mosaic.php:108
5459
  msgid "Ecommerce"
5460
  msgstr ""
5461
 
5462
- #: frontend/views/BWGViewGalleryBox.php:877
5463
  msgid "Hits: "
5464
- msgstr "Hits: "
5465
 
5466
- #: frontend/views/BWGViewGalleryBox.php:897
5467
  msgid "Rated."
5468
- msgstr "Rated."
5469
 
5470
- #: frontend/views/BWGViewGalleryBox.php:990 photo-gallery.php:1416
5471
  msgid "Hide Comments"
5472
- msgstr "Hide Comments"
5473
 
5474
- #: frontend/views/BWGViewGalleryBox.php:1009
5475
  msgid "Verification Code"
5476
- msgstr "Verification Code"
5477
 
5478
- #: frontend/views/BWGViewGalleryBox.php:1032
5479
  #, php-format
5480
  msgid ""
5481
  "I consent collecting this data and processing it according to %s of this "
5482
  "website."
5483
  msgstr ""
5484
 
5485
- #: frontend/views/BWGViewGalleryBox.php:1033
5486
  #: wd/templates/display_subscribe.php:39
5487
  msgid "Privacy Policy"
5488
  msgstr ""
5489
 
5490
- #: frontend/views/BWGViewGalleryBox.php:1042
5491
  msgid "Submit"
5492
- msgstr "Submit"
5493
 
5494
- #: frontend/views/BWGViewGalleryBox.php:1044
5495
  msgid "Your comment is awaiting moderation"
5496
- msgstr "Your comment is awaiting moderation"
5497
 
5498
- #: frontend/views/BWGViewGalleryBox.php:1078 photo-gallery.php:1414
5499
- #, fuzzy
5500
  #| msgid "Hide Comments"
5501
  msgid "Hide Ecommerce"
5502
- msgstr "Hide Comments"
5503
 
5504
- #: frontend/views/BWGViewGalleryBox.php:1084
5505
- #: frontend/views/BWGViewGalleryBox.php:1267
5506
  msgid "Add to cart"
5507
  msgstr ""
5508
 
5509
- #: frontend/views/BWGViewGalleryBox.php:1087
5510
- #, fuzzy
5511
  #| msgid " item(s)"
5512
  msgid "items"
5513
- msgstr "item(s)"
5514
 
5515
- #: frontend/views/BWGViewGalleryBox.php:1095
5516
  msgid "Prints and products"
5517
  msgstr ""
5518
 
5519
- #: frontend/views/BWGViewGalleryBox.php:1102
5520
  msgid "Downloads"
5521
  msgstr ""
5522
 
5523
- #: frontend/views/BWGViewGalleryBox.php:1116
5524
- #: frontend/views/BWGViewGalleryBox.php:1228
5525
  msgid "Price"
5526
  msgstr ""
5527
 
5528
- #: frontend/views/BWGViewGalleryBox.php:1136
5529
  msgid "Count"
5530
  msgstr ""
5531
 
5532
- #: frontend/views/BWGViewGalleryBox.php:1216
5533
- #: frontend/views/BWGViewGalleryBox.php:1260
5534
  msgid "Total"
5535
  msgstr ""
5536
 
5537
- #: frontend/views/BWGViewGalleryBox.php:1227
5538
  msgid "Dimensions"
5539
  msgstr ""
5540
 
5541
- #: frontend/views/BWGViewGalleryBox.php:1229
5542
  msgid "Choose"
5543
  msgstr ""
5544
 
5545
- #: frontend/views/BWGViewGalleryBox.php:1268
5546
  msgid "View cart"
5547
  msgstr ""
5548
 
5549
- #: frontend/views/BWGViewGalleryBox.php:1374
5550
  msgid "Delete Comment"
5551
- msgstr "Delete Comment"
5552
 
5553
- #: frontend/views/BWGViewThumbnails.php:48
5554
- #: frontend/views/BWGViewThumbnails_masonry.php:59
5555
- #: frontend/views/BWGViewThumbnails_mosaic.php:107
5556
  msgid "Open"
5557
  msgstr ""
5558
 
5559
- #: frontend/views/view.php:94 frontend/views/view.php:171
5560
- #, fuzzy
5561
  #| msgid "There are no images in this gallery."
5562
  msgid "There are no images."
5563
- msgstr "There are no images in this gallery."
5564
 
5565
- #: frontend/views/view.php:97 frontend/views/view.php:174
5566
- #, fuzzy
5567
  #| msgid "Show comments"
5568
  msgid "No Images found."
5569
- msgstr "Show comments"
5570
 
5571
- #: frontend/views/view.php:317
5572
- #, fuzzy
5573
  #| msgid "Download original image"
5574
  msgid "Download gallery"
5575
- msgstr "Download original image"
5576
 
5577
- #: frontend/views/view.php:373 frontend/views/view.php:382
5578
- #: photo-gallery.php:1421
5579
  msgid "SEARCH..."
5580
  msgstr ""
5581
 
5582
- #: frontend/views/view.php:421
5583
- #, fuzzy
5584
  #| msgid "Order by: "
5585
  msgid "Order by Default"
5586
- msgstr "Order by: "
 
 
 
 
 
 
 
 
 
 
5587
 
5588
- #: frontend/views/view.php:634
5589
  msgid " item(s)"
5590
- msgstr "item(s)"
5591
 
5592
- #: frontend/views/view.php:640
5593
  msgid "Previous"
5594
- msgstr "Previous"
5595
 
5596
- #: frontend/views/view.php:641
5597
  msgid "Next"
5598
- msgstr "Next"
5599
 
5600
- #: frontend/views/view.php:660
5601
  msgid "Go to the first page"
5602
- msgstr "Go to the first page"
5603
 
5604
- #: frontend/views/view.php:661
5605
  msgid "Go to the previous page"
5606
- msgstr "Go to the previous page"
5607
 
5608
- #: frontend/views/view.php:668
5609
  msgid "Go to the next page"
5610
- msgstr "Go to the next page"
5611
 
5612
- #: frontend/views/view.php:669
5613
  msgid "Go to the last page"
5614
- msgstr "Go to the last page"
5615
 
5616
- #: frontend/views/view.php:681
5617
  msgid "Load More..."
5618
- msgstr "Load More..."
5619
 
5620
  #: insert.php:137
5621
  msgid "Light"
@@ -5625,15 +5768,15 @@ msgstr ""
5625
  msgid "Dark"
5626
  msgstr ""
5627
 
5628
- #: photo-gallery.php:270
5629
  msgid "Help"
5630
  msgstr ""
5631
 
5632
- #: photo-gallery.php:317
5633
  msgid "10WEB Plugins"
5634
  msgstr ""
5635
 
5636
- #: photo-gallery.php:338
5637
  msgid ""
5638
  "When you leave a comment on this site, we send your name, email\n"
5639
  " address, IP address and comment text to example.com. Example.com "
@@ -5641,20 +5784,20 @@ msgid ""
5641
  " not retain your personal data."
5642
  msgstr ""
5643
 
5644
- #: photo-gallery.php:347
5645
  #, php-format
5646
  msgid "Select %s"
5647
  msgstr ""
5648
 
5649
- #: photo-gallery.php:372
5650
  msgid "Nothing selected."
5651
  msgstr ""
5652
 
5653
- #: photo-gallery.php:373
5654
  msgid "- Select -"
5655
  msgstr ""
5656
 
5657
- #: photo-gallery.php:407
5658
  #, php-format
5659
  msgid ""
5660
  "Image edit functionality is not supported by your web host. We highly "
@@ -5662,11 +5805,11 @@ msgid ""
5662
  "library."
5663
  msgstr ""
5664
 
5665
- #: photo-gallery.php:407
5666
  msgid "PHP GD"
5667
  msgstr ""
5668
 
5669
- #: photo-gallery.php:408
5670
  #, php-format
5671
  msgid ""
5672
  "Without image editing functions, image thumbnails will not be created, thus "
@@ -5674,273 +5817,277 @@ msgid ""
5674
  "Gallery's features, e.g. %s, %s, and %s, will not be available."
5675
  msgstr ""
5676
 
5677
- #: photo-gallery.php:408
5678
  msgid "crop"
5679
  msgstr ""
5680
 
5681
- #: photo-gallery.php:408
5682
  msgid "edit"
5683
  msgstr ""
5684
 
5685
- #: photo-gallery.php:408
5686
- #, fuzzy
5687
  #| msgid "Not rated yet."
5688
  msgid "rotate"
5689
- msgstr "Not rated yet."
5690
 
5691
- #: photo-gallery.php:417
5692
  #, php-format
5693
  msgid ""
5694
  "Image edit functionality was just activated on your web host. Please go to "
5695
  "%s, navigate to %s tab and press %s button."
5696
  msgstr ""
5697
 
5698
- #: photo-gallery.php:417 photo-gallery.php:469
5699
  msgid "Options"
5700
  msgstr ""
5701
 
5702
- #: photo-gallery.php:417
5703
- #, fuzzy
5704
  #| msgid "Previous"
5705
  msgid "Options page"
5706
- msgstr "Previous"
5707
 
5708
- #: photo-gallery.php:461
5709
  msgid "Add Galleries/Images"
5710
  msgstr ""
5711
 
5712
- #: photo-gallery.php:527
5713
  #, php-format
5714
  msgid "The controller %s file not exist."
5715
  msgstr ""
5716
 
5717
- #: photo-gallery.php:532
5718
  #, php-format
5719
  msgid "The view %s file not exist."
5720
  msgstr ""
5721
 
5722
- #: photo-gallery.php:548 photo-gallery.php:553
5723
  #, php-format
5724
  msgid "The %s class not exist."
5725
  msgstr ""
5726
 
5727
- #: photo-gallery.php:596 photo-gallery.php:630
5728
  msgid "Do you want to delete selected items?"
5729
  msgstr ""
5730
 
5731
- #: photo-gallery.php:597 photo-gallery.php:625
5732
  msgid "You must select at least one item."
5733
  msgstr ""
5734
 
5735
- #: photo-gallery.php:598
5736
  msgid "Do you want to remove pricelist from selected items?"
5737
  msgstr ""
5738
 
5739
- #: photo-gallery.php:605 photo-gallery.php:1407
 
 
 
 
5740
  msgid "field is required."
5741
  msgstr ""
5742
 
5743
- #: photo-gallery.php:606
5744
  msgid "You must select an image file."
5745
  msgstr ""
5746
 
5747
- #: photo-gallery.php:607
5748
  msgid "You must select an audio file."
5749
  msgstr ""
5750
 
5751
- #: photo-gallery.php:608
5752
  msgid ""
5753
- "You do not have Instagram access token. Sign in with Instagram in Options -> "
5754
- "Advanced tab -> Social. "
5755
  msgstr ""
5756
 
5757
- #: photo-gallery.php:609
5758
  msgid ""
5759
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5760
  "options."
5761
  msgstr ""
5762
 
5763
- #: photo-gallery.php:610
5764
- msgid "Instagram recent post number must be between 1 and 33."
5765
  msgstr ""
5766
 
5767
- #: photo-gallery.php:611
5768
  msgid ""
5769
  "Gallery type cannot be changed, since it is not empty. In case you would "
5770
  "like to have Instagram gallery, please create a new one."
5771
  msgstr ""
5772
 
5773
- #: photo-gallery.php:612
5774
  msgid "Please enter url to embed."
5775
  msgstr ""
5776
 
5777
- #: photo-gallery.php:613
5778
  msgid "Error: cannot get response from the server."
5779
  msgstr ""
5780
 
5781
- #: photo-gallery.php:614
5782
  msgid "Error: something wrong happened at the server."
5783
  msgstr ""
5784
 
5785
- #: photo-gallery.php:615
5786
  msgid "Error"
5787
  msgstr ""
5788
 
5789
- #: photo-gallery.php:617
5790
  msgid "Hide order column"
5791
  msgstr ""
5792
 
5793
- #: photo-gallery.php:618
5794
  #, php-format
5795
  msgid "Selected %d item."
5796
  msgstr ""
5797
 
5798
- #: photo-gallery.php:619
5799
  #, php-format
5800
  msgid "Selected %d items."
5801
  msgstr ""
5802
 
5803
- #: photo-gallery.php:620
5804
- msgid "Items Succesfully Saved."
5805
  msgstr ""
5806
 
5807
- #: photo-gallery.php:621
5808
- msgid "Item Succesfully Recovered."
5809
  msgstr ""
5810
 
5811
- #: photo-gallery.php:622
5812
- msgid "Item Succesfully Published."
5813
  msgstr ""
5814
 
5815
- #: photo-gallery.php:623
5816
- msgid "Item Succesfully Unpublished."
5817
  msgstr ""
5818
 
5819
- #: photo-gallery.php:624
5820
- msgid "Item Succesfully Deleted."
5821
  msgstr ""
5822
 
5823
- #: photo-gallery.php:626
5824
- msgid "Items Succesfully resized."
5825
  msgstr ""
5826
 
5827
- #: photo-gallery.php:627
5828
- msgid "Watermarks Succesfully Set."
5829
  msgstr ""
5830
 
5831
- #: photo-gallery.php:628
5832
- msgid "Items Succesfully Reset."
5833
  msgstr ""
5834
 
5835
- #: photo-gallery.php:629
5836
  msgid "Save Tag"
5837
  msgstr ""
5838
 
5839
- #: photo-gallery.php:631 photo-gallery.php:633
5840
  msgid ""
5841
  "This action will reset gallery type to mixed and will save that choice. You "
5842
  "cannot undo it."
5843
  msgstr ""
5844
 
5845
- #: photo-gallery.php:632
5846
  msgid ""
5847
  "After pressing save/apply buttons, you cannot change gallery type back to "
5848
  "Instagram!"
5849
  msgstr ""
5850
 
5851
- #: photo-gallery.php:634
5852
  msgid "Insert"
5853
  msgstr ""
5854
 
5855
- #: photo-gallery.php:635
5856
  msgid "Failed to import images from media library"
5857
  msgstr ""
5858
 
5859
- #: photo-gallery.php:636
5860
  msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
5861
  msgstr ""
5862
 
5863
- #: photo-gallery.php:640
5864
  msgid "Thumbnails successfully recreated."
5865
  msgstr ""
5866
 
5867
- #: photo-gallery.php:641
5868
  msgid "All images are successfully reset."
5869
  msgstr ""
5870
 
5871
- #: photo-gallery.php:1002
5872
  msgid "Insert Photo Gallery"
5873
  msgstr ""
5874
 
5875
- #: photo-gallery.php:1004
5876
  msgid "Add Photo Gallery"
5877
  msgstr ""
5878
 
5879
- #: photo-gallery.php:1408
5880
  msgid "This is not a valid email address."
5881
- msgstr "This is not a valid email address."
5882
 
5883
- #: photo-gallery.php:1409
5884
  msgid "There are no images matching your search."
5885
- msgstr "There are no images matching your search."
5886
 
5887
- #: photo-gallery.php:1410
5888
  msgid "Select Tag"
5889
  msgstr ""
5890
 
5891
- #: photo-gallery.php:1411
5892
- #, fuzzy
5893
  #| msgid "Order by: "
5894
  msgid "Order By"
5895
- msgstr "Order by: "
5896
 
5897
- #: photo-gallery.php:1413
5898
- #, fuzzy
5899
  #| msgid "Show comments"
5900
  msgid "Show Ecommerce"
5901
- msgstr "Show comments"
5902
 
5903
- #: photo-gallery.php:1415
5904
  msgid "Show Comments"
5905
- msgstr "Show Comments"
5906
 
5907
- #: photo-gallery.php:1417
5908
  msgid "Restore"
5909
- msgstr "Restore"
5910
 
5911
- #: photo-gallery.php:1420
5912
  msgid "Exit Fullscreen"
5913
- msgstr "Exit Fullscreen"
5914
 
5915
- #: photo-gallery.php:1422
5916
  msgid "No tags found"
5917
  msgstr ""
5918
 
5919
- #: photo-gallery.php:1423
5920
  msgid "All tags selected"
5921
  msgstr ""
5922
 
5923
- #: photo-gallery.php:1424
5924
  msgid "tags selected"
5925
  msgstr ""
5926
 
5927
- #: photo-gallery.php:1426 photo-gallery.php:1429
5928
  msgid "Pause"
5929
- msgstr "Pause"
5930
 
5931
- #: photo-gallery.php:1430
5932
  msgid "Hide info"
5933
- msgstr "Hide info"
5934
 
5935
- #: photo-gallery.php:1432
5936
  msgid "Hide rating"
5937
- msgstr "Hide rating"
5938
 
5939
- #: photo-gallery.php:1434
5940
  msgid "Ok"
5941
  msgstr ""
5942
 
5943
- #: photo-gallery.php:1483
 
 
 
 
5944
  msgid ""
5945
  "Photo Gallery is a fully responsive gallery plugin with advanced "
5946
  "functionality. It allows having different image galleries for your posts and "
@@ -5948,11 +6095,11 @@ msgid ""
5948
  "gallery groups, and provide descriptions and tags."
5949
  msgstr ""
5950
 
5951
- #: photo-gallery.php:1487
5952
  msgid "Easy Set-up and Management"
5953
  msgstr ""
5954
 
5955
- #: photo-gallery.php:1488
5956
  msgid ""
5957
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
5958
  "Use the File Manager with single-step and easy-to-manage functionality to "
@@ -5960,11 +6107,11 @@ msgid ""
5960
  "use WordPress built in media uploader."
5961
  msgstr ""
5962
 
5963
- #: photo-gallery.php:1491
5964
  msgid "Unlimited Photos and Albums"
5965
  msgstr ""
5966
 
5967
- #: photo-gallery.php:1492
5968
  msgid ""
5969
  "The plugin allows creating unlimited number of galleries or gallery groups "
5970
  "and upload images in each gallery as many as you wish. Add single/ multiple "
@@ -5972,11 +6119,11 @@ msgid ""
5972
  "visual shortcodes for an easier management."
5973
  msgstr ""
5974
 
5975
- #: photo-gallery.php:1495
5976
  msgid "Customizable"
5977
  msgstr ""
5978
 
5979
- #: photo-gallery.php:1496
5980
  msgid ""
5981
  "The gallery plugin is easily customizable. You can edit themes changing "
5982
  "sizes and colors for different features. Specify the number of images to "
@@ -5984,11 +6131,11 @@ msgid ""
5984
  "thumbnail images by cropping, flipping and rotating them."
5985
  msgstr ""
5986
 
5987
- #: photo-gallery.php:1499
5988
  msgid "10 View Options"
5989
  msgstr ""
5990
 
5991
- #: photo-gallery.php:1500
5992
  msgid ""
5993
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
5994
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
@@ -5996,200 +6143,190 @@ msgid ""
5996
  "Ecommerce."
5997
  msgstr ""
5998
 
5999
- #: photo-gallery.php:1503
6000
  msgid "Audio and Video Support"
6001
  msgstr ""
6002
 
6003
- #: photo-gallery.php:1504
6004
  msgid ""
6005
  "You can include both videos and images within a single gallery. WordPress "
6006
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
6007
  "It's also possible to add audio tracks for the image slideshow."
6008
  msgstr ""
6009
 
6010
- #: photo-gallery.php:1510
6011
  msgid "Installing"
6012
  msgstr ""
6013
 
6014
- #: photo-gallery.php:1515
6015
  msgid "Creating/Editing Galleries"
6016
  msgstr ""
6017
 
6018
- #: photo-gallery.php:1519
6019
  msgid "Instagram Gallery"
6020
  msgstr ""
6021
 
6022
- #: photo-gallery.php:1525
6023
  msgid "Creating/Editing Tags"
6024
  msgstr ""
6025
 
6026
- #: photo-gallery.php:1530
6027
  msgid "Creating/Editing Albums"
6028
  msgstr ""
6029
 
6030
- #: photo-gallery.php:1535
6031
  msgid "Editing Options"
6032
  msgstr ""
6033
 
6034
- #: photo-gallery.php:1539
6035
  msgid "Global Options"
6036
  msgstr ""
6037
 
6038
- #: photo-gallery.php:1555
6039
  msgid "Album Options"
6040
  msgstr ""
6041
 
6042
- #: photo-gallery.php:1563
6043
  msgid "Thumbnail Options"
6044
  msgstr ""
6045
 
6046
- #: photo-gallery.php:1567
6047
  msgid "Image Options"
6048
  msgstr ""
6049
 
6050
- #: photo-gallery.php:1571
6051
  msgid "Social Options"
6052
  msgstr ""
6053
 
6054
- #: photo-gallery.php:1575
6055
  msgid "Carousel Options"
6056
  msgstr ""
6057
 
6058
- #: photo-gallery.php:1581
6059
  msgid "Creating/Editing Themes"
6060
  msgstr ""
6061
 
6062
- #: photo-gallery.php:1605
6063
  msgid "Compact Album"
6064
  msgstr ""
6065
 
6066
- #: photo-gallery.php:1609
6067
  msgid "Masonry Album"
6068
  msgstr ""
6069
 
6070
- #: photo-gallery.php:1613
6071
  msgid "Extended Album"
6072
  msgstr ""
6073
 
6074
- #: photo-gallery.php:1625
6075
  msgid "Page Navigation"
6076
  msgstr ""
6077
 
6078
- #: photo-gallery.php:1635
6079
  msgid "Generating Shortcode"
6080
  msgstr ""
6081
 
6082
- #: photo-gallery.php:1640
6083
- #, fuzzy
6084
  #| msgid "Hide Comments"
6085
  msgid "Editing Comments"
6086
- msgstr "Hide Comments"
6087
 
6088
- #: photo-gallery.php:1645
6089
  msgid "Editing Ratings"
6090
  msgstr ""
6091
 
6092
- #: photo-gallery.php:1650
6093
  msgid "Publishing the Created Photo Gallery"
6094
  msgstr ""
6095
 
6096
- #: photo-gallery.php:1654
6097
  msgid "General Parameters"
6098
  msgstr ""
6099
 
6100
- #: photo-gallery.php:1658
6101
  msgid "Lightbox Parameters"
6102
  msgstr ""
6103
 
6104
- #: photo-gallery.php:1668
6105
  msgid "Publishing Photo Gallery Widgets"
6106
  msgstr ""
6107
 
6108
- #: photo-gallery.php:1672
6109
  msgid "Tag Cloud"
6110
  msgstr ""
6111
 
6112
- #: photo-gallery.php:1684
6113
  msgid "Photo Gallery Widget"
6114
  msgstr ""
6115
 
6116
- #: photo-gallery.php:1755
6117
  msgid "Albums"
6118
  msgstr ""
6119
 
6120
- #: photo-gallery.php:1770
6121
- #, fuzzy
6122
  #| msgid "Gallery is empty."
6123
  msgid "Gallery tags"
6124
- msgstr "Gallery is empty."
6125
 
6126
- #: photo-gallery.php:1819
6127
  msgid "Photo gallery plugin autoupdate interval."
6128
- msgstr "Photo gallery plugin autoupdate interval."
6129
 
6130
- #: photo-gallery.php:1862
6131
  #, php-format
6132
  msgid "Please update the %s add-on to start using."
6133
  msgstr ""
6134
 
6135
- #: photo-gallery.php:1863
6136
  #, php-format
6137
  msgid "Please update the %s add-ons to start using."
6138
  msgstr ""
6139
 
6140
- #: photo-gallery.php:1906
6141
- #, fuzzy
6142
  #| msgid "Rated."
6143
  msgid "Rate"
6144
- msgstr "Rated."
6145
-
6146
- #: photo-gallery.php:2013
6147
- #, php-format
6148
- msgid ""
6149
- "%s Photo Gallery advises:%s %sCheck your website’s performance, optimize "
6150
- "images and improve the speed in just minutes.%s"
6151
  msgstr ""
6152
 
6153
- #: wd/includes/deactivate.php:37
6154
  msgid "Technical problems / hard to use"
6155
  msgstr ""
6156
 
6157
- #: wd/includes/deactivate.php:41
6158
  msgid "Free version is limited"
6159
  msgstr ""
6160
 
6161
- #: wd/includes/deactivate.php:45
6162
  msgid "Upgrading to paid version"
6163
  msgstr ""
6164
 
6165
- #: wd/includes/deactivate.php:49
6166
  msgid "Temporary deactivation"
6167
  msgstr ""
6168
 
6169
- #: wd/includes/notices.php:211
6170
  msgid "Leave A Review?"
6171
  msgstr ""
6172
 
6173
- #: wd/includes/notices.php:212
6174
  #, php-format
6175
  msgid ""
6176
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
6177
  "review on WordPress.org?"
6178
  msgstr ""
6179
 
6180
- #: wd/includes/notices.php:213
6181
  msgid "Sure! I'd love to!"
6182
  msgstr ""
6183
 
6184
- #: wd/includes/notices.php:214
6185
  msgid "I've already left a review"
6186
  msgstr ""
6187
 
6188
- #: wd/includes/notices.php:215
6189
  msgid "Maybe Later"
6190
  msgstr ""
6191
 
6192
- #: wd/includes/notices.php:216
6193
  msgid "Never show again"
6194
  msgstr ""
6195
 
@@ -6251,10 +6388,9 @@ msgid ""
6251
  msgstr ""
6252
 
6253
  #: wd/templates/display_overview.php:43
6254
- #, fuzzy
6255
  #| msgid "Back"
6256
  msgid "Backup"
6257
- msgstr "Back"
6258
 
6259
  #: wd/templates/display_overview.php:44
6260
  msgid ""
@@ -6307,10 +6443,9 @@ msgid "Get free for 14 days"
6307
  msgstr ""
6308
 
6309
  #: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
6310
- #, fuzzy
6311
  #| msgid "Load More..."
6312
  msgid "Learn More"
6313
- msgstr "Load More..."
6314
 
6315
  #: wd/templates/display_overview.php:81
6316
  msgid " features you get!"
@@ -6378,9 +6513,15 @@ msgstr ""
6378
  msgid "Terms of Use"
6379
  msgstr ""
6380
 
6381
- #: wd/wd.php:72 wd/wd.php:76
6382
- msgid "Premium"
6383
- msgstr ""
 
 
 
 
 
 
6384
 
6385
  #, fuzzy
6386
  #~| msgid "There are no images in this gallery."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2022-03-17 10:42+0400\n"
5
+ "PO-Revision-Date: 2022-03-17 10:45+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_GB\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 3.0\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: addons/addons.php:6
 
 
 
 
 
 
 
 
 
 
19
  msgid "NextGen Gallery Import to Photo Gallery"
20
  msgstr ""
21
 
22
+ #: addons/addons.php:8
23
  msgid ""
24
  "This addon integrates NextGen with Photo Gallery allowing to import images "
25
  "and related data from NextGen to use with Photo Gallery"
26
  msgstr ""
27
 
28
+ #: addons/addons.php:13
29
  msgid "Photo Gallery Export / Import"
30
  msgstr ""
31
 
32
+ #: addons/addons.php:15
33
  msgid ""
34
  "Photo Gallery Export/Import helps to move created galleries and gallery "
35
  "groups from one site to another. This way you can save the gallery/album "
36
  "options and manual modifications."
37
  msgstr ""
38
 
39
+ #: addons/addons.php:20
40
  msgid "Photo Gallery Google Photos Integration"
41
  msgstr ""
42
 
43
+ #: addons/addons.php:22
44
  msgid "Link and display your Google Photos albums in one click."
45
  msgstr ""
46
 
47
+ #: addons/addons.php:32
48
  msgid "Photo Gallery Add-ons"
49
  msgstr ""
50
 
51
+ #: addons/addons.php:65
52
  msgid "GET THIS ADD ON"
53
  msgstr ""
54
 
55
+ #: admin/controllers/AddTags.php:53 admin/controllers/Themes.php:279
56
+ #: admin/views/Galleries.php:844 photo-gallery.php:488
57
  msgid "Tags"
58
  msgstr ""
59
 
60
  #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
61
+ #: admin/controllers/Galleries.php:34 admin/views/Albums.php:113
62
+ #: admin/views/Albums.php:199 admin/views/Comments.php:109
63
+ #: admin/views/Galleries.php:121 admin/views/Galleries.php:247
64
+ #: admin/views/Galleries.php:793 framework/WDWLibrary.php:2699
65
  msgid "Publish"
66
  msgstr ""
67
 
68
  #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
69
+ #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2700
70
  msgid "published"
71
  msgstr ""
72
 
73
  #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
74
+ #: admin/controllers/Galleries.php:38 admin/views/Albums.php:113
75
+ #: admin/views/Comments.php:109 admin/views/Galleries.php:121
76
+ #: admin/views/Galleries.php:793 framework/WDWLibrary.php:2704
77
  msgid "Unpublish"
78
  msgstr ""
79
 
80
  #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
81
+ #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2705
82
  msgid "unpublished"
83
  msgstr ""
84
 
85
+ #: admin/controllers/Albums.php:46 admin/controllers/Galleries.php:42
86
+ #: admin/controllers/Themes.php:39 admin/views/Albums.php:114
87
+ #: admin/views/Galleries.php:123 admin/views/Themes.php:229
88
  msgid "Duplicate"
89
  msgstr ""
90
 
93
  msgstr ""
94
 
95
  #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
96
+ #: admin/controllers/Galleries.php:46 admin/controllers/Ratings.php:41
97
+ #: admin/controllers/Themes.php:43 admin/views/Albums.php:115
98
+ #: admin/views/Comments.php:112 admin/views/Galleries.php:122
99
+ #: admin/views/Galleries.php:800 admin/views/Ratings.php:84
100
+ #: admin/views/Themes.php:230 framework/WDWLibrary.php:2709
 
 
101
  msgid "Delete"
102
+ msgstr ""
103
 
104
  #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
105
+ #: admin/controllers/Galleries.php:47 admin/controllers/Ratings.php:42
106
+ #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2710
107
  msgid "deleted"
108
  msgstr ""
109
 
110
+ #: admin/controllers/Albums.php:95 photo-gallery.php:485
111
  msgid "Gallery Groups"
112
  msgstr ""
113
 
115
  msgid "Galleries / Gallery groups"
116
  msgstr ""
117
 
118
+ #: admin/controllers/Comments.php:91 photo-gallery.php:496
 
 
119
  msgid "Comments"
120
+ msgstr ""
121
 
122
  #: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
123
  msgid "Filter by gallery"
127
  msgid "Filter by image"
128
  msgstr ""
129
 
130
+ #: admin/controllers/Galleries.php:43 admin/controllers/Themes.php:40
131
+ msgid "duplicated"
132
+ msgstr ""
133
+
134
+ #: admin/controllers/Galleries.php:97 photo-gallery.php:1769
135
  msgid "Galleries"
136
+ msgstr ""
137
 
138
+ #: admin/controllers/Galleries.php:377
139
  msgid "Mixed"
140
  msgstr ""
141
 
142
+ #: admin/controllers/Galleries.php:377
143
  msgid "Instagram only"
144
  msgstr ""
145
 
146
+ #: admin/controllers/Galleries.php:379 admin/views/Options.php:756
 
 
147
  msgid "Facebook"
148
+ msgstr ""
149
 
150
+ #: admin/controllers/Options.php:51 photo-gallery.php:490
151
+ msgid "Global Settings"
152
  msgstr ""
153
 
154
+ #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:40
155
+ #: admin/views/Galleries.php:193 admin/views/Options.php:442
156
+ #: admin/views/Shortcode.php:75 photo-gallery.php:1614
157
  msgid "Thumbnails"
158
  msgstr ""
159
 
160
+ #: admin/controllers/Options.php:57 admin/controllers/Options.php:66
161
  #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
162
+ #: admin/controllers/Themes.php:268 admin/views/Albums.php:182
163
+ #: admin/views/Galleries.php:197 admin/views/Options.php:452
164
+ #: admin/views/Options.php:599 admin/views/Options.php:2937
165
+ #: admin/views/Options.php:3471 admin/views/Shortcode.php:85
166
+ #: admin/views/Shortcode.php:196 admin/views/Widget.php:138
167
+ #: photo-gallery.php:1618
168
  msgid "Masonry"
169
  msgstr ""
170
 
171
+ #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:42
172
+ #: admin/controllers/Themes.php:269 admin/views/Galleries.php:201
173
+ #: admin/views/Options.php:465 admin/views/Options.php:2938
174
+ #: admin/views/Options.php:3472 admin/views/Shortcode.php:97
175
+ #: photo-gallery.php:1622
176
  msgid "Mosaic"
177
  msgstr ""
178
 
179
+ #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:43
180
+ #: admin/controllers/Themes.php:270 admin/views/Galleries.php:205
181
+ #: admin/views/Options.php:478 admin/views/Options.php:2939
182
+ #: admin/views/Options.php:3473 admin/views/Shortcode.php:109
183
+ #: photo-gallery.php:1588 photo-gallery.php:1626
184
  msgid "Slideshow"
185
  msgstr ""
186
 
187
+ #: admin/controllers/Options.php:60 admin/controllers/Shortcode.php:44
188
+ #: admin/views/Galleries.php:209 admin/views/Options.php:488
189
+ #: admin/views/Options.php:2940 admin/views/Options.php:3474
190
+ #: admin/views/Shortcode.php:118 photo-gallery.php:1630
191
  msgid "Image Browser"
192
  msgstr ""
193
 
194
+ #: admin/controllers/Options.php:61 admin/controllers/Shortcode.php:45
195
+ #: admin/views/Galleries.php:213 admin/views/Options.php:498
196
+ #: admin/views/Options.php:2941 admin/views/Options.php:3475
197
+ #: admin/views/Shortcode.php:127 photo-gallery.php:1646
198
  msgid "Blog Style"
199
  msgstr ""
200
 
201
+ #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:46
202
+ #: admin/controllers/Themes.php:278 admin/views/Galleries.php:217
203
+ #: admin/views/Options.php:511 admin/views/Options.php:2942
204
+ #: admin/views/Options.php:3476 admin/views/Shortcode.php:139
205
+ #: photo-gallery.php:1658
206
  msgid "Carousel"
207
  msgstr ""
208
 
209
+ #: admin/controllers/Options.php:65 admin/controllers/Shortcode.php:49
210
+ #: admin/views/Albums.php:178 admin/views/Options.php:588
211
+ #: admin/views/Shortcode.php:187
212
  msgid "Compact"
213
  msgstr ""
214
 
215
+ #: admin/controllers/Options.php:67 admin/controllers/Shortcode.php:51
216
+ #: admin/views/Albums.php:186 admin/views/Options.php:612
217
+ #: admin/views/Shortcode.php:208
218
  msgid "Extended"
219
  msgstr ""
220
 
221
+ #: admin/controllers/Options.php:132
222
  msgid "Default values restored. Changes must be saved."
223
  msgstr ""
224
 
225
+ #: admin/controllers/Options.php:164
226
  msgid "Uploads directory doesn't exist. Old value is restored."
227
  msgstr ""
228
 
229
+ #: admin/controllers/Options.php:167
230
  msgid ""
231
  "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
232
  "value is restored."
233
  msgstr ""
234
 
235
+ #: admin/controllers/Options.php:197
236
  msgid "All thumbnails are successfully recreated."
237
  msgstr ""
238
 
239
+ #: admin/controllers/Options.php:210
240
  msgid "Item Succesfully Saved."
241
  msgstr ""
242
 
243
+ #: admin/controllers/Options.php:251 framework/WDWLibrary.php:236
244
  msgid ""
245
  "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
246
  msgstr ""
247
 
248
+ #: admin/controllers/Options.php:259 framework/WDWLibrary.php:231
249
  msgid "Watermark could not be set. The image URL is incorrect."
250
  msgstr ""
251
 
252
+ #: admin/controllers/Options.php:263
253
  msgid "All images are successfully watermarked."
254
  msgstr ""
255
 
256
+ #: admin/controllers/Ratings.php:86 photo-gallery.php:499
257
  msgid "Ratings"
258
  msgstr ""
259
 
260
+ #: admin/controllers/Themes.php:88 photo-gallery.php:492
 
 
 
 
261
  msgid "Themes"
262
  msgstr ""
263
 
264
+ #: admin/controllers/Themes.php:267 admin/views/Options.php:2936
265
+ #: admin/views/Options.php:3470 admin/views/Widget.php:137
266
  msgid "Thumbnail"
267
  msgstr ""
268
 
269
+ #: admin/controllers/Themes.php:271
270
  msgid "Image browser"
271
  msgstr ""
272
 
273
+ #: admin/controllers/Themes.php:272
274
  msgid "Compact album"
275
  msgstr ""
276
 
277
+ #: admin/controllers/Themes.php:273
278
  msgid "Masonry album"
279
  msgstr ""
280
 
281
+ #: admin/controllers/Themes.php:274
282
  msgid "Extended album"
283
  msgstr ""
284
 
285
+ #: admin/controllers/Themes.php:275
286
  msgid "Blog style"
287
  msgstr ""
288
 
289
+ #: admin/controllers/Themes.php:276 admin/views/Options.php:110
290
+ #: admin/views/WidgetTags.php:96 photo-gallery.php:1580 photo-gallery.php:1650
291
  msgid "Lightbox"
292
  msgstr ""
293
 
294
+ #: admin/controllers/Themes.php:277
295
  msgid "Navigation"
296
  msgstr ""
297
 
298
+ #: admin/controllers/Themes.php:283 admin/controllers/Themes.php:322
299
+ #: admin/controllers/Themes.php:329 admin/controllers/WidgetSlideshow.php:44
300
+ #: admin/views/Options.php:884 admin/views/Options.php:1042
301
+ #: admin/views/Options.php:1289 admin/views/Options.php:1337
302
+ #: admin/views/Options.php:1563 admin/views/Options.php:1797
303
+ #: admin/views/Options.php:2091 admin/views/Options.php:2396
304
+ #: admin/views/Shortcode.php:381
305
  msgid "None"
306
  msgstr ""
307
 
308
+ #: admin/controllers/Themes.php:284
309
  msgid "Solid"
310
  msgstr ""
311
 
312
+ #: admin/controllers/Themes.php:285
313
  msgid "Dotted"
314
  msgstr ""
315
 
316
+ #: admin/controllers/Themes.php:286
317
  msgid "Dashed"
318
  msgstr ""
319
 
320
+ #: admin/controllers/Themes.php:287 admin/controllers/Themes.php:339
321
  msgid "Double"
322
  msgstr ""
323
 
324
+ #: admin/controllers/Themes.php:288
325
  msgid "Groove"
326
  msgstr ""
327
 
328
+ #: admin/controllers/Themes.php:289
329
  msgid "Ridge"
330
  msgstr ""
331
 
332
+ #: admin/controllers/Themes.php:290
333
  msgid "Inset"
334
  msgstr ""
335
 
336
+ #: admin/controllers/Themes.php:291
337
  msgid "Outset"
338
  msgstr ""
339
 
340
+ #: admin/controllers/Themes.php:309 admin/views/Themes.php:1360
341
+ #: admin/views/Themes.php:3704 admin/views/Themes.php:4132
342
  msgid "Left"
343
  msgstr ""
344
 
345
+ #: admin/controllers/Themes.php:310
346
  msgid "Center"
347
  msgstr ""
348
 
349
+ #: admin/controllers/Themes.php:311 admin/views/Themes.php:1358
350
+ #: admin/views/Themes.php:3702 admin/views/Themes.php:4134
351
  msgid "Right"
352
  msgstr ""
353
 
354
+ #: admin/controllers/Themes.php:315
355
  msgid "Lighter"
356
  msgstr ""
357
 
358
+ #: admin/controllers/Themes.php:316
359
  msgid "Normal"
360
  msgstr ""
361
 
362
+ #: admin/controllers/Themes.php:317
363
  msgid "Bold"
364
  msgstr ""
365
 
366
+ #: admin/controllers/Themes.php:323 admin/controllers/Themes.php:330
367
  msgid "Rotate"
368
  msgstr ""
369
 
370
+ #: admin/controllers/Themes.php:324 admin/controllers/Themes.php:331
371
  msgid "Scale"
372
  msgstr ""
373
 
374
+ #: admin/controllers/Themes.php:325 admin/controllers/Themes.php:333
375
  msgid "Skew"
376
  msgstr ""
377
 
378
+ #: admin/controllers/Themes.php:332
379
  msgid "Zoom"
380
  msgstr ""
381
 
382
+ #: admin/controllers/Themes.php:337
383
  msgid "Angle"
384
  msgstr ""
385
 
386
+ #: admin/controllers/Themes.php:338
387
  msgid "Chevron"
388
  msgstr ""
389
 
390
+ #: admin/controllers/Themes.php:343
391
  msgid "Star"
392
  msgstr ""
393
 
394
+ #: admin/controllers/Themes.php:344
395
  msgid "Bell"
396
  msgstr ""
397
 
398
+ #: admin/controllers/Themes.php:345
399
  msgid "Circle"
400
  msgstr ""
401
 
402
+ #: admin/controllers/Themes.php:346
403
  msgid "Flag"
404
  msgstr ""
405
 
406
+ #: admin/controllers/Themes.php:347
407
  msgid "Heart"
408
  msgstr ""
409
 
410
+ #: admin/controllers/Themes.php:348
411
  msgid "Square"
412
  msgstr ""
413
 
414
  #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
415
+ #: admin/views/Options.php:412
416
  #, php-format
417
  msgid "Uninstall %s"
418
  msgstr ""
425
  msgid "Add Photo Gallery slideshow to Your widget area."
426
  msgstr ""
427
 
428
+ #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1290
429
  msgid "Cube Horizontal"
430
  msgstr ""
431
 
432
+ #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1291
433
  msgid "Cube Vertical"
434
  msgstr ""
435
 
436
+ #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1292
437
  msgid "Fade"
438
  msgstr ""
439
 
440
+ #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1293
441
  msgid "Slice Horizontal"
442
  msgstr ""
443
 
444
+ #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1294
445
  msgid "Slice Vertical"
446
  msgstr ""
447
 
448
+ #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1295
449
  msgid "Slide Horizontal"
450
  msgstr ""
451
 
452
+ #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1296
453
  msgid "Slide Vertical"
454
  msgstr ""
455
 
456
+ #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1297
457
  msgid "Scale Out"
458
  msgstr ""
459
 
460
+ #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1298
461
  msgid "Scale In"
462
  msgstr ""
463
 
464
+ #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1299
465
  msgid "Block Scale"
466
  msgstr ""
467
 
468
+ #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1300
469
  msgid "Kaleidoscope"
470
  msgstr ""
471
 
472
+ #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1301
473
  msgid "Fan"
474
  msgstr ""
475
 
476
+ #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1302
477
  msgid "Blind Horizontal"
478
  msgstr ""
479
 
480
+ #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1303
481
  msgid "Blind Vertical"
482
  msgstr ""
483
 
484
+ #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1304
485
+ #: admin/views/Options.php:1378 admin/views/Options.php:1604
486
+ #: admin/views/Options.php:1838 admin/views/Options.php:2033
487
+ #: admin/views/Options.php:2282 admin/views/Options.php:2439
488
+ #: admin/views/Options.php:2614 admin/views/Options.php:2821
489
+ #: admin/views/Options.php:2841 admin/views/Options.php:3117
490
+ #: admin/views/Options.php:3137 admin/views/Options.php:3356
491
+ #: admin/views/Options.php:3376 admin/views/Widget.php:158
492
+ #: frontend/views/view.php:528
493
  msgid "Random"
494
+ msgstr ""
495
 
496
  #: admin/controllers/WidgetTags.php:14
497
  msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
498
  msgstr ""
499
 
500
+ #: admin/controllers/elementorWidget.php:36 admin/views/Widget.php:97
501
+ #: photo-gallery.php:111
502
+ msgid "Photo Gallery"
 
503
  msgstr ""
504
 
505
+ #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:92
506
+ #: photo-gallery.php:438
507
  msgid "General"
508
  msgstr ""
509
 
510
+ #: admin/models/Comments.php:73 admin/models/Ratings.php:104
511
+ #: framework/WDWLibrary.php:3089
512
  msgid "All galleries"
513
  msgstr ""
514
 
515
+ #: admin/models/Comments.php:92 admin/models/Ratings.php:133
516
+ #: admin/views/Widget.php:125 framework/WDWLibrary.php:3070
517
  msgid "All images"
518
  msgstr ""
519
 
520
+ #: admin/models/Galleries.php:1563 admin/views/Galleries.php:822
521
  msgid ""
522
  "Selected pricelist item longest dimension greater than some original images "
523
  "dimensions."
524
  msgstr ""
525
 
526
+ #: admin/views/AddTags.php:78 admin/views/Albums.php:59
527
+ #: admin/views/Comments.php:65 admin/views/Themes.php:201
528
+ #: photo-gallery.php:1463
529
  msgid "Select all"
530
  msgstr ""
531
 
532
+ #: admin/views/AddTags.php:81 admin/views/AddTags.php:99
533
  #: admin/views/Comments.php:69 admin/views/Comments.php:90
534
+ #: filemanager/view.php:138 frontend/views/BWGViewGalleryBox.php:1020
535
+ #: frontend/views/BWGViewGalleryBox.php:1137
536
+ #: frontend/views/BWGViewGalleryBox.php:1251
537
  msgid "Name"
538
+ msgstr ""
539
 
540
+ #: admin/views/AddTags.php:120
 
 
541
  msgid "Remove from image"
542
+ msgstr ""
543
 
544
+ #: admin/views/AddTags.php:121
545
  msgid "Add to image"
546
  msgstr ""
547
 
548
+ #: admin/views/AdminView.php:77
549
+ msgid "Add new"
550
  msgstr ""
551
 
552
+ #: admin/views/AdminView.php:218 framework/WDWLibrary.php:381
553
+ #: framework/WDWLibrary.php:533 photo-gallery.php:1439
554
  msgid "Search"
555
+ msgstr ""
556
 
557
+ #: admin/views/AdminView.php:279
 
558
  #| msgid "First"
559
  msgid "First page"
560
+ msgstr ""
561
 
562
+ #: admin/views/AdminView.php:280
 
563
  #| msgid "Previous"
564
  msgid "Previous page"
565
+ msgstr ""
566
 
567
+ #: admin/views/AdminView.php:285
568
  msgid "Current Page"
569
  msgstr ""
570
 
571
+ #: admin/views/AdminView.php:288 framework/WDWLibrary.php:487
572
+ #: framework/WDWLibrary.php:634 frontend/views/view.php:852
573
  msgid "of"
574
+ msgstr ""
575
 
576
+ #: admin/views/AdminView.php:301
 
 
577
  msgid "Next page"
578
+ msgstr ""
579
 
580
+ #: admin/views/AdminView.php:302
 
 
581
  msgid "Last page"
582
+ msgstr ""
583
 
584
+ #: admin/views/AdminView.php:337 filemanager/view.php:208
585
  msgid "Select All"
586
  msgstr ""
587
 
588
+ #: admin/views/AdminView.php:341
589
  msgid "Select bulk action"
590
  msgstr ""
591
 
592
+ #: admin/views/AdminView.php:343
593
  msgid "Bulk Actions"
594
  msgstr ""
595
 
596
+ #: admin/views/AdminView.php:348 admin/views/Galleries.php:457
597
+ #: admin/views/Galleries.php:788 admin/views/Galleries.php:789
598
+ #: admin/views/Galleries.php:790 admin/views/Options.php:195
599
+ #: admin/views/Options.php:1169 admin/views/Options.php:1172
600
  #: filemanager/view.php:66
601
  msgid "This option is disabled in demo."
602
  msgstr ""
603
 
604
+ #: admin/views/AdminView.php:348
605
  msgid "Apply"
606
  msgstr ""
607
 
608
+ #: admin/views/Albums.php:44
609
+ msgid "Add new group"
610
+ msgstr ""
611
+
612
+ #: admin/views/Albums.php:62 admin/views/Albums.php:99
613
+ #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:103
614
+ #: admin/views/Galleries.php:61 admin/views/Galleries.php:64
615
+ #: admin/views/Galleries.php:107 admin/views/Options.php:1374
616
+ #: admin/views/Options.php:1600 admin/views/Options.php:1834
617
+ #: admin/views/Options.php:2029 admin/views/Options.php:2278
618
+ #: admin/views/Options.php:2435 admin/views/Options.php:2610
619
+ #: admin/views/Options.php:2819 admin/views/Options.php:2837
620
+ #: admin/views/Options.php:3115 admin/views/Options.php:3133
621
+ #: admin/views/Options.php:3354 admin/views/Options.php:3372
622
+ #: admin/views/Themes.php:204 admin/views/Themes.php:223
623
+ #: frontend/views/view.php:516
624
  msgid "Title"
625
  msgstr ""
626
 
627
+ #: admin/views/Albums.php:63 admin/views/Albums.php:122
628
+ #: admin/views/Albums.php:283 admin/views/Galleries.php:66
629
+ #: admin/views/Galleries.php:131 admin/views/Galleries.php:337
630
  msgid "Author"
631
  msgstr ""
632
 
633
+ #: admin/views/Albums.php:108 admin/views/Albums.php:386
634
+ #: admin/views/Albumsgalleries.php:112 admin/views/Comments.php:102
635
+ #: admin/views/Galleries.php:116 admin/views/Galleries.php:781
636
  msgid "Unpublished"
637
  msgstr ""
638
 
639
+ #: admin/views/Albums.php:112 admin/views/Editimage.php:326
640
+ #: admin/views/Galleries.php:120 admin/views/Galleries.php:788
641
+ #: admin/views/Themes.php:228
642
  msgid "Edit"
643
  msgstr ""
644
 
645
+ #: admin/views/Albums.php:115 admin/views/Comments.php:112
646
+ #: admin/views/Galleries.php:122 admin/views/Galleries.php:794
647
+ #: admin/views/Ratings.php:84 admin/views/Themes.php:230
648
  msgid "Do you want to delete selected item?"
649
  msgstr ""
650
 
651
+ #: admin/views/Albums.php:116 admin/views/Albums.php:204
652
+ #: admin/views/Galleries.php:124 admin/views/Galleries.php:252
 
653
  #| msgid "Previous"
654
  msgid "Preview"
655
+ msgstr ""
656
 
657
+ #: admin/views/Albums.php:119 admin/views/Albumsgalleries.php:116
658
+ #: admin/views/Comments.php:115 admin/views/Galleries.php:127
659
+ #: admin/views/Galleries.php:804 admin/views/Ratings.php:87
660
+ #: admin/views/Themes.php:233
 
661
  #| msgid "Show comments"
662
  msgid "Show more details"
663
+ msgstr ""
664
+
665
+ #: admin/views/Albums.php:182 admin/views/Galleries.php:197
666
+ #: admin/views/Galleries.php:201 admin/views/Galleries.php:213
667
+ #: admin/views/Galleries.php:217 wd/wd.php:53 wd/wd.php:57
668
+ msgid "Premium"
669
+ msgstr ""
670
 
671
+ #: admin/views/Albums.php:194
672
  msgid "Gallery Group Title"
673
  msgstr ""
674
 
675
+ #: admin/views/Albums.php:199 admin/views/Galleries.php:247
676
+ #: admin/views/Shortcode.php:662 admin/views/Shortcode.php:2251
677
+ #: admin/views/Themes.php:351
678
  msgid "Update"
679
  msgstr ""
680
 
681
+ #: admin/views/Albums.php:206
682
+ #| msgid "Gallery is empty."
683
+ msgid "Preview gallery group in:"
684
+ msgstr ""
685
+
686
+ #: admin/views/Albums.php:236 admin/views/Albums.php:272
687
+ #: admin/views/Galleries.php:285 admin/views/Galleries.php:326
688
+ #: admin/views/Options.php:686 admin/views/Options.php:771
689
+ #: admin/views/Options.php:872 admin/views/Shortcode.php:341
690
+ #: admin/views/Shortcode.php:356
691
  msgid "Toggle panel:"
692
  msgstr ""
693
 
694
+ #: admin/views/Albums.php:240 admin/views/Galleries.php:289
695
  msgid "Basic"
696
  msgstr ""
697
 
698
+ #: admin/views/Albums.php:245 admin/views/Galleries.php:294
699
  msgid "Preview image"
700
  msgstr ""
701
 
702
+ #: admin/views/Albums.php:247 admin/views/Galleries.php:298
703
  msgid "Add Preview Image"
704
  msgstr ""
705
 
706
+ #: admin/views/Albums.php:248 admin/views/Albums.php:342
707
+ #: admin/views/Galleries.php:301 filemanager/view.php:216
 
708
  msgid "Add"
709
  msgstr ""
710
 
711
+ #: admin/views/Albums.php:253
712
  msgid ""
713
  "Add a preview image, which will be displayed as the cover image of the "
714
  "gallery group when it is published in a parent gallery group."
715
  msgstr ""
716
 
717
+ #: admin/views/Albums.php:257 admin/views/Galleries.php:311
718
  msgid "Published"
719
  msgstr ""
720
 
721
+ #: admin/views/Albums.php:259 admin/views/Galleries.php:313
722
+ #: admin/views/Options.php:172 admin/views/Options.php:213
723
+ #: admin/views/Options.php:223 admin/views/Options.php:233
724
+ #: admin/views/Options.php:252 admin/views/Options.php:262
725
+ #: admin/views/Options.php:272 admin/views/Options.php:282
726
+ #: admin/views/Options.php:292 admin/views/Options.php:304
727
+ #: admin/views/Options.php:315 admin/views/Options.php:325
728
+ #: admin/views/Options.php:335 admin/views/Options.php:345
729
+ #: admin/views/Options.php:354 admin/views/Options.php:364
730
+ #: admin/views/Options.php:374 admin/views/Options.php:393
731
+ #: admin/views/Options.php:401 admin/views/Options.php:803
732
+ #: admin/views/Options.php:814 admin/views/Options.php:825
733
+ #: admin/views/Options.php:836 admin/views/Options.php:847
734
+ #: admin/views/Options.php:858 admin/views/Options.php:1394
735
+ #: admin/views/Options.php:1420 admin/views/Options.php:1430
736
+ #: admin/views/Options.php:1442 admin/views/Options.php:1452
737
+ #: admin/views/Options.php:1473 admin/views/Options.php:1483
738
+ #: admin/views/Options.php:1493 admin/views/Options.php:1620
739
+ #: admin/views/Options.php:1646 admin/views/Options.php:1656
740
+ #: admin/views/Options.php:1668 admin/views/Options.php:1678
741
+ #: admin/views/Options.php:1699 admin/views/Options.php:1710
742
+ #: admin/views/Options.php:1720 admin/views/Options.php:1767
743
+ #: admin/views/Options.php:1854 admin/views/Options.php:1880
744
+ #: admin/views/Options.php:1890 admin/views/Options.php:1902
745
+ #: admin/views/Options.php:1912 admin/views/Options.php:1932
746
+ #: admin/views/Options.php:1942 admin/views/Options.php:2049
747
+ #: admin/views/Options.php:2059 admin/views/Options.php:2069
748
+ #: admin/views/Options.php:2123 admin/views/Options.php:2160
749
+ #: admin/views/Options.php:2170 admin/views/Options.php:2207
750
+ #: admin/views/Options.php:2226 admin/views/Options.php:2255
751
+ #: admin/views/Options.php:2264 admin/views/Options.php:2298
752
+ #: admin/views/Options.php:2324 admin/views/Options.php:2334
753
+ #: admin/views/Options.php:2346 admin/views/Options.php:2356
754
+ #: admin/views/Options.php:2366 admin/views/Options.php:2455
755
+ #: admin/views/Options.php:2481 admin/views/Options.php:2491
756
+ #: admin/views/Options.php:2503 admin/views/Options.php:2513
757
+ #: admin/views/Options.php:2523 admin/views/Options.php:2534
758
+ #: admin/views/Options.php:2545 admin/views/Options.php:2630
759
+ #: admin/views/Options.php:2651 admin/views/Options.php:2662
760
+ #: admin/views/Options.php:2675 admin/views/Options.php:2686
761
+ #: admin/views/Options.php:2696 admin/views/Options.php:2707
762
+ #: admin/views/Options.php:2718 admin/views/Options.php:2857
763
+ #: admin/views/Options.php:2883 admin/views/Options.php:2893
764
+ #: admin/views/Options.php:2905 admin/views/Options.php:2915
765
+ #: admin/views/Options.php:2963 admin/views/Options.php:2995
766
+ #: admin/views/Options.php:3005 admin/views/Options.php:3153
767
+ #: admin/views/Options.php:3179 admin/views/Options.php:3189
768
+ #: admin/views/Options.php:3201 admin/views/Options.php:3211
769
+ #: admin/views/Options.php:3232 admin/views/Options.php:3392
770
+ #: admin/views/Options.php:3418 admin/views/Options.php:3428
771
+ #: admin/views/Options.php:3440 admin/views/Options.php:3450
772
+ #: admin/views/Options.php:3460 admin/views/Options.php:3497
773
+ #: admin/views/Options.php:3529 admin/views/Options.php:3539
774
+ #: admin/views/Options.php:3593 admin/views/Options.php:3604
775
+ #: admin/views/Options.php:3653 admin/views/Options.php:3672
776
+ #: admin/views/Options.php:3708 admin/views/Options.php:3731
777
+ #: admin/views/Options.php:3743 admin/views/Options.php:3756
778
+ #: admin/views/Options.php:3767 admin/views/Options.php:3779
779
+ #: admin/views/Options.php:3790 admin/views/Options.php:3800
780
+ #: admin/views/Options.php:3810 admin/views/Options.php:3830
781
+ #: admin/views/Options.php:3841 admin/views/Options.php:3852
782
+ #: admin/views/Options.php:3865 admin/views/Options.php:3875
783
+ #: admin/views/Options.php:3885 admin/views/Options.php:3895
784
+ #: admin/views/Options.php:3905 admin/views/Options.php:3926
785
+ #: admin/views/Options.php:3937 admin/views/Options.php:3948
786
+ #: admin/views/Options.php:3959 admin/views/Options.php:3973
787
+ #: admin/views/Themes.php:391 admin/views/Themes.php:468
788
+ #: admin/views/Themes.php:701 admin/views/Themes.php:765
789
+ #: admin/views/Themes.php:976 admin/views/Themes.php:1040
790
+ #: admin/views/Themes.php:1930 admin/views/Themes.php:2008
791
+ #: admin/views/Themes.php:2304 admin/views/Themes.php:2821
792
+ #: admin/views/Themes.php:2885 admin/views/Themes.php:4413
793
+ #: admin/views/Themes.php:4462 admin/views/Uninstall.php:77
794
  #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
795
  #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
796
  #: admin/views/WidgetTags.php:111
797
  msgid "Yes"
798
  msgstr ""
799
 
800
+ #: admin/views/Albums.php:261 admin/views/Galleries.php:315
801
+ #: admin/views/Options.php:173 admin/views/Options.php:214
802
+ #: admin/views/Options.php:224 admin/views/Options.php:234
803
+ #: admin/views/Options.php:253 admin/views/Options.php:263
804
+ #: admin/views/Options.php:273 admin/views/Options.php:283
805
+ #: admin/views/Options.php:293 admin/views/Options.php:305
806
+ #: admin/views/Options.php:316 admin/views/Options.php:326
807
+ #: admin/views/Options.php:336 admin/views/Options.php:346
808
+ #: admin/views/Options.php:355 admin/views/Options.php:365
809
+ #: admin/views/Options.php:375 admin/views/Options.php:394
810
+ #: admin/views/Options.php:402 admin/views/Options.php:804
811
+ #: admin/views/Options.php:815 admin/views/Options.php:826
812
+ #: admin/views/Options.php:837 admin/views/Options.php:848
813
+ #: admin/views/Options.php:859 admin/views/Options.php:1395
814
+ #: admin/views/Options.php:1421 admin/views/Options.php:1431
815
+ #: admin/views/Options.php:1443 admin/views/Options.php:1453
816
+ #: admin/views/Options.php:1474 admin/views/Options.php:1484
817
+ #: admin/views/Options.php:1494 admin/views/Options.php:1621
818
+ #: admin/views/Options.php:1647 admin/views/Options.php:1657
819
+ #: admin/views/Options.php:1669 admin/views/Options.php:1679
820
+ #: admin/views/Options.php:1700 admin/views/Options.php:1711
821
+ #: admin/views/Options.php:1721 admin/views/Options.php:1768
822
+ #: admin/views/Options.php:1855 admin/views/Options.php:1881
823
+ #: admin/views/Options.php:1891 admin/views/Options.php:1903
824
+ #: admin/views/Options.php:1913 admin/views/Options.php:1933
825
+ #: admin/views/Options.php:1943 admin/views/Options.php:2050
826
+ #: admin/views/Options.php:2060 admin/views/Options.php:2070
827
+ #: admin/views/Options.php:2124 admin/views/Options.php:2161
828
+ #: admin/views/Options.php:2171 admin/views/Options.php:2208
829
+ #: admin/views/Options.php:2227 admin/views/Options.php:2256
830
+ #: admin/views/Options.php:2265 admin/views/Options.php:2299
831
+ #: admin/views/Options.php:2325 admin/views/Options.php:2335
832
+ #: admin/views/Options.php:2347 admin/views/Options.php:2357
833
+ #: admin/views/Options.php:2367 admin/views/Options.php:2456
834
+ #: admin/views/Options.php:2482 admin/views/Options.php:2492
835
+ #: admin/views/Options.php:2504 admin/views/Options.php:2514
836
+ #: admin/views/Options.php:2524 admin/views/Options.php:2535
837
+ #: admin/views/Options.php:2546 admin/views/Options.php:2631
838
+ #: admin/views/Options.php:2652 admin/views/Options.php:2663
839
+ #: admin/views/Options.php:2676 admin/views/Options.php:2687
840
+ #: admin/views/Options.php:2697 admin/views/Options.php:2708
841
+ #: admin/views/Options.php:2719 admin/views/Options.php:2782
842
+ #: admin/views/Options.php:2858 admin/views/Options.php:2884
843
+ #: admin/views/Options.php:2894 admin/views/Options.php:2906
844
+ #: admin/views/Options.php:2916 admin/views/Options.php:2964
845
+ #: admin/views/Options.php:2996 admin/views/Options.php:3006
846
+ #: admin/views/Options.php:3078 admin/views/Options.php:3154
847
+ #: admin/views/Options.php:3180 admin/views/Options.php:3190
848
+ #: admin/views/Options.php:3202 admin/views/Options.php:3212
849
+ #: admin/views/Options.php:3233 admin/views/Options.php:3317
850
+ #: admin/views/Options.php:3393 admin/views/Options.php:3419
851
+ #: admin/views/Options.php:3429 admin/views/Options.php:3441
852
+ #: admin/views/Options.php:3451 admin/views/Options.php:3461
853
+ #: admin/views/Options.php:3498 admin/views/Options.php:3530
854
+ #: admin/views/Options.php:3540 admin/views/Options.php:3594
855
+ #: admin/views/Options.php:3605 admin/views/Options.php:3654
856
+ #: admin/views/Options.php:3673 admin/views/Options.php:3722
857
+ #: admin/views/Options.php:3732 admin/views/Options.php:3746
858
+ #: admin/views/Options.php:3757 admin/views/Options.php:3768
859
+ #: admin/views/Options.php:3780 admin/views/Options.php:3791
860
+ #: admin/views/Options.php:3801 admin/views/Options.php:3811
861
+ #: admin/views/Options.php:3831 admin/views/Options.php:3842
862
+ #: admin/views/Options.php:3853 admin/views/Options.php:3866
863
+ #: admin/views/Options.php:3876 admin/views/Options.php:3886
864
+ #: admin/views/Options.php:3896 admin/views/Options.php:3906
865
+ #: admin/views/Options.php:3927 admin/views/Options.php:3938
866
+ #: admin/views/Options.php:3949 admin/views/Options.php:3960
867
+ #: admin/views/Options.php:3974 admin/views/Themes.php:393
868
+ #: admin/views/Themes.php:470 admin/views/Themes.php:703
869
+ #: admin/views/Themes.php:767 admin/views/Themes.php:978
870
+ #: admin/views/Themes.php:1042 admin/views/Themes.php:1932
871
+ #: admin/views/Themes.php:2010 admin/views/Themes.php:2306
872
+ #: admin/views/Themes.php:2823 admin/views/Themes.php:2887
873
+ #: admin/views/Themes.php:4415 admin/views/Themes.php:4464
874
  #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
875
  #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
876
  #: admin/views/WidgetTags.php:112
877
  msgid "No"
878
  msgstr ""
879
 
880
+ #: admin/views/Albums.php:276 admin/views/Galleries.php:330
881
+ #: admin/views/Options.php:122 admin/views/Shortcode.php:374
882
  msgid "Advanced"
883
  msgstr ""
884
 
885
+ #: admin/views/Albums.php:287 admin/views/Galleries.php:341
886
  msgid "Slug"
887
  msgstr ""
888
 
889
+ #: admin/views/Albums.php:292 admin/views/Galleries.php:346
890
+ #: admin/views/Galleries.php:814 frontend/views/BWGViewGalleryBox.php:1152
891
  msgid "Description"
892
  msgstr ""
893
 
894
+ #: admin/views/Albums.php:323
895
  msgid "Galleries and Gallery Groups"
896
  msgstr ""
897
 
898
+ #: admin/views/Albums.php:375 admin/views/Galleries.php:100
899
+ #: admin/views/Galleries.php:753
900
  msgid "Drag to re-order"
901
  msgstr ""
902
 
903
+ #: admin/views/Albums.php:385 admin/views/Options.php:732
904
  msgid "Remove"
905
  msgstr ""
906
 
907
+ #: admin/views/Albumsgalleries.php:80 admin/views/Albumsgalleries.php:119
908
+ #: admin/views/Galleries.php:775
 
 
 
 
 
909
  msgid "Type"
910
  msgstr ""
911
 
912
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:64
913
+ #: admin/views/Shortcode.php:345
 
914
  #| msgid "Gallery is empty."
915
  msgid "Gallery group"
916
+ msgstr ""
917
 
918
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:61
919
+ #: admin/views/Shortcode.php:267 admin/views/Shortcode.php:345
920
+ #: admin/views/Widget.php:119
921
+ msgid "Gallery"
922
+ msgstr ""
923
+
924
+ #: admin/views/Albumsgalleries.php:138
925
  msgid "Add to Gallery Group"
926
  msgstr ""
927
 
928
  #: admin/views/Comments.php:70 admin/views/Comments.php:118
929
+ #: frontend/views/BWGViewGalleryBox.php:1025
930
  msgid "Email"
931
+ msgstr ""
932
 
933
  #: admin/views/Comments.php:71 admin/views/Comments.php:121
934
+ #: frontend/views/BWGViewGalleryBox.php:1029
935
  msgid "Comment"
936
+ msgstr ""
937
 
938
  #: admin/views/Comments.php:72 admin/views/Comments.php:124
939
+ #: admin/views/Galleries.php:772 admin/views/Options.php:1375
940
+ #: admin/views/Options.php:1601 admin/views/Options.php:1835
941
+ #: admin/views/Options.php:2030 admin/views/Options.php:2279
942
+ #: admin/views/Options.php:2436 admin/views/Options.php:2611
943
+ #: admin/views/Options.php:2820 admin/views/Options.php:2838
944
+ #: admin/views/Options.php:3116 admin/views/Options.php:3134
945
+ #: admin/views/Options.php:3355 admin/views/Options.php:3373
946
+ #: admin/views/Ratings.php:60 admin/views/Ratings.php:92
947
+ #: frontend/views/view.php:519
948
  msgid "Date"
949
  msgstr ""
950
 
964
  msgid "Crop"
965
  msgstr ""
966
 
967
+ #: admin/views/Editimage.php:322
968
  msgid "The thumbnail was successfully cropped."
969
  msgstr ""
970
 
971
+ #: admin/views/Editimage.php:810
972
  msgid "Grayscale"
973
  msgstr ""
974
 
975
+ #: admin/views/Editimage.php:814
976
  msgid "Negative"
977
  msgstr ""
978
 
979
+ #: admin/views/Editimage.php:818
980
  msgid "Removal"
981
  msgstr ""
982
 
983
+ #: admin/views/Editimage.php:822
984
  msgid "Sepia"
985
  msgstr ""
986
 
987
+ #: admin/views/Editimage.php:826
988
  msgid "Slate"
989
  msgstr ""
990
 
991
+ #: admin/views/Editimage.php:830
992
  msgid "Saturate"
993
  msgstr ""
994
 
995
+ #: admin/views/Editimage.php:834 admin/views/Galleries.php:790
996
  msgid "Do you want to reset the image?"
997
  msgstr ""
998
 
999
+ #: admin/views/Editimage.php:836
 
1000
  #| msgid "Reset"
1001
  msgid "Reset image"
1002
+ msgstr ""
1003
 
1004
+ #: admin/views/Editimage.php:862
1005
  msgid "Brightness"
1006
  msgstr ""
1007
 
1008
+ #: admin/views/Editimage.php:864 admin/views/Editimage.php:889
1009
  msgid "Press for result"
1010
  msgstr ""
1011
 
1012
+ #: admin/views/Editimage.php:887
1013
  msgid "Contrast"
1014
  msgstr ""
1015
 
1016
+ #: admin/views/Galleries.php:46
1017
+ #| msgid "Gallery is empty."
1018
+ msgid "Add new gallery"
1019
  msgstr ""
1020
 
1021
+ #: admin/views/Galleries.php:65 admin/views/Galleries.php:130
1022
  msgid "Images count"
1023
  msgstr ""
1024
 
1025
+ #: admin/views/Galleries.php:238
 
1026
  #| msgid "Gallery is empty."
1027
  msgid "Gallery title"
1028
+ msgstr ""
1029
+
1030
+ #: admin/views/Galleries.php:254
1031
+ msgid "Preview gallery in:"
1032
+ msgstr ""
1033
 
1034
+ #: admin/views/Galleries.php:308
1035
  msgid ""
1036
  "Add a preview image, which will be displayed as the cover image of the "
1037
  "gallery when it is published in a gallery group."
1038
  msgstr ""
1039
 
1040
+ #: admin/views/Galleries.php:372
1041
  msgid "Gallery content type"
1042
  msgstr ""
1043
 
1044
+ #: admin/views/Galleries.php:386
1045
  msgid ""
1046
  "Select the type of gallery content. Mixed galleries can include all "
1047
  "supported items. Alternatively, you can showcase images from one specific "
1048
  "source only."
1049
  msgstr ""
1050
 
1051
+ #: admin/views/Galleries.php:388
1052
  msgid ""
1053
  "Gallery type cannot be changed, as it is not empty. If you would like to "
1054
  "show images from another source, please create a new gallery."
1055
  msgstr ""
1056
 
1057
+ #: admin/views/Galleries.php:394
1058
  msgid "Number of Instagram recent posts to add to gallery"
1059
  msgstr ""
1060
 
1061
+ #: admin/views/Galleries.php:398
1062
  msgid "Instagram embed type"
1063
  msgstr ""
1064
 
1065
+ #: admin/views/Galleries.php:400 admin/views/Galleries.php:551
1066
  msgid "Content"
1067
  msgstr ""
1068
 
1069
+ #: admin/views/Galleries.php:402 admin/views/Galleries.php:553
1070
  msgid "Whole post"
1071
  msgstr ""
1072
 
1073
+ #: admin/views/Galleries.php:405
 
1074
  #| msgid "Photo gallery plugin autoupdate interval."
1075
  msgid "Gallery autoupdate option"
1076
+ msgstr ""
1077
 
1078
+ #: admin/views/Galleries.php:407
1079
  msgid "No update"
1080
  msgstr ""
1081
 
1082
+ #: admin/views/Galleries.php:409
1083
  msgid "Add new media, keep old ones published."
1084
  msgstr ""
1085
 
1086
+ #: admin/views/Galleries.php:411
1087
  msgid "Add new media, unpublish old ones."
1088
  msgstr ""
1089
 
1090
+ #: admin/views/Galleries.php:414
1091
  msgid "Add Instagram Gallery"
1092
  msgstr ""
1093
 
1094
+ #: admin/views/Galleries.php:423
1095
  msgid "Photo Gallery Facebook Integration"
1096
  msgstr ""
1097
 
1098
+ #: admin/views/Galleries.php:424
1099
  #, php-format
1100
  msgid "Please install %s add-on to use this feature."
1101
  msgstr ""
1102
 
1103
+ #: admin/views/Galleries.php:453 admin/views/Galleries.php:455
1104
  msgid "Add Images"
1105
  msgstr ""
1106
 
1107
+ #: admin/views/Galleries.php:457
1108
  msgid "Import from Media Library"
1109
  msgstr ""
1110
 
1111
+ #: admin/views/Galleries.php:464
1112
  msgid "Embed Media"
1113
  msgstr ""
1114
 
1115
+ #: admin/views/Galleries.php:465
1116
  msgid "Social Bulk Embed"
1117
  msgstr ""
1118
 
1119
+ #: admin/views/Galleries.php:465 photo-gallery.php:127
1120
+ msgid "This option is available in Premium version"
1121
  msgstr ""
1122
 
1123
+ #: admin/views/Galleries.php:468
1124
  msgid "Optimize Images"
1125
  msgstr ""
1126
 
1127
+ #: admin/views/Galleries.php:485
1128
  msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1129
  msgstr ""
1130
 
1131
+ #: admin/views/Galleries.php:486 admin/views/Galleries.php:521
1132
  msgid "Add to gallery"
1133
  msgstr ""
1134
 
1135
+ #: admin/views/Galleries.php:487 admin/views/Galleries.php:520
1136
+ #: admin/views/Galleries.php:577 admin/views/Galleries.php:598
1137
+ #: admin/views/Galleries.php:617 admin/views/Galleries.php:637
1138
+ #: filemanager/view.php:221 filemanager/view.php:222 photo-gallery.php:1462
1139
  msgid "Cancel"
1140
  msgstr ""
1141
 
1142
+ #: admin/views/Galleries.php:492
1143
  msgid "<b>Youtube</b> URL example:"
1144
  msgstr ""
1145
 
1146
+ #: admin/views/Galleries.php:496
1147
  msgid "<b>Vimeo</b> URL example:"
1148
  msgstr ""
1149
 
1150
+ #: admin/views/Galleries.php:500
1151
  msgid "<b>Instagram</b> URL example:"
1152
  msgstr ""
1153
 
1154
+ #: admin/views/Galleries.php:509
 
 
 
 
 
 
 
 
 
 
1155
  msgid "<b>Flickr</b> URL example:"
1156
  msgstr ""
1157
 
1158
+ #: admin/views/Galleries.php:513
1159
  msgid "<b>Dailymotion</b> URL example:"
1160
  msgstr ""
1161
 
1162
+ #: admin/views/Galleries.php:532
1163
  msgid "username:"
1164
  msgstr ""
1165
 
1166
+ #: admin/views/Galleries.php:540
1167
  msgid "Number of Instagram recent posts to add to gallery:"
1168
  msgstr ""
1169
 
1170
+ #: admin/views/Galleries.php:548
1171
  msgid "embed type:"
1172
  msgstr ""
1173
 
1174
+ #: admin/views/Galleries.php:567
1175
  msgid "Resize images to: "
1176
  msgstr ""
1177
 
1178
+ #: admin/views/Galleries.php:570
1179
  msgid "The maximum size of resized image."
1180
  msgstr ""
1181
 
1182
+ #: admin/views/Galleries.php:576 framework/WDWLibrary.php:2646
1183
  msgid "Resize"
1184
  msgstr ""
1185
 
1186
+ #: admin/views/Galleries.php:587
1187
  msgid "Alt/Title: "
1188
  msgstr ""
1189
 
1190
+ #: admin/views/Galleries.php:590
1191
  msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1192
  msgstr ""
1193
 
1194
+ #: admin/views/Galleries.php:597 admin/views/Galleries.php:616
1195
+ #: admin/views/Galleries.php:636
1196
  msgid "Save changes"
1197
  msgstr ""
1198
 
1199
+ #: admin/views/Galleries.php:606
1200
  msgid "Redirect URL: "
1201
  msgstr ""
1202
 
1203
+ #: admin/views/Galleries.php:609
1204
  msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1205
  msgstr ""
1206
 
1207
+ #: admin/views/Galleries.php:625
1208
  msgid "Description: "
1209
  msgstr ""
1210
 
1211
+ #: admin/views/Galleries.php:628
1212
  msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1213
  msgstr ""
1214
 
1215
+ #: admin/views/Galleries.php:656
 
1216
  #| msgid "You have already rated."
1217
  msgid "You have unsaved changes."
1218
+ msgstr ""
1219
 
1220
+ #: admin/views/Galleries.php:661
1221
  msgid ""
1222
  "This sorting does not affect the published galleries. You can change the "
1223
  "ordering on frontend by editing gallery shortcode or Photo Gallery Options."
1224
  msgstr ""
1225
 
1226
+ #: admin/views/Galleries.php:678 photo-gallery.php:643
 
1227
  #| msgid "Show comments"
1228
  msgid "Show order column"
1229
+ msgstr ""
1230
 
1231
+ #: admin/views/Galleries.php:679
1232
+ msgid "Drag&Drop"
1233
+ msgstr ""
1234
+
1235
+ #: admin/views/Galleries.php:680
1236
  msgid "Numerate"
1237
  msgstr ""
1238
 
1239
+ #: admin/views/Galleries.php:686
 
1240
  #| msgid "Order by: "
1241
  msgid "Ordering"
1242
+ msgstr ""
1243
+
1244
+ #: admin/views/Galleries.php:692 admin/views/Galleries.php:761
1245
+ #: admin/views/Options.php:1376 admin/views/Options.php:1602
1246
+ #: admin/views/Options.php:1836 admin/views/Options.php:2031
1247
+ #: admin/views/Options.php:2280 admin/views/Options.php:2437
1248
+ #: admin/views/Options.php:2612 admin/views/Options.php:2839
1249
+ #: admin/views/Options.php:3135 admin/views/Options.php:3374
1250
+ #: frontend/views/view.php:522
1251
  msgid "Filename"
1252
+ msgstr ""
1253
 
1254
+ #: admin/views/Galleries.php:697 admin/views/Options.php:886
1255
+ #: admin/views/Options.php:1046 admin/views/Ratings.php:57
1256
+ #: admin/views/Ratings.php:74 admin/views/Shortcode.php:383
1257
  #: admin/views/WidgetTags.php:84
1258
  msgid "Image"
1259
  msgstr ""
1260
 
1261
+ #: admin/views/Galleries.php:773
 
 
 
 
 
1262
  msgid "Resolution"
1263
  msgstr ""
1264
 
1265
+ #: admin/views/Galleries.php:774 admin/views/Options.php:1377
1266
+ #: admin/views/Options.php:1603 admin/views/Options.php:1837
1267
+ #: admin/views/Options.php:2032 admin/views/Options.php:2281
1268
+ #: admin/views/Options.php:2438 admin/views/Options.php:2613
1269
+ #: admin/views/Options.php:2840 admin/views/Options.php:3136
1270
+ #: admin/views/Options.php:3375 filemanager/view.php:154
1271
+ #: frontend/views/view.php:525
1272
  msgid "Size"
1273
+ msgstr ""
1274
 
1275
+ #: admin/views/Galleries.php:788 admin/views/Galleries.php:789
1276
+ #: admin/views/Options.php:195 admin/views/Options.php:1169
1277
+ #: admin/views/Options.php:1172
1278
  msgid "Image edit functionality is not supported by your web host."
1279
  msgstr ""
1280
 
1281
+ #: admin/views/Galleries.php:789
1282
  msgid "Crop Thumbnail"
1283
  msgstr ""
1284
 
1285
+ #: admin/views/Galleries.php:790 admin/views/Options.php:63
1286
+ #: admin/views/Themes.php:361 framework/WDWLibrary.php:382
1287
+ #: framework/WDWLibrary.php:534 framework/WDWLibrary.php:2671
1288
+ #: frontend/views/view.php:469
1289
  msgid "Reset"
1290
+ msgstr ""
1291
 
1292
+ #: admin/views/Galleries.php:810
1293
  msgid "Alt/Title"
1294
  msgstr ""
1295
 
1296
+ #: admin/views/Galleries.php:832
1297
  msgid "Redirect URL"
1298
  msgstr ""
1299
 
1300
+ #: admin/views/Galleries.php:836
1301
  msgid "Options > General"
1302
  msgstr ""
1303
 
1304
+ #: admin/views/Galleries.php:837
1305
  #, php-format
1306
  msgid ""
1307
  "To activate this feature, go to %s, then set \"Image click action\" to "
1308
  "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1309
  msgstr ""
1310
 
1311
+ #: admin/views/Galleries.php:855
1312
  msgid "Remove tag"
1313
  msgstr ""
1314
 
1315
+ #: admin/views/Galleries.php:865
1316
  msgid "Add tag"
1317
  msgstr ""
1318
 
1327
  msgstr ""
1328
 
1329
  #: admin/views/LibSubscribe.php:20
 
1330
  #| msgid "This is not a valid email address."
1331
  msgid "Please enter a valid email."
1332
+ msgstr ""
1333
 
1334
  #: admin/views/LibSubscribe.php:62
1335
  msgid ""
1355
  msgid "Skip"
1356
  msgstr ""
1357
 
1358
+ #: admin/views/Options.php:57
1359
+ msgid "Save options"
 
 
 
 
1360
  msgstr ""
1361
 
1362
+ #: admin/views/Options.php:64 admin/views/Themes.php:356
1363
  msgid "Do you want to reset to default?"
1364
  msgstr ""
1365
 
1366
+ #: admin/views/Options.php:98
 
1367
  #| msgid "Gallery is empty."
1368
+ msgid "Gallery views"
1369
+ msgstr ""
1370
 
1371
+ #: admin/views/Options.php:104
 
1372
  #| msgid "Gallery is empty."
1373
+ msgid "Group of gallery views"
 
 
 
 
1374
  msgstr ""
1375
 
1376
+ #: admin/views/Options.php:116 photo-gallery.php:1572
1377
  msgid "Watermark"
1378
  msgstr ""
1379
 
1380
+ #: admin/views/Options.php:147
1381
  msgid "Images directory"
1382
  msgstr ""
1383
 
1384
+ #: admin/views/Options.php:152
1385
  msgid ""
1386
  "Provide the path of an existing folder inside the WordPress directory of "
1387
  "your website to store uploaded images.<br />The content of the previous "
1388
  "directory will be moved to the new one."
1389
  msgstr ""
1390
 
1391
+ #: admin/views/Options.php:160 admin/views/Options.php:3581
1392
  msgid "Image click action"
1393
  msgstr ""
1394
 
1395
+ #: admin/views/Options.php:162 admin/views/Options.php:3583
1396
  msgid "Open lightbox"
1397
  msgstr ""
1398
 
1399
+ #: admin/views/Options.php:163 admin/views/Options.php:3584
1400
  msgid "Redirect to url"
1401
  msgstr ""
1402
 
1403
+ #: admin/views/Options.php:164 admin/views/Options.php:3585
1404
  msgid "Do Nothing"
1405
  msgstr ""
1406
 
1407
+ #: admin/views/Options.php:166 admin/views/Options.php:3587
1408
  msgid "Select the action which runs after clicking on gallery thumbnails."
1409
  msgstr ""
1410
 
1411
+ #: admin/views/Options.php:170 admin/views/Options.php:3591
1412
  msgid "Open in a new window"
1413
  msgstr ""
1414
 
1415
+ #: admin/views/Options.php:180 admin/views/Options.php:2573
1416
  msgid "Image dimensions"
1417
  msgstr ""
1418
 
1419
+ #: admin/views/Options.php:185
1420
  msgid ""
1421
  "Specify the maximum dimensions of uploaded images (set 0 for original size)."
1422
  msgstr ""
1423
 
1424
+ #: admin/views/Options.php:190
1425
  msgid "Generated thumbnail dimensions"
1426
  msgstr ""
1427
 
1428
+ #: admin/views/Options.php:195 photo-gallery.php:438
1429
  msgid "Recreate"
1430
  msgstr ""
1431
 
1432
+ #: admin/views/Options.php:197
1433
  msgid ""
1434
  "Specify the maximum dimensions of generated thumbnails. They must be larger "
1435
  "than frontend thumbnail dimensions."
1436
  msgstr ""
1437
 
1438
+ #: admin/views/Options.php:202
1439
  msgid "Image quality"
1440
  msgstr ""
1441
 
1442
+ #: admin/views/Options.php:206
1443
  msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1444
  msgstr ""
1445
 
1446
+ #: admin/views/Options.php:211
1447
  msgid "Resizable thumbnails"
1448
  msgstr ""
1449
 
1450
+ #: admin/views/Options.php:216
1451
  msgid ""
1452
  "Enable this option to allow resizing gallery thumbnails on smaller screens."
1453
  msgstr ""
1454
 
1455
+ #: admin/views/Options.php:221
1456
  msgid "Lazy load"
1457
  msgstr ""
1458
 
1459
+ #: admin/views/Options.php:226
1460
  msgid ""
1461
  "Enable this option to activate lazy loading for images and improve the "
1462
  "loading speed on your galleries."
1463
  msgstr ""
1464
 
1465
+ #: admin/views/Options.php:231
1466
  msgid "Preload images"
1467
  msgstr ""
1468
 
1469
+ #: admin/views/Options.php:236
1470
  msgid ""
1471
  "If this setting is enabled, Photo Gallery loads a specific number of images "
1472
  "before opening lightbox. This lets you showcase images without loading "
1473
  "delays, providing better user experience."
1474
  msgstr ""
1475
 
1476
+ #: admin/views/Options.php:241
1477
  msgid "Number of preloaded images"
1478
  msgstr ""
1479
 
1480
+ #: admin/views/Options.php:245
1481
  msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1482
  msgstr ""
1483
 
1484
+ #: admin/views/Options.php:250
 
1485
  #| msgid "Show comments"
1486
  msgid "Show custom posts"
1487
+ msgstr ""
1488
 
1489
+ #: admin/views/Options.php:255
1490
  msgid ""
1491
  "Activate this setting to display Photo Gallery custom posts with new menu "
1492
  "items under WordPress admin menu."
1493
  msgstr ""
1494
 
1495
+ #: admin/views/Options.php:260
1496
  msgid "Discourage Search Engine Visibility"
1497
  msgstr ""
1498
 
1499
+ #: admin/views/Options.php:265
1500
  msgid "Discourage search engines from indexing Photo Gallery custom posts."
1501
  msgstr ""
1502
 
1503
+ #: admin/views/Options.php:270
 
1504
  #| msgid "Show comments"
1505
  msgid "Show comments for custom posts"
1506
+ msgstr ""
1507
 
1508
+ #: admin/views/Options.php:275
1509
  msgid ""
1510
  "Use this setting to show or hide comments under Photo Gallery custom posts."
1511
  msgstr ""
1512
 
1513
+ #: admin/views/Options.php:280
1514
  msgid "Use AND operator for tag filtering"
1515
  msgstr ""
1516
 
1517
+ #: admin/views/Options.php:285
1518
  msgid ""
1519
  "Enable this option to filter images with AND operator. In this case, the "
1520
  "filter results must have all selected tags in the Tag Box."
1521
  msgstr ""
1522
 
1523
+ #: admin/views/Options.php:290
1524
+ #| msgid "Hide rating"
1525
+ msgid "Enable GDPR compliance"
1526
+ msgstr ""
1527
+
1528
+ #: admin/views/Options.php:295
1529
+ msgid "Enable this option to have General Data Protection Regulation."
1530
+ msgstr ""
1531
+
1532
+ #: admin/views/Options.php:302
1533
  msgid "Save IP "
1534
  msgstr ""
1535
 
1536
+ #: admin/views/Options.php:307
1537
  msgid "Disable saving user IP address when rating the images."
1538
  msgstr ""
1539
 
1540
+ #: admin/views/Options.php:313
1541
  msgid "Right-click protection"
1542
  msgstr ""
1543
 
1544
+ #: admin/views/Options.php:318
1545
  msgid "Switch off right-click on your gallery images by enabling this setting."
1546
  msgstr ""
1547
 
1548
+ #: admin/views/Options.php:323
1549
  msgid "Include styles/scripts on gallery pages only"
1550
  msgstr ""
1551
 
1552
+ #: admin/views/Options.php:328
1553
  msgid ""
1554
  "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1555
  "only load on pages with galleries and gallery groups."
1556
  msgstr ""
1557
 
1558
+ #: admin/views/Options.php:333
 
1559
  #| msgid "Show comments"
1560
  msgid "Enable Google fonts"
1561
+ msgstr ""
1562
 
1563
+ #: admin/views/Options.php:338
1564
  msgid ""
1565
  "If this option is disabled, Google fonts will not be included in your pages."
1566
  msgstr ""
1567
 
1568
+ #: admin/views/Options.php:343
 
1569
  #| msgid "Hide info"
1570
  msgid "Enable HTML editor"
1571
+ msgstr ""
1572
 
1573
+ #: admin/views/Options.php:348
1574
  msgid ""
1575
  "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1576
  "this setting is enabled."
1577
  msgstr ""
1578
 
1579
+ #: admin/views/Options.php:352
1580
+ msgid "Enable get parameter for image URL"
1581
+ msgstr ""
1582
+
1583
+ #: admin/views/Options.php:357
1584
+ msgid ""
1585
+ "If this option is enabled, some IDs will be added after the image extension "
1586
+ "to enable CDN to serve those images."
1587
+ msgstr ""
1588
+
1589
+ #: admin/views/Options.php:362
1590
  msgid "Enable href attribute"
1591
  msgstr ""
1592
 
1593
+ #: admin/views/Options.php:367
1594
  msgid "Disable this option only if Photo Gallery conflicts with your theme."
1595
  msgstr ""
1596
 
1597
+ #: admin/views/Options.php:372
1598
  msgid "Auto-fill metadata"
1599
  msgstr ""
1600
 
1601
+ #: admin/views/Options.php:377
1602
  msgid ""
1603
  "Enabling this option will let the plugin fill in meta descriptions of photos "
1604
  "into Image Description option automatically."
1605
  msgstr ""
1606
 
1607
+ #: admin/views/Options.php:382 admin/views/Options.php:385
1608
+ #: photo-gallery.php:512
1609
  msgid "Generate Shortcode"
1610
  msgstr ""
1611
 
1612
+ #: admin/views/Options.php:388
1613
  msgid ""
1614
  "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1615
  "or gallery groups."
1616
  msgstr ""
1617
 
1618
+ #: admin/views/Options.php:391
1619
  msgid "Enable dynamic URLs for galleries and gallery groups"
1620
  msgstr ""
1621
 
1622
+ #: admin/views/Options.php:396
1623
  msgid ""
1624
  "Enable this option to browse galleries and gallery groups, as well as search "
1625
  "results and tagged images with dynamic links."
1626
  msgstr ""
1627
 
1628
+ #: admin/views/Options.php:399
1629
  msgid "Developer mode"
1630
  msgstr ""
1631
 
1632
+ #: admin/views/Options.php:404
1633
  msgid ""
1634
  "Do not use minified JS and CSS files. Enable this option if You need to "
1635
  "debug JS or CSS issues."
1636
  msgstr ""
1637
 
1638
+ #: admin/views/Options.php:415 photo-gallery.php:511
1639
  msgid "Uninstall"
1640
  msgstr ""
1641
 
1642
+ #: admin/views/Options.php:418
1643
  msgid ""
1644
  "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1645
  "gallery groups and other data on the plugin. Please make sure you don't have "
1646
  "any important information before you proceed."
1647
  msgstr ""
1648
 
1649
+ #: admin/views/Options.php:558 admin/views/Options.php:656
1650
+ #: admin/views/Shortcode.php:252
1651
+ msgid "Visit demo page for this view"
1652
  msgstr ""
1653
 
1654
+ #: admin/views/Options.php:560 admin/views/Options.php:658
1655
+ #: admin/views/Shortcode.php:254
1656
+ msgid "UPGRADE to Premium"
1657
+ msgstr ""
1658
+
1659
+ #: admin/views/Options.php:561 admin/views/Options.php:659
1660
+ #: admin/views/Shortcode.php:255
1661
+ msgid "view demo"
1662
  msgstr ""
1663
 
1664
+ #: admin/views/Options.php:690
1665
  msgid "Social"
1666
  msgstr ""
1667
 
1668
+ #: admin/views/Options.php:696
 
1669
  #| msgid "Photo gallery plugin autoupdate interval."
1670
  msgid "Gallery autoupdate interval"
1671
+ msgstr ""
1672
 
1673
+ #: admin/views/Options.php:699
1674
  msgid "hour"
1675
  msgstr ""
1676
 
1677
+ #: admin/views/Options.php:701
1678
  msgid "min"
1679
  msgstr ""
1680
 
1681
+ #: admin/views/Options.php:703
1682
  msgid ""
1683
  "Set the interval when Instagram galleries will be updated, and will display "
1684
  "new posts of your Instagram or Facebook account."
1685
  msgstr ""
1686
 
1687
+ #: admin/views/Options.php:709
1688
  msgid "Instagram"
1689
  msgstr ""
1690
 
1691
+ #: admin/views/Options.php:716
1692
+ msgid "Connect an Instagram Account"
 
 
 
 
 
 
1693
  msgstr ""
1694
 
1695
+ #: admin/views/Options.php:718
1696
  msgid ""
1697
  "Press this button to sign in to your Instagram account. This lets you "
1698
  "incorporate Instagram API to your website."
1699
  msgstr ""
1700
 
1701
+ #: admin/views/Options.php:731
 
 
 
 
 
 
1702
  msgid ""
1703
  "Are you sure you want to reset access token, after resetting it you will "
1704
  "need to log in with Instagram again for using plugin"
1705
  msgstr ""
1706
 
1707
+ #: admin/views/Options.php:739
1708
+ msgid "User ID:"
 
 
 
 
1709
  msgstr ""
1710
 
1711
+ #: admin/views/Options.php:775 admin/views/Options.php:781
1712
  msgid "Roles"
1713
  msgstr ""
1714
 
1715
+ #: admin/views/Options.php:793
1716
  msgid ""
1717
  "Choose a WordPress user role which can add and edit galleries, images, "
1718
+ "gallery groups, tags, themes and edit settings."
1719
  msgstr ""
1720
 
1721
+ #: admin/views/Options.php:801
 
1722
  #| msgid "Gallery is empty."
1723
  msgid "Gallery role restrictions"
1724
+ msgstr ""
1725
 
1726
+ #: admin/views/Options.php:806
1727
  msgid ""
1728
  "Enable this setting to restrict authors from modifying galleries created by "
1729
  "other users."
1730
  msgstr ""
1731
 
1732
+ #: admin/views/Options.php:812
 
1733
  #| msgid "Gallery is empty."
1734
  msgid "Gallery group restrictions"
1735
+ msgstr ""
1736
 
1737
+ #: admin/views/Options.php:817
1738
  msgid ""
1739
  "Enabling this option will restrict authors from modifying galleries groups "
1740
  "created by other users."
1741
  msgstr ""
1742
 
1743
+ #: admin/views/Options.php:823
1744
  msgid "Image role restrictions"
1745
  msgstr ""
1746
 
1747
+ #: admin/views/Options.php:828
1748
  msgid ""
1749
  "Enable this setting to restrict authors from modifying images added by other "
1750
  "users."
1751
  msgstr ""
1752
 
1753
+ #: admin/views/Options.php:834
1754
+ msgid "Tag permission"
1755
+ msgstr ""
1756
+
1757
+ #: admin/views/Options.php:839
1758
+ msgid "Enable this setting to allow users to add/edit tags."
1759
+ msgstr ""
1760
+
1761
+ #: admin/views/Options.php:845
1762
+ msgid "Theme permission"
1763
+ msgstr ""
1764
+
1765
+ #: admin/views/Options.php:850
1766
+ msgid "Enable this setting to allow users to add/edit themes."
1767
+ msgstr ""
1768
+
1769
+ #: admin/views/Options.php:856
1770
+ msgid "Global settings permission"
1771
+ msgstr ""
1772
+
1773
+ #: admin/views/Options.php:861
1774
+ msgid "Enable this setting to allow users to edit global settings."
1775
+ msgstr ""
1776
+
1777
+ #: admin/views/Options.php:876 photo-gallery.php:1576 photo-gallery.php:1691
1778
  msgid "Advertisement"
1779
  msgstr ""
1780
 
1781
+ #: admin/views/Options.php:882 admin/views/Shortcode.php:379
1782
  msgid "Advertisement type"
1783
  msgstr ""
1784
 
1785
+ #: admin/views/Options.php:885 admin/views/Options.php:1044
1786
+ #: admin/views/Shortcode.php:382 admin/views/Themes.php:4471
1787
  #: admin/views/WidgetTags.php:83
1788
  msgid "Text"
1789
  msgstr ""
1790
 
1791
+ #: admin/views/Options.php:888 admin/views/Shortcode.php:385
1792
  msgid "Add Text or Image advertisement to your images with this option."
1793
  msgstr ""
1794
 
1795
+ #: admin/views/Options.php:893 admin/views/Shortcode.php:398
1796
  msgid "Advertisement URL"
1797
  msgstr ""
1798
 
1799
+ #: admin/views/Options.php:906 admin/views/Options.php:908
1800
+ #: admin/views/Options.php:1061 admin/views/Options.php:1063
 
1801
  #| msgid "Reset"
1802
  msgid "Select Image"
1803
+ msgstr ""
1804
 
1805
+ #: admin/views/Options.php:910 admin/views/Options.php:1065
1806
+ #: filemanager/view.php:249
 
1807
  #| msgid "More"
1808
  msgid "or"
1809
+ msgstr ""
1810
 
1811
+ #: admin/views/Options.php:913 admin/views/Shortcode.php:400
1812
  msgid ""
1813
  "Provide the absolute URL of the image you would like to use as advertisement."
1814
  msgstr ""
1815
 
1816
+ #: admin/views/Options.php:918 admin/views/Shortcode.php:405
1817
  msgid "Advertisement text"
1818
  msgstr ""
1819
 
1820
+ #: admin/views/Options.php:922 admin/views/Shortcode.php:407
1821
  msgid "Write the text to add to images as advertisement."
1822
  msgstr ""
1823
 
1824
+ #: admin/views/Options.php:927 admin/views/Shortcode.php:391
1825
  msgid "Advertisement link"
1826
  msgstr ""
1827
 
1828
+ #: admin/views/Options.php:931 admin/views/Shortcode.php:393
1829
  msgid "Provide the link to be added to advertisement on images."
1830
  msgstr ""
1831
 
1832
+ #: admin/views/Options.php:936 admin/views/Shortcode.php:447
1833
  msgid "Advertisement dimensions"
1834
  msgstr ""
1835
 
1836
+ #: admin/views/Options.php:941 admin/views/Shortcode.php:452
1837
  msgid "Select the dimensions of the advertisement image."
1838
  msgstr ""
1839
 
1840
+ #: admin/views/Options.php:946 admin/views/Shortcode.php:438
1841
  msgid "Advertisement font size"
1842
  msgstr ""
1843
 
1844
+ #: admin/views/Options.php:950 admin/views/Shortcode.php:442
1845
  msgid "Specify the font size of the advertisement text."
1846
  msgstr ""
1847
 
1848
+ #: admin/views/Options.php:955 admin/views/Shortcode.php:414
1849
  msgid "Advertisement font style"
1850
  msgstr ""
1851
 
1852
+ #: admin/views/Options.php:971 admin/views/Shortcode.php:429
1853
+ #: admin/views/Themes.php:305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1854
  msgid "Google fonts"
1855
  msgstr ""
1856
 
1857
+ #: admin/views/Options.php:973 admin/views/Options.php:1373
1858
+ #: admin/views/Options.php:1599 admin/views/Options.php:1833
1859
+ #: admin/views/Options.php:2028 admin/views/Options.php:2277
1860
+ #: admin/views/Options.php:2434 admin/views/Options.php:2609
1861
+ #: admin/views/Options.php:2818 admin/views/Options.php:2836
1862
+ #: admin/views/Options.php:3114 admin/views/Options.php:3132
1863
+ #: admin/views/Options.php:3353 admin/views/Options.php:3371
1864
+ #: admin/views/Shortcode.php:431 admin/views/Themes.php:205
1865
+ #: admin/views/Themes.php:236 admin/views/Themes.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1866
  msgid "Default"
1867
+ msgstr ""
1868
 
1869
+ #: admin/views/Options.php:976 admin/views/Shortcode.php:433
1870
  msgid "Select the font family of the advertisement text."
1871
  msgstr ""
1872
 
1873
+ #: admin/views/Options.php:981 admin/views/Shortcode.php:457
1874
  msgid "Advertisement color"
1875
  msgstr ""
1876
 
1877
+ #: admin/views/Options.php:985 admin/views/Shortcode.php:459
1878
  msgid "Choose the color for the advertisement text on images."
1879
  msgstr ""
1880
 
1881
+ #: admin/views/Options.php:990 admin/views/Shortcode.php:466
1882
  msgid "Advertisement opacity"
1883
  msgstr ""
1884
 
1885
+ #: admin/views/Options.php:994 admin/views/Shortcode.php:470
1886
  msgid ""
1887
  "Specify the opacity of the advertisement. The value must be between 0 to 100."
1888
  msgstr ""
1889
 
1890
+ #: admin/views/Options.php:999 admin/views/Shortcode.php:475
1891
  msgid "Advertisement position"
1892
  msgstr ""
1893
 
1894
+ #: admin/views/Options.php:1022 admin/views/Shortcode.php:495
1895
  msgid "Mark the position where the advertisement should appear on images."
1896
  msgstr ""
1897
 
1898
+ #: admin/views/Options.php:1039
1899
  msgid "Watermark type"
1900
  msgstr ""
1901
 
1902
+ #: admin/views/Options.php:1048
1903
  msgid "Add Text or Image watermark to your images with this option."
1904
  msgstr ""
1905
 
1906
+ #: admin/views/Options.php:1053
1907
  msgid "Watermark URL"
1908
  msgstr ""
1909
 
1910
+ #: admin/views/Options.php:1068
1911
  msgid ""
1912
  "Provide the absolute URL of the image you would like to use as watermark."
1913
  msgstr ""
1914
 
1915
+ #: admin/views/Options.php:1068
1916
  msgid "Only .png format is supported."
1917
  msgstr ""
1918
 
1919
+ #: admin/views/Options.php:1073
1920
  msgid "Watermark text"
1921
  msgstr ""
1922
 
1923
+ #: admin/views/Options.php:1077
1924
  msgid "Provide the text to add to images as watermark."
1925
  msgstr ""
1926
 
1927
+ #: admin/views/Options.php:1082
1928
  msgid "Watermark size"
1929
  msgstr ""
1930
 
1931
+ #: admin/views/Options.php:1086
1932
  msgid "Specify the size of watermark on images in percent."
1933
  msgstr ""
1934
 
1935
+ #: admin/views/Options.php:1091
1936
  msgid "Watermark font size"
1937
  msgstr ""
1938
 
1939
+ #: admin/views/Options.php:1095
1940
  msgid "Specify the font size of the watermark text."
1941
  msgstr ""
1942
 
1943
+ #: admin/views/Options.php:1100
1944
  msgid "Watermark font style"
1945
  msgstr ""
1946
 
1947
+ #: admin/views/Options.php:1124
1948
  msgid "Select the font family of the watermark text."
1949
  msgstr ""
1950
 
1951
+ #: admin/views/Options.php:1129
1952
  msgid "Watermark color"
1953
  msgstr ""
1954
 
1955
+ #: admin/views/Options.php:1133
1956
  msgid "Choose the color for the watermark text on images."
1957
  msgstr ""
1958
 
1959
+ #: admin/views/Options.php:1138
1960
  msgid "Watermark opacity"
1961
  msgstr ""
1962
 
1963
+ #: admin/views/Options.php:1142
1964
  msgid ""
1965
  "Specify the opacity of the watermark. The value must be between 0 to 100."
1966
  msgstr ""
1967
 
1968
+ #: admin/views/Options.php:1147
1969
  msgid "Watermark position"
1970
  msgstr ""
1971
 
1972
+ #: admin/views/Options.php:1168 framework/WDWLibrary.php:2666
1973
  msgid "Set watermark"
1974
  msgstr ""
1975
 
1976
+ #: admin/views/Options.php:1170
1977
  msgid "Set Watermark"
1978
  msgstr ""
1979
 
1980
+ #: admin/views/Options.php:1171
1981
  msgid "Reset watermark"
1982
  msgstr ""
1983
 
1984
+ #: admin/views/Options.php:1173
1985
  msgid "Reset Watermark"
1986
  msgstr ""
1987
 
1988
+ #: admin/views/Options.php:1175
1989
  msgid "Mark the position where the watermark should appear on images."
1990
  msgstr ""
1991
 
1992
+ #: admin/views/Options.php:1316 admin/views/Options.php:2770
1993
+ #: admin/views/Options.php:3305 admin/views/Shortcode.php:2280
1994
  msgid "Thumbnail dimensions"
1995
  msgstr ""
1996
 
1997
+ #: admin/views/Options.php:1321 admin/views/Options.php:2775
1998
+ #: admin/views/Options.php:3071 admin/views/Options.php:3310
1999
  msgid ""
2000
  "The default dimensions of thumbnails which will display on published "
2001
  "galleries."
2002
  msgstr ""
2003
 
2004
+ #: admin/views/Options.php:1326 admin/views/Options.php:1551
2005
+ #: admin/views/Options.php:2761 admin/views/Options.php:3058
2006
+ #: admin/views/Options.php:3296 admin/views/Shortcode.php:2282
2007
  msgid "Number of image columns"
2008
  msgstr ""
2009
 
2010
+ #: admin/views/Options.php:1330 admin/views/Options.php:2765
2011
+ #: admin/views/Options.php:3062 admin/views/Options.php:3300
2012
  msgid ""
2013
  "Set the maximum number of image columns in galleries. Note, that the parent "
2014
  "container needs to be large enough to display all columns."
2015
  msgstr ""
2016
 
2017
+ #: admin/views/Options.php:1335 admin/views/Options.php:1561
2018
+ #: admin/views/Options.php:1795 admin/views/Options.php:2394
2019
+ #: admin/views/Options.php:2780 admin/views/Options.php:3076
2020
+ #: admin/views/Options.php:3315
2021
  msgid "Pagination"
2022
  msgstr ""
2023
 
2024
+ #: admin/views/Options.php:1338 admin/views/Options.php:1564
2025
+ #: admin/views/Options.php:1798 admin/views/Options.php:2397
2026
+ #: admin/views/Options.php:2783 admin/views/Options.php:3079
2027
+ #: admin/views/Options.php:3318
2028
  msgid "Simple"
2029
  msgstr ""
2030
 
2031
+ #: admin/views/Options.php:1339 admin/views/Options.php:1565
2032
+ #: admin/views/Options.php:1799 admin/views/Options.php:2398
2033
+ #: admin/views/Options.php:2784 admin/views/Options.php:3080
2034
+ #: admin/views/Options.php:3319
 
2035
  #| msgid "Load More..."
2036
  msgid "Load More"
2037
+ msgstr ""
2038
 
2039
+ #: admin/views/Options.php:1340 admin/views/Options.php:1566
2040
+ #: admin/views/Options.php:1800 admin/views/Options.php:2399
2041
+ #: admin/views/Options.php:2785 admin/views/Options.php:3081
2042
+ #: admin/views/Options.php:3320
2043
  msgid "Scroll Load"
2044
  msgstr ""
2045
 
2046
+ #: admin/views/Options.php:1342 admin/views/Options.php:1568
2047
+ #: admin/views/Options.php:1802 admin/views/Options.php:2401
2048
+ #: admin/views/Options.php:2787 admin/views/Options.php:3083
2049
+ #: admin/views/Options.php:3322
2050
  msgid "This option removes all types of pagination from your galleries."
2051
  msgstr ""
2052
 
2053
+ #: admin/views/Options.php:1343 admin/views/Options.php:1569
2054
+ #: admin/views/Options.php:1803 admin/views/Options.php:2402
2055
+ #: admin/views/Options.php:2788 admin/views/Options.php:3084
2056
+ #: admin/views/Options.php:3323
2057
  msgid ""
2058
  "Activating this option will add page numbers and next/previous buttons to "
2059
  "your galleries."
2060
  msgstr ""
2061
 
2062
+ #: admin/views/Options.php:1344 admin/views/Options.php:1570
2063
+ #: admin/views/Options.php:1804 admin/views/Options.php:2403
2064
+ #: admin/views/Options.php:2789 admin/views/Options.php:3085
2065
+ #: admin/views/Options.php:3324
2066
  msgid ""
2067
  "Adding a Load More button, you can let users display a new set of images "
2068
  "from your galleries."
2069
  msgstr ""
2070
 
2071
+ #: admin/views/Options.php:1345 admin/views/Options.php:1571
2072
+ #: admin/views/Options.php:1805 admin/views/Options.php:2404
2073
+ #: admin/views/Options.php:2790 admin/views/Options.php:3086
2074
+ #: admin/views/Options.php:3325
2075
  msgid ""
2076
  "With this option, users can load new images of your galleries simply by "
2077
  "scrolling down."
2078
  msgstr ""
2079
 
2080
+ #: admin/views/Options.php:1350 admin/views/Options.php:1576
2081
+ #: admin/views/Options.php:1810 admin/views/Options.php:2410
2082
+ #: admin/views/Options.php:2804 admin/views/Options.php:3100
2083
+ #: admin/views/Options.php:3339
2084
  msgid "Images per page"
2085
  msgstr ""
2086
 
2087
+ #: admin/views/Options.php:1354 admin/views/Options.php:1580
2088
+ #: admin/views/Options.php:1814 admin/views/Options.php:2808
2089
+ #: admin/views/Options.php:3104 admin/views/Options.php:3343
2090
  msgid ""
2091
  "Specify the number of images to display per page on galleries. Setting this "
2092
  "option to 0 shows all items."
2093
  msgstr ""
2094
 
2095
+ #: admin/views/Options.php:1359 admin/views/Options.php:1585
2096
+ #: admin/views/Options.php:1819 admin/views/Options.php:2420
2097
  msgid "Images per load"
2098
  msgstr ""
2099
 
2100
+ #: admin/views/Options.php:1363 admin/views/Options.php:1589
2101
+ #: admin/views/Options.php:1823 admin/views/Options.php:2424
2102
  msgid "Specify the number of images to display per load on galleries."
2103
  msgstr ""
2104
 
2105
+ #: admin/views/Options.php:1371 admin/views/Options.php:1596
2106
+ #: admin/views/Options.php:1830 admin/views/Options.php:2025
2107
+ #: admin/views/Options.php:2274 admin/views/Options.php:2431
2108
+ #: admin/views/Options.php:2606
 
2109
  #| msgid "Order by: "
2110
  msgid "Order by"
2111
+ msgstr ""
2112
+
2113
+ #: admin/views/Options.php:1383 admin/views/Options.php:1609
2114
+ #: admin/views/Options.php:1843 admin/views/Options.php:2038
2115
+ #: admin/views/Options.php:2287 admin/views/Options.php:2444
2116
+ #: admin/views/Options.php:2619 admin/views/Options.php:2826
2117
+ #: admin/views/Options.php:2846 admin/views/Options.php:3122
2118
+ #: admin/views/Options.php:3142 admin/views/Options.php:3361
2119
+ #: admin/views/Options.php:3381
2120
  msgid "Ascending"
2121
  msgstr ""
2122
 
2123
+ #: admin/views/Options.php:1384 admin/views/Options.php:1610
2124
+ #: admin/views/Options.php:1844 admin/views/Options.php:2039
2125
+ #: admin/views/Options.php:2288 admin/views/Options.php:2445
2126
+ #: admin/views/Options.php:2620 admin/views/Options.php:2827
2127
+ #: admin/views/Options.php:2847 admin/views/Options.php:3123
2128
+ #: admin/views/Options.php:3143 admin/views/Options.php:3362
2129
+ #: admin/views/Options.php:3382
2130
  msgid "Descending"
2131
  msgstr ""
2132
 
2133
+ #: admin/views/Options.php:1387 admin/views/Options.php:1613
2134
+ #: admin/views/Options.php:1847 admin/views/Options.php:2042
2135
+ #: admin/views/Options.php:2291 admin/views/Options.php:2448
2136
+ #: admin/views/Options.php:2623 admin/views/Options.php:2850
2137
+ #: admin/views/Options.php:3146 admin/views/Options.php:3385
2138
  msgid ""
2139
  "Select the parameter and order direction to sort the gallery images with. E."
2140
  "g. Title and Ascending."
2141
  msgstr ""
2142
 
2143
+ #: admin/views/Options.php:1392 admin/views/Options.php:1618
2144
+ #: admin/views/Options.php:1852 admin/views/Options.php:2296
2145
+ #: admin/views/Options.php:2453 admin/views/Options.php:2855
2146
+ #: admin/views/Options.php:3151 admin/views/Options.php:3390
2147
  msgid "Show search box"
2148
  msgstr ""
2149
 
2150
+ #: admin/views/Options.php:1397 admin/views/Options.php:1623
2151
+ #: admin/views/Options.php:1857 admin/views/Options.php:2301
2152
+ #: admin/views/Options.php:2458 admin/views/Options.php:2860
2153
+ #: admin/views/Options.php:3156 admin/views/Options.php:3395
2154
  msgid ""
2155
  "Enable this option to display a search box with your gallery or gallery "
2156
  "group."
2157
  msgstr ""
2158
 
2159
+ #: admin/views/Options.php:1402 admin/views/Options.php:1628
2160
+ #: admin/views/Options.php:1862 admin/views/Options.php:2306
2161
+ #: admin/views/Options.php:2463 admin/views/Options.php:2865
2162
+ #: admin/views/Options.php:3161 admin/views/Options.php:3400
2163
  msgid "Add placeholder to search"
2164
  msgstr ""
2165
 
2166
+ #: admin/views/Options.php:1410 admin/views/Options.php:1636
2167
+ #: admin/views/Options.php:1870 admin/views/Options.php:2314
2168
+ #: admin/views/Options.php:2471 admin/views/Options.php:2873
2169
+ #: admin/views/Options.php:3169 admin/views/Options.php:3408
2170
  msgid "Search box maximum width"
2171
  msgstr ""
2172
 
2173
+ #: admin/views/Options.php:1418 admin/views/Options.php:1644
2174
+ #: admin/views/Options.php:1878 admin/views/Options.php:2322
2175
+ #: admin/views/Options.php:2479 admin/views/Options.php:2881
2176
+ #: admin/views/Options.php:3177 admin/views/Options.php:3416
2177
  msgid "Show \"Order by\" dropdown list"
2178
  msgstr ""
2179
 
2180
+ #: admin/views/Options.php:1423 admin/views/Options.php:1649
2181
+ #: admin/views/Options.php:1883 admin/views/Options.php:2327
2182
+ #: admin/views/Options.php:2484 admin/views/Options.php:2886
2183
+ #: admin/views/Options.php:3182 admin/views/Options.php:3421
2184
  msgid ""
2185
  "Activate this dropdown box to let users browse your gallery images with "
2186
  "different ordering options."
2187
  msgstr ""
2188
 
2189
+ #: admin/views/Options.php:1428 admin/views/Options.php:1654
2190
+ #: admin/views/Options.php:1888 admin/views/Options.php:2332
2191
+ #: admin/views/Options.php:2489 admin/views/Options.php:2891
2192
+ #: admin/views/Options.php:3187 admin/views/Options.php:3426
 
2193
  #| msgid "Show rating"
2194
  msgid "Show tag box"
2195
+ msgstr ""
2196
 
2197
+ #: admin/views/Options.php:1433 admin/views/Options.php:1659
2198
+ #: admin/views/Options.php:1893 admin/views/Options.php:2337
2199
+ #: admin/views/Options.php:2494 admin/views/Options.php:2896
2200
+ #: admin/views/Options.php:3192 admin/views/Options.php:3431
2201
  msgid ""
2202
  "Enable Tag Box to allow users to filter the gallery images by their tags."
2203
  msgstr ""
2204
 
2205
+ #: admin/views/Options.php:1440 admin/views/Options.php:1666
2206
+ #: admin/views/Options.php:1900 admin/views/Options.php:2344
2207
+ #: admin/views/Options.php:2501 admin/views/Options.php:2673
2208
+ #: admin/views/Options.php:2923
2209
  msgid "Show gallery title"
2210
  msgstr ""
2211
 
2212
+ #: admin/views/Options.php:1445 admin/views/Options.php:1671
2213
+ #: admin/views/Options.php:1905 admin/views/Options.php:2349
2214
+ #: admin/views/Options.php:2506 admin/views/Options.php:2678
2215
  msgid ""
2216
  "Allow users to see the titles of your galleries by enabling this setting."
2217
  msgstr ""
2218
 
2219
+ #: admin/views/Options.php:1450 admin/views/Options.php:1676
2220
+ #: admin/views/Options.php:1910 admin/views/Options.php:2354
2221
+ #: admin/views/Options.php:2511 admin/views/Options.php:2684
2222
  msgid "Show gallery description"
2223
  msgstr ""
2224
 
2225
+ #: admin/views/Options.php:1455 admin/views/Options.php:1681
2226
+ #: admin/views/Options.php:1915 admin/views/Options.php:2359
2227
+ #: admin/views/Options.php:2516 admin/views/Options.php:2689
2228
  msgid "Display the descriptions of your galleries by activating this option."
2229
  msgstr ""
2230
 
2231
+ #: admin/views/Options.php:1460 admin/views/Options.php:1686
2232
+ #: admin/views/Options.php:1920 admin/views/Options.php:2121
2233
+ #: admin/views/Options.php:2253 admin/views/Options.php:2521
2234
+ #: admin/views/Options.php:2694 admin/views/Options.php:2982
2235
+ #: admin/views/Options.php:3219 admin/views/Options.php:3516
2236
  msgid "Show image title"
2237
  msgstr ""
2238
 
2239
+ #: admin/views/Options.php:1462 admin/views/Options.php:1512
2240
+ #: admin/views/Options.php:1688 admin/views/Options.php:1739
2241
+ #: admin/views/Options.php:1922 admin/views/Options.php:1961
2242
+ #: admin/views/Options.php:2925 admin/views/Options.php:2984
2243
+ #: admin/views/Options.php:3024 admin/views/Options.php:3221
2244
+ #: admin/views/Options.php:3251 admin/views/Options.php:3518
2245
+ #: admin/views/Options.php:3558
 
2246
  #| msgid "Show info"
2247
  msgid "Show on hover"
2248
+ msgstr ""
2249
 
2250
+ #: admin/views/Options.php:1463 admin/views/Options.php:1513
2251
+ #: admin/views/Options.php:1689 admin/views/Options.php:2926
2252
+ #: admin/views/Options.php:2985 admin/views/Options.php:3025
2253
+ #: admin/views/Options.php:3222 admin/views/Options.php:3519
2254
+ #: admin/views/Options.php:3559
2255
  msgid "Always show"
2256
  msgstr ""
2257
 
2258
+ #: admin/views/Options.php:1464 admin/views/Options.php:1514
2259
+ #: admin/views/Options.php:1690 admin/views/Options.php:1740
2260
+ #: admin/views/Options.php:1923 admin/views/Options.php:1962
2261
+ #: admin/views/Options.php:2927 admin/views/Options.php:2986
2262
+ #: admin/views/Options.php:3026 admin/views/Options.php:3223
2263
+ #: admin/views/Options.php:3252 admin/views/Options.php:3520
2264
+ #: admin/views/Options.php:3560
2265
  msgid "Don't show"
2266
  msgstr ""
2267
 
2268
+ #: admin/views/Options.php:1466 admin/views/Options.php:1692
2269
+ #: admin/views/Options.php:1925 admin/views/Options.php:2988
2270
+ #: admin/views/Options.php:3225 admin/views/Options.php:3522
2271
  msgid "Choose to show/hide titles of images, or display them on hover."
2272
  msgstr ""
2273
 
2274
+ #: admin/views/Options.php:1471 admin/views/Options.php:1697
2275
+ #| msgid "Show comments"
2276
+ msgid "Show image descriptions"
2277
+ msgstr ""
2278
+
2279
+ #: admin/views/Options.php:1476 admin/views/Options.php:1702
2280
+ msgid "Enable this setting to display descriptions under images."
2281
+ msgstr ""
2282
+
2283
+ #: admin/views/Options.php:1481 admin/views/Options.php:1708
2284
+ #: admin/views/Options.php:1930 admin/views/Options.php:2993
2285
+ #: admin/views/Options.php:3527
2286
  msgid "Show Play icon on video thumbnails"
2287
  msgstr ""
2288
 
2289
+ #: admin/views/Options.php:1486 admin/views/Options.php:1713
2290
+ #: admin/views/Options.php:1935 admin/views/Options.php:2998
2291
+ #: admin/views/Options.php:3532
2292
  msgid "Activate this option to add a Play button on thumbnails of videos."
2293
  msgstr ""
2294
 
2295
+ #: admin/views/Options.php:1491 admin/views/Options.php:1718
2296
+ #: admin/views/Options.php:1940 admin/views/Options.php:2224
2297
+ #: admin/views/Options.php:2364 admin/views/Options.php:2543
2298
+ #: admin/views/Options.php:2716 admin/views/Options.php:3003
2299
+ #: admin/views/Options.php:3230 admin/views/Options.php:3537
2300
  msgid "Enable bulk download button"
2301
  msgstr ""
2302
 
2303
+ #: admin/views/Options.php:1496 admin/views/Options.php:1723
2304
+ #: admin/views/Options.php:1945 admin/views/Options.php:2229
2305
+ #: admin/views/Options.php:2369 admin/views/Options.php:2548
2306
+ #: admin/views/Options.php:2721 admin/views/Options.php:3008
2307
+ #: admin/views/Options.php:3235 admin/views/Options.php:3542
2308
  msgid ""
2309
  "Activate this setting to let users download all images of your gallery with "
2310
  "a click."
2311
  msgstr ""
2312
 
2313
+ #: admin/views/Options.php:1500 admin/views/Options.php:1727
2314
+ #: admin/views/Options.php:1949 admin/views/Options.php:2233
2315
+ #: admin/views/Options.php:2373 admin/views/Options.php:2552
2316
+ #: admin/views/Options.php:2725 admin/views/Options.php:3012
2317
+ #: admin/views/Options.php:3239 admin/views/Options.php:3546
2318
  msgid ""
2319
  "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2320
  "disabled on your website. Please contact your hosting provider and ask them "
2321
  "to enable it."
2322
  msgstr ""
2323
 
2324
+ #: admin/views/Options.php:1510 admin/views/Options.php:1737
2325
+ #: admin/views/Options.php:1959 admin/views/Options.php:3022
2326
+ #: admin/views/Options.php:3249 admin/views/Options.php:3556
 
2327
  #| msgid "Show comments"
2328
  msgid "Show ecommerce icon"
2329
+ msgstr ""
2330
 
2331
+ #: admin/views/Options.php:1516 admin/views/Options.php:1742
2332
+ #: admin/views/Options.php:1964 admin/views/Options.php:3028
2333
+ #: admin/views/Options.php:3254 admin/views/Options.php:3562
2334
  msgid "Choose to show/hide ecommerce icon, or display them on hover."
2335
  msgstr ""
2336
 
2337
+ #: admin/views/Options.php:1542 admin/views/Options.php:1786
2338
  msgid "Thumbnail size"
2339
  msgstr ""
2340
 
2341
+ #: admin/views/Options.php:1546 admin/views/Options.php:1790
2342
  msgid ""
2343
  "The default size of thumbnails which will display on published galleries."
2344
  msgstr ""
2345
 
2346
+ #: admin/views/Options.php:1552 admin/views/Shortcode.php:2284
2347
  msgid "Number of image rows"
2348
  msgstr ""
2349
 
2350
+ #: admin/views/Options.php:1556
2351
  msgid ""
2352
  "Set the maximum number of image columns (or rows) in galleries. Note, that "
2353
  "the parent container needs to be large enough to display all columns."
2354
  msgstr ""
2355
 
2356
+ #: admin/views/Options.php:1754 admin/views/Options.php:2950
2357
+ #: admin/views/Options.php:3484
 
 
 
 
 
 
 
 
 
 
 
2358
  #| msgid "Gallery is empty."
2359
  msgid "Mosaic gallery type"
2360
+ msgstr ""
2361
 
2362
+ #: admin/views/Options.php:1756 admin/views/Options.php:2952
2363
+ #: admin/views/Options.php:3486
2364
  msgid "Vertical"
2365
  msgstr ""
2366
 
2367
+ #: admin/views/Options.php:1757 admin/views/Options.php:2953
2368
+ #: admin/views/Options.php:3487
2369
  msgid "Horizontal"
2370
  msgstr ""
2371
 
2372
+ #: admin/views/Options.php:1759 admin/views/Options.php:2955
2373
+ #: admin/views/Options.php:3489
2374
  msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2375
  msgstr ""
2376
 
2377
+ #: admin/views/Options.php:1765 admin/views/Options.php:2961
2378
+ #: admin/views/Options.php:3495
2379
  msgid "Resizable mosaic"
2380
  msgstr ""
2381
 
2382
+ #: admin/views/Options.php:1770 admin/views/Options.php:2966
2383
+ #: admin/views/Options.php:3500
2384
  msgid ""
2385
  "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2386
  "Mosaic galleries, without modifying their initial display."
2387
  msgstr ""
2388
 
2389
+ #: admin/views/Options.php:1776 admin/views/Options.php:2972
2390
+ #: admin/views/Options.php:3506
2391
  msgid "Width of mosaic galleries"
2392
  msgstr ""
2393
 
2394
+ #: admin/views/Options.php:1780 admin/views/Options.php:2976
2395
+ #: admin/views/Options.php:3510
2396
  msgid ""
2397
  "The total width of mosaic galleries as a percentage of container's width."
2398
  msgstr ""
2399
 
2400
+ #: admin/views/Options.php:1976
2401
  msgid "Slideshow effect"
2402
  msgstr ""
2403
 
2404
+ #: admin/views/Options.php:1983 admin/views/Options.php:3629
2405
  #: admin/views/WidgetSlideshow.php:105
2406
  msgid "This effect is disabled in free version."
2407
  msgstr ""
2408
 
2409
+ #: admin/views/Options.php:1990
2410
  msgid "Select the animation effect for your slideshow."
2411
  msgstr ""
2412
 
2413
+ #: admin/views/Options.php:1995 admin/views/Options.php:3641
2414
  msgid "Effect duration"
2415
  msgstr ""
2416
 
2417
+ #: admin/views/Options.php:1999
2418
  msgid "Set the duration of your slideshow animation effect."
2419
  msgstr ""
2420
 
2421
+ #: admin/views/Options.php:2004 admin/views/Options.php:2639
2422
+ #: admin/views/Options.php:3661
2423
  msgid "Time interval"
2424
  msgstr ""
2425
 
2426
+ #: admin/views/Options.php:2008
2427
  msgid ""
2428
  "Specify the time interval between slides in Photo Gallery's Slideshow view."
2429
  msgstr ""
2430
 
2431
+ #: admin/views/Options.php:2013
2432
  msgid "Slideshow dimensions"
2433
  msgstr ""
2434
 
2435
+ #: admin/views/Options.php:2018
2436
  msgid "Set the default dimensions of your slideshow galleries."
2437
  msgstr ""
2438
 
2439
+ #: admin/views/Options.php:2047 admin/views/Options.php:2628
2440
  msgid "Enable autoplay"
2441
  msgstr ""
2442
 
2443
+ #: admin/views/Options.php:2052
2444
  msgid "Activate this option to autoplay slideshow galleries."
2445
  msgstr ""
2446
 
2447
+ #: admin/views/Options.php:2057
2448
  msgid "Enable shuffle"
2449
  msgstr ""
2450
 
2451
+ #: admin/views/Options.php:2062
2452
  msgid "The slideshow images will be shuffled in case this setting is enabled."
2453
  msgstr ""
2454
 
2455
+ #: admin/views/Options.php:2067 admin/views/Options.php:3693
2456
  msgid "Enable control buttons"
2457
  msgstr ""
2458
 
2459
+ #: admin/views/Options.php:2072
2460
  msgid "Enable this option to show control buttons on your slideshow galleries."
2461
  msgstr ""
2462
 
2463
+ #: admin/views/Options.php:2077 admin/views/Options.php:3818
2464
  msgid "Show Next / Previous buttons"
2465
  msgstr ""
2466
 
2467
+ #: admin/views/Options.php:2079 admin/views/Options.php:3820
2468
  msgid "On hover"
2469
  msgstr ""
2470
 
2471
+ #: admin/views/Options.php:2080 admin/views/Options.php:3821
2472
  msgid "Always"
2473
  msgstr ""
2474
 
2475
+ #: admin/views/Options.php:2082
2476
  msgid ""
2477
  "Display Next/Previous buttons on your slideshow galleries activating this "
2478
  "setting."
2479
  msgstr ""
2480
 
2481
+ #: admin/views/Options.php:2089
2482
+ msgid "Slideshow filmstrip type"
2483
+ msgstr ""
2484
+
2485
+ #: admin/views/Options.php:2092
2486
+ msgid "Fix dimension"
2487
+ msgstr ""
2488
+
2489
+ #: admin/views/Options.php:2093
2490
+ msgid "Fix count"
2491
  msgstr ""
2492
 
2493
+ #: admin/views/Options.php:2095
2494
+ msgid "Select the type for the slideshow filmstrip."
2495
+ msgstr ""
2496
+
2497
+ #: admin/views/Options.php:2101
2498
+ msgid "Slideshow thumbnails count"
2499
+ msgstr ""
2500
+
2501
+ #: admin/views/Options.php:2105
2502
  msgid ""
2503
+ "Set the number of items that will be displayed in the filmstrip. This will "
2504
+ "also construct the width of the filmstrip."
2505
  msgstr ""
2506
 
2507
+ #: admin/views/Options.php:2111
2508
  msgid "Slideshow filmstrip size"
2509
  msgstr ""
2510
 
2511
+ #: admin/views/Options.php:2115 admin/views/Options.php:2126
2512
+ #: admin/views/Options.php:3685
2513
  msgid ""
2514
  "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2515
  "indicates its height, whereas for vertical filmstrips it sets the width."
2516
  msgstr ""
2517
 
2518
+ #: admin/views/Options.php:2131
 
 
 
 
2519
  msgid "Title position"
2520
  msgstr ""
2521
 
2522
+ #: admin/views/Options.php:2153
2523
  msgid "Set the position of image titles in Slideshow view."
2524
  msgstr ""
2525
 
2526
+ #: admin/views/Options.php:2158
2527
  msgid "Full width title"
2528
  msgstr ""
2529
 
2530
+ #: admin/views/Options.php:2163
2531
  msgid "Display image title based on the slideshow dimensions."
2532
  msgstr ""
2533
 
2534
+ #: admin/views/Options.php:2168 admin/views/Options.php:2262
2535
+ #: admin/views/Options.php:2532
 
2536
  #| msgid "Show comments"
2537
  msgid "Show image description"
2538
+ msgstr ""
2539
 
2540
+ #: admin/views/Options.php:2173
2541
  msgid "Enable this setting to show descriptions of images in Slideshow view."
2542
  msgstr ""
2543
 
2544
+ #: admin/views/Options.php:2178
2545
  msgid "Description position"
2546
  msgstr ""
2547
 
2548
+ #: admin/views/Options.php:2200
2549
  msgid "Set the position of image descriptions in Slideshow view."
2550
  msgstr ""
2551
 
2552
+ #: admin/views/Options.php:2205
2553
  msgid "Enable slideshow Music"
2554
  msgstr ""
2555
 
2556
+ #: admin/views/Options.php:2210
2557
  msgid ""
2558
  "Enabling this option, you can have music playing along with your slideshow."
2559
  msgstr ""
2560
 
2561
+ #: admin/views/Options.php:2215
2562
  msgid "Audio URL"
2563
  msgstr ""
2564
 
2565
+ #: admin/views/Options.php:2219
2566
  msgid ""
2567
  "Provide the absolute URL of the audio file you would like to play with your "
2568
  "slideshow."
2569
  msgstr ""
2570
 
2571
+ #: admin/views/Options.php:2244 admin/views/Options.php:2384
2572
  msgid "Image width"
2573
  msgstr ""
2574
 
2575
+ #: admin/views/Options.php:2248
2576
  msgid "Specify the default width of images in Image Browser view."
2577
  msgstr ""
2578
 
2579
+ #: admin/views/Options.php:2267
2580
  msgid "Enable this setting to display titles of images in Image Browser view."
2581
  msgstr ""
2582
 
2583
+ #: admin/views/Options.php:2388
2584
  msgid "Specify the default width of images in Blog Style view."
2585
  msgstr ""
2586
 
2587
+ #: admin/views/Options.php:2414
2588
  msgid "Select the number of images displayed per page in Blog Style view."
2589
  msgstr ""
2590
 
2591
+ #: admin/views/Options.php:2526
2592
  msgid "Enable this setting to display titles of images in Blog Style view."
2593
  msgstr ""
2594
 
2595
+ #: admin/views/Options.php:2537
2596
  msgid "Enable this setting to show descriptions of images in Blog Style view."
2597
  msgstr ""
2598
 
2599
+ #: admin/views/Options.php:2563
2600
  msgid "Max. number of images"
2601
  msgstr ""
2602
 
2603
+ #: admin/views/Options.php:2567
2604
  msgid "Set the maximum number of images that are shown with Carousel display."
2605
  msgstr ""
2606
 
2607
+ #: admin/views/Options.php:2578
2608
  msgid "Specify the dimensions of carousel images in pixels."
2609
  msgstr ""
2610
 
2611
+ #: admin/views/Options.php:2584
2612
  msgid "Carousel ratio"
2613
  msgstr ""
2614
 
2615
+ #: admin/views/Options.php:2588
2616
  msgid ""
2617
  "This option defines the proportion of dimensions between neighboring images "
2618
  "in the carousel."
2619
  msgstr ""
2620
 
2621
+ #: admin/views/Options.php:2594
2622
  msgid "Fixed width"
2623
  msgstr ""
2624
 
2625
+ #: admin/views/Options.php:2598
2626
  msgid "Specify the fixed width of Carousel gallery container."
2627
  msgstr ""
2628
 
2629
+ #: admin/views/Options.php:2633
2630
  msgid "Activate this option to autoplay Carousel galleries."
2631
  msgstr ""
2632
 
2633
+ #: admin/views/Options.php:2643
2634
  msgid ""
2635
  "Specify the time interval between rotations in Photo Gallery's Carousel view."
2636
  msgstr ""
2637
 
2638
+ #: admin/views/Options.php:2649
 
 
 
 
 
 
2639
  msgid "Container fit"
2640
  msgstr ""
2641
 
2642
+ #: admin/views/Options.php:2654
2643
  msgid ""
2644
  "Enabling this setting fits the images inside their container on Carousel "
2645
  "galleries with fixed width."
2646
  msgstr ""
2647
 
2648
+ #: admin/views/Options.php:2660
2649
  msgid "Next/Previous buttons"
2650
  msgstr ""
2651
 
2652
+ #: admin/views/Options.php:2665
2653
  msgid ""
2654
  "Enable this setting to display Next/Previous buttons on your galleries with "
2655
  "Carousel view."
2656
  msgstr ""
2657
 
2658
+ #: admin/views/Options.php:2699
2659
+ msgid ""
2660
+ "Display image titles in Photo Gallery Carousel view by activating this "
2661
+ "option."
2662
+ msgstr ""
2663
+
2664
+ #: admin/views/Options.php:2705
2665
  msgid "Play/Pause buttons"
2666
  msgstr ""
2667
 
2668
+ #: admin/views/Options.php:2710
2669
  msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
2670
  msgstr ""
2671
 
2672
+ #: admin/views/Options.php:2742 admin/views/Options.php:3040
2673
  msgid "Number of gallery group columns"
2674
  msgstr ""
2675
 
2676
+ #: admin/views/Options.php:2746 admin/views/Options.php:3044
2677
  msgid ""
2678
  "Set the maximum number of columns in gallery groups. Note, that the parent "
2679
  "container needs to be large enough to display all columns."
2680
  msgstr ""
2681
 
2682
+ #: admin/views/Options.php:2751 admin/views/Options.php:3286
2683
  msgid "Gallery group thumbnail dimensions"
2684
  msgstr ""
2685
 
2686
+ #: admin/views/Options.php:2756 admin/views/Options.php:3053
2687
+ #: admin/views/Options.php:3291
2688
  msgid "Specify the dimensions of thumbnails in gallery groups."
2689
  msgstr ""
2690
 
2691
+ #: admin/views/Options.php:2795 admin/views/Options.php:3091
2692
+ #: admin/views/Options.php:3330
 
2693
  #| msgid "Gallery is empty."
2694
  msgid "Gallery groups per page"
2695
+ msgstr ""
2696
 
2697
+ #: admin/views/Options.php:2799 admin/views/Options.php:3095
2698
+ #: admin/views/Options.php:3334
2699
  msgid ""
2700
  "Specify the number of galleries/gallery groups to display per page. Setting "
2701
  "this option to 0 shows all items."
2702
  msgstr ""
2703
 
2704
+ #: admin/views/Options.php:2815 admin/views/Options.php:3111
2705
+ #: admin/views/Options.php:3350
 
2706
  #| msgid "Gallery is empty."
2707
  msgid "Order Gallery group by"
2708
+ msgstr ""
2709
 
2710
+ #: admin/views/Options.php:2830 admin/views/Options.php:3126
2711
+ #: admin/views/Options.php:3365
2712
  msgid ""
2713
  "Select the parameter and order direction to sort the gallery group images "
2714
  "with. E.g. Title and Ascending."
2715
  msgstr ""
2716
 
2717
+ #: admin/views/Options.php:2833 admin/views/Options.php:3129
2718
+ #: admin/views/Options.php:3369
 
2719
  #| msgid "Order by: "
2720
  msgid "Order images by"
2721
+ msgstr ""
2722
 
2723
+ #: admin/views/Options.php:2903 admin/views/Options.php:3199
2724
+ #: admin/views/Options.php:3438
2725
  msgid "Show gallery group or gallery title"
2726
  msgstr ""
2727
 
2728
+ #: admin/views/Options.php:2908 admin/views/Options.php:3204
2729
+ #: admin/views/Options.php:3443
2730
  msgid ""
2731
  "Display the title of displayed gallery or gallery group by enabling this "
2732
  "setting."
2733
  msgstr ""
2734
 
2735
+ #: admin/views/Options.php:2913 admin/views/Options.php:3209
2736
+ #: admin/views/Options.php:3448
2737
  msgid "Show gallery group or gallery description"
2738
  msgstr ""
2739
 
2740
+ #: admin/views/Options.php:2918 admin/views/Options.php:3214
2741
+ #: admin/views/Options.php:3453
2742
  msgid ""
2743
  "Display the description of displayed gallery or gallery group by enabling "
2744
  "this setting."
2745
  msgstr ""
2746
 
2747
+ #: admin/views/Options.php:2929
2748
  msgid ""
2749
  "Choose to show/hide titles of galleries/gallery groups, or display them on "
2750
  "hover."
2751
  msgstr ""
2752
 
2753
+ #: admin/views/Options.php:2934 admin/views/Options.php:3468
 
2754
  #| msgid "Gallery is empty."
2755
  msgid "Gallery view type"
2756
+ msgstr ""
2757
 
2758
+ #: admin/views/Options.php:2944 admin/views/Options.php:3478
2759
  msgid ""
2760
  "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2761
  "Slideshow, Image browser, Blog style or Carousel."
2762
  msgstr ""
2763
 
2764
+ #: admin/views/Options.php:3049
 
2765
  #| msgid "Gallery is empty."
2766
  msgid "Gallery group thumbnail width"
2767
+ msgstr ""
2768
 
2769
+ #: admin/views/Options.php:3067
2770
  msgid "Thumbnail width"
2771
  msgstr ""
2772
 
2773
+ #: admin/views/Options.php:3266
2774
  msgid "Extended gallery group height"
2775
  msgstr ""
2776
 
2777
+ #: admin/views/Options.php:3270
2778
  msgid "Set the height of blocks in Extended gallery groups."
2779
  msgstr ""
2780
 
2781
+ #: admin/views/Options.php:3275
2782
  msgid "Number of columns"
2783
  msgstr ""
2784
 
2785
+ #: admin/views/Options.php:3277
2786
  msgid "1 column"
2787
  msgstr ""
2788
 
2789
+ #: admin/views/Options.php:3278
2790
  msgid "2 column"
2791
  msgstr ""
2792
 
2793
+ #: admin/views/Options.php:3279
2794
  msgid "3 column"
2795
  msgstr ""
2796
 
2797
+ #: admin/views/Options.php:3281
2798
  msgid "Set the maximum number of columns."
2799
  msgstr ""
2800
 
2801
+ #: admin/views/Options.php:3458
2802
  msgid "Show extended gallery group description"
2803
  msgstr ""
2804
 
2805
+ #: admin/views/Options.php:3463
2806
  msgid ""
2807
  "Enable this option to show descriptions of galleries/gallery groups in "
2808
  "Extended view."
2809
  msgstr ""
2810
 
2811
+ #: admin/views/Options.php:3602
2812
  msgid "Full-width lightbox"
2813
  msgstr ""
2814
 
2815
+ #: admin/views/Options.php:3607
2816
  msgid "Image lightbox will appear full-width if this setting is activated."
2817
  msgstr ""
2818
 
2819
+ #: admin/views/Options.php:3612
2820
  msgid "Lightbox dimensions"
2821
  msgstr ""
2822
 
2823
+ #: admin/views/Options.php:3617
2824
  msgid "Set the dimensions of image lightbox."
2825
  msgstr ""
2826
 
2827
+ #: admin/views/Options.php:3622
2828
  msgid "Lightbox effect"
2829
  msgstr ""
2830
 
2831
+ #: admin/views/Options.php:3636
2832
  msgid "Select the animation effect for image lightbox."
2833
  msgstr ""
2834
 
2835
+ #: admin/views/Options.php:3645
2836
  msgid "Set the duration of lightbox animation effect."
2837
  msgstr ""
2838
 
2839
+ #: admin/views/Options.php:3646
2840
  msgid ""
2841
  "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2842
  "Interval."
2843
  msgstr ""
2844
 
2845
+ #: admin/views/Options.php:3651
2846
  msgid "Lightbox autoplay"
2847
  msgstr ""
2848
 
2849
+ #: admin/views/Options.php:3656
2850
  msgid "Activate this option to autoplay images in gallery lightbox."
2851
  msgstr ""
2852
 
2853
+ #: admin/views/Options.php:3665
2854
  msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2855
  msgstr ""
2856
 
2857
+ #: admin/views/Options.php:3670
2858
  msgid "Enable filmstrip"
2859
  msgstr ""
2860
 
2861
+ #: admin/views/Options.php:3675
2862
  msgid ""
2863
  "Add a filmstrip with image thumbnails to the lightbox of your galleries."
2864
  msgstr ""
2865
 
2866
+ #: admin/views/Options.php:3681
2867
  msgid "Filmstrip size"
2868
  msgstr ""
2869
 
2870
+ #: admin/views/Options.php:3724
2871
  msgid "Enable this option to show control buttons on Photo Gallery lightbox."
2872
  msgstr ""
2873
 
2874
+ #: admin/views/Options.php:3729
 
2875
  #| msgid "Exit Fullscreen"
2876
  msgid "Enable fullscreen button"
2877
+ msgstr ""
2878
 
2879
+ #: admin/views/Options.php:3734
2880
  msgid ""
2881
  "Activate this setting to add Fullscreen button to lightbox control buttons."
2882
  msgstr ""
2883
 
2884
+ #: admin/views/Options.php:3739
 
2885
  #| msgid "Show comments"
2886
  msgid "Enable comments"
2887
+ msgstr ""
2888
 
2889
+ #: admin/views/Options.php:3748
2890
  msgid ""
2891
  "Let users to leave comments on images by enabling comments section of "
2892
  "lightbox."
2893
  msgstr ""
2894
 
2895
+ #: admin/views/Options.php:3754
 
2896
  #| msgid "Show comments"
2897
  msgid "Show Email for comments"
2898
+ msgstr ""
2899
 
2900
+ #: admin/views/Options.php:3759
2901
  msgid ""
2902
  "Activate this option to display email address field in comments section."
2903
  msgstr ""
2904
 
2905
+ #: admin/views/Options.php:3765
 
2906
  #| msgid "Show comments"
2907
  msgid "Show Captcha for comments"
2908
+ msgstr ""
2909
 
2910
+ #: admin/views/Options.php:3770
2911
  msgid ""
2912
  "Enable this setting to place Captcha word verification in comments section."
2913
  msgstr ""
2914
 
2915
+ #: admin/views/Options.php:3771
2916
+ msgid "Note, this option cannot be used with GDPR compliance."
2917
+ msgstr ""
2918
+
2919
+ #: admin/views/Options.php:3777
2920
  #| msgid "Your comment is awaiting moderation"
2921
  msgid "Enable comments moderation"
2922
+ msgstr ""
2923
 
2924
+ #: admin/views/Options.php:3782
2925
  msgid "Moderate each comment left on images by activating this setting."
2926
  msgstr ""
2927
 
2928
+ #: admin/views/Options.php:3788
 
2929
  #| msgid "Show comments"
2930
  msgid "Show image info"
2931
+ msgstr ""
2932
 
2933
+ #: admin/views/Options.php:3793
2934
  msgid ""
2935
  "Activate this setting to show Info button among lightbox control buttons."
2936
  msgstr ""
2937
 
2938
+ #: admin/views/Options.php:3798
2939
  msgid "Display info by default"
2940
  msgstr ""
2941
 
2942
+ #: admin/views/Options.php:3803
2943
  msgid ""
2944
  "Enabling this option will let you show image title and description on "
2945
  "lightbox by default."
2946
  msgstr ""
2947
 
2948
+ #: admin/views/Options.php:3808
2949
  msgid "Full width info"
2950
  msgstr ""
2951
 
2952
+ #: admin/views/Options.php:3813
2953
  msgid ""
2954
  "Display info box with the full width of the lightbox by enabling this option."
2955
  msgstr ""
2956
 
2957
+ #: admin/views/Options.php:3823
2958
  msgid ""
2959
  "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2960
  "or always."
2961
  msgstr ""
2962
 
2963
+ #: admin/views/Options.php:3828
2964
  msgid "Display views counter"
2965
  msgstr ""
2966
 
2967
+ #: admin/views/Options.php:3833
2968
  msgid "Show the number of views, when a gallery image was opened in lightbox."
2969
  msgstr ""
2970
 
2971
+ #: admin/views/Options.php:3839
 
2972
  #| msgid "Hide rating"
2973
  msgid "Enable rating"
2974
+ msgstr ""
2975
 
2976
+ #: admin/views/Options.php:3844
2977
  msgid ""
2978
  "Allow users to rate your images by adding rating feature to Photo Gallery "
2979
  "lightbox."
2980
  msgstr ""
2981
 
2982
+ #: admin/views/Options.php:3850
2983
+ #| msgid "Hide rating"
2984
+ msgid "Enable zoom"
2985
+ msgstr ""
2986
+
2987
+ #: admin/views/Options.php:3855
2988
+ msgid "Allow users to zoom images in Photo Gallery lightbox."
2989
+ msgstr ""
2990
+
2991
+ #: admin/views/Options.php:3863
2992
  msgid "Show Display Original Image button"
2993
  msgstr ""
2994
 
2995
+ #: admin/views/Options.php:3868
2996
  msgid ""
2997
  "Let users view original versions of your images by enabling this button."
2998
  msgstr ""
2999
 
3000
+ #: admin/views/Options.php:3873
3001
  msgid "Show download button"
3002
  msgstr ""
3003
 
3004
+ #: admin/views/Options.php:3878
3005
  msgid ""
3006
  "This option will allow users to download gallery images while viewing them "
3007
  "in lightbox."
3008
  msgstr ""
3009
 
3010
+ #: admin/views/Options.php:3883
 
3011
  #| msgid "Show comments"
3012
  msgid "Show image counter"
3013
+ msgstr ""
3014
 
3015
+ #: admin/views/Options.php:3888
3016
  msgid "Enable this option to display image counter on Photo Gallery lightbox."
3017
  msgstr ""
3018
 
3019
+ #: admin/views/Options.php:3893
 
3020
  #| msgid "Hide rating"
3021
  msgid "Enable looping"
3022
+ msgstr ""
3023
 
3024
+ #: admin/views/Options.php:3898
3025
  msgid ""
3026
  "Activate looping to start lightbox navigation from the beginning when users "
3027
  "reach its last image."
3028
  msgstr ""
3029
 
3030
+ #: admin/views/Options.php:3903
3031
  msgid "Enable"
3032
  msgstr ""
3033
 
3034
+ #: admin/views/Options.php:3908
3035
  msgid "Display AddThis on Photo Gallery lightbox by activating this option."
3036
  msgstr ""
3037
 
3038
+ #: admin/views/Options.php:3914
3039
  msgid "profile ID"
3040
  msgstr ""
3041
 
3042
+ #: admin/views/Options.php:3918
3043
  msgid "Provide the ID of your profile to connect to AddThis."
3044
  msgstr ""
3045
 
3046
+ #: admin/views/Options.php:3918
3047
  #, php-format
3048
  msgid "Create an account %s."
3049
  msgstr ""
3050
 
3051
+ #: admin/views/Options.php:3918 admin/views/Shortcode.php:335
3052
  msgid "here"
3053
  msgstr ""
3054
 
3055
+ #: admin/views/Options.php:3924
 
3056
  #| msgid "Share on Facebook"
3057
  msgid "Show Facebook button"
3058
+ msgstr ""
3059
 
3060
+ #: admin/views/Options.php:3929
3061
  msgid ""
3062
  "Enabling this setting will add Facebook sharing button to Photo Gallery "
3063
  "lightbox."
3064
  msgstr ""
3065
 
3066
+ #: admin/views/Options.php:3935
 
3067
  #| msgid "Share on Twitter"
3068
  msgid "Show Twitter button"
3069
+ msgstr ""
3070
 
3071
+ #: admin/views/Options.php:3940
3072
  msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
3073
  msgstr ""
3074
 
3075
+ #: admin/views/Options.php:3946
 
3076
  #| msgid "Share on Pinterest"
3077
  msgid "Show Pinterest button"
3078
+ msgstr ""
3079
 
3080
+ #: admin/views/Options.php:3951
3081
  msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3082
  msgstr ""
3083
 
3084
+ #: admin/views/Options.php:3957
 
3085
  #| msgid "Share on Tumblr"
3086
  msgid "Show Tumblr button"
3087
+ msgstr ""
3088
 
3089
+ #: admin/views/Options.php:3962
3090
  msgid ""
3091
  "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3092
  "activating this setting."
3093
  msgstr ""
3094
 
3095
+ #: admin/views/Options.php:3971
 
3096
  #| msgid "Show comments"
3097
  msgid "Show Ecommerce button"
3098
+ msgstr ""
3099
 
3100
+ #: admin/views/Options.php:3976
3101
  msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
3102
  msgstr ""
3103
 
3110
  msgid "Rating"
3111
  msgstr ""
3112
 
3113
+ #: admin/views/Shortcode.php:147 admin/views/Shortcode.php:213
3114
+ msgid "View type"
3115
+ msgstr ""
3116
+
3117
+ #: admin/views/Shortcode.php:279
3118
  msgid "Select the gallery to display."
3119
  msgstr ""
3120
 
3121
+ #: admin/views/Shortcode.php:282
 
3122
  #| msgid "Gallery is empty."
3123
  msgid "Gallery Group"
3124
+ msgstr ""
3125
 
3126
+ #: admin/views/Shortcode.php:293
3127
  msgid "Select the gallery group to display."
3128
  msgstr ""
3129
 
3130
+ #: admin/views/Shortcode.php:299
3131
  msgid "Tag"
3132
  msgstr ""
3133
 
3134
+ #: admin/views/Shortcode.php:311
 
3135
  #| msgid "There are no images in this gallery."
3136
  msgid "Filter gallery images by this tag."
3137
+ msgstr ""
3138
 
3139
+ #: admin/views/Shortcode.php:316
3140
  msgid "Theme"
3141
  msgstr ""
3142
 
3143
+ #: admin/views/Shortcode.php:328
3144
  msgid "Choose the theme for your gallery."
3145
  msgstr ""
3146
 
3147
+ #: admin/views/Shortcode.php:334
3148
  msgid "Use default options"
3149
  msgstr ""
3150
 
3151
+ #: admin/views/Shortcode.php:335
3152
  msgid ""
3153
  "Mark this option to use default settings configured in Photo Gallery Options."
3154
  msgstr ""
3155
 
3156
+ #: admin/views/Shortcode.php:335
3157
  #, php-format
3158
  msgid "You can change the default options %s."
3159
  msgstr ""
3160
 
3161
+ #: admin/views/Shortcode.php:360
3162
  msgid "Action on image click"
3163
  msgstr ""
3164
 
3165
+ #: admin/views/Shortcode.php:370
3166
  msgid "Toggle panel"
3167
  msgstr ""
3168
 
3169
+ #: admin/views/Shortcode.php:510
3170
  msgid "Insert into post"
3171
  msgstr ""
3172
 
3173
+ #: admin/views/Shortcode.php:538
 
 
 
 
 
 
 
 
3174
  msgid "New shortcode"
3175
  msgstr ""
3176
 
3177
+ #: admin/views/Shortcode.php:547 admin/views/Shortcode.php:631
3178
  msgid "Generate"
3179
  msgstr ""
3180
 
3181
+ #: admin/views/Shortcode.php:549
3182
  msgid ""
3183
  "If you would like to edit an existing shortcode, use this dropdown box to "
3184
  "select it."
3185
  msgstr ""
3186
 
3187
+ #: admin/views/Shortcode.php:553
3188
  msgid "Shortcode"
3189
  msgstr ""
3190
 
3191
+ #: admin/views/Shortcode.php:555
3192
  msgid ""
3193
  "Add the selected gallery or gallery group to any WordPress page or post. "
3194
  "Simply copy the generated shortcode and paste it in the content of page/post "
3195
  "editor."
3196
  msgstr ""
3197
 
3198
+ #: admin/views/Shortcode.php:560
3199
  msgid "PHP function"
3200
  msgstr ""
3201
 
3202
+ #: admin/views/Shortcode.php:562
3203
  msgid ""
3204
  "Use generated PHP function to call the selected gallery or gallery group on "
3205
  "a custom PHP template."
3206
  msgstr ""
3207
 
3208
+ #: admin/views/Shortcode.php:649
3209
  msgid "There is no shortcode with such ID!"
3210
  msgstr ""
3211
 
3212
+ #: admin/views/Shortcode.php:2281
3213
  msgid "Image thumbnail width "
3214
  msgstr ""
3215
 
3216
+ #: admin/views/Shortcode.php:2283
3217
  msgid "Image thumbnail height"
3218
  msgstr ""
3219
 
3220
+ #: admin/views/Themes.php:28
3221
+ #| msgid "Share on Facebook"
3222
+ msgid "Photo Gallery Themes"
3223
  msgstr ""
3224
 
3225
+ #: admin/views/Themes.php:39
3226
+ msgid "Build Fully Customized Gallery Views"
3227
+ msgstr ""
3228
+
3229
+ #: admin/views/Themes.php:44
3230
+ msgid "Unlimited options to completely customize every detail. "
3231
+ msgstr ""
3232
+
3233
+ #: admin/views/Themes.php:46
3234
+ msgid ""
3235
+ " Use default dark and light themes, or\n"
3236
+ " create new from scratch."
3237
+ msgstr ""
3238
+
3239
+ #: admin/views/Themes.php:53
3240
+ msgid "UPGRADE TO PREMIUM"
3241
+ msgstr ""
3242
+
3243
+ #: admin/views/Themes.php:187
3244
+ msgid "Add new theme"
3245
+ msgstr ""
3246
+
3247
+ #: admin/views/Themes.php:346
3248
  #| msgid "Show rating"
3249
  msgid "Theme title"
3250
+ msgstr ""
3251
+
3252
+ #: admin/views/Themes.php:351
3253
+ msgid "Save"
3254
+ msgstr ""
3255
 
3256
+ #: admin/views/Themes.php:354
3257
  msgid "Reset to default theme"
3258
  msgstr ""
3259
 
3260
+ #: admin/views/Themes.php:382 admin/views/Themes.php:692
3261
+ #: admin/views/Themes.php:967 admin/views/Themes.php:1921
3262
+ #: admin/views/Themes.php:2812
3263
  msgid "Distance between pictures:"
3264
  msgstr ""
3265
 
3266
+ #: admin/views/Themes.php:388 admin/views/Themes.php:698
3267
+ #: admin/views/Themes.php:973 admin/views/Themes.php:1927
3268
+ #: admin/views/Themes.php:2818
3269
  msgid "Distance from container frame:"
3270
  msgstr ""
3271
 
3272
+ #: admin/views/Themes.php:394 admin/views/Themes.php:704
3273
+ #: admin/views/Themes.php:979 admin/views/Themes.php:1933
3274
+ #: admin/views/Themes.php:2824
3275
  msgid ""
3276
  "Enable this option to add distance between the parent container and the "
3277
  "thumbnails grid."
3278
  msgstr ""
3279
 
3280
+ #: admin/views/Themes.php:398 admin/views/Themes.php:1686
3281
+ #: admin/views/Themes.php:1937 admin/views/Themes.php:2436
3282
+ #: admin/views/Themes.php:3139 admin/views/Themes.php:4390
3283
+ #: admin/views/Themes.php:4841
3284
  msgid "Padding:"
3285
  msgstr ""
3286
 
3287
+ #: admin/views/Themes.php:404 admin/views/Themes.php:708
3288
+ #: admin/views/Themes.php:983 admin/views/Themes.php:1693
3289
+ #: admin/views/Themes.php:1944 admin/views/Themes.php:2828
3290
+ #: admin/views/Themes.php:3179 admin/views/Themes.php:4340
3291
+ #: admin/views/Themes.php:4848
3292
  msgid "Border width:"
3293
  msgstr ""
3294
 
3295
+ #: admin/views/Themes.php:410 admin/views/Themes.php:714
3296
+ #: admin/views/Themes.php:989 admin/views/Themes.php:1699
3297
+ #: admin/views/Themes.php:1950 admin/views/Themes.php:2834
3298
+ #: admin/views/Themes.php:3185 admin/views/Themes.php:4346
3299
+ #: admin/views/Themes.php:4854
3300
  #| msgid "Order by: "
3301
  msgid "Border style:"
3302
+ msgstr ""
3303
 
3304
+ #: admin/views/Themes.php:424 admin/views/Themes.php:728
3305
+ #: admin/views/Themes.php:1003 admin/views/Themes.php:1713
3306
+ #: admin/views/Themes.php:1964 admin/views/Themes.php:2848
3307
+ #: admin/views/Themes.php:3199 admin/views/Themes.php:4360
3308
+ #: admin/views/Themes.php:4864
3309
  msgid "Border color:"
3310
  msgstr ""
3311
 
3312
+ #: admin/views/Themes.php:430 admin/views/Themes.php:734
3313
+ #: admin/views/Themes.php:1009 admin/views/Themes.php:1719
3314
+ #: admin/views/Themes.php:1970 admin/views/Themes.php:2455
3315
+ #: admin/views/Themes.php:2854 admin/views/Themes.php:3205
3316
+ #: admin/views/Themes.php:4366 admin/views/Themes.php:4868
3317
  msgid "Border radius:"
3318
  msgstr ""
3319
 
3320
+ #: admin/views/Themes.php:433 admin/views/Themes.php:440
3321
+ #: admin/views/Themes.php:591 admin/views/Themes.php:598
3322
+ #: admin/views/Themes.php:653 admin/views/Themes.php:660
3323
+ #: admin/views/Themes.php:737 admin/views/Themes.php:875
3324
+ #: admin/views/Themes.php:928 admin/views/Themes.php:935
3325
+ #: admin/views/Themes.php:1012 admin/views/Themes.php:1152
3326
+ #: admin/views/Themes.php:1159 admin/views/Themes.php:1196
3327
+ #: admin/views/Themes.php:1203 admin/views/Themes.php:1319
3328
+ #: admin/views/Themes.php:1340 admin/views/Themes.php:1368
3329
+ #: admin/views/Themes.php:1402 admin/views/Themes.php:1458
3330
+ #: admin/views/Themes.php:1518 admin/views/Themes.php:1525
3331
+ #: admin/views/Themes.php:1561 admin/views/Themes.php:1568
3332
+ #: admin/views/Themes.php:1605 admin/views/Themes.php:1625
3333
+ #: admin/views/Themes.php:1682 admin/views/Themes.php:1689
3334
+ #: admin/views/Themes.php:1722 admin/views/Themes.php:1742
3335
+ #: admin/views/Themes.php:1798 admin/views/Themes.php:1805
3336
+ #: admin/views/Themes.php:1838 admin/views/Themes.php:1882
3337
+ #: admin/views/Themes.php:1889 admin/views/Themes.php:1940
3338
+ #: admin/views/Themes.php:1973 admin/views/Themes.php:1980
3339
+ #: admin/views/Themes.php:2129 admin/views/Themes.php:2136
3340
+ #: admin/views/Themes.php:2173 admin/views/Themes.php:2210
3341
+ #: admin/views/Themes.php:2217 admin/views/Themes.php:2290
3342
+ #: admin/views/Themes.php:2297 admin/views/Themes.php:2385
3343
+ #: admin/views/Themes.php:2425 admin/views/Themes.php:2432
3344
+ #: admin/views/Themes.php:2458 admin/views/Themes.php:2491
3345
+ #: admin/views/Themes.php:2552 admin/views/Themes.php:2585
3346
+ #: admin/views/Themes.php:2604 admin/views/Themes.php:2667
3347
+ #: admin/views/Themes.php:2772 admin/views/Themes.php:2779
3348
+ #: admin/views/Themes.php:2857 admin/views/Themes.php:2992
3349
+ #: admin/views/Themes.php:3029 admin/views/Themes.php:3066
3350
+ #: admin/views/Themes.php:3073 admin/views/Themes.php:3135
3351
+ #: admin/views/Themes.php:3142 admin/views/Themes.php:3149
3352
+ #: admin/views/Themes.php:3208 admin/views/Themes.php:3225
3353
+ #: admin/views/Themes.php:3270 admin/views/Themes.php:3335
3354
+ #: admin/views/Themes.php:3342 admin/views/Themes.php:3436
3355
+ #: admin/views/Themes.php:3490 admin/views/Themes.php:3523
3356
+ #: admin/views/Themes.php:3631 admin/views/Themes.php:3668
3357
+ #: admin/views/Themes.php:3712 admin/views/Themes.php:3745
3358
+ #: admin/views/Themes.php:3850 admin/views/Themes.php:3919
3359
+ #: admin/views/Themes.php:3926 admin/views/Themes.php:3933
3360
+ #: admin/views/Themes.php:4043 admin/views/Themes.php:4050
3361
+ #: admin/views/Themes.php:4057 admin/views/Themes.php:4214
3362
+ #: admin/views/Themes.php:4233 admin/views/Themes.php:4266
3363
+ #: admin/views/Themes.php:4369 admin/views/Themes.php:4386
3364
+ #: admin/views/Themes.php:4393 admin/views/Themes.php:4422
3365
+ #: admin/views/Themes.php:4583 admin/views/Themes.php:4672
3366
+ #: admin/views/Themes.php:4752 admin/views/Themes.php:4759
3367
+ #: admin/views/Themes.php:4837 admin/views/Themes.php:4844
3368
+ #: admin/views/Themes.php:4871 admin/views/Themes.php:4924
3369
  msgid "Use CSS type values."
3370
  msgstr ""
3371
 
3372
+ #: admin/views/Themes.php:437 admin/views/Themes.php:1977
3373
  msgid "Shadow:"
3374
  msgstr ""
3375
 
3376
+ #: admin/views/Themes.php:444 admin/views/Themes.php:741
3377
+ #: admin/views/Themes.php:1016 admin/views/Themes.php:1984
3378
+ #: admin/views/Themes.php:2861
3379
  msgid "Hover effect:"
3380
  msgstr ""
3381
 
3382
+ #: admin/views/Themes.php:458 admin/views/Themes.php:755
3383
+ #: admin/views/Themes.php:1030 admin/views/Themes.php:1998
3384
+ #: admin/views/Themes.php:2345 admin/views/Themes.php:2875
3385
  msgid "Hover effect value:"
3386
  msgstr ""
3387
 
3388
+ #: admin/views/Themes.php:461
3389
  msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3390
  msgstr ""
3391
 
3392
+ #: admin/views/Themes.php:465 admin/views/Themes.php:762
3393
+ #: admin/views/Themes.php:1037
3394
  msgid "Transition:"
3395
  msgstr ""
3396
 
3397
+ #: admin/views/Themes.php:485 admin/views/Themes.php:782
3398
+ #: admin/views/Themes.php:1056 admin/views/Themes.php:2024
3399
+ #: admin/views/Themes.php:2352 admin/views/Themes.php:2902
3400
  msgid "Thumbnail background color:"
3401
  msgstr ""
3402
 
3403
+ #: admin/views/Themes.php:492 admin/views/Themes.php:789
3404
+ #: admin/views/Themes.php:1062 admin/views/Themes.php:2030
3405
+ #: admin/views/Themes.php:2364
3406
+ msgid "Thumbnail background transparency:"
3407
  msgstr ""
3408
 
3409
+ #: admin/views/Themes.php:495 admin/views/Themes.php:502
3410
+ #: admin/views/Themes.php:515 admin/views/Themes.php:792
3411
+ #: admin/views/Themes.php:799 admin/views/Themes.php:812
3412
+ #: admin/views/Themes.php:1065 admin/views/Themes.php:1072
3413
+ #: admin/views/Themes.php:1085 admin/views/Themes.php:1262
3414
+ #: admin/views/Themes.php:1421 admin/views/Themes.php:1511
3415
+ #: admin/views/Themes.php:1554 admin/views/Themes.php:1618
3416
+ #: admin/views/Themes.php:1735 admin/views/Themes.php:2033
3417
+ #: admin/views/Themes.php:2040 admin/views/Themes.php:2053
3418
+ #: admin/views/Themes.php:2327 admin/views/Themes.php:2367
3419
+ #: admin/views/Themes.php:2451 admin/views/Themes.php:2912
3420
+ #: admin/views/Themes.php:2925 admin/views/Themes.php:3114
3421
+ #: admin/views/Themes.php:3283 admin/views/Themes.php:3383
3422
+ #: admin/views/Themes.php:3396 admin/views/Themes.php:3443
3423
+ #: admin/views/Themes.php:3470 admin/views/Themes.php:3764
3424
+ #: admin/views/Themes.php:3886 admin/views/Themes.php:4010
3425
+ #: admin/views/Themes.php:4406 admin/views/Themes.php:4501
3426
+ #: admin/views/Themes.php:4526 admin/views/Themes.php:4665
3427
  msgid "Value must be between 0 to 100."
3428
  msgstr ""
3429
 
3430
+ #: admin/views/Themes.php:499 admin/views/Themes.php:2037
3431
+ #: admin/views/Themes.php:2324 admin/views/Themes.php:2909
3432
+ msgid "Thumbnail transparency:"
3433
+ msgstr ""
3434
+
3435
+ #: admin/views/Themes.php:506 admin/views/Themes.php:1609
3436
+ #: admin/views/Themes.php:2044 admin/views/Themes.php:2916
3437
  msgid "Full background color:"
3438
  msgstr ""
3439
 
3440
+ #: admin/views/Themes.php:512 admin/views/Themes.php:1615
3441
+ #: admin/views/Themes.php:2050 admin/views/Themes.php:2922
3442
  msgid "Full background transparency:"
3443
  msgstr ""
3444
 
3445
+ #: admin/views/Themes.php:519 admin/views/Themes.php:816
3446
+ #: admin/views/Themes.php:1089 admin/views/Themes.php:1665
3447
+ #: admin/views/Themes.php:2057 admin/views/Themes.php:2929
3448
+ #: admin/views/Themes.php:3118 admin/views/Themes.php:4445
3449
  msgid "Alignment:"
3450
  msgstr ""
3451
 
3452
+ #: admin/views/Themes.php:543 admin/views/Themes.php:1756
3453
+ #: admin/views/Themes.php:2081
3454
  msgid "Title position:"
3455
  msgstr ""
3456
 
3457
+ #: admin/views/Themes.php:546 admin/views/Themes.php:1357
3458
+ #: admin/views/Themes.php:1759 admin/views/Themes.php:2084
3459
+ #: admin/views/Themes.php:3421 admin/views/Themes.php:3701
3460
+ #: admin/views/Themes.php:3789 admin/views/Themes.php:3857
3461
+ #: admin/views/Themes.php:3981 admin/views/Themes.php:4439
3462
  msgid "Top"
3463
  msgstr ""
3464
 
3465
+ #: admin/views/Themes.php:548 admin/views/Themes.php:1359
3466
+ #: admin/views/Themes.php:1761 admin/views/Themes.php:2086
3467
+ #: admin/views/Themes.php:3423 admin/views/Themes.php:3703
3468
+ #: admin/views/Themes.php:3791 admin/views/Themes.php:3859
3469
+ #: admin/views/Themes.php:3983 admin/views/Themes.php:4441
3470
  msgid "Bottom"
3471
  msgstr ""
3472
 
3473
+ #: admin/views/Themes.php:552 admin/views/Themes.php:836
3474
+ #: admin/views/Themes.php:1113 admin/views/Themes.php:2090
3475
+ #: admin/views/Themes.php:2634 admin/views/Themes.php:2953
3476
+ #: admin/views/Themes.php:4085 admin/views/Themes.php:4692
3477
  msgid "Title font size:"
3478
  msgstr ""
3479
 
3480
+ #: admin/views/Themes.php:558 admin/views/Themes.php:842
3481
+ #: admin/views/Themes.php:1119 admin/views/Themes.php:2096
3482
+ #: admin/views/Themes.php:2640 admin/views/Themes.php:2959
3483
+ #: admin/views/Themes.php:4061
3484
  msgid "Title font color:"
3485
  msgstr ""
3486
 
3487
+ #: admin/views/Themes.php:564 admin/views/Themes.php:848
3488
+ #: admin/views/Themes.php:1125 admin/views/Themes.php:2102
3489
+ #: admin/views/Themes.php:2965
3490
  msgid "Title font color (Show on hover):"
3491
  msgstr ""
3492
 
3493
+ #: admin/views/Themes.php:571 admin/views/Themes.php:855
3494
+ #: admin/views/Themes.php:1132 admin/views/Themes.php:1542
3495
+ #: admin/views/Themes.php:2109 admin/views/Themes.php:2647
3496
+ #: admin/views/Themes.php:2972 admin/views/Themes.php:4068
3497
  msgid "Title font family:"
3498
  msgstr ""
3499
 
3500
+ #: admin/views/Themes.php:574 admin/views/Themes.php:858
3501
+ #: admin/views/Themes.php:1135 admin/views/Themes.php:2112
3502
+ #: admin/views/Themes.php:2650 admin/views/Themes.php:2975
3503
+ #: admin/views/Themes.php:4071 admin/views/Themes.php:4704
3504
  msgid "Title font weight:"
3505
  msgstr ""
3506
 
3507
+ #: admin/views/Themes.php:588 admin/views/Themes.php:1149
3508
+ #: admin/views/Themes.php:2126 admin/views/Themes.php:2989
3509
  msgid "Title box shadow:"
3510
  msgstr ""
3511
 
3512
+ #: admin/views/Themes.php:595 admin/views/Themes.php:872
3513
+ #: admin/views/Themes.php:1156 admin/views/Themes.php:2133
3514
+ #: admin/views/Themes.php:2595 admin/views/Themes.php:4676
3515
  msgid "Title margin:"
3516
  msgstr ""
3517
 
3518
+ #: admin/views/Themes.php:602
3519
+ msgid "Thumb description font size:"
3520
+ msgstr ""
3521
+
3522
+ #: admin/views/Themes.php:609
3523
+ msgid "Thumb description font color:"
3524
+ msgstr ""
3525
+
3526
+ #: admin/views/Themes.php:616 admin/views/Themes.php:892
3527
+ #: admin/views/Themes.php:1585 admin/views/Themes.php:2710
3528
+ #: admin/views/Themes.php:4099
3529
+ msgid "Description font family:"
3530
+ msgstr ""
3531
+
3532
+ #: admin/views/Themes.php:619 admin/views/Themes.php:895
3533
+ #: admin/views/Themes.php:1163 admin/views/Themes.php:1848
3534
+ #: admin/views/Themes.php:2177 admin/views/Themes.php:2739
3535
+ #: admin/views/Themes.php:3033 admin/views/Themes.php:3301
3536
+ #: admin/views/Themes.php:4718
3537
  msgid "Gallery title/description font size:"
3538
  msgstr ""
3539
 
3540
+ #: admin/views/Themes.php:626 admin/views/Themes.php:901
3541
+ #: admin/views/Themes.php:1169 admin/views/Themes.php:1855
3542
+ #: admin/views/Themes.php:2183 admin/views/Themes.php:2745
3543
+ #: admin/views/Themes.php:3039 admin/views/Themes.php:3308
3544
+ #: admin/views/Themes.php:4725
3545
  msgid "Gallery title/description font color:"
3546
  msgstr ""
3547
 
3548
+ #: admin/views/Themes.php:633 admin/views/Themes.php:908
3549
+ #: admin/views/Themes.php:1176 admin/views/Themes.php:1862
3550
+ #: admin/views/Themes.php:2190 admin/views/Themes.php:2752
3551
+ #: admin/views/Themes.php:3046 admin/views/Themes.php:3315
3552
+ #: admin/views/Themes.php:4732
3553
  msgid "Gallery title/description font family:"
3554
  msgstr ""
3555
 
3556
+ #: admin/views/Themes.php:636 admin/views/Themes.php:911
3557
+ #: admin/views/Themes.php:1179 admin/views/Themes.php:1865
3558
+ #: admin/views/Themes.php:2193 admin/views/Themes.php:2755
3559
+ #: admin/views/Themes.php:3049 admin/views/Themes.php:3318
3560
+ #: admin/views/Themes.php:4735
3561
  msgid "Gallery title/description font weight:"
3562
  msgstr ""
3563
 
3564
+ #: admin/views/Themes.php:650 admin/views/Themes.php:925
3565
+ #: admin/views/Themes.php:1193 admin/views/Themes.php:1879
3566
+ #: admin/views/Themes.php:2207 admin/views/Themes.php:2769
3567
+ #: admin/views/Themes.php:3063 admin/views/Themes.php:3332
3568
+ #: admin/views/Themes.php:4749
3569
  msgid "Gallery title/description box shadow:"
3570
  msgstr ""
3571
 
3572
+ #: admin/views/Themes.php:657 admin/views/Themes.php:932
3573
+ #: admin/views/Themes.php:1200 admin/views/Themes.php:1886
3574
+ #: admin/views/Themes.php:2214 admin/views/Themes.php:2776
3575
+ #: admin/views/Themes.php:3070 admin/views/Themes.php:3339
3576
+ #: admin/views/Themes.php:4756
3577
  msgid "Gallery title/description margin:"
3578
  msgstr ""
3579
 
3580
+ #: admin/views/Themes.php:664 admin/views/Themes.php:939
3581
+ #: admin/views/Themes.php:1207 admin/views/Themes.php:1893
3582
+ #: admin/views/Themes.php:2221 admin/views/Themes.php:2783
3583
+ #: admin/views/Themes.php:3077 admin/views/Themes.php:3346
3584
+ #: admin/views/Themes.php:4763
3585
  #| msgid "Gallery is empty."
3586
  msgid "Gallery title alignment:"
3587
+ msgstr ""
3588
 
3589
+ #: admin/views/Themes.php:758 admin/views/Themes.php:1033
3590
+ #: admin/views/Themes.php:2001 admin/views/Themes.php:2348
3591
+ #: admin/views/Themes.php:2878
3592
  msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3593
  msgstr ""
3594
 
3595
+ #: admin/views/Themes.php:796 admin/views/Themes.php:1069
3596
  msgid "Transparency:"
3597
  msgstr ""
3598
 
3599
+ #: admin/views/Themes.php:803 admin/views/Themes.php:1076
3600
  msgid "Full Background color:"
3601
  msgstr ""
3602
 
3603
+ #: admin/views/Themes.php:809 admin/views/Themes.php:1082
3604
+ #: admin/views/Themes.php:1732 admin/views/Themes.php:2448
3605
+ #: admin/views/Themes.php:3111
3606
  msgid "Background transparency:"
3607
  msgstr ""
3608
 
3609
+ #: admin/views/Themes.php:879 admin/views/Themes.php:1572
3610
+ #: admin/views/Themes.php:2697 admin/views/Themes.php:4116
3611
  msgid "Description font size:"
3612
  msgstr ""
3613
 
3614
+ #: admin/views/Themes.php:885 admin/views/Themes.php:2703
3615
+ #: admin/views/Themes.php:4092
3616
  msgid "Description font color:"
3617
  msgstr ""
3618
 
3619
+ #: admin/views/Themes.php:1235 admin/views/Themes.php:1726
3620
+ #: admin/views/Themes.php:2442 admin/views/Themes.php:3105
3621
+ #: admin/views/Themes.php:4492
 
 
 
 
 
3622
  msgid "Background color:"
3623
  msgstr ""
3624
 
3625
+ #: admin/views/Themes.php:1241 admin/views/Themes.php:3647
3626
+ #: admin/views/Themes.php:4505
3627
  msgid "Right, left buttons size:"
3628
  msgstr ""
3629
 
3630
+ #: admin/views/Themes.php:1247 admin/views/Themes.php:4511
3631
  msgid "Play, pause buttons size:"
3632
  msgstr ""
3633
 
3634
+ #: admin/views/Themes.php:1253 admin/views/Themes.php:3235
3635
+ #: admin/views/Themes.php:4517
3636
  msgid "Buttons color:"
3637
  msgstr ""
3638
 
3639
+ #: admin/views/Themes.php:1259 admin/views/Themes.php:4523
3640
  msgid "Buttons transparency:"
3641
  msgstr ""
3642
 
3643
+ #: admin/views/Themes.php:1266 admin/views/Themes.php:4530
3644
  msgid "Buttons hover color:"
3645
  msgstr ""
3646
 
3647
+ #: admin/views/Themes.php:1272 admin/views/Themes.php:3641
3648
+ #: admin/views/Themes.php:4536
3649
  msgid "Right, left buttons width:"
3650
  msgstr ""
3651
 
3652
+ #: admin/views/Themes.php:1278 admin/views/Themes.php:3635
3653
+ #: admin/views/Themes.php:4542
3654
  msgid "Right, left buttons height:"
3655
  msgstr ""
3656
 
3657
+ #: admin/views/Themes.php:1284 admin/views/Themes.php:3616
3658
+ #: admin/views/Themes.php:4548
3659
  msgid "Right, left buttons background color:"
3660
  msgstr ""
3661
 
3662
+ #: admin/views/Themes.php:1290 admin/views/Themes.php:3672
3663
+ #: admin/views/Themes.php:4554
3664
  msgid "Right, left buttons border width:"
3665
  msgstr ""
3666
 
3667
+ #: admin/views/Themes.php:1296 admin/views/Themes.php:3678
3668
+ #: admin/views/Themes.php:4560
3669
  msgid "Right, left buttons border style:"
3670
  msgstr ""
3671
 
3672
+ #: admin/views/Themes.php:1310 admin/views/Themes.php:3692
3673
+ #: admin/views/Themes.php:4574
3674
  msgid "Right, left buttons border color:"
3675
  msgstr ""
3676
 
3677
+ #: admin/views/Themes.php:1316 admin/views/Themes.php:3665
3678
+ #: admin/views/Themes.php:4580
3679
  msgid "Right, left buttons border radius:"
3680
  msgstr ""
3681
 
3682
+ #: admin/views/Themes.php:1323 admin/views/Themes.php:3602
3683
+ #: admin/views/Themes.php:4587
3684
  msgid "Right, left buttons style:"
3685
  msgstr ""
3686
 
3687
+ #: admin/views/Themes.php:1337 admin/views/Themes.php:3628
3688
  msgid "Right, left buttons box shadow:"
3689
  msgstr ""
3690
 
3691
+ #: admin/views/Themes.php:1354
3692
  msgid "Filmstrip/Slider bullet position:"
3693
  msgstr ""
3694
 
3695
+ #: admin/views/Themes.php:1365
3696
  msgid "Filmstrip margin:"
3697
  msgstr ""
3698
 
3699
+ #: admin/views/Themes.php:1372
3700
  msgid "Filmstrip border width:"
3701
  msgstr ""
3702
 
3703
+ #: admin/views/Themes.php:1378
3704
  msgid "Filmstrip border style:"
3705
  msgstr ""
3706
 
3707
+ #: admin/views/Themes.php:1393
3708
  msgid "Filmstrip border color:"
3709
  msgstr ""
3710
 
3711
+ #: admin/views/Themes.php:1399
3712
  msgid "Filmstrip border radius:"
3713
  msgstr ""
3714
 
3715
+ #: admin/views/Themes.php:1406
3716
  msgid "Filmstrip active border width:"
3717
  msgstr ""
3718
 
3719
+ #: admin/views/Themes.php:1412
3720
  msgid "Filmstrip active border color:"
3721
  msgstr ""
3722
 
3723
+ #: admin/views/Themes.php:1418
3724
  msgid "Filmstrip deactive transparency: "
3725
  msgstr ""
3726
 
3727
+ #: admin/views/Themes.php:1425
3728
  msgid "Filmstrip right, left buttons background color: "
3729
  msgstr ""
3730
 
3731
+ #: admin/views/Themes.php:1431 admin/views/Themes.php:3774
3732
  msgid "Filmstrip right, left buttons color:"
3733
  msgstr ""
3734
 
3735
+ #: admin/views/Themes.php:1437 admin/views/Themes.php:3768
3736
  msgid "Filmstrip right, left buttons size:"
3737
  msgstr ""
3738
 
3739
+ #: admin/views/Themes.php:1443
3740
  msgid "Slider bullet width: "
3741
  msgstr ""
3742
 
3743
+ #: admin/views/Themes.php:1449
3744
  msgid "Slider bullet height:"
3745
  msgstr ""
3746
 
3747
+ #: admin/views/Themes.php:1455
3748
  msgid "Slider bullet border radius: "
3749
  msgstr ""
3750
 
3751
+ #: admin/views/Themes.php:1462
3752
  msgid "Slider bullet background color:"
3753
  msgstr ""
3754
 
3755
+ #: admin/views/Themes.php:1468
3756
  msgid "Slider bullet margin:"
3757
  msgstr ""
3758
 
3759
+ #: admin/views/Themes.php:1474
3760
  msgid "Slider bullet active background color: "
3761
  msgstr ""
3762
 
3763
+ #: admin/views/Themes.php:1480
3764
  msgid "Slider bullet active border width:"
3765
  msgstr ""
3766
 
3767
+ #: admin/views/Themes.php:1486
3768
  msgid "Slider bullet active border color: "
3769
  msgstr ""
3770
 
3771
+ #: admin/views/Themes.php:1502
3772
  msgid "Title background color: "
3773
  msgstr ""
3774
 
3775
+ #: admin/views/Themes.php:1508
3776
  msgid "Title transparency: "
3777
  msgstr ""
3778
 
3779
+ #: admin/views/Themes.php:1515 admin/views/Themes.php:4669
3780
  msgid "Title border radius:"
3781
  msgstr ""
3782
 
3783
+ #: admin/views/Themes.php:1522
3784
  msgid "Title padding: "
3785
  msgstr ""
3786
 
3787
+ #: admin/views/Themes.php:1529
3788
  msgid "Title font size: "
3789
  msgstr ""
3790
 
3791
+ #: admin/views/Themes.php:1535
3792
  msgid "Title color: "
3793
  msgstr ""
3794
 
3795
+ #: admin/views/Themes.php:1545 admin/views/Themes.php:1842
3796
  msgid "Description background color:"
3797
  msgstr ""
3798
 
3799
+ #: admin/views/Themes.php:1551
3800
  msgid "Description transparency:"
3801
  msgstr ""
3802
 
3803
+ #: admin/views/Themes.php:1558 admin/views/Themes.php:1835
3804
  msgid "Description border radius:"
3805
  msgstr ""
3806
 
3807
+ #: admin/views/Themes.php:1565 admin/views/Themes.php:1802
3808
+ #: admin/views/Themes.php:2664
3809
  msgid "Description padding:"
3810
  msgstr ""
3811
 
3812
+ #: admin/views/Themes.php:1578
3813
  msgid "Description color:"
3814
  msgstr ""
3815
 
3816
+ #: admin/views/Themes.php:1602
3817
  msgid "Full padding:"
3818
  msgstr ""
3819
 
3820
+ #: admin/views/Themes.php:1622
3821
  msgid "Full border radius:"
3822
  msgstr ""
3823
 
3824
+ #: admin/views/Themes.php:1629
3825
  msgid "Full border width:"
3826
  msgstr ""
3827
 
3828
+ #: admin/views/Themes.php:1635
3829
  msgid "Full border style:"
3830
  msgstr ""
3831
 
3832
+ #: admin/views/Themes.php:1649
3833
  msgid "Full border color:"
3834
  msgstr ""
3835
 
3836
+ #: admin/views/Themes.php:1679 admin/views/Themes.php:2429
3837
+ #: admin/views/Themes.php:3132 admin/views/Themes.php:4383
3838
+ #: admin/views/Themes.php:4834
3839
  msgid "Margin:"
3840
  msgstr ""
3841
 
3842
+ #: admin/views/Themes.php:1739 admin/views/Themes.php:3146
3843
+ #: admin/views/Themes.php:4419
3844
  msgid "Box shadow:"
3845
  msgstr ""
3846
 
3847
+ #: admin/views/Themes.php:1765
3848
  msgid "Title alignment:"
3849
  msgstr ""
3850
 
3851
+ #: admin/views/Themes.php:1779 admin/views/Themes.php:3167
3852
+ #: admin/views/Themes.php:4310 admin/views/Themes.php:4810
3853
  msgid "Font size:"
3854
  msgstr ""
3855
 
3856
+ #: admin/views/Themes.php:1785 admin/views/Themes.php:3173
3857
+ #: admin/views/Themes.php:4316 admin/views/Themes.php:4816
3858
  msgid "Font color:"
3859
  msgstr ""
3860
 
3861
+ #: admin/views/Themes.php:1792 admin/views/Themes.php:3164
3862
+ #: admin/views/Themes.php:4323 admin/views/Themes.php:4821
3863
  msgid "Font family:"
3864
  msgstr ""
3865
 
3866
+ #: admin/views/Themes.php:1795
3867
  msgid "Description margin:"
3868
  msgstr ""
3869
 
3870
+ #: admin/views/Themes.php:1809 admin/views/Themes.php:2671
3871
  msgid "Description border width:"
3872
  msgstr ""
3873
 
3874
+ #: admin/views/Themes.php:1815 admin/views/Themes.php:2677
3875
  msgid "Description border style:"
3876
  msgstr ""
3877
 
3878
+ #: admin/views/Themes.php:1829 admin/views/Themes.php:2691
3879
  msgid "Description border color:"
3880
  msgstr ""
3881
 
3882
+ #: admin/views/Themes.php:2005 admin/views/Themes.php:2301
3883
+ #: admin/views/Themes.php:2882
3884
  msgid "Thumbnail transition:"
3885
  msgstr ""
3886
 
3887
+ #: admin/views/Themes.php:2140 admin/views/Themes.php:2996
3888
  msgid "Back Font size:"
3889
  msgstr ""
3890
 
3891
+ #: admin/views/Themes.php:2146 admin/views/Themes.php:3002
 
3892
  #| msgid "Share on Facebook"
3893
  msgid "Back Font color:"
3894
+ msgstr ""
3895
 
3896
+ #: admin/views/Themes.php:2153 admin/views/Themes.php:3009
3897
  msgid "Back Font family:"
3898
  msgstr ""
3899
 
3900
+ #: admin/views/Themes.php:2156 admin/views/Themes.php:3012
3901
  msgid "Back Font weight:"
3902
  msgstr ""
3903
 
3904
+ #: admin/views/Themes.php:2170 admin/views/Themes.php:2488
3905
+ #: admin/views/Themes.php:3026
3906
  msgid "Back padding:"
3907
  msgstr ""
3908
 
3909
+ #: admin/views/Themes.php:2249
3910
  msgid "Thumbnail margin:"
3911
  msgstr ""
3912
 
3913
+ #: admin/views/Themes.php:2255
3914
  msgid "Thumbnail padding:"
3915
  msgstr ""
3916
 
3917
+ #: admin/views/Themes.php:2261
3918
  msgid "Thumbnail border width:"
3919
  msgstr ""
3920
 
3921
+ #: admin/views/Themes.php:2267
3922
  msgid "Thumbnail border style:"
3923
  msgstr ""
3924
 
3925
+ #: admin/views/Themes.php:2281
3926
  msgid "Thumbnail border color:"
3927
  msgstr ""
3928
 
3929
+ #: admin/views/Themes.php:2287
3930
  msgid "Thumbnail border radius:"
3931
  msgstr ""
3932
 
3933
+ #: admin/views/Themes.php:2294
3934
  msgid "Thumbnail box shadow:"
3935
  msgstr ""
3936
 
3937
+ #: admin/views/Themes.php:2310
3938
  msgid "Description alignment:"
3939
  msgstr ""
3940
 
3941
+ #: admin/views/Themes.php:2331
3942
  msgid "Thumbnail hover effect:"
3943
  msgstr ""
3944
 
3945
+ #: admin/views/Themes.php:2358
3946
  msgid "Thumbnails background color:"
3947
  msgstr ""
3948
 
3949
+ #: admin/views/Themes.php:2382
 
 
 
 
3950
  msgid "Thumbnail div padding:"
3951
  msgstr ""
3952
 
3953
+ #: admin/views/Themes.php:2389
3954
  msgid "Thumbnail div background color:"
3955
  msgstr ""
3956
 
3957
+ #: admin/views/Themes.php:2395
3958
  msgid "Thumbnail div border width:"
3959
  msgstr ""
3960
 
3961
+ #: admin/views/Themes.php:2402
3962
  msgid "humbnail div border style:"
3963
  msgstr ""
3964
 
3965
+ #: admin/views/Themes.php:2416
3966
  msgid "Thumbnail div border color:"
3967
  msgstr ""
3968
 
3969
+ #: admin/views/Themes.php:2422
3970
  msgid "Thumbnail div border radius:"
3971
  msgstr ""
3972
 
3973
+ #: admin/views/Themes.php:2462
3974
  msgid "Separator width:"
3975
  msgstr ""
3976
 
3977
+ #: admin/views/Themes.php:2468
3978
  msgid "Separator style:"
3979
  msgstr ""
3980
 
3981
+ #: admin/views/Themes.php:2482
3982
  msgid "Separator color:"
3983
  msgstr ""
3984
 
3985
+ #: admin/views/Themes.php:2495
3986
  msgid "Back font size:"
3987
  msgstr ""
3988
 
3989
+ #: admin/views/Themes.php:2501
3990
  msgid "Back font color:"
3991
  msgstr ""
3992
 
3993
+ #: admin/views/Themes.php:2508
3994
  msgid "Back font family:"
3995
  msgstr ""
3996
 
3997
+ #: admin/views/Themes.php:2511
3998
  msgid "Back font weight:"
3999
  msgstr ""
4000
 
4001
+ #: admin/views/Themes.php:2535
4002
  msgid "Title/description alignment:"
4003
  msgstr ""
4004
 
4005
+ #: admin/views/Themes.php:2549
4006
  msgid "Text div padding:"
4007
  msgstr ""
4008
 
4009
+ #: admin/views/Themes.php:2556
4010
  msgid "Text div border width:"
4011
  msgstr ""
4012
 
4013
+ #: admin/views/Themes.php:2562
4014
  msgid "Text border style:"
4015
  msgstr ""
4016
 
4017
+ #: admin/views/Themes.php:2576
4018
  msgid "Text border color:"
4019
  msgstr ""
4020
 
4021
+ #: admin/views/Themes.php:2582
4022
  msgid "Text div border radius:"
4023
  msgstr ""
4024
 
4025
+ #: admin/views/Themes.php:2589
4026
  msgid "Text background color:"
4027
  msgstr ""
4028
 
4029
+ #: admin/views/Themes.php:2601 admin/views/Themes.php:4682
4030
  msgid "Title padding:"
4031
  msgstr ""
4032
 
4033
+ #: admin/views/Themes.php:2608
4034
  msgid "Title border width:"
4035
  msgstr ""
4036
 
4037
+ #: admin/views/Themes.php:2614
4038
  msgid "Title border style:"
4039
  msgstr ""
4040
 
4041
+ #: admin/views/Themes.php:2628
4042
  msgid "Title border color:"
4043
  msgstr ""
4044
 
4045
+ #: admin/views/Themes.php:2713 admin/views/Themes.php:4102
4046
  msgid "Description font weight:"
4047
  msgstr ""
4048
 
4049
+ #: admin/views/Themes.php:2727
4050
  msgid "Description more size:"
4051
  msgstr ""
4052
 
4053
+ #: admin/views/Themes.php:2733
4054
  msgid "Description more color:"
4055
  msgstr ""
4056
 
4057
+ #: admin/views/Themes.php:3222
4058
  msgid "Buttons and title margin:"
4059
  msgstr ""
4060
 
4061
+ #: admin/views/Themes.php:3229
4062
  msgid "Buttons size:"
4063
  msgstr ""
4064
 
4065
+ #: admin/views/Themes.php:3241
4066
  msgid "Buttons and title border width:"
4067
  msgstr ""
4068
 
4069
+ #: admin/views/Themes.php:3247
4070
  msgid "Buttons and title border style:"
4071
  msgstr ""
4072
 
4073
+ #: admin/views/Themes.php:3261
4074
  msgid "Buttons and title border color:"
4075
  msgstr ""
4076
 
4077
+ #: admin/views/Themes.php:3267
4078
  msgid "Buttons and title border radius:"
4079
  msgstr ""
4080
 
4081
+ #: admin/views/Themes.php:3274
4082
  msgid "Buttons and title background color:"
4083
  msgstr ""
4084
 
4085
+ #: admin/views/Themes.php:3280
4086
  msgid "Buttons and title background transparency:"
4087
  msgstr ""
4088
 
4089
+ #: admin/views/Themes.php:3287
4090
  msgid "Buttons or title alignment:"
4091
  msgstr ""
4092
 
4093
+ #: admin/views/Themes.php:3374
4094
  msgid "Overlay background color:"
4095
  msgstr ""
4096
 
4097
+ #: admin/views/Themes.php:3380
4098
  msgid "Overlay background transparency:"
4099
  msgstr ""
4100
 
4101
+ #: admin/views/Themes.php:3387
4102
  msgid "Lightbox background color:"
4103
  msgstr ""
4104
 
4105
+ #: admin/views/Themes.php:3393
4106
  msgid "Lightbox background transparency:"
4107
  msgstr ""
4108
 
4109
+ #: admin/views/Themes.php:3400
4110
  msgid "Control buttons height:"
4111
  msgstr ""
4112
 
4113
+ #: admin/views/Themes.php:3406
4114
  msgid "Control buttons margin (top):"
4115
  msgstr ""
4116
 
4117
+ #: admin/views/Themes.php:3412
4118
  msgid "Control buttons margin (left):"
4119
  msgstr ""
4120
 
4121
+ #: admin/views/Themes.php:3418
4122
  msgid "Control buttons position:"
4123
  msgstr ""
4124
 
4125
+ #: admin/views/Themes.php:3427
4126
  msgid "Control buttons background color:"
4127
  msgstr ""
4128
 
4129
+ #: admin/views/Themes.php:3433
4130
  msgid "Control buttons container border radius:"
4131
  msgstr ""
4132
 
4133
+ #: admin/views/Themes.php:3440
4134
  msgid "Control buttons container background transparency:"
4135
  msgstr ""
4136
 
4137
+ #: admin/views/Themes.php:3447
4138
  msgid "Control buttons alignment:"
4139
  msgstr ""
4140
 
4141
+ #: admin/views/Themes.php:3461
4142
  msgid "Control buttons color:"
4143
  msgstr ""
4144
 
4145
+ #: admin/views/Themes.php:3467
4146
  msgid "Control buttons transparency:"
4147
  msgstr ""
4148
 
4149
+ #: admin/views/Themes.php:3474
4150
  msgid "Toggle button height:"
4151
  msgstr ""
4152
 
4153
+ #: admin/views/Themes.php:3480
4154
  msgid "Toggle button width:"
4155
  msgstr ""
4156
 
4157
+ #: admin/views/Themes.php:3486
4158
  msgid "Close button border radius:"
4159
  msgstr ""
4160
 
4161
+ #: admin/views/Themes.php:3494
4162
  msgid "Close button border width:"
4163
  msgstr ""
4164
 
4165
+ #: admin/views/Themes.php:3500
4166
  msgid "Close button border style:"
4167
  msgstr ""
4168
 
4169
+ #: admin/views/Themes.php:3514
4170
  msgid "Close button border color:"
4171
  msgstr ""
4172
 
4173
+ #: admin/views/Themes.php:3520
4174
  msgid "Close button box shadow:"
4175
  msgstr ""
4176
 
4177
+ #: admin/views/Themes.php:3527
4178
  msgid "Close button background color:"
4179
  msgstr ""
4180
 
4181
+ #: admin/views/Themes.php:3530 admin/views/Themes.php:3543
4182
+ #: admin/views/Themes.php:3550 admin/views/Themes.php:3557
4183
+ #: admin/views/Themes.php:3564
4184
  msgid "The option does not apply to Full-width lightbox."
4185
  msgstr ""
4186
 
4187
+ #: admin/views/Themes.php:3534
4188
  msgid "Close button transparency:"
4189
  msgstr ""
4190
 
4191
+ #: admin/views/Themes.php:3540
4192
  msgid "Close button width:"
4193
  msgstr ""
4194
 
4195
+ #: admin/views/Themes.php:3547
4196
  msgid "Close button height:"
4197
  msgstr ""
4198
 
4199
+ #: admin/views/Themes.php:3554
4200
  msgid "Close button top:"
4201
  msgstr ""
4202
 
4203
+ #: admin/views/Themes.php:3561
4204
  msgid "Close button right:"
4205
  msgstr ""
4206
 
4207
+ #: admin/views/Themes.php:3568
4208
  msgid "Close button size:"
4209
  msgstr ""
4210
 
4211
+ #: admin/views/Themes.php:3574
4212
  msgid "Close button color:"
4213
  msgstr ""
4214
 
4215
+ #: admin/views/Themes.php:3580
4216
  msgid "Fullscreen close button color:"
4217
  msgstr ""
4218
 
4219
+ #: admin/views/Themes.php:3586
 
4220
  #| msgid "Share on Facebook"
4221
  msgid "Share buttons color:"
4222
+ msgstr ""
4223
 
4224
+ #: admin/views/Themes.php:3622
4225
  msgid "Right, left buttons transparency:"
4226
  msgstr ""
4227
 
4228
+ #: admin/views/Themes.php:3653
4229
  msgid "Right, left, close buttons hover color:"
4230
  msgstr ""
4231
 
4232
+ #: admin/views/Themes.php:3659
4233
  msgid "Right, left buttons color:"
4234
  msgstr ""
4235
 
4236
+ #: admin/views/Themes.php:3698
4237
  msgid "Filmstrip position:"
4238
  msgstr ""
4239
 
4240
+ #: admin/views/Themes.php:3709
4241
  msgid "Filmstrip thumbnail margin:"
4242
  msgstr ""
4243
 
4244
+ #: admin/views/Themes.php:3716
4245
  msgid "Filmstrip thumbnail border width:"
4246
  msgstr ""
4247
 
4248
+ #: admin/views/Themes.php:3722
4249
  msgid "Filmstrip thumbnail border style:"
4250
  msgstr ""
4251
 
4252
+ #: admin/views/Themes.php:3736
4253
  msgid "Filmstrip thumbnail border color:"
4254
  msgstr ""
4255
 
4256
+ #: admin/views/Themes.php:3742
4257
  msgid "Filmstrip thumbnail border radius:"
4258
  msgstr ""
4259
 
4260
+ #: admin/views/Themes.php:3749
4261
  msgid "Filmstrip thumbnail active border width:"
4262
  msgstr ""
4263
 
4264
+ #: admin/views/Themes.php:3755
4265
  msgid "Filmstrip thumbnail active border color:"
4266
  msgstr ""
4267
 
4268
+ #: admin/views/Themes.php:3761
4269
  msgid "Filmstrip thumbnail deactive transparency:"
4270
  msgstr ""
4271
 
4272
+ #: admin/views/Themes.php:3780
4273
  msgid "Filmstrip right, left button background color:"
4274
  msgstr ""
4275
 
4276
+ #: admin/views/Themes.php:3786
4277
  msgid "Rating position:"
4278
  msgstr ""
4279
 
4280
+ #: admin/views/Themes.php:3795
4281
  msgid "Rating alignment:"
4282
  msgstr ""
4283
 
4284
+ #: admin/views/Themes.php:3809
4285
  msgid "Rating icon:"
4286
  msgstr ""
4287
 
4288
+ #: admin/views/Themes.php:3823
4289
  msgid "Rating color:"
4290
  msgstr ""
4291
 
4292
+ #: admin/views/Themes.php:3829
4293
  msgid "Rating hover color:"
4294
  msgstr ""
4295
 
4296
+ #: admin/views/Themes.php:3835
4297
  msgid "Rating size:"
4298
  msgstr ""
4299
 
4300
+ #: admin/views/Themes.php:3841
4301
  msgid "Rating icon count:"
4302
  msgstr ""
4303
 
4304
+ #: admin/views/Themes.php:3847
4305
  msgid "Rating padding:"
4306
  msgstr ""
4307
 
4308
+ #: admin/views/Themes.php:3854
4309
  msgid "Hit counter position:"
4310
  msgstr ""
4311
 
4312
+ #: admin/views/Themes.php:3863
4313
  msgid "Hit counter alignment:"
4314
  msgstr ""
4315
 
4316
+ #: admin/views/Themes.php:3877
4317
  msgid "Hit counter background color:"
4318
  msgstr ""
4319
 
4320
+ #: admin/views/Themes.php:3883
4321
  msgid "Hit counter background transparency:"
4322
  msgstr ""
4323
 
4324
+ #: admin/views/Themes.php:3890
4325
  msgid "Hit counter border width:"
4326
  msgstr ""
4327
 
4328
+ #: admin/views/Themes.php:3896
4329
  msgid "Hit counter border style:"
4330
  msgstr ""
4331
 
4332
+ #: admin/views/Themes.php:3910
4333
  msgid "Hit counter border color:"
4334
  msgstr ""
4335
 
4336
+ #: admin/views/Themes.php:3916
4337
  msgid "Hit counter border radius:"
4338
  msgstr ""
4339
 
4340
+ #: admin/views/Themes.php:3923
4341
  msgid "Hit counter padding:"
4342
  msgstr ""
4343
 
4344
+ #: admin/views/Themes.php:3930
4345
  msgid "Hit counter margin:"
4346
  msgstr ""
4347
 
4348
+ #: admin/views/Themes.php:3937
4349
  msgid "Hit counter font color:"
4350
  msgstr ""
4351
 
4352
+ #: admin/views/Themes.php:3944
4353
  msgid "Hit counter font family:"
4354
  msgstr ""
4355
 
4356
+ #: admin/views/Themes.php:3947
4357
  msgid "Hit counter font weight:"
4358
  msgstr ""
4359
 
4360
+ #: admin/views/Themes.php:3961
4361
  msgid "Hit counter font size:"
4362
  msgstr ""
4363
 
4364
+ #: admin/views/Themes.php:3978
4365
  msgid "Info position:"
4366
  msgstr ""
4367
 
4368
+ #: admin/views/Themes.php:3987
4369
  msgid "Info alignment:"
4370
  msgstr ""
4371
 
4372
+ #: admin/views/Themes.php:4001
4373
  msgid "Info background color:"
4374
  msgstr ""
4375
 
4376
+ #: admin/views/Themes.php:4007
4377
  msgid "Info background transparency:"
4378
  msgstr ""
4379
 
4380
+ #: admin/views/Themes.php:4014
4381
  msgid "Info border width:"
4382
  msgstr ""
4383
 
4384
+ #: admin/views/Themes.php:4020
4385
  msgid "Info border style:"
4386
  msgstr ""
4387
 
4388
+ #: admin/views/Themes.php:4034
4389
  msgid "Info border color:"
4390
  msgstr ""
4391
 
4392
+ #: admin/views/Themes.php:4040
4393
  msgid "Info border radius:"
4394
  msgstr ""
4395
 
4396
+ #: admin/views/Themes.php:4047
4397
  msgid "Info padding:"
4398
  msgstr ""
4399
 
4400
+ #: admin/views/Themes.php:4054
4401
  msgid "Info margin:"
4402
  msgstr ""
4403
 
4404
+ #: admin/views/Themes.php:4123
 
4405
  #| msgid "Comment"
4406
  msgid "Comments Width:"
4407
+ msgstr ""
4408
 
4409
+ #: admin/views/Themes.php:4129
4410
  msgid "Comments position:"
4411
  msgstr ""
4412
 
4413
+ #: admin/views/Themes.php:4138
4414
  msgid "Comments background color:"
4415
  msgstr ""
4416
 
4417
+ #: admin/views/Themes.php:4144
4418
  msgid "Comments font size:"
4419
  msgstr ""
4420
 
4421
+ #: admin/views/Themes.php:4150
4422
  msgid "Comments font color:"
4423
  msgstr ""
4424
 
4425
+ #: admin/views/Themes.php:4157
4426
  msgid "Comments font family:"
4427
  msgstr ""
4428
 
4429
+ #: admin/views/Themes.php:4160
4430
  msgid "Comments author font size:"
4431
  msgstr ""
4432
 
4433
+ #: admin/views/Themes.php:4167
4434
  msgid "Comments date font size:"
4435
  msgstr ""
4436
 
4437
+ #: admin/views/Themes.php:4173
4438
  msgid "Comments body font size:"
4439
  msgstr ""
4440
 
4441
+ #: admin/views/Themes.php:4179
4442
  msgid "Comment input border width:"
4443
  msgstr ""
4444
 
4445
+ #: admin/views/Themes.php:4185
4446
  msgid "omment input border style:"
4447
  msgstr ""
4448
 
4449
+ #: admin/views/Themes.php:4199
4450
  msgid "Comment input border color:"
4451
  msgstr ""
4452
 
4453
+ #: admin/views/Themes.php:4205
4454
  msgid "Comment input border radius:"
4455
  msgstr ""
4456
 
4457
+ #: admin/views/Themes.php:4211
4458
  msgid "Comment input padding:"
4459
  msgstr ""
4460
 
4461
+ #: admin/views/Themes.php:4218
4462
  msgid "Comment input background color:"
4463
  msgstr ""
4464
 
4465
+ #: admin/views/Themes.php:4224
4466
  msgid "Comment button background color:"
4467
  msgstr ""
4468
 
4469
+ #: admin/views/Themes.php:4230
4470
  msgid "Comment button padding:"
4471
  msgstr ""
4472
 
4473
+ #: admin/views/Themes.php:4237
4474
  msgid "Comment button border width:"
4475
  msgstr ""
4476
 
4477
+ #: admin/views/Themes.php:4243
4478
  msgid "Comment button border style:"
4479
  msgstr ""
4480
 
4481
+ #: admin/views/Themes.php:4257
4482
  msgid "Comment button border color:"
4483
  msgstr ""
4484
 
4485
+ #: admin/views/Themes.php:4263
4486
  msgid "omment button border radius:"
4487
  msgstr ""
4488
 
4489
+ #: admin/views/Themes.php:4270
4490
  msgid "Comment separator width:"
4491
  msgstr ""
4492
 
4493
+ #: admin/views/Themes.php:4276
4494
  msgid "Comment separator style:"
4495
  msgstr ""
4496
 
4497
+ #: admin/views/Themes.php:4290
4498
  msgid "Comment separator color:"
4499
  msgstr ""
4500
 
4501
+ #: admin/views/Themes.php:4326 admin/views/Themes.php:4824
4502
  msgid "Font weight:"
4503
  msgstr ""
4504
 
4505
+ #: admin/views/Themes.php:4397 admin/views/Themes.php:4875
4506
  msgid "Button background color:"
4507
  msgstr ""
4508
 
4509
+ #: admin/views/Themes.php:4403
4510
  msgid "Button background transparency:"
4511
  msgstr ""
4512
 
4513
+ #: admin/views/Themes.php:4410
4514
  msgid "Button transition:"
4515
  msgstr ""
4516
 
4517
+ #: admin/views/Themes.php:4436
4518
  msgid "Position:"
4519
  msgstr ""
4520
 
4521
+ #: admin/views/Themes.php:4459
4522
  msgid "Numbering:"
4523
  msgstr ""
4524
 
4525
+ #: admin/views/Themes.php:4468
4526
  msgid "Button text:"
4527
  msgstr ""
4528
 
4529
+ #: admin/views/Themes.php:4473
4530
  msgid "Arrow"
4531
  msgstr ""
4532
 
4533
+ #: admin/views/Themes.php:4474
4534
  msgid "Next, previous buttons values."
4535
  msgstr ""
4536
 
4537
+ #: admin/views/Themes.php:4498
4538
  msgid "Container opacity:"
4539
  msgstr ""
4540
 
4541
+ #: admin/views/Themes.php:4611
4542
  msgid "Carousel margin:"
4543
  msgstr ""
4544
 
4545
+ #: admin/views/Themes.php:4617
4546
  msgid "Image border width:"
4547
  msgstr ""
4548
 
4549
+ #: admin/views/Themes.php:4624
4550
  msgid "Image border style:"
4551
  msgstr ""
4552
 
4553
+ #: admin/views/Themes.php:4639
4554
  msgid "Image border color:"
4555
  msgstr ""
4556
 
4557
+ #: admin/views/Themes.php:4655
4558
  msgid "Title background color:"
4559
  msgstr ""
4560
 
4561
+ #: admin/views/Themes.php:4662
4562
  msgid "Title opacity:"
4563
  msgstr ""
4564
 
4565
+ #: admin/views/Themes.php:4690
4566
  msgid "Title Font family:"
4567
  msgstr ""
4568
 
4569
+ #: admin/views/Themes.php:4698
4570
  msgid "Title color:"
4571
  msgstr ""
4572
 
4573
+ #: admin/views/Themes.php:4791
4574
+ #| msgid "Gallery is empty."
4575
+ msgid "Tags filter type:"
4576
+ msgstr ""
4577
+
4578
+ #: admin/views/Themes.php:4794
4579
+ #| msgid "Reset"
4580
+ msgid "Select Box"
4581
+ msgstr ""
4582
+
4583
+ #: admin/views/Themes.php:4796
4584
+ msgid "Buttons"
4585
+ msgstr ""
4586
+
4587
+ #: admin/views/Themes.php:4879
4588
+ msgid "Active Button background color:"
4589
+ msgstr ""
4590
+
4591
+ #: admin/views/Themes.php:4883
4592
+ #| msgid "Share on Facebook"
4593
+ msgid "Active Button font color:"
4594
+ msgstr ""
4595
+
4596
+ #: admin/views/Themes.php:4887
4597
+ msgid "See All Button Font size:"
4598
+ msgstr ""
4599
+
4600
+ #: admin/views/Themes.php:4893
4601
+ #| msgid "Share on Facebook"
4602
+ msgid "See All Button Font color:"
4603
+ msgstr ""
4604
+
4605
+ #: admin/views/Themes.php:4897
4606
+ msgid "See All Button background color:"
4607
+ msgstr ""
4608
+
4609
+ #: admin/views/Themes.php:4901
4610
+ msgid "See All Button Border width:"
4611
+ msgstr ""
4612
+
4613
+ #: admin/views/Themes.php:4907
4614
+ #| msgid "Order by: "
4615
+ msgid "See All Button Border style:"
4616
+ msgstr ""
4617
+
4618
+ #: admin/views/Themes.php:4917
4619
+ #| msgid "Share on Facebook"
4620
+ msgid "See All Button Border color:"
4621
+ msgstr ""
4622
+
4623
+ #: admin/views/Themes.php:4921
4624
+ msgid "See All Button Border radius:"
4625
+ msgstr ""
4626
+
4627
  #: admin/views/Uninstall.php:31
4628
  msgid "support team"
4629
  msgstr ""
4687
  "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4688
  msgstr ""
4689
 
4690
+ #: admin/views/Widget.php:114 admin/views/WidgetSlideshow.php:82
 
 
 
 
4691
  #: admin/views/WidgetTags.php:78
4692
  msgid "Title:"
4693
  msgstr ""
4694
 
4695
+ #: admin/views/Widget.php:118 admin/views/WidgetTags.php:82
4696
  msgid "Type:"
4697
  msgstr ""
4698
 
4699
+ #: admin/views/Widget.php:120
4700
  msgid "Gallery groups"
4701
  msgstr ""
4702
 
4703
+ #: admin/views/Widget.php:123 admin/views/WidgetSlideshow.php:86
4704
  msgid "Galleries:"
4705
  msgstr ""
4706
 
4707
+ #: admin/views/Widget.php:136
 
4708
  #| msgid "Gallery is empty."
4709
  msgid "Gallery Type:"
4710
+ msgstr ""
4711
 
4712
+ #: admin/views/Widget.php:144
4713
  msgid "Gallery Groups:"
4714
  msgstr ""
4715
 
4716
+ #: admin/views/Widget.php:146
4717
  msgid "All Galleries"
4718
  msgstr ""
4719
 
4720
+ #: admin/views/Widget.php:157
4721
  msgid "Sort:"
4722
  msgstr ""
4723
 
4724
+ #: admin/views/Widget.php:159 frontend/views/view.php:825
4725
  msgid "First"
4726
+ msgstr ""
4727
 
4728
+ #: admin/views/Widget.php:160 frontend/views/view.php:828
4729
  msgid "Last"
4730
+ msgstr ""
4731
 
4732
+ #: admin/views/Widget.php:164
4733
  msgid "Count:"
4734
  msgstr ""
4735
 
4736
+ #: admin/views/Widget.php:168 admin/views/WidgetSlideshow.php:131
4737
  #: admin/views/WidgetTags.php:105
4738
  msgid "Dimensions:"
4739
  msgstr ""
4740
 
4741
+ #: admin/views/Widget.php:173 admin/views/WidgetSlideshow.php:147
4742
  #: admin/views/WidgetTags.php:124
4743
  msgid "Themes:"
4744
  msgstr ""
4745
 
4746
+ #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1709
4747
  msgid "Photo Gallery Slideshow"
4748
  msgstr ""
4749
 
4775
  msgid "Time interval:"
4776
  msgstr ""
4777
 
4778
+ #: admin/views/WidgetTags.php:63 photo-gallery.php:1705
4779
  msgid "Photo Gallery Tags Cloud"
4780
  msgstr ""
4781
 
4835
  msgid "Directory already exists."
4836
  msgstr ""
4837
 
4838
+ #: filemanager/controller.php:275
4839
  msgid "File doesn't exist."
4840
  msgstr ""
4841
 
4842
+ #: filemanager/controller.php:279 filemanager/controller.php:338
4843
+ #: filemanager/controller.php:378
4844
  msgid "Can't rename the file."
4845
  msgstr ""
4846
 
4847
+ #: filemanager/controller.php:417
4848
  msgid "Some of the files couldn't be removed."
4849
  msgstr ""
4850
 
4851
+ #: filemanager/controller.php:528
4852
  msgid "Failed to copy some of the files."
4853
  msgstr ""
4854
 
4855
+ #: filemanager/controller.php:575
4856
  msgid "Failed to move some of the files."
4857
  msgstr ""
4858
 
4880
  msgid "Processing uploaded files..."
4881
  msgstr ""
4882
 
4883
+ #: filemanager/view.php:96
4884
  msgid "Up"
4885
  msgstr ""
4886
 
4887
+ #: filemanager/view.php:97
4888
  msgid "Make a directory"
4889
  msgstr ""
4890
 
4891
+ #: filemanager/view.php:98
4892
  msgid "Rename item"
4893
  msgstr ""
4894
 
4895
+ #: filemanager/view.php:100 framework/howto/data.php:168
4896
  msgid "Copy"
4897
  msgstr ""
4898
 
4899
+ #: filemanager/view.php:101
4900
  msgid "Cut"
4901
  msgstr ""
4902
 
4903
+ #: filemanager/view.php:102
4904
  msgid "Paste"
4905
  msgstr ""
4906
 
4907
+ #: filemanager/view.php:103
 
4908
  #| msgid " item(s)"
4909
  msgid "Remove items"
4910
+ msgstr ""
4911
 
4912
+ #: filemanager/view.php:105
4913
  msgid "Refresh"
4914
  msgstr ""
4915
 
4916
+ #: filemanager/view.php:109
4917
  msgid "View thumbs"
4918
  msgstr ""
4919
 
4920
+ #: filemanager/view.php:110
4921
  msgid "View list"
4922
  msgstr ""
4923
 
4924
+ #: filemanager/view.php:114
4925
  msgid "Upload files"
4926
  msgstr ""
4927
 
4928
+ #: filemanager/view.php:133
 
4929
  #| msgid "Order by: "
4930
  msgid "Order by:"
4931
+ msgstr ""
4932
 
4933
+ #: filemanager/view.php:135
4934
  msgid "Click to sort by name"
4935
  msgstr ""
4936
 
4937
+ #: filemanager/view.php:151
4938
  msgid "Click to sort by size"
4939
  msgstr ""
4940
 
4941
+ #: filemanager/view.php:167
4942
  msgid "Click to sort by date modified"
4943
  msgstr ""
4944
 
4945
+ #: filemanager/view.php:170
4946
  msgid "Date modified"
4947
  msgstr ""
4948
 
4949
+ #: filemanager/view.php:201
4950
  msgid "No items found."
4951
  msgstr ""
4952
 
4953
+ #: filemanager/view.php:216
 
4954
  #| msgid "There are no images in this gallery."
4955
  msgid "Add selected images to gallery"
4956
+ msgstr ""
4957
+
4958
+ #: filemanager/view.php:231 frontend/views/view.php:333
4959
+ msgid "Back"
4960
+ msgstr ""
4961
 
4962
+ #: filemanager/view.php:234
4963
  msgid "Thumbnail Max Dimensions:"
4964
  msgstr ""
4965
 
4966
+ #: filemanager/view.php:235
4967
  msgid "Thumbnail:"
4968
  msgstr ""
4969
 
4970
+ #: filemanager/view.php:240
 
 
 
 
4971
  msgid "Image Max Dimensions:"
4972
  msgstr ""
4973
 
4974
+ #: filemanager/view.php:241
4975
  msgid "Image:"
4976
  msgstr ""
4977
 
4978
+ #: filemanager/view.php:249
4979
  msgid "Drag files here"
4980
  msgstr ""
4981
 
4982
+ #: filemanager/view.php:249
4983
  msgid "Select Files"
4984
  msgstr ""
4985
 
4986
+ #: filemanager/view.php:268
4987
  msgid "No files to upload"
4988
  msgstr ""
4989
 
4990
+ #: filemanager/view.php:295
4991
  msgid "Uploaded"
4992
  msgstr ""
4993
 
4994
+ #: filemanager/view.php:296
4995
  msgid "Upload failed"
4996
  msgstr ""
4997
 
4998
+ #: filemanager/view.php:297
4999
  msgid ""
5000
  "There has been a problem while trying to upload the following images. Please "
5001
  "try to upload them again."
5002
  msgstr ""
5003
 
5004
+ #: filemanager/view.php:298
5005
  msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
5006
  msgstr ""
5007
 
5008
+ #: framework/WDWLibrary.php:87
5009
  msgid "Item successfully saved."
5010
  msgstr ""
5011
 
5012
+ #: framework/WDWLibrary.php:93 framework/WDWLibrary.php:196
5013
  msgid "Failed."
5014
  msgstr ""
5015
 
5016
+ #: framework/WDWLibrary.php:99
5017
  msgid "Item successfully deleted."
5018
  msgstr ""
5019
 
5020
+ #: framework/WDWLibrary.php:105
5021
  msgid "You can't delete default theme."
5022
  msgstr ""
5023
 
5024
+ #: framework/WDWLibrary.php:111
5025
+ msgid "Items successfully deleted."
5026
  msgstr ""
5027
 
5028
+ #: framework/WDWLibrary.php:117
5029
  msgid "You must set watermark type from Options page."
5030
  msgstr ""
5031
 
5032
+ #: framework/WDWLibrary.php:123
5033
  msgid "The item is successfully set as default."
5034
  msgstr ""
5035
 
5036
+ #: framework/WDWLibrary.php:129
5037
  msgid "Options successfully saved."
5038
  msgstr ""
5039
 
5040
+ #: framework/WDWLibrary.php:135
5041
  msgid "Item successfully published."
5042
  msgstr ""
5043
 
5044
+ #: framework/WDWLibrary.php:141
5045
  msgid "Item successfully unpublished."
5046
  msgstr ""
5047
 
5048
+ #: framework/WDWLibrary.php:147
5049
  msgid "Item successfully duplicated."
5050
  msgstr ""
5051
 
5052
+ #: framework/WDWLibrary.php:154
5053
+ msgid "Items successfully unpublished."
5054
  msgstr ""
5055
 
5056
+ #: framework/WDWLibrary.php:160
5057
+ msgid "Ordering successfully saved."
5058
  msgstr ""
5059
 
5060
+ #: framework/WDWLibrary.php:166
5061
  msgid "A term with the name provided already exists."
5062
  msgstr ""
5063
 
5064
+ #: framework/WDWLibrary.php:172
5065
  msgid "Name field is required."
5066
  msgstr ""
5067
 
5068
+ #: framework/WDWLibrary.php:178
5069
  msgid "The slug must be unique."
5070
  msgstr ""
5071
 
5072
+ #: framework/WDWLibrary.php:184
5073
  msgid "Changes must be saved."
5074
  msgstr ""
5075
 
5076
+ #: framework/WDWLibrary.php:190
5077
  msgid "Theme successfully copied."
5078
  msgstr ""
5079
 
5080
+ #: framework/WDWLibrary.php:201
5081
  msgid "Items were reset successfully."
5082
  msgstr ""
5083
 
5084
+ #: framework/WDWLibrary.php:206
5085
  msgid "Watermark successfully set."
5086
  msgstr ""
5087
 
5088
+ #: framework/WDWLibrary.php:211
5089
  msgid "Items successfully rotated."
5090
  msgstr ""
5091
 
5092
+ #: framework/WDWLibrary.php:216
5093
  msgid "Items successfully recreated."
5094
  msgstr ""
5095
 
5096
+ #: framework/WDWLibrary.php:221
5097
  msgid "Items successfully resized."
5098
  msgstr ""
5099
 
5100
+ #: framework/WDWLibrary.php:226
5101
  msgid "Items successfully edited."
5102
  msgstr ""
5103
 
5104
+ #: framework/WDWLibrary.php:241
5105
+ msgid "All items are successfully duplicated."
5106
+ msgstr ""
5107
+
5108
+ #: framework/WDWLibrary.php:246
5109
+ msgid "Connected successfully."
5110
+ msgstr ""
5111
+
5112
+ #: framework/WDWLibrary.php:251
5113
+ msgid "Connect successfully deleted."
5114
+ msgstr ""
5115
+
5116
+ #: framework/WDWLibrary.php:302
5117
  msgid "Click to sort by this item"
5118
  msgstr ""
5119
 
5120
+ #: framework/WDWLibrary.php:317
5121
+ #| msgid "Default"
5122
+ msgid "Default sorting"
5123
  msgstr ""
5124
 
5125
+ #: framework/WDWLibrary.php:318
5126
+ #| msgid "Filename"
5127
+ msgid "File name (Asc)"
5128
+ msgstr ""
5129
+
5130
+ #: framework/WDWLibrary.php:319
5131
+ #| msgid "Filename"
5132
+ msgid "File name (Desc)"
5133
+ msgstr ""
5134
+
5135
+ #: framework/WDWLibrary.php:320
5136
+ msgid "Alt/Title (Asc)"
5137
+ msgstr ""
5138
+
5139
+ #: framework/WDWLibrary.php:321
5140
+ msgid "Alt/Title (Desc)"
5141
+ msgstr ""
5142
+
5143
+ #: framework/WDWLibrary.php:322
5144
+ msgid "Description (Asc)"
5145
+ msgstr ""
5146
+
5147
+ #: framework/WDWLibrary.php:323
5148
+ msgid "Description (Desc)"
5149
+ msgstr ""
5150
+
5151
+ #: framework/WDWLibrary.php:2362
5152
  #, php-format
5153
  msgid "No %s found."
5154
  msgstr ""
5155
 
5156
+ #: framework/WDWLibrary.php:2418
 
5157
  #| msgid "Gallery is empty."
5158
  msgid "Gallery Tags"
5159
+ msgstr ""
5160
 
5161
+ #: framework/WDWLibrary.php:2647
5162
  msgid "resized"
5163
  msgstr ""
5164
 
5165
+ #: framework/WDWLibrary.php:2651
5166
  msgid "Recreate thumbnail"
5167
  msgstr ""
5168
 
5169
+ #: framework/WDWLibrary.php:2652
5170
  msgid "recreated"
5171
  msgstr ""
5172
 
5173
+ #: framework/WDWLibrary.php:2656
5174
  msgid "Rotate left"
5175
  msgstr ""
5176
 
5177
+ #: framework/WDWLibrary.php:2657
 
5178
  #| msgid "Not rated yet."
5179
  msgid "rotated left"
5180
+ msgstr ""
5181
 
5182
+ #: framework/WDWLibrary.php:2661
5183
  msgid "Rotate right"
5184
  msgstr ""
5185
 
5186
+ #: framework/WDWLibrary.php:2662
5187
  msgid "rotated right"
5188
  msgstr ""
5189
 
5190
+ #: framework/WDWLibrary.php:2667 framework/WDWLibrary.php:2680
5191
+ #: framework/WDWLibrary.php:2685 framework/WDWLibrary.php:2690
5192
+ #: framework/WDWLibrary.php:2695 framework/WDWLibrary.php:2718
5193
+ #: framework/WDWLibrary.php:2723
5194
  msgid "edited"
5195
  msgstr ""
5196
 
5197
+ #: framework/WDWLibrary.php:2672
 
5198
  #| msgid "Reset"
5199
  msgid "reset"
5200
+ msgstr ""
5201
 
5202
+ #: framework/WDWLibrary.php:2679
5203
  msgid "Edit Alt/Title"
5204
  msgstr ""
5205
 
5206
+ #: framework/WDWLibrary.php:2684
5207
  msgid "Edit description"
5208
  msgstr ""
5209
 
5210
+ #: framework/WDWLibrary.php:2689
5211
  msgid "Edit redirect URL"
5212
  msgstr ""
5213
 
5214
+ #: framework/WDWLibrary.php:2694
 
5215
  #| msgid " item(s)"
5216
  msgid "Add/Remove tag"
5217
+ msgstr ""
5218
 
5219
+ #: framework/WDWLibrary.php:2717
5220
  msgid "Add pricelist"
5221
  msgstr ""
5222
 
5223
+ #: framework/WDWLibrary.php:2722
5224
  msgid "Remove pricelist"
5225
  msgstr ""
5226
 
5227
+ #: framework/WDWLibrary.php:2828
 
5228
  #| msgid "Share on Facebook"
5229
  msgid "Photo Gallery Premium"
5230
+ msgstr ""
5231
 
5232
+ #: framework/WDWLibrary.php:2831
5233
  msgid ""
5234
  "Get more stunning views with fully customizable themes, powerful lightbox "
5235
  "and much more."
5236
  msgstr ""
5237
 
5238
+ #: framework/WDWLibrary.php:2849
 
 
 
 
5239
  msgid "User guide"
5240
  msgstr ""
5241
 
5242
+ #: framework/WDWLibrary.php:2864 framework/WDWLibrary.php:3009
5243
+ #: framework/WDWLibrary.php:3023 photo-gallery.php:519 photo-gallery.php:1934
5244
  msgid "Ask a question"
5245
  msgstr ""
5246
 
5247
+ #: framework/WDWLibrary.php:2878
5248
  msgid "Forms"
5249
  msgstr ""
5250
 
5251
+ #: framework/WDWLibrary.php:2882 photo-gallery.php:509
5252
  msgid "Add-ons"
5253
  msgstr ""
5254
 
5255
+ #: framework/WDWLibrary.php:2886
5256
  msgid "Premium Version"
5257
  msgstr ""
5258
 
5259
+ #: framework/WDWLibrary.php:2886
5260
+ msgid "Upgrade"
5261
+ msgstr ""
5262
+
5263
+ #: framework/WDWLibrary.php:3005
5264
+ msgid "Unleash the full benefits & "
5265
+ msgstr ""
5266
+
5267
+ #: framework/WDWLibrary.php:3006
5268
+ msgid "features of the Premium Plugin"
5269
+ msgstr ""
5270
+
5271
+ #: framework/WDWLibrary.php:3007
5272
+ msgid "Upgrade Now"
5273
+ msgstr ""
5274
+
5275
+ #: framework/WDWLibrary.php:3134
5276
  #| msgid "Gallery is empty."
5277
  msgid "All tags"
5278
+ msgstr ""
5279
 
5280
+ #: framework/WDWLibraryEmbed.php:338 framework/WDWLibraryEmbed.php:347
5281
+ #: framework/WDWLibraryEmbed.php:349
5282
  msgid "The entered URL is incorrect. Please check the URL and try again."
5283
  msgstr ""
5284
 
5323
  msgstr ""
5324
 
5325
  #: framework/howto/data.php:32
 
5326
  #| msgid "Gallery is empty."
5327
  msgid "Add Gallery Widget"
5328
+ msgstr ""
5329
 
5330
  #: framework/howto/data.php:33
5331
  msgid ""
5428
  "The Photo Gallery will now appear in the section of the site you’ve chosen."
5429
  msgstr ""
5430
 
5431
+ #: framework/howto/howto.php:346 framework/howto/howto.php:364
5432
  msgid "How to ..."
5433
  msgstr ""
5434
 
5435
+ #: framework/howto/howto.php:419
5436
+ #| msgid "Gallery is empty."
5437
+ msgid "Insert Gallery To"
5438
  msgstr ""
5439
 
5440
+ #: framework/howto/howto.php:419
5441
+ #| msgid "Gallery is empty."
5442
+ msgid "Insert Gallery Group To"
5443
+ msgstr ""
5444
+
5445
+ #: framework/screen_recorder/screen_recorder.php:708
5446
+ #| msgid "Share on Facebook"
5447
+ msgid "Photo Gallery Data Sharing"
5448
+ msgstr ""
5449
+
5450
+ #: framework/screen_recorder/screen_recorder.php:709
5451
+ msgid "Disable access"
5452
+ msgstr ""
5453
+
5454
+ #: framework/screen_recorder/screen_recorder.php:709
5455
+ #| msgid "Show comments"
5456
+ msgid "Enable access"
5457
+ msgstr ""
5458
+
5459
+ #: framework/screen_recorder/screen_recorder.php:710
5460
+ msgid ""
5461
+ "Allow 10Web to collect data for the improvement of the Photo Gallery plugin. "
5462
+ "Your data will not be shared with 3rd parties and will be deleted after 30 "
5463
+ "days."
5464
+ msgstr ""
5465
+
5466
+ #: frontend/controllers/BWGControllerGalleryBox.php:80
5467
+ #: frontend/controllers/BWGControllerGalleryBox.php:85
5468
+ #: frontend/controllers/BWGControllerGalleryBox.php:94
5469
+ #: frontend/controllers/BWGControllerGalleryBox.php:102
5470
+ #: frontend/controllers/BWGControllerGalleryBox.php:112
5471
  #, php-format
5472
  msgid "The %s field is required."
5473
  msgstr ""
5474
 
5475
+ #: frontend/controllers/BWGControllerGalleryBox.php:89
5476
+ #, php-format
5477
  #| msgid "This is not a valid email address."
5478
  msgid "The %s field must contain a valid email address."
5479
+ msgstr ""
5480
 
5481
+ #: frontend/controllers/BWGControllerGalleryBox.php:106
 
5482
  #| msgid "Error. Incorrect Verification Code."
5483
  msgid "Incorrect Security code."
5484
+ msgstr ""
5485
 
5486
+ #: frontend/controllers/controller.php:99
 
5487
  #| msgid "There is no gallery selected or the gallery was deleted."
5488
  msgid "There is no album selected or the gallery was deleted."
5489
+ msgstr ""
5490
 
5491
+ #: frontend/controllers/controller.php:287
5492
+ #: frontend/controllers/controller.php:321
5493
  msgid "There is no gallery selected or the gallery was deleted."
5494
+ msgstr ""
5495
 
5496
+ #: frontend/views/BWGViewAlbum_compact_preview.php:77
5497
+ #: frontend/views/BWGViewAlbum_extended_preview.php:86
5498
+ #: frontend/views/BWGViewAlbum_masonry_preview.php:61
5499
  msgid "No results found."
5500
  msgstr ""
5501
 
5502
  #: frontend/views/BWGViewAlbum_extended_preview.php:161
5503
  #: frontend/views/BWGViewAlbum_extended_preview.php:164
5504
  msgid "More"
5505
+ msgstr ""
5506
 
5507
  #: frontend/views/BWGViewAlbum_extended_preview.php:162
5508
  msgid "Hide"
5509
+ msgstr ""
5510
 
5511
+ #: frontend/views/BWGViewBlog_style.php:146
5512
+ #: frontend/views/BWGViewGalleryBox.php:784
5513
  msgid "Show comments"
5514
+ msgstr ""
5515
+
5516
+ #: frontend/views/BWGViewBlog_style.php:152
5517
+ #: frontend/views/BWGViewBlog_style.php:153
5518
+ #: frontend/views/BWGViewGalleryBox.php:794
5519
+ #: frontend/views/BWGViewGalleryBox.php:795
5520
+ msgid "Share on Facebook"
5521
+ msgstr ""
5522
 
5523
+ #: frontend/views/BWGViewBlog_style.php:159
5524
+ #: frontend/views/BWGViewBlog_style.php:160
5525
  #: frontend/views/BWGViewGalleryBox.php:801
5526
  #: frontend/views/BWGViewGalleryBox.php:802
5527
+ msgid "Share on Twitter"
5528
+ msgstr ""
5529
 
5530
+ #: frontend/views/BWGViewBlog_style.php:166
5531
+ #: frontend/views/BWGViewBlog_style.php:167
5532
  #: frontend/views/BWGViewGalleryBox.php:808
5533
  #: frontend/views/BWGViewGalleryBox.php:809
5534
+ msgid "Share on Pinterest"
5535
+ msgstr ""
5536
 
5537
+ #: frontend/views/BWGViewBlog_style.php:173
5538
+ #: frontend/views/BWGViewBlog_style.php:174
5539
  #: frontend/views/BWGViewGalleryBox.php:815
5540
  #: frontend/views/BWGViewGalleryBox.php:816
 
 
 
 
 
 
 
5541
  msgid "Share on Tumblr"
5542
+ msgstr ""
5543
 
5544
+ #: frontend/views/BWGViewBlog_style.php:181
 
5545
  #| msgid "Show comments"
5546
  msgid "Show ecommerce"
5547
+ msgstr ""
5548
 
5549
  #: frontend/views/BWGViewDownload_gallery.php:53
 
5550
  #| msgid "There are no images in this gallery."
5551
  msgid "There are no images to download."
5552
+ msgstr ""
5553
 
5554
+ #: frontend/views/BWGViewGalleryBox.php:629
5555
  msgid "The image has been deleted."
5556
+ msgstr ""
5557
 
5558
+ #: frontend/views/BWGViewGalleryBox.php:772
5559
+ #: frontend/views/BWGViewThumbnails.php:42
5560
+ #: frontend/views/BWGViewThumbnails_masonry.php:51
5561
+ #: frontend/views/BWGViewThumbnails_mosaic.php:87 photo-gallery.php:1452
5562
+ #: photo-gallery.php:1455
5563
  msgid "Play"
5564
+ msgstr ""
5565
 
5566
+ #: frontend/views/BWGViewGalleryBox.php:776 photo-gallery.php:1445
5567
  msgid "Maximize"
5568
+ msgstr ""
5569
 
5570
+ #: frontend/views/BWGViewGalleryBox.php:780 photo-gallery.php:1446
5571
  msgid "Fullscreen"
5572
+ msgstr ""
5573
 
5574
+ #: frontend/views/BWGViewGalleryBox.php:782 photo-gallery.php:1458
5575
  msgid "Show info"
5576
+ msgstr ""
5577
 
5578
+ #: frontend/views/BWGViewGalleryBox.php:786 photo-gallery.php:1460
5579
  msgid "Show rating"
5580
+ msgstr ""
5581
 
5582
+ #: frontend/views/BWGViewGalleryBox.php:788
5583
+ msgid "Zoom in-out"
5584
+ msgstr ""
5585
+
5586
+ #: frontend/views/BWGViewGalleryBox.php:823
5587
  msgid "Open image in original size."
5588
+ msgstr ""
5589
 
5590
+ #: frontend/views/BWGViewGalleryBox.php:838
5591
  msgid "Download original image"
5592
+ msgstr ""
5593
 
5594
+ #: frontend/views/BWGViewGalleryBox.php:845
5595
+ #: frontend/views/BWGViewThumbnails.php:46
5596
+ #: frontend/views/BWGViewThumbnails_masonry.php:55
5597
+ #: frontend/views/BWGViewThumbnails_mosaic.php:105
5598
  msgid "Ecommerce"
5599
  msgstr ""
5600
 
5601
+ #: frontend/views/BWGViewGalleryBox.php:871
5602
  msgid "Hits: "
5603
+ msgstr ""
5604
 
5605
+ #: frontend/views/BWGViewGalleryBox.php:893
5606
  msgid "Rated."
5607
+ msgstr ""
5608
 
5609
+ #: frontend/views/BWGViewGalleryBox.php:1016 photo-gallery.php:1443
5610
  msgid "Hide Comments"
5611
+ msgstr ""
5612
 
5613
+ #: frontend/views/BWGViewGalleryBox.php:1033
5614
  msgid "Verification Code"
5615
+ msgstr ""
5616
 
5617
+ #: frontend/views/BWGViewGalleryBox.php:1056
5618
  #, php-format
5619
  msgid ""
5620
  "I consent collecting this data and processing it according to %s of this "
5621
  "website."
5622
  msgstr ""
5623
 
5624
+ #: frontend/views/BWGViewGalleryBox.php:1057
5625
  #: wd/templates/display_subscribe.php:39
5626
  msgid "Privacy Policy"
5627
  msgstr ""
5628
 
5629
+ #: frontend/views/BWGViewGalleryBox.php:1066
5630
  msgid "Submit"
5631
+ msgstr ""
5632
 
5633
+ #: frontend/views/BWGViewGalleryBox.php:1068
5634
  msgid "Your comment is awaiting moderation"
5635
+ msgstr ""
5636
 
5637
+ #: frontend/views/BWGViewGalleryBox.php:1103 photo-gallery.php:1441
 
5638
  #| msgid "Hide Comments"
5639
  msgid "Hide Ecommerce"
5640
+ msgstr ""
5641
 
5642
+ #: frontend/views/BWGViewGalleryBox.php:1109
5643
+ #: frontend/views/BWGViewGalleryBox.php:1292
5644
  msgid "Add to cart"
5645
  msgstr ""
5646
 
5647
+ #: frontend/views/BWGViewGalleryBox.php:1112
 
5648
  #| msgid " item(s)"
5649
  msgid "items"
5650
+ msgstr ""
5651
 
5652
+ #: frontend/views/BWGViewGalleryBox.php:1120
5653
  msgid "Prints and products"
5654
  msgstr ""
5655
 
5656
+ #: frontend/views/BWGViewGalleryBox.php:1127
5657
  msgid "Downloads"
5658
  msgstr ""
5659
 
5660
+ #: frontend/views/BWGViewGalleryBox.php:1141
5661
+ #: frontend/views/BWGViewGalleryBox.php:1253
5662
  msgid "Price"
5663
  msgstr ""
5664
 
5665
+ #: frontend/views/BWGViewGalleryBox.php:1161
5666
  msgid "Count"
5667
  msgstr ""
5668
 
5669
+ #: frontend/views/BWGViewGalleryBox.php:1241
5670
+ #: frontend/views/BWGViewGalleryBox.php:1285
5671
  msgid "Total"
5672
  msgstr ""
5673
 
5674
+ #: frontend/views/BWGViewGalleryBox.php:1252
5675
  msgid "Dimensions"
5676
  msgstr ""
5677
 
5678
+ #: frontend/views/BWGViewGalleryBox.php:1254
5679
  msgid "Choose"
5680
  msgstr ""
5681
 
5682
+ #: frontend/views/BWGViewGalleryBox.php:1293
5683
  msgid "View cart"
5684
  msgstr ""
5685
 
5686
+ #: frontend/views/BWGViewGalleryBox.php:1404
5687
  msgid "Delete Comment"
5688
+ msgstr ""
5689
 
5690
+ #: frontend/views/BWGViewThumbnails.php:45
5691
+ #: frontend/views/BWGViewThumbnails_masonry.php:54
5692
+ #: frontend/views/BWGViewThumbnails_mosaic.php:104
5693
  msgid "Open"
5694
  msgstr ""
5695
 
5696
+ #: frontend/views/view.php:157 frontend/views/view.php:259
 
5697
  #| msgid "There are no images in this gallery."
5698
  msgid "There are no images."
5699
+ msgstr ""
5700
 
5701
+ #: frontend/views/view.php:160 frontend/views/view.php:262
 
5702
  #| msgid "Show comments"
5703
  msgid "No Images found."
5704
+ msgstr ""
5705
 
5706
+ #: frontend/views/view.php:411
 
5707
  #| msgid "Download original image"
5708
  msgid "Download gallery"
5709
+ msgstr ""
5710
 
5711
+ #: frontend/views/view.php:465 frontend/views/view.php:474
5712
+ #: photo-gallery.php:1448
5713
  msgid "SEARCH..."
5714
  msgstr ""
5715
 
5716
+ #: frontend/views/view.php:513
 
5717
  #| msgid "Order by: "
5718
  msgid "Order by Default"
5719
+ msgstr ""
5720
+
5721
+ #: frontend/views/view.php:627
5722
+ #| msgid "Gallery is empty."
5723
+ msgid "All Tags"
5724
+ msgstr ""
5725
+
5726
+ #: frontend/views/view.php:637 photo-gallery.php:1467
5727
+ #| msgid "Gallery is empty."
5728
+ msgid "see all tags"
5729
+ msgstr ""
5730
 
5731
+ #: frontend/views/view.php:820
5732
  msgid " item(s)"
5733
+ msgstr ""
5734
 
5735
+ #: frontend/views/view.php:826
5736
  msgid "Previous"
5737
+ msgstr ""
5738
 
5739
+ #: frontend/views/view.php:827
5740
  msgid "Next"
5741
+ msgstr ""
5742
 
5743
+ #: frontend/views/view.php:847
5744
  msgid "Go to the first page"
5745
+ msgstr ""
5746
 
5747
+ #: frontend/views/view.php:848
5748
  msgid "Go to the previous page"
5749
+ msgstr ""
5750
 
5751
+ #: frontend/views/view.php:858
5752
  msgid "Go to the next page"
5753
+ msgstr ""
5754
 
5755
+ #: frontend/views/view.php:859
5756
  msgid "Go to the last page"
5757
+ msgstr ""
5758
 
5759
+ #: frontend/views/view.php:872
5760
  msgid "Load More..."
5761
+ msgstr ""
5762
 
5763
  #: insert.php:137
5764
  msgid "Light"
5768
  msgid "Dark"
5769
  msgstr ""
5770
 
5771
+ #: photo-gallery.php:290
5772
  msgid "Help"
5773
  msgstr ""
5774
 
5775
+ #: photo-gallery.php:337
5776
  msgid "10WEB Plugins"
5777
  msgstr ""
5778
 
5779
+ #: photo-gallery.php:358
5780
  msgid ""
5781
  "When you leave a comment on this site, we send your name, email\n"
5782
  " address, IP address and comment text to example.com. Example.com "
5784
  " not retain your personal data."
5785
  msgstr ""
5786
 
5787
+ #: photo-gallery.php:367
5788
  #, php-format
5789
  msgid "Select %s"
5790
  msgstr ""
5791
 
5792
+ #: photo-gallery.php:393
5793
  msgid "Nothing selected."
5794
  msgstr ""
5795
 
5796
+ #: photo-gallery.php:394
5797
  msgid "- Select -"
5798
  msgstr ""
5799
 
5800
+ #: photo-gallery.php:428
5801
  #, php-format
5802
  msgid ""
5803
  "Image edit functionality is not supported by your web host. We highly "
5805
  "library."
5806
  msgstr ""
5807
 
5808
+ #: photo-gallery.php:428
5809
  msgid "PHP GD"
5810
  msgstr ""
5811
 
5812
+ #: photo-gallery.php:429
5813
  #, php-format
5814
  msgid ""
5815
  "Without image editing functions, image thumbnails will not be created, thus "
5817
  "Gallery's features, e.g. %s, %s, and %s, will not be available."
5818
  msgstr ""
5819
 
5820
+ #: photo-gallery.php:429
5821
  msgid "crop"
5822
  msgstr ""
5823
 
5824
+ #: photo-gallery.php:429
5825
  msgid "edit"
5826
  msgstr ""
5827
 
5828
+ #: photo-gallery.php:429
 
5829
  #| msgid "Not rated yet."
5830
  msgid "rotate"
5831
+ msgstr ""
5832
 
5833
+ #: photo-gallery.php:438
5834
  #, php-format
5835
  msgid ""
5836
  "Image edit functionality was just activated on your web host. Please go to "
5837
  "%s, navigate to %s tab and press %s button."
5838
  msgstr ""
5839
 
5840
+ #: photo-gallery.php:438
5841
  msgid "Options"
5842
  msgstr ""
5843
 
5844
+ #: photo-gallery.php:438
 
5845
  #| msgid "Previous"
5846
  msgid "Options page"
5847
+ msgstr ""
5848
 
5849
+ #: photo-gallery.php:482
5850
  msgid "Add Galleries/Images"
5851
  msgstr ""
5852
 
5853
+ #: photo-gallery.php:548
5854
  #, php-format
5855
  msgid "The controller %s file not exist."
5856
  msgstr ""
5857
 
5858
+ #: photo-gallery.php:553
5859
  #, php-format
5860
  msgid "The view %s file not exist."
5861
  msgstr ""
5862
 
5863
+ #: photo-gallery.php:569 photo-gallery.php:574
5864
  #, php-format
5865
  msgid "The %s class not exist."
5866
  msgstr ""
5867
 
5868
+ #: photo-gallery.php:622 photo-gallery.php:657
5869
  msgid "Do you want to delete selected items?"
5870
  msgstr ""
5871
 
5872
+ #: photo-gallery.php:623 photo-gallery.php:652
5873
  msgid "You must select at least one item."
5874
  msgstr ""
5875
 
5876
+ #: photo-gallery.php:624
5877
  msgid "Do you want to remove pricelist from selected items?"
5878
  msgstr ""
5879
 
5880
+ #: photo-gallery.php:626 photo-gallery.php:684
5881
+ msgid " view is<br>available in Premium Version"
5882
+ msgstr ""
5883
+
5884
+ #: photo-gallery.php:632 photo-gallery.php:1434
5885
  msgid "field is required."
5886
  msgstr ""
5887
 
5888
+ #: photo-gallery.php:633
5889
  msgid "You must select an image file."
5890
  msgstr ""
5891
 
5892
+ #: photo-gallery.php:634
5893
  msgid "You must select an audio file."
5894
  msgstr ""
5895
 
5896
+ #: photo-gallery.php:635
5897
  msgid ""
5898
+ "You do not have Instagram access token. Sign in with Instagram in Global "
5899
+ "Settings -> Advanced tab -> Social. "
5900
  msgstr ""
5901
 
5902
+ #: photo-gallery.php:636
5903
  msgid ""
5904
  "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5905
  "options."
5906
  msgstr ""
5907
 
5908
+ #: photo-gallery.php:637
5909
+ msgid "Instagram recent post number must be between 1 and 25."
5910
  msgstr ""
5911
 
5912
+ #: photo-gallery.php:638
5913
  msgid ""
5914
  "Gallery type cannot be changed, since it is not empty. In case you would "
5915
  "like to have Instagram gallery, please create a new one."
5916
  msgstr ""
5917
 
5918
+ #: photo-gallery.php:639
5919
  msgid "Please enter url to embed."
5920
  msgstr ""
5921
 
5922
+ #: photo-gallery.php:640
5923
  msgid "Error: cannot get response from the server."
5924
  msgstr ""
5925
 
5926
+ #: photo-gallery.php:641
5927
  msgid "Error: something wrong happened at the server."
5928
  msgstr ""
5929
 
5930
+ #: photo-gallery.php:642
5931
  msgid "Error"
5932
  msgstr ""
5933
 
5934
+ #: photo-gallery.php:644
5935
  msgid "Hide order column"
5936
  msgstr ""
5937
 
5938
+ #: photo-gallery.php:645
5939
  #, php-format
5940
  msgid "Selected %d item."
5941
  msgstr ""
5942
 
5943
+ #: photo-gallery.php:646
5944
  #, php-format
5945
  msgid "Selected %d items."
5946
  msgstr ""
5947
 
5948
+ #: photo-gallery.php:647
5949
+ msgid "Items Successfully Saved."
5950
  msgstr ""
5951
 
5952
+ #: photo-gallery.php:648
5953
+ msgid "Item Successfully Recovered."
5954
  msgstr ""
5955
 
5956
+ #: photo-gallery.php:649
5957
+ msgid "Item Successfully Published."
5958
  msgstr ""
5959
 
5960
+ #: photo-gallery.php:650
5961
+ msgid "Item Successfully Unpublished."
5962
  msgstr ""
5963
 
5964
+ #: photo-gallery.php:651
5965
+ msgid "Item Successfully Deleted."
5966
  msgstr ""
5967
 
5968
+ #: photo-gallery.php:653
5969
+ msgid "Items Successfully resized."
5970
  msgstr ""
5971
 
5972
+ #: photo-gallery.php:654
5973
+ msgid "Watermarks Successfully Set."
5974
  msgstr ""
5975
 
5976
+ #: photo-gallery.php:655
5977
+ msgid "Items Successfully Reset."
5978
  msgstr ""
5979
 
5980
+ #: photo-gallery.php:656
5981
  msgid "Save Tag"
5982
  msgstr ""
5983
 
5984
+ #: photo-gallery.php:658 photo-gallery.php:660
5985
  msgid ""
5986
  "This action will reset gallery type to mixed and will save that choice. You "
5987
  "cannot undo it."
5988
  msgstr ""
5989
 
5990
+ #: photo-gallery.php:659
5991
  msgid ""
5992
  "After pressing save/apply buttons, you cannot change gallery type back to "
5993
  "Instagram!"
5994
  msgstr ""
5995
 
5996
+ #: photo-gallery.php:661
5997
  msgid "Insert"
5998
  msgstr ""
5999
 
6000
+ #: photo-gallery.php:662
6001
  msgid "Failed to import images from media library"
6002
  msgstr ""
6003
 
6004
+ #: photo-gallery.php:663
6005
  msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
6006
  msgstr ""
6007
 
6008
+ #: photo-gallery.php:667
6009
  msgid "Thumbnails successfully recreated."
6010
  msgstr ""
6011
 
6012
+ #: photo-gallery.php:668
6013
  msgid "All images are successfully reset."
6014
  msgstr ""
6015
 
6016
+ #: photo-gallery.php:1030
6017
  msgid "Insert Photo Gallery"
6018
  msgstr ""
6019
 
6020
+ #: photo-gallery.php:1032
6021
  msgid "Add Photo Gallery"
6022
  msgstr ""
6023
 
6024
+ #: photo-gallery.php:1435
6025
  msgid "This is not a valid email address."
6026
+ msgstr ""
6027
 
6028
+ #: photo-gallery.php:1436
6029
  msgid "There are no images matching your search."
6030
+ msgstr ""
6031
 
6032
+ #: photo-gallery.php:1437
6033
  msgid "Select Tag"
6034
  msgstr ""
6035
 
6036
+ #: photo-gallery.php:1438
 
6037
  #| msgid "Order by: "
6038
  msgid "Order By"
6039
+ msgstr ""
6040
 
6041
+ #: photo-gallery.php:1440
 
6042
  #| msgid "Show comments"
6043
  msgid "Show Ecommerce"
6044
+ msgstr ""
6045
 
6046
+ #: photo-gallery.php:1442
6047
  msgid "Show Comments"
6048
+ msgstr ""
6049
 
6050
+ #: photo-gallery.php:1444
6051
  msgid "Restore"
6052
+ msgstr ""
6053
 
6054
+ #: photo-gallery.php:1447
6055
  msgid "Exit Fullscreen"
6056
+ msgstr ""
6057
 
6058
+ #: photo-gallery.php:1449
6059
  msgid "No tags found"
6060
  msgstr ""
6061
 
6062
+ #: photo-gallery.php:1450
6063
  msgid "All tags selected"
6064
  msgstr ""
6065
 
6066
+ #: photo-gallery.php:1451
6067
  msgid "tags selected"
6068
  msgstr ""
6069
 
6070
+ #: photo-gallery.php:1453 photo-gallery.php:1456
6071
  msgid "Pause"
6072
+ msgstr ""
6073
 
6074
+ #: photo-gallery.php:1457
6075
  msgid "Hide info"
6076
+ msgstr ""
6077
 
6078
+ #: photo-gallery.php:1459
6079
  msgid "Hide rating"
6080
+ msgstr ""
6081
 
6082
+ #: photo-gallery.php:1461
6083
  msgid "Ok"
6084
  msgstr ""
6085
 
6086
+ #: photo-gallery.php:1468
6087
+ msgid "see less tags"
6088
+ msgstr ""
6089
+
6090
+ #: photo-gallery.php:1512
6091
  msgid ""
6092
  "Photo Gallery is a fully responsive gallery plugin with advanced "
6093
  "functionality. It allows having different image galleries for your posts and "
6095
  "gallery groups, and provide descriptions and tags."
6096
  msgstr ""
6097
 
6098
+ #: photo-gallery.php:1516
6099
  msgid "Easy Set-up and Management"
6100
  msgstr ""
6101
 
6102
+ #: photo-gallery.php:1517
6103
  msgid ""
6104
  "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
6105
  "Use the File Manager with single-step and easy-to-manage functionality to "
6107
  "use WordPress built in media uploader."
6108
  msgstr ""
6109
 
6110
+ #: photo-gallery.php:1520
6111
  msgid "Unlimited Photos and Albums"
6112
  msgstr ""
6113
 
6114
+ #: photo-gallery.php:1521
6115
  msgid ""
6116
  "The plugin allows creating unlimited number of galleries or gallery groups "
6117
  "and upload images in each gallery as many as you wish. Add single/ multiple "
6119
  "visual shortcodes for an easier management."
6120
  msgstr ""
6121
 
6122
+ #: photo-gallery.php:1524
6123
  msgid "Customizable"
6124
  msgstr ""
6125
 
6126
+ #: photo-gallery.php:1525
6127
  msgid ""
6128
  "The gallery plugin is easily customizable. You can edit themes changing "
6129
  "sizes and colors for different features. Specify the number of images to "
6131
  "thumbnail images by cropping, flipping and rotating them."
6132
  msgstr ""
6133
 
6134
+ #: photo-gallery.php:1528
6135
  msgid "10 View Options"
6136
  msgstr ""
6137
 
6138
+ #: photo-gallery.php:1529
6139
  msgid ""
6140
  "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
6141
  "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
6143
  "Ecommerce."
6144
  msgstr ""
6145
 
6146
+ #: photo-gallery.php:1532
6147
  msgid "Audio and Video Support"
6148
  msgstr ""
6149
 
6150
+ #: photo-gallery.php:1533
6151
  msgid ""
6152
  "You can include both videos and images within a single gallery. WordPress "
6153
  "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
6154
  "It's also possible to add audio tracks for the image slideshow."
6155
  msgstr ""
6156
 
6157
+ #: photo-gallery.php:1539
6158
  msgid "Installing"
6159
  msgstr ""
6160
 
6161
+ #: photo-gallery.php:1544
6162
  msgid "Creating/Editing Galleries"
6163
  msgstr ""
6164
 
6165
+ #: photo-gallery.php:1548
6166
  msgid "Instagram Gallery"
6167
  msgstr ""
6168
 
6169
+ #: photo-gallery.php:1554
6170
  msgid "Creating/Editing Tags"
6171
  msgstr ""
6172
 
6173
+ #: photo-gallery.php:1559
6174
  msgid "Creating/Editing Albums"
6175
  msgstr ""
6176
 
6177
+ #: photo-gallery.php:1564
6178
  msgid "Editing Options"
6179
  msgstr ""
6180
 
6181
+ #: photo-gallery.php:1568
6182
  msgid "Global Options"
6183
  msgstr ""
6184
 
6185
+ #: photo-gallery.php:1584
6186
  msgid "Album Options"
6187
  msgstr ""
6188
 
6189
+ #: photo-gallery.php:1592
6190
  msgid "Thumbnail Options"
6191
  msgstr ""
6192
 
6193
+ #: photo-gallery.php:1596
6194
  msgid "Image Options"
6195
  msgstr ""
6196
 
6197
+ #: photo-gallery.php:1600
6198
  msgid "Social Options"
6199
  msgstr ""
6200
 
6201
+ #: photo-gallery.php:1604
6202
  msgid "Carousel Options"
6203
  msgstr ""
6204
 
6205
+ #: photo-gallery.php:1610
6206
  msgid "Creating/Editing Themes"
6207
  msgstr ""
6208
 
6209
+ #: photo-gallery.php:1634
6210
  msgid "Compact Album"
6211
  msgstr ""
6212
 
6213
+ #: photo-gallery.php:1638
6214
  msgid "Masonry Album"
6215
  msgstr ""
6216
 
6217
+ #: photo-gallery.php:1642
6218
  msgid "Extended Album"
6219
  msgstr ""
6220
 
6221
+ #: photo-gallery.php:1654
6222
  msgid "Page Navigation"
6223
  msgstr ""
6224
 
6225
+ #: photo-gallery.php:1664
6226
  msgid "Generating Shortcode"
6227
  msgstr ""
6228
 
6229
+ #: photo-gallery.php:1669
 
6230
  #| msgid "Hide Comments"
6231
  msgid "Editing Comments"
6232
+ msgstr ""
6233
 
6234
+ #: photo-gallery.php:1674
6235
  msgid "Editing Ratings"
6236
  msgstr ""
6237
 
6238
+ #: photo-gallery.php:1679
6239
  msgid "Publishing the Created Photo Gallery"
6240
  msgstr ""
6241
 
6242
+ #: photo-gallery.php:1683
6243
  msgid "General Parameters"
6244
  msgstr ""
6245
 
6246
+ #: photo-gallery.php:1687
6247
  msgid "Lightbox Parameters"
6248
  msgstr ""
6249
 
6250
+ #: photo-gallery.php:1697
6251
  msgid "Publishing Photo Gallery Widgets"
6252
  msgstr ""
6253
 
6254
+ #: photo-gallery.php:1701
6255
  msgid "Tag Cloud"
6256
  msgstr ""
6257
 
6258
+ #: photo-gallery.php:1713
6259
  msgid "Photo Gallery Widget"
6260
  msgstr ""
6261
 
6262
+ #: photo-gallery.php:1784
6263
  msgid "Albums"
6264
  msgstr ""
6265
 
6266
+ #: photo-gallery.php:1799
 
6267
  #| msgid "Gallery is empty."
6268
  msgid "Gallery tags"
6269
+ msgstr ""
6270
 
6271
+ #: photo-gallery.php:1848
6272
  msgid "Photo gallery plugin autoupdate interval."
6273
+ msgstr ""
6274
 
6275
+ #: photo-gallery.php:1891
6276
  #, php-format
6277
  msgid "Please update the %s add-on to start using."
6278
  msgstr ""
6279
 
6280
+ #: photo-gallery.php:1892
6281
  #, php-format
6282
  msgid "Please update the %s add-ons to start using."
6283
  msgstr ""
6284
 
6285
+ #: photo-gallery.php:1935
 
6286
  #| msgid "Rated."
6287
  msgid "Rate"
 
 
 
 
 
 
 
6288
  msgstr ""
6289
 
6290
+ #: wd/includes/deactivate.php:22
6291
  msgid "Technical problems / hard to use"
6292
  msgstr ""
6293
 
6294
+ #: wd/includes/deactivate.php:26
6295
  msgid "Free version is limited"
6296
  msgstr ""
6297
 
6298
+ #: wd/includes/deactivate.php:30
6299
  msgid "Upgrading to paid version"
6300
  msgstr ""
6301
 
6302
+ #: wd/includes/deactivate.php:34
6303
  msgid "Temporary deactivation"
6304
  msgstr ""
6305
 
6306
+ #: wd/includes/notices.php:208
6307
  msgid "Leave A Review?"
6308
  msgstr ""
6309
 
6310
+ #: wd/includes/notices.php:209
6311
  #, php-format
6312
  msgid ""
6313
  "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
6314
  "review on WordPress.org?"
6315
  msgstr ""
6316
 
6317
+ #: wd/includes/notices.php:210
6318
  msgid "Sure! I'd love to!"
6319
  msgstr ""
6320
 
6321
+ #: wd/includes/notices.php:211
6322
  msgid "I've already left a review"
6323
  msgstr ""
6324
 
6325
+ #: wd/includes/notices.php:212
6326
  msgid "Maybe Later"
6327
  msgstr ""
6328
 
6329
+ #: wd/includes/notices.php:213
6330
  msgid "Never show again"
6331
  msgstr ""
6332
 
6388
  msgstr ""
6389
 
6390
  #: wd/templates/display_overview.php:43
 
6391
  #| msgid "Back"
6392
  msgid "Backup"
6393
+ msgstr ""
6394
 
6395
  #: wd/templates/display_overview.php:44
6396
  msgid ""
6443
  msgstr ""
6444
 
6445
  #: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
 
6446
  #| msgid "Load More..."
6447
  msgid "Learn More"
6448
+ msgstr ""
6449
 
6450
  #: wd/templates/display_overview.php:81
6451
  msgid " features you get!"
6513
  msgid "Terms of Use"
6514
  msgstr ""
6515
 
6516
+ #, fuzzy
6517
+ #~| msgid "Gallery is empty."
6518
+ #~ msgid "Gallery defaults"
6519
+ #~ msgstr "Gallery is empty."
6520
+
6521
+ #, fuzzy
6522
+ #~| msgid "Gallery is empty."
6523
+ #~ msgid "Gallery Group defaults"
6524
+ #~ msgstr "Gallery is empty."
6525
 
6526
  #, fuzzy
6527
  #~| msgid "There are no images in this gallery."
photo-gallery.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin
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.6.2
7
  * Author: Photo Gallery Team
8
  * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -105,8 +105,8 @@ final class BWG {
105
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
106
  $this->front_url = $this->plugin_url;
107
  $this->main_file = plugin_basename(__FILE__);
108
- $this->plugin_version = '1.6.2';
109
- $this->db_version = '1.6.2';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
@@ -989,6 +989,11 @@ final class BWG {
989
  }
990
  require_once(BWG()->plugin_dir . '/framework/WDWLibrary.php');
991
  $page = WDWLibrary::get('action');
 
 
 
 
 
992
  if (($page != '') && (($page == 'addImages') || ($page == 'addMusic'))) {
993
  if (!WDWLibrary::verify_nonce($page)) {
994
  die('Sorry, your nonce did not verify.');
3
  * Plugin Name: Photo Gallery
4
  * Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin
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.6.3
7
  * Author: Photo Gallery Team
8
  * Author URI: https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
105
  $this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
106
  $this->front_url = $this->plugin_url;
107
  $this->main_file = plugin_basename(__FILE__);
108
+ $this->plugin_version = '1.6.3';
109
+ $this->db_version = '1.6.3';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
989
  }
990
  require_once(BWG()->plugin_dir . '/framework/WDWLibrary.php');
991
  $page = WDWLibrary::get('action');
992
+ $filemanager_sort_by = WDWLibrary::get('sort_by', 0);
993
+ if ($filemanager_sort_by) {
994
+ $filemanager_sort_order = WDWLibrary::get('sort_order', 'asc');
995
+ update_option('bwg_filemanager_sorting', [get_current_user_id() => ['sort_by' => $filemanager_sort_by, 'sort_order' => $filemanager_sort_order]]);
996
+ }
997
  if (($page != '') && (($page == 'addImages') || ($page == 'addMusic'))) {
998
  if (!WDWLibrary::verify_nonce($page)) {
999
  die('Sorry, your nonce did not verify.');
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,wdsupport,photogallerysupport,10web
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: 4.6
5
  Tested up to: 5.9
6
- Stable tag: 1.6.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -282,6 +282,16 @@ Choose whether to display random or the first/last specific number of images.
282
 
283
  == Changelog ==
284
 
 
 
 
 
 
 
 
 
 
 
285
  = 1.6.2 =
286
  * Changed: Instagram API v13.0.
287
  * Changed: Connect to your Instagram account part.
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: 4.6
5
  Tested up to: 5.9
6
+ Stable tag: 1.6.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
282
 
283
  == Changelog ==
284
 
285
+ = 1.6.3 =
286
+ * Improved: Storable sort order in filemanager.
287
+ * Improved: Storable sort order in list views.
288
+ * Fixed: SQL Injection.
289
+ * Fixed: Cross-Site Scripting.
290
+ * Fixed: Slideshow responsiveness.
291
+ * Fixed: Add tag functionality on PHP 8.
292
+ * Fixed: Open gallery in new tab from gallery group.
293
+ * Fixed: Thumbnails alignment with enabled images titles.
294
+
295
  = 1.6.2 =
296
  * Changed: Instagram API v13.0.
297
  * Changed: Connect to your Instagram account part.