Photo Gallery by WD – Responsive Photo Gallery - Version 1.6.0

Version Description

  • Added: Slideshow filmstrip with fix count of thumbnails.
  • Improved: Russian translation.
  • Fixed: Security issue.
  • Fixed: XSS vulnerability reported by Nikita Podotykin of Positive Technologies.
  • Fixed: Zoom functionality.
  • Fixed: Filmstrip images load with enabled lazy load.
  • Fixed: Tags count on image delete.
Download this release

Release Info

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

Code changes from version 1.5.87 to 1.6.0

admin/controllers/Shortcode.php CHANGED
@@ -24,7 +24,7 @@ class ShortcodeController_bwg {
24
 
25
  public function display() {
26
  $params = array();
27
- $params['gutenberg_callback'] = WDWLibrary::get('callback');
28
  $params['gutenberg_id'] = WDWLibrary::get('edit', 0, 'intval');
29
  $params['elementor_callback'] = WDWLibrary::get('elementor_callback', 0, 'intval');
30
  $params['from_menu'] = $this->from_menu;
24
 
25
  public function display() {
26
  $params = array();
27
+ $params['gutenberg_callback'] = WDWLibrary::get('callback', '', 'esc_js');
28
  $params['gutenberg_id'] = WDWLibrary::get('edit', 0, 'intval');
29
  $params['elementor_callback'] = WDWLibrary::get('elementor_callback', 0, 'intval');
30
  $params['from_menu'] = $this->from_menu;
admin/models/Galleries.php CHANGED
@@ -117,11 +117,19 @@ class GalleriesModel_bwg {
117
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where, $prepareArgs));
118
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where, $prepareArgs));
119
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where, $prepareArgs));
 
 
 
 
 
 
120
  }
121
  else {
122
  $delete = $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where);
123
  $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where);
124
  $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where);
 
 
125
  }
126
  if ( $delete ) {
127
  if ( $all ) {
@@ -662,6 +670,7 @@ class GalleriesModel_bwg {
662
  $order = WDWLibrary::get('order_input_' . $image_id, 0, 'intval');
663
  $redirect_url = WDWLibrary::get('redirect_url_' . $image_id, '', 'esc_url_raw');
664
  $tags_ids = WDWLibrary::get('tags_' . $image_id);
 
665
  $data = array(
666
  'gallery_id' => $gallery_id,
667
  'slug' => WDWLibrary::spider_replace4byte($alt),
@@ -736,10 +745,13 @@ class GalleriesModel_bwg {
736
  }
737
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ), $format);
738
  }
739
- $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE image_id="%d" AND gallery_id="%d"', $image_id, $gallery_id));
740
  if ( $save !== FALSE ) {
741
- $tag_id_array = explode(',', $tags_ids);
742
- foreach ( $tag_id_array as $tag_id ) {
 
 
 
743
  if ( $tag_id ) {
744
  if ( strpos($tag_id, 'pr_') !== FALSE ) {
745
  $tag_id = substr($tag_id, 3);
@@ -772,6 +784,14 @@ class GalleriesModel_bwg {
772
  }
773
  }
774
  }
 
 
 
 
 
 
 
 
775
  }
776
  if ( !$all && $image_action && method_exists($this, $image_action) && isset($_POST['check_' . $temp_image_id]) ) {
777
  $image_message = $this->$image_action($image_id, $gallery_id);
117
  $delete = $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where, $prepareArgs));
118
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where, $prepareArgs));
119
  $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where, $prepareArgs));
120
+ $each_image_tag_ids = $wpdb->get_col($wpdb->prepare('SELECT `tag_id` FROM `' . $wpdb->prefix . 'bwg_image_tag` WHERE gallery_id = "%d"', $id));
121
+ $wpdb->query($wpdb->prepare('DELETE FROM `' . $wpdb->prefix . 'bwg_image_tag` WHERE `gallery_id`="%d"', $id));
122
+ foreach ( $each_image_tag_ids as $each_tag_id ) {
123
+ // update tag count in term_taxonomy table.
124
+ $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $each_tag_id)), $each_tag_id));
125
+ }
126
  }
127
  else {
128
  $delete = $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_gallery`' . $where);
129
  $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image`' . $image_where);
130
  $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_album_gallery` WHERE is_album="0"' . $alb_gal_where);
131
+ $wpdb->query('DELETE FROM `' . $wpdb->prefix . 'bwg_image_tag`');
132
+ $wpdb->update($wpdb->prefix . 'term_taxonomy', array('count' => '0'), array('taxonomy' => 'bwg_tag'));
133
  }
134
  if ( $delete ) {
135
  if ( $all ) {
670
  $order = WDWLibrary::get('order_input_' . $image_id, 0, 'intval');
671
  $redirect_url = WDWLibrary::get('redirect_url_' . $image_id, '', 'esc_url_raw');
672
  $tags_ids = WDWLibrary::get('tags_' . $image_id);
673
+ $deleted_tags_ids = WDWLibrary::get('deleted_tags_' . $image_id);
674
  $data = array(
675
  'gallery_id' => $gallery_id,
676
  'slug' => WDWLibrary::spider_replace4byte($alt),
745
  }
746
  $save = $wpdb->update($wpdb->prefix . 'bwg_image', $data, array( 'id' => $image_id ), $format);
747
  }
748
+ /* Image Tags functionality */
749
  if ( $save !== FALSE ) {
750
+ $tag_id_array = array_diff(explode(',', $tags_ids),array(''));
751
+ $deleted_tag_id_array = array_diff(explode(',', $deleted_tags_ids), array(''));
752
+ $added_tags = array_diff($tag_id_array, $deleted_tag_id_array, array(''));
753
+ $deleted_tags = array_diff($deleted_tag_id_array, $tag_id_array, array(''));
754
+ foreach ( $added_tags as $tag_id ) {
755
  if ( $tag_id ) {
756
  if ( strpos($tag_id, 'pr_') !== FALSE ) {
757
  $tag_id = substr($tag_id, 3);
784
  }
785
  }
786
  }
787
+ foreach ( $deleted_tags as $deleted_tag ) {
788
+ $wpdb->delete($wpdb->prefix . 'bwg_image_tag', array(
789
+ 'tag_id' => $deleted_tag,
790
+ 'image_id' => $image_id,
791
+ 'gallery_id' => $gallery_id,
792
+ ), array('%d', '%d', '%d'));
793
+ $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'term_taxonomy SET count="%d" WHERE term_id="%d"', $wpdb->get_var($wpdb->prepare('SELECT COUNT(image_id) FROM ' . $wpdb->prefix . 'bwg_image_tag WHERE tag_id="%d"', $deleted_tag)), $deleted_tag));
794
+ }
795
  }
796
  if ( !$all && $image_action && method_exists($this, $image_action) && isset($_POST['check_' . $temp_image_id]) ) {
797
  $image_message = $this->$image_action($image_id, $gallery_id);
admin/models/Options.php CHANGED
@@ -4,50 +4,50 @@
4
  * Class OptionsModel_bwg
5
  */
6
  class OptionsModel_bwg {
7
-
8
  /**
9
  * Set or reset Instagram credentials and access token
10
  *
11
  * @param bool $reset
 
12
  * @return bool
13
  */
14
- function set_instagram_access_token( $reset = true ) {
15
- $row = new WD_BWG_Options();
16
  $row->instagram_access_token = $reset ? '' : WDWLibrary::get('wdi_access_token');
17
  $row->instagram_access_token_start_in = $reset ? '' : time();;
18
  $row->instagram_access_token_expires_in = $reset ? '' : WDWLibrary::get('expires_in');
19
  $row->instagram_user_id = $reset ? '' : WDWLibrary::get('user_id');
20
  $row->instagram_username = $reset ? '' : WDWLibrary::get('username');
21
- $upd = update_option('wd_bwg_options', json_encode($row));
22
- return $upd;
23
- }
24
 
25
- /**
26
- * Get images count.
27
- *
28
- * @return int $imgcount
29
- */
30
- public function get_image_count() {
31
- global $wpdb;
32
- $imgcount = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "bwg_image");
33
- return $imgcount;
34
- }
 
 
 
 
35
 
36
  /**
37
  * Update gallery options by key.
38
  *
39
  * @param $data_params
40
- */
41
  public function update_options_by_key( $data_params = array() ) {
42
- $options = get_option( 'wd_bwg_options' );
43
- if ($options) {
44
- $options = json_decode( $options );
45
-
46
- foreach( $data_params as $key => $value ) {
47
- $options->$key = $value;
48
- }
49
- update_option( 'wd_bwg_options', json_encode($options), 'yes' );
50
  }
 
51
  }
52
-
53
  }
4
  * Class OptionsModel_bwg
5
  */
6
  class OptionsModel_bwg {
 
7
  /**
8
  * Set or reset Instagram credentials and access token
9
  *
10
  * @param bool $reset
11
+ *
12
  * @return bool
13
  */
14
+ function set_instagram_access_token( $reset = TRUE ) {
15
+ $row = new WD_BWG_Options();
16
  $row->instagram_access_token = $reset ? '' : WDWLibrary::get('wdi_access_token');
17
  $row->instagram_access_token_start_in = $reset ? '' : time();;
18
  $row->instagram_access_token_expires_in = $reset ? '' : WDWLibrary::get('expires_in');
19
  $row->instagram_user_id = $reset ? '' : WDWLibrary::get('user_id');
20
  $row->instagram_username = $reset ? '' : WDWLibrary::get('username');
21
+ $upd = update_option('wd_bwg_options', json_encode($row));
 
 
22
 
23
+ return $upd;
24
+ }
25
+
26
+ /**
27
+ * Get images count.
28
+ *
29
+ * @return int $imgcount
30
+ */
31
+ public function get_image_count() {
32
+ global $wpdb;
33
+ $imgcount = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "bwg_image");
34
+
35
+ return $imgcount;
36
+ }
37
 
38
  /**
39
  * Update gallery options by key.
40
  *
41
  * @param $data_params
42
+ */
43
  public function update_options_by_key( $data_params = array() ) {
44
+ $options = get_option('wd_bwg_options');
45
+ if ( $options ) {
46
+ $options = json_decode($options);
47
+ foreach ( $data_params as $key => $value ) {
48
+ $options->$key = $value;
 
 
 
49
  }
50
+ update_option('wd_bwg_options', json_encode($options), 'yes');
51
  }
52
+ }
53
  }
admin/views/Galleries.php CHANGED
@@ -867,6 +867,7 @@ class GalleriesView_bwg extends AdminView_bwg {
867
  </div>
868
  <?php } ?>
869
  <input type="hidden" value="<?php echo $tags_id_string; ?>" id="tags_<?php echo $row->id; ?>" name="tags_<?php echo $row->id; ?>" />
 
870
  <input type="hidden" id="image_url_<?php echo $row->id; ?>" name="image_url_<?php echo $row->id; ?>" value="<?php echo $row->pure_image_url; ?>" />
871
  <input type="hidden" id="thumb_url_<?php echo $row->id; ?>" name="thumb_url_<?php echo $row->id; ?>" value="<?php echo $row->pure_thumb_url; ?>" />
872
  <input type="hidden" id="input_filename_<?php echo $row->id; ?>" name="input_filename_<?php echo $row->id; ?>" value="<?php echo $row->filename; ?>" />
867
  </div>
868
  <?php } ?>
869
  <input type="hidden" value="<?php echo $tags_id_string; ?>" id="tags_<?php echo $row->id; ?>" name="tags_<?php echo $row->id; ?>" />
870
+ <input type="hidden" value="<?php echo $tags_id_string; ?>" id="deleted_tags_<?php echo $row->id; ?>" name="deleted_tags_<?php echo $row->id; ?>" />
871
  <input type="hidden" id="image_url_<?php echo $row->id; ?>" name="image_url_<?php echo $row->id; ?>" value="<?php echo $row->pure_image_url; ?>" />
872
  <input type="hidden" id="thumb_url_<?php echo $row->id; ?>" name="thumb_url_<?php echo $row->id; ?>" value="<?php echo $row->pure_thumb_url; ?>" />
873
  <input type="hidden" id="input_filename_<?php echo $row->id; ?>" name="input_filename_<?php echo $row->id; ?>" value="<?php echo $row->filename; ?>" />
admin/views/Options.php CHANGED
@@ -65,7 +65,6 @@ class OptionsView_bwg extends AdminView_bwg {
65
  'buttons' => $buttons,
66
  )
67
  );
68
-
69
  ?>
70
  <div class="bwg_tabs">
71
  <div id="search_in_tablet">
@@ -1208,7 +1207,18 @@ class OptionsView_bwg extends AdminView_bwg {
1208
  bwg_enable_disable(<?php echo $row->popup_enable_ctrl_btn ? "'', 'tr_popup_pinterest', 'popup_enable_ctrl_btn_1'" : "'none', 'tr_popup_pinterest', 'popup_enable_ctrl_btn_0'" ?>);
1209
  bwg_enable_disable(<?php echo $row->popup_enable_ctrl_btn ? "'', 'tr_popup_thumblr', 'popup_enable_ctrl_btn_1'" : "'none', 'tr_popup_thumblr', 'popup_enable_ctrl_btn_0'" ?>);
1210
  bwg_enable_disable(<?php echo $row->popup_enable_filmstrip ? "'', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_1'" : "'none', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_0'" ?>);
1211
- bwg_enable_disable(<?php echo $row->slideshow_enable_filmstrip ? "'', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_yes'" : "'none', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_no'" ?>);
 
 
 
 
 
 
 
 
 
 
 
1212
  bwg_enable_disable(<?php echo $row->slideshow_enable_title ? "'', 'tr_slideshow_title_position', 'slideshow_enable_title_yes'" : "'none', 'tr_slideshow_title_position', 'slideshow_enable_title_no'" ?>);
1213
  bwg_enable_disable(<?php echo $row->slideshow_enable_description ? "'', 'tr_slideshow_description_position', 'slideshow_enable_description_yes'" : "'none', 'tr_slideshow_description_position', 'slideshow_enable_description_no'" ?>);
1214
  bwg_enable_disable(<?php echo $row->slideshow_enable_music ? "'', 'tr_slideshow_music_url', 'slideshow_enable_music_yes'" : "'none', 'tr_slideshow_music_url', 'slideshow_enable_music_no'" ?>);
@@ -1219,7 +1229,7 @@ class OptionsView_bwg extends AdminView_bwg {
1219
  bwg_enable_disable(<?php echo $row->masonry_image_enable_page == '2' ? "'', 'tr_masonry_load_more_image_count', 'masonry_image_enable_page_loadmore'" : "'none', 'tr_masonry_load_more_image_count', 'masonry_image_enable_page_" . ($row->masonry_image_enable_page == '0' ? 'no' : ($row->masonry_image_enable_page == '1' ? 'yes' : 'scroll_load')) . "'"; ?>);
1220
  bwg_enable_disable(<?php echo $row->mosaic_image_enable_page == '2' ? "'', 'tr_mosaic_load_more_image_count', 'mosaic_image_enable_page_loadmore'" : "'none', 'tr_mosaic_load_more_image_count', 'mosaic_image_enable_page_" . ($row->mosaic_image_enable_page == '0' ? 'no' : ($row->mosaic_image_enable_page == '1' ? 'yes' : 'scroll_load')) . "'"; ?>);
1221
  bwg_enable_disable(<?php echo $row->blog_style_enable_page == '2' ? "'', 'tr_blog_style_load_more_image_count', 'blog_style_enable_page_2'" : "'none', 'tr_blog_style_load_more_image_count', 'blog_style_enable_page_" . $row->blog_style_enable_page . "'"; ?>);
1222
- bwg_enable_disable(<?php echo $row->masonry == 'horizontal' ? "'none', 'bwg-vertical-block-masonry', 'masonry_1'" : "'', 'bwg-vertical-block-masonry', 'masonry_0'"; ?>);
1223
  preview_watermark();
1224
  preview_built_in_watermark();
1225
  bwg_show_hide_roles();
@@ -2043,12 +2053,23 @@ class OptionsView_bwg extends AdminView_bwg {
2043
  <div class="wd-box-content wd-width-33">
2044
  <div class="wd-box-content wd-width-100 <?php echo BWG()->is_pro ? '' : ' bwg-disabled-option'; ?>">
2045
  <div class="wd-group">
2046
- <label class="wd-label"><?php _e('Enable slideshow filmstrip', BWG()->prefix); ?></label>
2047
  <div class="bwg-flex">
2048
- <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_yes" value="1" <?php if ($row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_yes')" /><label for="slideshow_enable_filmstrip_yes" class="wd-radio-label"><?php _e('Yes', BWG()->prefix); ?></label>
2049
- <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="radio" name="slideshow_enable_filmstrip" id="slideshow_enable_filmstrip_no" value="0" <?php if (!$row->slideshow_enable_filmstrip) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_filmstrip_height', 'slideshow_enable_filmstrip_no')" /><label for="slideshow_enable_filmstrip_no" class="wd-radio-label"><?php _e('No', BWG()->prefix); ?></label>
 
2050
  </div>
2051
- <p class="description"><?php _e('Add a filmstrip with image thumbnails to your slideshow galleries by enabling this option.', BWG()->prefix); ?></p>
 
 
 
 
 
 
 
 
 
 
2052
  <?php if ( !BWG()->is_pro ) { ?><p class="description spider_free_version"><?php echo BWG()->free_msg; ?></p><?php } ?>
2053
  </div>
2054
  </div>
@@ -2069,7 +2090,7 @@ class OptionsView_bwg extends AdminView_bwg {
2069
  <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_yes" value="1" <?php if ($row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_enable_title_yes')" /><label for="slideshow_enable_title_yes" class="wd-radio-label"><?php _e('Yes', BWG()->prefix); ?></label>
2070
  <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_no" value="0" <?php if (!$row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_enable_title_no')" /><label for="slideshow_enable_title_no" class="wd-radio-label"><?php _e('No', BWG()->prefix); ?></label>
2071
  </div>
2072
- <p class="description"><?php _e('Enable this setting to display titles of images in Slideshow view.', BWG()->prefix); ?></p>
2073
  </div>
2074
  </div>
2075
  <div class="wd-box-content wd-width-100" id="tr_slideshow_title_position">
65
  'buttons' => $buttons,
66
  )
67
  );
 
68
  ?>
69
  <div class="bwg_tabs">
70
  <div id="search_in_tablet">
1207
  bwg_enable_disable(<?php echo $row->popup_enable_ctrl_btn ? "'', 'tr_popup_pinterest', 'popup_enable_ctrl_btn_1'" : "'none', 'tr_popup_pinterest', 'popup_enable_ctrl_btn_0'" ?>);
1208
  bwg_enable_disable(<?php echo $row->popup_enable_ctrl_btn ? "'', 'tr_popup_thumblr', 'popup_enable_ctrl_btn_1'" : "'none', 'tr_popup_thumblr', 'popup_enable_ctrl_btn_0'" ?>);
1209
  bwg_enable_disable(<?php echo $row->popup_enable_filmstrip ? "'', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_1'" : "'none', 'tr_popup_filmstrip_height', 'popup_enable_filmstrip_0'" ?>);
1210
+ if ( <?php echo $row->slideshow_filmstrip_type ?> == 0 ) {
1211
+ bwg_enable_disable('none','tr_slideshow_thumbnails_count','slideshow_filmstrip_none');
1212
+ bwg_enable_disable('none','tr_slideshow_filmstrip_height','slideshow_filmstrip_none');
1213
+ }
1214
+ else if ( <?php echo $row->slideshow_filmstrip_type ?> == 1 ) {
1215
+ bwg_enable_disable('none','tr_slideshow_thumbnails_count','slideshow_filmstrip_fix_dimension');
1216
+ bwg_enable_disable('','tr_slideshow_filmstrip_height','slideshow_filmstrip_fix_dimension');
1217
+ }
1218
+ else if ( <?php echo $row->slideshow_filmstrip_type ?> == 2 ) {
1219
+ bwg_enable_disable('','tr_slideshow_thumbnails_count','slideshow_filmstrip_fix_count');
1220
+ bwg_enable_disable('none','tr_slideshow_filmstrip_height','slideshow_filmstrip_fix_count');
1221
+ }
1222
  bwg_enable_disable(<?php echo $row->slideshow_enable_title ? "'', 'tr_slideshow_title_position', 'slideshow_enable_title_yes'" : "'none', 'tr_slideshow_title_position', 'slideshow_enable_title_no'" ?>);
1223
  bwg_enable_disable(<?php echo $row->slideshow_enable_description ? "'', 'tr_slideshow_description_position', 'slideshow_enable_description_yes'" : "'none', 'tr_slideshow_description_position', 'slideshow_enable_description_no'" ?>);
1224
  bwg_enable_disable(<?php echo $row->slideshow_enable_music ? "'', 'tr_slideshow_music_url', 'slideshow_enable_music_yes'" : "'none', 'tr_slideshow_music_url', 'slideshow_enable_music_no'" ?>);
1229
  bwg_enable_disable(<?php echo $row->masonry_image_enable_page == '2' ? "'', 'tr_masonry_load_more_image_count', 'masonry_image_enable_page_loadmore'" : "'none', 'tr_masonry_load_more_image_count', 'masonry_image_enable_page_" . ($row->masonry_image_enable_page == '0' ? 'no' : ($row->masonry_image_enable_page == '1' ? 'yes' : 'scroll_load')) . "'"; ?>);
1230
  bwg_enable_disable(<?php echo $row->mosaic_image_enable_page == '2' ? "'', 'tr_mosaic_load_more_image_count', 'mosaic_image_enable_page_loadmore'" : "'none', 'tr_mosaic_load_more_image_count', 'mosaic_image_enable_page_" . ($row->mosaic_image_enable_page == '0' ? 'no' : ($row->mosaic_image_enable_page == '1' ? 'yes' : 'scroll_load')) . "'"; ?>);
1231
  bwg_enable_disable(<?php echo $row->blog_style_enable_page == '2' ? "'', 'tr_blog_style_load_more_image_count', 'blog_style_enable_page_2'" : "'none', 'tr_blog_style_load_more_image_count', 'blog_style_enable_page_" . $row->blog_style_enable_page . "'"; ?>);
1232
+ bwg_enable_disable(<?php echo $row->masonry == 'horizontal' ? "'none', 'bwg-vertical-block-masonry', 'masonry_1'" : "'', 'bwg-vertical-block-masonry', 'masonry_0'"; ?>);
1233
  preview_watermark();
1234
  preview_built_in_watermark();
1235
  bwg_show_hide_roles();
2053
  <div class="wd-box-content wd-width-33">
2054
  <div class="wd-box-content wd-width-100 <?php echo BWG()->is_pro ? '' : ' bwg-disabled-option'; ?>">
2055
  <div class="wd-group">
2056
+ <label class="wd-label"><?php _e('Slideshow filmstrip type', BWG()->prefix); ?></label>
2057
  <div class="bwg-flex">
2058
+ <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="radio" name="slideshow_filmstrip_type" id="slideshow_filmstrip_none" value="0" <?php if (!$row->slideshow_filmstrip_type) echo 'checked="checked"'; ?> onclick="bwg_enable_disable('none','tr_slideshow_thumbnails_count','slideshow_filmstrip_none'); bwg_enable_disable('none','tr_slideshow_filmstrip_height','slideshow_filmstrip_none');" /><label for="slideshow_filmstrip_none" class="wd-radio-label"><?php _e('None', BWG()->prefix); ?></label>
2059
+ <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="radio" name="slideshow_filmstrip_type" id="slideshow_filmstrip_fix_dimension" value="1" <?php if ($row->slideshow_filmstrip_type && $row->slideshow_filmstrip_type == 1) echo 'checked="checked"'; ?> onclick="bwg_enable_disable('none','tr_slideshow_thumbnails_count','slideshow_filmstrip_fix_dimension'); bwg_enable_disable('','tr_slideshow_filmstrip_height','slideshow_filmstrip_fix_dimension');" /><label for="slideshow_filmstrip_fix_dimension" class="wd-radio-label"><?php _e('Fix dimension', BWG()->prefix); ?></label>
2060
+ <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="radio" name="slideshow_filmstrip_type" id="slideshow_filmstrip_fix_count" value="2" <?php if ($row->slideshow_filmstrip_type && $row->slideshow_filmstrip_type == 2) echo 'checked="checked"'; ?> onclick="bwg_enable_disable('','tr_slideshow_thumbnails_count','slideshow_filmstrip_fix_count'); bwg_enable_disable('none','tr_slideshow_filmstrip_height','slideshow_filmstrip_fix_count');" /><label for="slideshow_filmstrip_fix_count" class="wd-radio-label"><?php _e('Fix count', BWG()->prefix); ?></label>
2061
  </div>
2062
+ <p class="description"><?php _e('Select the type for the slideshow filmstrip.', BWG()->prefix); ?></p>
2063
+ <?php if ( !BWG()->is_pro ) { ?><p class="description spider_free_version"><?php echo BWG()->free_msg; ?></p><?php } ?>
2064
+ </div>
2065
+ </div>
2066
+ <div class="wd-box-content wd-width-100 <?php echo BWG()->is_pro ? '' : ' bwg-disabled-option'; ?>" id="tr_slideshow_thumbnails_count">
2067
+ <div class="wd-group">
2068
+ <label class="wd-label" for="slideshow_thumbnails_count"><?php _e('Slideshow thumbnails count', BWG()->prefix); ?></label>
2069
+ <div class="bwg-flex">
2070
+ <input <?php echo BWG()->is_pro ? '' : 'disabled="disabled"'; ?> type="number" name="slideshow_thumbnails_count" id="slideshow_thumbnails_count" value="<?php echo $row->slideshow_thumbnails_count; ?>" min="1" />
2071
+ </div>
2072
+ <p class="description"><?php _e('Set the number of items that will be displayed in the filmstrip. This will also construct the width of the filmstrip.', BWG()->prefix); ?></p>
2073
  <?php if ( !BWG()->is_pro ) { ?><p class="description spider_free_version"><?php echo BWG()->free_msg; ?></p><?php } ?>
2074
  </div>
2075
  </div>
2090
  <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_yes" value="1" <?php if ($row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_slideshow_title_position', 'slideshow_enable_title_yes')" /><label for="slideshow_enable_title_yes" class="wd-radio-label"><?php _e('Yes', BWG()->prefix); ?></label>
2091
  <input type="radio" name="slideshow_enable_title" id="slideshow_enable_title_no" value="0" <?php if (!$row->slideshow_enable_title) echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_slideshow_title_position', 'slideshow_enable_title_no')" /><label for="slideshow_enable_title_no" class="wd-radio-label"><?php _e('No', BWG()->prefix); ?></label>
2092
  </div>
2093
+ <p class="description"><?php _e('Set the size of your filmstrip. If the filmstrip is horizontal, this indicates its height, whereas for vertical filmstrips it sets the width.', BWG()->prefix); ?></p>
2094
  </div>
2095
  </div>
2096
  <div class="wd-box-content wd-width-100" id="tr_slideshow_title_position">
admin/views/Shortcode.php CHANGED
@@ -54,7 +54,6 @@ class ShortcodeView_bwg extends AdminView_bwg {
54
  <input type="hidden" id="currrent_id" name="currrent_id" value="" />
55
  <input type="hidden" id="title" name="title" value="" />
56
  <input type="hidden" id="bwg_insert" name="bwg_insert" value="" />
57
-
58
  <div class="<?php echo (isset($_GET['callback']) && $_GET['callback'] == 'wdg_cb_tw/bwg') ? 'bwg_tw-container' : '' ?>">
59
  <div class="bwg_tabs meta-box-sortables">
60
  <ul class="bwg-tabs">
@@ -510,7 +509,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
510
  <div class="media-toolbar-primary search-form">
511
  <button class="button media-button button-primary button-large media-button-insert button-hero" type="button" id="insert" name="insert" <?php if($params['elementor_callback']) { ?> data-callback="elementor" <?php } ?> onClick="bwg_insert_shortcode('');"><?php _e('Insert into post', BWG()->prefix); ?></button>
512
  </div>
513
- <!-- needed to remove after dicessing with design team-->
514
  <!-- --><?php //if ( !BWG()->is_pro ) { ?>
515
  <!-- <div class="media-toolbar-primary search-form" style="float: left;">-->
516
  <!-- <span class="media-button button-large">-->
@@ -525,7 +524,7 @@ class ShortcodeView_bwg extends AdminView_bwg {
525
  else {
526
  $tagtext = '';
527
  $tagfunction = '';
528
- $currrent_id = WDWLibrary::get('currrent_id', 0, 'intval');
529
  if ( $currrent_id ) {
530
  $title = WDWLibrary::get('title');
531
  $tagtext = '[Best_Wordpress_Gallery id="' . $currrent_id . '"' . $title . ']';
@@ -1008,11 +1007,17 @@ class ShortcodeView_bwg extends AdminView_bwg {
1008
  else {
1009
  jQuery("#autohide_slideshow_navigation_0").prop('checked', true);
1010
  }
1011
- if (short_code['enable_slideshow_filmstrip'] == 1) {
1012
- jQuery("#slideshow_enable_filmstrip_yes").prop('checked', true);
1013
  }
1014
- else {
1015
- jQuery("#slideshow_enable_filmstrip_no").prop('checked', true);
 
 
 
 
 
 
1016
  }
1017
  if (short_code['slideshow_filmstrip_height']) {
1018
  jQuery( "#slideshow_filmstrip_height" ).val( short_code['slideshow_filmstrip_height'] );
@@ -1833,7 +1838,6 @@ class ShortcodeView_bwg extends AdminView_bwg {
1833
  function bwg_insert_shortcode(content) {
1834
  jQuery(popup_cover_containers, parent.document).removeAttr("style");
1835
  var page_builder_activated = bwg_before_shortcode_add_builder_editor();
1836
-
1837
  window.parent.window.jQuery(window.parent.document).trigger("onOpenShortcode");
1838
  var gallery_type = jQuery("input[name=gallery_type]:checked").val();
1839
  var theme = jQuery("#theme").val();
@@ -1938,7 +1942,8 @@ class ShortcodeView_bwg extends AdminView_bwg {
1938
  tagtext += ' enable_slideshow_shuffle="' + jQuery("input[name=slideshow_enable_shuffle]:checked").val() + '"';
1939
  tagtext += ' enable_slideshow_ctrl="' + jQuery("input[name=slideshow_enable_ctrl]:checked").val() + '"';
1940
  tagtext += ' autohide_slideshow_navigation="' + jQuery("input[name=autohide_slideshow_navigation]:checked").val() + '"';
1941
- tagtext += ' enable_slideshow_filmstrip="' + jQuery("input[name=slideshow_enable_filmstrip]:checked").val() + '"';
 
1942
  tagtext += ' slideshow_filmstrip_height="' + jQuery("#slideshow_filmstrip_height").val() + '"';
1943
  tagtext += ' slideshow_enable_title="' + jQuery("input[name=slideshow_enable_title]:checked").val() + '"';
1944
  tagtext += ' slideshow_title_position="' + jQuery("input[name=slideshow_title_position]:checked").val() + '"';
54
  <input type="hidden" id="currrent_id" name="currrent_id" value="" />
55
  <input type="hidden" id="title" name="title" value="" />
56
  <input type="hidden" id="bwg_insert" name="bwg_insert" value="" />
 
57
  <div class="<?php echo (isset($_GET['callback']) && $_GET['callback'] == 'wdg_cb_tw/bwg') ? 'bwg_tw-container' : '' ?>">
58
  <div class="bwg_tabs meta-box-sortables">
59
  <ul class="bwg-tabs">
509
  <div class="media-toolbar-primary search-form">
510
  <button class="button media-button button-primary button-large media-button-insert button-hero" type="button" id="insert" name="insert" <?php if($params['elementor_callback']) { ?> data-callback="elementor" <?php } ?> onClick="bwg_insert_shortcode('');"><?php _e('Insert into post', BWG()->prefix); ?></button>
511
  </div>
512
+ <!-- @TODO. needed to remove after dicessing with design team-->
513
  <!-- --><?php //if ( !BWG()->is_pro ) { ?>
514
  <!-- <div class="media-toolbar-primary search-form" style="float: left;">-->
515
  <!-- <span class="media-button button-large">-->
524
  else {
525
  $tagtext = '';
526
  $tagfunction = '';
527
+ $currrent_id = WDWLibrary::get('currrent_id', 0, 'intval');
528
  if ( $currrent_id ) {
529
  $title = WDWLibrary::get('title');
530
  $tagtext = '[Best_Wordpress_Gallery id="' . $currrent_id . '"' . $title . ']';
1007
  else {
1008
  jQuery("#autohide_slideshow_navigation_0").prop('checked', true);
1009
  }
1010
+ if (short_code['slideshow_filmstrip_type'] == '0') {
1011
+ jQuery("#slideshow_filmstrip_none").prop('checked', true);
1012
  }
1013
+ else if (short_code['slideshow_filmstrip_type'] == '1') {
1014
+ jQuery("#slideshow_filmstrip_fix_dimension").prop('checked', true);
1015
+ }
1016
+ else if( short_code['slideshow_filmstrip_type'] == '2') {
1017
+ jQuery("#slideshow_filmstrip_fix_count").prop('checked', true);
1018
+ }
1019
+ if ( short_code['slideshow_thumbnails_count'] ) {
1020
+ jQuery( "#slideshow_thumbnails_count" ).val( short_code['slideshow_thumbnails_count'] );
1021
  }
1022
  if (short_code['slideshow_filmstrip_height']) {
1023
  jQuery( "#slideshow_filmstrip_height" ).val( short_code['slideshow_filmstrip_height'] );
1838
  function bwg_insert_shortcode(content) {
1839
  jQuery(popup_cover_containers, parent.document).removeAttr("style");
1840
  var page_builder_activated = bwg_before_shortcode_add_builder_editor();
 
1841
  window.parent.window.jQuery(window.parent.document).trigger("onOpenShortcode");
1842
  var gallery_type = jQuery("input[name=gallery_type]:checked").val();
1843
  var theme = jQuery("#theme").val();
1942
  tagtext += ' enable_slideshow_shuffle="' + jQuery("input[name=slideshow_enable_shuffle]:checked").val() + '"';
1943
  tagtext += ' enable_slideshow_ctrl="' + jQuery("input[name=slideshow_enable_ctrl]:checked").val() + '"';
1944
  tagtext += ' autohide_slideshow_navigation="' + jQuery("input[name=autohide_slideshow_navigation]:checked").val() + '"';
1945
+ tagtext += ' slideshow_filmstrip_type="' + jQuery("input[name=slideshow_filmstrip_type]:checked").val() + '"';
1946
+ tagtext += ' slideshow_thumbnails_count="' + jQuery("#slideshow_thumbnails_count").val() + '"';
1947
  tagtext += ' slideshow_filmstrip_height="' + jQuery("#slideshow_filmstrip_height").val() + '"';
1948
  tagtext += ' slideshow_enable_title="' + jQuery("input[name=slideshow_enable_title]:checked").val() + '"';
1949
  tagtext += ' slideshow_title_position="' + jQuery("input[name=slideshow_title_position]:checked").val() + '"';
css/bwg_frontend.css CHANGED
@@ -2224,7 +2224,8 @@ div[id^='bwg_container1_'] div[id^='bwg_container2_'] div[class^='bwg_slideshow_
2224
  position: absolute;
2225
  }
2226
 
2227
- div[id^='bwg_container1_'] div[id^='bwg_container2_'] .bwg_slideshow_filmstrip {
 
2228
  overflow: hidden;
2229
  position: absolute;
2230
  }
2224
  position: absolute;
2225
  }
2226
 
2227
+ div[id^='bwg_container1_'] div[id^='bwg_container2_'] .bwg_slideshow_filmstrip,
2228
+ div[id^='bwg_container1_'] div[id^='bwg_container2_'] .bwg_slideshow_filmstrip_fix_count {
2229
  overflow: hidden;
2230
  position: absolute;
2231
  }
css/styles.min.css CHANGED
@@ -1 +1 @@
1
- .spider_popup_wrap .bwg_image_wrap figure{margin:0;padding:0;display:inline-block}figure.zoom{background-position:50% 50%;background-size:200%;position:relative;width:auto;overflow:hidden;cursor:zoom-in}figure.zoom img:hover{opacity:0}figure.zoom img{transition:opacity .5s;display:block}div[id^=bwg_container] p{padding:0!important;margin:0!important}div[id^=bwg_container] img{box-shadow:none!important}div[id^=bwg_container] *{margin:0}div[id^=bwg_container] .SumoSelect.open>.CaptionCont,div[id^=bwg_container] .SumoSelect:focus>.CaptionCont,div[id^=bwg_container] .SumoSelect:hover>.CaptionCont,div[id^=bwg_container] .SumoSelect>.CaptionCont{border:none;box-shadow:none}#bwg_tag_wrap{background-color:#fff;width:100%;font-family:inherit;margin:0 -5px 20px 0;z-index:200;position:relative}.bwg_search_loupe_container,.bwg_search_reset_container{font-size:18px;color:#ccc;cursor:pointer;position:relative}#bwg_tag_container p{text-align:center}#bwg_tag_container{border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;width:256px;float:right}#spider_popup_wrap a{border:none;box-shadow:none}div[id^=bwg_container].bwg_container .bwg-a{border:none;box-shadow:none!important;outline:0;font-size:0;line-height:normal;cursor:pointer;text-decoration:none}div[id^=bwg_container].bwg_container .bwg-masonry-thumb-description,div[id^=bwg_container].bwg_container .bwg-thumb-description{cursor:auto}div[id^=bwg_container] div[id^=bwg_container] .bwg_img_clear{max-height:none!important;max-width:none!important;padding:0!important}.tag_cloud_link{font-size:inherit!important}@media print{#spider_popup_left,#spider_popup_right,.bwg_image_info,[class^=bwg_slideshow_title_text_],[id^=bwg_slideshow_play_pause_],[id^=spider_slideshow_left_],[id^=spider_slideshow_right_]{background:0 0}}.bwg_spider_popup_loading,.footer-list-block .bwp_gallery .bwg_spider_popup_loading,.footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading{background-image:url(../images/ajax_loader.png);background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:0 0;background-size:30px 30px;border:none!important;display:none;height:30px;left:50%;margin-left:-20px;margin-top:-20px;overflow:hidden;position:fixed;top:50%;width:30px;z-index:10102}.bwg_filmstrip_thumbnail_img{max-width:none!important}.dashicons-arrow-down-alt2:before{content:"\f347";height:100%;display:inline-block}.footer-list-block .bwp_gallery .spider_popup_overlay,.footer-list-block .bwp_gallery_tags .spider_popup_overlay,.spider_popup_overlay{cursor:pointer;display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10100}.bwp_gallery_tags div[id^=bwg_container] li{border:none}.spider_popup_close,.spider_popup_close_fullscreen{-moz-box-sizing:content-box!important;box-sizing:content-box!important;cursor:pointer;display:table;line-height:0;position:absolute;z-index:11100}.spider_popup_close_fullscreen{margin:10px 7px;right:7px}#spider_popup_left{left:0}#spider_popup_right{right:0}#spider_popup_left:hover,#spider_popup_right:hover{visibility:visible}#spider_popup_left:hover span{left:20px}#spider_popup_right:hover span{left:auto;right:20px}#spider_popup_left,#spider_popup_right{background:transparent url(../images/blank.gif) repeat scroll 0 0;bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:10130}#bwg_image_container #spider_popup_left,#bwg_image_container #spider_popup_right{width:25%}#spider_popup_left-ico,#spider_popup_right-ico{-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%;z-index:10135}.bwg_captcha_refresh{background-image:url(../images/captcha_refresh.png);background-position:center center;background-repeat:no-repeat;background-size:100% 100%;border-width:0;cursor:pointer;display:inline-block;height:20px;width:20px;margin:0;padding:0;vertical-align:middle}.bwg_captcha_input{vertical-align:middle;width:75px!important}.bwg_captcha_img{cursor:pointer;margin:0 5px 0 5px;vertical-align:middle}.bwg_comment_error{color:red;display:block}.bwg_comment_waiting_message{display:none}.bwg_image_hit_container1,.bwg_image_info_container1,.bwg_image_rate_container1{height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_rate_container1{display:none}.bwg_image_hit_container2,.bwg_image_info_container2,.bwg_image_rate_container2{display:table;height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_hit_spun,.bwg_image_info_spun,.bwg_image_rate_spun{display:table-cell;height:100%;left:0;top:0;width:100%;overflow:hidden;position:relative}.bwg_image_hit,.bwg_image_info,.bwg_image_rate{display:inline-block;position:relative;text-decoration:none;word-wrap:break-word;z-index:11}.bwg_image_rate{z-index:999!important}.bwg_image_rate_disabled{display:none;position:absolute;width:100%;height:40px;top:0}@media screen and (max-width:465px){.bwg_ctrl_btn_container{height:auto!important}}.bwg_search_container_1{display:inline-block;width:100%;text-align:right;margin:0 5px 20px 0;background-color:rgba(0,0,0,0)}.bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;box-shadow:0 0 3px 1px #ccc;background-color:#fff;border:1px solid #ccc;max-width:100%}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;margin-right:45px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_loupe_container{display:inline-block;margin-right:1px;vertical-align:middle;float:right}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_reset_container{margin-right:5px;vertical-align:middle;float:right}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_reset,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{display:block;font-size:10px;color:#323a45;cursor:pointer;line-height:inherit!important}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{font-size:12px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{color:#070707;outline:0;border:none;box-shadow:none;background:0 0;padding:3px 5px;font-family:inherit;width:100%}.bwg_order_cont .SumoSelect{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;padding:0 10px}.SumoSelect>.optWrapper>.options li.opt{border:none;text-align:left}.bwg_order_cont .SumoSelect .CaptionCont{text-align:left}.bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 0}#bwg_tag_container .SumoSelect,.bwg_order_cont .SumoSelect{display:inline-table}#bwg_tag_container .SumoSelect ul.options,.bwg_order_cont .SumoSelect ul.options{margin:0;padding:0!important}#bwg_tag_container .SumoSelect li,.bwg_order_cont .SumoSelect li{list-style:none}#bwg_tag_container .SumoSelect.open .search-txt{padding:0 8px;height:100%}#bwg_tag_container .SumoSelect>.optWrapper>.options li label{margin:0}.bwg_order_label{border:none;box-shadow:none;color:#bbb;font-family:inherit;font-weight:700;outline:0}.bwg_order{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;text-align:left}.wd_error{color:#ccc;font-size:initial}div[id^=bwg_container] .bwg_download_gallery{text-align:right;margin-top:10px}div[id^=bwg_container] .bwg_download_gallery a{color:#4a4a4a;font-size:25px;text-decoration:none}div[id^=bwg_container] .bwg_download_gallery a:hover{color:#7d7d7d}div[id^=bwg_container] .bwg-border-box *{-moz-box-sizing:border-box;box-sizing:border-box}.bwg-flex{display:flex}.bwg-width-100{width:100%;max-width:100%}.bwg-flex-column{flex-direction:column}.bwg-flex-row{flex-direction:row;flex-wrap:wrap}.bwg-container{font-size:0;width:100%;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.bwg-item{display:flex;flex-direction:column;cursor:pointer}.bwg-item0{overflow:hidden;z-index:100}.bwg-item0:hover{background:0 0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;opacity:1;z-index:102;position:relative}.bwg-item1{overflow:hidden;width:100%;position:relative}.bwg-item2{top:0;left:0;bottom:0;right:0;width:100%;height:100%}.bwg-item2{position:absolute}.bwg-ecommerce1,.bwg-title1{opacity:1;text-align:center;width:100%}.bwg-ecommerce1{text-align:right}.bwg-title2{width:100%;word-wrap:break-word}.bwg-item0:hover .bwg-ecommerce1,.bwg-item0:hover .bwg-title1{left:0!important;opacity:1!important}.bwg-play-icon1{display:flex;width:auto;height:auto;opacity:1;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.bwg_loading_div_1{position:absolute;width:100%;height:100%;z-index:115;text-align:center;vertical-align:middle;top:0}.bwg_load_more_ajax_loading{width:100%;z-index:115;text-align:center;vertical-align:middle;position:relative;height:30px}.bwg_load_more_ajax_loading.bwg-hidden{height:0}.bwg_loading_div_2{display:table;vertical-align:middle;width:100%;height:100%;background-color:#fff;opacity:.95}.bwg_loading_div_3{display:table-cell;text-align:center;position:relative;vertical-align:middle}.bwg_spider_ajax_loading{border:none!important;display:inline-block;text-align:center;position:relative;vertical-align:middle;background-image:url(../images/ajax_loader.png);float:none;width:30px;height:30px;background-size:30px 30px}.bwg-hidden{visibility:hidden}.bwg_container{position:relative;margin:20px auto}.bwg_inst_play_btn_cont,.bwg_inst_play_btn_cont .bwg_inst_play{display:block}.hidden{display:none}.bwg-loading{width:100%;height:100%;opacity:.95;position:absolute;background-image:url(../images/ajax_loader.png);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}#bwg_download{display:inline-block}#bwg_download.hidden{display:none}.bwg_thumbnail.bwg_container .search_line.bwg_tag_select_view{min-height:50px;-webkit-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);-moz-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);box-shadow:0 5px 7px -5px rgba(0,0,0,.16);margin-bottom:10px;display:inline-block;width:100%}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:left;display:table-cell;text-align:left;vertical-align:middle}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap #bwg_tag_container,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select{border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .search_tags_container{width:25%;min-width:120px;max-width:180px;margin-right:20px;border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px;float:left;height:30px;padding:0;cursor:pointer;background:#fff}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select,.bwg_thumbnail.bwg_container .search_line .placeholder,.bwg_thumbnail.bwg_container .search_line .search-txt,.bwg_thumbnail.bwg_container .search_line .select-all,.bwg_thumbnail.bwg_container .search_line.SumoSelect .opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-weight:400;font-family:Ubuntu;margin:0;border:none}.bwg_thumbnail.bwg_container .search_line .select-all label{margin-bottom:0;line-height:13px}.bwg_thumbnail.bwg_container .search_line .SumoSelect ul.options:not(:empty){padding:15px 0 0 10px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect{padding:0 10px;width:initial;height:inherit;cursor:pointer;display:block;border:none;box-shadow:none;border-radius:0;max-width:100%;background-color:transparent;line-height:inherit;vertical-align:bottom}.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container{height:30px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100%);margin:0;overflow:hidden}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{height:30px;padding:0 10px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100% - 64px);display:inline-table}.bwg_thumbnail.bwg_container .search_line .CaptionCont span{display:block!important;vertical-align:middle;color:#323a45!important;font-size:12px;text-transform:uppercase;font-family:Ubuntu;cursor:pointer;line-height:29px;max-width:calc(100% - 20px)}.bwg_thumbnail .search_tags{cursor:pointer}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all>span,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt span{margin-left:-35px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt{padding-left:25px}.bwg_thumbnail .bwg_search_input::-webkit-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input::-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu;line-height:30px}.bwg_thumbnail .bwg_search_input:-ms-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input:-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .search-txt::-webkit-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title{width:calc(100% - 20px);height:29px;text-align:center;display:inline-block;background:#fff;position:absolute;top:.5px;left:10px;white-space:nowrap;border-radius:15px;color:#4e4e4e;text-transform:uppercase;overflow:hidden}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title span{line-height:28px}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container{line-height:29px;display:inline-block;top:0;margin-right:10px;vertical-align:middle;float:none;padding-top:0;font-size:12px;font-family:Ubuntug}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container1{margin-left:0;float:left;top:0;line-height:30px;width:auto;height:30px;margin-left:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_reset_container{right:0;top:0;line-height:30px;width:11px;height:30px;margin-right:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:right;width:30%;min-width:120px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1 .bwg_search_container_2{width:100%!important;float:right}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all{padding:0 0 3px 35px!important;height:13px;line-height:13px;margin-bottom:15px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt{margin-bottom:15px;padding:0;list-style:none;color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk{font-family:Ubuntu;font-size:12px;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p:hover{background:0 0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;font-weight:400;margin-bottom:0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont{height:inherit;border:transparent;background:inherit;width:100%;cursor:pointer;max-height:calc(100% - 2px)}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label{margin:0;line-height:100%;cursor:pointer;width:20px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i{line-height:100%;height:100%}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.closed:before,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.opened:before{color:#323a45;font-size:10px;line-height:30px}.bwg_thumbnail.bwg_container .search_line .bwg_reset{position:absolute}.bwg_thumbnail.bwg_container .search_line .no-match{font-family:Ubuntu;font-size:12px;color:#323a45;padding:5px 25px!important;text-align:center}.bwg_thumbnail.bwg_container .search_line .search-txt{border:transparent;background:0 0;padding:4px 0!important;height:100%}.bwg_thumbnail.bwg_container .search_line .search-txt:focus{box-shadow:none}.bwg_thumbnail.bwg_container .search_line .bwg_order.SumoUnder{display:none}.bwg_slideshow_image_container{position:absolute}.bwg_slideshow_image_container>div>div{display:table;margin:0 auto}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_] img[id^=bwg_slideshow_image_]{display:inline-block}.bwg_thumbnail #bwg_tag_container p{text-align:left}.bwg_thumbnail .bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;background-color:#fff;max-width:100%;box-shadow:none;border:.5px solid rgba(0,0,0,.15);border-radius:15px}.bwg_thumbnail .bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;text-align:center}.bwg_thumbnail .SumoSelect>.optWrapper>.options li.opt:hover{background-color:transparent}.bwg-zoom-effect .bwg-zoom-effect-overlay{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;opacity:0;-webkit-transition:all .45s ease-in-out;transition:all .45s ease-in-out}.bwg-zoom-effect-overlay{display:flex;align-items:center;justify-content:center}.bwg-zoom-effect:hover .bwg-zoom-effect-overlay{opacity:1}.bwg-zoom-effect .bwg-title1{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@media (min-width:480px){.bwg-zoom-effect img{-webkit-transition:all .3s;transition:all .3s}}.bwg_container div[id^=bwg_container2_] img{height:initial}.bwg-masonry-vertical{flex-direction:column}.bwg_thumbnails_masonry .bwg-masonry-thumbnails{overflow:hidden}.bwg_thumbnails_masonry .bwg-masonry-thumbnails .bwg-item{box-sizing:border-box}.bwg-masonry-horizontal{flex-direction:row}.bwg-masonry-horizontal-parent{overflow-x:scroll;overflow-y:hidden}.bwg-masonry-horizontal-container{width:fit-content}.bwg-item.bwg-empty-item{border:0!important;padding:0!important}.bwg-background{background-color:rgba(0,0,0,0);position:relative;width:100%}.bwg-background .wd_error{color:#323a45;font-weight:700}div[id^=bwg_container] .bwg-carousel{margin:0 auto}.bwg_carousel_preload{background-image:url(../images/ajax_loader.png);background-size:50px!important;background-repeat:no-repeat;background-color:#fff;background-position:center}.bwg_container.bwg_carousel *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_]{position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_image_container_]{display:inline-block;position:absolute;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_] div{display:table;margin:0 auto}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_image_]{padding:0!important;display:inline-block;float:none!important;margin:4px!important;position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_],.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_]:hover{text-decoration:none;margin:4px;display:block;position:relative;z-index:17}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel-cont-child{max-width:100%;position:relative;overflow:hidden;height:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel-image{border:0;position:absolute;display:block;max-width:none;padding:0!important;margin:0!important;float:none!important;vertical-align:middle;height:100%;width:100%;background-position:center center;background-repeat:no-repeat;background-size:cover;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel{position:relative;max-width:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature]{position:absolute;display:block;overflow:hidden;cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature] [class^=bwg_carousel-caption] [class^=bwg_carousel_title_text_]{text-decoration:none;position:absolute;z-index:15;display:inline-block;width:75%;top:0;text-align:center;word-wrap:break-word;word-break:break-word}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{bottom:38%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:0%;z-index:13;visibility:visible}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{right:0;left:auto;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left]{left:20px;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_video_hide]{width:100%;height:100%;position:absolute;z-index:22}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_] span,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-table;line-height:0;margin-top:-15px;position:absolute;top:55%}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_]:hover,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]:hover{cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]{bottom:0;cursor:pointer;display:flex;justify-content:center;align-items:center;outline:medium none;position:absolute;height:inherit;width:30%;left:35%;z-index:13}.bwg_container.bwg_carousel .bwg_carousel_play_pause:hover .bwg_carousel_play_pause-ico{display:inline-block!important}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]:hover span{position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_] span{display:flex;justify-content:center;align-items:center}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico{display:none!important;cursor:pointer;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico:hover{display:inline-block;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_]{padding:0!important;float:none!important;width:100%;height:100%;vertical-align:middle;position:relative;display:table;background-color:#000;text-align:center}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_video_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;position:relative;display:table-cell;background-color:#000;text-align:center}.bwg_thumbnail.bwg_container{padding:0 1px}.bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive{display:inline-block}body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_order_cont,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_search_container_1,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .search_tags_container{width:100%;margin:0 0 10px 0;text-align:center;max-width:100%}.search_line .SumoSelect>.optWrapper.multiple.isFloating{padding-bottom:26px}.bwg_container.bwg_blog_style .fluid-width-video-wrapper,.bwg_container.bwg_carousel .fluid-width-video-wrapper,.bwg_container.bwg_image_browser .fluid-width-video-wrapper{width:100%;position:unset!important;padding:0!important}.bwg_inst_play_btn_cont{width:100%;height:100%;position:absolute;z-index:1;cursor:pointer;top:0}.bwg_inst_play{position:absolute;width:50px;height:50px;background-position:center center;background-repeat:no-repeat;background-size:cover;transition:background-image .2s ease-out;-ms-transition:background-image .2s ease-out;-moz-transition:background-image .2s ease-out;-webkit-transition:background-image .2s ease-out;top:0;left:0;right:0;bottom:0;margin:auto}.bwg_inst_play:hover{background-position:center center;background-repeat:no-repeat;background-size:cover}.spider_popup_wrap *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.spider_popup_wrap{display:inline-block;left:50%;outline:medium none;position:fixed;text-align:center;top:50%;z-index:100000}.bwg_popup_image{width:auto;vertical-align:middle;display:inline-block}.bwg_slider img{display:inline-block}.bwg_popup_embed{width:100%;height:100%;vertical-align:middle;text-align:center;display:table}.bwg_btn_container{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.bwg_toggle_btn{margin:0;padding:0}.bwg_ctrl_btn_container{position:absolute;width:100%;z-index:10150}.bwg_btn_container.bwg_no_ctrl_btn .bwg_ctrl_btn_container{background:0 0}.bwg_toggle_container{cursor:pointer;left:50%;line-height:0;position:absolute;text-align:center;z-index:10150}#spider_popup_left-ico span,#spider_popup_right-ico span,.spider_popup_close span{display:table-cell;text-align:center;vertical-align:middle}.bwg_image_wrap{height:inherit;display:table;position:absolute;text-align:center;width:inherit}.bwg_image_wrap *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_comment_wrap,.bwg_ecommerce_wrap{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.bwg_comment_container,.bwg_ecommerce_container{-moz-box-sizing:border-box;height:100%;overflow:hidden;position:absolute;top:0;z-index:10103}#bwg_ecommerce{padding:10px}.bwg_ecommerce_body{background:0 0!important;border:none!important}.pge_tabs{list-style-type:none;margin:0;padding:0;background:0 0!important}.pge_tabs li a,.pge_tabs li a:hover,.pge_tabs li.pge_active a{text-decoration:none;display:block;width:100%;outline:0!important;padding:8px 5px!important;font-weight:700;font-size:13px}.pge_add_to_cart a{padding:5px 10px;text-decoration:none!important;display:block}.pge_add_to_cart{margin:5px 0 15px}.pge_add_to_cart_title{font-size:17px;padding:5px}.pge_add_to_cart div:first-child{float:left}.pge_add_to_cart div:last-child{float:right;margin-top:4px}.pge_add_to_cart:after,.pge_tabs:after{clear:both;content:"";display:table}#downloads table tr td,#downloads table tr th{padding:6px 10px!important;text-transform:none!important}.bwg_comments input[type=submit],.bwg_ecommerce_panel input[type=button]{cursor:pointer;font-size:15px;width:100%;margin-bottom:5px}.bwg_comments,.bwg_ecommerce_panel{bottom:0;height:100%;left:0;overflow-x:hidden;overflow-y:auto;position:absolute;top:0;width:100%;z-index:10101}.bwg_comments{height:100%}.bwg_comment_body_p,.bwg_comments p{margin:5px!important;text-align:left;word-wrap:break-word;word-break:break-all}.bwg_ecommerce_panel p{padding:5px!important;text-align:left;word-wrap:break-word;word-break:break-all;margin:0!important}.bwg_comments .bwg-submit-disabled{opacity:.5}.bwg_comments textarea{height:120px;resize:vertical}.bwg_comment_delete_btn{color:#7a7a7a;cursor:pointer;float:right;font-size:14px;margin:2px}.bwg_comments_close,.bwg_ecommerce_close{cursor:pointer;line-height:0;position:relative;font-size:13px;margin:5px;z-index:10150}.bwg_ecommerce_panel a:hover{text-decoration:underline}.bwg_comment_textarea::-webkit-scrollbar{width:4px}.bwg_comment_textarea::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_comment_textarea::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}.bwg_ctrl_btn_container a,.bwg_ctrl_btn_container a:hover{text-decoration:none}.bwg_facebook:hover{color:#3b5998}.bwg_twitter:hover{color:#4099fb}.bwg_pinterest:hover{color:#cb2027}.bwg_tumblr:hover{color:#2f5070}.bwg_image_container{display:table;position:absolute;text-align:center;vertical-align:middle;width:100%}.bwg_filmstrip_container{position:absolute;z-index:10150}.bwg_filmstrip{overflow:hidden;position:absolute;z-index:10106}.bwg_filmstrip_thumbnails{margin:0 auto;overflow:hidden;position:relative}.bwg_filmstrip_thumbnail{position:relative;background:0 0;float:left;cursor:pointer;overflow:hidden}.bwg_filmstrip_thumbnail .bwg_filmstrip_thumbnail_img_wrap{overflow:hidden}.bwg_thumb_active{opacity:1}.bwg_filmstrip_thumbnail_img{display:block;opacity:1}.bwg_filmstrip_left{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_filmstrip_right{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_none_selectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bwg_watermark_container{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_watermark_container>div{display:table;margin:0 auto}.bwg_watermark_spun{display:table-cell;overflow:hidden;position:relative}.bwg_watermark_image{margin:4px;position:relative;z-index:10141}.bwg_watermark_text,.bwg_watermark_text:hover{text-decoration:none;margin:4px;position:relative;z-index:10141}.bwg_slide_container{display:table-cell;position:absolute;vertical-align:middle;width:100%;height:100%}.bwg_slide_bg{margin:0 auto;width:inherit;height:inherit}.bwg_slider{height:inherit;width:inherit}.bwg_popup_image_spun{height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;width:inherit;z-index:2}.bwg_popup_image_second_spun{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}.bwg_grid{display:none;height:100%;overflow:hidden;position:absolute;width:100%}.bwg_gridlet{opacity:1;position:absolute}.bwg_image_info::-webkit-scrollbar{width:4px}.bwg_image_info::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_image_info::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}#bwg_rate_form .bwg_hint{margin:0 5px;display:none}.bwg_star{display:inline-block;width:unset!important}.bwg_image_count_container{left:0;line-height:1;position:absolute;vertical-align:middle}#bwg_comment_form label{display:block;font-weight:700;margin-top:17px;text-transform:uppercase}#bwg_comment_form .bwg-privacy-policy-box label{text-transform:unset;word-break:break-word}.bwg_popup_image_spun .bwg_popup_image_spun1{width:inherit;height:inherit}.bwg_popup_image_spun1 .bwg_popup_image_spun2{vertical-align:middle;text-align:center;height:100%}#embed_conteiner{table-layout:fixed;height:100%}#opacity_div{background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#loading_div{text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#ecommerce_ajax_loading{position:absolute}#ecommerce_opacity_div{display:none;background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#ecommerce_loading_div{display:none;text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg_ecommerce_panel.bwg_popup_sidebar_panel.bwg_popup_sidebar{text-align:left}#ajax_loading{position:absolute}@media (max-width:480px){.bwg_image_count_container{display:none}.bwg_image_title,.bwg_image_title *{font-size:12px}.bwg_image_description,.bwg_image_description *{font-size:10px}}@media (pointer:none),(pointer:coarse){.bwg-container.bwg-masonry-thumbnails .bwg-title1,.bwg-container.bwg-standard-thumbnails .bwg-title1,.bwg-mosaic-thumbnails{opacity:1!important}.bwg-zoom-effect .bwg-zoom-effect-overlay,.bwg-zoom-effect-overlay>span{opacity:1!important;background-color:unset!important}}body[data-elementor-device-mode=mobile] .bwg-container.bwg-masonry-thumbnails .bwg-title1,body[data-elementor-device-mode=mobile] .bwg-container.bwg-standard-thumbnails .bwg-title1,body[data-elementor-device-mode=mobile] .bwg-mosaic-thumbnails,body[data-elementor-device-mode=tablet] .bwg-container.bwg-masonry-thumbnails .bwg-title1,body[data-elementor-device-mode=tablet] .bwg-container.bwg-standard-thumbnails .bwg-title1,body[data-elementor-device-mode=tablet] .bwg-mosaic-thumbnails{opacity:1!important}body[data-elementor-device-mode=mobile] .bwg-zoom-effect .bwg-zoom-effect-overlay,body[data-elementor-device-mode=mobile] .bwg-zoom-effect-overlay>span,body[data-elementor-device-mode=tablet] .bwg-zoom-effect .bwg-zoom-effect-overlay,body[data-elementor-device-mode=tablet] .bwg-zoom-effect-overlay>span{opacity:1!important;background-color:unset!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_] *{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_]{border-collapse:collapse;display:table;position:relative;text-align:center;margin:auto}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_image_]{display:inline-block;padding:0!important;margin:0!important;float:none!important;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_embed_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;display:inline-block;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_]{position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause{bottom:0;cursor:pointer;display:table;height:inherit;outline:medium none;position:absolute;width:30%;left:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span[id^=bwg_slideshow_play_pause-ico_]{display:inline-block!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span{position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]{display:none!important;cursor:pointer;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]:hover{display:inline-block;position:relative;z-index:13}.bwg_embed_frame .instagram-media,div[id^=bwg_container1_] div[id^=bwg_container2_] .instagram-media{margin:0 auto!important;min-width:unset!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]{left:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{right:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover span{left:auto!important;right:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover span{left:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_] span,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_],div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]:hover{cursor:pointer}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_container_]{display:table;position:absolute;text-align:center;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_container_]{position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] .bwg_slideshow_filmstrip{overflow:hidden;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnails_]{margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnail_]{position:relative;background:0 0;cursor:pointer;float:left;overflow:hidden}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_thumb_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_filmstrip_thumbnail_img_]{display:block;opacity:1;padding:0!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_left_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_right_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_none_selectable_]{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_title_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_description_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_image_]{padding:0!important;float:none!important;margin:4px!important;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_]:hover{text-decoration:none;margin:4px;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_title_text_]{text-decoration:none;position:relative;z-index:11;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_description_text_]{text-decoration:none;position:relative;z-index:15;margin:5px;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_]{display:table-cell;margin:0 auto;position:absolute;vertical-align:middle;width:100%;height:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_bg_]{margin:0 auto;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slider_]{height:inherit;width:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun_]{width:inherit;height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;z-index:2}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_second_spun_]{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_grid_]{display:none;height:100%;overflow:hidden;position:absolute;width:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_gridlet_]{opacity:1;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_]{display:inline-block;position:relative;cursor:pointer;overflow:hidden;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_container_]{display:block;overflow:hidden;position:absolute;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_thumbnails_]{left:0;font-size:0;margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun1_]{display:table;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun2_]{display:table-cell;vertical-align:middle;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_mosaic_play_icon_spun_]{display:flex;width:auto;height:auto;opacity:1;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.lazy_loader{background-image:url(../images/ajax_loader.png);background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg-container-temp0{visibility:hidden!important;position:absolute!important}.bwg_image_browser .pagination-links{display:flex;padding:0}.bwg_image_browser .pagination-links_col1{flex-grow:3;text-align:left}.bwg_image_browser .pagination-links_col2{flex-grow:4;text-align:center}.bwg_image_browser .pagination-links_col3{flex-grow:3;text-align:right}.bwg_current_page[type=number]{width:35px;display:inline-block;-moz-appearance:textfield;line-height:normal!important}.bwg_current_page::-webkit-inner-spin-button,.bwg_current_page::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.bwg_container .bwg_tag_button_view_container{display:flex;justify-content:flex-start;align-content:flex-start;align-items:flex-start;margin-bottom:45px;position:relative;padding-top:3px;flex-wrap:wrap;overflow:hidden;clear:both}.bwg_container .bwg_tag_button_view_container button{cursor:pointer}.bwg_container .bwg_tag_button_view_container button.active{cursor:default}.bwg_container .bwg_tag_button_view_container .verLine{min-height:26px;margin:0 15px}.bwg_container .bwg_tag_button_see_all{margin-bottom:70px;position:relative;display:none}.bwg_container .bwg_tag_button_see_all .see_all_tags{text-transform:uppercase;position:absolute;padding:10px 25px;font-weight:600;cursor:pointer;left:47%;top:-23px}.bwg_container .bwg_tag_button_see_all .see_all_tags span{display:inline-block;line-height:normal;text-align:center;border-radius:50%;margin-right:10px;font-weight:500;color:#fff;height:18px;width:18px}.bwg_addThis{position:absolute;left:10px;top:10px;z-index:9999}
1
+ .spider_popup_wrap .bwg_image_wrap figure{margin:0;padding:0;display:inline-block}figure.zoom{background-position:50% 50%;background-size:200%;position:relative;width:auto;overflow:hidden;cursor:zoom-in}figure.zoom img:hover{opacity:0}figure.zoom img{transition:opacity .5s;display:block}div[id^=bwg_container] p{padding:0!important;margin:0!important}div[id^=bwg_container] img{box-shadow:none!important}div[id^=bwg_container] *{margin:0}div[id^=bwg_container] .SumoSelect.open>.CaptionCont,div[id^=bwg_container] .SumoSelect:focus>.CaptionCont,div[id^=bwg_container] .SumoSelect:hover>.CaptionCont,div[id^=bwg_container] .SumoSelect>.CaptionCont{border:none;box-shadow:none}#bwg_tag_wrap{background-color:#fff;width:100%;font-family:inherit;margin:0 -5px 20px 0;z-index:200;position:relative}.bwg_search_loupe_container,.bwg_search_reset_container{font-size:18px;color:#ccc;cursor:pointer;position:relative}#bwg_tag_container p{text-align:center}#bwg_tag_container{border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;width:256px;float:right}#spider_popup_wrap a{border:none;box-shadow:none}div[id^=bwg_container].bwg_container .bwg-a{border:none;box-shadow:none!important;outline:0;font-size:0;line-height:normal;cursor:pointer;text-decoration:none}div[id^=bwg_container].bwg_container .bwg-masonry-thumb-description,div[id^=bwg_container].bwg_container .bwg-thumb-description{cursor:auto}div[id^=bwg_container] div[id^=bwg_container] .bwg_img_clear{max-height:none!important;max-width:none!important;padding:0!important}.tag_cloud_link{font-size:inherit!important}@media print{#spider_popup_left,#spider_popup_right,.bwg_image_info,[class^=bwg_slideshow_title_text_],[id^=bwg_slideshow_play_pause_],[id^=spider_slideshow_left_],[id^=spider_slideshow_right_]{background:0 0}}.bwg_spider_popup_loading,.footer-list-block .bwp_gallery .bwg_spider_popup_loading,.footer-list-block .bwp_gallery_tags .bwg_spider_popup_loading{background-image:url(../images/ajax_loader.png);background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:0 0;background-size:30px 30px;border:none!important;display:none;height:30px;left:50%;margin-left:-20px;margin-top:-20px;overflow:hidden;position:fixed;top:50%;width:30px;z-index:10102}.bwg_filmstrip_thumbnail_img{max-width:none!important}.dashicons-arrow-down-alt2:before{content:"\f347";height:100%;display:inline-block}.footer-list-block .bwp_gallery .spider_popup_overlay,.footer-list-block .bwp_gallery_tags .spider_popup_overlay,.spider_popup_overlay{cursor:pointer;display:none;height:100%;left:0;position:fixed;top:0;width:100%;z-index:10100}.bwp_gallery_tags div[id^=bwg_container] li{border:none}.spider_popup_close,.spider_popup_close_fullscreen{-moz-box-sizing:content-box!important;box-sizing:content-box!important;cursor:pointer;display:table;line-height:0;position:absolute;z-index:11100}.spider_popup_close_fullscreen{margin:10px 7px;right:7px}#spider_popup_left{left:0}#spider_popup_right{right:0}#spider_popup_left:hover,#spider_popup_right:hover{visibility:visible}#spider_popup_left:hover span{left:20px}#spider_popup_right:hover span{left:auto;right:20px}#spider_popup_left,#spider_popup_right{background:transparent url(../images/blank.gif) repeat scroll 0 0;bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:10130}#bwg_image_container #spider_popup_left,#bwg_image_container #spider_popup_right{width:25%}#spider_popup_left-ico,#spider_popup_right-ico{-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%;z-index:10135}.bwg_captcha_refresh{background-image:url(../images/captcha_refresh.png);background-position:center center;background-repeat:no-repeat;background-size:100% 100%;border-width:0;cursor:pointer;display:inline-block;height:20px;width:20px;margin:0;padding:0;vertical-align:middle}.bwg_captcha_input{vertical-align:middle;width:75px!important}.bwg_captcha_img{cursor:pointer;margin:0 5px 0 5px;vertical-align:middle}.bwg_comment_error{color:red;display:block}.bwg_comment_waiting_message{display:none}.bwg_image_hit_container1,.bwg_image_info_container1,.bwg_image_rate_container1{height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_rate_container1{display:none}.bwg_image_hit_container2,.bwg_image_info_container2,.bwg_image_rate_container2{display:table;height:100%;margin:0 auto;position:absolute;width:100%}.bwg_image_hit_spun,.bwg_image_info_spun,.bwg_image_rate_spun{display:table-cell;height:100%;left:0;top:0;width:100%;overflow:hidden;position:relative}.bwg_image_hit,.bwg_image_info,.bwg_image_rate{display:inline-block;position:relative;text-decoration:none;word-wrap:break-word;z-index:11}.bwg_image_rate{z-index:999!important}.bwg_image_rate_disabled{display:none;position:absolute;width:100%;height:40px;top:0}@media screen and (max-width:465px){.bwg_ctrl_btn_container{height:auto!important}}.bwg_search_container_1{display:inline-block;width:100%;text-align:right;margin:0 5px 20px 0;background-color:rgba(0,0,0,0)}.bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;box-shadow:0 0 3px 1px #ccc;background-color:#fff;border:1px solid #ccc;max-width:100%}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;margin-right:45px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_loupe_container{display:inline-block;margin-right:1px;vertical-align:middle;float:right}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_reset_container{margin-right:5px;vertical-align:middle;float:right}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_reset,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{display:block;font-size:10px;color:#323a45;cursor:pointer;line-height:inherit!important}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search{font-size:12px}div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{color:#070707;outline:0;border:none;box-shadow:none;background:0 0;padding:3px 5px;font-family:inherit;width:100%}.bwg_order_cont .SumoSelect{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;padding:0 10px}.SumoSelect>.optWrapper>.options li.opt{border:none;text-align:left}.bwg_order_cont .SumoSelect .CaptionCont{text-align:left}.bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%;margin:0 5px 20px 0}#bwg_tag_container .SumoSelect,.bwg_order_cont .SumoSelect{display:inline-table}#bwg_tag_container .SumoSelect ul.options,.bwg_order_cont .SumoSelect ul.options{margin:0;padding:0!important}#bwg_tag_container .SumoSelect li,.bwg_order_cont .SumoSelect li{list-style:none}#bwg_tag_container .SumoSelect.open .search-txt{padding:0 8px;height:100%}#bwg_tag_container .SumoSelect>.optWrapper>.options li label{margin:0}.bwg_order_label{border:none;box-shadow:none;color:#bbb;font-family:inherit;font-weight:700;outline:0}.bwg_order{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 3px 1px #ccc;border-radius:4px;height:initial;max-width:100%;text-align:left}.wd_error{color:#ccc;font-size:initial}div[id^=bwg_container] .bwg_download_gallery{text-align:right;margin-top:10px}div[id^=bwg_container] .bwg_download_gallery a{color:#4a4a4a;font-size:25px;text-decoration:none}div[id^=bwg_container] .bwg_download_gallery a:hover{color:#7d7d7d}div[id^=bwg_container] .bwg-border-box *{-moz-box-sizing:border-box;box-sizing:border-box}.bwg-flex{display:flex}.bwg-width-100{width:100%;max-width:100%}.bwg-flex-column{flex-direction:column}.bwg-flex-row{flex-direction:row;flex-wrap:wrap}.bwg-container{font-size:0;width:100%;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.bwg-item{display:flex;flex-direction:column;cursor:pointer}.bwg-item0{overflow:hidden;z-index:100}.bwg-item0:hover{background:0 0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;opacity:1;z-index:102;position:relative}.bwg-item1{overflow:hidden;width:100%;position:relative}.bwg-item2{top:0;left:0;bottom:0;right:0;width:100%;height:100%}.bwg-item2{position:absolute}.bwg-ecommerce1,.bwg-title1{opacity:1;text-align:center;width:100%}.bwg-ecommerce1{text-align:right}.bwg-title2{width:100%;word-wrap:break-word}.bwg-item0:hover .bwg-ecommerce1,.bwg-item0:hover .bwg-title1{left:0!important;opacity:1!important}.bwg-play-icon1{display:flex;width:auto;height:auto;opacity:1;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.bwg_loading_div_1{position:absolute;width:100%;height:100%;z-index:115;text-align:center;vertical-align:middle;top:0}.bwg_load_more_ajax_loading{width:100%;z-index:115;text-align:center;vertical-align:middle;position:relative;height:30px}.bwg_load_more_ajax_loading.bwg-hidden{height:0}.bwg_loading_div_2{display:table;vertical-align:middle;width:100%;height:100%;background-color:#fff;opacity:.95}.bwg_loading_div_3{display:table-cell;text-align:center;position:relative;vertical-align:middle}.bwg_spider_ajax_loading{border:none!important;display:inline-block;text-align:center;position:relative;vertical-align:middle;background-image:url(../images/ajax_loader.png);float:none;width:30px;height:30px;background-size:30px 30px}.bwg-hidden{visibility:hidden}.bwg_container{position:relative;margin:20px auto}.bwg_inst_play_btn_cont,.bwg_inst_play_btn_cont .bwg_inst_play{display:block}.hidden{display:none}.bwg-loading{width:100%;height:100%;opacity:.95;position:absolute;background-image:url(../images/ajax_loader.png);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}#bwg_download{display:inline-block}#bwg_download.hidden{display:none}.bwg_thumbnail.bwg_container .search_line.bwg_tag_select_view{min-height:50px;-webkit-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);-moz-box-shadow:0 5px 7px -5px rgba(0,0,0,.16);box-shadow:0 5px 7px -5px rgba(0,0,0,.16);margin-bottom:10px;display:inline-block;width:100%}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:left;display:table-cell;text-align:left;vertical-align:middle}.bwg_thumbnail.bwg_container .search_line #bwg_tag_wrap #bwg_tag_container,.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select{border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont,.bwg_thumbnail.bwg_container .search_line .search_tags_container{width:25%;min-width:120px;max-width:180px;margin-right:20px;border:.5px solid rgba(0,0,0,.15);box-shadow:none;border-radius:15px;float:left;height:30px;padding:0;cursor:pointer;background:#fff}.bwg_thumbnail.bwg_container .search_line .bwg_order_cont select,.bwg_thumbnail.bwg_container .search_line .placeholder,.bwg_thumbnail.bwg_container .search_line .search-txt,.bwg_thumbnail.bwg_container .search_line .select-all,.bwg_thumbnail.bwg_container .search_line.SumoSelect .opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-weight:400;font-family:Ubuntu;margin:0;border:none}.bwg_thumbnail.bwg_container .search_line .select-all label{margin-bottom:0;line-height:13px}.bwg_thumbnail.bwg_container .search_line .SumoSelect ul.options:not(:empty){padding:15px 0 0 10px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect{padding:0 10px;width:initial;height:inherit;cursor:pointer;display:block;border:none;box-shadow:none;border-radius:0;max-width:100%;background-color:transparent;line-height:inherit;vertical-align:bottom}.bwg_thumbnail.bwg_container .search_line .bwg_search_input_container{height:30px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100%);margin:0;overflow:hidden}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input,.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input:focus{height:30px;padding:0 10px;text-align:center;font-size:12px;font-family:Ubuntu;border-radius:15px;text-align:left;width:calc(100% - 64px);display:inline-table}.bwg_thumbnail.bwg_container .search_line .CaptionCont span{display:block!important;vertical-align:middle;color:#323a45!important;font-size:12px;text-transform:uppercase;font-family:Ubuntu;cursor:pointer;line-height:29px;max-width:calc(100% - 20px)}.bwg_thumbnail .search_tags{cursor:pointer}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all>span,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt span{margin-left:-35px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.options li.opt{padding-left:25px}.bwg_thumbnail .bwg_search_input::-webkit-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input::-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu;line-height:30px}.bwg_thumbnail .bwg_search_input:-ms-input-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .bwg_search_input:-moz-placeholder{color:#ccc;font-size:12px;text-transform:uppercase;text-align:left;font-family:Ubuntu}.bwg_thumbnail .search-txt::-webkit-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px!important}.bwg_thumbnail .search-txt::-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-ms-input-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .search-txt:-moz-placeholder{text-align:left;color:#323a45;opacity:.5;font-size:12px}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title{width:calc(100% - 20px);height:29px;text-align:center;display:inline-block;background:#fff;position:absolute;top:.5px;left:10px;white-space:nowrap;border-radius:15px;color:#4e4e4e;text-transform:uppercase;overflow:hidden}.bwg_thumbnail .bwg_search_input_container .search_placeholder_title span{line-height:28px}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container{line-height:29px;display:inline-block;top:0;margin-right:10px;vertical-align:middle;float:none;padding-top:0;font-size:12px;font-family:Ubuntug}.bwg_thumbnail.bwg_container .search_line .bwg_search_loupe_container1{margin-left:0;float:left;top:0;line-height:30px;width:auto;height:30px;margin-left:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_reset_container{right:0;top:0;line-height:30px;width:11px;height:30px;margin-right:10px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1{float:right;width:30%;min-width:120px}.bwg_thumbnail.bwg_container .search_line .bwg_search_container_1 .bwg_search_container_2{width:100%!important;float:right}.bwg_thumbnail.bwg_container .search_line .SumoSelect .select-all{padding:0 0 3px 35px!important;height:13px;line-height:13px;margin-bottom:15px!important}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt{margin-bottom:15px;padding:0;list-style:none;color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk{font-family:Ubuntu;font-size:12px;line-height:12px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper.multiple>.MultiControls>p:hover{background:0 0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.optWrapper>.options li.opt label{color:#323a45;font-size:12px;text-transform:uppercase;font-family:Ubuntu;font-weight:400;margin-bottom:0}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont{height:inherit;border:transparent;background:inherit;width:100%;cursor:pointer;max-height:calc(100% - 2px)}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label{margin:0;line-height:100%;cursor:pointer;width:20px}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i{line-height:100%;height:100%}.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.closed:before,.bwg_thumbnail.bwg_container .search_line .SumoSelect>.CaptionCont>label>i.opened:before{color:#323a45;font-size:10px;line-height:30px}.bwg_thumbnail.bwg_container .search_line .bwg_reset{position:absolute}.bwg_thumbnail.bwg_container .search_line .no-match{font-family:Ubuntu;font-size:12px;color:#323a45;padding:5px 25px!important;text-align:center}.bwg_thumbnail.bwg_container .search_line .search-txt{border:transparent;background:0 0;padding:4px 0!important;height:100%}.bwg_thumbnail.bwg_container .search_line .search-txt:focus{box-shadow:none}.bwg_thumbnail.bwg_container .search_line .bwg_order.SumoUnder{display:none}.bwg_slideshow_image_container{position:absolute}.bwg_slideshow_image_container>div>div{display:table;margin:0 auto}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_] img[id^=bwg_slideshow_image_]{display:inline-block}.bwg_thumbnail #bwg_tag_container p{text-align:left}.bwg_thumbnail .bwg_search_container_2{display:inline-block;position:relative;border-radius:4px;background-color:#fff;max-width:100%;box-shadow:none;border:.5px solid rgba(0,0,0,.15);border-radius:15px}.bwg_thumbnail .bwg_order_cont{background-color:rgba(0,0,0,0);display:block;text-align:right;width:100%}.bwg_thumbnail div[id^=bwg_search_container_1_] div[id^=bwg_search_container_2_] .bwg_search_input_container{display:block;text-align:center}.bwg_thumbnail .SumoSelect>.optWrapper>.options li.opt:hover{background-color:transparent}.bwg-zoom-effect .bwg-zoom-effect-overlay{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;opacity:0;-webkit-transition:all .45s ease-in-out;transition:all .45s ease-in-out}.bwg-zoom-effect-overlay{display:flex;align-items:center;justify-content:center}.bwg-zoom-effect:hover .bwg-zoom-effect-overlay{opacity:1}.bwg-zoom-effect .bwg-title1{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@media (min-width:480px){.bwg-zoom-effect img{-webkit-transition:all .3s;transition:all .3s}}.bwg_container div[id^=bwg_container2_] img{height:initial}.bwg-masonry-vertical{flex-direction:column}.bwg_thumbnails_masonry .bwg-masonry-thumbnails{overflow:hidden}.bwg_thumbnails_masonry .bwg-masonry-thumbnails .bwg-item{box-sizing:border-box}.bwg-masonry-horizontal{flex-direction:row}.bwg-masonry-horizontal-parent{overflow-x:scroll;overflow-y:hidden}.bwg-masonry-horizontal-container{width:fit-content}.bwg-item.bwg-empty-item{border:0!important;padding:0!important}.bwg-background{background-color:rgba(0,0,0,0);position:relative;width:100%}.bwg-background .wd_error{color:#323a45;font-weight:700}div[id^=bwg_container] .bwg-carousel{margin:0 auto}.bwg_carousel_preload{background-image:url(../images/ajax_loader.png);background-size:50px!important;background-repeat:no-repeat;background-color:#fff;background-position:center}.bwg_container.bwg_carousel *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_]{position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_image_container_]{display:inline-block;position:absolute;text-align:center;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_container_] div{display:table;margin:0 auto}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_image_]{padding:0!important;display:inline-block;float:none!important;margin:4px!important;position:relative;z-index:15}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_],.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_watermark_text_]:hover{text-decoration:none;margin:4px;display:block;position:relative;z-index:17}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel-cont-child{max-width:100%;position:relative;overflow:hidden;height:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel-image{border:0;position:absolute;display:block;max-width:none;padding:0!important;margin:0!important;float:none!important;vertical-align:middle;height:100%;width:100%;background-position:center center;background-repeat:no-repeat;background-size:cover;vertical-align:middle}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg-carousel{position:relative;max-width:100%;width:100%}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature]{position:absolute;display:block;overflow:hidden;cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel-feature] [class^=bwg_carousel-caption] [class^=bwg_carousel_title_text_]{text-decoration:none;position:absolute;z-index:15;display:inline-block;width:75%;top:0;text-align:center;word-wrap:break-word;word-break:break-word}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{bottom:38%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:0%;z-index:13;visibility:visible}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-right]{right:0;left:auto;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel-left]{left:20px;z-index:999}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_video_hide]{width:100%;height:100%;position:absolute;z-index:22}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_] span,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_],.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-table;line-height:0;margin-top:-15px;position:absolute;top:55%}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_left-ico_]:hover,.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=spider_carousel_right-ico_]:hover{cursor:pointer}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]{bottom:0;cursor:pointer;display:flex;justify-content:center;align-items:center;outline:medium none;position:absolute;height:inherit;width:30%;left:35%;z-index:13}.bwg_container.bwg_carousel .bwg_carousel_play_pause:hover .bwg_carousel_play_pause-ico{display:inline-block!important}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_]:hover span{position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [id^=bwg_carousel_play_pause_] span{display:flex;justify-content:center;align-items:center}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico{display:none!important;cursor:pointer;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] .bwg_carousel_play_pause-ico:hover{display:inline-block;position:relative;z-index:13}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_]{padding:0!important;float:none!important;width:100%;height:100%;vertical-align:middle;position:relative;display:table;background-color:#000;text-align:center}.bwg_container.bwg_carousel [id^=bwg_container2_] [class^=bwg_carousel_embed_video_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;position:relative;display:table-cell;background-color:#000;text-align:center}.bwg_thumbnail.bwg_container{padding:0 1px}.bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive{display:inline-block}body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_order_cont,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .bwg_search_container_1,body .bwg_thumbnail.bwg_container .search_line.bwg-search-line-responsive .search_tags_container{width:100%;margin:0 0 10px 0;text-align:center;max-width:100%}.search_line .SumoSelect>.optWrapper.multiple.isFloating{padding-bottom:26px}.bwg_container.bwg_blog_style .fluid-width-video-wrapper,.bwg_container.bwg_carousel .fluid-width-video-wrapper,.bwg_container.bwg_image_browser .fluid-width-video-wrapper{width:100%;position:unset!important;padding:0!important}.bwg_inst_play_btn_cont{width:100%;height:100%;position:absolute;z-index:1;cursor:pointer;top:0}.bwg_inst_play{position:absolute;width:50px;height:50px;background-position:center center;background-repeat:no-repeat;background-size:cover;transition:background-image .2s ease-out;-ms-transition:background-image .2s ease-out;-moz-transition:background-image .2s ease-out;-webkit-transition:background-image .2s ease-out;top:0;left:0;right:0;bottom:0;margin:auto}.bwg_inst_play:hover{background-position:center center;background-repeat:no-repeat;background-size:cover}.spider_popup_wrap *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.spider_popup_wrap{display:inline-block;left:50%;outline:medium none;position:fixed;text-align:center;top:50%;z-index:100000}.bwg_popup_image{width:auto;vertical-align:middle;display:inline-block}.bwg_slider img{display:inline-block}.bwg_popup_embed{width:100%;height:100%;vertical-align:middle;text-align:center;display:table}.bwg_btn_container{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.bwg_toggle_btn{margin:0;padding:0}.bwg_ctrl_btn_container{position:absolute;width:100%;z-index:10150}.bwg_btn_container.bwg_no_ctrl_btn .bwg_ctrl_btn_container{background:0 0}.bwg_toggle_container{cursor:pointer;left:50%;line-height:0;position:absolute;text-align:center;z-index:10150}#spider_popup_left-ico span,#spider_popup_right-ico span,.spider_popup_close span{display:table-cell;text-align:center;vertical-align:middle}.bwg_image_wrap{height:inherit;display:table;position:absolute;text-align:center;width:inherit}.bwg_image_wrap *{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.bwg_comment_wrap,.bwg_ecommerce_wrap{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.bwg_comment_container,.bwg_ecommerce_container{-moz-box-sizing:border-box;height:100%;overflow:hidden;position:absolute;top:0;z-index:10103}#bwg_ecommerce{padding:10px}.bwg_ecommerce_body{background:0 0!important;border:none!important}.pge_tabs{list-style-type:none;margin:0;padding:0;background:0 0!important}.pge_tabs li a,.pge_tabs li a:hover,.pge_tabs li.pge_active a{text-decoration:none;display:block;width:100%;outline:0!important;padding:8px 5px!important;font-weight:700;font-size:13px}.pge_add_to_cart a{padding:5px 10px;text-decoration:none!important;display:block}.pge_add_to_cart{margin:5px 0 15px}.pge_add_to_cart_title{font-size:17px;padding:5px}.pge_add_to_cart div:first-child{float:left}.pge_add_to_cart div:last-child{float:right;margin-top:4px}.pge_add_to_cart:after,.pge_tabs:after{clear:both;content:"";display:table}#downloads table tr td,#downloads table tr th{padding:6px 10px!important;text-transform:none!important}.bwg_comments input[type=submit],.bwg_ecommerce_panel input[type=button]{cursor:pointer;font-size:15px;width:100%;margin-bottom:5px}.bwg_comments,.bwg_ecommerce_panel{bottom:0;height:100%;left:0;overflow-x:hidden;overflow-y:auto;position:absolute;top:0;width:100%;z-index:10101}.bwg_comments{height:100%}.bwg_comment_body_p,.bwg_comments p{margin:5px!important;text-align:left;word-wrap:break-word;word-break:break-all}.bwg_ecommerce_panel p{padding:5px!important;text-align:left;word-wrap:break-word;word-break:break-all;margin:0!important}.bwg_comments .bwg-submit-disabled{opacity:.5}.bwg_comments textarea{height:120px;resize:vertical}.bwg_comment_delete_btn{color:#7a7a7a;cursor:pointer;float:right;font-size:14px;margin:2px}.bwg_comments_close,.bwg_ecommerce_close{cursor:pointer;line-height:0;position:relative;font-size:13px;margin:5px;z-index:10150}.bwg_ecommerce_panel a:hover{text-decoration:underline}.bwg_comment_textarea::-webkit-scrollbar{width:4px}.bwg_comment_textarea::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_comment_textarea::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}.bwg_ctrl_btn_container a,.bwg_ctrl_btn_container a:hover{text-decoration:none}.bwg_facebook:hover{color:#3b5998}.bwg_twitter:hover{color:#4099fb}.bwg_pinterest:hover{color:#cb2027}.bwg_tumblr:hover{color:#2f5070}.bwg_image_container{display:table;position:absolute;text-align:center;vertical-align:middle;width:100%}.bwg_filmstrip_container{position:absolute;z-index:10150}.bwg_filmstrip{overflow:hidden;position:absolute;z-index:10106}.bwg_filmstrip_thumbnails{margin:0 auto;overflow:hidden;position:relative}.bwg_filmstrip_thumbnail{position:relative;background:0 0;float:left;cursor:pointer;overflow:hidden}.bwg_filmstrip_thumbnail .bwg_filmstrip_thumbnail_img_wrap{overflow:hidden}.bwg_thumb_active{opacity:1}.bwg_filmstrip_thumbnail_img{display:block;opacity:1}.bwg_filmstrip_left{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_filmstrip_right{cursor:pointer;vertical-align:middle;z-index:10106;line-height:0}.bwg_none_selectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bwg_watermark_container{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}.bwg_watermark_container>div{display:table;margin:0 auto}.bwg_watermark_spun{display:table-cell;overflow:hidden;position:relative}.bwg_watermark_image{margin:4px;position:relative;z-index:10141}.bwg_watermark_text,.bwg_watermark_text:hover{text-decoration:none;margin:4px;position:relative;z-index:10141}.bwg_slide_container{display:table-cell;position:absolute;vertical-align:middle;width:100%;height:100%}.bwg_slide_bg{margin:0 auto;width:inherit;height:inherit}.bwg_slider{height:inherit;width:inherit}.bwg_popup_image_spun{height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;width:inherit;z-index:2}.bwg_popup_image_second_spun{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}.bwg_grid{display:none;height:100%;overflow:hidden;position:absolute;width:100%}.bwg_gridlet{opacity:1;position:absolute}.bwg_image_info::-webkit-scrollbar{width:4px}.bwg_image_info::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.55);border-radius:2px}.bwg_image_info::-webkit-scrollbar-thumb:hover{background-color:#d9d9d9}#bwg_rate_form .bwg_hint{margin:0 5px;display:none}.bwg_star{display:inline-block;width:unset!important}.bwg_image_count_container{left:0;line-height:1;position:absolute;vertical-align:middle}#bwg_comment_form label{display:block;font-weight:700;margin-top:17px;text-transform:uppercase}#bwg_comment_form .bwg-privacy-policy-box label{text-transform:unset;word-break:break-word}.bwg_popup_image_spun .bwg_popup_image_spun1{width:inherit;height:inherit}.bwg_popup_image_spun1 .bwg_popup_image_spun2{vertical-align:middle;text-align:center;height:100%}#embed_conteiner{table-layout:fixed;height:100%}#opacity_div{background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#loading_div{text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}#ecommerce_ajax_loading{position:absolute}#ecommerce_opacity_div{display:none;background-color:rgba(255,255,255,.2);position:absolute;z-index:10150}#ecommerce_loading_div{display:none;text-align:center;position:relative;vertical-align:middle;z-index:10170;float:none;width:30px;height:30px;background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg_ecommerce_panel.bwg_popup_sidebar_panel.bwg_popup_sidebar{text-align:left}#ajax_loading{position:absolute}@media (max-width:480px){.bwg_image_count_container{display:none}.bwg_image_title,.bwg_image_title *{font-size:12px}.bwg_image_description,.bwg_image_description *{font-size:10px}}@media (pointer:none),(pointer:coarse){.bwg-container.bwg-masonry-thumbnails .bwg-title1,.bwg-container.bwg-standard-thumbnails .bwg-title1,.bwg-mosaic-thumbnails{opacity:1!important}.bwg-zoom-effect .bwg-zoom-effect-overlay,.bwg-zoom-effect-overlay>span{opacity:1!important;background-color:unset!important}}body[data-elementor-device-mode=mobile] .bwg-container.bwg-masonry-thumbnails .bwg-title1,body[data-elementor-device-mode=mobile] .bwg-container.bwg-standard-thumbnails .bwg-title1,body[data-elementor-device-mode=mobile] .bwg-mosaic-thumbnails,body[data-elementor-device-mode=tablet] .bwg-container.bwg-masonry-thumbnails .bwg-title1,body[data-elementor-device-mode=tablet] .bwg-container.bwg-standard-thumbnails .bwg-title1,body[data-elementor-device-mode=tablet] .bwg-mosaic-thumbnails{opacity:1!important}body[data-elementor-device-mode=mobile] .bwg-zoom-effect .bwg-zoom-effect-overlay,body[data-elementor-device-mode=mobile] .bwg-zoom-effect-overlay>span,body[data-elementor-device-mode=tablet] .bwg-zoom-effect .bwg-zoom-effect-overlay,body[data-elementor-device-mode=tablet] .bwg-zoom-effect-overlay>span{opacity:1!important;background-color:unset!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_] *{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_wrap_]{border-collapse:collapse;display:table;position:relative;text-align:center;margin:auto}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_image_]{display:inline-block;padding:0!important;margin:0!important;float:none!important;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_embed_]{padding:0!important;margin:0!important;float:none!important;vertical-align:middle;display:inline-block;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_]{position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause{bottom:0;cursor:pointer;display:table;height:inherit;outline:medium none;position:absolute;width:30%;left:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span[id^=bwg_slideshow_play_pause-ico_]{display:inline-block!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause:hover span{position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span.bwg_slideshow_play_pause span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]{display:none!important;cursor:pointer;position:relative;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=bwg_slideshow_play_pause-ico_]:hover{display:inline-block;position:relative;z-index:13}.bwg_embed_frame .instagram-media,div[id^=bwg_container1_] div[id^=bwg_container2_] .instagram-media{margin:0 auto!important;min-width:unset!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{bottom:35%;cursor:pointer;display:inline;height:30%;outline:medium none;position:absolute;width:35%;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]{left:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]{right:0}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover{visibility:visible}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_right_]:hover span{left:auto!important;right:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] a[id^=spider_slideshow_left_]:hover span{left:20px!important}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_] span,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_] span{display:table-cell;text-align:center;vertical-align:middle;z-index:13}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_],div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]{z-index:13;-moz-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:table;line-height:0;margin-top:-15px;position:absolute;top:50%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_left-ico_]:hover,div[id^=bwg_container1_] div[id^=bwg_container2_] span[id^=spider_slideshow_right-ico_]:hover{cursor:pointer}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_image_container_]{display:table;position:absolute;text-align:center;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_container_]{position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] .bwg_slideshow_filmstrip,div[id^=bwg_container1_] div[id^=bwg_container2_] .bwg_slideshow_filmstrip_fix_count{overflow:hidden;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnails_]{margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_thumbnail_]{position:relative;background:0 0;cursor:pointer;float:left;overflow:hidden}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_thumb_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_filmstrip_thumbnail_img_]{display:block;opacity:1;padding:0!important}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_left_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_filmstrip_right_]{cursor:pointer;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_none_selectable_]{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_watermark_container_]{display:table-cell;margin:0 auto;position:relative;vertical-align:middle}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_watermark_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_title_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_description_spun_]{display:table-cell;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] img[class^=bwg_slideshow_watermark_image_]{padding:0!important;float:none!important;margin:4px!important;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_],div[id^=bwg_container1_] div[id^=bwg_container2_] a[class^=bwg_slideshow_watermark_text_]:hover{text-decoration:none;margin:4px;position:relative;z-index:15}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_title_text_]{text-decoration:none;position:relative;z-index:11;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_description_text_]{text-decoration:none;position:relative;z-index:15;margin:5px;display:inline-block;word-wrap:break-word;word-break:break-word}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_container_]{display:table-cell;margin:0 auto;position:absolute;vertical-align:middle;width:100%;height:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slide_bg_]{margin:0 auto;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slider_]{height:inherit;width:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun_]{width:inherit;height:inherit;display:table-cell;opacity:1;position:absolute;vertical-align:middle;z-index:2}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_second_spun_]{width:inherit;height:inherit;display:table-cell;opacity:0;position:absolute;vertical-align:middle;z-index:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_grid_]{display:none;height:100%;overflow:hidden;position:absolute;width:100%}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_gridlet_]{opacity:1;position:absolute}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_]{display:inline-block;position:relative;cursor:pointer;overflow:hidden;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_container_]{display:block;overflow:hidden;position:absolute;z-index:17}div[id^=bwg_container1_] div[id^=bwg_container2_] div[class^=bwg_slideshow_dots_thumbnails_]{left:0;font-size:0;margin:0 auto;overflow:hidden;position:relative}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_dots_active_]{opacity:1}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun1_]{display:table;width:inherit;height:inherit}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_slideshow_image_spun2_]{display:table-cell;vertical-align:middle;text-align:center}div[id^=bwg_container1_] div[id^=bwg_container2_] span[class^=bwg_mosaic_play_icon_spun_]{display:flex;width:auto;height:auto;opacity:1;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:100;justify-content:center;align-content:center;flex-direction:column;text-align:center}.lazy_loader{background-image:url(../images/ajax_loader.png);background-size:30px 30px;background-repeat:no-repeat;background-position:50% 50%}.bwg-container-temp0{visibility:hidden!important;position:absolute!important}.bwg_image_browser .pagination-links{display:flex;padding:0}.bwg_image_browser .pagination-links_col1{flex-grow:3;text-align:left}.bwg_image_browser .pagination-links_col2{flex-grow:4;text-align:center}.bwg_image_browser .pagination-links_col3{flex-grow:3;text-align:right}.bwg_current_page[type=number]{width:35px;display:inline-block;-moz-appearance:textfield;line-height:normal!important}.bwg_current_page::-webkit-inner-spin-button,.bwg_current_page::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.bwg_container .bwg_tag_button_view_container{display:flex;justify-content:flex-start;align-content:flex-start;align-items:flex-start;margin-bottom:45px;position:relative;padding-top:3px;flex-wrap:wrap;overflow:hidden;clear:both}.bwg_container .bwg_tag_button_view_container button{cursor:pointer}.bwg_container .bwg_tag_button_view_container button.active{cursor:default}.bwg_container .bwg_tag_button_view_container .verLine{min-height:26px;margin:0 15px}.bwg_container .bwg_tag_button_see_all{margin-bottom:70px;position:relative;display:none}.bwg_container .bwg_tag_button_see_all .see_all_tags{text-transform:uppercase;position:absolute;padding:10px 25px;font-weight:600;cursor:pointer;left:47%;top:-23px}.bwg_container .bwg_tag_button_see_all .see_all_tags span{display:inline-block;line-height:normal;text-align:center;border-radius:50%;margin-right:10px;font-weight:500;color:#fff;height:18px;width:18px}.bwg_addThis{position:absolute;left:10px;top:10px;z-index:9999}
framework/BWGOptions.php CHANGED
@@ -108,7 +108,8 @@ class WD_BWG_Options {
108
  public $slideshow_enable_shuffle = 0;
109
  public $slideshow_enable_ctrl = 1;
110
  public $autohide_slideshow_navigation = 1;
111
- public $slideshow_enable_filmstrip = 1;
 
112
  public $slideshow_filmstrip_height = 90;
113
  public $slideshow_enable_title = 0;
114
  public $slideshow_title_position = 'top-right';
@@ -221,7 +222,7 @@ class WD_BWG_Options {
221
  public $album_masonry_show_tag_box = 0;
222
  public $show_album_masonry_name = 0;
223
  public $album_masonry_show_gallery_description = 0;
224
- public $album_masonry_image_title = 0;
225
  public $album_masonry_gallery_download = 0;
226
  public $album_masonry_ecommerce_icon_show_hover = 'none';
227
 
108
  public $slideshow_enable_shuffle = 0;
109
  public $slideshow_enable_ctrl = 1;
110
  public $autohide_slideshow_navigation = 1;
111
+ public $slideshow_filmstrip_type = 1;
112
+ public $slideshow_thumbnails_count = 5;
113
  public $slideshow_filmstrip_height = 90;
114
  public $slideshow_enable_title = 0;
115
  public $slideshow_title_position = 'top-right';
222
  public $album_masonry_show_tag_box = 0;
223
  public $show_album_masonry_name = 0;
224
  public $album_masonry_show_gallery_description = 0;
225
+ public $album_masonry_image_title = 'none';
226
  public $album_masonry_gallery_download = 0;
227
  public $album_masonry_ecommerce_icon_show_hover = 'none';
228
 
framework/WDWLibrary.php CHANGED
@@ -42,7 +42,7 @@ class WDWLibrary {
42
  }
43
  }
44
 
45
- if( is_bool($value) ) {
46
  return $value;
47
  }
48
 
@@ -1308,7 +1308,8 @@ class WDWLibrary {
1308
 
1309
  $join = $tag ? 'LEFT JOIN ' . $wpdb->prefix . 'bwg_image_tag as tag ON image.id=tag.image_id' : '';
1310
 
1311
- $filter_tags_name = self::get($tag_input_name, '', 'sanitize_text_field', 'REQUEST');
 
1312
  if ( $filter_tags_name ) {
1313
  if ( !BWG()->options->tags_filter_and_or ) {
1314
  // To find images which have at least one from tags filtered by.
@@ -2111,7 +2112,8 @@ class WDWLibrary {
2111
  $defaults['enable_slideshow_shuffle'] = self::get_option_value('enable_slideshow_shuffle', 'enable_slideshow_shuffle', 'slideshow_enable_shuffle', $use_option_defaults, $params);
2112
  $defaults['enable_slideshow_ctrl'] = self::get_option_value('enable_slideshow_ctrl', 'enable_slideshow_ctrl', 'slideshow_enable_ctrl', $use_option_defaults, $params);
2113
  $defaults['autohide_slideshow_navigation'] = self::get_option_value('autohide_slideshow_navigation', 'autohide_slideshow_navigation', 'autohide_slideshow_navigation', $use_option_defaults, $params);
2114
- $defaults['enable_slideshow_filmstrip'] = self::get_option_value('enable_slideshow_filmstrip', 'enable_slideshow_filmstrip', 'slideshow_enable_filmstrip', $use_option_defaults, $params);
 
2115
  $defaults['slideshow_filmstrip_height'] = self::get_option_value('slideshow_filmstrip_height', 'slideshow_filmstrip_height', 'slideshow_filmstrip_height', $use_option_defaults, $params);
2116
  $defaults['slideshow_enable_title'] = self::get_option_value('slideshow_enable_title', 'slideshow_enable_title', 'slideshow_enable_title', $from || $use_option_defaults, $params);
2117
  $defaults['slideshow_title_position'] = self::get_option_value('slideshow_title_position', 'slideshow_title_position', 'slideshow_title_position', $from || $use_option_defaults, $params);
42
  }
43
  }
44
 
45
+ if ( is_bool($value) ) {
46
  return $value;
47
  }
48
 
1308
 
1309
  $join = $tag ? 'LEFT JOIN ' . $wpdb->prefix . 'bwg_image_tag as tag ON image.id=tag.image_id' : '';
1310
 
1311
+ $filter_tags_name = self::get($tag_input_name, '', 'esc_sql', 'REQUEST');
1312
+
1313
  if ( $filter_tags_name ) {
1314
  if ( !BWG()->options->tags_filter_and_or ) {
1315
  // To find images which have at least one from tags filtered by.
2112
  $defaults['enable_slideshow_shuffle'] = self::get_option_value('enable_slideshow_shuffle', 'enable_slideshow_shuffle', 'slideshow_enable_shuffle', $use_option_defaults, $params);
2113
  $defaults['enable_slideshow_ctrl'] = self::get_option_value('enable_slideshow_ctrl', 'enable_slideshow_ctrl', 'slideshow_enable_ctrl', $use_option_defaults, $params);
2114
  $defaults['autohide_slideshow_navigation'] = self::get_option_value('autohide_slideshow_navigation', 'autohide_slideshow_navigation', 'autohide_slideshow_navigation', $use_option_defaults, $params);
2115
+ $defaults['slideshow_filmstrip_type'] = self::get_option_value('slideshow_filmstrip_type', 'slideshow_filmstrip_type', 'slideshow_filmstrip_type', $use_option_defaults, $params);
2116
+ $defaults['slideshow_thumbnails_count'] = self::get_option_value('slideshow_thumbnails_count', 'slideshow_thumbnails_count', 'slideshow_thumbnails_count', $use_option_defaults, $params);
2117
  $defaults['slideshow_filmstrip_height'] = self::get_option_value('slideshow_filmstrip_height', 'slideshow_filmstrip_height', 'slideshow_filmstrip_height', $use_option_defaults, $params);
2118
  $defaults['slideshow_enable_title'] = self::get_option_value('slideshow_enable_title', 'slideshow_enable_title', 'slideshow_enable_title', $from || $use_option_defaults, $params);
2119
  $defaults['slideshow_title_position'] = self::get_option_value('slideshow_title_position', 'slideshow_title_position', 'slideshow_title_position', $from || $use_option_defaults, $params);
frontend/views/BWGViewGalleryBox.php CHANGED
@@ -923,7 +923,7 @@ class BWGViewGalleryBox {
923
  if ( !$is_embed ) {
924
  if ( $params['popup_enable_zoom'] ) {
925
  ?>
926
- <figure class="bwg_popup_image bwg_popup_watermark" style='background-image: url("<?php echo BWG()->upload_url . $image_row->image_url; ?>")'>
927
  <?php
928
  }
929
  ?>
923
  if ( !$is_embed ) {
924
  if ( $params['popup_enable_zoom'] ) {
925
  ?>
926
+ <figure class="bwg_popup_image bwg_popup_watermark" style='background-image: url("<?php echo BWG()->upload_url . $image_row->image_url; ?>"); background-repeat: no-repeat'>
927
  <?php
928
  }
929
  ?>
frontend/views/BWGViewSlideshow.php CHANGED
@@ -18,23 +18,21 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
18
  $enable_slideshow_autoplay = $params['enable_slideshow_autoplay'];
19
  $enable_slideshow_shuffle = $params['enable_slideshow_shuffle'];
20
  $enable_slideshow_ctrl = $params['enable_slideshow_ctrl'];
21
- $enable_slideshow_filmstrip = BWG()->is_pro ? $params['enable_slideshow_filmstrip'] : 0;
 
 
 
 
 
 
 
 
22
  $slideshow_filmstrip_height = 0;
23
  $slideshow_filmstrip_width = 0;
24
- if ( $enable_slideshow_filmstrip ) {
25
- $thumb_width = BWG()->options->thumb_width;
26
- $thumb_height = BWG()->options->thumb_height;
27
- if ( $filmstrip_direction == 'horizontal' ) {
28
- $slideshow_filmstrip_height = $params['slideshow_filmstrip_height'];
29
- $thumb_ratio = $thumb_width / $thumb_height;
30
- $slideshow_filmstrip_width = round($thumb_ratio * $slideshow_filmstrip_height);
31
- }
32
- else {
33
- $slideshow_filmstrip_width = $params['slideshow_filmstrip_height'];
34
- $thumb_ratio = $thumb_height / $thumb_width;
35
- $slideshow_filmstrip_height = round($thumb_ratio * $slideshow_filmstrip_width);
36
- }
37
- }
38
  $enable_image_title = $params['slideshow_enable_title'];
39
  $slideshow_title_position = explode('-', $params['slideshow_title_position']);
40
  $enable_image_description = $params['slideshow_enable_description'];
@@ -76,7 +74,8 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
76
  $filmstrip_thumb_margin_left = $filmstrip_thumb_margin_right;
77
  }
78
  $filmstrip_thumb_margin_hor = $filmstrip_thumb_margin_right + $filmstrip_thumb_margin_left;
79
- if ( !$enable_slideshow_filmstrip ) {
 
80
  if ( $theme_row->slideshow_filmstrip_pos == 'left' ) {
81
  $theme_row->slideshow_filmstrip_pos = 'top';
82
  }
@@ -84,6 +83,38 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
84
  $theme_row->slideshow_filmstrip_pos = 'bottom';
85
  }
86
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  $left_or_top = 'left';
88
  $width_or_height = 'width';
89
  $outerWidth_or_outerHeight = 'outerWidth';
@@ -92,7 +123,7 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
92
  $width_or_height = 'height';
93
  $outerWidth_or_outerHeight = 'outerHeight';
94
  }
95
- $inline_style = $this->inline_styles($bwg, $theme_row, $params, $image_width, $image_height, $filmstrip_direction, $slideshow_filmstrip_height, BWG()->options, $left_or_top, $width_or_height, $filmstrip_thumb_margin_hor, $slideshow_filmstrip_width, $image_rows, $watermark_position, $slideshow_title_position, $slideshow_description_position, $watermark_height, $watermark_width, $watermark_opacity, $watermark_font_size, $watermark_font, $watermark_color, $enable_slideshow_filmstrip);
96
  if ( !WDWLibrary::elementor_is_active() ) {
97
  if ( BWG()->options->use_inline_stiles_and_scripts ) {
98
  wp_add_inline_style('bwg_frontend', $inline_style);
@@ -116,11 +147,7 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
116
  foreach ( $image_rows as $key => $image_row ) {
117
  if ( $image_row->id == $current_image_id ) {
118
  $current_image_alt = $image_row->alt;
119
- $current_image_description = str_replace(array(
120
- "\r\n",
121
- "\n",
122
- "\r"
123
- ), esc_html('<br />'), $image_row->description);
124
  }
125
  $data[$bwg][$key]["id"] = $image_row->id;
126
  $data[$bwg][$key]["alt"] = htmlspecialchars(str_replace(array( "\r\n", "\n", "\r" ), esc_html('<br />'), esc_html($image_row->alt)), ENT_COMPAT | ENT_QUOTES);
@@ -138,10 +165,19 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
138
  if ( !empty($resolution[0]) ) {
139
  $data[$bwg][$key]["image_width"] = trim($resolution[0]);
140
  }
141
- if ( !empty($resolution[1]) ) {
142
  $data[$bwg][$key]["image_height"] = trim($resolution[2]);
143
  }
144
  }
 
 
 
 
 
 
 
 
 
145
  }
146
  ob_start();
147
  $trans_dur = ((floatval($params['slideshow_interval'] ) < 4) && (floatval($params['slideshow_interval']) != 0)) ? (floatval($params['slideshow_interval']) * 1000) / 4 : (floatval($params['slideshow_effect_duration']) * 1000);
@@ -162,14 +198,18 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
162
  'upload_url' => BWG()->upload_url,
163
  'preload_images' => BWG()->options->preload_images,
164
  'slideshow_effect' => $slideshow_effect,
165
- 'enable_slideshow_filmstrip' => $enable_slideshow_filmstrip,
166
  'event_stack' => '',
167
  'preload_images_count' => (int) BWG()->options->preload_images_count,
168
  'image_width' => $image_width,
169
  'image_height' => $image_height,
 
 
170
  'filmstrip_direction' => $filmstrip_direction,
 
 
171
  'slideshow_filmstrip_width' => $slideshow_filmstrip_width,
172
  'slideshow_filmstrip_height' => $slideshow_filmstrip_height,
 
173
  'slideshow_play_pause_btn_size' => $theme_row->slideshow_play_pause_btn_size,
174
  'watermark_type' => $params['watermark_width'],
175
  'watermark_height' => $watermark_height,
@@ -188,13 +228,22 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
188
  data-lightbox-url="<?php echo esc_url(addslashes(add_query_arg($params['params_array'], admin_url('admin-ajax.php')))); ?>">
189
  <?php
190
  $current_pos = 0;
191
- if ( $enable_slideshow_filmstrip ) {
 
 
 
 
 
 
192
  ?>
193
  <div class="bwg_slideshow_filmstrip_container_<?php echo sanitize_html_class($bwg); ?>">
194
  <div class="bwg_slideshow_filmstrip_left_<?php echo sanitize_html_class($bwg); ?>">
195
  <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-left' : 'bwg-icon-angle-up'); ?>"></i>
196
  </div>
197
- <div class="bwg_slideshow_filmstrip_<?php echo sanitize_html_class($bwg); ?> bwg_slideshow_filmstrip">
 
 
 
198
  <div class="bwg_slideshow_filmstrip_thumbnails_<?php echo sanitize_html_class($bwg); ?>">
199
  <?php
200
  foreach ( $image_rows as $key => $image_row ) {
@@ -259,15 +308,19 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
259
  $thumb_left = ($slideshow_filmstrip_width - $image_thumb_width) / 2;
260
  $thumb_top = ($slideshow_filmstrip_height - $image_thumb_height) / 2;
261
  ?>
262
- <div id="bwg_filmstrip_thumbnail_<?php echo sanitize_html_class($key.'_'.$bwg); ?>" class="bwg_slideshow_filmstrip_thumbnail_<?php echo sanitize_html_class($bwg); ?> <?php echo(($image_row->id == $current_image_id) ? 'bwg_slideshow_thumb_active_' . sanitize_html_class($bwg) : 'bwg_slideshow_thumb_deactive_' . sanitize_html_class($bwg)); ?>">
263
- <img style="width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;"
264
- class="skip-lazy bwg_filmstrip_thumbnail_img bwg_slideshow_filmstrip_thumbnail_img_<?php echo sanitize_html_class($bwg); ?> <?php if( $lazyload ) { ?> bwg_lazyload <?php } ?>"
265
- src="<?php if( !$lazyload ) { echo esc_url($bwg_thumb_url); } else { echo esc_url(BWG()->plugin_url."/images/lazy_placeholder.gif"); } ?>"
266
- data-src="<?php echo esc_url($bwg_thumb_url); ?>"
267
- onclick="bwg_change_image(parseInt(jQuery('#bwg_current_image_key_<?php echo $bwg; ?>').val()), '<?php echo $key; ?>', '', '', '<?php echo $bwg; ?>')"
268
- image_id="<?php echo esc_attr($image_row->id); ?>"
269
- image_key="<?php echo esc_attr($key); ?>"
270
- alt="<?php echo esc_attr($image_row->alt); ?>" />
 
 
 
 
271
  </div>
272
  <?php
273
  }
@@ -277,6 +330,9 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
277
  <div class="bwg_slideshow_filmstrip_right_<?php echo sanitize_html_class($bwg); ?>">
278
  <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-right' : 'bwg-icon-angle-down'); ?>"></i>
279
  </div>
 
 
 
280
  </div>
281
  <?php
282
  }
@@ -302,7 +358,11 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
302
  $bwg_param['bwg_current_filmstrip_pos'] = $current_pos;
303
  $bwg_params = json_encode($bwg_param);
304
  ?>
305
- <div id="bwg_slideshow_image_container_<?php echo sanitize_html_class($bwg); ?>" class="bwg_slideshow_image_container_<?php echo sanitize_html_class($bwg); ?>" data-params='<?php echo esc_attr($bwg_params); ?>'>
 
 
 
 
306
  <div class="bwg_slide_container_<?php echo sanitize_html_class($bwg); ?>">
307
  <div class="bwg_slide_bg_<?php echo sanitize_html_class($bwg); ?>">
308
  <div class="bwg_slider_<?php echo sanitize_html_class($bwg); ?>">
@@ -558,10 +618,11 @@ public function display($params = array(), $bwg = 0, $ajax = FALSE) {
558
  }
559
  }
560
 
561
- public function inline_styles($bwg, $theme_row, $params, $image_width, $image_height, $filmstrip_direction, $slideshow_filmstrip_height, $options, $left_or_top, $width_or_height, $filmstrip_thumb_margin_hor, $slideshow_filmstrip_width, $image_rows, $watermark_position, $slideshow_title_position, $slideshow_description_position, $watermark_height, $watermark_width, $watermark_opacity, $watermark_font_size, $watermark_font, $watermark_color, $enable_slideshow_filmstrip) {
562
  ob_start();
563
  ?>
564
  #bwg_container1_<?php echo $bwg; ?> {
 
565
  /*visibility: hidden;*/
566
  }
567
  #bwg_container1_<?php echo $bwg; ?> * {
@@ -641,29 +702,30 @@ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_he
641
  <?php echo $theme_row->slideshow_filmstrip_pos; ?>: <?php echo ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : $slideshow_filmstrip_width); ?>px;
642
  width: <?php echo $image_width; ?>px;
643
  height: <?php echo $image_height; ?>px;
644
- }
645
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_container_<?php echo $bwg; ?> {
646
  display: <?php echo ($filmstrip_direction == 'horizontal'? 'table' : 'block'); ?>;
647
  height: <?php echo ($filmstrip_direction == 'horizontal'? $slideshow_filmstrip_height : $image_height); ?>px;
648
  width: <?php echo ($filmstrip_direction == 'horizontal' ? $image_width : $slideshow_filmstrip_width); ?>px;
649
  <?php echo $theme_row->slideshow_filmstrip_pos; ?>: 0;
650
  }
 
651
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_<?php echo $bwg; ?> {
652
  <?php echo $left_or_top; ?>: 20px;
653
  <?php echo $width_or_height; ?>: <?php echo ($filmstrip_direction == 'horizontal' ? $image_width - 40 : $image_height - 40); ?>px;
654
  /*z-index: 10106;*/
655
  }
656
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnails_<?php echo $bwg; ?> {
657
- height: <?php echo ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : ($slideshow_filmstrip_height + $filmstrip_thumb_margin_hor) * count($image_rows)); ?>px;
658
- <?php echo $left_or_top; ?>: 0px;
659
- width: <?php echo ($filmstrip_direction == 'horizontal' ? ($slideshow_filmstrip_width + $filmstrip_thumb_margin_hor) * count($image_rows) : $slideshow_filmstrip_width); ?>px;
660
  }
661
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?> {
662
- border: <?php echo $theme_row->slideshow_filmstrip_thumb_border_width; ?>px <?php echo $theme_row->slideshow_filmstrip_thumb_border_style; ?> #<?php echo $theme_row->slideshow_filmstrip_thumb_border_color; ?>;
663
- border-radius: <?php echo $theme_row->slideshow_filmstrip_thumb_border_radius; ?>;
664
- height: <?php echo $slideshow_filmstrip_height; ?>px;
665
- margin: <?php echo $theme_row->slideshow_filmstrip_thumb_margin; ?>;
666
- width: <?php echo $slideshow_filmstrip_width; ?>px;
667
  }
668
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_thumb_active_<?php echo $bwg; ?> {
669
  border: <?php echo $theme_row->slideshow_filmstrip_thumb_active_border_width; ?>px solid #<?php echo $theme_row->slideshow_filmstrip_thumb_active_border_color; ?>;
@@ -671,7 +733,8 @@ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_he
671
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_thumb_deactive_<?php echo $bwg; ?> {
672
  opacity: <?php echo number_format($theme_row->slideshow_filmstrip_thumb_deactive_transparent / 100, 2, ".", ""); ?>;
673
  }
674
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_<?php echo $bwg; ?> {
 
675
  background-color: #<?php echo $theme_row->slideshow_filmstrip_rl_bg_color; ?>;
676
  display: <?php echo ($filmstrip_direction == 'horizontal' ? 'table-cell' : 'block') ?>;
677
  <?php echo $width_or_height; ?>: 20px;
@@ -679,20 +742,49 @@ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_he
679
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'position: absolute;') ?>
680
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'width: 100%;') ?>
681
  }
682
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_<?php echo $bwg; ?> {
 
683
  background-color: #<?php echo $theme_row->slideshow_filmstrip_rl_bg_color; ?>;
684
- <?php echo($filmstrip_direction == 'horizontal' ? 'right' : 'bottom') ?>: 0;
 
685
  <?php echo $width_or_height; ?>: 20px;
686
- display: <?php echo ($filmstrip_direction == 'horizontal' ? 'table-cell' : 'block') ?>;
687
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'position: absolute;') ?>
688
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'width: 100%;') ?>
689
  }
690
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_<?php echo $bwg; ?> i,
691
- #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_<?php echo $bwg; ?> i {
 
 
692
  color: #<?php echo $theme_row->slideshow_filmstrip_rl_btn_color; ?>;
693
  font-size: <?php echo $theme_row->slideshow_filmstrip_rl_btn_size; ?>px;
694
  }
695
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_watermark_spun_<?php echo $bwg; ?> {
697
  text-align: <?php echo $watermark_position[1]; ?>;
698
  vertical-align: <?php echo $watermark_position[0]; ?>;
@@ -730,7 +822,7 @@ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_he
730
  <?php } else { ?>
731
  margin: 5px;
732
  <?php } ?>
733
- <?php if (!$enable_slideshow_filmstrip && $slideshow_title_position[0] == $theme_row->slideshow_filmstrip_pos) echo $theme_row->slideshow_filmstrip_pos . ':' . ($theme_row->slideshow_dots_height + 4) . 'px;'; ?>
734
  }
735
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_description_text_<?php echo $bwg; ?> {
736
  font-size: <?php echo $theme_row->slideshow_description_font_size; ?>px;
@@ -740,7 +832,7 @@ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_he
740
  border-radius: <?php echo $theme_row->slideshow_description_border_radius; ?>;
741
  background-color: #<?php echo $theme_row->slideshow_description_background_color; ?>;
742
  padding: <?php echo $theme_row->slideshow_description_padding; ?>;
743
- <?php if (!$enable_slideshow_filmstrip && $slideshow_description_position[0] == $theme_row->slideshow_filmstrip_pos) echo $theme_row->slideshow_filmstrip_pos . ':' . ($theme_row->slideshow_dots_height + 4) . 'px;'; ?>
744
  }
745
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_description_text_<?php echo $bwg; ?> * {
746
  text-decoration: none;
18
  $enable_slideshow_autoplay = $params['enable_slideshow_autoplay'];
19
  $enable_slideshow_shuffle = $params['enable_slideshow_shuffle'];
20
  $enable_slideshow_ctrl = $params['enable_slideshow_ctrl'];
21
+
22
+ $enable_slideshow_filmstrip = ( BWG()->is_pro && !empty($params['enable_slideshow_filmstrip']) ) ? 1 : 0;
23
+ $slideshow_filmstrip_type = BWG()->is_pro ? $params['slideshow_filmstrip_type'] : 0;
24
+ $slideshow_thumbnails_count = BWG()->is_pro ? $params['slideshow_thumbnails_count'] : 0;
25
+ // This option 'enable_slideshow_filmstrip' has been removed and is being used with the new option 'slideshow_filmstrip_type'.
26
+ if ( $enable_slideshow_filmstrip || ( $slideshow_filmstrip_type == 1 ) ) {
27
+ $slideshow_filmstrip_type = 1;
28
+ }
29
+
30
  $slideshow_filmstrip_height = 0;
31
  $slideshow_filmstrip_width = 0;
32
+
33
+ $thumb_width = BWG()->options->thumb_width;
34
+ $thumb_height = BWG()->options->thumb_height;
35
+
 
 
 
 
 
 
 
 
 
 
36
  $enable_image_title = $params['slideshow_enable_title'];
37
  $slideshow_title_position = explode('-', $params['slideshow_title_position']);
38
  $enable_image_description = $params['slideshow_enable_description'];
74
  $filmstrip_thumb_margin_left = $filmstrip_thumb_margin_right;
75
  }
76
  $filmstrip_thumb_margin_hor = $filmstrip_thumb_margin_right + $filmstrip_thumb_margin_left;
77
+ // Slideshow filmstrip type is None.
78
+ if ( $slideshow_filmstrip_type == 0 ) {
79
  if ( $theme_row->slideshow_filmstrip_pos == 'left' ) {
80
  $theme_row->slideshow_filmstrip_pos = 'top';
81
  }
83
  $theme_row->slideshow_filmstrip_pos = 'bottom';
84
  }
85
  }
86
+ // Slideshow filmstrip type is Fix dimension.
87
+ else if ( $slideshow_filmstrip_type && $slideshow_filmstrip_type == 1 ) {
88
+ if ( $filmstrip_direction == 'horizontal' ) {
89
+ $slideshow_filmstrip_height = $params['slideshow_filmstrip_height'];
90
+ $thumb_ratio = $thumb_width / $thumb_height;
91
+ $slideshow_filmstrip_width = round($thumb_ratio * $slideshow_filmstrip_height);
92
+ }
93
+ else {
94
+ $slideshow_filmstrip_width = $params['slideshow_filmstrip_height'];
95
+ $thumb_ratio = $thumb_height / $thumb_width;
96
+ $slideshow_filmstrip_height = round($thumb_ratio * $slideshow_filmstrip_width);
97
+ }
98
+ }
99
+ // Slideshow filmstrip type is Fix count.
100
+ else if ( $slideshow_filmstrip_type && $slideshow_filmstrip_type == 2 ) {
101
+ if ( $filmstrip_direction == 'horizontal' ) {
102
+ $thumb_ratio = $thumb_height / $thumb_width;
103
+ $slideshow_filmstrip_block_width = $image_width - 40;
104
+ $slideshow_filmstrip_block_height = round($thumb_ratio * $slideshow_filmstrip_block_width);
105
+
106
+ $slideshow_filmstrip_width = ($slideshow_filmstrip_block_width - ($filmstrip_thumb_margin_hor * $params['slideshow_thumbnails_count']) ) / $params['slideshow_thumbnails_count'];
107
+ $slideshow_filmstrip_height = round($thumb_ratio * $slideshow_filmstrip_width);
108
+ }
109
+ else {
110
+ $thumb_ratio = $thumb_width / $thumb_height;
111
+ $slideshow_filmstrip_block_height = $image_height - 40;
112
+ $slideshow_filmstrip_block_width = round($thumb_ratio * $slideshow_filmstrip_block_height);
113
+
114
+ $slideshow_filmstrip_height = ($slideshow_filmstrip_block_height - ($filmstrip_thumb_margin_hor * $params['slideshow_thumbnails_count']) ) / $params['slideshow_thumbnails_count'];
115
+ $slideshow_filmstrip_width = round($thumb_ratio * $slideshow_filmstrip_height);
116
+ }
117
+ }
118
  $left_or_top = 'left';
119
  $width_or_height = 'width';
120
  $outerWidth_or_outerHeight = 'outerWidth';
123
  $width_or_height = 'height';
124
  $outerWidth_or_outerHeight = 'outerHeight';
125
  }
126
+ $inline_style = $this->inline_styles($bwg, $theme_row, $params, $image_width, $image_height, $filmstrip_direction, $slideshow_filmstrip_height, BWG()->options, $left_or_top, $width_or_height, $filmstrip_thumb_margin_hor, $slideshow_filmstrip_width, $image_rows, $watermark_position, $slideshow_title_position, $slideshow_description_position, $watermark_height, $watermark_width, $watermark_opacity, $watermark_font_size, $watermark_font, $watermark_color, $slideshow_filmstrip_type);
127
  if ( !WDWLibrary::elementor_is_active() ) {
128
  if ( BWG()->options->use_inline_stiles_and_scripts ) {
129
  wp_add_inline_style('bwg_frontend', $inline_style);
147
  foreach ( $image_rows as $key => $image_row ) {
148
  if ( $image_row->id == $current_image_id ) {
149
  $current_image_alt = $image_row->alt;
150
+ $current_image_description = str_replace(array("\r\n", "\n", "\r"), esc_html('<br />'), $image_row->description);
 
 
 
 
151
  }
152
  $data[$bwg][$key]["id"] = $image_row->id;
153
  $data[$bwg][$key]["alt"] = htmlspecialchars(str_replace(array( "\r\n", "\n", "\r" ), esc_html('<br />'), esc_html($image_row->alt)), ENT_COMPAT | ENT_QUOTES);
165
  if ( !empty($resolution[0]) ) {
166
  $data[$bwg][$key]["image_width"] = trim($resolution[0]);
167
  }
168
+ if ( !empty($resolution[2]) ) {
169
  $data[$bwg][$key]["image_height"] = trim($resolution[2]);
170
  }
171
  }
172
+ if ( !empty($image_row->resolution_thumb) ) {
173
+ $resolution_thumb = explode('x', $image_row->resolution_thumb);
174
+ if ( !empty($resolution_thumb[0]) ) {
175
+ $data[$bwg][$key]["thumb_width"] = trim($resolution_thumb[0]);
176
+ }
177
+ if ( !empty($resolution_thumb[1]) ) {
178
+ $data[$bwg][$key]["thumb_height"] = trim($resolution_thumb[1]);
179
+ }
180
+ }
181
  }
182
  ob_start();
183
  $trans_dur = ((floatval($params['slideshow_interval'] ) < 4) && (floatval($params['slideshow_interval']) != 0)) ? (floatval($params['slideshow_interval']) * 1000) / 4 : (floatval($params['slideshow_effect_duration']) * 1000);
198
  'upload_url' => BWG()->upload_url,
199
  'preload_images' => BWG()->options->preload_images,
200
  'slideshow_effect' => $slideshow_effect,
 
201
  'event_stack' => '',
202
  'preload_images_count' => (int) BWG()->options->preload_images_count,
203
  'image_width' => $image_width,
204
  'image_height' => $image_height,
205
+ 'thumb_width' => $thumb_width,
206
+ 'thumb_height' => $thumb_height,
207
  'filmstrip_direction' => $filmstrip_direction,
208
+ 'slideshow_filmstrip_type' => $slideshow_filmstrip_type,
209
+ 'slideshow_thumbnails_count' => $slideshow_thumbnails_count,
210
  'slideshow_filmstrip_width' => $slideshow_filmstrip_width,
211
  'slideshow_filmstrip_height' => $slideshow_filmstrip_height,
212
+ 'slideshow_filmstrip_rl_btn_size' => $theme_row->slideshow_filmstrip_rl_btn_size,
213
  'slideshow_play_pause_btn_size' => $theme_row->slideshow_play_pause_btn_size,
214
  'watermark_type' => $params['watermark_width'],
215
  'watermark_height' => $watermark_height,
228
  data-lightbox-url="<?php echo esc_url(addslashes(add_query_arg($params['params_array'], admin_url('admin-ajax.php')))); ?>">
229
  <?php
230
  $current_pos = 0;
231
+ // Slideshow filmstrip type is Fix dimension or Fix count.
232
+ if ( $slideshow_filmstrip_type == 1 || $slideshow_filmstrip_type == 2 ) {
233
+
234
+ $filmstrip_class_name = 'bwg_slideshow_filmstrip_' . sanitize_html_class($bwg) . ' bwg_slideshow_filmstrip';
235
+ if ( $slideshow_filmstrip_type == 2 ) {
236
+ $filmstrip_class_name = 'bwg_slideshow_filmstrip_fix_count_' . sanitize_html_class($bwg) . ' bwg_slideshow_filmstrip_fix_count';
237
+ }
238
  ?>
239
  <div class="bwg_slideshow_filmstrip_container_<?php echo sanitize_html_class($bwg); ?>">
240
  <div class="bwg_slideshow_filmstrip_left_<?php echo sanitize_html_class($bwg); ?>">
241
  <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-left' : 'bwg-icon-angle-up'); ?>"></i>
242
  </div>
243
+ <div class="bwg_slideshow_filmstrip_left_disabled_<?php echo sanitize_html_class($bwg); ?>">
244
+ <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-left' : 'bwg-icon-angle-up'); ?>"></i>
245
+ </div>
246
+ <div class="<?php echo $filmstrip_class_name; ?>">
247
  <div class="bwg_slideshow_filmstrip_thumbnails_<?php echo sanitize_html_class($bwg); ?>">
248
  <?php
249
  foreach ( $image_rows as $key => $image_row ) {
308
  $thumb_left = ($slideshow_filmstrip_width - $image_thumb_width) / 2;
309
  $thumb_top = ($slideshow_filmstrip_height - $image_thumb_height) / 2;
310
  ?>
311
+ <div id="bwg_filmstrip_thumbnail_<?php echo sanitize_html_class($key.'_'.$bwg); ?>"
312
+ class="bwg_slideshow_filmstrip_thumbnail_<?php echo sanitize_html_class($bwg); ?> <?php echo(($image_row->id == $current_image_id) ? 'bwg_slideshow_thumb_active_' . sanitize_html_class($bwg) : 'bwg_slideshow_thumb_deactive_' . sanitize_html_class($bwg)); ?>"
313
+ data-style="width:<?php echo $slideshow_filmstrip_width; ?>px; height:<?php echo $slideshow_filmstrip_height; ?>px;"
314
+ >
315
+ <img class="bwg_filmstrip_thumbnail_img bwg_slideshow_filmstrip_thumbnail_img_<?php echo sanitize_html_class($bwg); ?>"
316
+ style="width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;"
317
+ data-style="width:<?php echo $image_thumb_width; ?>px; height:<?php echo $image_thumb_height; ?>px; margin-left: <?php echo $thumb_left; ?>px; margin-top: <?php echo $thumb_top; ?>px;"
318
+ src="<?php echo esc_url($bwg_thumb_url); ?>"
319
+ data-src="<?php echo esc_url($bwg_thumb_url); ?>"
320
+ onclick="bwg_change_image(parseInt(jQuery('#bwg_current_image_key_<?php echo $bwg; ?>').val()), '<?php echo $key; ?>', '', '', '<?php echo $bwg; ?>')"
321
+ image_id="<?php echo esc_attr($image_row->id); ?>"
322
+ image_key="<?php echo esc_attr($key); ?>"
323
+ alt="<?php echo esc_attr($image_row->alt); ?>" />
324
  </div>
325
  <?php
326
  }
330
  <div class="bwg_slideshow_filmstrip_right_<?php echo sanitize_html_class($bwg); ?>">
331
  <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-right' : 'bwg-icon-angle-down'); ?>"></i>
332
  </div>
333
+ <div class="bwg_slideshow_filmstrip_right_disabled_<?php echo sanitize_html_class($bwg); ?>">
334
+ <i class="<?php echo($filmstrip_direction == 'horizontal' ? 'bwg-icon-angle-right' : 'bwg-icon-angle-down'); ?>"></i>
335
+ </div>
336
  </div>
337
  <?php
338
  }
358
  $bwg_param['bwg_current_filmstrip_pos'] = $current_pos;
359
  $bwg_params = json_encode($bwg_param);
360
  ?>
361
+ <div id="bwg_slideshow_image_container_<?php echo sanitize_html_class($bwg); ?>"
362
+ class="bwg_slideshow_image_container_<?php echo sanitize_html_class($bwg); ?>"
363
+ data-params='<?php echo esc_attr($bwg_params); ?>'
364
+ data-filmstrip-position="<?php echo $theme_row->slideshow_filmstrip_pos; ?>"
365
+ data-filmstrip-size="<?php echo ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : $slideshow_filmstrip_width); ?>">
366
  <div class="bwg_slide_container_<?php echo sanitize_html_class($bwg); ?>">
367
  <div class="bwg_slide_bg_<?php echo sanitize_html_class($bwg); ?>">
368
  <div class="bwg_slider_<?php echo sanitize_html_class($bwg); ?>">
618
  }
619
  }
620
 
621
+ public function inline_styles($bwg, $theme_row, $params, $image_width, $image_height, $filmstrip_direction, $slideshow_filmstrip_height, $options, $left_or_top, $width_or_height, $filmstrip_thumb_margin_hor, $slideshow_filmstrip_width, $image_rows, $watermark_position, $slideshow_title_position, $slideshow_description_position, $watermark_height, $watermark_width, $watermark_opacity, $watermark_font_size, $watermark_font, $watermark_color, $slideshow_filmstrip_type) {
622
  ob_start();
623
  ?>
624
  #bwg_container1_<?php echo $bwg; ?> {
625
+ display: table;
626
  /*visibility: hidden;*/
627
  }
628
  #bwg_container1_<?php echo $bwg; ?> * {
702
  <?php echo $theme_row->slideshow_filmstrip_pos; ?>: <?php echo ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : $slideshow_filmstrip_width); ?>px;
703
  width: <?php echo $image_width; ?>px;
704
  height: <?php echo $image_height; ?>px;
705
+ }
706
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_container_<?php echo $bwg; ?> {
707
  display: <?php echo ($filmstrip_direction == 'horizontal'? 'table' : 'block'); ?>;
708
  height: <?php echo ($filmstrip_direction == 'horizontal'? $slideshow_filmstrip_height : $image_height); ?>px;
709
  width: <?php echo ($filmstrip_direction == 'horizontal' ? $image_width : $slideshow_filmstrip_width); ?>px;
710
  <?php echo $theme_row->slideshow_filmstrip_pos; ?>: 0;
711
  }
712
+ /* Filmstrip dimension */
713
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_<?php echo $bwg; ?> {
714
  <?php echo $left_or_top; ?>: 20px;
715
  <?php echo $width_or_height; ?>: <?php echo ($filmstrip_direction == 'horizontal' ? $image_width - 40 : $image_height - 40); ?>px;
716
  /*z-index: 10106;*/
717
  }
718
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnails_<?php echo $bwg; ?> {
719
+ <?php echo $left_or_top; ?>: 0px;
720
+ width: <?php echo ($filmstrip_direction == 'horizontal' ? ($slideshow_filmstrip_width + $filmstrip_thumb_margin_hor) * count($image_rows) : $slideshow_filmstrip_width); ?>px;
721
+ height: <?php echo ($filmstrip_direction == 'horizontal' ? $slideshow_filmstrip_height : ($slideshow_filmstrip_height + $filmstrip_thumb_margin_hor) * count($image_rows)); ?>px;
722
  }
723
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?> {
724
+ width: <?php echo $slideshow_filmstrip_width; ?>px;
725
+ height: <?php echo $slideshow_filmstrip_height; ?>px;
726
+ margin: <?php echo $theme_row->slideshow_filmstrip_thumb_margin; ?>;
727
+ border: <?php echo $theme_row->slideshow_filmstrip_thumb_border_width; ?>px <?php echo $theme_row->slideshow_filmstrip_thumb_border_style; ?> #<?php echo $theme_row->slideshow_filmstrip_thumb_border_color; ?>;
728
+ border-radius: <?php echo $theme_row->slideshow_filmstrip_thumb_border_radius; ?>;
729
  }
730
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_thumb_active_<?php echo $bwg; ?> {
731
  border: <?php echo $theme_row->slideshow_filmstrip_thumb_active_border_width; ?>px solid #<?php echo $theme_row->slideshow_filmstrip_thumb_active_border_color; ?>;
733
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_thumb_deactive_<?php echo $bwg; ?> {
734
  opacity: <?php echo number_format($theme_row->slideshow_filmstrip_thumb_deactive_transparent / 100, 2, ".", ""); ?>;
735
  }
736
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_<?php echo $bwg; ?>,
737
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_disabled_<?php echo $bwg; ?> {
738
  background-color: #<?php echo $theme_row->slideshow_filmstrip_rl_bg_color; ?>;
739
  display: <?php echo ($filmstrip_direction == 'horizontal' ? 'table-cell' : 'block') ?>;
740
  <?php echo $width_or_height; ?>: 20px;
742
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'position: absolute;') ?>
743
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'width: 100%;') ?>
744
  }
745
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_<?php echo $bwg; ?>,
746
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_disabled_<?php echo $bwg; ?> {
747
  background-color: #<?php echo $theme_row->slideshow_filmstrip_rl_bg_color; ?>;
748
+ display: <?php echo ($filmstrip_direction == 'horizontal' ? 'table-cell' : 'block') ?>;
749
+ <?php echo($filmstrip_direction == 'horizontal' ? 'right' : 'bottom') ?>: 0;
750
  <?php echo $width_or_height; ?>: 20px;
 
751
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'position: absolute;') ?>
752
  <?php echo ($filmstrip_direction == 'horizontal' ? '' : 'width: 100%;') ?>
753
  }
754
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_<?php echo $bwg; ?> i,
755
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_<?php echo $bwg; ?> i,
756
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_disabled_<?php echo $bwg; ?> i,
757
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_disabled_<?php echo $bwg; ?> i {
758
  color: #<?php echo $theme_row->slideshow_filmstrip_rl_btn_color; ?>;
759
  font-size: <?php echo $theme_row->slideshow_filmstrip_rl_btn_size; ?>px;
760
  }
761
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_<?php echo $bwg; ?> {
762
+ display: none;
763
+ }
764
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_disabled_<?php echo $bwg; ?>,
765
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_right_disabled_<?php echo $bwg; ?> {
766
+ display: none;
767
+ opacity: 0.3;
768
+ }
769
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_left_disabled_<?php echo $bwg; ?> {
770
+ display: <?php echo ($filmstrip_direction == 'horizontal' ? 'table-cell' : 'block') ?>;
771
+ }
772
+ <?php
773
+ /* Filmstrip fix count */
774
+ if ( !empty($slideshow_filmstrip_type) && $slideshow_filmstrip_type == 2 ) {
775
+ ?>
776
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_fix_count_<?php echo $bwg; ?> {
777
+ <?php echo $left_or_top; ?>: 20px;
778
+ <?php echo $width_or_height; ?>: <?php echo ($filmstrip_direction == 'horizontal' ? $image_width - 40 : $image_height - 40); ?>px;
779
+ }
780
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_fix_count_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnails_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?> {
781
+ width: <?php echo $slideshow_filmstrip_width; ?>px;
782
+ height: <?php echo $slideshow_filmstrip_height; ?>px;
783
+ }
784
+ #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_fix_count_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnails_<?php echo $bwg; ?> .bwg_slideshow_filmstrip_thumbnail_<?php echo $bwg; ?> img {
785
+ object-fit: cover;
786
+ }
787
+ <?php } ?>
788
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_watermark_spun_<?php echo $bwg; ?> {
789
  text-align: <?php echo $watermark_position[1]; ?>;
790
  vertical-align: <?php echo $watermark_position[0]; ?>;
822
  <?php } else { ?>
823
  margin: 5px;
824
  <?php } ?>
825
+ <?php if (!$slideshow_filmstrip_type && $slideshow_title_position[0] == $theme_row->slideshow_filmstrip_pos) echo $theme_row->slideshow_filmstrip_pos . ':' . ($theme_row->slideshow_dots_height + 4) . 'px;'; ?>
826
  }
827
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_description_text_<?php echo $bwg; ?> {
828
  font-size: <?php echo $theme_row->slideshow_description_font_size; ?>px;
832
  border-radius: <?php echo $theme_row->slideshow_description_border_radius; ?>;
833
  background-color: #<?php echo $theme_row->slideshow_description_background_color; ?>;
834
  padding: <?php echo $theme_row->slideshow_description_padding; ?>;
835
+ <?php if (!$slideshow_filmstrip_type && $slideshow_description_position[0] == $theme_row->slideshow_filmstrip_pos) echo $theme_row->slideshow_filmstrip_pos . ':' . ($theme_row->slideshow_dots_height + 4) . 'px;'; ?>
836
  }
837
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_slideshow_description_text_<?php echo $bwg; ?> * {
838
  text-decoration: none;
js/bwg.js CHANGED
@@ -44,7 +44,7 @@ jQuery( function () {
44
 
45
  jQuery( "#check_all" ).on( "click", function () {
46
  spider_check_all( "#check_all" );
47
- } );
48
 
49
  /* Add tooltip to elements with "wd-info" class. */
50
  if ( typeof jQuery( document ).tooltip != "undefined" ) {
@@ -525,6 +525,7 @@ function spider_ajax_save( form_id, tr_group, is_last_ajax, content_message_id )
525
  post_data["input_crop_" + ids_array[i]] = jQuery("#input_crop_" + ids_array[i]).val();
526
  post_data["order_input_" + ids_array[i]] = jQuery("#order_input_" + ids_array[i]).val();
527
  post_data["tags_" + ids_array[i]] = jQuery("#tags_" + ids_array[i]).val();
 
528
  post_data["is_last_ajax"] = is_last_ajax;
529
 
530
  /* Check if save must have several iterations, need to know to run all images ordering in php */
@@ -1073,7 +1074,7 @@ function preview_watermark() {
1073
  watermark_position = jQuery( "input[name=watermark_position]:checked" ).val().split( '-' );
1074
  document.getElementById( "preview_watermark" ).style.verticalAlign = watermark_position[ 0 ];
1075
  document.getElementById( "preview_watermark" ).style.textAlign = watermark_position[ 1 ];
1076
- stringHTML = ( watermark_link ? '<a href="' + watermark_link + '" target="_blank" style="text-decoration: none;' : '<span style="cursor:default;' ) + 'margin:4px;font-size:' + watermark_font_size + 'px;font-family:' + watermark_font + ';color:#' + watermark_color + ';opacity:' + ( watermark_opacity / 100 ) + ';" class="non_selectable">' + watermark_text + ( watermark_link ? '</a>' : '</span>' );
1077
  document.getElementById( "preview_watermark" ).innerHTML = stringHTML;
1078
  }
1079
  watermark_type = window.parent.document.getElementById( 'watermark_type_image' ).checked;
@@ -1123,7 +1124,7 @@ function preview_built_in_watermark() {
1123
  watermark_position = jQuery( "input[name=built_in_watermark_position]:checked" ).val().split( '-' );
1124
  document.getElementById( "preview_built_in_watermark" ).style.verticalAlign = watermark_position[ 0 ];
1125
  document.getElementById( "preview_built_in_watermark" ).style.textAlign = watermark_position[ 1 ];
1126
- stringHTML = '<span style="cursor:default;margin:4px;font-size:' + watermark_font_size + 'px;font-family:' + watermark_font + ';color:#' + watermark_color + ';opacity:' + ( watermark_opacity / 100 ) + ';" class="non_selectable">' + watermark_text + '</span>';
1127
  document.getElementById( "preview_built_in_watermark" ).innerHTML = stringHTML;
1128
  }
1129
  watermark_type = window.parent.document.getElementById( 'built_in_watermark_type_image' ).checked;
44
 
45
  jQuery( "#check_all" ).on( "click", function () {
46
  spider_check_all( "#check_all" );
47
+ });
48
 
49
  /* Add tooltip to elements with "wd-info" class. */
50
  if ( typeof jQuery( document ).tooltip != "undefined" ) {
525
  post_data["input_crop_" + ids_array[i]] = jQuery("#input_crop_" + ids_array[i]).val();
526
  post_data["order_input_" + ids_array[i]] = jQuery("#order_input_" + ids_array[i]).val();
527
  post_data["tags_" + ids_array[i]] = jQuery("#tags_" + ids_array[i]).val();
528
+ post_data["deleted_tags_" + ids_array[i]] = jQuery("#deleted_tags_" + ids_array[i]).val();
529
  post_data["is_last_ajax"] = is_last_ajax;
530
 
531
  /* Check if save must have several iterations, need to know to run all images ordering in php */
1074
  watermark_position = jQuery( "input[name=watermark_position]:checked" ).val().split( '-' );
1075
  document.getElementById( "preview_watermark" ).style.verticalAlign = watermark_position[ 0 ];
1076
  document.getElementById( "preview_watermark" ).style.textAlign = watermark_position[ 1 ];
1077
+ stringHTML = ( watermark_link ? '<a href="' + watermark_link + '" target="_blank" style="text-decoration: none;' : '<span style="cursor:default;' ) + 'margin:4px;font-size:' + watermark_font_size + 'px;font-family:' + watermark_font + ';color:' + watermark_color + ';opacity:' + ( watermark_opacity / 100 ) + ';" class="non_selectable">' + watermark_text + ( watermark_link ? '</a>' : '</span>' );
1078
  document.getElementById( "preview_watermark" ).innerHTML = stringHTML;
1079
  }
1080
  watermark_type = window.parent.document.getElementById( 'watermark_type_image' ).checked;
1124
  watermark_position = jQuery( "input[name=built_in_watermark_position]:checked" ).val().split( '-' );
1125
  document.getElementById( "preview_built_in_watermark" ).style.verticalAlign = watermark_position[ 0 ];
1126
  document.getElementById( "preview_built_in_watermark" ).style.textAlign = watermark_position[ 1 ];
1127
+ stringHTML = '<span style="cursor:default;margin:4px;font-size:' + watermark_font_size + 'px;font-family:' + watermark_font + ';color:' + watermark_color + ';opacity:' + ( watermark_opacity / 100 ) + ';" class="non_selectable">' + watermark_text + '</span>';
1128
  document.getElementById( "preview_built_in_watermark" ).innerHTML = stringHTML;
1129
  }
1130
  watermark_type = window.parent.document.getElementById( 'built_in_watermark_type_image' ).checked;
js/bwg_frontend.js CHANGED
@@ -1,6 +1,8 @@
1
  var bwg = 0;
2
  var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
3
  var bwg_click = isMobile ? 'touchend' : 'click';
 
 
4
 
5
  /* Slideshow params */
6
  var bwg_params = [];
@@ -687,22 +689,32 @@ function bwg_carousel_preload( bwg, right ) {
687
  /**
688
  * @param {number} bwg.
689
  */
690
- function bwg_slideshow_ready(bwg) {
691
  if ( jQuery("#bwg_slideshow_image_container_" + bwg).length ) {
692
  bwg_params[bwg] = JSON.parse(jQuery("#bwg_slideshow_image_container_" + bwg).attr("data-params"));
693
  bwg_params[bwg]['event_stack'] = [];
 
 
 
 
 
 
 
 
 
 
694
  bwg_container_loaded(bwg);
695
  var data = bwg_params[bwg]['data'];
696
- if (typeof jQuery().swiperight !== 'undefined') {
697
- if (jQuery.isFunction(jQuery().swiperight)) {
698
  jQuery("#bwg_container1_" + bwg).swiperight(function () {
699
  bwg_change_image(parseInt(jQuery("#bwg_current_image_key_" + bwg).val()), (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) - bwg_iterator(bwg)) >= 0 ? (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) - bwg_iterator(bwg)) % data.length : data.length - 1, data, '', bwg);
700
  return false;
701
  });
702
  }
703
  }
704
- if (typeof jQuery().swipeleft !== 'undefined') {
705
- if (jQuery.isFunction(jQuery().swipeleft)) {
706
  jQuery("#bwg_container1_" + bwg).swipeleft(function () {
707
  bwg_change_image(parseInt(jQuery("#bwg_current_image_key_" + bwg).val()), (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) + bwg_iterator(bwg) % data.length), data, '', bwg);
708
  return false;
@@ -712,29 +724,31 @@ function bwg_slideshow_ready(bwg) {
712
  var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
713
  var bwg_click = isMobile ? 'touchend' : 'click';
714
  bwg_popup_resize(bwg);
715
- jQuery(".bwg_slideshow_watermark_" + bwg).css({display: 'none'});
716
- jQuery(".bwg_slideshow_title_text_" + bwg).css({display: 'none'});
717
- jQuery(".bwg_slideshow_description_text_" + bwg).css({display: 'none'});
718
  setTimeout(function () {
719
  bwg_change_watermark_container(bwg);
720
  }, 500);
721
- /* Set image container height.*/
722
- if (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') {
723
- jQuery(".bwg_slideshow_image_container_" + bwg).height(jQuery(".bwg_slideshow_image_wrap_" + bwg).height() - bwg_params[bwg]['slideshow_filmstrip_height']);
724
- }
725
- else {
726
- jQuery(".bwg_slideshow_image_container_" + bwg).width(jQuery(".bwg_slideshow_image_wrap_" + bwg).width() - bwg_params[bwg]['slideshow_filmstrip_width']);
 
 
727
  }
728
  var mousewheelevt = (/Firefox/i.test(navigator.userAgent)) ? "DOMMouseScroll" : "mousewheel";
729
  /* FF doesn't recognize mousewheel as of FF3.x */
730
- jQuery(".bwg_slideshow_filmstrip_" + bwg).bind(mousewheelevt, function (e) {
731
  var evt = window.event || e;
732
  /* Equalize event object.*/
733
  evt = evt.originalEvent ? evt.originalEvent : evt;
734
  /* Convert to originalEvent if possible.*/
735
  var delta = evt.detail ? evt.detail * (-40) : evt.wheelDelta;
736
  /* Check for detail first, because it is used by Opera and FF.*/
737
- if (delta > 0) {
738
  /* Scroll up.*/
739
  jQuery(".bwg_slideshow_filmstrip_left_" + bwg).trigger("click");
740
  }
@@ -744,133 +758,62 @@ function bwg_slideshow_ready(bwg) {
744
  }
745
  return false;
746
  });
 
 
 
 
 
 
 
747
  jQuery(".bwg_slideshow_filmstrip_right_" + bwg).on(bwg_click, function () {
748
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).stop(true, false);
749
- if (bwg_params[bwg]['left_or_top'] == 'left') { /* For left, width */
750
- if (bwg_params[bwg]['width_or_height'] == 'width') {
751
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())) {
752
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 1});
753
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width() - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))) {
754
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())}, 500, 'linear');
755
- }
756
- else {
757
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))}, 500, 'linear');
758
- }
759
- }
760
- /* Disable right arrow.*/
761
- window.setTimeout(function () {
762
- if ((jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left) == -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())) {
763
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 0.3});
764
- }
765
- }, 500);
766
- }
767
- else { /* For left, height */
768
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())) {
769
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 1});
770
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height() - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))) {
771
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())}, 500, 'linear');
772
- }
773
- else {
774
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))}, 500, 'linear');
775
- }
776
- }
777
- /* Disable right arrow.*/
778
- window.setTimeout(function () {
779
- if ((jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left) == -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())) {
780
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 0.3});
781
- }
782
- }, 500);
783
  }
784
  }
785
  else {
786
- if (bwg_params[bwg]['width_or_height'] == 'width') { /* For top, width */
787
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())) {
788
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 1});
789
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width() - parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width']))) {
790
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())}, 500, 'linear');
791
- }
792
- else {
793
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top - parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width']))}, 500, 'linear');
794
- }
795
- }
796
- /* Disable right arrow.*/
797
- window.setTimeout(function () {
798
- if ((jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top) == -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(".bwg_slideshow_filmstrip_" + bwg).width())) {
799
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 0.3});
800
- }
801
- }, 500);
802
- }
803
- else { /* For top, height */
804
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())) {
805
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 1});
806
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height() - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))) {
807
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())}, 500, 'linear');
808
- }
809
- else {
810
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top - (parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width'])))}, 500, 'linear');
811
- }
812
- }
813
- /* Disable right arrow.*/
814
- window.setTimeout(function () {
815
- if ((jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top) == -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(".bwg_slideshow_filmstrip_" + bwg).height())) {
816
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 0.3});
817
- }
818
- }, 500);
819
- }
820
  }
821
  });
822
  jQuery(".bwg_slideshow_filmstrip_left_" + bwg).on(bwg_click, function () {
823
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).stop(true, false);
824
- if (bwg_params[bwg]['left_or_top'] == 'left') {
825
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < 0) {
826
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 1});
827
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left > -(bwg_params[bwg]['filmstrip_thumb_margin_hor'] + bwg_params[bwg]['slideshow_filmstrip_width'])) {
828
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: 0}, 500, 'linear');
829
- }
830
- else {
831
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left + parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width']))}, 500, 'linear');
832
- }
833
  }
834
- /* Disable left arrow.*/
835
- window.setTimeout(function () {
836
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left == 0) {
837
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 0.3});
838
- }
839
- }, 500);
840
  }
841
  else {
842
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < 0) {
843
- jQuery(".bwg_slideshow_filmstrip_right_" + bwg).css({opacity: 1});
844
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top > -(bwg_params[bwg]['filmstrip_thumb_margin_hor'] + bwg_params[bwg]['slideshow_filmstrip_width'])) {
845
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: 0}, 500, 'linear');
846
- }
847
- else {
848
- jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top + parseInt(bwg_params[bwg]['filmstrip_thumb_margin_hor']) + parseInt(bwg_params[bwg]['slideshow_filmstrip_width']))}, 500, 'linear');
849
- }
850
- }
851
- /* Disable top arrow.*/
852
- window.setTimeout(function () {
853
- if (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top == 0) {
854
- jQuery(".bwg_slideshow_filmstrip_left_" + bwg).css({opacity: 0.3});
855
- }
856
- }, 500);
857
  }
858
  });
859
- if (bwg_params[bwg]['width_or_height'] == 'width') {
860
  /* Set filmstrip initial position.*/
861
- bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_" + bwg).width(), bwg);
862
  }
863
  else {
864
  /* Set filmstrip initial position.*/
865
- bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_" + bwg).height(), bwg);
866
  }
867
  /* Play/pause.*/
868
  jQuery("#bwg_slideshow_play_pause_" + bwg).off(bwg_click).on(bwg_click, function () {
869
- if (jQuery(".bwg_ctrl_btn_" + bwg).hasClass("bwg-icon-play")) {
870
  bwg_play(bwg_params[bwg]['data'], bwg);
871
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", bwg_objectsL10n.pause);
872
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-pause bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
873
- if (bwg_params[bwg]['enable_slideshow_music'] == 1) {
874
  document.getElementById("bwg_audio_" + bwg).play();
875
  }
876
  }
@@ -879,25 +822,24 @@ function bwg_slideshow_ready(bwg) {
879
  window.clearInterval(window['bwg_playInterval' + bwg]);
880
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", "Play");
881
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-play bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
882
- if (bwg_params[bwg]['enable_slideshow_music'] == 1) {
883
  document.getElementById("bwg_audio_" + bwg).pause();
884
  }
885
  }
886
  });
887
- if (bwg_params[bwg]['enable_slideshow_autoplay'] != 0) {
888
  bwg_play(bwg_params[bwg]['data'], bwg);
889
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", bwg_objectsL10n.pause);
890
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-pause bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
891
- if (bwg_params[bwg]['enable_slideshow_music'] == 1 && jQuery("#bwg_audio_" + bwg).length) {
892
  document.getElementById("bwg_audio_" + bwg).play();
893
  }
894
  }
895
- if (bwg_params[bwg]['preload_images']) {
896
  bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()), bwg);
897
  }
898
  jQuery(".bwg_slideshow_image_" + bwg).removeAttr("width");
899
  jQuery(".bwg_slideshow_image_" + bwg).removeAttr("height");
900
-
901
  /* Uses Instagram oEmbed data to create iframe tag. */
902
  if ( typeof instgrm !== 'undefined' && typeof instgrm.Embeds !== 'undefined' ) {
903
  var instagram_embed = jQuery('#instagram-embed-' + bwg);
@@ -1203,7 +1145,7 @@ function bwg_thumbnail_masonry(that) {
1203
  if ( typeof bwg_item_image.data("src") !== "undefined" && bwg_item_image.data("src").indexOf("svg") === -1 ) {
1204
  if ( bwg_item_image.attr("data-width").length > 0 && bwg_item_image.attr("data-height").length > 0 ) {
1205
  scale = parseInt(bwg_item_image.data("width")) / parseInt(bwg_item_image.data("height"));
1206
- scaleHeight = ( bwg_item_image.width() - (thumb_padding / column_count) ) / scale;
1207
 
1208
  /* calculating height of image title and description */
1209
  /* finding title/description with 'a>' selector to avoid calculating heights for 'Show on hover' option. */
@@ -1741,6 +1683,36 @@ function bwg_document_ready(container) {
1741
  if ( container.data( 'right-click-protection' ) ) {
1742
  bwg_disable_right_click( container );
1743
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1744
  bwg_search_tag_init(container);
1745
  /* Tag filter - Buttons View */
1746
  var cur_gal_id = container.find('.cur_gal_id').val();
@@ -2205,6 +2177,7 @@ function bwg_ajax(form_id, current_view, id, album_gallery_id, cur_album_id, typ
2205
  break;
2206
  }
2207
  bwg_mosaic_ajax(current_view, mosaic_loaded);
 
2208
  }
2209
  else {
2210
  var no_data = bwg_all_thumnails_loaded(".bwg-container-" + current_view);
@@ -2832,7 +2805,8 @@ function bwg_set_filmstrip_pos( filmStripWidth, bwg, data ) {
2832
  } else if (gallery_box_data['width_or_height'] == 'height') {
2833
  var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_filmstrip_thumbnails").height(), selectedImagePos + filmStripWidth / 2));
2834
  }
2835
- } else { /* for slideshow */
 
2836
  if (bwg_params[bwg]['width_or_height'] == 'width') {
2837
  var selectedImagePos = -bwg_params[bwg]['bwg_current_filmstrip_pos'] - (jQuery(".bwg_slideshow_filmstrip_thumbnail" + defix).width() + bwg_params[bwg]['filmstrip_thumb_margin_hor']) / 2;
2838
  var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_slideshow_filmstrip_thumbnails" + defix).width(), selectedImagePos + filmStripWidth / 2));
@@ -2857,10 +2831,12 @@ function bwg_set_filmstrip_pos( filmStripWidth, bwg, data ) {
2857
  duration: 500,
2858
  complete: function () { bwg_filmstrip_arrows( bwg ); }
2859
  });
2860
- } else {
 
2861
  jQuery(".bwg"+source+"_filmstrip_thumbnails" + defix).animate({
2862
  top: imagesContainerLeft + top_bottom_space
2863
- }, {
 
2864
  duration: 500,
2865
  complete: function () { bwg_filmstrip_arrows( bwg ); }
2866
  });
@@ -2869,28 +2845,34 @@ function bwg_set_filmstrip_pos( filmStripWidth, bwg, data ) {
2869
 
2870
  /* Show/hide filmstrip arrows.*/
2871
  function bwg_filmstrip_arrows( bwg ) {
2872
- var defix = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_'+bwg : '';
2873
- var source = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_slideshow' : '';
2874
- var width_or_height = ( typeof bwg !== 'undefined' && bwg !== '' ) ? bwg_params[bwg]['width_or_heigh'] : gallery_box_data['width_or_height'];
2875
-
2876
- if ( width_or_height == 'width' ){
2877
- var condition1 = jQuery(".bwg"+source+"_filmstrip_thumbnails"+defix).width();
2878
- var condition2 = jQuery(".bwg"+source+"_filmstrip"+defix).width();
2879
- } else {
2880
- var condition1 = jQuery(".bwg"+source+"_filmstrip_thumbnails"+defix).height();
2881
- var condition2 = jQuery(".bwg"+source+"_filmstrip"+defix).height();
2882
  }
2883
- if (condition1 < condition2) {
2884
- jQuery(".bwg"+source+"_filmstrip_left" + defix).hide();
2885
- jQuery(".bwg"+source+"_filmstrip_right" + defix).hide();
 
 
 
 
2886
  }
2887
  else {
2888
- jQuery(".bwg"+source+"_filmstrip_left" + defix).show();
2889
- jQuery(".bwg"+source+"_filmstrip_right" + defix).show();
2890
  }
2891
  }
2892
 
2893
- function bwg_move_filmstrip( bwg ) {
 
 
 
 
 
2894
  var bwg_filmstrip_width;
2895
  var bwg_filmstrip_thumbnails_width;
2896
  var image_left;
@@ -2898,10 +2880,10 @@ function bwg_move_filmstrip( bwg ) {
2898
  var long_filmstrip_cont_left;
2899
  var long_filmstrip_cont_right;
2900
 
2901
- var defix = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_'+bwg : '';
2902
  var source = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_slideshow' : '';
2903
- var outerWidth_or_outerHeight = ( typeof bwg !== 'undefined' && bwg !== '' ) ? bwg_params[bwg]['outerWidth_or_outerHeight'] : gallery_box_data['outerWidth_or_outerHeight'];
2904
- var left_or_top = ( typeof bwg !== 'undefined' && bwg !== '' ) ? bwg_params[bwg]['left_or_top'] : gallery_box_data['left_or_top'];
2905
 
2906
  if(outerWidth_or_outerHeight == 'outerWidth') {
2907
  bwg_filmstrip_width = jQuery(".bwg" + source + "_filmstrip" + defix).outerWidth(true);
@@ -2919,7 +2901,8 @@ function bwg_move_filmstrip( bwg ) {
2919
  }
2920
  long_filmstrip_cont_left = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left;
2921
  long_filmstrip_cont_right = Math.abs(jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left) + bwg_filmstrip_width;
2922
- } else {
 
2923
  image_left = jQuery(".bwg" + source + "_thumb_active" + defix).position().top;
2924
  if( outerWidth_or_outerHeight == 'outerWidth' ) {
2925
  image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().top + jQuery(".bwg" + source + "_thumb_active" + defix).outerWidth(true);
@@ -2972,6 +2955,424 @@ function bwg_move_filmstrip( bwg ) {
2972
  }
2973
  }
2974
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2975
  function bwg_move_dots( bwg ) {
2976
  var image_left = jQuery(".bwg_slideshow_dots_active_" + bwg).position().left;
2977
  var image_right = jQuery(".bwg_slideshow_dots_active_" + bwg).position().left + jQuery(".bwg_slideshow_dots_active_" + bwg).outerWidth(true);
@@ -3033,9 +3434,7 @@ function bwg_fallback3d(current_image_class, next_image_class, direction, bwg) {
3033
  }
3034
 
3035
  function bwg_none(current_image_class, next_image_class, direction, bwg) {
3036
-
3037
  var defix = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_'+bwg : '';
3038
-
3039
  jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
3040
  jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
3041
 
@@ -3047,15 +3446,14 @@ function bwg_none(current_image_class, next_image_class, direction, bwg) {
3047
  jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key + defix).removeClass("bwg_slideshow_thumb_deactive" + defix).addClass("bwg_slideshow_thumb_active" + defix);
3048
  jQuery(".bwg_slideshow_dots" + defix).removeClass("bwg_slideshow_dots_active" + defix).addClass("bwg_slideshow_dots_deactive" + defix);
3049
  jQuery("#bwg_dots_" + bwg_current_key + defix).removeClass("bwg_slideshow_dots_deactive" + defix).addClass("bwg_slideshow_dots_active" + defix);
3050
- } else {
 
3051
  /* Lightbox */
3052
  jQuery(".bwg_image_info").show();
3053
  gallery_box_data['bwg_trans_in_progress'] = false;
3054
  jQuery(current_image_class).html('');
3055
  bwg_change_watermark_container();
3056
  }
3057
-
3058
-
3059
  }
3060
 
3061
  function bwg_iterator( bwg ) {
@@ -3197,9 +3595,15 @@ function bwg_change_image_slideshow(current_key, key, data, from_effect, bwg) {
3197
  bwg_preload_images(key, bwg);
3198
  }
3199
  window["bwg_" + bwg_params[bwg]['slideshow_effect']](current_image_class, next_image_class, direction, bwg);
3200
- if ( bwg_params[bwg]['enable_slideshow_filmstrip'] > 0 ) {
3201
- bwg_move_filmstrip( bwg );
 
3202
  }
 
 
 
 
 
3203
  else {
3204
  bwg_move_dots( bwg);
3205
  }
@@ -3263,82 +3667,130 @@ function bwg_preload_images( key, bwg ) {
3263
  }
3264
 
3265
  function bwg_popup_resize_slidshow( bwg ) {
 
 
 
 
 
3266
  var parentt = jQuery("#bwg_container1_" + bwg).parent();
3267
  /* Trick to set parent's width to elementor tab. */
3268
- if (parentt.hasClass('elementor-tab-content')) {
3269
  parentt.width(parentt.closest('.elementor-widget-wrap').width());
3270
  }
3271
  var parent_width = parentt.width();
3272
  var data = bwg_params[bwg]['data'];
3273
  if ( parent_width >= bwg_params[bwg]['image_width'] ) {
3274
- jQuery(".bwg_slideshow_image_wrap_"+bwg).css({width: bwg_params[bwg]['image_width']});
3275
- jQuery(".bwg_slideshow_image_wrap_"+bwg).css({height: bwg_params[bwg]['image_height']});
3276
- jQuery(".bwg_slideshow_image_container_"+bwg).css({width: (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width']) });
3277
- jQuery(".bwg_slideshow_image_container_"+bwg).css({height: (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height'] : bwg_params[bwg]['image_height'] });
3278
- jQuery(".bwg_slideshow_image_"+bwg).css({
3279
- cssText: "max-width: " + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal ') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width'])+"px !important; max-height: " + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? (bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height']) : bwg_params[bwg]['image_height']+"px !important;"
3280
  });
3281
- jQuery(".bwg_slideshow_embed_"+bwg).css({
3282
- cssText: "width: "+(bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width'])+"px !important; height:"+ (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? (bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height']) : bwg_params[bwg]['image_height']+"px !important;"
3283
  });
3284
- bwg_resize_instagram_post( bwg );
3285
  /* Set watermark container size. */
3286
- bwg_change_watermark_container( bwg );
3287
- var filmstrip_container_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + bwg_params[bwg]['image_width'] : 'height: ' + bwg_params[bwg]['image_height'];
3288
  var filmstrip_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + (bwg_params[bwg]['image_width'] - 40) : 'height: ' + (bwg_params[bwg]['image_height'] - 40);
3289
  jQuery(".bwg_slideshow_filmstrip_container_" + bwg).css({ cssText: filmstrip_container_css });
3290
- jQuery(".bwg_slideshow_filmstrip_"+bwg).css({ cssText: filmstrip_css });
3291
- jQuery(".bwg_slideshow_dots_container_"+bwg).css({width: bwg_params[bwg]['image_width'] });
3292
- jQuery("#bwg_slideshow_play_pause-ico_"+bwg).css({fontSize: (bwg_params[bwg]['slideshow_play_pause_btn_size'])});
3293
- if ( bwg_params[bwg]['watermark_type'] == 'image') {
3294
  jQuery(".bwg_slideshow_watermark_image_" + bwg).css({
3295
  maxWidth: bwg_params[bwg]['watermark_width'],
3296
  maxHeight: bwg_params[bwg]['watermark_height']
3297
  });
3298
  }
3299
- if ( bwg_params[bwg]['watermark_type'] == 'text') {
3300
  jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + " :hover").css({
3301
  fontSize: (bwg_params[bwg]['watermark_font_size'])
3302
  });
3303
  }
3304
- jQuery(".bwg_slideshow_title_text_"+bwg).css({fontSize: ( bwg_params[bwg]['slideshow_title_font_size'] * 2 )});
3305
- jQuery(".bwg_slideshow_description_text_"+bwg).css({fontSize: (bwg_params[bwg]['slideshow_description_font_size'] * 2)});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3306
  }
3307
  else {
3308
- jQuery(".bwg_slideshow_image_wrap_"+bwg).css({width: (parent_width)});
3309
- jQuery(".bwg_slideshow_image_wrap_"+bwg).css({ height: ((parent_width) * bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'] )});
3310
- jQuery(".bwg_slideshow_image_container_"+bwg).css({width: (parent_width - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? 0 : bwg_params[bwg]['slideshow_filmstrip_width']))});
3311
- jQuery(".bwg_slideshow_image_container_"+bwg).css({height: ((parent_width) * bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'] - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? bwg_params[bwg]['slideshow_filmstrip_height'] : 0))});
3312
- jQuery(".bwg_slideshow_image_"+bwg).css({
3313
- cssText: "max-width: " + (parent_width - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? 0 : bwg_params[bwg]['slideshow_filmstrip_width'])) + "px !important; max-height: " + (parent_width * (bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width']) - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? bwg_params[bwg]['slideshow_filmstrip_height'] : 0) - 1) + "px !important;"
3314
- });
3315
- jQuery(".bwg_slideshow_embed_"+bwg).css({
3316
- cssText: "width: " + (parent_width - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? 0 : bwg_params[bwg]['slideshow_filmstrip_width']) ) + "px !important; height: " + (parent_width * (bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width']) - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? bwg_params[bwg]['slideshow_filmstrip_height'] : 0) - 1) + "px !important;"
3317
- });
3318
- bwg_resize_instagram_post( bwg );
3319
- /* Set watermark container size.*/
3320
- bwg_change_watermark_container( bwg );
3321
- if (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') {
3322
- jQuery(".bwg_slideshow_filmstrip_container_"+bwg).css({width: (parent_width)});
3323
- jQuery(".bwg_slideshow_filmstrip_"+bwg).css({width: (parent_width - 40)});
3324
  }
3325
- else {
3326
- jQuery(".bwg_slideshow_filmstrip_container_"+bwg).css({height: (parent_width * bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'])});
3327
- jQuery(".bwg_slideshow_filmstrip_"+bwg).css({height: (parent_width * bwg_params[bwg]['image_height'] / bwg_params[bwg]['image_width'] - 40)});
3328
  }
3329
- jQuery(".bwg_slideshow_dots_container_"+bwg).css({width: (parent_width)});
3330
- jQuery("#bwg_slideshow_play_pause-ico_"+bwg).css({fontSize: ((parent_width) * bwg_params[bwg]['slideshow_play_pause_btn_size'] / bwg_params[bwg]['image_width'])});
3331
- jQuery(".bwg_slideshow_watermark_image_"+bwg).css({maxWidth: ((parent_width) * bwg_params[bwg]['watermark_width'] / bwg_params[bwg]['image_width']), maxHeight: ((parent_width) * bwg_params[bwg]['watermark_height'] / bwg_params[bwg]['image_width'])});
3332
- 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'])});
3333
- jQuery(".bwg_slideshow_title_text_"+bwg).css({fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_title_font_size'] / bwg_params[bwg]['image_width'])});
3334
- jQuery(".bwg_slideshow_description_text_"+bwg).css({fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_description_font_size'] / bwg_params[bwg]['image_width'])});
3335
- jQuery(".bwg_slideshow_image_"+bwg).css({'display':'inline-block'});
 
 
 
 
3336
  }
3337
- if (data[parseInt(jQuery("#bwg_current_image_key_"+bwg).val())]["is_embed_video"]) {
3338
- jQuery("#bwg_slideshow_play_pause_"+bwg).css({display: 'none'});
3339
  }
3340
  else {
3341
- jQuery("#bwg_slideshow_play_pause_"+bwg).css({display: ''});
3342
  }
3343
  }
3344
 
@@ -3500,8 +3952,205 @@ function bwg_disable_right_click( container ) {
3500
  container.css( 'webkitTouchCallout', 'none' );
3501
  }
3502
 
3503
- function bwg_resizing_ratio(srcWidth, srcHeight, maxWidth, maxHeight) {
3504
- var ratio = [maxWidth / srcWidth, maxHeight / srcHeight ];
 
 
 
 
 
 
 
 
 
3505
  ratio = Math.min(ratio[0], ratio[1]);
3506
- return { width:srcWidth*ratio, height:srcHeight*ratio };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3507
  }
1
  var bwg = 0;
2
  var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
3
  var bwg_click = isMobile ? 'touchend' : 'click';
4
+ var bwg_slideshow_filmstrip_thumbnail_timer = false;
5
+ window.bwg_slideshow_filmstrip_thumb = {};
6
 
7
  /* Slideshow params */
8
  var bwg_params = [];
689
  /**
690
  * @param {number} bwg.
691
  */
692
+ function bwg_slideshow_ready( bwg ) {
693
  if ( jQuery("#bwg_slideshow_image_container_" + bwg).length ) {
694
  bwg_params[bwg] = JSON.parse(jQuery("#bwg_slideshow_image_container_" + bwg).attr("data-params"));
695
  bwg_params[bwg]['event_stack'] = [];
696
+ var slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_" + bwg;
697
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
698
+ bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key] = {};
699
+ bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] = 0;
700
+ var slideshow_filmstrip_fix_count = false;
701
+ // Slideshow filmstrip type is Fix count.
702
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
703
+ slideshow_filmstrip_fix_count = true;
704
+ slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_fix_count_" + bwg;
705
+ }
706
  bwg_container_loaded(bwg);
707
  var data = bwg_params[bwg]['data'];
708
+ if ( typeof jQuery().swiperight !== 'undefined' ) {
709
+ if ( jQuery.isFunction(jQuery().swiperight) ) {
710
  jQuery("#bwg_container1_" + bwg).swiperight(function () {
711
  bwg_change_image(parseInt(jQuery("#bwg_current_image_key_" + bwg).val()), (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) - bwg_iterator(bwg)) >= 0 ? (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) - bwg_iterator(bwg)) % data.length : data.length - 1, data, '', bwg);
712
  return false;
713
  });
714
  }
715
  }
716
+ if ( typeof jQuery().swipeleft !== 'undefined' ) {
717
+ if ( jQuery.isFunction(jQuery().swipeleft) ) {
718
  jQuery("#bwg_container1_" + bwg).swipeleft(function () {
719
  bwg_change_image(parseInt(jQuery("#bwg_current_image_key_" + bwg).val()), (parseInt(jQuery("#bwg_current_image_key_" + bwg).val()) + bwg_iterator(bwg) % data.length), data, '', bwg);
720
  return false;
724
  var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
725
  var bwg_click = isMobile ? 'touchend' : 'click';
726
  bwg_popup_resize(bwg);
727
+ jQuery(".bwg_slideshow_watermark_" + bwg).css({ display: 'none' });
728
+ jQuery(".bwg_slideshow_title_text_" + bwg).css({ display: 'none' });
729
+ jQuery(".bwg_slideshow_description_text_" + bwg).css({ display: 'none' });
730
  setTimeout(function () {
731
  bwg_change_watermark_container(bwg);
732
  }, 500);
733
+ /* Set image container height for Fix dimension */
734
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
735
+ if ( bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ) {
736
+ jQuery(".bwg_slideshow_image_container_" + bwg).height(jQuery(".bwg_slideshow_image_wrap_" + bwg).height() - bwg_params[bwg]['slideshow_filmstrip_height']);
737
+ }
738
+ else {
739
+ jQuery(".bwg_slideshow_image_container_" + bwg).width(jQuery(".bwg_slideshow_image_wrap_" + bwg).width() - bwg_params[bwg]['slideshow_filmstrip_width']);
740
+ }
741
  }
742
  var mousewheelevt = (/Firefox/i.test(navigator.userAgent)) ? "DOMMouseScroll" : "mousewheel";
743
  /* FF doesn't recognize mousewheel as of FF3.x */
744
+ jQuery(slideshow_filmstrip_class_name).bind(mousewheelevt, function ( e ) {
745
  var evt = window.event || e;
746
  /* Equalize event object.*/
747
  evt = evt.originalEvent ? evt.originalEvent : evt;
748
  /* Convert to originalEvent if possible.*/
749
  var delta = evt.detail ? evt.detail * (-40) : evt.wheelDelta;
750
  /* Check for detail first, because it is used by Opera and FF.*/
751
+ if ( delta > 0 ) {
752
  /* Scroll up.*/
753
  jQuery(".bwg_slideshow_filmstrip_left_" + bwg).trigger("click");
754
  }
758
  }
759
  return false;
760
  });
761
+
762
+ var next_prev_params = {
763
+ 'bwg': bwg,
764
+ 'params': bwg_params[bwg],
765
+ 'slideshow_filmstrip_class_name': slideshow_filmstrip_class_name
766
+ };
767
+
768
  jQuery(".bwg_slideshow_filmstrip_right_" + bwg).on(bwg_click, function () {
769
+ if ( slideshow_filmstrip_fix_count == true ) {
770
+ // Slideshow filmstrip thumbnails animation busy.
771
+ // Lets allow to slide only previews sliding finished.
772
+ if ( bwg_slideshow_filmstrip_thumbnail_timer === false ) {
773
+ bwg_slideshow_filmstrip_thumbnail_timer = true;
774
+ bwg_slideshow_filmstrip_next( next_prev_params );
775
+ // Lets set timeout counter equal sliding duration time.
776
+ setTimeout(function () {
777
+ bwg_slideshow_filmstrip_thumbnail_timer = false;
778
+ }, 505);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
779
  }
780
  }
781
  else {
782
+ bwg_slideshow_filmstrip_next( next_prev_params );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  }
784
  });
785
  jQuery(".bwg_slideshow_filmstrip_left_" + bwg).on(bwg_click, function () {
786
+ if ( slideshow_filmstrip_fix_count == true ) {
787
+ // Slideshow filmstrip thumbnails animation busy.
788
+ // Lets allow to slide only previews sliding finished.
789
+ if ( bwg_slideshow_filmstrip_thumbnail_timer === false ) {
790
+ bwg_slideshow_filmstrip_thumbnail_timer = true;
791
+ bwg_slideshow_filmstrip_prev( next_prev_params );
792
+ // Lets set timeout counter equal sliding duration time.
793
+ setTimeout(function () {
794
+ bwg_slideshow_filmstrip_thumbnail_timer = false;
795
+ }, 505);
796
  }
 
 
 
 
 
 
797
  }
798
  else {
799
+ bwg_slideshow_filmstrip_prev( next_prev_params );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
800
  }
801
  });
802
+ if ( bwg_params[bwg]['width_or_height'] == 'width' ) {
803
  /* Set filmstrip initial position.*/
804
+ bwg_set_filmstrip_pos(jQuery(slideshow_filmstrip_class_name).width(), bwg);
805
  }
806
  else {
807
  /* Set filmstrip initial position.*/
808
+ bwg_set_filmstrip_pos(jQuery(slideshow_filmstrip_class_name).height(), bwg);
809
  }
810
  /* Play/pause.*/
811
  jQuery("#bwg_slideshow_play_pause_" + bwg).off(bwg_click).on(bwg_click, function () {
812
+ if ( jQuery(".bwg_ctrl_btn_" + bwg).hasClass("bwg-icon-play") ) {
813
  bwg_play(bwg_params[bwg]['data'], bwg);
814
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", bwg_objectsL10n.pause);
815
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-pause bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
816
+ if ( bwg_params[bwg]['enable_slideshow_music'] == 1 ) {
817
  document.getElementById("bwg_audio_" + bwg).play();
818
  }
819
  }
822
  window.clearInterval(window['bwg_playInterval' + bwg]);
823
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", "Play");
824
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-play bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
825
+ if ( bwg_params[bwg]['enable_slideshow_music'] == 1 ) {
826
  document.getElementById("bwg_audio_" + bwg).pause();
827
  }
828
  }
829
  });
830
+ if ( bwg_params[bwg]['enable_slideshow_autoplay'] != 0 ) {
831
  bwg_play(bwg_params[bwg]['data'], bwg);
832
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("title", bwg_objectsL10n.pause);
833
  jQuery(".bwg_slideshow_play_pause_" + bwg).attr("class", "bwg-icon-pause bwg_ctrl_btn_" + bwg + " bwg_slideshow_play_pause_" + bwg + "");
834
+ if ( bwg_params[bwg]['enable_slideshow_music'] == 1 && jQuery("#bwg_audio_" + bwg).length ) {
835
  document.getElementById("bwg_audio_" + bwg).play();
836
  }
837
  }
838
+ if ( bwg_params[bwg]['preload_images'] ) {
839
  bwg_preload_images(parseInt(jQuery("#bwg_current_image_key_".$bwg).val()), bwg);
840
  }
841
  jQuery(".bwg_slideshow_image_" + bwg).removeAttr("width");
842
  jQuery(".bwg_slideshow_image_" + bwg).removeAttr("height");
 
843
  /* Uses Instagram oEmbed data to create iframe tag. */
844
  if ( typeof instgrm !== 'undefined' && typeof instgrm.Embeds !== 'undefined' ) {
845
  var instagram_embed = jQuery('#instagram-embed-' + bwg);
1145
  if ( typeof bwg_item_image.data("src") !== "undefined" && bwg_item_image.data("src").indexOf("svg") === -1 ) {
1146
  if ( bwg_item_image.attr("data-width").length > 0 && bwg_item_image.attr("data-height").length > 0 ) {
1147
  scale = parseInt(bwg_item_image.data("width")) / parseInt(bwg_item_image.data("height"));
1148
+ scaleHeight = bwg_item_image.width () / scale;
1149
 
1150
  /* calculating height of image title and description */
1151
  /* finding title/description with 'a>' selector to avoid calculating heights for 'Show on hover' option. */
1683
  if ( container.data( 'right-click-protection' ) ) {
1684
  bwg_disable_right_click( container );
1685
  }
1686
+ /* Add dashicon to select container. */
1687
+ /* Tag filter - Select View */
1688
+ jQuery(".SumoSelect > .CaptionCont > label > i").addClass("bwg-icon-angle-down closed");
1689
+ var search_tags = container.find('.search_tags');
1690
+ if ( bwg_objectsL10n.front_ajax == "1" ) {
1691
+ if ( search_tags.length ) {
1692
+ for (var i = 0; i < search_tags[0].length; i++) {
1693
+ if ( typeof search_tags[0][i].attributes.selected === "undefined" ) {
1694
+ search_tags[0][i].selected = false;
1695
+ }
1696
+ }
1697
+ }
1698
+ }
1699
+ if ( search_tags.length ) {
1700
+ search_tags.SumoSelect({
1701
+ triggerChangeCombined: true,
1702
+ placeholder: bwg_objectsL10n.bwg_select_tag,
1703
+ search: true,
1704
+ searchText : bwg_objectsL10n.bwg_search,
1705
+ forceCustomRendering: true,
1706
+ noMatch: bwg_objectsL10n.bwg_tag_no_match,
1707
+ captionFormatAllSelected : bwg_objectsL10n.bwg_all_tags_selected,
1708
+ captionFormat: '{0} '+ bwg_objectsL10n.bwg_tags_selected,
1709
+ okCancelInMulti: true,
1710
+ locale: [bwg_objectsL10n.ok, bwg_objectsL10n.cancel, bwg_objectsL10n.select_all]
1711
+ } );
1712
+ search_tags.off("change").on("change", function () {
1713
+ bwg_filter_by_tag(this);
1714
+ });
1715
+ }
1716
  bwg_search_tag_init(container);
1717
  /* Tag filter - Buttons View */
1718
  var cur_gal_id = container.find('.cur_gal_id').val();
2177
  break;
2178
  }
2179
  bwg_mosaic_ajax(current_view, mosaic_loaded);
2180
+ bwg_container_loaded(current_view);
2181
  }
2182
  else {
2183
  var no_data = bwg_all_thumnails_loaded(".bwg-container-" + current_view);
2805
  } else if (gallery_box_data['width_or_height'] == 'height') {
2806
  var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_filmstrip_thumbnails").height(), selectedImagePos + filmStripWidth / 2));
2807
  }
2808
+ }
2809
+ else { /* for slideshow */
2810
  if (bwg_params[bwg]['width_or_height'] == 'width') {
2811
  var selectedImagePos = -bwg_params[bwg]['bwg_current_filmstrip_pos'] - (jQuery(".bwg_slideshow_filmstrip_thumbnail" + defix).width() + bwg_params[bwg]['filmstrip_thumb_margin_hor']) / 2;
2812
  var imagesContainerLeft = Math.min(0, Math.max(filmStripWidth - jQuery(".bwg_slideshow_filmstrip_thumbnails" + defix).width(), selectedImagePos + filmStripWidth / 2));
2831
  duration: 500,
2832
  complete: function () { bwg_filmstrip_arrows( bwg ); }
2833
  });
2834
+ }
2835
+ else {
2836
  jQuery(".bwg"+source+"_filmstrip_thumbnails" + defix).animate({
2837
  top: imagesContainerLeft + top_bottom_space
2838
+ },
2839
+ {
2840
  duration: 500,
2841
  complete: function () { bwg_filmstrip_arrows( bwg ); }
2842
  });
2845
 
2846
  /* Show/hide filmstrip arrows.*/
2847
  function bwg_filmstrip_arrows( bwg ) {
2848
+ var source = (typeof bwg !== 'undefined' && bwg !== '') ? '_slideshow' : '';
2849
+ var filmstrip_thumbnails_type = ( typeof bwg_params[bwg] != 'undefined' && bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) ? '_filmstrip_fix_count' : '_filmstrip';
2850
+ var defix = (typeof bwg !== 'undefined' && bwg !== '') ? '_' + bwg : '';
2851
+ var width_or_height = (typeof bwg !== 'undefined' && bwg !== '' ) ? bwg_params[bwg]['width_or_heigh'] : gallery_box_data['width_or_height'];
2852
+ if ( width_or_height == 'width' ) {
2853
+ var condition1 = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).width();
2854
+ var condition2 = jQuery(".bwg" + source + "" + filmstrip_thumbnails_type + "" + defix).width();
 
 
 
2855
  }
2856
+ else {
2857
+ var condition1 = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).height();
2858
+ var condition2 = jQuery(".bwg" + source + "" + filmstrip_thumbnails_type + "" + defix).height();
2859
+ }
2860
+ if ( condition1 < condition2 ) {
2861
+ jQuery(".bwg" + source + "_filmstrip_left" + defix).hide();
2862
+ jQuery(".bwg" + source + "_filmstrip_right" + defix).hide();
2863
  }
2864
  else {
2865
+ jQuery(".bwg" + source + "_filmstrip_left" + defix).hide();
2866
+ jQuery(".bwg" + source + "_filmstrip_right" + defix).show();
2867
  }
2868
  }
2869
 
2870
+ /**
2871
+ * Slideshow filmstrip fix dimension.
2872
+ *
2873
+ * @param bwg
2874
+ */
2875
+ function bwg_slideshow_filmstrip_fix_dimension( bwg ) {
2876
  var bwg_filmstrip_width;
2877
  var bwg_filmstrip_thumbnails_width;
2878
  var image_left;
2880
  var long_filmstrip_cont_left;
2881
  var long_filmstrip_cont_right;
2882
 
2883
+ var defix = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_' + bwg : '';
2884
  var source = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_slideshow' : '';
2885
+ var outerWidth_or_outerHeight = ( typeof bwg !== 'undefined' && bwg !== '' && typeof bwg_params[bwg]['outerWidth_or_outerHeight'] != 'undefined' ) ? bwg_params[bwg]['outerWidth_or_outerHeight'] : gallery_box_data['outerWidth_or_outerHeight'];
2886
+ var left_or_top = ( typeof bwg !== 'undefined' && bwg !== '' && typeof bwg_params[bwg]['left_or_top'] != 'undefined' ) ? bwg_params[bwg]['left_or_top'] : gallery_box_data['left_or_top'];
2887
 
2888
  if(outerWidth_or_outerHeight == 'outerWidth') {
2889
  bwg_filmstrip_width = jQuery(".bwg" + source + "_filmstrip" + defix).outerWidth(true);
2901
  }
2902
  long_filmstrip_cont_left = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left;
2903
  long_filmstrip_cont_right = Math.abs(jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left) + bwg_filmstrip_width;
2904
+ }
2905
+ else {
2906
  image_left = jQuery(".bwg" + source + "_thumb_active" + defix).position().top;
2907
  if( outerWidth_or_outerHeight == 'outerWidth' ) {
2908
  image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().top + jQuery(".bwg" + source + "_thumb_active" + defix).outerWidth(true);
2955
  }
2956
  }
2957
 
2958
+ /**
2959
+ * Slideshow filmstrip fix count.
2960
+ *
2961
+ * @param bwg
2962
+ */
2963
+ function bwg_slideshow_filmstrip_fix_count( bwg ) {
2964
+ var bwg_filmstrip_width;
2965
+ var bwg_filmstrip_thumbnails_width;
2966
+ var image_left;
2967
+ var image_right;
2968
+ var long_filmstrip_cont_left;
2969
+ var long_filmstrip_cont_right;
2970
+ var defix = (typeof bwg !== 'undefined' && bwg !== '') ? '_' + bwg : '';
2971
+ var source = (typeof bwg !== 'undefined' && bwg !== '') ? '_slideshow' : '';
2972
+ var outerWidth_or_outerHeight = (typeof bwg !== 'undefined' && bwg !== '') ? bwg_params[bwg]['outerWidth_or_outerHeight'] : gallery_box_data['outerWidth_or_outerHeight'];
2973
+ var left_or_top = (typeof bwg !== 'undefined' && bwg !== '') ? bwg_params[bwg]['left_or_top'] : gallery_box_data['left_or_top'];
2974
+ if ( outerWidth_or_outerHeight == 'outerWidth' ) {
2975
+ bwg_filmstrip_width = jQuery('.bwg' + source + '_filmstrip_fix_count' + defix).outerWidth(true);
2976
+ bwg_filmstrip_thumbnails_width = jQuery('.bwg' + source + '_filmstrip_thumbnails' + defix).outerWidth(true);
2977
+ }
2978
+ else {
2979
+ bwg_filmstrip_width = jQuery(".bwg" + source + "_filmstrip_fix_count" + defix).outerHeight(true);
2980
+ bwg_filmstrip_thumbnails_width = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).outerHeight(true);
2981
+ }
2982
+ if ( left_or_top == 'left' ) {
2983
+ image_left = jQuery(".bwg" + source + "_thumb_active" + defix).position().left;
2984
+ if ( outerWidth_or_outerHeight == 'outerWidth' ) {
2985
+ image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().left + jQuery(".bwg" + source + "_thumb_active" + defix).outerWidth(true);
2986
+ }
2987
+ else {
2988
+ image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().left + jQuery(".bwg" + source + "_thumb_active" + defix).outerHeight(true);
2989
+ }
2990
+ long_filmstrip_cont_left = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left;
2991
+ long_filmstrip_cont_right = Math.abs(jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().left) + bwg_filmstrip_width;
2992
+ }
2993
+ else {
2994
+ image_left = jQuery(".bwg" + source + "_thumb_active" + defix).position().top;
2995
+ if ( outerWidth_or_outerHeight == 'outerWidth' ) {
2996
+ image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().top + jQuery(".bwg" + source + "_thumb_active" + defix).outerWidth(true);
2997
+ }
2998
+ else {
2999
+ image_right = jQuery(".bwg" + source + "_thumb_active" + defix).position().top + jQuery(".bwg" + source + "_thumb_active" + defix).outerHeight(true);
3000
+ }
3001
+ long_filmstrip_cont_left = jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().top;
3002
+ long_filmstrip_cont_right = Math.abs(jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).position().top) + bwg_filmstrip_width;
3003
+ }
3004
+ if ( bwg_filmstrip_width > bwg_filmstrip_thumbnails_width ) {
3005
+ return;
3006
+ }
3007
+ if ( image_left < Math.abs(long_filmstrip_cont_left) ) {
3008
+ if ( left_or_top == 'left' ) {
3009
+ jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).animate({
3010
+ left: -image_left
3011
+ },
3012
+ {
3013
+ duration: 500,
3014
+ complete: function () {
3015
+ bwg_filmstrip_arrows(bwg);
3016
+ }
3017
+ });
3018
+ }
3019
+ else {
3020
+ jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).animate({
3021
+ top: -image_left
3022
+ },
3023
+ {
3024
+ duration: 500,
3025
+ complete: function () {
3026
+ bwg_filmstrip_arrows(bwg);
3027
+ }
3028
+ });
3029
+ }
3030
+ }
3031
+ else if ( image_right > long_filmstrip_cont_right ) {
3032
+ if ( left_or_top == 'left' ) {
3033
+ jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).animate({
3034
+ left: -(image_right - bwg_filmstrip_width)
3035
+ },
3036
+ {
3037
+ duration: 500,
3038
+ complete: function () {
3039
+ bwg_filmstrip_arrows(bwg);
3040
+ }
3041
+ });
3042
+ }
3043
+ else {
3044
+ jQuery(".bwg" + source + "_filmstrip_thumbnails" + defix).animate({
3045
+ top: -(image_right - bwg_filmstrip_width)
3046
+ },
3047
+ {
3048
+ duration: 500,
3049
+ complete: function () {
3050
+ bwg_filmstrip_arrows(bwg);
3051
+ }
3052
+ });
3053
+ }
3054
+ }
3055
+ }
3056
+
3057
+ /**
3058
+ * Resize slideshow filmstrip fix count.
3059
+ *
3060
+ * @param args
3061
+ */
3062
+ function bwg_resize_slideshow_filmstrip_fix_count( args ) {
3063
+ var bwg = args['bwg'];
3064
+ var parent_width = args['parent_width'];
3065
+ var params = args['params'];
3066
+ var filmstrip_direction = params['filmstrip_direction'];
3067
+ var images = params['data'];
3068
+ var filmstrip_thumb_margin_hor = params['filmstrip_thumb_margin_hor'];
3069
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
3070
+ // After size 767 we set the number of images to 5.
3071
+ var is_change_size = ( jQuery(window).width() <= 767 && params['slideshow_thumbnails_count'] > 5 ) ? true : false;
3072
+ var slideshow_thumbnails_count = ( is_change_size ) ? 5 : params['slideshow_thumbnails_count'];
3073
+
3074
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
3075
+ var filmstrip_container = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_container_' + bwg;
3076
+ var filmstrip_fix_count = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_fix_count_' + bwg;
3077
+ var filmstrip_thumbnails = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_fix_count_' + bwg + ' .bwg_slideshow_filmstrip_thumbnails_' + bwg;
3078
+ var filmstrip_thumbnail = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_fix_count_' + bwg + ' .bwg_slideshow_filmstrip_thumbnails_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_' + bwg;
3079
+ var slideshow_image_container = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_image_container_' + bwg;
3080
+
3081
+ var filmstrip_position = jQuery(slideshow_image_container).data('filmstrip-position');
3082
+ var filmstrip_size = jQuery(slideshow_image_container).data('filmstrip-size');
3083
+ var filmstrip_rl_btn_size = params['slideshow_filmstrip_rl_btn_size'];
3084
+
3085
+ //var filmstrip_thumbnail_left = jQuery(filmstrip_thumbnails).position().left;
3086
+ //var filmstrip_thumbnail_count = jQuery(filmstrip_thumbnail).length;
3087
+ //var old_filmstrip_fix_count_width = jQuery(filmstrip_fix_count).height();
3088
+ //var old_filmstrip_thumbnail_width = jQuery(filmstrip_thumbnail).height();
3089
+
3090
+ jQuery('#bwg_container1_' + bwg).css({ width: '100%' });
3091
+ jQuery('#bwg_container1_' + bwg + ' #bwg_container2_' + bwg).css({
3092
+ width: parent_width
3093
+ });
3094
+
3095
+ if ( typeof resize_in_progress == 'undefined' || resize_in_progress === false ) {
3096
+ window.resize_in_progress = true;
3097
+ if ( typeof resize_timer != 'undefined' ) {
3098
+ clearTimeout(resize_timer);
3099
+ }
3100
+ var resize_timer = setTimeout(function(){
3101
+ resize_in_progress = false;
3102
+ // @Todo This part is another calculation. Maintains the position of the filmstrip according to the number of next / prev performed.
3103
+ //var new_filmstrip_fix_count_width = jQuery(filmstrip_fix_count).width();
3104
+ //var new_filmstrip_thumbnail_width = jQuery(filmstrip_thumbnail).width();
3105
+ //var difference_filmstrip_fix_count_width = (old_filmstrip_fix_count_width - new_filmstrip_fix_count_width);
3106
+ //var difference_filmstrip_thumbnail = ((old_filmstrip_thumbnail_width - new_filmstrip_thumbnail_width) * filmstrip_thumbnail_count);
3107
+ //var left_position = 0;
3108
+ //if(jQuery('.bwg_slideshow_filmstrip_right_' + bwg + ':hidden').length) {
3109
+ // left_position = jQuery(filmstrip_thumbnails).position().left + (difference_filmstrip_thumbnail - difference_filmstrip_fix_count_width);
3110
+ //}
3111
+ //if ( filmstrip_thumbnail_left < 0 ) {
3112
+ // left_position = -parseFloat( (new_filmstrip_thumbnail_width + filmstrip_thumb_margin_hor) * bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] );
3113
+ //}
3114
+ //jQuery(filmstrip_thumbnails).css({
3115
+ // left: left_position
3116
+ //});
3117
+ //
3118
+ //window.old_filmstrip_fix_count_width = new_filmstrip_fix_count_width;
3119
+ //window.old_filmstrip_thumbnail_width = new_filmstrip_thumbnail_width;
3120
+ var filmstrip_thumbnails_css = {};
3121
+ if ( filmstrip_position == 'bottom' || filmstrip_position == 'top' ) {
3122
+ filmstrip_thumbnails_css.left = 0;
3123
+ }
3124
+ else {
3125
+ filmstrip_thumbnails_css.top = 0;
3126
+ }
3127
+ jQuery(filmstrip_thumbnails).css(filmstrip_thumbnails_css);
3128
+ // Changes next / previous icon to active or passive.
3129
+ var slideshow_filmstrip_angle_display_value = (filmstrip_direction == 'horizontal') ? 'table-cell' : 'block';
3130
+ jQuery(filmstrip_container).find('.bwg_slideshow_filmstrip_left_' + bwg).css({ display: 'none' });
3131
+ jQuery(filmstrip_container).find('.bwg_slideshow_filmstrip_left_disabled_' + bwg).css({ display: slideshow_filmstrip_angle_display_value });
3132
+ jQuery(filmstrip_container).find('.bwg_slideshow_filmstrip_right_' + bwg).css({ display: slideshow_filmstrip_angle_display_value });
3133
+ jQuery(filmstrip_container).find('.bwg_slideshow_filmstrip_right_disabled_' + bwg).css({ display: 'none' });
3134
+ }, 500);
3135
+ }
3136
+
3137
+ bwg_resize_instagram_post(bwg);
3138
+ /* Set watermark container size.*/
3139
+ bwg_change_watermark_container(bwg);
3140
+ if ( filmstrip_direction == 'horizontal' ) {
3141
+ var thumb_ratio = params['image_height'] / params['image_width'];
3142
+ // set filmstrip block width height.
3143
+ var slideshow_filmstrip_block_width = parent_width - 40;
3144
+ var slideshow_filmstrip_block_height = Math.round(thumb_ratio * slideshow_filmstrip_block_width);
3145
+ // set filmstrip thumb width height.
3146
+ var slideshow_filmstrip_width = ( slideshow_filmstrip_block_width - (filmstrip_thumb_margin_hor * slideshow_thumbnails_count) ) / slideshow_thumbnails_count;
3147
+ var slideshow_filmstrip_height = Math.round(thumb_ratio * slideshow_filmstrip_width);
3148
+
3149
+ jQuery(filmstrip_container).css({
3150
+ 'width': parent_width,
3151
+ 'height': slideshow_filmstrip_height
3152
+ });
3153
+
3154
+ jQuery(filmstrip_fix_count).css({
3155
+ 'width': slideshow_filmstrip_block_width,
3156
+ 'height': slideshow_filmstrip_height
3157
+ });
3158
+
3159
+ jQuery(filmstrip_thumbnail).css({
3160
+ 'width': slideshow_filmstrip_width,
3161
+ 'height': slideshow_filmstrip_height
3162
+ });
3163
+
3164
+ jQuery.each(images, function ( key, image ) {
3165
+ var image_thumb_width = slideshow_filmstrip_width;
3166
+ var image_thumb_height = slideshow_filmstrip_height;
3167
+ if ( image['image_width'] != '' && image['image_height'] != '' ) {
3168
+ var scale = Math.max(slideshow_filmstrip_width / image['image_width'], slideshow_filmstrip_height / image['image_height']);
3169
+ image_thumb_width = image['image_width'] * scale;
3170
+ image_thumb_height = image['thumb_height'] * scale;
3171
+ }
3172
+ if ( image['thumb_width'] != '' && image['thumb_height'] != '' ) {
3173
+ image_thumb_width = image['thumb_width'];
3174
+ image_thumb_height = image['thumb_height'];
3175
+ }
3176
+ var scale = Math.max(slideshow_filmstrip_width / image_thumb_width, slideshow_filmstrip_height / image_thumb_height);
3177
+ var image_thumb_width = image_thumb_width * scale;
3178
+ var image_thumb_height = image_thumb_height * scale;
3179
+ //var image_thumb_left = (slideshow_filmstrip_width - image_thumb_width) / 2;
3180
+ //var image_thumb_top = (slideshow_filmstrip_height - image_thumb_height) / 2;
3181
+ var fix_count_thumbnail_img = '.bwg_slideshow_filmstrip_fix_count_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_img_' + bwg;
3182
+ jQuery(fix_count_thumbnail_img).css({
3183
+ 'width': slideshow_filmstrip_width,
3184
+ 'height': slideshow_filmstrip_height,
3185
+ 'margin-left': 0,
3186
+ 'margin-top': 0
3187
+ });
3188
+ });
3189
+
3190
+ jQuery(filmstrip_thumbnails).css({
3191
+ width: ( (slideshow_filmstrip_width * images.length) + (filmstrip_thumb_margin_hor * images.length) ),
3192
+ height: slideshow_filmstrip_height,
3193
+ });
3194
+
3195
+ jQuery(".bwg_slideshow_image_wrap_" + bwg).css({
3196
+ width: parent_width,
3197
+ height: (parent_width * params['image_height'] / params['image_width'])
3198
+ });
3199
+ var slideshow_image_css = {
3200
+ width: parent_width,
3201
+ height: ((parent_width * (params['image_height'] / params['image_width'])) - slideshow_filmstrip_height),
3202
+ };
3203
+ slideshow_image_css[filmstrip_position] = slideshow_filmstrip_height;
3204
+ jQuery(".bwg_slideshow_image_container_" + bwg).css(slideshow_image_css);
3205
+
3206
+ jQuery(".bwg_slideshow_image_" + bwg).css({
3207
+ cssText: "max-width:" + parent_width + "px !important; max-height:" + ( (parent_width * (params['image_height'] / params['image_width']) ) - slideshow_filmstrip_height) + "px !important;"
3208
+ });
3209
+ jQuery(".bwg_slideshow_embed_" + bwg).css({
3210
+ cssText: "width:" + parent_width + "px !important; height:" + ( (parent_width * (params['image_height'] / params['image_width']) ) - slideshow_filmstrip_height) + "px !important;"
3211
+ });
3212
+ if ( filmstrip_rl_btn_size > slideshow_filmstrip_height ) {
3213
+ filmstrip_rl_btn_size = slideshow_filmstrip_height;
3214
+ }
3215
+ // If we show a lot of pictures in "filmstrip", we reduce the font-size of bwg-icon-angle to the appropriate size of filmstrip.
3216
+ jQuery(filmstrip_container).find('.bwg-icon-angle-left').css({ 'font-size': filmstrip_rl_btn_size });
3217
+ jQuery(filmstrip_container).find('.bwg-icon-angle-right').css({ 'font-size': filmstrip_rl_btn_size });
3218
+ }
3219
+ else {
3220
+ var parent_height = (parent_width * params['image_height'] / params['image_width']);
3221
+ var thumb_ratio = params['image_width'] / params['image_height'];
3222
+ // set filmstrip block width height.
3223
+ var slideshow_filmstrip_block_height = parent_height - 40;
3224
+ var slideshow_filmstrip_block_width = Math.round(thumb_ratio * slideshow_filmstrip_block_height);
3225
+ // set filmstrip thumb width height.
3226
+ var slideshow_filmstrip_height = (slideshow_filmstrip_block_height - (filmstrip_thumb_margin_hor * slideshow_thumbnails_count)) / slideshow_thumbnails_count;
3227
+ var slideshow_filmstrip_width = Math.round(thumb_ratio * slideshow_filmstrip_height);
3228
+
3229
+ jQuery.each(images, function ( key, image ) {
3230
+ var image_thumb_width = slideshow_filmstrip_width;
3231
+ var image_thumb_height = slideshow_filmstrip_height;
3232
+ if ( image['image_width'] != '' && image['image_height'] != '' ) {
3233
+ var scale = Math.max(slideshow_filmstrip_width / image['image_width'], slideshow_filmstrip_height / image['image_height']);
3234
+ image_thumb_width = image['image_width'] * scale;
3235
+ image_thumb_height = image['thumb_height'] * scale;
3236
+ }
3237
+ if ( image['thumb_width'] != '' && image['thumb_height'] != '' ) {
3238
+ image_thumb_width = image['thumb_width'];
3239
+ image_thumb_height = image['thumb_height'];
3240
+ }
3241
+ var scale = Math.max(slideshow_filmstrip_width / image_thumb_width, slideshow_filmstrip_height / image_thumb_height);
3242
+ var image_thumb_width = image_thumb_width * scale;
3243
+ var image_thumb_height = image_thumb_height * scale;
3244
+ var image_thumb_left = (slideshow_filmstrip_width - image_thumb_width) / 2;
3245
+ var image_thumb_top = (slideshow_filmstrip_height - image_thumb_height) / 2;
3246
+ var fix_count_thumbnail_img = '.bwg_slideshow_filmstrip_fix_count_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_img_' + bwg;
3247
+ jQuery(fix_count_thumbnail_img).css({
3248
+ 'width': slideshow_filmstrip_width,
3249
+ 'height': slideshow_filmstrip_height,
3250
+ 'margin-left': 0,
3251
+ 'margin-top': 0
3252
+ });
3253
+ });
3254
+
3255
+ jQuery(filmstrip_container).css({
3256
+ width: slideshow_filmstrip_width,
3257
+ height: parent_height
3258
+ });
3259
+
3260
+ jQuery(filmstrip_fix_count).css({
3261
+ width: slideshow_filmstrip_width,
3262
+ height: slideshow_filmstrip_block_height
3263
+ });
3264
+
3265
+ jQuery(filmstrip_thumbnails).css({
3266
+ width: slideshow_filmstrip_width,
3267
+ height: ( (slideshow_filmstrip_height * images.length) + (filmstrip_thumb_margin_hor * images.length) )
3268
+ });
3269
+
3270
+ jQuery(filmstrip_thumbnail).css({
3271
+ width: slideshow_filmstrip_width,
3272
+ height: slideshow_filmstrip_height
3273
+ });
3274
+
3275
+ jQuery('.bwg_slideshow_image_wrap_' + bwg).css({
3276
+ width: parent_width,
3277
+ height: parent_height
3278
+ });
3279
+ var slideshow_image_css = {
3280
+ width: parent_width - slideshow_filmstrip_width,
3281
+ height: parent_height,
3282
+ };
3283
+ slideshow_image_css[filmstrip_position] = slideshow_filmstrip_width;
3284
+ jQuery(slideshow_image_container).css(slideshow_image_css);
3285
+
3286
+ jQuery(".bwg_slideshow_image_" + bwg).css({
3287
+ cssText: "max-width:" + (parent_width - slideshow_filmstrip_width) + "px !important; max-height:" + parent_height + "px !important;"
3288
+ });
3289
+
3290
+ jQuery(".bwg_slideshow_embed_" + bwg).css({
3291
+ cssText: "width:" + (parent_width - slideshow_filmstrip_width) + "px !important; height:" + parent_height + "px !important;"
3292
+ });
3293
+ if ( filmstrip_rl_btn_size > slideshow_filmstrip_width ) {
3294
+ filmstrip_rl_btn_size = slideshow_filmstrip_width;
3295
+ }
3296
+ // If we show a lot of pictures in "filmstrip", we reduce the font-size of bwg-icon-angle to the appropriate size of filmstrip.
3297
+ jQuery(filmstrip_container).find('.bwg-icon-angle-up').css({ 'font-size': filmstrip_rl_btn_size });
3298
+ jQuery(filmstrip_container).find('.bwg-icon-angle-down').css({ 'font-size': filmstrip_rl_btn_size });
3299
+ }
3300
+ if ( is_change_size ) {
3301
+ jQuery(filmstrip_container).find('.bwg-icon-angle-left').removeAttr('style');
3302
+ jQuery(filmstrip_container).find('.bwg-icon-angle-right').removeAttr('style');
3303
+ jQuery(filmstrip_container).find('.bwg-icon-angle-up').removeAttr('style');
3304
+ jQuery(filmstrip_container).find('.bwg-icon-angle-down').removeAttr('style');
3305
+ }
3306
+ }
3307
+
3308
+ /**
3309
+ * Resize slideshow filmstrip fix dimension.
3310
+ *
3311
+ * @param args
3312
+ */
3313
+ function bwg_resize_slideshow_filmstrip_fix_dimension( args ) {
3314
+ var bwg = args['bwg'];
3315
+ var parent_width = args['parent_width'];
3316
+ var params = args['params'];
3317
+ var filmstrip_direction = params['filmstrip_direction'];
3318
+
3319
+ jQuery(".bwg_slideshow_image_wrap_" + bwg).css({ width: parent_width });
3320
+ jQuery(".bwg_slideshow_image_wrap_" + bwg).css({ height: (parent_width * (params['image_height'] / params['image_width'])) });
3321
+ jQuery(".bwg_slideshow_image_container_" + bwg).css({ width: (parent_width - (params['filmstrip_direction'] == 'horizontal' ? 0 : params['slideshow_filmstrip_width'])) });
3322
+ jQuery(".bwg_slideshow_image_container_" + bwg).css({ height: ((parent_width) * params['image_height'] / params['image_width'] - (params['filmstrip_direction'] == 'horizontal' ? params['slideshow_filmstrip_height'] : 0)) });
3323
+ jQuery(".bwg_slideshow_image_" + bwg).css({
3324
+ cssText: "max-width: " + (parent_width - (bwg_params[bwg]['filmstrip_direction'] == 'horizontal' ? 0 : params['slideshow_filmstrip_width'])) + "px !important; max-height: " + (parent_width * (params['image_height'] / params['image_width']) - (params['filmstrip_direction'] == 'horizontal' ? params['slideshow_filmstrip_height'] : 0) - 1) + "px !important;"
3325
+ });
3326
+ jQuery(".bwg_slideshow_embed_" + bwg).css({
3327
+ cssText: "width: " + (parent_width - (params['filmstrip_direction'] == 'horizontal' ? 0 : params['slideshow_filmstrip_width'])) + "px !important; height: " + (parent_width * (params['image_height'] / params['image_width']) - (params['filmstrip_direction'] == 'horizontal' ? params['slideshow_filmstrip_height'] : 0) - 1) + "px !important;"
3328
+ });
3329
+
3330
+ bwg_resize_instagram_post(bwg);
3331
+ /* Set watermark container size.*/
3332
+ bwg_change_watermark_container(bwg);
3333
+
3334
+ if ( filmstrip_direction == 'horizontal' ) {
3335
+ jQuery(".bwg_slideshow_filmstrip_container_" + bwg).css({ width: (parent_width) });
3336
+ jQuery(".bwg_slideshow_filmstrip_" + bwg).css({ width: (parent_width - 40) });
3337
+ }
3338
+ else {
3339
+ jQuery(".bwg_slideshow_filmstrip_container_" + bwg).css({ height: (parent_width * params['image_height'] / params['image_width']) });
3340
+ jQuery(".bwg_slideshow_filmstrip_" + bwg).css({ height: (parent_width * params['image_height'] / params['image_width'] - 40) });
3341
+ }
3342
+ }
3343
+
3344
+ /**
3345
+ * Calculate slideshow filmstrip thumbnail width.
3346
+ *
3347
+ * @param args
3348
+ * @returns {number}
3349
+ */
3350
+ function bwg_calculate_slideshow_filmstrip_thumbnail_size( args ) {
3351
+ var bwg = args['bwg'];
3352
+ var params = args['params'];
3353
+ var size = params['slideshow_filmstrip_width'];
3354
+ if ( params['slideshow_filmstrip_type'] == 2 ) {
3355
+ var selector = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_fix_count_' + bwg + ' .bwg_slideshow_filmstrip_thumbnail_' + bwg;
3356
+ if ( params['left_or_top'] == 'left' ) {
3357
+ if ( params['width_or_height'] == 'width' ) {
3358
+ size = jQuery(selector).width();
3359
+ }
3360
+ else {
3361
+ size = jQuery(selector).height();
3362
+ }
3363
+ }
3364
+ else {
3365
+ if ( params['width_or_height'] == 'width' ) {
3366
+ size = jQuery(selector).width();
3367
+ }
3368
+ else {
3369
+ size = jQuery(selector).height();
3370
+ }
3371
+ }
3372
+ }
3373
+ return parseFloat(size);
3374
+ }
3375
+
3376
  function bwg_move_dots( bwg ) {
3377
  var image_left = jQuery(".bwg_slideshow_dots_active_" + bwg).position().left;
3378
  var image_right = jQuery(".bwg_slideshow_dots_active_" + bwg).position().left + jQuery(".bwg_slideshow_dots_active_" + bwg).outerWidth(true);
3434
  }
3435
 
3436
  function bwg_none(current_image_class, next_image_class, direction, bwg) {
 
3437
  var defix = ( typeof bwg !== 'undefined' && bwg !== '' ) ? '_'+bwg : '';
 
3438
  jQuery(current_image_class).css({'opacity' : 0, 'z-index': 1});
3439
  jQuery(next_image_class).css({'opacity' : 1, 'z-index' : 2});
3440
 
3446
  jQuery("#bwg_filmstrip_thumbnail_" + bwg_current_key + defix).removeClass("bwg_slideshow_thumb_deactive" + defix).addClass("bwg_slideshow_thumb_active" + defix);
3447
  jQuery(".bwg_slideshow_dots" + defix).removeClass("bwg_slideshow_dots_active" + defix).addClass("bwg_slideshow_dots_deactive" + defix);
3448
  jQuery("#bwg_dots_" + bwg_current_key + defix).removeClass("bwg_slideshow_dots_deactive" + defix).addClass("bwg_slideshow_dots_active" + defix);
3449
+ }
3450
+ else {
3451
  /* Lightbox */
3452
  jQuery(".bwg_image_info").show();
3453
  gallery_box_data['bwg_trans_in_progress'] = false;
3454
  jQuery(current_image_class).html('');
3455
  bwg_change_watermark_container();
3456
  }
 
 
3457
  }
3458
 
3459
  function bwg_iterator( bwg ) {
3595
  bwg_preload_images(key, bwg);
3596
  }
3597
  window["bwg_" + bwg_params[bwg]['slideshow_effect']](current_image_class, next_image_class, direction, bwg);
3598
+ // Slideshow filmstrip type is Fix dimension.
3599
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
3600
+ bwg_slideshow_filmstrip_fix_dimension( bwg );
3601
  }
3602
+ // Slideshow filmstrip type is Fix count.
3603
+ else if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3604
+ bwg_slideshow_filmstrip_fix_count( bwg );
3605
+ }
3606
+ // Slideshow filmstrip type is None.
3607
  else {
3608
  bwg_move_dots( bwg);
3609
  }
3667
  }
3668
 
3669
  function bwg_popup_resize_slidshow( bwg ) {
3670
+ var slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_" + bwg;
3671
+ // Slideshow filmstrip type is Fix count.
3672
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3673
+ slideshow_filmstrip_class_name = ".bwg_slideshow_filmstrip_fix_count_" + bwg;
3674
+ }
3675
  var parentt = jQuery("#bwg_container1_" + bwg).parent();
3676
  /* Trick to set parent's width to elementor tab. */
3677
+ if ( parentt.hasClass('elementor-tab-content') ) {
3678
  parentt.width(parentt.closest('.elementor-widget-wrap').width());
3679
  }
3680
  var parent_width = parentt.width();
3681
  var data = bwg_params[bwg]['data'];
3682
  if ( parent_width >= bwg_params[bwg]['image_width'] ) {
3683
+ jQuery(".bwg_slideshow_image_wrap_" + bwg).css({ width: bwg_params[bwg]['image_width'] });
3684
+ jQuery(".bwg_slideshow_image_wrap_" + bwg).css({ height: bwg_params[bwg]['image_height'] });
3685
+ jQuery(".bwg_slideshow_image_container_" + bwg).css({ width: (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width']) });
3686
+ jQuery(".bwg_slideshow_image_container_" + bwg).css({ height: (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height'] : bwg_params[bwg]['image_height'] });
3687
+ jQuery(".bwg_slideshow_image_" + bwg).css({
3688
+ cssText: "max-width:" + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal ') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width']) + "px !important; max-height: " + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? (bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height']) : bwg_params[bwg]['image_height'] + "px !important;"
3689
  });
3690
+ jQuery(".bwg_slideshow_embed_" + bwg).css({
3691
+ cssText: "width:" + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? bwg_params[bwg]['image_width'] : (bwg_params[bwg]['image_width'] - bwg_params[bwg]['slideshow_filmstrip_width']) + "px !important; height:" + (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? (bwg_params[bwg]['image_height'] - bwg_params[bwg]['slideshow_filmstrip_height']) : bwg_params[bwg]['image_height'] + "px !important;"
3692
  });
3693
+ bwg_resize_instagram_post(bwg);
3694
  /* Set watermark container size. */
3695
+ bwg_change_watermark_container(bwg);
3696
+ var filmstrip_container_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + bwg_params[bwg]['image_width'] : 'height: ' + bwg_params[bwg]['image_height'];
3697
  var filmstrip_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + (bwg_params[bwg]['image_width'] - 40) : 'height: ' + (bwg_params[bwg]['image_height'] - 40);
3698
  jQuery(".bwg_slideshow_filmstrip_container_" + bwg).css({ cssText: filmstrip_container_css });
3699
+ jQuery(slideshow_filmstrip_class_name).css({ cssText: filmstrip_css });
3700
+ jQuery(".bwg_slideshow_dots_container_" + bwg).css({ width: bwg_params[bwg]['image_width'] });
3701
+ jQuery("#bwg_slideshow_play_pause-ico_" + bwg).css({ fontSize: (bwg_params[bwg]['slideshow_play_pause_btn_size']) });
3702
+ if ( bwg_params[bwg]['watermark_type'] == 'image' ) {
3703
  jQuery(".bwg_slideshow_watermark_image_" + bwg).css({
3704
  maxWidth: bwg_params[bwg]['watermark_width'],
3705
  maxHeight: bwg_params[bwg]['watermark_height']
3706
  });
3707
  }
3708
+ if ( bwg_params[bwg]['watermark_type'] == 'text' ) {
3709
  jQuery(".bwg_slideshow_watermark_text_" + bwg + ", .bwg_slideshow_watermark_text_" + bwg + " :hover").css({
3710
  fontSize: (bwg_params[bwg]['watermark_font_size'])
3711
  });
3712
  }
3713
+ jQuery(".bwg_slideshow_title_text_" + bwg).css({ fontSize: (bwg_params[bwg]['slideshow_title_font_size'] * 2) });
3714
+ jQuery(".bwg_slideshow_description_text_" + bwg).css({ fontSize: (bwg_params[bwg]['slideshow_description_font_size'] * 2) });
3715
+ /* Slideshow filmstrip type is Fix count. */
3716
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3717
+ var filmstrip_direction = bwg_params[bwg]['filmstrip_direction'];
3718
+ var bwg_container2 = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg;
3719
+ jQuery(bwg_container2 ).removeAttr('style');
3720
+ var slideshow_filmstrip_container = bwg_container2 + ' .bwg_slideshow_filmstrip_container_' + bwg;
3721
+ var filmstrip_rl_btn_size = bwg_params[bwg].slideshow_filmstrip_rl_btn_size;
3722
+ var slideshow_filmstrip_size = jQuery('.bwg_slideshow_filmstrip_fix_count_' + bwg).width();
3723
+ if ( filmstrip_direction == 'horizontal' ) {
3724
+ slideshow_filmstrip_size = jQuery('.bwg_slideshow_filmstrip_fix_count_' + bwg).height();
3725
+ }
3726
+
3727
+ var slideshow_filmstrip_angle_display_value = (filmstrip_direction == 'horizontal') ? 'table-cell' : 'block';
3728
+ // Changes next / previous icon to active or passive.
3729
+ jQuery(slideshow_filmstrip_container).find('.bwg_slideshow_filmstrip_left_' + bwg).css({ display: 'none' });
3730
+ jQuery(slideshow_filmstrip_container).find('.bwg_slideshow_filmstrip_left_disabled_' + bwg).css({ display: slideshow_filmstrip_angle_display_value });
3731
+ jQuery(slideshow_filmstrip_container).find('.bwg_slideshow_filmstrip_right_' + bwg).css({ display: slideshow_filmstrip_angle_display_value });
3732
+ jQuery(slideshow_filmstrip_container).find('.bwg_slideshow_filmstrip_right_disabled_' + bwg).css({ display: 'none' });
3733
+ // If we show a lot of pictures in "filmstrip", we reduce the font-size of bwg-icon-angle to the appropriate size of filmstrip.
3734
+ if ( filmstrip_rl_btn_size > slideshow_filmstrip_size ) {
3735
+ filmstrip_rl_btn_size = slideshow_filmstrip_size;
3736
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-left').css({ 'font-size': filmstrip_rl_btn_size });
3737
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-right').css({ 'font-size': filmstrip_rl_btn_size });
3738
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-up').css({ 'font-size': filmstrip_rl_btn_size });
3739
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-down').css({ 'font-size': filmstrip_rl_btn_size });
3740
+ }
3741
+ else {
3742
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-left').removeAttr('style');
3743
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-right').removeAttr('style');
3744
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-up').removeAttr('style');
3745
+ jQuery(slideshow_filmstrip_container).find('.bwg-icon-angle-down').removeAttr('style');
3746
+ }
3747
+ var slideshow_filmstrip_thumbnails = bwg_container2 + ' .bwg_slideshow_filmstrip_thumbnails_' + bwg;
3748
+ jQuery(slideshow_filmstrip_thumbnails).removeAttr('style');
3749
+
3750
+ var filmstrip_thumbnail = slideshow_filmstrip_thumbnails + ' .bwg_slideshow_filmstrip_thumbnail_' + bwg;
3751
+ jQuery(filmstrip_thumbnail).each(function(i, val) {
3752
+ jQuery(val).attr('style', jQuery(val).attr('data-style'));
3753
+ jQuery(val).find('img').attr('style', jQuery(val).attr('data-style'));
3754
+ });
3755
+ var slideshow_image_container = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_image_container_' + bwg;
3756
+
3757
+ var filmstrip_position = jQuery(slideshow_image_container).data('filmstrip-position');
3758
+ var filmstrip_size = jQuery(slideshow_image_container).data('filmstrip-size');
3759
+ jQuery(slideshow_image_container).css({
3760
+ filmstrip_position: filmstrip_size
3761
+ });
3762
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
3763
+ if ( window.bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] ) {
3764
+ window.bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] = 0;
3765
+ }
3766
+ }
3767
  }
3768
  else {
3769
+ /* Slideshow filmstrip type is Fix dimension. */
3770
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 1 ) {
3771
+ bwg_resize_slideshow_filmstrip_fix_dimension({ 'bwg': bwg, 'params': bwg_params[bwg], 'parent_width': parent_width - 40 });
 
 
 
 
 
 
 
 
 
 
 
 
 
3772
  }
3773
+ /* Slideshow filmstrip type is Fix count. */
3774
+ if ( bwg_params[bwg]['slideshow_filmstrip_type'] == 2 ) {
3775
+ bwg_resize_slideshow_filmstrip_fix_count({ 'bwg': bwg, 'params': bwg_params[bwg], 'parent_width': parent_width });
3776
  }
3777
+
3778
+ jQuery(".bwg_slideshow_dots_container_" + bwg).css({ width: parent_width });
3779
+ jQuery("#bwg_slideshow_play_pause-ico_" + bwg).css({ fontSize: (parent_width * (bwg_params[bwg]['slideshow_play_pause_btn_size'] / bwg_params[bwg]['image_width']) ) });
3780
+ jQuery(".bwg_slideshow_watermark_image_" + bwg).css({
3781
+ maxWidth: ( parent_width * (bwg_params[bwg]['watermark_width'] / bwg_params[bwg]['image_width']) ),
3782
+ maxHeight: ( parent_width * (bwg_params[bwg]['watermark_height'] / bwg_params[bwg]['image_width']) )
3783
+ });
3784
+ 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']) ) });
3785
+ jQuery(".bwg_slideshow_title_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_title_font_size'] / bwg_params[bwg]['image_width']) });
3786
+ jQuery(".bwg_slideshow_description_text_" + bwg).css({ fontSize: ((parent_width) * 2 * bwg_params[bwg]['slideshow_description_font_size'] / bwg_params[bwg]['image_width']) });
3787
+ jQuery(".bwg_slideshow_image_" + bwg).css({ 'display': 'inline-block' });
3788
  }
3789
+ if ( data[parseInt(jQuery("#bwg_current_image_key_" + bwg).val())]["is_embed_video"] ) {
3790
+ jQuery("#bwg_slideshow_play_pause_" + bwg).css({ display: 'none' });
3791
  }
3792
  else {
3793
+ jQuery("#bwg_slideshow_play_pause_" + bwg).css({ display: '' });
3794
  }
3795
  }
3796
 
3952
  container.css( 'webkitTouchCallout', 'none' );
3953
  }
3954
 
3955
+ /**
3956
+ * Resizing ratio.
3957
+ *
3958
+ * @param srcWidth
3959
+ * @param srcHeight
3960
+ * @param maxWidth
3961
+ * @param maxHeight
3962
+ * @returns {{width: number, height: number}}
3963
+ */
3964
+ function bwg_resizing_ratio( srcWidth, srcHeight, maxWidth, maxHeight ) {
3965
+ var ratio = [maxWidth / srcWidth, maxHeight / srcHeight];
3966
  ratio = Math.min(ratio[0], ratio[1]);
3967
+ return { width: srcWidth * ratio, height: srcHeight * ratio };
3968
+ }
3969
+
3970
+ /**
3971
+ * Slideshow filmstrip next.
3972
+ *
3973
+ * @param args
3974
+ */
3975
+ function bwg_slideshow_filmstrip_next( args ) {
3976
+ var bwg = args['bwg'];
3977
+ var params = args['params'];
3978
+ var slideshow_filmstrip_class_name = args['slideshow_filmstrip_class_name'];
3979
+ var slideshow_filmstrip_thumbnail_size = bwg_calculate_slideshow_filmstrip_thumbnail_size( {
3980
+ 'bwg': bwg,
3981
+ 'params': params
3982
+ });
3983
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
3984
+
3985
+ var slideshow_filmstrip_left = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_left_' + bwg;
3986
+ var slideshow_filmstrip_left_disabled ='#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_left_disabled_' + bwg;
3987
+ var slideshow_filmstrip_right = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_right_' + bwg;
3988
+ var slideshow_filmstrip_right_disabled ='#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_right_disabled_' + bwg;
3989
+ var slideshow_filmstrip_angle_display_value = (params['filmstrip_direction'] == 'horizontal') ? 'table-cell' : 'block';
3990
+ if ( params['left_or_top'] == 'left' ) { /* For left, width */
3991
+ if ( params['width_or_height'] == 'width' ) {
3992
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) ) {
3993
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
3994
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
3995
+
3996
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width() - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) ) {
3997
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) }, 500, 'linear');
3998
+ }
3999
+ else {
4000
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) }, 500, 'linear');
4001
+ }
4002
+ }
4003
+ /* Disable right arrow.*/
4004
+ window.setTimeout(function () {
4005
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left) == -parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) ) {
4006
+ jQuery(slideshow_filmstrip_right).css({ display: 'none' });
4007
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4008
+ }
4009
+ else {
4010
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4011
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4012
+ }
4013
+ }, 510);
4014
+ }
4015
+ else { /* For left, height */
4016
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) ) {
4017
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
4018
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
4019
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height() - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) ) {
4020
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) }, 500, 'linear');
4021
+ }
4022
+ else {
4023
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) }, 500, 'linear');
4024
+ }
4025
+ }
4026
+ /* Disable right arrow.*/
4027
+ window.setTimeout(function () {
4028
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left) == -parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) ) {
4029
+ jQuery(slideshow_filmstrip_right).css({ display: 'none' });
4030
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4031
+ }
4032
+ else {
4033
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4034
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4035
+ }
4036
+ }, 510);
4037
+ }
4038
+ }
4039
+ else {
4040
+ if ( params['width_or_height'] == 'width' ) { /* For top, width */
4041
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) ) {
4042
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
4043
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
4044
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width() - parseInt( params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size ) ) {
4045
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) }, 500, 'linear');
4046
+ }
4047
+ else {
4048
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top - parseInt( params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size ) }, 500, 'linear');
4049
+ }
4050
+ }
4051
+ /* Disable right arrow.*/
4052
+ window.setTimeout(function () {
4053
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top) == -parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).width() - jQuery(slideshow_filmstrip_class_name).width()) ) {
4054
+ jQuery(slideshow_filmstrip_right).css({ display: 'none' });
4055
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4056
+ }
4057
+ else {
4058
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4059
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4060
+ }
4061
+ }, 510);
4062
+ }
4063
+ else { /* For top, height */
4064
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top >= -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) ) {
4065
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
4066
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
4067
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height() - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) ) {
4068
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: -(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) }, 500, 'linear');
4069
+ }
4070
+ else {
4071
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top - ( parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size )) }, 500, 'linear');
4072
+ }
4073
+ }
4074
+ /* Disable right arrow.*/
4075
+ window.setTimeout(function () {
4076
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top) == -parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).height() - jQuery(slideshow_filmstrip_class_name).height()) ) {
4077
+ jQuery(slideshow_filmstrip_right).css({ display: 'none' });
4078
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4079
+ }
4080
+ else {
4081
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4082
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4083
+ }
4084
+ }, 510);
4085
+ }
4086
+ }
4087
+ bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] = bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] + 1;
4088
+ }
4089
+
4090
+ /**
4091
+ * Slideshow filmstrip prev.
4092
+ *
4093
+ * @param args
4094
+ */
4095
+ function bwg_slideshow_filmstrip_prev( args ) {
4096
+ var bwg = args['bwg'];
4097
+ var params = args['params'];
4098
+ var slideshow_filmstrip_thumbnail_size = bwg_calculate_slideshow_filmstrip_thumbnail_size( {
4099
+ 'bwg': bwg,
4100
+ 'params': params
4101
+ });
4102
+ var filmstrip_thumbnail_key = 'bwg_slideshow_filmstrip_thumbnail_' + bwg;
4103
+ var slideshow_filmstrip_left = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_left_' + bwg;
4104
+ var slideshow_filmstrip_left_disabled ='#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_left_disabled_' + bwg;
4105
+ var slideshow_filmstrip_right = '#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_right_' + bwg;
4106
+ var slideshow_filmstrip_right_disabled ='#bwg_container1_' + bwg + ' #bwg_container2_' + bwg + ' .bwg_slideshow_filmstrip_right_disabled_' + bwg;
4107
+ var slideshow_filmstrip_angle_display_value = (params['filmstrip_direction'] == 'horizontal') ? 'table-cell' : 'block';
4108
+
4109
+ if ( params['left_or_top'] == 'left' ) {
4110
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left < 0 ) {
4111
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4112
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4113
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left > -(params['filmstrip_thumb_margin_hor'] + slideshow_filmstrip_thumbnail_size) ) {
4114
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: 0 }, 500, 'linear');
4115
+ }
4116
+ else {
4117
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ left: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left + parseInt( params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size ) }, 500, 'linear');
4118
+ }
4119
+ }
4120
+ /* Disable left arrow.*/
4121
+ window.setTimeout(function () {
4122
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().left) == 0 ) {
4123
+ jQuery(slideshow_filmstrip_left).css({ display: 'none' });
4124
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4125
+ }
4126
+ else {
4127
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
4128
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
4129
+ }
4130
+ }, 510);
4131
+ }
4132
+ else {
4133
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top < 0 ) {
4134
+ jQuery(slideshow_filmstrip_right).css({ display: slideshow_filmstrip_angle_display_value });
4135
+ jQuery(slideshow_filmstrip_right_disabled).css({ display: 'none' });
4136
+ if ( jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top > -(params['filmstrip_thumb_margin_hor'] + slideshow_filmstrip_thumbnail_size) ) {
4137
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: 0 }, 500, 'linear');
4138
+ }
4139
+ else {
4140
+ jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).animate({ top: (jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top + parseInt(params['filmstrip_thumb_margin_hor']) + slideshow_filmstrip_thumbnail_size) }, 500, 'linear');
4141
+ }
4142
+ }
4143
+ /* Disable top arrow.*/
4144
+ window.setTimeout(function () {
4145
+ if ( parseInt(jQuery(".bwg_slideshow_filmstrip_thumbnails_" + bwg).position().top) == 0 ) {
4146
+ jQuery(slideshow_filmstrip_left).css({ display: 'none' });
4147
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: slideshow_filmstrip_angle_display_value });
4148
+ }
4149
+ else {
4150
+ jQuery(slideshow_filmstrip_left).css({ display: slideshow_filmstrip_angle_display_value });
4151
+ jQuery(slideshow_filmstrip_left_disabled).css({ display: 'none' });
4152
+ }
4153
+ }, 510);
4154
+ }
4155
+ bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] = bwg_slideshow_filmstrip_thumb[filmstrip_thumbnail_key]['next_prev_index'] - 1;
4156
  }
js/bwg_gallery_box.js CHANGED
@@ -405,13 +405,15 @@ function gallery_box_ready() {
405
  window.clearInterval(bwg_playInterval);
406
  jQuery(".bwg_play_pause").attr("title", bwg_objectsL10n.bwg_play);
407
  jQuery(".bwg_play_pause").attr("class", "bwg-icon-play bwg_ctrl_btn bwg_play_pause");
 
408
  var zoomer = e.target;
409
- var clientHeight = document.querySelector("span.bwg_popup_image_spun2").clientHeight;
410
- var clientWidth = document.querySelector("span.bwg_popup_image_spun2").clientWidth;
411
- var imgHeight = document.querySelector("figure.zoom.bwg_popup_image").clientHeight;
412
- var imgWidth = document.querySelector("figure.zoom.bwg_popup_image").clientWidth;
413
- e.offsetX ? offsetX = e.offsetX : offsetX = e.targetTouches ? e.targetTouches[0].pageX * (imgWidth / clientWidth) : 0;
414
- e.offsetY ? offsetY = e.offsetY : offsetY = e.targetTouches ? e.targetTouches[0].pageY * (imgHeight / clientHeight) : 0;
 
415
  x = offsetX / zoomer.offsetWidth * 100;
416
  y = offsetY / zoomer.offsetHeight * 100;
417
  zoomer.parentNode.style.backgroundPosition = x + '% ' + y + '%';
@@ -1362,7 +1364,7 @@ function bwg_change_image_lightbox(current_key, key, data, from_effect) {
1362
  jQuery("#bwg_download").removeClass("bwg-hidden");
1363
  var link = "'" + (gallery_box_data['site_url']+jQuery('<span />').html(decodeURIComponent(data[key]["image_url"])).text()).split('?bwg')[0] + "'";
1364
  if (gallery_box_data['popup_enable_zoom']) {
1365
- innhtml += '<figure style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px; background-image: url(' + link + ')" class="bwg_popup_image bwg_popup_watermark" alt="' + data[key]["alt"] + '" />'
1366
  }
1367
  innhtml += '<img style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px;" class="bwg_popup_image bwg_popup_watermark" src="' + gallery_box_data['site_url'] + jQuery('<span />').html(decodeURIComponent(data[key]["image_url"])).text() + '" alt="' + data[key]["alt"] + '" />';
1368
  }
@@ -1506,8 +1508,9 @@ function bwg_change_image_lightbox(current_key, key, data, from_effect) {
1506
  }
1507
  }
1508
  jQuery(".bwg_comments .mCSB_scrollTools").hide();
1509
- if (gallery_box_data['enable_image_filmstrip']) {
1510
- bwg_move_filmstrip();
 
1511
  }
1512
  bwg_resize_instagram_post();
1513
  }
405
  window.clearInterval(bwg_playInterval);
406
  jQuery(".bwg_play_pause").attr("title", bwg_objectsL10n.bwg_play);
407
  jQuery(".bwg_play_pause").attr("class", "bwg-icon-play bwg_ctrl_btn bwg_play_pause");
408
+ var offsetX, offsetY, touchOffsetX, touchOffsetY;
409
  var zoomer = e.target;
410
+ var rect = zoomer.getBoundingClientRect();
411
+ if ( e.targetTouches ) {
412
+ touchOffsetX = e.targetTouches[0].clientX - rect.left;
413
+ touchOffsetY = e.targetTouches[0].clientY - rect.top;
414
+ }
415
+ e.offsetX ? offsetX = e.offsetX : offsetX = e.targetTouches ? touchOffsetX : zoomer.offsetHeight;
416
+ e.offsetY ? offsetY = e.offsetY : offsetY = e.targetTouches ? touchOffsetY : zoomer.offsetWidth;
417
  x = offsetX / zoomer.offsetWidth * 100;
418
  y = offsetY / zoomer.offsetHeight * 100;
419
  zoomer.parentNode.style.backgroundPosition = x + '% ' + y + '%';
1364
  jQuery("#bwg_download").removeClass("bwg-hidden");
1365
  var link = "'" + (gallery_box_data['site_url']+jQuery('<span />').html(decodeURIComponent(data[key]["image_url"])).text()).split('?bwg')[0] + "'";
1366
  if (gallery_box_data['popup_enable_zoom']) {
1367
+ innhtml += '<figure style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px; background-image: url(' + link + '); background-repeat: no-repeat" class="bwg_popup_image bwg_popup_watermark" alt="' + data[key]["alt"] + '" />'
1368
  }
1369
  innhtml += '<img style="max-height: ' + cur_height + 'px; max-width: ' + cur_width + 'px;" class="bwg_popup_image bwg_popup_watermark" src="' + gallery_box_data['site_url'] + jQuery('<span />').html(decodeURIComponent(data[key]["image_url"])).text() + '" alt="' + data[key]["alt"] + '" />';
1370
  }
1508
  }
1509
  }
1510
  jQuery(".bwg_comments .mCSB_scrollTools").hide();
1511
+ // Slideshow filmstrip type is Fix dimension.
1512
+ if ( gallery_box_data['enable_image_filmstrip'] ) {
1513
+ bwg_slideshow_filmstrip_fix_dimension();
1514
  }
1515
  bwg_resize_instagram_post();
1516
  }
js/bwg_shortcode.js CHANGED
@@ -225,6 +225,7 @@ function bwg_shortcode_hide_show_params() {
225
  jQuery("#tr_album_masonry_search_box_placeholder").hide();
226
  jQuery("#tr_album_extended_search_box_width").hide();
227
  jQuery("#tr_album_extended_search_box_placeholder").hide();
 
228
  jQuery("#tr_slideshow_filmstrip_height").hide();
229
  jQuery("#tr_slideshow_title_position").hide();
230
  jQuery("#tr_slideshow_full_width_title").hide();
@@ -275,9 +276,12 @@ function bwg_shortcode_hide_show_params() {
275
  jQuery("#tr_album_extended_search_box_width").show();
276
  jQuery("#tr_album_extended_search_box_placeholder").show();
277
  }
278
- if (jQuery('#slideshow_enable_filmstrip_yes').is(':checked')) {
279
  jQuery("#tr_slideshow_filmstrip_height").show();
280
  }
 
 
 
281
  if (jQuery('#slideshow_enable_title_yes').is(':checked')) {
282
  jQuery("#tr_slideshow_title_position").show();
283
  jQuery("#tr_slideshow_full_width_title").show();
225
  jQuery("#tr_album_masonry_search_box_placeholder").hide();
226
  jQuery("#tr_album_extended_search_box_width").hide();
227
  jQuery("#tr_album_extended_search_box_placeholder").hide();
228
+ jQuery("#tr_slideshow_thumbnails_count").hide();
229
  jQuery("#tr_slideshow_filmstrip_height").hide();
230
  jQuery("#tr_slideshow_title_position").hide();
231
  jQuery("#tr_slideshow_full_width_title").hide();
276
  jQuery("#tr_album_extended_search_box_width").show();
277
  jQuery("#tr_album_extended_search_box_placeholder").show();
278
  }
279
+ if (jQuery('#slideshow_filmstrip_fix_dimension').is(':checked')) {
280
  jQuery("#tr_slideshow_filmstrip_height").show();
281
  }
282
+ if (jQuery('#slideshow_filmstrip_fix_count').is(':checked')) {
283
+ jQuery("#tr_slideshow_thumbnails_count").show();
284
+ }
285
  if (jQuery('#slideshow_enable_title_yes').is(':checked')) {
286
  jQuery("#tr_slideshow_title_position").show();
287
  jQuery("#tr_slideshow_full_width_title").show();
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){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 t=e.target,i=document.querySelector("span.bwg_popup_image_spun2").clientHeight,a=document.querySelector("span.bwg_popup_image_spun2").clientWidth,r=document.querySelector("figure.zoom.bwg_popup_image").clientHeight,_=document.querySelector("figure.zoom.bwg_popup_image").clientWidth;e.offsetX?offsetX=e.offsetX:offsetX=e.targetTouches?e.targetTouches[0].pageX*(_/a):0,e.offsetY?offsetY=e.offsetY:offsetY=e.targetTouches?e.targetTouches[0].pageY*(r/i):0,x=offsetX/t.offsetWidth*100,y=offsetY/t.offsetHeight*100,t.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"),p=jQuery(".bwg_image_container").width()-("vertical"==gallery_box_data.filmstrip_direction?gallery_box_data.image_filmstrip_width:0),c=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,p,c);m.attr("data-width",p),m.attr("data-height",c);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":p,"data-height":c,"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+')" 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_move_filmstrip(),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_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=[],bwg_container_loaded(i);var e=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))%e.length:e.length-1,e,"",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)%e.length,e,"",i),!1});var t=/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),"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 a=/Firefox/i.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel";if(jQuery(".bwg_slideshow_filmstrip_"+i).bind(a,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}),jQuery(".bwg_slideshow_filmstrip_right_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):"width"==bwg_params[i].width_or_height?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width()-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).width()-jQuery(".bwg_slideshow_filmstrip_"+i).width())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>=-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&(jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height()-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)))?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top-(parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width))},500,"linear")),window.setTimeout(function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top==-(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).height()-jQuery(".bwg_slideshow_filmstrip_"+i).height())&&jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:.3})},500))}),jQuery(".bwg_slideshow_filmstrip_left_"+i).on(t,function(){jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).stop(!0,!1),"left"==bwg_params[i].left_or_top?(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({left:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().left&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500)):(jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top<0&&(jQuery(".bwg_slideshow_filmstrip_right_"+i).css({opacity:1}),jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top>-(bwg_params[i].filmstrip_thumb_margin_hor+bwg_params[i].slideshow_filmstrip_width)?jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:0},500,"linear"):jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).animate({top:jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top+parseInt(bwg_params[i].filmstrip_thumb_margin_hor)+parseInt(bwg_params[i].slideshow_filmstrip_width)},500,"linear")),window.setTimeout(function(){0==jQuery(".bwg_slideshow_filmstrip_thumbnails_"+i).position().top&&jQuery(".bwg_slideshow_filmstrip_left_"+i).css({opacity:.3})},500))}),"width"==bwg_params[i].width_or_height?bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).width(),i):bwg_set_filmstrip_pos(jQuery(".bwg_slideshow_filmstrip_"+i).height(),i),jQuery("#bwg_slideshow_play_pause_"+i).off(t).on(t,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 r=jQuery("#instagram-embed-"+i),_=jQuery(".bwg_embed_frame_"+i).data("height");r.hide(),instgrm.Embeds.process(),r.css({"max-height":_+"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"),u=(o=_.data("max-count"),parseInt(n/g)+("0"==_.data("resizable-thumbnails")?0:1));o<u&&(u=o);var d=_.find(".bwg-item").length;d<u&&(u=d);var h,m,p=100/u,c=[];for(i=0;i<u;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:p+"%",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){m=parseInt(t.data("width"))/parseInt(t.data("height")),h=(t.width()-b/u)/m;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(h+i+2*w))}c[e]+=jQuery(this)[0].getBoundingClientRect().height});var y=Math.max.apply(Math,c);for(i=0;i<u;i++)c[i]<y&&_.append(jQuery('<div class="bwg-item bwg-empty-item"></div>').css({width:p+"%",order:i+1,height:y-c[i]}));_.outerWidth(u*(g+2*w)),_.height(y)}if(""!=a.html()){r.outerWidth(u*(g+2*w)),"0"!=y?(r.css("opacity","1"),r.height(y)):r.css("opacity","0"),r.empty();var f=a.html();r.append(f),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=_;(c=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=c.get(e).naturalWidth,i=c.get(e).naturalHeight),t=t*s/i,c.eq(e).height(s),c.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;c.each(function(e){row_cum_width2=b+c.eq(e).width()+2*r,row_cum_width2-o<0?(b=row_cum_width2,g[e]=n,w[n]++):e!==c.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!==c.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,c.each(function(e){g[e]==h&&(b+=c.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=[],p=[];m[0]=0,p[0]=0;for(h=1;h<=n;h++)m[h]=m[0],p[h]=p[h-1]+d[h-1];c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[g[e]]),c.eq(e).height(i*u[g[e]]),c.eq(e).parent().css({top:p[g[e]],left:m[g[e]]}),m[g[e]]+=t*u[g[e]]+2*r,O[g[e]]=e}),jQuery("#"+i).height(p[n]+d[n]-p[0])}else{var c,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;(c=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=c.get(e).naturalWidth,i=c.get(e).naturalHeight),c.eq(e).height(i*f/t),c.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)),c.length),v=[];v[0]=0;for(var x=[],k=[],z=0;z<Q;z++)k[z]=0,x[z]=0;c.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),c.eq(e).parent().css({top:H,left:T}),k[t]+=c.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,c.each(function(e){v[e]==z&&(I[z]+=c.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,c.each(function(e){var t=c.eq(e).width(),i=c.eq(e).height();c.eq(e).width(t*u[v[e]]),c.eq(e).height(i*u[v[e]]),c.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),bwg_search_tag_init(i);var e=i.find(".cur_gal_id").val(),t=i.find(".current_view").val(),a=i.find(".bwg_tags_container_"+t+" .bwg_tag_button_view_container"),r=i.find("#bwg_tag_id_"+e),_=parseInt(2*a.find(".bwg_tags_filter_buttons").outerHeight(!0));a.length&&(a.find(".bwg_tags_filter_buttons").off("click").on("click",function(){if(!jQuery(this).hasClass("active")){var e=jQuery(this).position().top;_<e&&i.find(".show_bottom_tag").val("1"),""==r.val()?r.val(jQuery(this).val()):r.val(r.val()+","+jQuery(this).val()),bwg_filter_by_tag(this)}return!1}),a.find(".bwg_all_tags").off("click").on("click",function(){return jQuery(this).hasClass("active")||(r.val(""),bwg_filter_by_tag(this)),!1}),""!=r.val()&&a.find(".bwg_all_tags").removeClass("active"),r.val().split(",").forEach(function(t){a.find(".bwg_tags_filter_buttons").each(function(){if(jQuery(this).val()==t){var e=jQuery(this).position().top;_<e&&i.find(".show_bottom_tag").val("1")}})}),bwg_tags_button_section_visibility());var s=i.find(".bwg_order");s.length&&s.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 o=window.location.hash.substring(1);if(o&&"-1"!=o.indexOf("bwg")){bwg_hash_array=o.replace("bwg","").split("/");var l=jQuery(".bwg_container");l&&bwg_gallery_box(bwg_hash_array[1],l,!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(),p={},c=jQuery("#bwg_album_breadcrumb_"+i).val();if(c&&!0!==n){var y=JSON.parse(c);if("back"==r){y.splice(-1,1);var f=y.slice(-1)[0];r=f.id,h=f.page,p["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);p["bwg_album_breadcrumb_"+i]=JSON.stringify(y)}if(p["bwg-preview-type"]=jQuery("#"+t).data("gallery-type"),p.gallery_type=jQuery("#"+t).data("gallery-type"),p.gallery_id=jQuery("#"+t).data("gallery-id"),p.tag=jQuery("#"+t).data("tag"),p.album_id=jQuery("#"+t).data("album-id"),p.theme_id=jQuery("#"+t).data("theme-id"),p.shortcode_id=jQuery("#"+t).data("shortcode-id"),p.bwg=i,p.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),p["page_number_"+i]=h,p["bwg_load_more_"+i]=jQuery("#bwg_load_more_"+i).val(),p["album_gallery_id_"+i]=r,p["type_"+i]=_,p["title_"+i]=o,p["description_"+i]=g,p["sortImagesByValue_"+i]=l,p["bwg_random_seed_"+i]=jQuery("#bwg_random_seed_"+i).val(),0<jQuery("#bwg_search_input_"+i).length&&(p["bwg_search_"+i]=jQuery("#bwg_search_input_"+i).val()),void 0!==p["bwg_album_breadcrumb_"+i]){var j=JSON.parse(p["bwg_album_breadcrumb_"+i]);jQuery.each(j,function(e,t){p["bwg_search_"+i]="",r==t.id&&(p["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),p["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:p,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(p["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"),p=(jQuery(o).find("iframe").css("opacity",0),jQuery('<span style="display: block;" />').addClass("bwg_grid"+u));jQuery(o).prepend(p);var c,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),B=Math.floor(T/t),D=O-e*H,L=Math.ceil(D/e),A=T-t*B,W=Math.ceil(A/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 q=0,U=Math.floor((jQuery(".bwg_slide_bg"+u).height()-h.height())/2),V=H;if(0<D){var J=L<=D?L:D;V+=J,D-=J}for(var G=0;G<t;G++){var Y=B,$=A;0<$&&(Y+=J=W<=$?W:A,$-=J),p.append((c=V,y=Y,f=q,j=U,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:c,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"}))),q+=Y,U-=Y}F-=V,R+=V}var X=p.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),p.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()}p.show(),h.css("opacity",0),m.css("opacity",0),p.children().first().addClass("rs-top-left"),p.children().last().addClass("rs-bottom-right"),p.children().eq(t-1).addClass("rs-bottom-left"),p.children().eq(-t).addClass("rs-top-right"),setTimeout(function(){p.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?"_"+e:"",i=void 0!==e&&""!==e?"_slideshow":"";if("width"==(void 0!==e&&""!==e?bwg_params[e].width_or_heigh:gallery_box_data.width_or_height))var a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).width(),r=jQuery(".bwg"+i+"_filmstrip"+t).width();else a=jQuery(".bwg"+i+"_filmstrip_thumbnails"+t).height(),r=jQuery(".bwg"+i+"_filmstrip"+t).height();a<r?(jQuery(".bwg"+i+"_filmstrip_left"+t).hide(),jQuery(".bwg"+i+"_filmstrip_right"+t).hide()):(jQuery(".bwg"+i+"_filmstrip_left"+t).show(),jQuery(".bwg"+i+"_filmstrip_right"+t).show())}function bwg_move_filmstrip(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"+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_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(),p=i[t].image_width,c=i[t].image_height,y=bwg_resizing_ratio(p,c,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":p,"data-instagram-height":c,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),0<bwg_params[r].enable_slideshow_filmstrip?bwg_move_filmstrip(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=jQuery("#bwg_container1_"+e).parent();t.hasClass("elementor-tab-content")&&t.width(t.closest(".elementor-widget-wrap").width());var i=t.width(),a=bwg_params[e].data;if(i>=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 r="horizontal"==bwg_params[e].filmstrip_direction?"width: "+bwg_params[e].image_width:"height: "+bwg_params[e].image_height,_="horizontal"==bwg_params[e].filmstrip_direction?"width: "+(bwg_params[e].image_width-40):"height: "+(bwg_params[e].image_height-40);jQuery(".bwg_slideshow_filmstrip_container_"+e).css({cssText:r}),jQuery(".bwg_slideshow_filmstrip_"+e).css({cssText:_}),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})}else jQuery(".bwg_slideshow_image_wrap_"+e).css({width:i}),jQuery(".bwg_slideshow_image_wrap_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_container_"+e).css({width:i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width)}),jQuery(".bwg_slideshow_image_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)}),jQuery(".bwg_slideshow_image_"+e).css({cssText:"max-width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; max-height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),jQuery(".bwg_slideshow_embed_"+e).css({cssText:"width: "+(i-("horizontal"==bwg_params[e].filmstrip_direction?0:bwg_params[e].slideshow_filmstrip_width))+"px !important; height: "+(i*(bwg_params[e].image_height/bwg_params[e].image_width)-("horizontal"==bwg_params[e].filmstrip_direction?bwg_params[e].slideshow_filmstrip_height:0)-1)+"px !important;"}),bwg_resize_instagram_post(e),bwg_change_watermark_container(e),"horizontal"==bwg_params[e].filmstrip_direction?(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({width:i}),jQuery(".bwg_slideshow_filmstrip_"+e).css({width:i-40})):(jQuery(".bwg_slideshow_filmstrip_container_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_filmstrip_"+e).css({height:i*bwg_params[e].image_height/bwg_params[e].image_width-40})),jQuery(".bwg_slideshow_dots_container_"+e).css({width:i}),jQuery("#bwg_slideshow_play_pause-ico_"+e).css({fontSize:i*bwg_params[e].slideshow_play_pause_btn_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_image_"+e).css({maxWidth:i*bwg_params[e].watermark_width/bwg_params[e].image_width,maxHeight:i*bwg_params[e].watermark_height/bwg_params[e].image_width}),jQuery(".bwg_slideshow_watermark_text_"+e+", .bwg_slideshow_watermark_text_"+e+":hover").css({fontSize:i*bwg_params[e].watermark_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_title_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_title_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_description_text_"+e).css({fontSize:2*i*bwg_params[e].slideshow_description_font_size/bwg_params[e].image_width}),jQuery(".bwg_slideshow_image_"+e).css({display:"inline-block"});a[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}}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?(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),bwg_container_loaded(i)}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)});
languages/bwg-ru_RU.mo CHANGED
Binary file
languages/bwg-ru_RU.po CHANGED
@@ -1,6478 +1,6104 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2019-11-06 12:33+0400\n"
5
- "PO-Revision-Date: 2019-11-06 12:33+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: addons/addons.php:6
20
- msgid "Photo Gallery Ecommerce"
21
- msgstr "Photo Gallery Ecommerce"
22
 
23
- #: addons/addons.php:8
 
 
 
 
24
  msgid ""
25
- "Using Photo Gallery Ecommerce you can sell images included in galleries "
26
- "either as digital downloads or products/prints via Paypal or Stripe."
27
  msgstr ""
28
- "Используя Photo Gallery Ecommerce, вы можете продавать изображения, "
29
- "включенные в галереи, либо в виде цифровых загрузок, либо продуктов / "
30
- "принтов через Paypal или Stripe."
31
 
32
- #: addons/addons.php:13
33
- msgid "NextGen Gallery Import to Photo Gallery"
34
- msgstr "NextGen Gallery Import to Photo Gallery"
35
 
36
- #: addons/addons.php:15
37
- msgid ""
38
- "This addon integrates NextGen with Photo Gallery allowing to import images "
39
- "and related data from NextGen to use with Photo Gallery"
40
- msgstr ""
41
- "Этот аддон интегрирует NextGen с Photo Gallery, позволяющий импортировать "
42
- "изображения и связанные с ними данные из NextGen для использования с Photo "
43
- "Gallery"
44
 
45
- #: addons/addons.php:20
46
- msgid "Photo Gallery Export / Import"
47
- msgstr "Photo Gallery Export / Import"
 
 
 
 
48
 
49
- #: addons/addons.php:22
50
- msgid ""
51
- "Photo Gallery Export/Import helps to move created galleries and gallery "
52
- "groups from one site to another. This way you can save the gallery/album "
53
- "options and manual modifications."
54
- msgstr ""
55
- "Photo Gallery Export / Import помогает перемещать созданные галереи и группы "
56
- "галерей с одного сайта на другой. Таким образом вы можете сохранить "
57
- "параметры галереи / альбома и ручные изменения."
58
 
59
- #: addons/addons.php:27
60
- msgid "Photo Gallery Google Photos Integration"
61
- msgstr ""
62
 
63
- #: addons/addons.php:29
64
- msgid "Link and display your Google Photos albums in one click."
65
- msgstr ""
66
 
67
- #: addons/addons.php:39
68
- msgid "Photo Gallery Add-ons"
69
- msgstr "Photo Gallery Add-ons"
70
 
71
- #: addons/addons.php:72
72
- msgid "GET THIS ADD ON"
73
- msgstr "ПОЛУЧИТЕ ЭТОТ ADD ON"
74
 
75
- #: admin/controllers/AddTags.php:53 admin/views/Galleries.php:782
76
- #: photo-gallery.php:467
77
- msgid "Tags"
78
- msgstr "Теги"
79
 
80
- #: admin/controllers/Albums.php:38 admin/controllers/Comments.php:40
81
- #: admin/controllers/Galleries.php:34 admin/views/Albums.php:111
82
- #: admin/views/Albums.php:183 admin/views/Comments.php:109
83
- #: admin/views/Galleries.php:118 admin/views/Galleries.php:213
84
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2475
85
- msgid "Publish"
86
- msgstr "Публиковать"
87
 
88
- #: admin/controllers/Albums.php:39 admin/controllers/Comments.php:41
89
- #: admin/controllers/Galleries.php:35 framework/WDWLibrary.php:2476
90
- msgid "published"
91
- msgstr "опубликованный"
92
 
93
- #: admin/controllers/Albums.php:42 admin/controllers/Comments.php:44
94
- #: admin/controllers/Galleries.php:38 admin/views/Albums.php:111
95
- #: admin/views/Comments.php:109 admin/views/Galleries.php:118
96
- #: admin/views/Galleries.php:731 framework/WDWLibrary.php:2480
97
- msgid "Unpublish"
98
- msgstr "Отменить публикацию"
99
 
100
- #: admin/controllers/Albums.php:43 admin/controllers/Comments.php:45
101
- #: admin/controllers/Galleries.php:39 framework/WDWLibrary.php:2481
102
- msgid "unpublished"
103
- msgstr "неопубликованный"
104
 
105
- #: admin/controllers/Albums.php:46 admin/controllers/Themes.php:39
106
- #: admin/views/Albums.php:112 admin/views/Themes.php:105
107
- msgid "Duplicate"
108
- msgstr "Дублировать"
109
 
110
- #: admin/controllers/Albums.php:47
111
- msgid "duplicate"
112
- msgstr "дублировать"
113
 
114
- #: admin/controllers/Albums.php:50 admin/controllers/Comments.php:48
115
- #: admin/controllers/Galleries.php:42 admin/controllers/Ratings.php:41
116
- #: admin/controllers/Themes.php:43 admin/views/Albums.php:113
117
- #: admin/views/Comments.php:112 admin/views/Galleries.php:119
118
- #: admin/views/Galleries.php:738 admin/views/Ratings.php:84
119
- #: admin/views/Themes.php:106 framework/WDWLibrary.php:2485
120
- msgid "Delete"
121
- msgstr "Удалить"
122
 
123
- #: admin/controllers/Albums.php:51 admin/controllers/Comments.php:49
124
- #: admin/controllers/Galleries.php:43 admin/controllers/Ratings.php:42
125
- #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2486
126
- msgid "deleted"
127
- msgstr "удаленный"
128
 
129
- #: admin/controllers/Albums.php:95 photo-gallery.php:464
130
- msgid "Gallery Groups"
131
- msgstr "Группы галерей"
132
 
133
- #: admin/controllers/Albumsgalleries.php:50
134
- msgid "Galleries / Gallery groups"
135
- msgstr "Галереи / Группы галерей"
136
 
137
- #: admin/controllers/Comments.php:91 photo-gallery.php:475
138
- msgid "Comments"
139
- msgstr "Комментарии"
140
 
141
- #: admin/controllers/Comments.php:127 admin/controllers/Ratings.php:133
142
- msgid "Filter by gallery"
143
- msgstr "Фильтровать по галерее"
144
 
145
- #: admin/controllers/Comments.php:131 admin/controllers/Ratings.php:137
146
- msgid "Filter by image"
147
- msgstr "Фильтровать по изображению"
148
 
149
- #: admin/controllers/Galleries.php:93 photo-gallery.php:1740
150
- msgid "Galleries"
151
- msgstr "Галерии"
152
 
153
- #: admin/controllers/Galleries.php:343
154
- msgid "Mixed"
155
- msgstr ""
156
 
157
- #: admin/controllers/Galleries.php:343
158
- msgid "Instagram only"
159
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
- #: admin/controllers/Galleries.php:345 admin/views/Options.php:581
162
- #, fuzzy
163
- #| msgid "Share on Facebook"
164
- msgid "Facebook"
165
- msgstr "Поделиться на Facebook"
166
 
167
- #: admin/controllers/Options.php:48
168
- msgid "Edit options"
169
- msgstr "Изменить параметры"
170
 
171
- #: admin/controllers/Options.php:53 admin/controllers/Shortcode.php:40
172
- #: admin/views/Options.php:375 admin/views/Shortcode.php:68
173
- #: admin/views/Shortcode.php:430 photo-gallery.php:1585
174
- msgid "Thumbnails"
175
- msgstr "Эскизы"
176
 
177
- #: admin/controllers/Options.php:54 admin/controllers/Options.php:63
178
- #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
179
- #: admin/controllers/Themes.php:263 admin/views/Options.php:383
180
- #: admin/views/Options.php:473 admin/views/Options.php:2681
181
- #: admin/views/Options.php:3220 admin/views/Shortcode.php:76
182
- #: admin/views/Shortcode.php:146 admin/views/Widget.php:139
183
- #: photo-gallery.php:1589
184
- msgid "Masonry"
185
- msgstr "Каменная кладка"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
- #: admin/controllers/Options.php:55 admin/controllers/Shortcode.php:42
188
- #: admin/controllers/Themes.php:264 admin/views/Options.php:392
189
- #: admin/views/Options.php:2682 admin/views/Options.php:3221
190
- #: admin/views/Shortcode.php:85 photo-gallery.php:1593
191
- msgid "Mosaic"
192
- msgstr "Мозаика"
193
 
194
- #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:43
195
- #: admin/controllers/Themes.php:265 admin/views/Options.php:401
196
- #: admin/views/Options.php:2683 admin/views/Options.php:3222
197
- #: admin/views/Shortcode.php:94 photo-gallery.php:1559 photo-gallery.php:1597
198
- msgid "Slideshow"
199
- msgstr "Слайд-шоу"
200
 
201
- #: admin/controllers/Options.php:57 admin/controllers/Shortcode.php:44
202
- #: admin/views/Options.php:407 admin/views/Options.php:2684
203
- #: admin/views/Options.php:3223 admin/views/Shortcode.php:100
204
- #: photo-gallery.php:1601
205
- msgid "Image Browser"
206
- msgstr "Браузер изображений"
207
 
208
- #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:45
209
- #: admin/views/Options.php:413 admin/views/Options.php:2685
210
- #: admin/views/Options.php:3224 admin/views/Shortcode.php:106
211
- #: photo-gallery.php:1617
212
- msgid "Blog Style"
213
- msgstr "Стиль блога"
214
 
215
- #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:46
216
- #: admin/controllers/Themes.php:273 admin/views/Options.php:422
217
- #: admin/views/Options.php:2686 admin/views/Options.php:3225
218
- #: admin/views/Shortcode.php:115 photo-gallery.php:1629
219
- msgid "Carousel"
220
- msgstr "Карусель"
221
 
222
- #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:49
223
- #: admin/views/Options.php:467 admin/views/Shortcode.php:140
224
- msgid "Compact"
225
- msgstr "Компактный"
226
 
227
- #: admin/controllers/Options.php:64 admin/controllers/Shortcode.php:51
228
- #: admin/views/Options.php:482 admin/views/Shortcode.php:155
229
- msgid "Extended"
230
- msgstr "Расширенный"
231
 
232
- #: admin/controllers/Options.php:130
233
- msgid "Default values restored. Changes must be saved."
234
- msgstr "Восстановлены значения по умолчанию. Изменения должны быть сохранены."
235
 
236
- #: admin/controllers/Options.php:162
237
- msgid "Uploads directory doesn't exist. Old value is restored."
238
- msgstr "Каталог загрузок не существует. Старое значение восстановленны"
239
 
240
- #: admin/controllers/Options.php:165
241
- msgid ""
242
- "Warning: \"photo-gallery\" folder already exists in uploads directory. Old "
243
- "value is restored."
244
- msgstr ""
245
- "Внимание: папка «photo-gallery» уже существует в каталоге загрузок. Старое "
246
- "значение восстановленно"
247
 
248
- #: admin/controllers/Options.php:195
249
- msgid "All thumbnails are successfully recreated."
250
- msgstr "Все эскизы успешно воссозданы."
251
 
252
- #: admin/controllers/Options.php:208
253
- msgid "Item Succesfully Saved."
254
- msgstr "Элемент успешно сохранен."
255
 
256
- #: admin/controllers/Options.php:248 framework/WDWLibrary.php:218
257
- msgid ""
258
- "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
259
- msgstr ""
260
 
261
- #: admin/controllers/Options.php:254 framework/WDWLibrary.php:213
262
- msgid "Watermark could not be set. The image URL is incorrect."
263
- msgstr "Watermark не может быть установлен. URL-адрес изображения неверен."
264
 
265
- #: admin/controllers/Options.php:258
266
- msgid "All images are successfully watermarked."
267
- msgstr "Все изображения успешно отмечены."
268
 
269
- #: admin/controllers/Ratings.php:86 photo-gallery.php:478
270
- msgid "Ratings"
271
- msgstr "Оценки"
272
 
273
- #: admin/controllers/Themes.php:40
274
- msgid "duplicated"
275
- msgstr "дублирован"
276
 
277
- #: admin/controllers/Themes.php:88 photo-gallery.php:471
278
- msgid "Themes"
279
- msgstr "Темы"
280
 
281
- #: admin/controllers/Themes.php:262 admin/views/Options.php:2680
282
- #: admin/views/Options.php:3219 admin/views/Widget.php:138
283
- msgid "Thumbnail"
284
- msgstr "Thumbnail"
285
 
286
- #: admin/controllers/Themes.php:266
287
- msgid "Image browser"
288
- msgstr "Image browser"
289
 
290
- #: admin/controllers/Themes.php:267
291
- msgid "Compact album"
292
- msgstr "Compact album"
293
 
294
- #: admin/controllers/Themes.php:268
295
- msgid "Masonry album"
296
- msgstr "Masonry album"
297
 
298
- #: admin/controllers/Themes.php:269
299
- msgid "Extended album"
300
- msgstr "Extended album"
 
 
 
301
 
302
- #: admin/controllers/Themes.php:270
303
- msgid "Blog style"
304
- msgstr "Blog style"
305
 
306
- #: admin/controllers/Themes.php:271 admin/views/WidgetTags.php:96
307
- #: photo-gallery.php:1551 photo-gallery.php:1621
308
- msgid "Lightbox"
309
- msgstr "Lightbox"
310
 
311
- #: admin/controllers/Themes.php:272
312
- msgid "Navigation"
313
- msgstr "Навигация"
314
 
315
- #: admin/controllers/Themes.php:277 admin/controllers/Themes.php:316
316
- #: admin/controllers/Themes.php:323 admin/controllers/WidgetSlideshow.php:44
317
- #: admin/views/Options.php:677 admin/views/Options.php:830
318
- #: admin/views/Options.php:1060 admin/views/Options.php:1108
319
- #: admin/views/Options.php:1326 admin/views/Options.php:1562
320
- #: admin/views/Options.php:2156 admin/views/Shortcode.php:299
321
- msgid "None"
322
- msgstr "Никакой"
323
 
324
- #: admin/controllers/Themes.php:278
325
- msgid "Solid"
326
- msgstr "Твердый"
327
 
328
- #: admin/controllers/Themes.php:279
329
- msgid "Dotted"
330
- msgstr "Пунктирный"
331
 
332
- #: admin/controllers/Themes.php:280
333
- msgid "Dashed"
334
- msgstr "Пунктирная"
335
 
336
- #: admin/controllers/Themes.php:281 admin/controllers/Themes.php:333
337
- msgid "Double"
338
- msgstr "Двойной"
 
339
 
340
- #: admin/controllers/Themes.php:282
341
- msgid "Groove"
342
- msgstr "Groove"
343
 
344
- #: admin/controllers/Themes.php:283
345
- msgid "Ridge"
346
- msgstr "Ridge"
347
 
348
- #: admin/controllers/Themes.php:284
349
- msgid "Inset"
350
- msgstr "Inset"
351
 
352
- #: admin/controllers/Themes.php:285
353
- msgid "Outset"
354
- msgstr "Outset"
355
 
356
- #: admin/controllers/Themes.php:303 admin/views/Themes.php:1278
357
- #: admin/views/Themes.php:3903 admin/views/Themes.php:4385
358
- msgid "Left"
359
- msgstr "лева"
360
 
361
- #: admin/controllers/Themes.php:304
362
- msgid "Center"
363
- msgstr "Центр"
364
 
365
- #: admin/controllers/Themes.php:305 admin/views/Themes.php:1276
366
- #: admin/views/Themes.php:3901 admin/views/Themes.php:4387
367
- msgid "Right"
368
- msgstr "Справа"
 
 
369
 
370
- #: admin/controllers/Themes.php:309
371
- msgid "Lighter"
372
- msgstr "Более легкий"
 
373
 
374
- #: admin/controllers/Themes.php:310
375
- msgid "Normal"
376
- msgstr "Нормальный"
377
 
378
- #: admin/controllers/Themes.php:311
379
- msgid "Bold"
380
- msgstr "Жирный"
381
 
382
- #: admin/controllers/Themes.php:317 admin/controllers/Themes.php:324
383
- msgid "Rotate"
384
- msgstr "Вращать"
385
 
386
- #: admin/controllers/Themes.php:318 admin/controllers/Themes.php:325
387
- msgid "Scale"
388
- msgstr "Масштаб"
389
 
390
- #: admin/controllers/Themes.php:319 admin/controllers/Themes.php:327
391
- msgid "Skew"
392
- msgstr "Скос"
393
 
394
- #: admin/controllers/Themes.php:326
395
- msgid "Zoom"
396
- msgstr "Увеличить"
397
 
398
- #: admin/controllers/Themes.php:331
399
- msgid "Angle"
400
- msgstr "Угол"
401
 
402
- #: admin/controllers/Themes.php:332
403
- msgid "Chevron"
404
- msgstr "Chevron"
405
 
406
- #: admin/controllers/Themes.php:337
407
- msgid "Star"
408
- msgstr "Звезда"
409
 
410
- #: admin/controllers/Themes.php:338
411
- msgid "Bell"
412
- msgstr "Колокол"
413
 
414
- #: admin/controllers/Themes.php:339
415
- msgid "Circle"
416
- msgstr "Круг"
417
 
418
- #: admin/controllers/Themes.php:340
419
- msgid "Flag"
420
- msgstr "Флаг"
421
 
422
- #: admin/controllers/Themes.php:341
423
- msgid "Heart"
424
- msgstr "Сердце"
425
 
426
- #: admin/controllers/Themes.php:342
427
- msgid "Square"
428
- msgstr "Квадрат"
429
 
430
- #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
431
- #: admin/views/Options.php:351
432
- #, php-format
433
- msgid "Uninstall %s"
434
- msgstr "Удалить% s"
435
 
436
- #: admin/controllers/Widget.php:14
437
- msgid "Add Photo Gallery albums or galleries to Your widget area."
438
- msgstr "Добавьте альбомы галереи или галереи в область вашего виджета."
439
 
440
- #: admin/controllers/WidgetSlideshow.php:14
441
- msgid "Add Photo Gallery slideshow to Your widget area."
442
- msgstr "Добавьте слайд-шоу галереи фотографий в область вашего виджета."
 
 
 
443
 
444
- #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1061
445
- msgid "Cube Horizontal"
446
- msgstr "Cube Horizontal"
447
 
448
- #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1062
449
- msgid "Cube Vertical"
450
- msgstr "Cube Vertical"
451
 
452
- #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1063
453
- msgid "Fade"
454
- msgstr "Fade"
455
 
456
- #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1064
457
- msgid "Slice Horizontal"
458
- msgstr "Slice Horizontal"
459
 
460
- #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1065
461
- msgid "Slice Vertical"
462
- msgstr "Slice Vertical"
463
 
464
- #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1066
465
- msgid "Slide Horizontal"
466
- msgstr "Slide Horizontal"
467
 
468
- #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1067
469
- msgid "Slide Vertical"
470
- msgstr "Slide Vertical"
471
 
472
- #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1068
473
- msgid "Scale Out"
474
- msgstr "Scale Out"
475
 
476
- #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1069
477
- msgid "Scale In"
478
- msgstr "Scale In"
479
 
480
- #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1070
481
- msgid "Block Scale"
482
- msgstr "Block Scale"
483
 
484
- #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1071
485
- msgid "Kaleidoscope"
486
- msgstr "Kaleidoscope"
487
 
488
- #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1072
489
- msgid "Fan"
490
- msgstr "Fan"
491
 
492
- #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1073
493
- msgid "Blind Horizontal"
494
- msgstr "Blind Horizontal"
495
 
496
- #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1074
497
- msgid "Blind Vertical"
498
- msgstr "Blind Vertical"
499
-
500
- #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1075
501
- #: admin/views/Options.php:1151 admin/views/Options.php:1369
502
- #: admin/views/Options.php:1605 admin/views/Options.php:1802
503
- #: admin/views/Options.php:2042 admin/views/Options.php:2201
504
- #: admin/views/Options.php:2378 admin/views/Options.php:2563
505
- #: admin/views/Options.php:2585 admin/views/Options.php:2863
506
- #: admin/views/Options.php:2885 admin/views/Options.php:3103
507
- #: admin/views/Options.php:3125 admin/views/Widget.php:159
508
- #: frontend/views/view.php:433
509
- msgid "Random"
510
- msgstr "Random"
511
 
512
- #: admin/controllers/WidgetTags.php:14
513
- msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
514
- msgstr ""
515
- "Добавить фотогалерею Теги динамического облака в область вашего виджета."
516
 
517
- #: admin/controllers/elementorWidget.php:36 admin/views/Albumsgalleries.php:119
518
- #: admin/views/Shortcode.php:57 admin/views/Shortcode.php:186
519
- #: admin/views/Shortcode.php:264 admin/views/Widget.php:120
520
- msgid "Gallery"
521
- msgstr "Галерея"
522
 
523
- #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:74
524
- #: photo-gallery.php:417
525
- msgid "General"
526
- msgstr "Общий"
527
 
528
- #: admin/models/Comments.php:62 admin/models/Ratings.php:81
529
- #: framework/WDWLibrary.php:2751
530
- msgid "All galleries"
531
- msgstr "Все галереи"
532
 
533
- #: admin/models/Comments.php:76 admin/models/Ratings.php:100
534
- #: admin/views/Widget.php:126 framework/WDWLibrary.php:2732
535
- msgid "All images"
536
- msgstr "Все изображения"
537
 
538
- #: admin/models/Galleries.php:1220 admin/views/Galleries.php:760
539
- msgid ""
540
- "Selected pricelist item longest dimension greater than some original images "
541
- "dimensions."
542
- msgstr ""
543
- "Выбранный самый длинный размер элемента превышает некоторые исходные размеры "
544
- "изображений."
545
 
546
- #: admin/views/AddTags.php:66 admin/views/Albums.php:58
547
- #: admin/views/Comments.php:65 admin/views/Themes.php:77 photo-gallery.php:1436
548
- msgid "Select all"
549
- msgstr "Выбрать все"
550
 
551
- #: admin/views/AddTags.php:69 admin/views/AddTags.php:87
552
- #: admin/views/Comments.php:69 admin/views/Comments.php:90
553
- #: filemanager/view.php:135 frontend/views/BWGViewGalleryBox.php:994
554
- #: frontend/views/BWGViewGalleryBox.php:1112
555
- #: frontend/views/BWGViewGalleryBox.php:1226
556
- msgid "Name"
557
- msgstr "Имя"
558
 
559
- #: admin/views/AddTags.php:108
560
- #, fuzzy
561
- #| msgid "Reset"
562
- msgid "Remove from image"
563
- msgstr "Сброс"
 
 
564
 
565
- #: admin/views/AddTags.php:109
566
- msgid "Add to image"
567
- msgstr "Добавить в фото"
568
 
569
- #: admin/views/AdminView.php:95
570
- msgid "Add New"
571
- msgstr "Добавить новое"
572
 
573
- #: admin/views/AdminView.php:198 framework/WDWLibrary.php:349
574
- #: framework/WDWLibrary.php:527 photo-gallery.php:1412
575
- msgid "Search"
576
- msgstr "Поиск"
577
 
578
- #: admin/views/AdminView.php:260
579
- msgid "First page"
580
- msgstr "Первая страница"
581
 
582
- #: admin/views/AdminView.php:261
583
- msgid "Previous page"
584
- msgstr "Предыдущая страница"
 
 
 
 
 
 
 
 
 
 
585
 
586
- #: admin/views/AdminView.php:266
587
- msgid "Current Page"
588
- msgstr "Текущая страница"
 
589
 
590
- #: admin/views/AdminView.php:269 framework/WDWLibrary.php:480
591
- #: framework/WDWLibrary.php:629 frontend/views/view.php:663
592
- msgid "of"
593
- msgstr "из"
594
 
595
- #: admin/views/AdminView.php:282
596
- msgid "Next page"
597
- msgstr ""
598
- "9/5000\n"
599
- "Следущая страница"
600
 
601
- #: admin/views/AdminView.php:283
602
- msgid "Last page"
603
- msgstr "Последняя страница"
604
 
605
- #: admin/views/AdminView.php:315 filemanager/view.php:205
606
- msgid "Select All"
607
- msgstr "Выбрать все"
 
 
608
 
609
- #: admin/views/AdminView.php:320
610
- msgid "Select bulk action"
611
- msgstr "Действия"
612
 
613
- #: admin/views/AdminView.php:322
614
- msgid "Bulk Actions"
615
- msgstr "Действия"
616
 
617
- #: admin/views/AdminView.php:331 admin/views/Galleries.php:398
618
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
619
- #: admin/views/Galleries.php:728 admin/views/Options.php:157
620
- #: admin/views/Options.php:957 admin/views/Options.php:960
621
- #: filemanager/view.php:66
622
- msgid "This option is disabled in demo."
623
- msgstr "Этот параметр отключен в демо."
624
 
625
- #: admin/views/AdminView.php:331
626
- msgid "Apply"
627
- msgstr "Применить"
628
 
629
- #: admin/views/Albums.php:61 admin/views/Albums.php:97
630
- #: admin/views/Albumsgalleries.php:78 admin/views/Albumsgalleries.php:102
631
- #: admin/views/Galleries.php:60 admin/views/Galleries.php:63
632
- #: admin/views/Galleries.php:104 admin/views/Options.php:1145
633
- #: admin/views/Options.php:1363 admin/views/Options.php:1599
634
- #: admin/views/Options.php:1796 admin/views/Options.php:2036
635
- #: admin/views/Options.php:2195 admin/views/Options.php:2372
636
- #: admin/views/Options.php:2562 admin/views/Options.php:2579
637
- #: admin/views/Options.php:2862 admin/views/Options.php:2879
638
- #: admin/views/Options.php:3102 admin/views/Options.php:3119
639
- #: admin/views/Themes.php:80 admin/views/Themes.php:99
640
- msgid "Title"
641
- msgstr "Заголовок"
642
 
643
- #: admin/views/Albums.php:62 admin/views/Albums.php:120
644
- #: admin/views/Albums.php:241 admin/views/Galleries.php:65
645
- #: admin/views/Galleries.php:127 admin/views/Galleries.php:281
646
- msgid "Author"
647
- msgstr "Автор"
648
 
649
- #: admin/views/Albums.php:106 admin/views/Albums.php:333
650
- #: admin/views/Albumsgalleries.php:111 admin/views/Comments.php:102
651
- #: admin/views/Galleries.php:113 admin/views/Galleries.php:718
652
- msgid "Unpublished"
653
- msgstr "Неопубликованный"
654
 
655
- #: admin/views/Albums.php:110 admin/views/Editimage.php:325
656
- #: admin/views/Galleries.php:117 admin/views/Galleries.php:726
657
- #: admin/views/Themes.php:104
658
- msgid "Edit"
659
- msgstr "Редактировать"
660
 
661
- #: admin/views/Albums.php:113 admin/views/Comments.php:112
662
- #: admin/views/Galleries.php:119 admin/views/Galleries.php:732
663
- #: admin/views/Ratings.php:84 admin/views/Themes.php:106
664
- msgid "Do you want to delete selected item?"
665
- msgstr "Вы хотите удалить выбранный элемент?"
666
 
667
- #: admin/views/Albums.php:114 admin/views/Albums.php:186
668
- #: admin/views/Galleries.php:120 admin/views/Galleries.php:217
669
- msgid "Preview"
670
- msgstr "Просмотр"
671
 
672
- #: admin/views/Albums.php:117 admin/views/Albumsgalleries.php:115
673
- #: admin/views/Comments.php:115 admin/views/Galleries.php:123
674
- #: admin/views/Galleries.php:742 admin/views/Ratings.php:87
675
- #: admin/views/Themes.php:109
676
- msgid "Show more details"
677
- msgstr "Показать больше информации"
678
 
679
- #: admin/views/Albums.php:174
680
- msgid "Gallery Group Title"
681
- msgstr "Название группы Галерея"
 
682
 
683
- #: admin/views/Albums.php:183 admin/views/Galleries.php:213
684
- #: admin/views/Shortcode.php:576 admin/views/Shortcode.php:2126
685
- #: admin/views/Themes.php:181
686
- msgid "Update"
687
- msgstr "Обновить"
688
 
689
- #: admin/views/Albums.php:197 admin/views/Albums.php:233
690
- #: admin/views/Galleries.php:229 admin/views/Galleries.php:270
691
- #: admin/views/Options.php:528 admin/views/Options.php:596
692
- #: admin/views/Options.php:664 admin/views/Shortcode.php:260
693
- #: admin/views/Shortcode.php:275
694
- msgid "Toggle panel:"
695
- msgstr "Переключать"
696
 
697
- #: admin/views/Albums.php:201 admin/views/Galleries.php:233
698
- msgid "Basic"
699
- msgstr "Основной"
 
 
700
 
701
- #: admin/views/Albums.php:206 admin/views/Galleries.php:238
702
- msgid "Preview image"
703
- msgstr "Предварительный просмотр"
704
 
705
- #: admin/views/Albums.php:208 admin/views/Galleries.php:242
706
- msgid "Add Preview Image"
707
- msgstr "Добавить изображение предварительного просмотра"
708
 
709
- #: admin/views/Albums.php:209 admin/views/Albums.php:296
710
- #: admin/views/Galleries.php:245 admin/views/Galleries.php:446
711
- #: filemanager/view.php:213
712
- msgid "Add"
713
- msgstr "Добавить"
714
 
715
- #: admin/views/Albums.php:214
716
  msgid ""
717
- "Add a preview image, which will be displayed as the cover image of the "
718
- "gallery group when it is published in a parent gallery group."
719
  msgstr ""
720
- "Добавьте изображение предварительного просмотра, которое будет отображаться "
721
- "как обложка группы галереи, когда она будет опубликована в группе "
722
- "родительской галереи."
723
 
724
- #: admin/views/Albums.php:218 admin/views/Galleries.php:255
725
- msgid "Published"
726
- msgstr "Опубликованный"
727
 
728
- #: admin/views/Albums.php:220 admin/views/Galleries.php:257
729
- #: admin/views/Options.php:134 admin/views/Options.php:175
730
- #: admin/views/Options.php:185 admin/views/Options.php:195
731
- #: admin/views/Options.php:214 admin/views/Options.php:224
732
- #: admin/views/Options.php:234 admin/views/Options.php:244
733
- #: admin/views/Options.php:256 admin/views/Options.php:267
734
- #: admin/views/Options.php:277 admin/views/Options.php:287
735
- #: admin/views/Options.php:297 admin/views/Options.php:307
736
- #: admin/views/Options.php:317 admin/views/Options.php:335
737
- #: admin/views/Options.php:341 admin/views/Options.php:628
738
- #: admin/views/Options.php:639 admin/views/Options.php:650
739
- #: admin/views/Options.php:1167 admin/views/Options.php:1193
740
- #: admin/views/Options.php:1203 admin/views/Options.php:1215
741
- #: admin/views/Options.php:1225 admin/views/Options.php:1246
742
- #: admin/views/Options.php:1256 admin/views/Options.php:1385
743
- #: admin/views/Options.php:1411 admin/views/Options.php:1421
744
- #: admin/views/Options.php:1433 admin/views/Options.php:1443
745
- #: admin/views/Options.php:1464 admin/views/Options.php:1475
746
- #: admin/views/Options.php:1485 admin/views/Options.php:1532
747
- #: admin/views/Options.php:1621 admin/views/Options.php:1647
748
- #: admin/views/Options.php:1657 admin/views/Options.php:1669
749
- #: admin/views/Options.php:1679 admin/views/Options.php:1699
750
- #: admin/views/Options.php:1709 admin/views/Options.php:1818
751
- #: admin/views/Options.php:1828 admin/views/Options.php:1838
752
- #: admin/views/Options.php:1860 admin/views/Options.php:1881
753
- #: admin/views/Options.php:1918 admin/views/Options.php:1928
754
- #: admin/views/Options.php:1965 admin/views/Options.php:1984
755
- #: admin/views/Options.php:2013 admin/views/Options.php:2022
756
- #: admin/views/Options.php:2058 admin/views/Options.php:2084
757
- #: admin/views/Options.php:2094 admin/views/Options.php:2106
758
- #: admin/views/Options.php:2116 admin/views/Options.php:2126
759
- #: admin/views/Options.php:2217 admin/views/Options.php:2243
760
- #: admin/views/Options.php:2253 admin/views/Options.php:2265
761
- #: admin/views/Options.php:2275 admin/views/Options.php:2285
762
- #: admin/views/Options.php:2296 admin/views/Options.php:2307
763
- #: admin/views/Options.php:2394 admin/views/Options.php:2417
764
- #: admin/views/Options.php:2428 admin/views/Options.php:2439
765
- #: admin/views/Options.php:2450 admin/views/Options.php:2461
766
- #: admin/views/Options.php:2601 admin/views/Options.php:2627
767
- #: admin/views/Options.php:2637 admin/views/Options.php:2649
768
- #: admin/views/Options.php:2659 admin/views/Options.php:2707
769
- #: admin/views/Options.php:2742 admin/views/Options.php:2752
770
- #: admin/views/Options.php:2901 admin/views/Options.php:2927
771
- #: admin/views/Options.php:2937 admin/views/Options.php:2949
772
- #: admin/views/Options.php:2959 admin/views/Options.php:2980
773
- #: admin/views/Options.php:3141 admin/views/Options.php:3167
774
- #: admin/views/Options.php:3177 admin/views/Options.php:3189
775
- #: admin/views/Options.php:3199 admin/views/Options.php:3209
776
- #: admin/views/Options.php:3246 admin/views/Options.php:3281
777
- #: admin/views/Options.php:3291 admin/views/Options.php:3345
778
- #: admin/views/Options.php:3356 admin/views/Options.php:3405
779
- #: admin/views/Options.php:3424 admin/views/Options.php:3460
780
- #: admin/views/Options.php:3483 admin/views/Options.php:3495
781
- #: admin/views/Options.php:3508 admin/views/Options.php:3519
782
- #: admin/views/Options.php:3530 admin/views/Options.php:3541
783
- #: admin/views/Options.php:3551 admin/views/Options.php:3561
784
- #: admin/views/Options.php:3581 admin/views/Options.php:3592
785
- #: admin/views/Options.php:3605 admin/views/Options.php:3615
786
- #: admin/views/Options.php:3625 admin/views/Options.php:3635
787
- #: admin/views/Options.php:3645 admin/views/Options.php:3666
788
- #: admin/views/Options.php:3677 admin/views/Options.php:3688
789
- #: admin/views/Options.php:3699 admin/views/Options.php:3713
790
- #: admin/views/Themes.php:221 admin/views/Themes.php:298
791
- #: admin/views/Themes.php:543 admin/views/Themes.php:607
792
- #: admin/views/Themes.php:865 admin/views/Themes.php:929
793
- #: admin/views/Themes.php:1920 admin/views/Themes.php:1998
794
- #: admin/views/Themes.php:2341 admin/views/Themes.php:2930
795
- #: admin/views/Themes.php:2994 admin/views/Themes.php:4702
796
- #: admin/views/Themes.php:4751 admin/views/Uninstall.php:77
797
- #: admin/views/WidgetSlideshow.php:114 admin/views/WidgetSlideshow.php:120
798
- #: admin/views/WidgetSlideshow.php:126 admin/views/WidgetTags.php:89
799
- #: admin/views/WidgetTags.php:111
800
- msgid "Yes"
801
- msgstr "Да"
802
 
803
- #: admin/views/Albums.php:222 admin/views/Galleries.php:259
804
- #: admin/views/Options.php:135 admin/views/Options.php:176
805
- #: admin/views/Options.php:186 admin/views/Options.php:196
806
- #: admin/views/Options.php:215 admin/views/Options.php:225
807
- #: admin/views/Options.php:235 admin/views/Options.php:245
808
- #: admin/views/Options.php:257 admin/views/Options.php:268
809
- #: admin/views/Options.php:278 admin/views/Options.php:288
810
- #: admin/views/Options.php:298 admin/views/Options.php:308
811
- #: admin/views/Options.php:318 admin/views/Options.php:336
812
- #: admin/views/Options.php:342 admin/views/Options.php:629
813
- #: admin/views/Options.php:640 admin/views/Options.php:651
814
- #: admin/views/Options.php:1168 admin/views/Options.php:1194
815
- #: admin/views/Options.php:1204 admin/views/Options.php:1216
816
- #: admin/views/Options.php:1226 admin/views/Options.php:1247
817
- #: admin/views/Options.php:1257 admin/views/Options.php:1386
818
- #: admin/views/Options.php:1412 admin/views/Options.php:1422
819
- #: admin/views/Options.php:1434 admin/views/Options.php:1444
820
- #: admin/views/Options.php:1465 admin/views/Options.php:1476
821
- #: admin/views/Options.php:1486 admin/views/Options.php:1533
822
- #: admin/views/Options.php:1622 admin/views/Options.php:1648
823
- #: admin/views/Options.php:1658 admin/views/Options.php:1670
824
- #: admin/views/Options.php:1680 admin/views/Options.php:1700
825
- #: admin/views/Options.php:1710 admin/views/Options.php:1819
826
- #: admin/views/Options.php:1829 admin/views/Options.php:1839
827
- #: admin/views/Options.php:1861 admin/views/Options.php:1882
828
- #: admin/views/Options.php:1919 admin/views/Options.php:1929
829
- #: admin/views/Options.php:1966 admin/views/Options.php:1985
830
- #: admin/views/Options.php:2014 admin/views/Options.php:2023
831
- #: admin/views/Options.php:2059 admin/views/Options.php:2085
832
- #: admin/views/Options.php:2095 admin/views/Options.php:2107
833
- #: admin/views/Options.php:2117 admin/views/Options.php:2127
834
- #: admin/views/Options.php:2218 admin/views/Options.php:2244
835
- #: admin/views/Options.php:2254 admin/views/Options.php:2266
836
- #: admin/views/Options.php:2276 admin/views/Options.php:2286
837
- #: admin/views/Options.php:2297 admin/views/Options.php:2308
838
- #: admin/views/Options.php:2395 admin/views/Options.php:2418
839
- #: admin/views/Options.php:2429 admin/views/Options.php:2440
840
- #: admin/views/Options.php:2451 admin/views/Options.php:2462
841
- #: admin/views/Options.php:2525 admin/views/Options.php:2602
842
- #: admin/views/Options.php:2628 admin/views/Options.php:2638
843
- #: admin/views/Options.php:2650 admin/views/Options.php:2660
844
- #: admin/views/Options.php:2708 admin/views/Options.php:2743
845
- #: admin/views/Options.php:2753 admin/views/Options.php:2825
846
- #: admin/views/Options.php:2902 admin/views/Options.php:2928
847
- #: admin/views/Options.php:2938 admin/views/Options.php:2950
848
- #: admin/views/Options.php:2960 admin/views/Options.php:2981
849
- #: admin/views/Options.php:3065 admin/views/Options.php:3142
850
- #: admin/views/Options.php:3168 admin/views/Options.php:3178
851
- #: admin/views/Options.php:3190 admin/views/Options.php:3200
852
- #: admin/views/Options.php:3210 admin/views/Options.php:3247
853
- #: admin/views/Options.php:3282 admin/views/Options.php:3292
854
- #: admin/views/Options.php:3346 admin/views/Options.php:3357
855
- #: admin/views/Options.php:3406 admin/views/Options.php:3425
856
- #: admin/views/Options.php:3474 admin/views/Options.php:3484
857
- #: admin/views/Options.php:3498 admin/views/Options.php:3509
858
- #: admin/views/Options.php:3520 admin/views/Options.php:3531
859
- #: admin/views/Options.php:3542 admin/views/Options.php:3552
860
- #: admin/views/Options.php:3562 admin/views/Options.php:3582
861
- #: admin/views/Options.php:3593 admin/views/Options.php:3606
862
- #: admin/views/Options.php:3616 admin/views/Options.php:3626
863
- #: admin/views/Options.php:3636 admin/views/Options.php:3646
864
- #: admin/views/Options.php:3667 admin/views/Options.php:3678
865
- #: admin/views/Options.php:3689 admin/views/Options.php:3700
866
- #: admin/views/Options.php:3714 admin/views/Themes.php:223
867
- #: admin/views/Themes.php:300 admin/views/Themes.php:545
868
- #: admin/views/Themes.php:609 admin/views/Themes.php:867
869
- #: admin/views/Themes.php:931 admin/views/Themes.php:1922
870
- #: admin/views/Themes.php:2000 admin/views/Themes.php:2343
871
- #: admin/views/Themes.php:2932 admin/views/Themes.php:2996
872
- #: admin/views/Themes.php:4704 admin/views/Themes.php:4753
873
- #: admin/views/WidgetSlideshow.php:115 admin/views/WidgetSlideshow.php:121
874
- #: admin/views/WidgetSlideshow.php:127 admin/views/WidgetTags.php:90
875
- #: admin/views/WidgetTags.php:112
876
- msgid "No"
877
- msgstr "Нет"
878
 
879
- #: admin/views/Albums.php:237 admin/views/Galleries.php:274
880
- #: admin/views/Options.php:86 admin/views/Shortcode.php:293
881
- msgid "Advanced"
882
- msgstr "Продвинутый"
883
 
884
- #: admin/views/Albums.php:245 admin/views/Galleries.php:285
885
- msgid "Slug"
886
- msgstr "Метка"
887
 
888
- #: admin/views/Albums.php:250 admin/views/Galleries.php:290
889
- #: admin/views/Galleries.php:752 frontend/views/BWGViewGalleryBox.php:1127
890
- msgid "Description"
891
- msgstr "Описание"
 
 
892
 
893
- #: admin/views/Albums.php:277
894
- msgid "Galleries and Gallery Groups"
895
- msgstr "Галереи и Группы галереи"
896
 
897
- #: admin/views/Albums.php:324 admin/views/Galleries.php:97
898
- #: admin/views/Galleries.php:694
899
- msgid "Drag to re-order"
900
- msgstr "Перетащите, чтобы переупорядочить"
 
 
 
901
 
902
- #: admin/views/Albums.php:332
903
- msgid "Remove"
904
- msgstr "Удалить"
 
 
 
 
905
 
906
- #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:118
907
- #: admin/views/Galleries.php:714 admin/views/Options.php:1149
908
- #: admin/views/Options.php:1367 admin/views/Options.php:1603
909
- #: admin/views/Options.php:1800 admin/views/Options.php:2040
910
- #: admin/views/Options.php:2199 admin/views/Options.php:2376
911
- #: admin/views/Options.php:2583 admin/views/Options.php:2883
912
- #: admin/views/Options.php:3123
913
- msgid "Type"
914
- msgstr "Тип"
915
 
916
- #: admin/views/Albumsgalleries.php:119 admin/views/Shortcode.php:60
917
- #: admin/views/Shortcode.php:264
918
- msgid "Gallery group"
919
- msgstr "Группа галерии"
 
 
 
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 "Комментарий"
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
 
946
- #: admin/views/Editimage.php:215
947
- msgid "You can't crop this type of image."
948
- msgstr "Вы не можете обрезать этот тип изображения."
949
 
950
- #: admin/views/Editimage.php:295
951
- msgid "Select the area for the thumbnail."
952
- msgstr "Выберите область для миниатюры."
953
 
954
- #: admin/views/Editimage.php:300
955
- msgid "Keep aspect ratio"
956
- msgstr ""
957
 
958
- #: admin/views/Editimage.php:311
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 "Сброс"
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
- msgid "Gallery title"
1022
- msgstr "Название галереи"
 
1023
 
1024
- #: admin/views/Galleries.php:252
1025
- msgid ""
1026
- "Add a preview image, which will be displayed as the cover image of the "
1027
- "gallery when it is published in a gallery group."
1028
- msgstr ""
 
1029
 
1030
- #: admin/views/Galleries.php:316
1031
- msgid "Gallery content type"
1032
- msgstr ""
 
 
 
 
1033
 
1034
- #: admin/views/Galleries.php:330
1035
- msgid ""
1036
- "Select the type of gallery content. Mixed galleries can include all "
1037
- "supported items. Alternatively, you can showcase images from one specific "
1038
- "source only."
1039
- msgstr ""
1040
 
1041
- #: admin/views/Galleries.php:332
1042
- msgid ""
1043
- "Gallery type cannot be changed, as it is not empty. If you would like to "
1044
- "show images from another source, please create a new gallery."
1045
- msgstr ""
1046
 
1047
- #: admin/views/Galleries.php:338
1048
- msgid "Number of Instagram recent posts to add to gallery"
1049
- msgstr ""
1050
 
1051
- #: admin/views/Galleries.php:342
1052
- msgid "Instagram embed type"
1053
- msgstr ""
1054
 
1055
- #: admin/views/Galleries.php:344 admin/views/Galleries.php:496
1056
- msgid "Content"
1057
- msgstr ""
1058
 
1059
- #: admin/views/Galleries.php:346 admin/views/Galleries.php:498
1060
- msgid "Whole post"
1061
- msgstr ""
1062
 
1063
- #: admin/views/Galleries.php:349
1064
- msgid "Gallery autoupdate option"
1065
- msgstr "Опция автообновления галереии"
1066
 
1067
- #: admin/views/Galleries.php:351
1068
- msgid "No update"
1069
- msgstr ""
1070
 
1071
- #: admin/views/Galleries.php:353
1072
- msgid "Add new media, keep old ones published."
1073
- msgstr ""
1074
 
1075
- #: admin/views/Galleries.php:355
1076
- msgid "Add new media, unpublish old ones."
1077
- msgstr ""
1078
 
1079
- #: admin/views/Galleries.php:358
1080
- msgid "Add Instagram Gallery"
1081
- msgstr ""
1082
 
1083
- #: admin/views/Galleries.php:367
1084
- msgid "Photo Gallery Facebook Integration"
1085
- msgstr ""
1086
 
1087
- #: admin/views/Galleries.php:368
1088
- #, php-format
1089
- msgid "Please install %s add-on to use this feature."
1090
- msgstr ""
1091
 
1092
- #: admin/views/Galleries.php:395 admin/views/Galleries.php:396
1093
- msgid "Add Images"
1094
- msgstr ""
1095
 
1096
- #: admin/views/Galleries.php:398
1097
- msgid "Import from Media Library"
1098
- msgstr ""
 
 
1099
 
1100
- #: admin/views/Galleries.php:405 admin/views/Galleries.php:407
1101
- msgid "Embed Media"
1102
- msgstr ""
1103
 
1104
- #: admin/views/Galleries.php:408 admin/views/Galleries.php:410
1105
- msgid "Social Bulk Embed"
1106
- msgstr ""
 
 
1107
 
1108
- #: admin/views/Galleries.php:410 photo-gallery.php:108
1109
- msgid "This option is disabled in free version."
1110
- msgstr ""
1111
 
1112
- #: admin/views/Galleries.php:413
1113
- msgid "Optimize Images"
1114
- msgstr ""
1115
 
1116
- #: admin/views/Galleries.php:429
1117
- msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1118
- msgstr ""
1119
 
1120
- #: admin/views/Galleries.php:430 admin/views/Galleries.php:466
1121
- msgid "Add to gallery"
1122
- msgstr ""
1123
 
1124
- #: admin/views/Galleries.php:431 admin/views/Galleries.php:465
1125
- #: admin/views/Galleries.php:522 admin/views/Galleries.php:543
1126
- #: admin/views/Galleries.php:562 admin/views/Galleries.php:582
1127
- #: filemanager/view.php:218 filemanager/view.php:219 photo-gallery.php:1435
1128
- msgid "Cancel"
1129
- msgstr ""
1130
 
1131
- #: admin/views/Galleries.php:436
1132
- msgid "<b>Youtube</b> URL example:"
1133
- msgstr ""
1134
 
1135
- #: admin/views/Galleries.php:440
1136
- msgid "<b>Vimeo</b> URL example:"
1137
- msgstr ""
1138
 
1139
- #: admin/views/Galleries.php:444
1140
- msgid "<b>Instagram</b> URL example:"
1141
- msgstr ""
1142
 
1143
- #: admin/views/Galleries.php:446
1144
- msgid "post"
1145
- msgstr ""
1146
 
1147
- #: admin/views/Galleries.php:446
1148
- msgid ""
1149
- "to the end of URL if you want to embed the whole Instagram post, not only "
1150
- "its content."
1151
- msgstr ""
1152
 
1153
- #: admin/views/Galleries.php:454
1154
- msgid "<b>Flickr</b> URL example:"
1155
- msgstr ""
1156
 
1157
- #: admin/views/Galleries.php:458
1158
- msgid "<b>Dailymotion</b> URL example:"
1159
- msgstr ""
1160
 
1161
- #: admin/views/Galleries.php:477
1162
- msgid "username:"
1163
- msgstr ""
1164
 
1165
- #: admin/views/Galleries.php:485
1166
- msgid "Number of Instagram recent posts to add to gallery:"
1167
- msgstr ""
1168
 
1169
- #: admin/views/Galleries.php:493
1170
- msgid "embed type:"
1171
- msgstr ""
1172
 
1173
- #: admin/views/Galleries.php:512
1174
- msgid "Resize images to: "
1175
- msgstr ""
1176
 
1177
- #: admin/views/Galleries.php:515
1178
- msgid "The maximum size of resized image."
1179
- msgstr ""
1180
 
1181
- #: admin/views/Galleries.php:521 framework/WDWLibrary.php:2422
1182
- msgid "Resize"
1183
- msgstr ""
1184
 
1185
- #: admin/views/Galleries.php:532
1186
- msgid "Alt/Title: "
1187
- msgstr ""
1188
 
1189
- #: admin/views/Galleries.php:535
1190
- msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
1191
- msgstr ""
1192
 
1193
- #: admin/views/Galleries.php:542 admin/views/Galleries.php:561
1194
- #: admin/views/Galleries.php:581
1195
- msgid "Save changes"
1196
- msgstr ""
1197
 
1198
- #: admin/views/Galleries.php:551
1199
- msgid "Redirect URL: "
1200
- msgstr ""
1201
 
1202
- #: admin/views/Galleries.php:554
1203
- msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
1204
- msgstr ""
1205
 
1206
- #: admin/views/Galleries.php:570
1207
- msgid "Description: "
1208
- msgstr ""
1209
 
1210
- #: admin/views/Galleries.php:573
1211
- msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
1212
- msgstr ""
1213
 
1214
- #: admin/views/Galleries.php:599
1215
- #, fuzzy
1216
- #| msgid "You have already rated."
1217
- msgid "You have unsaved changes."
1218
- msgstr "Вы уже оценили."
1219
 
1220
- #: admin/views/Galleries.php:604
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:621 photo-gallery.php:616
1227
- #, fuzzy
1228
- #| msgid "Show comments"
1229
- msgid "Show order column"
1230
- msgstr "Показать комментарии"
1231
 
1232
- #: admin/views/Galleries.php:623
1233
- msgid "Numerate"
1234
- msgstr ""
1235
 
1236
- #: admin/views/Galleries.php:629
1237
- #, fuzzy
1238
- #| msgid "Order by: "
1239
- msgid "Ordering"
1240
- msgstr "Сортировка по"
1241
-
1242
- #: admin/views/Galleries.php:635 admin/views/Galleries.php:702
1243
- #: admin/views/Options.php:1147 admin/views/Options.php:1365
1244
- #: admin/views/Options.php:1601 admin/views/Options.php:1798
1245
- #: admin/views/Options.php:2038 admin/views/Options.php:2197
1246
- #: admin/views/Options.php:2374 admin/views/Options.php:2581
1247
- #: admin/views/Options.php:2881 admin/views/Options.php:3121
1248
- #: frontend/views/view.php:427
1249
- msgid "Filename"
1250
- msgstr "Имени файла"
1251
 
1252
- #: admin/views/Galleries.php:640 admin/views/Options.php:681
1253
- #: admin/views/Options.php:834 admin/views/Ratings.php:57
1254
- #: admin/views/Ratings.php:74 admin/views/Shortcode.php:301
1255
- #: admin/views/WidgetTags.php:84
1256
- msgid "Image"
1257
- msgstr ""
1258
 
1259
- #: admin/views/Galleries.php:712 admin/views/Options.php:1150
1260
- #: admin/views/Options.php:1368 admin/views/Options.php:1604
1261
- #: admin/views/Options.php:1801 admin/views/Options.php:2041
1262
- #: admin/views/Options.php:2200 admin/views/Options.php:2377
1263
- #: admin/views/Options.php:2584 admin/views/Options.php:2884
1264
- #: admin/views/Options.php:3124
1265
- msgid "Resolution"
1266
- msgstr ""
1267
 
1268
- #: admin/views/Galleries.php:713 admin/views/Options.php:1148
1269
- #: admin/views/Options.php:1366 admin/views/Options.php:1602
1270
- #: admin/views/Options.php:1799 admin/views/Options.php:2039
1271
- #: admin/views/Options.php:2198 admin/views/Options.php:2375
1272
- #: admin/views/Options.php:2582 admin/views/Options.php:2882
1273
- #: admin/views/Options.php:3122 filemanager/view.php:151
1274
- #: frontend/views/view.php:430
1275
- msgid "Size"
1276
- msgstr "Размеру"
1277
 
1278
- #: admin/views/Galleries.php:726 admin/views/Galleries.php:727
1279
- #: admin/views/Options.php:157 admin/views/Options.php:957
1280
- #: admin/views/Options.php:960
1281
- msgid "Image edit functionality is not supported by your web host."
1282
- msgstr ""
1283
 
1284
- #: admin/views/Galleries.php:727
1285
- msgid "Crop Thumbnail"
1286
- msgstr ""
1287
 
1288
- #: admin/views/Galleries.php:728 admin/views/Themes.php:191
1289
- #: framework/WDWLibrary.php:350 framework/WDWLibrary.php:528
1290
- #: framework/WDWLibrary.php:2447 frontend/views/view.php:377
1291
- msgid "Reset"
1292
- msgstr "Сброс"
1293
 
1294
- #: admin/views/Galleries.php:748
1295
- msgid "Alt/Title"
1296
- msgstr ""
1297
 
1298
- #: admin/views/Galleries.php:770
1299
- msgid "Redirect URL"
1300
- msgstr ""
1301
 
1302
- #: admin/views/Galleries.php:774
1303
- msgid "Options > General"
1304
- msgstr ""
1305
 
1306
- #: admin/views/Galleries.php:775
1307
- #, php-format
1308
- msgid ""
1309
- "To activate this feature, go to %s, then set \"Image click action\" to "
1310
- "\"Redirect to URL\". Please use absolute URLs when specifying the links."
1311
- msgstr ""
1312
 
1313
- #: admin/views/Galleries.php:793
1314
- msgid "Remove tag"
1315
- msgstr ""
1316
 
1317
- #: admin/views/Galleries.php:803
1318
- msgid "Add tag"
1319
- msgstr ""
1320
 
1321
- #: admin/views/LibSubscribe.php:12
1322
- msgid ""
1323
- "Hey! I know how hard and time-consuming creating a well-structured gallery "
1324
- "can be."
1325
- msgstr ""
1326
 
1327
- #: admin/views/LibSubscribe.php:19
1328
- msgid "Name is required."
1329
- msgstr ""
1330
 
1331
- #: admin/views/LibSubscribe.php:20
1332
- #, fuzzy
1333
- #| msgid "This is not a valid email address."
1334
- msgid "Please enter a valid email."
1335
- msgstr "Это неправильный адрес электронной почты."
1336
 
1337
- #: admin/views/LibSubscribe.php:62
1338
- msgid ""
1339
- "So, I handcrafted a step-by-step ebook to make it super easy for you. Enjoy "
1340
- msgstr ""
1341
 
1342
- #: admin/views/LibSubscribe.php:69
1343
- msgid "NAME"
1344
- msgstr ""
1345
 
1346
- #: admin/views/LibSubscribe.php:74
1347
- msgid "EMAIL ADDRESS"
1348
- msgstr ""
1349
 
1350
- #: admin/views/LibSubscribe.php:78
1351
- msgid ""
1352
- "Keep in mind that submitting this form will allow 10Web to store your name, "
1353
- "email, and site URL. Being GDPR-compliant, we won’t ever share your info "
1354
- "with third parties..."
1355
- msgstr ""
1356
 
1357
- #: admin/views/LibSubscribe.php:83 wd/templates/display_subscribe.php:29
1358
- msgid "Skip"
1359
- msgstr "Пропустить"
1360
 
1361
- #: admin/views/Options.php:47 admin/views/Themes.php:181
1362
- msgid "Save"
1363
- msgstr ""
1364
 
1365
- #: admin/views/Options.php:53
1366
- msgid "Reset all options"
1367
- msgstr ""
 
1368
 
1369
- #: admin/views/Options.php:54 admin/views/Themes.php:186
1370
- msgid "Do you want to reset to default?"
1371
- msgstr ""
1372
 
1373
- #: admin/views/Options.php:77
1374
- msgid "Gallery defaults"
1375
- msgstr "Настройки по умолчанию для галереи"
1376
 
1377
- #: admin/views/Options.php:80
1378
- msgid "Gallery Group defaults"
1379
- msgstr "Настройки группы галереи"
1380
 
1381
- #: admin/views/Options.php:83
1382
- msgid "Lightbox defaults"
1383
- msgstr ""
1384
 
1385
- #: admin/views/Options.php:89 photo-gallery.php:1543
1386
- msgid "Watermark"
1387
- msgstr ""
1388
 
1389
- #: admin/views/Options.php:109
1390
- msgid "Images directory"
1391
- msgstr ""
1392
 
1393
- #: admin/views/Options.php:114
1394
- msgid ""
1395
- "Provide the path of an existing folder inside the WordPress directory of "
1396
- "your website to store uploaded images.<br />The content of the previous "
1397
- "directory will be moved to the new one."
1398
- msgstr ""
1399
 
1400
- #: admin/views/Options.php:122 admin/views/Options.php:3333
1401
- msgid "Image click action"
1402
- msgstr ""
1403
 
1404
- #: admin/views/Options.php:124 admin/views/Options.php:3335
1405
- msgid "Open lightbox"
1406
- msgstr ""
1407
 
1408
- #: admin/views/Options.php:125 admin/views/Options.php:3336
1409
- msgid "Redirect to url"
1410
- msgstr ""
1411
 
1412
- #: admin/views/Options.php:126 admin/views/Options.php:3337
1413
- msgid "Do Nothing"
1414
- msgstr ""
1415
 
1416
- #: admin/views/Options.php:128 admin/views/Options.php:3339
1417
- msgid "Select the action which runs after clicking on gallery thumbnails."
1418
- msgstr ""
1419
 
1420
- #: admin/views/Options.php:132 admin/views/Options.php:3343
1421
- msgid "Open in a new window"
1422
- msgstr ""
1423
 
1424
- #: admin/views/Options.php:142 admin/views/Options.php:2335
1425
- msgid "Image dimensions"
1426
- msgstr ""
1427
 
1428
- #: admin/views/Options.php:147
1429
- msgid ""
1430
- "Specify the maximum dimensions of uploaded images (set 0 for original size)."
1431
- msgstr ""
1432
 
1433
- #: admin/views/Options.php:152
1434
- msgid "Generated thumbnail dimensions"
1435
- msgstr ""
1436
 
1437
- #: admin/views/Options.php:157 photo-gallery.php:417
1438
- msgid "Recreate"
1439
- msgstr ""
1440
 
1441
- #: admin/views/Options.php:159
1442
- msgid ""
1443
- "Specify the maximum dimensions of generated thumbnails. They must be larger "
1444
- "than frontend thumbnail dimensions."
1445
- msgstr ""
1446
 
1447
- #: admin/views/Options.php:164
1448
- msgid "Image quality"
1449
- msgstr ""
1450
 
1451
- #: admin/views/Options.php:168
1452
- msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
1453
- msgstr ""
1454
 
1455
- #: admin/views/Options.php:173
1456
- msgid "Resizable thumbnails"
1457
- msgstr ""
1458
 
1459
- #: admin/views/Options.php:178
1460
- msgid ""
1461
- "Enable this option to allow resizing gallery thumbnails on smaller screens."
1462
- msgstr ""
1463
 
1464
- #: admin/views/Options.php:183
1465
- msgid "Lazy load"
1466
- msgstr ""
1467
 
1468
- #: admin/views/Options.php:188
1469
- msgid ""
1470
- "Enable this option to activate lazy loading for images and improve the "
1471
- "loading speed on your galleries."
1472
- msgstr ""
1473
 
1474
- #: admin/views/Options.php:193
1475
- msgid "Preload images"
1476
- msgstr ""
1477
 
1478
- #: admin/views/Options.php:198
1479
- msgid ""
1480
- "If this setting is enabled, Photo Gallery loads a specific number of images "
1481
- "before opening lightbox. This lets you showcase images without loading "
1482
- "delays, providing better user experience."
1483
- msgstr ""
1484
 
1485
- #: admin/views/Options.php:203
1486
- #, fuzzy
1487
- #| msgid "Number of image columns"
1488
- msgid "Number of preloaded images"
1489
- msgstr "Количество столбцов изображения"
1490
 
1491
- #: admin/views/Options.php:207
1492
- msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
1493
- msgstr ""
1494
 
1495
- #: admin/views/Options.php:212
1496
- #, fuzzy
1497
- #| msgid "Show comments"
1498
- msgid "Show custom posts"
1499
- msgstr "Показать комментарии"
1500
 
1501
- #: admin/views/Options.php:217
1502
- msgid ""
1503
- "Activate this setting to display Photo Gallery custom posts with new menu "
1504
- "items under WordPress admin menu."
1505
- msgstr ""
1506
 
1507
- #: admin/views/Options.php:222
1508
- msgid "Discourage Search Engine Visibility"
1509
- msgstr ""
1510
 
1511
- #: admin/views/Options.php:227
1512
- msgid "Discourage search engines from indexing Photo Gallery custom posts."
1513
- msgstr ""
1514
 
1515
- #: admin/views/Options.php:232
1516
- #, fuzzy
1517
- #| msgid "Show comments"
1518
- msgid "Show comments for custom posts"
1519
- msgstr "Показать комментарии"
1520
 
1521
- #: admin/views/Options.php:237
1522
- msgid ""
1523
- "Use this setting to show or hide comments under Photo Gallery custom posts."
1524
- msgstr ""
1525
 
1526
- #: admin/views/Options.php:242
1527
- msgid "Use AND operator for tag filtering"
1528
- msgstr ""
1529
 
1530
- #: admin/views/Options.php:247
1531
- msgid ""
1532
- "Enable this option to filter images with AND operator. In this case, the "
1533
- "filter results must have all selected tags in the Tag Box."
1534
- msgstr ""
1535
 
1536
- #: admin/views/Options.php:254
1537
- msgid "Save IP "
1538
- msgstr ""
1539
 
1540
- #: admin/views/Options.php:259
1541
- msgid "Disable saving user IP address when rating the images."
1542
- msgstr ""
 
 
 
 
 
 
 
 
 
1543
 
1544
- #: admin/views/Options.php:265
1545
- msgid "Right-click protection"
1546
- msgstr ""
1547
 
1548
- #: admin/views/Options.php:270
1549
- msgid "Switch off right-click on your gallery images by enabling this setting."
1550
- msgstr ""
1551
 
1552
- #: admin/views/Options.php:275
1553
- msgid "Include styles/scripts on gallery pages only"
1554
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
1555
 
1556
- #: admin/views/Options.php:280
1557
- msgid ""
1558
- "If this option is enabled, CSS and Javascript files of Photo Gallery will "
1559
- "only load on pages with galleries and gallery groups."
1560
- msgstr ""
1561
 
1562
- #: admin/views/Options.php:285
1563
- #, fuzzy
1564
- #| msgid "Show comments"
1565
- msgid "Enable Google fonts"
1566
- msgstr "Показать комментарии"
1567
 
1568
- #: admin/views/Options.php:290
1569
- msgid ""
1570
- "If this option is disabled, Google fonts will not be included in your pages."
1571
- msgstr ""
 
 
1572
 
1573
- #: admin/views/Options.php:295
1574
- #, fuzzy
1575
- #| msgid "Hide info"
1576
- msgid "Enable HTML editor"
1577
- msgstr "Скрыть информацию"
1578
 
1579
- #: admin/views/Options.php:300
1580
- msgid ""
1581
- "Description text boxes of Photo Gallery will use TinyMCE editor, in case "
1582
- "this setting is enabled."
1583
- msgstr ""
1584
 
1585
- #: admin/views/Options.php:305
1586
- msgid "Enable href attribute"
1587
- msgstr ""
1588
 
1589
- #: admin/views/Options.php:310
1590
- msgid "Disable this option only if Photo Gallery conflicts with your theme."
1591
- msgstr ""
 
1592
 
1593
- #: admin/views/Options.php:315
1594
- msgid "Auto-fill metadata"
1595
- msgstr ""
1596
 
1597
- #: admin/views/Options.php:320
1598
- msgid ""
1599
- "Enabling this option will let the plugin fill in meta descriptions of photos "
1600
- "into Image Description option automatically."
1601
- msgstr ""
 
 
 
 
1602
 
1603
- #: admin/views/Options.php:325 admin/views/Options.php:328
1604
- #: photo-gallery.php:491
1605
- msgid "Generate Shortcode"
1606
- msgstr ""
1607
 
1608
- #: admin/views/Options.php:331
1609
- msgid ""
1610
- "Generate or edit Photo Gallery shortcodes that are used to publish galleries "
1611
- "or gallery groups."
1612
- msgstr ""
1613
 
1614
- #: admin/views/Options.php:334
1615
- #, fuzzy
1616
- #| msgid "Galleries and Gallery Groups"
1617
- msgid "Enable dynamic URLs for galleries and gallery groups"
1618
- msgstr "Галереи и Группы галереи"
1619
 
1620
- #: admin/views/Options.php:337
1621
- msgid ""
1622
- "Enable this option to browse galleries and gallery groups, as well as search "
1623
- "results and tagged images with dynamic links."
1624
- msgstr ""
1625
 
1626
- #: admin/views/Options.php:340
1627
- msgid "Developer mode"
1628
- msgstr ""
1629
 
1630
- #: admin/views/Options.php:343
1631
- msgid ""
1632
- "Do not use minified JS and CSS files. Enable this option if You need to "
1633
- "debug JS or CSS issues."
1634
- msgstr ""
1635
 
1636
- #: admin/views/Options.php:354 photo-gallery.php:490
1637
- msgid "Uninstall"
1638
- msgstr ""
1639
 
1640
- #: admin/views/Options.php:357
1641
- msgid ""
1642
- "Note, that uninstalling Photo Gallery will completely remove all galleries, "
1643
- "gallery groups and other data on the plugin. Please make sure you don't have "
1644
- "any important information before you proceed."
1645
- msgstr ""
1646
 
1647
- #: admin/views/Options.php:430 admin/views/Options.php:487
1648
- #: admin/views/Shortcode.php:123 admin/views/Shortcode.php:160
1649
- msgid "View type"
1650
- msgstr ""
1651
 
1652
- #: admin/views/Options.php:447 admin/views/Options.php:504
1653
- #: admin/views/Shortcode.php:177
1654
- msgid "This view is not available in free version."
1655
- msgstr ""
1656
 
1657
- #: admin/views/Options.php:532
1658
- msgid "Social"
1659
- msgstr ""
 
1660
 
1661
- #: admin/views/Options.php:538
1662
- msgid "Gallery autoupdate interval"
1663
- msgstr "Интервал автообновления галереии"
 
 
1664
 
1665
- #: admin/views/Options.php:541
1666
- msgid "hour"
1667
- msgstr ""
 
1668
 
1669
- #: admin/views/Options.php:543
1670
- msgid "min"
1671
- msgstr ""
1672
 
1673
- #: admin/views/Options.php:545
1674
- msgid ""
1675
- "Set the interval when Instagram galleries will be updated, and will display "
1676
- "new posts of your Instagram or Facebook account."
1677
- msgstr ""
1678
 
1679
- #: admin/views/Options.php:551
1680
- msgid "Instagram"
1681
- msgstr ""
1682
 
1683
- #: admin/views/Options.php:557
1684
- msgid ""
1685
- "Press this button to sign in to your Instagram account. In this case, access "
1686
- "token will be added automatically."
1687
- msgstr ""
1688
 
1689
- #: admin/views/Options.php:561
1690
- msgid "Sign in with Instagram"
1691
- msgstr ""
 
1692
 
1693
- #: admin/views/Options.php:563
1694
- msgid ""
1695
- "Press this button to sign in to your Instagram account. This lets you "
1696
- "incorporate Instagram API to your website."
1697
- msgstr ""
1698
 
1699
- #: admin/views/Options.php:566
1700
- msgid ""
1701
- "Press this button to sign out from your Instagram account. The access token "
1702
- "will reset."
1703
- msgstr ""
1704
 
1705
- #: admin/views/Options.php:568
1706
- msgid ""
1707
- "Are you sure you want to reset access token, after resetting it you will "
1708
- "need to log in with Instagram again for using plugin"
1709
- msgstr ""
1710
 
1711
- #: admin/views/Options.php:570
1712
- msgid "Sign out from Instagram"
1713
- msgstr ""
1714
 
1715
- #: admin/views/Options.php:572
1716
- msgid "Press this button to sign out from your Instagram account."
1717
- msgstr ""
1718
 
1719
- #: admin/views/Options.php:600 admin/views/Options.php:606
1720
- msgid "Roles"
1721
- msgstr ""
1722
 
1723
- #: admin/views/Options.php:618
1724
- msgid ""
1725
- "Choose a WordPress user role which can add and edit galleries, images, "
1726
- "gallery groups and tags."
1727
- msgstr ""
1728
 
1729
- #: admin/views/Options.php:626
1730
- msgid "Gallery role restrictions"
1731
- msgstr "Ограничения роли галереи"
1732
 
1733
- #: admin/views/Options.php:631
1734
- msgid ""
1735
- "Enable this setting to restrict authors from modifying galleries created by "
1736
- "other users."
1737
- msgstr ""
1738
 
1739
- #: admin/views/Options.php:637
1740
- msgid "Gallery group restrictions"
1741
- msgstr "Ограничения группы галереи"
1742
 
1743
- #: admin/views/Options.php:642
1744
- msgid ""
1745
- "Enabling this option will restrict authors from modifying galleries groups "
1746
- "created by other users."
1747
- msgstr ""
1748
 
1749
- #: admin/views/Options.php:648
1750
- msgid "Image role restrictions"
1751
- msgstr ""
1752
 
1753
- #: admin/views/Options.php:653
1754
- msgid ""
1755
- "Enable this setting to restrict authors from modifying images added by other "
1756
- "users."
1757
- msgstr ""
1758
 
1759
- #: admin/views/Options.php:668 photo-gallery.php:1547 photo-gallery.php:1662
1760
- msgid "Advertisement"
1761
- msgstr ""
1762
 
1763
- #: admin/views/Options.php:674 admin/views/Shortcode.php:298
1764
- msgid "Advertisement type"
1765
- msgstr ""
1766
 
1767
- #: admin/views/Options.php:679 admin/views/Options.php:832
1768
- #: admin/views/Shortcode.php:300 admin/views/Themes.php:4760
1769
- #: admin/views/WidgetTags.php:83
1770
- msgid "Text"
1771
- msgstr ""
1772
 
1773
- #: admin/views/Options.php:683 admin/views/Shortcode.php:302
1774
- msgid "Add Text or Image advertisement to your images with this option."
1775
- msgstr ""
1776
 
1777
- #: admin/views/Options.php:688 admin/views/Shortcode.php:315
1778
- msgid "Advertisement URL"
1779
- msgstr ""
1780
 
1781
- #: admin/views/Options.php:696 admin/views/Options.php:698
1782
- #: admin/views/Options.php:849 admin/views/Options.php:851
1783
- #, fuzzy
1784
- #| msgid "Reset"
1785
- msgid "Select Image"
1786
- msgstr "Сброс"
1787
 
1788
- #: admin/views/Options.php:700 admin/views/Options.php:853
1789
- #: filemanager/view.php:246
1790
- msgid "or"
1791
- msgstr "или"
 
1792
 
1793
- #: admin/views/Options.php:703 admin/views/Shortcode.php:317
1794
- msgid ""
1795
- "Provide the absolute URL of the image you would like to use as advertisement."
1796
- msgstr ""
1797
 
1798
- #: admin/views/Options.php:708 admin/views/Shortcode.php:322
1799
- msgid "Advertisement text"
1800
- msgstr ""
1801
 
1802
- #: admin/views/Options.php:712 admin/views/Shortcode.php:324
1803
- msgid "Write the text to add to images as advertisement."
1804
- msgstr ""
 
 
1805
 
1806
- #: admin/views/Options.php:717 admin/views/Shortcode.php:308
1807
- msgid "Advertisement link"
1808
- msgstr ""
 
 
1809
 
1810
- #: admin/views/Options.php:721 admin/views/Shortcode.php:310
1811
- msgid "Provide the link to be added to advertisement on images."
1812
- msgstr ""
1813
 
1814
- #: admin/views/Options.php:726 admin/views/Shortcode.php:362
1815
- msgid "Advertisement dimensions"
1816
- msgstr ""
1817
 
1818
- #: admin/views/Options.php:731 admin/views/Shortcode.php:367
1819
- msgid "Select the dimensions of the advertisement image."
1820
- msgstr ""
1821
 
1822
- #: admin/views/Options.php:736 admin/views/Shortcode.php:353
1823
- msgid "Advertisement font size"
1824
- msgstr ""
 
1825
 
1826
- #: admin/views/Options.php:740 admin/views/Shortcode.php:357
1827
- msgid "Specify the font size of the advertisement text."
1828
- msgstr ""
1829
 
1830
- #: admin/views/Options.php:745 admin/views/Shortcode.php:331
1831
- msgid "Advertisement font style"
1832
- msgstr ""
1833
 
1834
- #: admin/views/Options.php:760 admin/views/Shortcode.php:345
1835
- #: admin/views/Themes.php:408 admin/views/Themes.php:471
1836
- #: admin/views/Themes.php:704 admin/views/Themes.php:759
1837
- #: admin/views/Themes.php:793 admin/views/Themes.php:1028
1838
- #: admin/views/Themes.php:1090 admin/views/Themes.php:1474
1839
- #: admin/views/Themes.php:1535 admin/views/Themes.php:1760
1840
- #: admin/views/Themes.php:1848 admin/views/Themes.php:2106
1841
- #: admin/views/Themes.php:2168 admin/views/Themes.php:2223
1842
- #: admin/views/Themes.php:2559 admin/views/Themes.php:2716
1843
- #: admin/views/Themes.php:2797 admin/views/Themes.php:2857
1844
- #: admin/views/Themes.php:3095 admin/views/Themes.php:3150
1845
- #: admin/views/Themes.php:3205 admin/views/Themes.php:3341
1846
- #: admin/views/Themes.php:3510 admin/views/Themes.php:4157
1847
- #: admin/views/Themes.php:4299 admin/views/Themes.php:4348
1848
- #: admin/views/Themes.php:4424 admin/views/Themes.php:4608
1849
- #: admin/views/Themes.php:4993
1850
- msgid "Google fonts"
1851
- msgstr ""
1852
 
1853
- #: admin/views/Options.php:762 admin/views/Options.php:1144
1854
- #: admin/views/Options.php:1362 admin/views/Options.php:1598
1855
- #: admin/views/Options.php:1795 admin/views/Options.php:2035
1856
- #: admin/views/Options.php:2194 admin/views/Options.php:2371
1857
- #: admin/views/Options.php:2561 admin/views/Options.php:2578
1858
- #: admin/views/Options.php:2861 admin/views/Options.php:2878
1859
- #: admin/views/Options.php:3101 admin/views/Options.php:3118
1860
- #: admin/views/Shortcode.php:347 admin/views/Themes.php:81
1861
- #: admin/views/Themes.php:112 admin/views/Themes.php:410
1862
- #: admin/views/Themes.php:473 admin/views/Themes.php:706
1863
- #: admin/views/Themes.php:761 admin/views/Themes.php:795
1864
- #: admin/views/Themes.php:1030 admin/views/Themes.php:1092
1865
- #: admin/views/Themes.php:1476 admin/views/Themes.php:1537
1866
- #: admin/views/Themes.php:1762 admin/views/Themes.php:1850
1867
- #: admin/views/Themes.php:2108 admin/views/Themes.php:2170
1868
- #: admin/views/Themes.php:2225 admin/views/Themes.php:2561
1869
- #: admin/views/Themes.php:2718 admin/views/Themes.php:2799
1870
- #: admin/views/Themes.php:2859 admin/views/Themes.php:3097
1871
- #: admin/views/Themes.php:3152 admin/views/Themes.php:3207
1872
- #: admin/views/Themes.php:3343 admin/views/Themes.php:3512
1873
- #: admin/views/Themes.php:4159 admin/views/Themes.php:4301
1874
- #: admin/views/Themes.php:4350 admin/views/Themes.php:4426
1875
- #: admin/views/Themes.php:4610 admin/views/Themes.php:4995
1876
- msgid "Default"
1877
- msgstr "По умолчанию"
1878
 
1879
- #: admin/views/Options.php:764 admin/views/Shortcode.php:348
1880
- msgid "Select the font family of the advertisement text."
1881
- msgstr ""
1882
 
1883
- #: admin/views/Options.php:769 admin/views/Shortcode.php:372
1884
- msgid "Advertisement color"
1885
- msgstr ""
1886
 
1887
- #: admin/views/Options.php:773 admin/views/Shortcode.php:374
1888
- msgid "Choose the color for the advertisement text on images."
1889
- msgstr ""
1890
 
1891
- #: admin/views/Options.php:778 admin/views/Shortcode.php:381
1892
- msgid "Advertisement opacity"
1893
- msgstr ""
1894
 
1895
- #: admin/views/Options.php:782 admin/views/Shortcode.php:385
1896
- msgid ""
1897
- "Specify the opacity of the advertisement. The value must be between 0 to 100."
1898
- msgstr ""
1899
 
1900
- #: admin/views/Options.php:787 admin/views/Shortcode.php:390
1901
- msgid "Advertisement position"
1902
- msgstr ""
1903
 
1904
- #: admin/views/Options.php:810 admin/views/Shortcode.php:410
1905
- msgid "Mark the position where the advertisement should appear on images."
1906
- msgstr ""
 
1907
 
1908
- #: admin/views/Options.php:827
1909
- msgid "Watermark type"
1910
- msgstr ""
1911
 
1912
- #: admin/views/Options.php:836
1913
- msgid "Add Text or Image watermark to your images with this option."
1914
- msgstr ""
 
 
1915
 
1916
- #: admin/views/Options.php:841
1917
- msgid "Watermark URL"
1918
- msgstr ""
1919
 
1920
- #: admin/views/Options.php:856
1921
- msgid ""
1922
- "Provide the absolute URL of the image you would like to use as watermark."
1923
- msgstr ""
1924
 
1925
- #: admin/views/Options.php:856
1926
- msgid "Only .png format is supported."
1927
- msgstr ""
1928
 
1929
- #: admin/views/Options.php:861
1930
- msgid "Watermark text"
1931
- msgstr ""
 
 
1932
 
1933
- #: admin/views/Options.php:865
1934
- msgid "Provide the text to add to images as watermark."
1935
- msgstr ""
1936
 
1937
- #: admin/views/Options.php:870
1938
- msgid "Watermark size"
1939
- msgstr ""
 
1940
 
1941
- #: admin/views/Options.php:874
1942
- msgid "Specify the size of watermark on images in percent."
1943
- msgstr ""
1944
 
1945
- #: admin/views/Options.php:879
1946
- msgid "Watermark font size"
1947
- msgstr ""
 
 
1948
 
1949
- #: admin/views/Options.php:883
1950
- msgid "Specify the font size of the watermark text."
1951
- msgstr ""
1952
 
1953
- #: admin/views/Options.php:888
1954
- msgid "Watermark font style"
1955
- msgstr ""
1956
 
1957
- #: admin/views/Options.php:912
1958
- msgid "Select the font family of the watermark text."
1959
- msgstr ""
1960
 
1961
- #: admin/views/Options.php:917
1962
- msgid "Watermark color"
1963
- msgstr ""
 
 
 
1964
 
1965
- #: admin/views/Options.php:921
1966
- msgid "Choose the color for the watermark text on images."
1967
- msgstr ""
1968
 
1969
- #: admin/views/Options.php:926
1970
- msgid "Watermark opacity"
1971
- msgstr ""
1972
 
1973
- #: admin/views/Options.php:930
1974
- msgid ""
1975
- "Specify the opacity of the watermark. The value must be between 0 to 100."
1976
- msgstr ""
1977
 
1978
- #: admin/views/Options.php:935
1979
- msgid "Watermark position"
1980
- msgstr ""
1981
 
1982
- #: admin/views/Options.php:956 framework/WDWLibrary.php:2442
1983
- msgid "Set watermark"
1984
- msgstr ""
1985
 
1986
- #: admin/views/Options.php:958
1987
- msgid "Set Watermark"
1988
- msgstr ""
1989
 
1990
- #: admin/views/Options.php:959
1991
- msgid "Reset watermark"
1992
- msgstr ""
1993
 
1994
- #: admin/views/Options.php:961
1995
- msgid "Reset Watermark"
1996
- msgstr ""
1997
 
1998
- #: admin/views/Options.php:963
1999
- msgid "Mark the position where the watermark should appear on images."
2000
- msgstr ""
2001
 
2002
- #: admin/views/Options.php:1087 admin/views/Options.php:2513
2003
- #: admin/views/Options.php:3053 admin/views/Shortcode.php:2152
2004
- msgid "Thumbnail dimensions"
2005
- msgstr ""
2006
 
2007
- #: admin/views/Options.php:1092 admin/views/Options.php:2518
2008
- #: admin/views/Options.php:2818 admin/views/Options.php:3058
2009
- msgid ""
2010
- "The default dimensions of thumbnails which will display on published "
2011
- "galleries."
2012
- msgstr ""
2013
 
2014
- #: admin/views/Options.php:1097 admin/views/Options.php:1314
2015
- #: admin/views/Options.php:2504 admin/views/Options.php:2805
2016
- #: admin/views/Options.php:3044 admin/views/Shortcode.php:2154
2017
- msgid "Number of image columns"
2018
- msgstr "Количество столбцов изображения"
 
 
2019
 
2020
- #: admin/views/Options.php:1101 admin/views/Options.php:2508
2021
- #: admin/views/Options.php:2809 admin/views/Options.php:3048
2022
- msgid ""
2023
- "Set the maximum number of image columns in galleries. Note, that the parent "
2024
- "container needs to be large enough to display all columns."
2025
- msgstr ""
2026
 
2027
- #: admin/views/Options.php:1106 admin/views/Options.php:1324
2028
- #: admin/views/Options.php:1560 admin/views/Options.php:2154
2029
- #: admin/views/Options.php:2523 admin/views/Options.php:2823
2030
- #: admin/views/Options.php:3063
2031
- msgid "Pagination"
2032
- msgstr ""
2033
 
2034
- #: admin/views/Options.php:1109 admin/views/Options.php:1327
2035
- #: admin/views/Options.php:1563 admin/views/Options.php:2157
2036
- #: admin/views/Options.php:2526 admin/views/Options.php:2826
2037
- #: admin/views/Options.php:3066
2038
- msgid "Simple"
2039
- msgstr ""
2040
 
2041
- #: admin/views/Options.php:1110 admin/views/Options.php:1328
2042
- #: admin/views/Options.php:1564 admin/views/Options.php:2158
2043
- #: admin/views/Options.php:2527 admin/views/Options.php:2827
2044
- #: admin/views/Options.php:3067
2045
- msgid "Load More"
2046
- msgstr "Загрузить больше"
2047
 
2048
- #: admin/views/Options.php:1111 admin/views/Options.php:1329
2049
- #: admin/views/Options.php:1565 admin/views/Options.php:2159
2050
- #: admin/views/Options.php:2528 admin/views/Options.php:2828
2051
- #: admin/views/Options.php:3068
2052
- msgid "Scroll Load"
2053
- msgstr ""
2054
 
2055
- #: admin/views/Options.php:1113 admin/views/Options.php:1331
2056
- #: admin/views/Options.php:1567 admin/views/Options.php:2161
2057
- #: admin/views/Options.php:2530 admin/views/Options.php:2830
2058
- #: admin/views/Options.php:3070
2059
- msgid "This option removes all types of pagination from your galleries."
2060
- msgstr ""
2061
 
2062
- #: admin/views/Options.php:1114 admin/views/Options.php:1332
2063
- #: admin/views/Options.php:1568 admin/views/Options.php:2162
2064
- #: admin/views/Options.php:2531 admin/views/Options.php:2831
2065
- #: admin/views/Options.php:3071
2066
- msgid ""
2067
- "Activating this option will add page numbers and next/previous buttons to "
2068
- "your galleries."
2069
- msgstr ""
2070
 
2071
- #: admin/views/Options.php:1115 admin/views/Options.php:1333
2072
- #: admin/views/Options.php:1569 admin/views/Options.php:2163
2073
- #: admin/views/Options.php:2532 admin/views/Options.php:2832
2074
- #: admin/views/Options.php:3072
2075
- msgid ""
2076
- "Adding a Load More button, you can let users display a new set of images "
2077
- "from your galleries."
2078
- msgstr ""
2079
 
2080
- #: admin/views/Options.php:1116 admin/views/Options.php:1334
2081
- #: admin/views/Options.php:1570 admin/views/Options.php:2164
2082
- #: admin/views/Options.php:2533 admin/views/Options.php:2833
2083
- #: admin/views/Options.php:3073
2084
- msgid ""
2085
- "With this option, users can load new images of your galleries simply by "
2086
- "scrolling down."
2087
- msgstr ""
2088
 
2089
- #: admin/views/Options.php:1121 admin/views/Options.php:1339
2090
- #: admin/views/Options.php:1575 admin/views/Options.php:2170
2091
- #: admin/views/Options.php:2547 admin/views/Options.php:2847
2092
- #: admin/views/Options.php:3087
2093
- msgid "Images per page"
2094
- msgstr ""
2095
 
2096
- #: admin/views/Options.php:1125 admin/views/Options.php:1343
2097
- #: admin/views/Options.php:1579 admin/views/Options.php:2551
2098
- #: admin/views/Options.php:2851 admin/views/Options.php:3091
2099
- msgid ""
2100
- "Specify the number of images to display per page on galleries. Setting this "
2101
- "option to 0 shows all items."
2102
- msgstr ""
2103
 
2104
- #: admin/views/Options.php:1130 admin/views/Options.php:1348
2105
- #: admin/views/Options.php:1584 admin/views/Options.php:2180
2106
- msgid "Images per load"
2107
- msgstr ""
2108
 
2109
- #: admin/views/Options.php:1134 admin/views/Options.php:1352
2110
- #: admin/views/Options.php:1588 admin/views/Options.php:2184
2111
- msgid "Specify the number of images to display per load on galleries."
2112
- msgstr ""
2113
 
2114
- #: admin/views/Options.php:1142 admin/views/Options.php:1359
2115
- #: admin/views/Options.php:1595 admin/views/Options.php:1792
2116
- #: admin/views/Options.php:2032 admin/views/Options.php:2191
2117
- #: admin/views/Options.php:2368
2118
- #, fuzzy
2119
- #| msgid "Order by: "
2120
- msgid "Order by"
2121
- msgstr "Сортировка по"
2122
-
2123
- #: admin/views/Options.php:1156 admin/views/Options.php:1374
2124
- #: admin/views/Options.php:1610 admin/views/Options.php:1807
2125
- #: admin/views/Options.php:2047 admin/views/Options.php:2206
2126
- #: admin/views/Options.php:2383 admin/views/Options.php:2568
2127
- #: admin/views/Options.php:2590 admin/views/Options.php:2868
2128
- #: admin/views/Options.php:2890 admin/views/Options.php:3108
2129
- #: admin/views/Options.php:3130
2130
- msgid "Ascending"
2131
- msgstr ""
2132
 
2133
- #: admin/views/Options.php:1157 admin/views/Options.php:1375
2134
- #: admin/views/Options.php:1611 admin/views/Options.php:1808
2135
- #: admin/views/Options.php:2048 admin/views/Options.php:2207
2136
- #: admin/views/Options.php:2384 admin/views/Options.php:2569
2137
- #: admin/views/Options.php:2591 admin/views/Options.php:2869
2138
- #: admin/views/Options.php:2891 admin/views/Options.php:3109
2139
- #: admin/views/Options.php:3131
2140
- msgid "Descending"
2141
- msgstr ""
2142
 
2143
- #: admin/views/Options.php:1160 admin/views/Options.php:1378
2144
- #: admin/views/Options.php:1614 admin/views/Options.php:1811
2145
- #: admin/views/Options.php:2051 admin/views/Options.php:2210
2146
- #: admin/views/Options.php:2387 admin/views/Options.php:2594
2147
- #: admin/views/Options.php:2894 admin/views/Options.php:3134
2148
- msgid ""
2149
- "Select the parameter and order direction to sort the gallery images with. E."
2150
- "g. Title and Ascending."
2151
- msgstr ""
2152
 
2153
- #: admin/views/Options.php:1165 admin/views/Options.php:1383
2154
- #: admin/views/Options.php:1619 admin/views/Options.php:2056
2155
- #: admin/views/Options.php:2215 admin/views/Options.php:2599
2156
- #: admin/views/Options.php:2899 admin/views/Options.php:3139
2157
- msgid "Show search box"
2158
- msgstr ""
2159
 
2160
- #: admin/views/Options.php:1170 admin/views/Options.php:1388
2161
- #: admin/views/Options.php:1624 admin/views/Options.php:2061
2162
- #: admin/views/Options.php:2220 admin/views/Options.php:2604
2163
- #: admin/views/Options.php:2904 admin/views/Options.php:3144
2164
- msgid ""
2165
- "Enable this option to display a search box with your gallery or gallery "
2166
- "group."
2167
- msgstr ""
2168
 
2169
- #: admin/views/Options.php:1175 admin/views/Options.php:1393
2170
- #: admin/views/Options.php:1629 admin/views/Options.php:2066
2171
- #: admin/views/Options.php:2225 admin/views/Options.php:2609
2172
- #: admin/views/Options.php:2909 admin/views/Options.php:3149
2173
- msgid "Add placeholder to search"
2174
- msgstr ""
2175
 
2176
- #: admin/views/Options.php:1183 admin/views/Options.php:1401
2177
- #: admin/views/Options.php:1637 admin/views/Options.php:2074
2178
- #: admin/views/Options.php:2233 admin/views/Options.php:2617
2179
- #: admin/views/Options.php:2917 admin/views/Options.php:3157
2180
- msgid "Search box maximum width"
2181
- msgstr ""
2182
 
2183
- #: admin/views/Options.php:1191 admin/views/Options.php:1409
2184
- #: admin/views/Options.php:1645 admin/views/Options.php:2082
2185
- #: admin/views/Options.php:2241 admin/views/Options.php:2625
2186
- #: admin/views/Options.php:2925 admin/views/Options.php:3165
2187
- msgid "Show \"Order by\" dropdown list"
2188
- msgstr ""
2189
 
2190
- #: admin/views/Options.php:1196 admin/views/Options.php:1414
2191
- #: admin/views/Options.php:1650 admin/views/Options.php:2087
2192
- #: admin/views/Options.php:2246 admin/views/Options.php:2630
2193
- #: admin/views/Options.php:2930 admin/views/Options.php:3170
2194
- msgid ""
2195
- "Activate this dropdown box to let users browse your gallery images with "
2196
- "different ordering options."
2197
- msgstr ""
2198
 
2199
- #: admin/views/Options.php:1201 admin/views/Options.php:1419
2200
- #: admin/views/Options.php:1655 admin/views/Options.php:2092
2201
- #: admin/views/Options.php:2251 admin/views/Options.php:2635
2202
- #: admin/views/Options.php:2935 admin/views/Options.php:3175
2203
- #, fuzzy
2204
- #| msgid "Show rating"
2205
- msgid "Show tag box"
2206
- msgstr "Показать рейтинг"
2207
 
2208
- #: admin/views/Options.php:1206 admin/views/Options.php:1424
2209
- #: admin/views/Options.php:1660 admin/views/Options.php:2097
2210
- #: admin/views/Options.php:2256 admin/views/Options.php:2640
2211
- #: admin/views/Options.php:2940 admin/views/Options.php:3180
2212
- msgid ""
2213
- "Enable Tag Box to allow users to filter the gallery images by their tags."
2214
- msgstr ""
2215
 
2216
- #: admin/views/Options.php:1213 admin/views/Options.php:1431
2217
- #: admin/views/Options.php:1667 admin/views/Options.php:2104
2218
- #: admin/views/Options.php:2263 admin/views/Options.php:2667
2219
- msgid "Show gallery title"
2220
- msgstr ""
2221
 
2222
- #: admin/views/Options.php:1218 admin/views/Options.php:1436
2223
- #: admin/views/Options.php:1672 admin/views/Options.php:2109
2224
- #: admin/views/Options.php:2268
2225
- msgid ""
2226
- "Allow users to see the titles of your galleries by enabling this setting."
2227
- msgstr ""
2228
 
2229
- #: admin/views/Options.php:1223 admin/views/Options.php:1441
2230
- #: admin/views/Options.php:1677 admin/views/Options.php:2114
2231
- #: admin/views/Options.php:2273
2232
- msgid "Show gallery description"
2233
- msgstr ""
2234
 
2235
- #: admin/views/Options.php:1228 admin/views/Options.php:1446
2236
- #: admin/views/Options.php:1682 admin/views/Options.php:2119
2237
- #: admin/views/Options.php:2278
2238
- msgid "Display the descriptions of your galleries by activating this option."
2239
- msgstr ""
2240
 
2241
- #: admin/views/Options.php:1233 admin/views/Options.php:1451
2242
- #: admin/views/Options.php:1687 admin/views/Options.php:1879
2243
- #: admin/views/Options.php:2011 admin/views/Options.php:2283
2244
- #: admin/views/Options.php:2415 admin/views/Options.php:2726
2245
- #: admin/views/Options.php:2967 admin/views/Options.php:3265
2246
- msgid "Show image title"
2247
- msgstr ""
2248
 
2249
- #: admin/views/Options.php:1235 admin/views/Options.php:1275
2250
- #: admin/views/Options.php:1453 admin/views/Options.php:1504
2251
- #: admin/views/Options.php:1689 admin/views/Options.php:1728
2252
- #: admin/views/Options.php:2669 admin/views/Options.php:2729
2253
- #: admin/views/Options.php:2771 admin/views/Options.php:2969
2254
- #: admin/views/Options.php:2999 admin/views/Options.php:3268
2255
- #: admin/views/Options.php:3310
2256
- #, fuzzy
2257
- #| msgid "Show info"
2258
- msgid "Show on hover"
2259
- msgstr "Показать информацию"
2260
 
2261
- #: admin/views/Options.php:1236 admin/views/Options.php:1276
2262
- #: admin/views/Options.php:1454 admin/views/Options.php:2670
2263
- #: admin/views/Options.php:2731 admin/views/Options.php:2772
2264
- #: admin/views/Options.php:2970 admin/views/Options.php:3270
2265
- #: admin/views/Options.php:3311
2266
- msgid "Always show"
2267
- msgstr ""
2268
 
2269
- #: admin/views/Options.php:1237 admin/views/Options.php:1277
2270
- #: admin/views/Options.php:1455 admin/views/Options.php:1505
2271
- #: admin/views/Options.php:1690 admin/views/Options.php:1729
2272
- #: admin/views/Options.php:2671 admin/views/Options.php:2733
2273
- #: admin/views/Options.php:2773 admin/views/Options.php:2971
2274
- #: admin/views/Options.php:3000 admin/views/Options.php:3272
2275
- #: admin/views/Options.php:3312
2276
- msgid "Don't show"
2277
- msgstr ""
2278
 
2279
- #: admin/views/Options.php:1239 admin/views/Options.php:1457
2280
- #: admin/views/Options.php:1692 admin/views/Options.php:2735
2281
- #: admin/views/Options.php:2973 admin/views/Options.php:3274
2282
- msgid "Choose to show/hide titles of images, or display them on hover."
2283
- msgstr ""
2284
 
2285
- #: admin/views/Options.php:1244 admin/views/Options.php:1473
2286
- #: admin/views/Options.php:1697 admin/views/Options.php:2740
2287
- #: admin/views/Options.php:3279
2288
- msgid "Show Play icon on video thumbnails"
2289
- msgstr ""
2290
 
2291
- #: admin/views/Options.php:1249 admin/views/Options.php:1478
2292
- #: admin/views/Options.php:1702 admin/views/Options.php:2745
2293
- #: admin/views/Options.php:3284
2294
- msgid "Activate this option to add a Play button on thumbnails of videos."
2295
- msgstr ""
2296
 
2297
- #: admin/views/Options.php:1254 admin/views/Options.php:1483
2298
- #: admin/views/Options.php:1707 admin/views/Options.php:1982
2299
- #: admin/views/Options.php:2124 admin/views/Options.php:2305
2300
- #: admin/views/Options.php:2459 admin/views/Options.php:2750
2301
- #: admin/views/Options.php:2978 admin/views/Options.php:3289
2302
- msgid "Enable bulk download button"
2303
- msgstr ""
2304
 
2305
- #: admin/views/Options.php:1259 admin/views/Options.php:1488
2306
- #: admin/views/Options.php:1712 admin/views/Options.php:1987
2307
- #: admin/views/Options.php:2129 admin/views/Options.php:2310
2308
- #: admin/views/Options.php:2464 admin/views/Options.php:2755
2309
- #: admin/views/Options.php:2983 admin/views/Options.php:3294
2310
- msgid ""
2311
- "Activate this setting to let users download all images of your gallery with "
2312
- "a click."
2313
- msgstr ""
2314
 
2315
- #: admin/views/Options.php:1263 admin/views/Options.php:1492
2316
- #: admin/views/Options.php:1716 admin/views/Options.php:1991
2317
- #: admin/views/Options.php:2133 admin/views/Options.php:2314
2318
- #: admin/views/Options.php:2468 admin/views/Options.php:2759
2319
- #: admin/views/Options.php:2987 admin/views/Options.php:3298
2320
- msgid ""
2321
- "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is "
2322
- "disabled on your website. Please contact your hosting provider and ask them "
2323
- "to enable it."
2324
- msgstr ""
2325
 
2326
- #: admin/views/Options.php:1273 admin/views/Options.php:1502
2327
- #: admin/views/Options.php:1726 admin/views/Options.php:2769
2328
- #: admin/views/Options.php:2997 admin/views/Options.php:3308
2329
- #, fuzzy
2330
- #| msgid "Show comments"
2331
- msgid "Show ecommerce icon"
2332
- msgstr "Показать комментарии"
2333
 
2334
- #: admin/views/Options.php:1279 admin/views/Options.php:1507
2335
- #: admin/views/Options.php:1731 admin/views/Options.php:2775
2336
- #: admin/views/Options.php:3002 admin/views/Options.php:3314
2337
- msgid "Choose to show/hide ecommerce icon, or display them on hover."
2338
- msgstr ""
2339
 
2340
- #: admin/views/Options.php:1305 admin/views/Options.php:1551
2341
- msgid "Thumbnail size"
2342
- msgstr ""
2343
 
2344
- #: admin/views/Options.php:1309 admin/views/Options.php:1555
2345
- msgid ""
2346
- "The default size of thumbnails which will display on published galleries."
2347
- msgstr ""
2348
 
2349
- #: admin/views/Options.php:1315 admin/views/Shortcode.php:2156
2350
- #, fuzzy
2351
- #| msgid "Number of image columns"
2352
- msgid "Number of image rows"
2353
- msgstr "Количество столбцов изображения"
2354
 
2355
- #: admin/views/Options.php:1319
2356
- msgid ""
2357
- "Set the maximum number of image columns (or rows) in galleries. Note, that "
2358
- "the parent container needs to be large enough to display all columns."
2359
- msgstr ""
2360
 
2361
- #: admin/views/Options.php:1462
2362
- #, fuzzy
2363
- #| msgid "Show comments"
2364
- msgid "Show image descriptions"
2365
- msgstr "Показать комментарии"
2366
 
2367
- #: admin/views/Options.php:1467
2368
- msgid "Enable this setting to display descriptions under images."
2369
- msgstr ""
2370
 
2371
- #: admin/views/Options.php:1519 admin/views/Options.php:2694
2372
- #: admin/views/Options.php:3233
2373
- msgid "Mosaic gallery type"
2374
- msgstr "Мозайка"
2375
 
2376
- #: admin/views/Options.php:1521 admin/views/Options.php:2696
2377
- #: admin/views/Options.php:3235
2378
- msgid "Vertical"
2379
- msgstr ""
2380
 
2381
- #: admin/views/Options.php:1522 admin/views/Options.php:2697
2382
- #: admin/views/Options.php:3236
2383
- msgid "Horizontal"
2384
- msgstr ""
2385
 
2386
- #: admin/views/Options.php:1524 admin/views/Options.php:2699
2387
- #: admin/views/Options.php:3238
2388
- msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
2389
- msgstr ""
2390
 
2391
- #: admin/views/Options.php:1530 admin/views/Options.php:2705
2392
- #: admin/views/Options.php:3244
2393
- msgid "Resizable mosaic"
2394
- msgstr ""
2395
 
2396
- #: admin/views/Options.php:1535 admin/views/Options.php:2710
2397
- #: admin/views/Options.php:3249
2398
- msgid ""
2399
- "If this setting is enabled, Photo Gallery resizes all thumbnail images on "
2400
- "Mosaic galleries, without modifying their initial display."
2401
- msgstr ""
2402
 
2403
- #: admin/views/Options.php:1541 admin/views/Options.php:2716
2404
- #: admin/views/Options.php:3255
2405
- msgid "Width of mosaic galleries"
2406
- msgstr ""
2407
 
2408
- #: admin/views/Options.php:1545 admin/views/Options.php:2720
2409
- #: admin/views/Options.php:3259
2410
- msgid ""
2411
- "The total width of mosaic galleries as a percentage of container's width."
2412
- msgstr ""
2413
 
2414
- #: admin/views/Options.php:1743
2415
- msgid "Slideshow effect"
2416
- msgstr ""
2417
 
2418
- #: admin/views/Options.php:1750 admin/views/Options.php:3381
2419
- #: admin/views/WidgetSlideshow.php:105
2420
- msgid "This effect is disabled in free version."
2421
- msgstr ""
2422
 
2423
- #: admin/views/Options.php:1757
2424
- msgid "Select the animation effect for your slideshow."
2425
- msgstr ""
2426
-
2427
- #: admin/views/Options.php:1762 admin/views/Options.php:3393
2428
- msgid "Effect duration"
2429
- msgstr ""
2430
 
2431
- #: admin/views/Options.php:1766
2432
- msgid "Set the duration of your slideshow animation effect."
2433
- msgstr ""
2434
 
2435
- #: admin/views/Options.php:1771 admin/views/Options.php:2403
2436
- #: admin/views/Options.php:3413
2437
- msgid "Time interval"
2438
- msgstr ""
2439
 
2440
- #: admin/views/Options.php:1775
2441
- msgid ""
2442
- "Specify the time interval between slides in Photo Gallery's Slideshow view."
2443
- msgstr ""
 
2444
 
2445
- #: admin/views/Options.php:1780
2446
- msgid "Slideshow dimensions"
2447
- msgstr ""
2448
 
2449
- #: admin/views/Options.php:1785
2450
- msgid "Set the default dimensions of your slideshow galleries."
2451
- msgstr ""
2452
 
2453
- #: admin/views/Options.php:1816 admin/views/Options.php:2392
2454
- msgid "Enable autoplay"
2455
- msgstr ""
2456
 
2457
- #: admin/views/Options.php:1821
2458
- msgid "Activate this option to autoplay slideshow galleries."
2459
- msgstr ""
2460
 
2461
- #: admin/views/Options.php:1826
2462
- msgid "Enable shuffle"
2463
- msgstr ""
2464
 
2465
- #: admin/views/Options.php:1831
2466
- msgid "The slideshow images will be shuffled in case this setting is enabled."
2467
- msgstr ""
2468
 
2469
- #: admin/views/Options.php:1836 admin/views/Options.php:3445
2470
- msgid "Enable control buttons"
2471
- msgstr ""
2472
 
2473
- #: admin/views/Options.php:1841
2474
- msgid "Enable this option to show control buttons on your slideshow galleries."
2475
- msgstr ""
2476
 
2477
- #: admin/views/Options.php:1846 admin/views/Options.php:3569
2478
- msgid "Show Next / Previous buttons"
2479
- msgstr ""
2480
 
2481
- #: admin/views/Options.php:1848 admin/views/Options.php:3571
2482
- msgid "On hover"
2483
- msgstr ""
2484
 
2485
- #: admin/views/Options.php:1849 admin/views/Options.php:3572
2486
- msgid "Always"
2487
- msgstr ""
2488
 
2489
- #: admin/views/Options.php:1851
2490
- msgid ""
2491
- "Display Next/Previous buttons on your slideshow galleries activating this "
2492
- "setting."
2493
- msgstr ""
2494
 
2495
- #: admin/views/Options.php:1858
2496
- msgid "Enable slideshow filmstrip"
2497
- msgstr ""
2498
 
2499
- #: admin/views/Options.php:1863
2500
- msgid ""
2501
- "Add a filmstrip with image thumbnails to your slideshow galleries by "
2502
- "enabling this option."
2503
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2504
 
2505
- #: admin/views/Options.php:1869
2506
- msgid "Slideshow filmstrip size"
2507
- msgstr ""
2508
 
2509
- #: admin/views/Options.php:1873 admin/views/Options.php:3437
2510
- msgid ""
2511
- "Set the size of your filmstrip. If the filmstrip is horizontal, this "
2512
- "indicates its height, whereas for vertical filmstrips it sets the width."
2513
- msgstr ""
2514
 
2515
- #: admin/views/Options.php:1884
2516
- msgid "Enable this setting to display titles of images in Slideshow view."
2517
- msgstr ""
2518
 
2519
- #: admin/views/Options.php:1889
2520
- msgid "Title position"
2521
- msgstr ""
2522
 
2523
- #: admin/views/Options.php:1911
2524
- msgid "Set the position of image titles in Slideshow view."
2525
- msgstr ""
2526
 
2527
- #: admin/views/Options.php:1916
2528
- msgid "Full width title"
2529
- msgstr ""
2530
 
2531
- #: admin/views/Options.php:1921
2532
- msgid "Display image title based on the slideshow dimensions."
2533
- msgstr ""
2534
 
2535
- #: admin/views/Options.php:1926 admin/views/Options.php:2020
2536
- #: admin/views/Options.php:2294
2537
- #, fuzzy
2538
- #| msgid "Show comments"
2539
- msgid "Show image description"
2540
- msgstr "Показать комментарии"
2541
 
2542
- #: admin/views/Options.php:1931
2543
- msgid "Enable this setting to show descriptions of images in Slideshow view."
2544
- msgstr ""
2545
 
2546
- #: admin/views/Options.php:1936
2547
- msgid "Description position"
2548
- msgstr ""
2549
 
2550
- #: admin/views/Options.php:1958
2551
- msgid "Set the position of image descriptions in Slideshow view."
2552
- msgstr ""
2553
 
2554
- #: admin/views/Options.php:1963
2555
- msgid "Enable slideshow Music"
2556
- msgstr ""
2557
 
2558
- #: admin/views/Options.php:1968
2559
- msgid ""
2560
- "Enabling this option, you can have music playing along with your slideshow."
2561
- msgstr ""
2562
 
2563
- #: admin/views/Options.php:1973
2564
- msgid "Audio URL"
2565
- msgstr ""
2566
 
2567
- #: admin/views/Options.php:1977
2568
- msgid ""
2569
- "Provide the absolute URL of the audio file you would like to play with your "
2570
- "slideshow."
2571
- msgstr ""
2572
 
2573
- #: admin/views/Options.php:2002 admin/views/Options.php:2144
2574
- msgid "Image width"
2575
- msgstr ""
2576
 
2577
- #: admin/views/Options.php:2006
2578
- msgid "Specify the default width of images in Image Browser view."
2579
- msgstr ""
2580
 
2581
- #: admin/views/Options.php:2025
2582
- msgid "Enable this setting to display titles of images in Image Browser view."
2583
- msgstr ""
2584
 
2585
- #: admin/views/Options.php:2148
2586
- msgid "Specify the default width of images in Blog Style view."
2587
- msgstr ""
2588
 
2589
- #: admin/views/Options.php:2174
2590
- msgid "Select the number of images displayed per page in Blog Style view."
2591
- msgstr ""
2592
 
2593
- #: admin/views/Options.php:2288
2594
- msgid "Enable this setting to display titles of images in Blog Style view."
2595
- msgstr ""
2596
 
2597
- #: admin/views/Options.php:2299
2598
- msgid "Enable this setting to show descriptions of images in Blog Style view."
2599
- msgstr ""
2600
 
2601
- #: admin/views/Options.php:2325
2602
- msgid "Max. number of images"
2603
- msgstr ""
2604
 
2605
- #: admin/views/Options.php:2329
2606
- msgid "Set the maximum number of images that are shown with Carousel display."
2607
- msgstr ""
2608
 
2609
- #: admin/views/Options.php:2340
2610
- msgid "Specify the dimensions of carousel images in pixels."
2611
- msgstr ""
2612
 
2613
- #: admin/views/Options.php:2346
2614
- msgid "Carousel ratio"
2615
- msgstr ""
2616
 
2617
- #: admin/views/Options.php:2350
2618
- msgid ""
2619
- "This option defines the proportion of dimensions between neighboring images "
2620
- "in the carousel."
2621
- msgstr ""
2622
 
2623
- #: admin/views/Options.php:2356
2624
  msgid "Fixed width"
2625
- msgstr ""
2626
 
2627
- #: admin/views/Options.php:2360
2628
- msgid "Specify the fixed width of Carousel gallery container."
2629
- msgstr ""
2630
 
2631
- #: admin/views/Options.php:2397
2632
- msgid "Activate this option to autoplay Carousel galleries."
2633
- msgstr ""
 
2634
 
2635
- #: admin/views/Options.php:2407
2636
- msgid ""
2637
- "Specify the time interval between rotations in Photo Gallery's Carousel view."
2638
- msgstr ""
2639
 
2640
- #: admin/views/Options.php:2420
2641
- msgid ""
2642
- "Display image titles in Photo Gallery Carousel view by activating this "
2643
- "option."
2644
- msgstr ""
2645
 
2646
- #: admin/views/Options.php:2426
2647
- msgid "Container fit"
2648
- msgstr ""
2649
 
2650
- #: admin/views/Options.php:2431
2651
- msgid ""
2652
- "Enabling this setting fits the images inside their container on Carousel "
2653
- "galleries with fixed width."
2654
- msgstr ""
2655
 
2656
- #: admin/views/Options.php:2437
2657
- msgid "Next/Previous buttons"
2658
- msgstr ""
2659
 
2660
- #: admin/views/Options.php:2442
2661
- msgid ""
2662
- "Enable this setting to display Next/Previous buttons on your galleries with "
2663
- "Carousel view."
2664
- msgstr ""
2665
 
2666
- #: admin/views/Options.php:2448
2667
- msgid "Play/Pause buttons"
2668
- msgstr ""
2669
 
2670
- #: admin/views/Options.php:2453
2671
- msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
2672
- msgstr ""
2673
 
2674
- #: admin/views/Options.php:2485 admin/views/Options.php:2787
2675
- msgid "Number of gallery group columns"
2676
- msgstr ""
 
2677
 
2678
- #: admin/views/Options.php:2489 admin/views/Options.php:2791
2679
- msgid ""
2680
- "Set the maximum number of columns in gallery groups. Note, that the parent "
2681
- "container needs to be large enough to display all columns."
2682
- msgstr ""
2683
 
2684
- #: admin/views/Options.php:2494 admin/views/Options.php:3034
2685
- msgid "Gallery group thumbnail dimensions"
2686
- msgstr ""
 
2687
 
2688
- #: admin/views/Options.php:2499 admin/views/Options.php:2800
2689
- #: admin/views/Options.php:3039
2690
- msgid "Specify the dimensions of thumbnails in gallery groups."
2691
- msgstr ""
2692
 
2693
- #: admin/views/Options.php:2538 admin/views/Options.php:2838
2694
- #: admin/views/Options.php:3078
2695
- msgid "Gallery groups per page"
2696
- msgstr "Группы галерей на страницу"
2697
 
2698
- #: admin/views/Options.php:2542 admin/views/Options.php:2842
2699
- #: admin/views/Options.php:3082
2700
- msgid ""
2701
- "Specify the number of galleries/gallery groups to display per page. Setting "
2702
- "this option to 0 shows all items."
2703
- msgstr ""
2704
 
2705
- #: admin/views/Options.php:2558 admin/views/Options.php:2858
2706
- #: admin/views/Options.php:3098
2707
- #, fuzzy
2708
- #| msgid "Gallery group"
2709
- msgid "Order Gallery group by"
2710
- msgstr "Группа галерии"
2711
 
2712
- #: admin/views/Options.php:2572 admin/views/Options.php:2872
2713
- #: admin/views/Options.php:3112
2714
- msgid ""
2715
- "Select the parameter and order direction to sort the gallery group images "
2716
- "with. E.g. Title and Ascending."
2717
- msgstr ""
2718
 
2719
- #: admin/views/Options.php:2575 admin/views/Options.php:2875
2720
- #: admin/views/Options.php:3116
2721
- #, fuzzy
2722
- #| msgid "Order by: "
2723
- msgid "Order images by"
2724
- msgstr "Сортировка по"
2725
 
2726
- #: admin/views/Options.php:2647 admin/views/Options.php:2947
2727
- #: admin/views/Options.php:3187
2728
- msgid "Show gallery group or gallery title"
2729
- msgstr ""
2730
 
2731
- #: admin/views/Options.php:2652 admin/views/Options.php:2952
2732
- #: admin/views/Options.php:3192
2733
- msgid ""
2734
- "Display the title of displayed gallery or gallery group by enabling this "
2735
- "setting."
2736
- msgstr ""
2737
 
2738
- #: admin/views/Options.php:2657 admin/views/Options.php:2957
2739
- #: admin/views/Options.php:3197
2740
- msgid "Show gallery group or gallery description"
2741
- msgstr ""
2742
 
2743
- #: admin/views/Options.php:2662 admin/views/Options.php:2962
2744
- #: admin/views/Options.php:3202
2745
- msgid ""
2746
- "Display the description of displayed gallery or gallery group by enabling "
2747
- "this setting."
2748
- msgstr ""
2749
 
2750
- #: admin/views/Options.php:2673
2751
- msgid ""
2752
- "Choose to show/hide titles of galleries/gallery groups, or display them on "
2753
- "hover."
2754
- msgstr ""
2755
 
2756
- #: admin/views/Options.php:2678 admin/views/Options.php:3217
2757
- msgid "Gallery view type"
2758
- msgstr "Вид просмотра галереи"
2759
 
2760
- #: admin/views/Options.php:2688 admin/views/Options.php:3227
2761
- msgid ""
2762
- "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, "
2763
- "Slideshow, Image browser, Blog style or Carousel."
2764
- msgstr ""
2765
 
2766
- #: admin/views/Options.php:2796
2767
- msgid "Gallery group thumbnail width"
2768
- msgstr "Размер эскиза группы галереи"
2769
 
2770
- #: admin/views/Options.php:2814
2771
- msgid "Thumbnail width"
2772
- msgstr ""
 
 
2773
 
2774
- #: admin/views/Options.php:3014
2775
- msgid "Extended gallery group height"
2776
- msgstr ""
2777
 
2778
- #: admin/views/Options.php:3018
2779
- msgid "Set the height of blocks in Extended gallery groups."
2780
- msgstr ""
2781
 
2782
- #: admin/views/Options.php:3023
2783
- #, fuzzy
2784
- #| msgid "Number of image columns"
2785
- msgid "Number of columns"
2786
- msgstr "Количество столбцов изображения"
2787
 
2788
- #: admin/views/Options.php:3025
2789
- msgid "1 column"
2790
- msgstr ""
 
2791
 
2792
- #: admin/views/Options.php:3026
2793
- msgid "2 column"
2794
- msgstr ""
2795
 
2796
- #: admin/views/Options.php:3027
2797
- msgid "3 column"
2798
- msgstr ""
2799
 
2800
- #: admin/views/Options.php:3029
2801
- msgid "Set the maximum number of columns."
2802
- msgstr ""
2803
 
2804
- #: admin/views/Options.php:3207
2805
- msgid "Show extended gallery group description"
2806
- msgstr ""
2807
 
2808
- #: admin/views/Options.php:3212
2809
- msgid ""
2810
- "Enable this option to show descriptions of galleries/gallery groups in "
2811
- "Extended view."
2812
- msgstr ""
2813
 
2814
- #: admin/views/Options.php:3354
2815
- msgid "Full-width lightbox"
2816
- msgstr ""
2817
 
2818
- #: admin/views/Options.php:3359
2819
- msgid "Image lightbox will appear full-width if this setting is activated."
2820
- msgstr ""
2821
 
2822
- #: admin/views/Options.php:3364
2823
- msgid "Lightbox dimensions"
2824
- msgstr ""
 
2825
 
2826
- #: admin/views/Options.php:3369
2827
- msgid "Set the dimensions of image lightbox."
2828
- msgstr ""
2829
 
2830
- #: admin/views/Options.php:3374
2831
- msgid "Lightbox effect"
2832
- msgstr ""
2833
 
2834
- #: admin/views/Options.php:3388
2835
- msgid "Select the animation effect for image lightbox."
2836
- msgstr ""
2837
 
2838
- #: admin/views/Options.php:3397
2839
- msgid "Set the duration of lightbox animation effect."
2840
- msgstr ""
2841
 
2842
- #: admin/views/Options.php:3398
2843
- msgid ""
2844
- "Note, that the value of Effect Duration can not be greater than 1/4 of Time "
2845
- "Interval."
2846
- msgstr ""
2847
 
2848
- #: admin/views/Options.php:3403
2849
- msgid "Lightbox autoplay"
2850
- msgstr ""
 
 
 
 
2851
 
2852
- #: admin/views/Options.php:3408
2853
- msgid "Activate this option to autoplay images in gallery lightbox."
2854
- msgstr ""
 
 
 
 
2855
 
2856
- #: admin/views/Options.php:3417
2857
- msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
2858
- msgstr ""
 
 
 
 
2859
 
2860
- #: admin/views/Options.php:3422
2861
- msgid "Enable filmstrip"
2862
- msgstr ""
 
 
 
 
2863
 
2864
- #: admin/views/Options.php:3427
2865
- msgid ""
2866
- "Add a filmstrip with image thumbnails to the lightbox of your galleries."
2867
- msgstr ""
 
 
 
2868
 
2869
- #: admin/views/Options.php:3433
2870
- msgid "Filmstrip size"
2871
- msgstr ""
 
 
 
 
2872
 
2873
- #: admin/views/Options.php:3476
2874
- msgid "Enable this option to show control buttons on Photo Gallery lightbox."
2875
- msgstr ""
 
 
 
 
2876
 
2877
- #: admin/views/Options.php:3481
2878
- #, fuzzy
2879
- #| msgid "Exit Fullscreen"
2880
- msgid "Enable fullscreen button"
2881
- msgstr "Отключить полноэкранный режим"
2882
 
2883
- #: admin/views/Options.php:3486
2884
- msgid ""
2885
- "Activate this setting to add Fullscreen button to lightbox control buttons."
2886
- msgstr ""
2887
 
2888
- #: admin/views/Options.php:3491
2889
- #, fuzzy
2890
- #| msgid "Show comments"
2891
- msgid "Enable comments"
2892
- msgstr "Показать комментарии"
2893
 
2894
- #: admin/views/Options.php:3500
2895
- msgid ""
2896
- "Let users to leave comments on images by enabling comments section of "
2897
- "lightbox."
2898
- msgstr ""
2899
 
2900
- #: admin/views/Options.php:3506
2901
- #, fuzzy
2902
- #| msgid "Show comments"
2903
- msgid "Show Email for comments"
2904
- msgstr "Показать комментарии"
2905
 
2906
- #: admin/views/Options.php:3511
2907
- msgid ""
2908
- "Activate this option to display email address field in comments section."
2909
- msgstr ""
2910
 
2911
- #: admin/views/Options.php:3517
2912
- #, fuzzy
2913
- #| msgid "Show comments"
2914
- msgid "Show Captcha for comments"
2915
- msgstr "Показать комментарии"
2916
 
2917
- #: admin/views/Options.php:3522
2918
- msgid ""
2919
- "Enable this setting to place Captcha word verification in comments section."
2920
- msgstr ""
2921
 
2922
- #: admin/views/Options.php:3528
2923
- #, fuzzy
2924
- #| msgid "Your comment is awaiting moderation"
2925
- msgid "Enable comments moderation"
2926
- msgstr "Ваш комментарий на модерации"
2927
 
2928
- #: admin/views/Options.php:3533
2929
- msgid "Moderate each comment left on images by activating this setting."
2930
- msgstr ""
 
2931
 
2932
- #: admin/views/Options.php:3539
2933
- #, fuzzy
2934
- #| msgid "Show comments"
2935
- msgid "Show image info"
2936
- msgstr "Показать комментарии"
2937
 
2938
- #: admin/views/Options.php:3544
2939
- msgid ""
2940
- "Activate this setting to show Info button among lightbox control buttons."
2941
- msgstr ""
2942
 
2943
- #: admin/views/Options.php:3549
2944
- msgid "Display info by default"
2945
- msgstr ""
2946
 
2947
- #: admin/views/Options.php:3554
2948
- msgid ""
2949
- "Enabling this option will let you show image title and description on "
2950
- "lightbox by default."
2951
- msgstr ""
2952
 
2953
- #: admin/views/Options.php:3559
2954
- msgid "Full width info"
2955
- msgstr ""
2956
 
2957
- #: admin/views/Options.php:3564
2958
- msgid ""
2959
- "Display info box with the full width of the lightbox by enabling this option."
2960
- msgstr ""
2961
 
2962
- #: admin/views/Options.php:3574
2963
- msgid ""
2964
- "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover "
2965
- "or always."
2966
- msgstr ""
2967
 
2968
- #: admin/views/Options.php:3579
2969
- msgid "Display views counter"
2970
- msgstr ""
2971
 
2972
- #: admin/views/Options.php:3584
2973
- msgid "Show the number of views, when a gallery image was opened in lightbox."
2974
- msgstr ""
2975
 
2976
- #: admin/views/Options.php:3590
2977
- #, fuzzy
2978
- #| msgid "Hide rating"
2979
- msgid "Enable rating"
2980
- msgstr "Скрыть рейтинг"
2981
 
2982
- #: admin/views/Options.php:3595
2983
- msgid ""
2984
- "Allow users to rate your images by adding rating feature to Photo Gallery "
2985
- "lightbox."
2986
- msgstr ""
2987
 
2988
- #: admin/views/Options.php:3603
2989
- msgid "Show Display Original Image button"
2990
- msgstr ""
2991
 
2992
- #: admin/views/Options.php:3608
2993
- msgid ""
2994
- "Let users view original versions of your images by enabling this button."
2995
- msgstr ""
2996
 
2997
- #: admin/views/Options.php:3613
2998
- msgid "Show download button"
2999
- msgstr ""
 
3000
 
3001
- #: admin/views/Options.php:3618
3002
- msgid ""
3003
- "This option will allow users to download gallery images while viewing them "
3004
- "in lightbox."
3005
- msgstr ""
3006
 
3007
- #: admin/views/Options.php:3623
3008
- #, fuzzy
3009
- #| msgid "Show comments"
3010
- msgid "Show image counter"
3011
- msgstr "Показать комментарии"
3012
 
3013
- #: admin/views/Options.php:3628
3014
- msgid "Enable this option to display image counter on Photo Gallery lightbox."
3015
- msgstr ""
3016
 
3017
- #: admin/views/Options.php:3633
3018
- #, fuzzy
3019
- #| msgid "Hide rating"
3020
- msgid "Enable looping"
3021
- msgstr "Скрыть рейтинг"
3022
 
3023
- #: admin/views/Options.php:3638
3024
- msgid ""
3025
- "Activate looping to start lightbox navigation from the beginning when users "
3026
- "reach its last image."
3027
- msgstr ""
3028
 
3029
- #: admin/views/Options.php:3643
3030
- msgid "Enable"
3031
- msgstr ""
3032
 
3033
- #: admin/views/Options.php:3648
3034
- msgid "Display AddThis on Photo Gallery lightbox by activating this option."
3035
- msgstr ""
3036
 
3037
- #: admin/views/Options.php:3654
3038
- msgid "profile ID"
3039
- msgstr ""
3040
 
3041
- #: admin/views/Options.php:3658
3042
- msgid "Provide the ID of your profile to connect to AddThis."
3043
- msgstr ""
3044
 
3045
- #: admin/views/Options.php:3658
3046
- #, php-format
3047
- msgid "Create an account %s."
3048
- msgstr ""
3049
 
3050
- #: admin/views/Options.php:3658 admin/views/Shortcode.php:254
3051
- msgid "here"
3052
- msgstr ""
3053
 
3054
- #: admin/views/Options.php:3664
3055
- #, fuzzy
3056
- #| msgid "Share on Facebook"
3057
- msgid "Show Facebook button"
3058
- msgstr "Поделиться на Facebook"
3059
 
3060
- #: admin/views/Options.php:3669
3061
- msgid ""
3062
- "Enabling this setting will add Facebook sharing button to Photo Gallery "
3063
- "lightbox."
3064
- msgstr ""
3065
 
3066
- #: admin/views/Options.php:3675
3067
- #, fuzzy
3068
- #| msgid "Share on Twitter"
3069
- msgid "Show Twitter button"
3070
- msgstr "Поделиться в Twitter"
3071
 
3072
- #: admin/views/Options.php:3680
3073
- msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
3074
- msgstr ""
3075
 
3076
- #: admin/views/Options.php:3686
3077
- #, fuzzy
3078
- #| msgid "Share on Pinterest"
3079
- msgid "Show Pinterest button"
3080
- msgstr "Поделиться на Pinterest"
3081
 
3082
- #: admin/views/Options.php:3691
3083
- msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
3084
- msgstr ""
3085
 
3086
- #: admin/views/Options.php:3697
3087
- #, fuzzy
3088
- #| msgid "Share on Tumblr"
3089
- msgid "Show Tumblr button"
3090
- msgstr "Поделиться на Tumblr"
3091
 
3092
- #: admin/views/Options.php:3702
3093
- msgid ""
3094
- "Allow users to share images on Tumblr from Photo Gallery lightbox by "
3095
- "activating this setting."
3096
- msgstr ""
3097
 
3098
- #: admin/views/Options.php:3711
3099
- #, fuzzy
3100
- #| msgid "Show comments"
3101
- msgid "Show Ecommerce button"
3102
- msgstr "Показать комментарии"
3103
 
3104
- #: admin/views/Options.php:3716
3105
- msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
3106
- msgstr ""
3107
 
3108
- #: admin/views/Ratings.php:40 admin/views/Ratings.php:59
3109
- #: admin/views/Ratings.php:91
3110
- msgid "IP"
3111
- msgstr ""
3112
 
3113
- #: admin/views/Ratings.php:58 admin/views/Ratings.php:90
3114
- msgid "Rating"
3115
- msgstr ""
3116
 
3117
- #: admin/views/Shortcode.php:198
3118
- msgid "Select the gallery to display."
3119
- msgstr "Выберите галерею для отображения."
3120
 
3121
- #: admin/views/Shortcode.php:201
3122
- msgid "Gallery Group"
3123
- msgstr "Группа Галерея"
3124
 
3125
- #: admin/views/Shortcode.php:212
3126
- msgid "Select the gallery group to display."
3127
- msgstr "Выберите группу галереи для отображения."
3128
 
3129
- #: admin/views/Shortcode.php:218
3130
- msgid "Tag"
3131
- msgstr "Тег"
3132
 
3133
- #: admin/views/Shortcode.php:230
3134
- msgid "Filter gallery images by this tag."
3135
- msgstr ""
3136
- "В этой галерее нет изображений.Отфильтруйте изображения галереи по этому "
3137
- "тегу."
3138
 
3139
- #: admin/views/Shortcode.php:235
3140
- msgid "Theme"
3141
- msgstr "Тема"
3142
 
3143
- #: admin/views/Shortcode.php:247
3144
- msgid "Choose the theme for your gallery."
3145
- msgstr "Выберите тему для своей галереи."
3146
 
3147
- #: admin/views/Shortcode.php:253
3148
- msgid "Use default options"
3149
- msgstr ""
3150
 
3151
- #: admin/views/Shortcode.php:254
3152
- msgid ""
3153
- "Mark this option to use default settings configured in Photo Gallery Options."
3154
- msgstr ""
3155
 
3156
- #: admin/views/Shortcode.php:254
3157
- #, php-format
3158
- msgid "You can change the default options %s."
3159
- msgstr ""
3160
 
3161
- #: admin/views/Shortcode.php:279
3162
- msgid "Action on image click"
3163
- msgstr ""
3164
 
3165
- #: admin/views/Shortcode.php:289
3166
- msgid "Toggle panel"
3167
- msgstr ""
 
 
3168
 
3169
- #: admin/views/Shortcode.php:425
3170
- msgid "Insert into post"
3171
- msgstr ""
 
 
3172
 
3173
- #: admin/views/Shortcode.php:430
3174
- msgid "Please see "
3175
- msgstr ""
3176
 
3177
- #: admin/views/Shortcode.php:430
3178
- msgid "View in Premium version"
3179
- msgstr ""
3180
 
3181
- #: admin/views/Shortcode.php:452
3182
- msgid "New shortcode"
3183
- msgstr ""
3184
 
3185
- #: admin/views/Shortcode.php:461 admin/views/Shortcode.php:545
3186
- msgid "Generate"
3187
- msgstr ""
3188
 
3189
- #: admin/views/Shortcode.php:463
3190
- msgid ""
3191
- "If you would like to edit an existing shortcode, use this dropdown box to "
3192
- "select it."
3193
- msgstr ""
3194
 
3195
- #: admin/views/Shortcode.php:467
3196
- msgid "Shortcode"
3197
- msgstr ""
3198
 
3199
- #: admin/views/Shortcode.php:469
3200
- msgid ""
3201
- "Add the selected gallery or gallery group to any WordPress page or post. "
3202
- "Simply copy the generated shortcode and paste it in the content of page/post "
3203
- "editor."
3204
- msgstr ""
3205
 
3206
- #: admin/views/Shortcode.php:474
3207
- msgid "PHP function"
3208
- msgstr ""
3209
 
3210
- #: admin/views/Shortcode.php:476
3211
- msgid ""
3212
- "Use generated PHP function to call the selected gallery or gallery group on "
3213
- "a custom PHP template."
3214
- msgstr ""
3215
 
3216
- #: admin/views/Shortcode.php:563
3217
- msgid "There is no shortcode with such ID!"
3218
- msgstr ""
3219
 
3220
- #: admin/views/Shortcode.php:2153
3221
- msgid "Image thumbnail width "
3222
- msgstr ""
3223
 
3224
- #: admin/views/Shortcode.php:2155
3225
- msgid "Image thumbnail height"
3226
- msgstr ""
3227
 
3228
- #: admin/views/Themes.php:22
3229
- msgid "You can't change theme parameters in free version."
3230
- msgstr ""
3231
 
3232
- #: admin/views/Themes.php:176
3233
- #, fuzzy
3234
- #| msgid "Show rating"
3235
- msgid "Theme title"
3236
- msgstr "Показать рейтинг"
3237
 
3238
- #: admin/views/Themes.php:184
3239
- msgid "Reset to default theme"
3240
- msgstr ""
 
3241
 
3242
- #: admin/views/Themes.php:212 admin/views/Themes.php:534
3243
- #: admin/views/Themes.php:856 admin/views/Themes.php:1911
3244
- #: admin/views/Themes.php:2921
3245
- msgid "Distance between pictures:"
3246
- msgstr ""
3247
 
3248
- #: admin/views/Themes.php:218 admin/views/Themes.php:540
3249
- #: admin/views/Themes.php:862 admin/views/Themes.php:1917
3250
- #: admin/views/Themes.php:2927
3251
- msgid "Distance from container frame:"
3252
- msgstr ""
3253
 
3254
- #: admin/views/Themes.php:224 admin/views/Themes.php:546
3255
- #: admin/views/Themes.php:868 admin/views/Themes.php:1923
3256
- #: admin/views/Themes.php:2933
3257
- msgid ""
3258
- "Enable this option to add distance between the parent container and the "
3259
- "thumbnails grid."
3260
- msgstr ""
3261
 
3262
- #: admin/views/Themes.php:228 admin/views/Themes.php:1640
3263
- #: admin/views/Themes.php:1927 admin/views/Themes.php:2473
3264
- #: admin/views/Themes.php:3302 admin/views/Themes.php:4679
3265
- msgid "Padding:"
3266
- msgstr ""
3267
 
3268
- #: admin/views/Themes.php:234 admin/views/Themes.php:550
3269
- #: admin/views/Themes.php:872 admin/views/Themes.php:1647
3270
- #: admin/views/Themes.php:1934 admin/views/Themes.php:2937
3271
- #: admin/views/Themes.php:3360 admin/views/Themes.php:4629
3272
- msgid "Border width:"
3273
- msgstr ""
3274
 
3275
- #: admin/views/Themes.php:240 admin/views/Themes.php:556
3276
- #: admin/views/Themes.php:878 admin/views/Themes.php:1653
3277
- #: admin/views/Themes.php:1940 admin/views/Themes.php:2943
3278
- #: admin/views/Themes.php:3366 admin/views/Themes.php:4635
3279
- msgid "Border style:"
3280
- msgstr "Стиль границ"
3281
 
3282
- #: admin/views/Themes.php:254 admin/views/Themes.php:570
3283
- #: admin/views/Themes.php:892 admin/views/Themes.php:1667
3284
- #: admin/views/Themes.php:1954 admin/views/Themes.php:2957
3285
- #: admin/views/Themes.php:3380 admin/views/Themes.php:4649
3286
- msgid "Border color:"
3287
- msgstr ""
3288
 
3289
- #: admin/views/Themes.php:260 admin/views/Themes.php:576
3290
- #: admin/views/Themes.php:898 admin/views/Themes.php:1673
3291
- #: admin/views/Themes.php:1960 admin/views/Themes.php:2492
3292
- #: admin/views/Themes.php:2963 admin/views/Themes.php:3386
3293
- #: admin/views/Themes.php:4655
3294
- msgid "Border radius:"
3295
- msgstr ""
3296
 
3297
- #: admin/views/Themes.php:263 admin/views/Themes.php:270
3298
- #: admin/views/Themes.php:432 admin/views/Themes.php:439
3299
- #: admin/views/Themes.php:495 admin/views/Themes.php:502
3300
- #: admin/views/Themes.php:579 admin/views/Themes.php:728
3301
- #: admin/views/Themes.php:817 admin/views/Themes.php:824
3302
- #: admin/views/Themes.php:901 admin/views/Themes.php:1052
3303
- #: admin/views/Themes.php:1059 admin/views/Themes.php:1114
3304
- #: admin/views/Themes.php:1121 admin/views/Themes.php:1237
3305
- #: admin/views/Themes.php:1258 admin/views/Themes.php:1286
3306
- #: admin/views/Themes.php:1320 admin/views/Themes.php:1376
3307
- #: admin/views/Themes.php:1436 admin/views/Themes.php:1443
3308
- #: admin/views/Themes.php:1497 admin/views/Themes.php:1504
3309
- #: admin/views/Themes.php:1559 admin/views/Themes.php:1579
3310
- #: admin/views/Themes.php:1636 admin/views/Themes.php:1643
3311
- #: admin/views/Themes.php:1676 admin/views/Themes.php:1696
3312
- #: admin/views/Themes.php:1770 admin/views/Themes.php:1777
3313
- #: admin/views/Themes.php:1810 admin/views/Themes.php:1872
3314
- #: admin/views/Themes.php:1879 admin/views/Themes.php:1930
3315
- #: admin/views/Themes.php:1963 admin/views/Themes.php:1970
3316
- #: admin/views/Themes.php:2130 admin/views/Themes.php:2137
3317
- #: admin/views/Themes.php:2192 admin/views/Themes.php:2247
3318
- #: admin/views/Themes.php:2254 admin/views/Themes.php:2327
3319
- #: admin/views/Themes.php:2334 admin/views/Themes.php:2422
3320
- #: admin/views/Themes.php:2462 admin/views/Themes.php:2469
3321
- #: admin/views/Themes.php:2495 admin/views/Themes.php:2528
3322
- #: admin/views/Themes.php:2607 admin/views/Themes.php:2640
3323
- #: admin/views/Themes.php:2659 admin/views/Themes.php:2740
3324
- #: admin/views/Themes.php:2881 admin/views/Themes.php:2888
3325
- #: admin/views/Themes.php:2966 admin/views/Themes.php:3119
3326
- #: admin/views/Themes.php:3174 admin/views/Themes.php:3229
3327
- #: admin/views/Themes.php:3236 admin/views/Themes.php:3298
3328
- #: admin/views/Themes.php:3305 admin/views/Themes.php:3312
3329
- #: admin/views/Themes.php:3389 admin/views/Themes.php:3406
3330
- #: admin/views/Themes.php:3451 admin/views/Themes.php:3534
3331
- #: admin/views/Themes.php:3541 admin/views/Themes.php:3635
3332
- #: admin/views/Themes.php:3689 admin/views/Themes.php:3722
3333
- #: admin/views/Themes.php:3830 admin/views/Themes.php:3867
3334
- #: admin/views/Themes.php:3911 admin/views/Themes.php:3944
3335
- #: admin/views/Themes.php:4049 admin/views/Themes.php:4118
3336
- #: admin/views/Themes.php:4125 admin/views/Themes.php:4132
3337
- #: admin/views/Themes.php:4260 admin/views/Themes.php:4267
3338
- #: admin/views/Themes.php:4274 admin/views/Themes.php:4485
3339
- #: admin/views/Themes.php:4504 admin/views/Themes.php:4537
3340
- #: admin/views/Themes.php:4658 admin/views/Themes.php:4675
3341
- #: admin/views/Themes.php:4682 admin/views/Themes.php:4711
3342
- #: admin/views/Themes.php:4872 admin/views/Themes.php:4961
3343
- msgid "Use CSS type values."
3344
- msgstr ""
3345
 
3346
- #: admin/views/Themes.php:267 admin/views/Themes.php:1967
3347
- msgid "Shadow:"
3348
- msgstr ""
3349
 
3350
- #: admin/views/Themes.php:274 admin/views/Themes.php:583
3351
- #: admin/views/Themes.php:905 admin/views/Themes.php:1974
3352
- #: admin/views/Themes.php:2970
3353
- msgid "Hover effect:"
3354
- msgstr ""
3355
 
3356
- #: admin/views/Themes.php:288 admin/views/Themes.php:597
3357
- #: admin/views/Themes.php:919 admin/views/Themes.php:1988
3358
- #: admin/views/Themes.php:2382 admin/views/Themes.php:2984
3359
- msgid "Hover effect value:"
3360
- msgstr ""
3361
 
3362
- #: admin/views/Themes.php:291
3363
- msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
3364
- msgstr ""
3365
 
3366
- #: admin/views/Themes.php:295 admin/views/Themes.php:604
3367
- #: admin/views/Themes.php:926
3368
- msgid "Transition:"
3369
- msgstr ""
3370
 
3371
- #: admin/views/Themes.php:315 admin/views/Themes.php:624
3372
- #: admin/views/Themes.php:2014 admin/views/Themes.php:2389
3373
- #: admin/views/Themes.php:3011
3374
- msgid "Thumbnail background color:"
3375
- msgstr ""
3376
 
3377
- #: admin/views/Themes.php:322 admin/views/Themes.php:2020
3378
- #: admin/views/Themes.php:2361 admin/views/Themes.php:3018
3379
- msgid "Thumbnail transparency:"
3380
- msgstr ""
3381
 
3382
- #: admin/views/Themes.php:325 admin/views/Themes.php:338
3383
- #: admin/views/Themes.php:634 admin/views/Themes.php:647
3384
- #: admin/views/Themes.php:954 admin/views/Themes.php:967
3385
- #: admin/views/Themes.php:1180 admin/views/Themes.php:1339
3386
- #: admin/views/Themes.php:1429 admin/views/Themes.php:1490
3387
- #: admin/views/Themes.php:1572 admin/views/Themes.php:1689
3388
- #: admin/views/Themes.php:2023 admin/views/Themes.php:2036
3389
- #: admin/views/Themes.php:2364 admin/views/Themes.php:2404
3390
- #: admin/views/Themes.php:2488 admin/views/Themes.php:3021
3391
- #: admin/views/Themes.php:3034 admin/views/Themes.php:3277
3392
- #: admin/views/Themes.php:3464 admin/views/Themes.php:3582
3393
- #: admin/views/Themes.php:3595 admin/views/Themes.php:3642
3394
- #: admin/views/Themes.php:3669 admin/views/Themes.php:3963
3395
- #: admin/views/Themes.php:4085 admin/views/Themes.php:4227
3396
- #: admin/views/Themes.php:4695 admin/views/Themes.php:4790
3397
- #: admin/views/Themes.php:4815 admin/views/Themes.php:4954
3398
- msgid "Value must be between 0 to 100."
3399
- msgstr ""
3400
 
3401
- #: admin/views/Themes.php:329 admin/views/Themes.php:1563
3402
- #: admin/views/Themes.php:2027 admin/views/Themes.php:3025
3403
- msgid "Full background color:"
3404
- msgstr ""
3405
 
3406
- #: admin/views/Themes.php:335 admin/views/Themes.php:1569
3407
- #: admin/views/Themes.php:2033 admin/views/Themes.php:3031
3408
- msgid "Full background transparency:"
3409
- msgstr ""
3410
 
3411
- #: admin/views/Themes.php:342 admin/views/Themes.php:651
3412
- #: admin/views/Themes.php:971 admin/views/Themes.php:1619
3413
- #: admin/views/Themes.php:2040 admin/views/Themes.php:3038
3414
- #: admin/views/Themes.php:3281 admin/views/Themes.php:4734
3415
- msgid "Alignment:"
3416
- msgstr ""
3417
 
3418
- #: admin/views/Themes.php:366 admin/views/Themes.php:1710
3419
- #: admin/views/Themes.php:2064
3420
- msgid "Title position:"
3421
- msgstr ""
3422
 
3423
- #: admin/views/Themes.php:369 admin/views/Themes.php:1275
3424
- #: admin/views/Themes.php:1713 admin/views/Themes.php:2067
3425
- #: admin/views/Themes.php:3620 admin/views/Themes.php:3900
3426
- #: admin/views/Themes.php:3988 admin/views/Themes.php:4056
3427
- #: admin/views/Themes.php:4198 admin/views/Themes.php:4728
3428
- msgid "Top"
3429
- msgstr ""
3430
 
3431
- #: admin/views/Themes.php:371 admin/views/Themes.php:1277
3432
- #: admin/views/Themes.php:1715 admin/views/Themes.php:2069
3433
- #: admin/views/Themes.php:3622 admin/views/Themes.php:3902
3434
- #: admin/views/Themes.php:3990 admin/views/Themes.php:4058
3435
- #: admin/views/Themes.php:4200 admin/views/Themes.php:4730
3436
- msgid "Bottom"
3437
- msgstr ""
3438
 
3439
- #: admin/views/Themes.php:375 admin/views/Themes.php:671
3440
- #: admin/views/Themes.php:995 admin/views/Themes.php:2073
3441
- #: admin/views/Themes.php:2689 admin/views/Themes.php:3062
3442
- #: admin/views/Themes.php:4320 admin/views/Themes.php:4999
3443
- msgid "Title font size:"
3444
- msgstr ""
3445
 
3446
- #: admin/views/Themes.php:381 admin/views/Themes.php:677
3447
- #: admin/views/Themes.php:1001 admin/views/Themes.php:2079
3448
- #: admin/views/Themes.php:2695 admin/views/Themes.php:3068
3449
- #: admin/views/Themes.php:4278
3450
- msgid "Title font color:"
3451
- msgstr ""
3452
 
3453
- #: admin/views/Themes.php:387 admin/views/Themes.php:683
3454
- #: admin/views/Themes.php:1007 admin/views/Themes.php:2085
3455
- #: admin/views/Themes.php:3074
3456
- msgid "Title font color (Show on hover):"
3457
- msgstr ""
3458
 
3459
- #: admin/views/Themes.php:393 admin/views/Themes.php:689
3460
- #: admin/views/Themes.php:1013 admin/views/Themes.php:1459
3461
- #: admin/views/Themes.php:2091 admin/views/Themes.php:2701
3462
- #: admin/views/Themes.php:3080 admin/views/Themes.php:4284
3463
- msgid "Title font family:"
3464
- msgstr ""
3465
 
3466
- #: admin/views/Themes.php:415 admin/views/Themes.php:711
3467
- #: admin/views/Themes.php:1035 admin/views/Themes.php:2113
3468
- #: admin/views/Themes.php:2723 admin/views/Themes.php:3102
3469
- #: admin/views/Themes.php:4306 admin/views/Themes.php:5011
3470
- msgid "Title font weight:"
3471
- msgstr ""
3472
 
3473
- #: admin/views/Themes.php:429 admin/views/Themes.php:1049
3474
- #: admin/views/Themes.php:2127 admin/views/Themes.php:3116
3475
- msgid "Title box shadow:"
3476
- msgstr ""
 
 
3477
 
3478
- #: admin/views/Themes.php:436 admin/views/Themes.php:725
3479
- #: admin/views/Themes.php:1056 admin/views/Themes.php:2134
3480
- #: admin/views/Themes.php:2650 admin/views/Themes.php:4965
3481
- msgid "Title margin:"
3482
- msgstr ""
3483
 
3484
- #: admin/views/Themes.php:443 admin/views/Themes.php:766
3485
- #: admin/views/Themes.php:1063 admin/views/Themes.php:1820
3486
- #: admin/views/Themes.php:2196 admin/views/Themes.php:2830
3487
- #: admin/views/Themes.php:3178 admin/views/Themes.php:3482
3488
- msgid "Gallery title/description font size:"
3489
- msgstr ""
3490
 
3491
- #: admin/views/Themes.php:450 admin/views/Themes.php:772
3492
- #: admin/views/Themes.php:1069 admin/views/Themes.php:1827
3493
- #: admin/views/Themes.php:2202 admin/views/Themes.php:2836
3494
- #: admin/views/Themes.php:3184 admin/views/Themes.php:3489
3495
- msgid "Gallery title/description font color:"
3496
- msgstr ""
3497
 
3498
- #: admin/views/Themes.php:456 admin/views/Themes.php:778
3499
- #: admin/views/Themes.php:1075 admin/views/Themes.php:1833
3500
- #: admin/views/Themes.php:2208 admin/views/Themes.php:2842
3501
- #: admin/views/Themes.php:3190 admin/views/Themes.php:3495
3502
- msgid "Gallery title/description font family:"
3503
- msgstr ""
3504
 
3505
- #: admin/views/Themes.php:478 admin/views/Themes.php:800
3506
- #: admin/views/Themes.php:1097 admin/views/Themes.php:1855
3507
- #: admin/views/Themes.php:2230 admin/views/Themes.php:2864
3508
- #: admin/views/Themes.php:3212 admin/views/Themes.php:3517
3509
- msgid "Gallery title/description font weight:"
3510
- msgstr ""
3511
 
3512
- #: admin/views/Themes.php:492 admin/views/Themes.php:814
3513
- #: admin/views/Themes.php:1111 admin/views/Themes.php:1869
3514
- #: admin/views/Themes.php:2244 admin/views/Themes.php:2878
3515
- #: admin/views/Themes.php:3226 admin/views/Themes.php:3531
3516
- msgid "Gallery title/description box shadow:"
3517
- msgstr ""
3518
 
3519
- #: admin/views/Themes.php:499 admin/views/Themes.php:821
3520
- #: admin/views/Themes.php:1118 admin/views/Themes.php:1876
3521
- #: admin/views/Themes.php:2251 admin/views/Themes.php:2885
3522
- #: admin/views/Themes.php:3233 admin/views/Themes.php:3538
3523
- msgid "Gallery title/description margin:"
3524
- msgstr ""
3525
 
3526
- #: admin/views/Themes.php:506 admin/views/Themes.php:828
3527
- #: admin/views/Themes.php:1125 admin/views/Themes.php:1883
3528
- #: admin/views/Themes.php:2258 admin/views/Themes.php:2892
3529
- #: admin/views/Themes.php:3240 admin/views/Themes.php:3545
3530
- #, fuzzy
3531
- #| msgid "Gallery title"
3532
- msgid "Gallery title alignment:"
3533
- msgstr "Название галереи"
3534
 
3535
- #: admin/views/Themes.php:600 admin/views/Themes.php:922
3536
- #: admin/views/Themes.php:1991 admin/views/Themes.php:2385
3537
- #: admin/views/Themes.php:2987
3538
- msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
3539
- msgstr ""
3540
 
3541
- #: admin/views/Themes.php:631 admin/views/Themes.php:951
3542
- msgid "Transparency:"
3543
- msgstr ""
3544
 
3545
- #: admin/views/Themes.php:638 admin/views/Themes.php:958
3546
- msgid "Full Background color:"
3547
- msgstr ""
3548
 
3549
- #: admin/views/Themes.php:644 admin/views/Themes.php:964
3550
- #: admin/views/Themes.php:1686 admin/views/Themes.php:2485
3551
- #: admin/views/Themes.php:3274
3552
- msgid "Background transparency:"
3553
- msgstr ""
3554
 
3555
- #: admin/views/Themes.php:732 admin/views/Themes.php:1508
3556
- #: admin/views/Themes.php:2770 admin/views/Themes.php:4369
3557
- msgid "Description font size:"
3558
- msgstr ""
3559
 
3560
- #: admin/views/Themes.php:738 admin/views/Themes.php:2776
3561
- #: admin/views/Themes.php:4327
3562
- msgid "Description font color:"
3563
- msgstr ""
3564
 
3565
- #: admin/views/Themes.php:744 admin/views/Themes.php:1520
3566
- #: admin/views/Themes.php:2782 admin/views/Themes.php:4333
3567
- msgid "Description font family:"
3568
- msgstr ""
3569
 
3570
- #: admin/views/Themes.php:945 admin/views/Themes.php:1153
3571
- #: admin/views/Themes.php:1680 admin/views/Themes.php:2479
3572
- #: admin/views/Themes.php:3268 admin/views/Themes.php:4781
3573
- msgid "Background color:"
3574
- msgstr ""
3575
 
3576
- #: admin/views/Themes.php:1159 admin/views/Themes.php:3846
3577
- #: admin/views/Themes.php:4794
3578
- msgid "Right, left buttons size:"
3579
- msgstr ""
3580
 
3581
- #: admin/views/Themes.php:1165 admin/views/Themes.php:4800
3582
- msgid "Play, pause buttons size:"
3583
- msgstr ""
3584
 
3585
- #: admin/views/Themes.php:1171 admin/views/Themes.php:3416
3586
- #: admin/views/Themes.php:4806
3587
- msgid "Buttons color:"
3588
- msgstr ""
3589
 
3590
- #: admin/views/Themes.php:1177 admin/views/Themes.php:4812
3591
- msgid "Buttons transparency:"
3592
- msgstr ""
3593
 
3594
- #: admin/views/Themes.php:1184 admin/views/Themes.php:4819
3595
- msgid "Buttons hover color:"
3596
- msgstr ""
3597
 
3598
- #: admin/views/Themes.php:1190 admin/views/Themes.php:3840
3599
- #: admin/views/Themes.php:4825
3600
- msgid "Right, left buttons width:"
3601
- msgstr ""
3602
 
3603
- #: admin/views/Themes.php:1196 admin/views/Themes.php:3834
3604
- #: admin/views/Themes.php:4831
3605
- msgid "Right, left buttons height:"
3606
- msgstr ""
3607
 
3608
- #: admin/views/Themes.php:1202 admin/views/Themes.php:3815
3609
- #: admin/views/Themes.php:4837
3610
- msgid "Right, left buttons background color:"
3611
- msgstr ""
3612
 
3613
- #: admin/views/Themes.php:1208 admin/views/Themes.php:3871
3614
- #: admin/views/Themes.php:4843
3615
- msgid "Right, left buttons border width:"
3616
- msgstr ""
3617
 
3618
- #: admin/views/Themes.php:1214 admin/views/Themes.php:3877
3619
- #: admin/views/Themes.php:4849
3620
- msgid "Right, left buttons border style:"
3621
- msgstr ""
3622
 
3623
- #: admin/views/Themes.php:1228 admin/views/Themes.php:3891
3624
- #: admin/views/Themes.php:4863
3625
- msgid "Right, left buttons border color:"
3626
- msgstr ""
3627
 
3628
- #: admin/views/Themes.php:1234 admin/views/Themes.php:3864
3629
- #: admin/views/Themes.php:4869
3630
- msgid "Right, left buttons border radius:"
3631
- msgstr ""
3632
 
3633
- #: admin/views/Themes.php:1241 admin/views/Themes.php:3801
3634
- #: admin/views/Themes.php:4876
3635
- msgid "Right, left buttons style:"
3636
- msgstr ""
3637
 
3638
- #: admin/views/Themes.php:1255 admin/views/Themes.php:3827
3639
- msgid "Right, left buttons box shadow:"
3640
- msgstr ""
3641
 
3642
- #: admin/views/Themes.php:1272
3643
- msgid "Filmstrip/Slider bullet position:"
3644
- msgstr ""
3645
 
3646
- #: admin/views/Themes.php:1283
3647
- msgid "Filmstrip margin:"
3648
- msgstr ""
3649
 
3650
- #: admin/views/Themes.php:1290
3651
- msgid "Filmstrip border width:"
3652
- msgstr ""
3653
 
3654
- #: admin/views/Themes.php:1296
3655
- msgid "Filmstrip border style:"
3656
- msgstr ""
3657
 
3658
- #: admin/views/Themes.php:1311
3659
- msgid "Filmstrip border color:"
3660
- msgstr ""
3661
 
3662
- #: admin/views/Themes.php:1317
3663
- msgid "Filmstrip border radius:"
3664
- msgstr ""
3665
 
3666
- #: admin/views/Themes.php:1324
3667
- msgid "Filmstrip active border width:"
3668
- msgstr ""
3669
 
3670
- #: admin/views/Themes.php:1330
3671
- msgid "Filmstrip active border color:"
3672
- msgstr ""
3673
 
3674
- #: admin/views/Themes.php:1336
3675
- msgid "Filmstrip deactive transparency: "
3676
- msgstr ""
3677
 
3678
- #: admin/views/Themes.php:1343
3679
- msgid "Filmstrip right, left buttons background color: "
3680
- msgstr ""
3681
 
3682
- #: admin/views/Themes.php:1349 admin/views/Themes.php:3973
3683
- msgid "Filmstrip right, left buttons color:"
3684
- msgstr ""
3685
 
3686
- #: admin/views/Themes.php:1355 admin/views/Themes.php:3967
3687
- msgid "Filmstrip right, left buttons size:"
3688
- msgstr ""
3689
 
3690
- #: admin/views/Themes.php:1361
3691
- msgid "Slider bullet width: "
3692
- msgstr ""
3693
 
3694
- #: admin/views/Themes.php:1367
3695
- msgid "Slider bullet height:"
3696
- msgstr ""
3697
 
3698
- #: admin/views/Themes.php:1373
3699
- msgid "Slider bullet border radius: "
3700
- msgstr ""
3701
 
3702
- #: admin/views/Themes.php:1380
3703
- msgid "Slider bullet background color:"
3704
- msgstr ""
3705
 
3706
- #: admin/views/Themes.php:1386
3707
- msgid "Slider bullet margin:"
3708
- msgstr ""
3709
 
3710
- #: admin/views/Themes.php:1392
3711
- msgid "Slider bullet active background color: "
3712
- msgstr ""
3713
 
3714
- #: admin/views/Themes.php:1398
3715
- msgid "Slider bullet active border width:"
3716
- msgstr ""
3717
 
3718
- #: admin/views/Themes.php:1404
3719
- msgid "Slider bullet active border color: "
3720
- msgstr ""
3721
 
3722
- #: admin/views/Themes.php:1420
3723
- msgid "Title background color: "
3724
- msgstr ""
3725
 
3726
- #: admin/views/Themes.php:1426
3727
- msgid "Title transparency: "
3728
- msgstr ""
3729
 
3730
- #: admin/views/Themes.php:1433 admin/views/Themes.php:4958
3731
- msgid "Title border radius:"
3732
- msgstr ""
3733
 
3734
- #: admin/views/Themes.php:1440
3735
- msgid "Title padding: "
3736
- msgstr ""
3737
 
3738
- #: admin/views/Themes.php:1447
3739
- msgid "Title font size: "
3740
- msgstr ""
3741
 
3742
- #: admin/views/Themes.php:1453
3743
- msgid "Title color: "
3744
- msgstr ""
3745
 
3746
- #: admin/views/Themes.php:1481 admin/views/Themes.php:1814
3747
- msgid "Description background color:"
3748
- msgstr ""
3749
 
3750
- #: admin/views/Themes.php:1487
3751
- msgid "Description transparency:"
3752
- msgstr ""
3753
 
3754
- #: admin/views/Themes.php:1494 admin/views/Themes.php:1807
3755
- msgid "Description border radius:"
3756
- msgstr ""
3757
 
3758
- #: admin/views/Themes.php:1501 admin/views/Themes.php:1774
3759
- #: admin/views/Themes.php:2737
3760
- msgid "Description padding:"
3761
- msgstr ""
3762
 
3763
- #: admin/views/Themes.php:1514
3764
- msgid "Description color:"
3765
- msgstr ""
3766
 
3767
- #: admin/views/Themes.php:1556
3768
- msgid "Full padding:"
3769
- msgstr ""
3770
 
3771
- #: admin/views/Themes.php:1576
3772
- msgid "Full border radius:"
3773
- msgstr ""
3774
 
3775
- #: admin/views/Themes.php:1583
3776
- msgid "Full border width:"
3777
- msgstr ""
3778
 
3779
- #: admin/views/Themes.php:1589
3780
- msgid "Full border style:"
3781
- msgstr ""
 
3782
 
3783
- #: admin/views/Themes.php:1603
3784
- msgid "Full border color:"
3785
- msgstr ""
3786
 
3787
- #: admin/views/Themes.php:1633 admin/views/Themes.php:2466
3788
- #: admin/views/Themes.php:3295 admin/views/Themes.php:4672
3789
- msgid "Margin:"
3790
- msgstr ""
3791
 
3792
- #: admin/views/Themes.php:1693 admin/views/Themes.php:3309
3793
- #: admin/views/Themes.php:4708
3794
- msgid "Box shadow:"
3795
- msgstr ""
3796
 
3797
- #: admin/views/Themes.php:1719
3798
- msgid "Title alignment:"
3799
- msgstr ""
 
3800
 
3801
- #: admin/views/Themes.php:1733 admin/views/Themes.php:3348
3802
- #: admin/views/Themes.php:4581
3803
- msgid "Font size:"
3804
- msgstr ""
3805
 
3806
- #: admin/views/Themes.php:1739 admin/views/Themes.php:3354
3807
- #: admin/views/Themes.php:4587
3808
- msgid "Font color:"
3809
- msgstr ""
3810
 
3811
- #: admin/views/Themes.php:1745 admin/views/Themes.php:3326
3812
- #: admin/views/Themes.php:4593
3813
- msgid "Font family:"
3814
- msgstr ""
3815
 
3816
- #: admin/views/Themes.php:1767
3817
- msgid "Description margin:"
3818
- msgstr ""
3819
 
3820
- #: admin/views/Themes.php:1781 admin/views/Themes.php:2744
3821
- msgid "Description border width:"
3822
- msgstr ""
3823
 
3824
- #: admin/views/Themes.php:1787 admin/views/Themes.php:2750
3825
- msgid "Description border style:"
3826
- msgstr ""
3827
 
3828
- #: admin/views/Themes.php:1801 admin/views/Themes.php:2764
3829
- msgid "Description border color:"
3830
- msgstr ""
3831
 
3832
- #: admin/views/Themes.php:1995 admin/views/Themes.php:2338
3833
- #: admin/views/Themes.php:2991
3834
- msgid "Thumbnail transition:"
3835
- msgstr ""
3836
 
3837
- #: admin/views/Themes.php:2141 admin/views/Themes.php:3123
3838
- msgid "Back Font size:"
3839
- msgstr ""
3840
 
3841
- #: admin/views/Themes.php:2147 admin/views/Themes.php:3129
3842
- msgid "Back Font color:"
3843
- msgstr "Цвет шрифта Назад "
 
 
 
3844
 
3845
- #: admin/views/Themes.php:2153 admin/views/Themes.php:3135
3846
- msgid "Back Font family:"
3847
- msgstr ""
3848
 
3849
- #: admin/views/Themes.php:2175 admin/views/Themes.php:3157
3850
- msgid "Back Font weight:"
3851
- msgstr ""
3852
 
3853
- #: admin/views/Themes.php:2189 admin/views/Themes.php:2525
3854
- #: admin/views/Themes.php:3171
3855
- msgid "Back padding:"
3856
- msgstr ""
3857
 
3858
- #: admin/views/Themes.php:2286
3859
- msgid "Thumbnail margin:"
3860
- msgstr ""
 
 
3861
 
3862
- #: admin/views/Themes.php:2292
3863
- msgid "Thumbnail padding:"
3864
- msgstr ""
3865
 
3866
- #: admin/views/Themes.php:2298
3867
- msgid "Thumbnail border width:"
3868
- msgstr ""
3869
 
3870
- #: admin/views/Themes.php:2304
3871
- msgid "Thumbnail border style:"
3872
- msgstr ""
3873
 
3874
- #: admin/views/Themes.php:2318
3875
- msgid "Thumbnail border color:"
3876
- msgstr ""
 
 
 
 
 
 
 
3877
 
3878
- #: admin/views/Themes.php:2324
3879
- msgid "Thumbnail border radius:"
3880
- msgstr ""
3881
 
3882
- #: admin/views/Themes.php:2331
3883
- msgid "Thumbnail box shadow:"
3884
- msgstr ""
3885
 
3886
- #: admin/views/Themes.php:2347
3887
- #, fuzzy
3888
- #| msgid "Description"
3889
- msgid "Description alignment:"
3890
- msgstr "Описание"
3891
 
3892
- #: admin/views/Themes.php:2368
3893
- msgid "Thumbnail hover effect:"
3894
- msgstr ""
3895
 
3896
- #: admin/views/Themes.php:2395
3897
- msgid "Thumbnails background color:"
3898
- msgstr ""
3899
 
3900
- #: admin/views/Themes.php:2401
3901
- msgid "Thumbnail background transparency:"
3902
- msgstr ""
3903
 
3904
- #: admin/views/Themes.php:2419
3905
- msgid "Thumbnail div padding:"
3906
- msgstr ""
3907
 
3908
- #: admin/views/Themes.php:2426
3909
- msgid "Thumbnail div background color:"
3910
- msgstr ""
3911
 
3912
- #: admin/views/Themes.php:2432
3913
- msgid "Thumbnail div border width:"
3914
- msgstr ""
 
3915
 
3916
- #: admin/views/Themes.php:2439
3917
- msgid "humbnail div border style:"
3918
- msgstr ""
3919
 
3920
- #: admin/views/Themes.php:2453
3921
- msgid "Thumbnail div border color:"
3922
- msgstr ""
 
 
 
 
3923
 
3924
- #: admin/views/Themes.php:2459
3925
- msgid "Thumbnail div border radius:"
3926
- msgstr ""
 
3927
 
3928
- #: admin/views/Themes.php:2499
3929
- msgid "Separator width:"
3930
- msgstr ""
3931
 
3932
- #: admin/views/Themes.php:2505
3933
- msgid "Separator style:"
3934
- msgstr ""
 
 
 
3935
 
3936
- #: admin/views/Themes.php:2519
3937
- msgid "Separator color:"
3938
- msgstr ""
3939
 
3940
- #: admin/views/Themes.php:2532
3941
- msgid "Back font size:"
3942
- msgstr ""
3943
 
3944
- #: admin/views/Themes.php:2538
3945
- msgid "Back font color:"
3946
- msgstr ""
3947
 
3948
- #: admin/views/Themes.php:2544
3949
- msgid "Back font family:"
3950
- msgstr ""
3951
 
3952
- #: admin/views/Themes.php:2566
3953
- msgid "Back font weight:"
3954
- msgstr ""
3955
 
3956
- #: admin/views/Themes.php:2590
3957
- msgid "Title/description alignment:"
3958
- msgstr ""
3959
 
3960
- #: admin/views/Themes.php:2604
3961
- msgid "Text div padding:"
3962
- msgstr ""
3963
 
3964
- #: admin/views/Themes.php:2611
3965
- msgid "Text div border width:"
3966
- msgstr ""
3967
 
3968
- #: admin/views/Themes.php:2617
3969
- msgid "Text border style:"
3970
- msgstr ""
3971
 
3972
- #: admin/views/Themes.php:2631
3973
- msgid "Text border color:"
3974
- msgstr ""
3975
 
3976
- #: admin/views/Themes.php:2637
3977
- msgid "Text div border radius:"
3978
- msgstr ""
3979
 
3980
- #: admin/views/Themes.php:2644
3981
- msgid "Text background color:"
3982
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3983
 
3984
- #: admin/views/Themes.php:2656 admin/views/Themes.php:4971
3985
- msgid "Title padding:"
3986
- msgstr ""
3987
 
3988
- #: admin/views/Themes.php:2663
3989
- msgid "Title border width:"
3990
- msgstr ""
3991
 
3992
- #: admin/views/Themes.php:2669
3993
- msgid "Title border style:"
3994
- msgstr ""
3995
 
3996
- #: admin/views/Themes.php:2683
3997
- msgid "Title border color:"
3998
- msgstr ""
3999
 
4000
- #: admin/views/Themes.php:2804 admin/views/Themes.php:4355
4001
- msgid "Description font weight:"
4002
- msgstr ""
 
4003
 
4004
- #: admin/views/Themes.php:2818
4005
- msgid "Description more size:"
4006
- msgstr ""
4007
 
4008
- #: admin/views/Themes.php:2824
4009
- msgid "Description more color:"
4010
- msgstr ""
 
 
 
 
 
 
 
 
 
4011
 
4012
- #: admin/views/Themes.php:3403
4013
- msgid "Buttons and title margin:"
4014
- msgstr ""
4015
 
4016
- #: admin/views/Themes.php:3410
4017
- msgid "Buttons size:"
4018
- msgstr ""
4019
 
4020
- #: admin/views/Themes.php:3422
4021
- msgid "Buttons and title border width:"
4022
- msgstr ""
4023
 
4024
- #: admin/views/Themes.php:3428
4025
- msgid "Buttons and title border style:"
4026
- msgstr ""
4027
 
4028
- #: admin/views/Themes.php:3442
4029
- msgid "Buttons and title border color:"
4030
- msgstr ""
4031
 
4032
- #: admin/views/Themes.php:3448
4033
- msgid "Buttons and title border radius:"
4034
- msgstr ""
4035
 
4036
- #: admin/views/Themes.php:3455
4037
- msgid "Buttons and title background color:"
4038
- msgstr ""
4039
 
4040
- #: admin/views/Themes.php:3461
4041
- msgid "Buttons and title background transparency:"
4042
- msgstr ""
 
 
4043
 
4044
- #: admin/views/Themes.php:3468
4045
- msgid "Buttons or title alignment:"
4046
- msgstr ""
4047
 
4048
- #: admin/views/Themes.php:3573
4049
- msgid "Overlay background color:"
4050
- msgstr ""
4051
 
4052
- #: admin/views/Themes.php:3579
4053
- msgid "Overlay background transparency:"
4054
- msgstr ""
4055
 
4056
- #: admin/views/Themes.php:3586
4057
- msgid "Lightbox background color:"
4058
- msgstr ""
4059
 
4060
- #: admin/views/Themes.php:3592
4061
- msgid "Lightbox background transparency:"
4062
- msgstr ""
4063
 
4064
- #: admin/views/Themes.php:3599
4065
- msgid "Control buttons height:"
4066
- msgstr ""
4067
 
4068
- #: admin/views/Themes.php:3605
4069
- msgid "Control buttons margin (top):"
4070
- msgstr ""
4071
 
4072
- #: admin/views/Themes.php:3611
4073
- msgid "Control buttons margin (left):"
4074
- msgstr ""
 
4075
 
4076
- #: admin/views/Themes.php:3617
4077
- msgid "Control buttons position:"
4078
- msgstr ""
4079
 
4080
- #: admin/views/Themes.php:3626
4081
- msgid "Control buttons background color:"
4082
- msgstr ""
4083
 
4084
- #: admin/views/Themes.php:3632
4085
- msgid "Control buttons container border radius:"
4086
- msgstr ""
4087
 
4088
- #: admin/views/Themes.php:3639
4089
- msgid "Control buttons container background transparency:"
4090
- msgstr ""
4091
 
4092
- #: admin/views/Themes.php:3646
4093
- msgid "Control buttons alignment:"
4094
- msgstr ""
4095
 
4096
- #: admin/views/Themes.php:3660
4097
- msgid "Control buttons color:"
4098
- msgstr ""
4099
 
4100
- #: admin/views/Themes.php:3666
4101
- msgid "Control buttons transparency:"
4102
- msgstr ""
4103
 
4104
- #: admin/views/Themes.php:3673
4105
- msgid "Toggle button height:"
4106
- msgstr ""
4107
 
4108
- #: admin/views/Themes.php:3679
4109
- msgid "Toggle button width:"
4110
- msgstr ""
4111
 
4112
- #: admin/views/Themes.php:3685
4113
- msgid "Close button border radius:"
4114
- msgstr ""
4115
 
4116
- #: admin/views/Themes.php:3693
4117
- msgid "Close button border width:"
4118
- msgstr ""
4119
 
4120
- #: admin/views/Themes.php:3699
4121
- msgid "Close button border style:"
4122
- msgstr ""
4123
 
4124
- #: admin/views/Themes.php:3713
4125
- msgid "Close button border color:"
4126
- msgstr ""
4127
 
4128
- #: admin/views/Themes.php:3719
4129
- msgid "Close button box shadow:"
4130
- msgstr ""
4131
 
4132
- #: admin/views/Themes.php:3726
4133
- msgid "Close button background color:"
4134
- msgstr ""
4135
 
4136
- #: admin/views/Themes.php:3729 admin/views/Themes.php:3742
4137
- #: admin/views/Themes.php:3749 admin/views/Themes.php:3756
4138
- #: admin/views/Themes.php:3763
4139
- msgid "The option does not apply to Full-width lightbox."
4140
- msgstr ""
4141
 
4142
- #: admin/views/Themes.php:3733
4143
- msgid "Close button transparency:"
4144
- msgstr ""
 
4145
 
4146
- #: admin/views/Themes.php:3739
4147
- msgid "Close button width:"
4148
- msgstr ""
 
 
 
4149
 
4150
- #: admin/views/Themes.php:3746
4151
- msgid "Close button height:"
4152
- msgstr ""
4153
 
4154
- #: admin/views/Themes.php:3753
4155
- msgid "Close button top:"
4156
- msgstr ""
4157
 
4158
- #: admin/views/Themes.php:3760
4159
- msgid "Close button right:"
4160
- msgstr ""
4161
 
4162
- #: admin/views/Themes.php:3767
4163
- msgid "Close button size:"
4164
- msgstr ""
 
4165
 
4166
- #: admin/views/Themes.php:3773
4167
- msgid "Close button color:"
4168
- msgstr ""
 
4169
 
4170
- #: admin/views/Themes.php:3779
4171
- msgid "Fullscreen close button color:"
4172
- msgstr ""
4173
 
4174
- #: admin/views/Themes.php:3785
4175
- msgid "Share buttons color:"
4176
- msgstr "Цвет кнопок"
4177
 
4178
- #: admin/views/Themes.php:3821
4179
- msgid "Right, left buttons transparency:"
4180
- msgstr ""
4181
 
4182
- #: admin/views/Themes.php:3852
4183
- msgid "Right, left, close buttons hover color:"
4184
- msgstr ""
4185
 
4186
- #: admin/views/Themes.php:3858
4187
- msgid "Right, left buttons color:"
4188
- msgstr ""
4189
 
4190
- #: admin/views/Themes.php:3897
4191
- msgid "Filmstrip position:"
4192
- msgstr ""
 
 
 
4193
 
4194
- #: admin/views/Themes.php:3908
4195
- msgid "Filmstrip thumbnail margin:"
4196
- msgstr ""
4197
 
4198
- #: admin/views/Themes.php:3915
4199
- msgid "Filmstrip thumbnail border width:"
4200
- msgstr ""
4201
 
4202
- #: admin/views/Themes.php:3921
4203
- msgid "Filmstrip thumbnail border style:"
4204
- msgstr ""
 
 
 
4205
 
4206
- #: admin/views/Themes.php:3935
4207
- msgid "Filmstrip thumbnail border color:"
4208
- msgstr ""
4209
 
4210
- #: admin/views/Themes.php:3941
4211
- msgid "Filmstrip thumbnail border radius:"
4212
- msgstr ""
4213
 
4214
- #: admin/views/Themes.php:3948
4215
- msgid "Filmstrip thumbnail active border width:"
4216
- msgstr ""
4217
 
4218
- #: admin/views/Themes.php:3954
4219
- msgid "Filmstrip thumbnail active border color:"
4220
- msgstr ""
 
 
4221
 
4222
- #: admin/views/Themes.php:3960
4223
- msgid "Filmstrip thumbnail deactive transparency:"
4224
- msgstr ""
4225
 
4226
- #: admin/views/Themes.php:3979
4227
- msgid "Filmstrip right, left button background color:"
4228
- msgstr ""
4229
 
4230
- #: admin/views/Themes.php:3985
4231
- msgid "Rating position:"
4232
- msgstr ""
 
 
 
 
4233
 
4234
- #: admin/views/Themes.php:3994
4235
- msgid "Rating alignment:"
4236
- msgstr ""
4237
 
4238
- #: admin/views/Themes.php:4008
4239
- msgid "Rating icon:"
4240
- msgstr ""
4241
 
4242
- #: admin/views/Themes.php:4022
4243
- msgid "Rating color:"
4244
- msgstr ""
4245
 
4246
- #: admin/views/Themes.php:4028
4247
- msgid "Rating hover color:"
4248
- msgstr ""
4249
 
4250
- #: admin/views/Themes.php:4034
4251
- msgid "Rating size:"
4252
- msgstr ""
4253
 
4254
- #: admin/views/Themes.php:4040
4255
- msgid "Rating icon count:"
4256
- msgstr ""
4257
 
4258
- #: admin/views/Themes.php:4046
4259
- msgid "Rating padding:"
4260
- msgstr ""
4261
 
4262
- #: admin/views/Themes.php:4053
4263
- msgid "Hit counter position:"
4264
- msgstr ""
4265
 
4266
- #: admin/views/Themes.php:4062
4267
- msgid "Hit counter alignment:"
4268
- msgstr ""
4269
 
4270
- #: admin/views/Themes.php:4076
4271
- msgid "Hit counter background color:"
4272
- msgstr ""
4273
 
4274
- #: admin/views/Themes.php:4082
4275
- msgid "Hit counter background transparency:"
4276
- msgstr ""
4277
 
4278
- #: admin/views/Themes.php:4089
4279
- msgid "Hit counter border width:"
4280
- msgstr ""
4281
 
4282
- #: admin/views/Themes.php:4095
4283
- msgid "Hit counter border style:"
4284
- msgstr ""
4285
 
4286
- #: admin/views/Themes.php:4109
4287
- msgid "Hit counter border color:"
4288
- msgstr ""
4289
 
4290
- #: admin/views/Themes.php:4115
4291
- msgid "Hit counter border radius:"
4292
- msgstr ""
4293
 
4294
- #: admin/views/Themes.php:4122
4295
- msgid "Hit counter padding:"
4296
- msgstr ""
4297
 
4298
- #: admin/views/Themes.php:4129
4299
- msgid "Hit counter margin:"
4300
- msgstr ""
 
 
4301
 
4302
- #: admin/views/Themes.php:4136
4303
- msgid "Hit counter font color:"
4304
- msgstr ""
4305
 
4306
- #: admin/views/Themes.php:4142
4307
- msgid "Hit counter font family:"
4308
- msgstr ""
4309
 
4310
- #: admin/views/Themes.php:4164
4311
- msgid "Hit counter font weight:"
4312
- msgstr ""
4313
 
4314
- #: admin/views/Themes.php:4178
4315
- msgid "Hit counter font size:"
4316
- msgstr ""
4317
 
4318
- #: admin/views/Themes.php:4195
4319
- msgid "Info position:"
4320
- msgstr ""
4321
 
4322
- #: admin/views/Themes.php:4204
4323
- msgid "Info alignment:"
4324
- msgstr ""
4325
 
4326
- #: admin/views/Themes.php:4218
4327
- msgid "Info background color:"
4328
- msgstr ""
4329
 
4330
- #: admin/views/Themes.php:4224
4331
- msgid "Info background transparency:"
4332
- msgstr ""
4333
 
4334
- #: admin/views/Themes.php:4231
4335
- msgid "Info border width:"
4336
- msgstr ""
4337
 
4338
- #: admin/views/Themes.php:4237
4339
- msgid "Info border style:"
4340
- msgstr ""
4341
 
4342
- #: admin/views/Themes.php:4251
4343
- msgid "Info border color:"
4344
- msgstr ""
4345
 
4346
- #: admin/views/Themes.php:4257
4347
- msgid "Info border radius:"
4348
- msgstr ""
4349
 
4350
- #: admin/views/Themes.php:4264
4351
- msgid "Info padding:"
4352
- msgstr ""
 
 
4353
 
4354
- #: admin/views/Themes.php:4271
4355
- msgid "Info margin:"
4356
- msgstr ""
4357
 
4358
- #: admin/views/Themes.php:4376
4359
- msgid "Comments Width:"
4360
- msgstr "Ширина области комментарии"
4361
 
4362
- #: admin/views/Themes.php:4382
4363
- msgid "Comments position:"
4364
- msgstr ""
4365
 
4366
- #: admin/views/Themes.php:4391
4367
- msgid "Comments background color:"
4368
- msgstr ""
4369
 
4370
- #: admin/views/Themes.php:4397
4371
- msgid "Comments font size:"
4372
- msgstr ""
4373
 
4374
- #: admin/views/Themes.php:4403
4375
- msgid "Comments font color:"
4376
- msgstr ""
4377
 
4378
- #: admin/views/Themes.php:4409
4379
- msgid "Comments font family:"
4380
- msgstr ""
4381
 
4382
- #: admin/views/Themes.php:4431
4383
- msgid "Comments author font size:"
4384
- msgstr ""
 
4385
 
4386
- #: admin/views/Themes.php:4438
4387
- msgid "Comments date font size:"
4388
- msgstr ""
4389
 
4390
- #: admin/views/Themes.php:4444
4391
- msgid "Comments body font size:"
4392
- msgstr ""
4393
 
4394
- #: admin/views/Themes.php:4450
4395
- msgid "Comment input border width:"
4396
- msgstr ""
4397
 
4398
- #: admin/views/Themes.php:4456
4399
- msgid "omment input border style:"
4400
- msgstr ""
4401
 
4402
- #: admin/views/Themes.php:4470
4403
- msgid "Comment input border color:"
4404
- msgstr ""
4405
 
4406
- #: admin/views/Themes.php:4476
4407
- msgid "Comment input border radius:"
4408
- msgstr ""
 
4409
 
4410
- #: admin/views/Themes.php:4482
4411
- msgid "Comment input padding:"
4412
- msgstr ""
4413
 
4414
- #: admin/views/Themes.php:4489
4415
- msgid "Comment input background color:"
4416
- msgstr ""
 
4417
 
4418
- #: admin/views/Themes.php:4495
4419
- msgid "Comment button background color:"
4420
- msgstr ""
4421
 
4422
- #: admin/views/Themes.php:4501
4423
- msgid "Comment button padding:"
4424
- msgstr ""
4425
 
4426
- #: admin/views/Themes.php:4508
4427
- msgid "Comment button border width:"
4428
- msgstr ""
4429
 
4430
- #: admin/views/Themes.php:4514
4431
- msgid "Comment button border style:"
4432
- msgstr ""
4433
 
4434
- #: admin/views/Themes.php:4528
4435
- msgid "Comment button border color:"
4436
- msgstr ""
4437
 
4438
- #: admin/views/Themes.php:4534
4439
- msgid "omment button border radius:"
4440
- msgstr ""
4441
 
4442
- #: admin/views/Themes.php:4541
4443
- msgid "Comment separator width:"
4444
- msgstr ""
4445
 
4446
- #: admin/views/Themes.php:4547
4447
- msgid "Comment separator style:"
4448
- msgstr ""
4449
 
4450
- #: admin/views/Themes.php:4561
4451
- msgid "Comment separator color:"
4452
- msgstr ""
4453
 
4454
- #: admin/views/Themes.php:4615
4455
- msgid "Font weight:"
4456
- msgstr ""
4457
 
4458
- #: admin/views/Themes.php:4686
4459
- msgid "Button background color:"
4460
- msgstr ""
4461
 
4462
- #: admin/views/Themes.php:4692
4463
- msgid "Button background transparency:"
4464
- msgstr ""
4465
 
4466
- #: admin/views/Themes.php:4699
4467
- msgid "Button transition:"
4468
- msgstr ""
 
 
 
4469
 
4470
- #: admin/views/Themes.php:4725
4471
- msgid "Position:"
4472
- msgstr ""
4473
 
4474
- #: admin/views/Themes.php:4748
4475
- msgid "Numbering:"
4476
- msgstr ""
 
4477
 
4478
- #: admin/views/Themes.php:4757
4479
- msgid "Button text:"
4480
- msgstr ""
4481
 
4482
- #: admin/views/Themes.php:4762
4483
- msgid "Arrow"
4484
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
4485
 
4486
- #: admin/views/Themes.php:4763
4487
- msgid "Next, previous buttons values."
4488
- msgstr ""
4489
 
4490
- #: admin/views/Themes.php:4787
4491
- msgid "Container opacity:"
4492
- msgstr ""
4493
 
4494
- #: admin/views/Themes.php:4900
4495
- msgid "Carousel margin:"
4496
- msgstr ""
4497
 
4498
- #: admin/views/Themes.php:4906
4499
- msgid "Image border width:"
4500
- msgstr ""
4501
 
4502
- #: admin/views/Themes.php:4913
4503
- msgid "Image border style:"
4504
- msgstr ""
4505
 
4506
- #: admin/views/Themes.php:4928
4507
- msgid "Image border color:"
4508
- msgstr ""
4509
 
4510
- #: admin/views/Themes.php:4944
4511
- msgid "Title background color:"
4512
- msgstr ""
4513
 
4514
- #: admin/views/Themes.php:4951
4515
- msgid "Title opacity:"
4516
- msgstr ""
4517
 
4518
- #: admin/views/Themes.php:4978
4519
- msgid "Title Font family:"
4520
- msgstr ""
4521
 
4522
- #: admin/views/Themes.php:5005
4523
- msgid "Title color:"
4524
- msgstr ""
4525
 
4526
- #: admin/views/Uninstall.php:31
4527
- msgid "support team"
4528
- msgstr ""
4529
 
4530
- #: admin/views/Uninstall.php:32
4531
- msgid "Contact us"
4532
- msgstr ""
4533
 
4534
- #: admin/views/Uninstall.php:33
4535
- #, php-format
4536
- msgid ""
4537
- "Before uninstalling the plugin, please Contact our %s. We'll do our best to "
4538
- "help you out with your issue. We value each and every user and value what's "
4539
- "right for our users in everything we do.<br />\n"
4540
- " However, if anyway you have made a decision to uninstall the plugin, "
4541
- "please take a minute to %s and tell what you didn't like for our plugins "
4542
- "further improvement and development. Thank you !!!"
4543
- msgstr ""
4544
 
4545
- #: admin/views/Uninstall.php:37
4546
- #, php-format
4547
- msgid ""
4548
- "Deactivating %s plugin does not remove any data that may have been created. "
4549
- "To completely remove this plugin, you can uninstall it here."
4550
- msgstr ""
4551
 
4552
- #: admin/views/Uninstall.php:40
4553
- msgid "WARNING:"
4554
- msgstr ""
4555
 
4556
- #: admin/views/Uninstall.php:41
4557
- msgid ""
4558
- "Once uninstalled, this can't be undone. You should use a Database Backup "
4559
- "plugin of WordPress to back up all the data first."
4560
- msgstr ""
4561
 
4562
- #: admin/views/Uninstall.php:44
4563
- msgid "The following Database Tables will be deleted:"
4564
- msgstr ""
4565
 
4566
- #: admin/views/Uninstall.php:49
4567
- msgid "Database Tables"
4568
- msgstr ""
4569
 
4570
- #: admin/views/Uninstall.php:67
4571
- msgid "Delete the folder containing uploaded images."
4572
- msgstr ""
4573
 
4574
- #: admin/views/Uninstall.php:73
4575
- #, php-format
4576
- msgid "Do you really want to uninstall %s?"
4577
- msgstr ""
4578
 
4579
- #: admin/views/Uninstall.php:83
4580
- msgid "UNINSTALL"
4581
- msgstr ""
4582
 
4583
- #: admin/views/Uninstall.php:85
4584
- #, php-format
4585
- msgid ""
4586
- "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
4587
- msgstr ""
4588
 
4589
- #: admin/views/Widget.php:98 photo-gallery.php:92
4590
- msgid "Photo Gallery"
4591
- msgstr ""
4592
 
4593
- #: admin/views/Widget.php:115 admin/views/WidgetSlideshow.php:82
4594
- #: admin/views/WidgetTags.php:78
4595
- msgid "Title:"
4596
- msgstr ""
4597
 
4598
- #: admin/views/Widget.php:119 admin/views/WidgetTags.php:82
4599
- msgid "Type:"
4600
- msgstr ""
4601
 
4602
- #: admin/views/Widget.php:121
4603
- msgid "Gallery groups"
4604
- msgstr ""
4605
 
4606
- #: admin/views/Widget.php:124 admin/views/WidgetSlideshow.php:86
4607
- msgid "Galleries:"
4608
- msgstr ""
4609
 
4610
- #: admin/views/Widget.php:137
4611
- msgid "Gallery Type:"
4612
- msgstr "Тип галереи"
 
 
 
4613
 
4614
- #: admin/views/Widget.php:145
4615
- msgid "Gallery Groups:"
4616
- msgstr ""
4617
 
4618
- #: admin/views/Widget.php:147
4619
- msgid "All Galleries"
4620
- msgstr ""
4621
 
4622
- #: admin/views/Widget.php:158
4623
- msgid "Sort:"
4624
- msgstr ""
4625
 
4626
- #: admin/views/Widget.php:160 frontend/views/view.php:639
4627
- msgid "First"
4628
- msgstr "Первый"
4629
 
4630
- #: admin/views/Widget.php:161 frontend/views/view.php:642
4631
- msgid "Last"
4632
- msgstr "Последний"
 
4633
 
4634
- #: admin/views/Widget.php:165
4635
- msgid "Count:"
4636
- msgstr ""
4637
 
4638
- #: admin/views/Widget.php:169 admin/views/WidgetSlideshow.php:131
4639
- #: admin/views/WidgetTags.php:105
4640
- msgid "Dimensions:"
4641
- msgstr ""
4642
 
4643
- #: admin/views/Widget.php:174 admin/views/WidgetSlideshow.php:147
4644
- #: admin/views/WidgetTags.php:124
4645
- msgid "Themes:"
4646
- msgstr ""
4647
 
4648
- #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1680
4649
- msgid "Photo Gallery Slideshow"
4650
- msgstr ""
4651
 
4652
- #: admin/views/WidgetSlideshow.php:88
4653
- msgid "Select"
4654
- msgstr ""
4655
 
4656
- #: admin/views/WidgetSlideshow.php:99
4657
- msgid "Slideshow effect:"
4658
- msgstr ""
4659
 
4660
- #: admin/views/WidgetSlideshow.php:113
4661
- msgid "Enable shuffle:"
4662
- msgstr ""
4663
 
4664
- #: admin/views/WidgetSlideshow.php:119
4665
- msgid "Enable autoplay:"
4666
- msgstr ""
4667
 
4668
- #: admin/views/WidgetSlideshow.php:125
4669
- msgid "Enable control buttons:"
4670
- msgstr ""
 
4671
 
4672
- #: admin/views/WidgetSlideshow.php:136
4673
- msgid "Filmstrip height:"
4674
- msgstr ""
 
4675
 
4676
- #: admin/views/WidgetSlideshow.php:143
4677
- msgid "Time interval:"
4678
- msgstr ""
 
4679
 
4680
- #: admin/views/WidgetTags.php:63 photo-gallery.php:1676
4681
- msgid "Photo Gallery Tags Cloud"
4682
- msgstr ""
 
4683
 
4684
- #: admin/views/WidgetTags.php:88
4685
- msgid "Show Tag Names:"
4686
- msgstr ""
 
4687
 
4688
- #: admin/views/WidgetTags.php:94
4689
- msgid "Open in:"
4690
- msgstr ""
 
4691
 
4692
- #: admin/views/WidgetTags.php:95
4693
- msgid "Page"
4694
- msgstr ""
4695
 
4696
- #: admin/views/WidgetTags.php:100
4697
- msgid "Number:"
4698
- msgstr ""
4699
 
4700
- #: admin/views/WidgetTags.php:102
4701
- msgid "0 for all."
4702
- msgstr ""
 
4703
 
4704
- #: admin/views/WidgetTags.php:110
4705
- msgid "Transparent Background:"
4706
- msgstr ""
 
4707
 
4708
- #: admin/views/WidgetTags.php:116
4709
- msgid "Background Color:"
4710
- msgstr ""
 
4711
 
4712
- #: admin/views/WidgetTags.php:120
4713
- msgid "Text Color:"
4714
- msgstr ""
4715
 
4716
- #: banner_class.php:374
4717
- msgid "Activation"
4718
- msgstr "Активация"
 
4719
 
4720
- #: banner_class.php:378
4721
- msgid "Activate"
4722
- msgstr "Aктивировать"
4723
 
4724
- #: banner_class.php:378
4725
- msgid "Install"
4726
- msgstr "Устанавливать"
4727
 
4728
- #: banner_class.php:382
4729
- msgid "Activation failed, please try again."
4730
- msgstr "Не удалось активировать, повторите попытку."
4731
 
4732
- #: banner_class.php:382
4733
- msgid "Installation failed, please try again."
4734
- msgstr "Ошибка установки, повторите попытку."
4735
 
4736
- #: filemanager/controller.php:177
4737
- msgid "Directory already exists."
4738
- msgstr ""
4739
 
4740
- #: filemanager/controller.php:263
4741
- msgid "File doesn't exist."
4742
- msgstr ""
4743
 
4744
- #: filemanager/controller.php:267 filemanager/controller.php:300
4745
- #: filemanager/controller.php:332
4746
- msgid "Can't rename the file."
4747
- msgstr ""
4748
 
4749
- #: filemanager/controller.php:371
4750
- msgid "Some of the files couldn't be removed."
4751
- msgstr ""
4752
 
4753
- #: filemanager/controller.php:481
4754
- msgid "Failed to copy some of the files."
4755
- msgstr ""
4756
 
4757
- #: filemanager/controller.php:528
4758
- msgid "Failed to move some of the files."
4759
- msgstr ""
4760
 
4761
- #: filemanager/view.php:70
4762
- msgid "File loading failed"
4763
- msgstr ""
4764
 
4765
- #: filemanager/view.php:71
4766
- msgid "Are you sure you want to permanently remove selected items?"
4767
- msgstr ""
 
4768
 
4769
- #: filemanager/view.php:72
4770
- msgid "This will cancel uploads. Continue?"
4771
- msgstr ""
4772
 
4773
- #: filemanager/view.php:73
4774
- msgid "Enter directory name"
4775
- msgstr ""
4776
 
4777
- #: filemanager/view.php:74
4778
- msgid "Enter new name"
4779
- msgstr ""
4780
 
4781
- #: filemanager/view.php:75
4782
- msgid "Processing uploaded files..."
4783
- msgstr ""
4784
 
4785
- #: filemanager/view.php:93
4786
- msgid "Up"
4787
  msgstr ""
4788
 
4789
- #: filemanager/view.php:94
4790
- msgid "Make a directory"
4791
  msgstr ""
4792
 
4793
- #: filemanager/view.php:95
4794
- msgid "Rename item"
4795
- msgstr ""
 
 
 
4796
 
4797
- #: filemanager/view.php:97 framework/howto/data.php:168
4798
- msgid "Copy"
4799
- msgstr ""
 
4800
 
4801
- #: filemanager/view.php:98
4802
- msgid "Cut"
4803
- msgstr ""
 
 
 
4804
 
4805
- #: filemanager/view.php:99
4806
- msgid "Paste"
4807
- msgstr ""
 
4808
 
4809
- #: filemanager/view.php:100
4810
- msgid "Remove items"
4811
- msgstr "Удалить элементы"
4812
 
4813
- #: filemanager/view.php:102
4814
- msgid "Refresh"
4815
- msgstr ""
4816
 
4817
- #: filemanager/view.php:106
4818
- msgid "View thumbs"
4819
- msgstr ""
4820
 
4821
- #: filemanager/view.php:107
4822
- msgid "View list"
4823
- msgstr ""
4824
 
4825
- #: filemanager/view.php:111
4826
- msgid "Upload files"
4827
- msgstr ""
4828
 
4829
- #: filemanager/view.php:130
4830
- msgid "Order by:"
4831
- msgstr "Сортировать по"
4832
 
4833
- #: filemanager/view.php:132
4834
- msgid "Click to sort by name"
4835
- msgstr ""
4836
 
4837
- #: filemanager/view.php:148
4838
- msgid "Click to sort by size"
4839
- msgstr ""
4840
 
4841
- #: filemanager/view.php:164
4842
- msgid "Click to sort by date modified"
4843
- msgstr ""
4844
 
4845
- #: filemanager/view.php:167
4846
- msgid "Date modified"
4847
- msgstr ""
4848
 
4849
- #: filemanager/view.php:198
4850
- #, fuzzy
4851
- #| msgid "No Images found."
4852
- msgid "No items found."
4853
- msgstr "Изображений не найдено."
4854
 
4855
- #: filemanager/view.php:213
4856
- msgid "Add selected images to gallery"
4857
- msgstr "Добавить выбранные изображения в галерею"
4858
 
4859
- #: filemanager/view.php:228
4860
- msgid "Thumbnail Max Dimensions:"
4861
- msgstr ""
4862
 
4863
- #: filemanager/view.php:229
4864
- msgid "Thumbnail:"
4865
- msgstr ""
 
4866
 
4867
- #: filemanager/view.php:234 frontend/views/view.php:241
4868
- msgid "Back"
4869
- msgstr "Назад"
4870
 
4871
- #: filemanager/view.php:237
4872
- msgid "Image Max Dimensions:"
4873
- msgstr ""
4874
 
4875
- #: filemanager/view.php:238
4876
- msgid "Image:"
4877
- msgstr ""
4878
 
4879
- #: filemanager/view.php:246
4880
- msgid "Drag files here"
4881
- msgstr ""
 
4882
 
4883
- #: filemanager/view.php:246
4884
- #, fuzzy
4885
- #| msgid "Select all"
4886
- msgid "Select Files"
4887
- msgstr "Выбрать все"
4888
 
4889
- #: filemanager/view.php:265
4890
- msgid "No files to upload"
4891
- msgstr ""
4892
 
4893
- #: filemanager/view.php:292
4894
- msgid "Uploaded"
4895
- msgstr ""
4896
 
4897
- #: filemanager/view.php:293
4898
- msgid "Upload failed"
4899
- msgstr ""
4900
 
4901
- #: filemanager/view.php:294
4902
- msgid ""
4903
- "There has been a problem while trying to upload the following images. Please "
4904
- "try to upload them again."
4905
- msgstr ""
4906
 
4907
- #: filemanager/view.php:295
4908
- msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
4909
- msgstr ""
4910
 
4911
- #: framework/WDWLibrary.php:69
4912
- msgid "Item successfully saved."
4913
- msgstr ""
4914
 
4915
- #: framework/WDWLibrary.php:75 framework/WDWLibrary.php:178
4916
- msgid "Failed."
4917
- msgstr ""
4918
 
4919
- #: framework/WDWLibrary.php:81
4920
- msgid "Item successfully deleted."
4921
- msgstr ""
4922
 
4923
- #: framework/WDWLibrary.php:87
4924
- msgid "You can't delete default theme."
4925
- msgstr ""
4926
 
4927
- #: framework/WDWLibrary.php:93
4928
- msgid "Items Successfully Deleted."
4929
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4930
 
4931
- #: framework/WDWLibrary.php:99
4932
- msgid "You must set watermark type from Options page."
4933
- msgstr ""
4934
 
4935
- #: framework/WDWLibrary.php:105
4936
- msgid "The item is successfully set as default."
4937
- msgstr ""
4938
 
4939
- #: framework/WDWLibrary.php:111
4940
- msgid "Options successfully saved."
4941
- msgstr ""
4942
 
4943
- #: framework/WDWLibrary.php:117
4944
- msgid "Item successfully published."
4945
- msgstr ""
4946
 
4947
- #: framework/WDWLibrary.php:123
4948
- msgid "Item successfully unpublished."
4949
- msgstr ""
4950
 
4951
- #: framework/WDWLibrary.php:129
4952
- msgid "Item successfully duplicated."
4953
- msgstr ""
4954
 
4955
- #: framework/WDWLibrary.php:136
4956
- msgid "Items Succesfully Unpublished."
4957
- msgstr ""
4958
 
4959
- #: framework/WDWLibrary.php:142
4960
- msgid "Ordering Succesfully Saved."
4961
- msgstr ""
4962
 
4963
- #: framework/WDWLibrary.php:148
4964
- msgid "A term with the name provided already exists."
4965
- msgstr ""
4966
 
4967
- #: framework/WDWLibrary.php:154
4968
- msgid "Name field is required."
4969
- msgstr ""
4970
 
4971
- #: framework/WDWLibrary.php:160
4972
- msgid "The slug must be unique."
4973
- msgstr ""
4974
 
4975
- #: framework/WDWLibrary.php:166
4976
- msgid "Changes must be saved."
4977
- msgstr ""
4978
 
4979
- #: framework/WDWLibrary.php:172
4980
- msgid "Theme successfully copied."
4981
- msgstr ""
4982
 
4983
- #: framework/WDWLibrary.php:183
4984
- msgid "Items were reset successfully."
4985
- msgstr ""
4986
 
4987
- #: framework/WDWLibrary.php:188
4988
- msgid "Watermark successfully set."
4989
- msgstr ""
4990
 
4991
- #: framework/WDWLibrary.php:193
4992
- msgid "Items successfully rotated."
4993
- msgstr ""
4994
 
4995
- #: framework/WDWLibrary.php:198
4996
- msgid "Items successfully recreated."
4997
- msgstr ""
4998
 
4999
- #: framework/WDWLibrary.php:203
5000
- msgid "Items successfully resized."
5001
- msgstr ""
 
5002
 
5003
- #: framework/WDWLibrary.php:208
5004
- msgid "Items successfully edited."
5005
- msgstr ""
5006
 
5007
- #: framework/WDWLibrary.php:269
5008
- msgid "Click to sort by this item"
5009
- msgstr ""
5010
 
5011
- #: framework/WDWLibrary.php:451 framework/WDWLibrary.php:600
5012
- msgid "item"
5013
- msgstr "элемент"
5014
 
5015
- #: framework/WDWLibrary.php:2156
5016
- #, php-format
5017
- msgid "No %s found."
5018
- msgstr ""
5019
 
5020
- #: framework/WDWLibrary.php:2212
5021
- msgid "Gallery Tags"
5022
- msgstr "Теги галереи"
5023
 
5024
- #: framework/WDWLibrary.php:2423
5025
- msgid "resized"
5026
- msgstr ""
5027
 
5028
- #: framework/WDWLibrary.php:2427
5029
- msgid "Recreate thumbnail"
5030
- msgstr ""
5031
 
5032
- #: framework/WDWLibrary.php:2428
5033
- msgid "recreated"
5034
- msgstr ""
5035
 
5036
- #: framework/WDWLibrary.php:2432
5037
- msgid "Rotate left"
5038
- msgstr ""
5039
 
5040
- #: framework/WDWLibrary.php:2433
5041
- msgid "rotated left"
5042
- msgstr "повернутый влево"
 
5043
 
5044
- #: framework/WDWLibrary.php:2437
5045
- msgid "Rotate right"
5046
- msgstr ""
 
5047
 
5048
- #: framework/WDWLibrary.php:2438
5049
- msgid "rotated right"
5050
- msgstr ""
 
5051
 
5052
- #: framework/WDWLibrary.php:2443 framework/WDWLibrary.php:2456
5053
- #: framework/WDWLibrary.php:2461 framework/WDWLibrary.php:2466
5054
- #: framework/WDWLibrary.php:2471 framework/WDWLibrary.php:2494
5055
- #: framework/WDWLibrary.php:2499
5056
- msgid "edited"
5057
- msgstr ""
5058
 
5059
- #: framework/WDWLibrary.php:2448
5060
- msgid "reset"
5061
- msgstr "сброс"
5062
 
5063
- #: framework/WDWLibrary.php:2455
5064
- #, fuzzy
5065
- #| msgid "Edit gallery"
5066
- msgid "Edit Alt/Title"
5067
- msgstr "Скачать оригинальное изображениеРедактировать галерею"
 
5068
 
5069
- #: framework/WDWLibrary.php:2460
5070
- #, fuzzy
5071
- #| msgid "Description"
5072
- msgid "Edit description"
5073
- msgstr "Описание"
5074
 
5075
- #: framework/WDWLibrary.php:2465
5076
- msgid "Edit redirect URL"
5077
- msgstr ""
5078
 
5079
- #: framework/WDWLibrary.php:2470
5080
- #, fuzzy
5081
- #| msgid "Remove items"
5082
- msgid "Add/Remove tag"
5083
- msgstr "Удалить элементы"
5084
 
5085
- #: framework/WDWLibrary.php:2493
5086
- msgid "Add pricelist"
5087
- msgstr ""
5088
 
5089
- #: framework/WDWLibrary.php:2498
5090
- msgid "Remove pricelist"
5091
- msgstr ""
5092
 
5093
- #: framework/WDWLibrary.php:2604
5094
- #, fuzzy
5095
- #| msgid "Share on Facebook"
5096
- msgid "Photo Gallery Premium"
5097
- msgstr "Поделиться на Facebook"
5098
 
5099
- #: framework/WDWLibrary.php:2607
5100
- msgid ""
5101
- "Get more stunning views with fully customizable themes, powerful lightbox "
5102
- "and much more."
5103
- msgstr ""
5104
 
5105
- #: framework/WDWLibrary.php:2611 framework/WDWLibrary.php:2662
5106
- msgid "Upgrade"
5107
- msgstr ""
5108
 
5109
- #: framework/WDWLibrary.php:2625
5110
- msgid "User guide"
5111
- msgstr ""
5112
 
5113
- #: framework/WDWLibrary.php:2640 photo-gallery.php:498 photo-gallery.php:1905
5114
- msgid "Ask a question"
5115
- msgstr ""
 
 
5116
 
5117
- #: framework/WDWLibrary.php:2654
5118
- msgid "Forms"
5119
- msgstr ""
5120
 
5121
- #: framework/WDWLibrary.php:2658 photo-gallery.php:488
5122
- msgid "Add-ons"
5123
- msgstr ""
5124
 
5125
- #: framework/WDWLibrary.php:2662
5126
- msgid "Premium Version"
5127
- msgstr ""
5128
 
5129
- #: framework/WDWLibrary.php:2796
5130
- msgid "All tags"
5131
- msgstr "Все теги"
 
 
5132
 
5133
- #: framework/WDWLibraryEmbed.php:399 framework/WDWLibraryEmbed.php:408
5134
- #: framework/WDWLibraryEmbed.php:410
5135
- msgid "The entered URL is incorrect. Please check the URL and try again."
5136
- msgstr ""
5137
 
5138
- #: framework/howto/data.php:4
5139
- msgid "How to insert Photo Gallery (shortcode) ?"
5140
- msgstr ""
 
5141
 
5142
- #: framework/howto/data.php:8
5143
- msgid "Click Add Photo Gallery Button"
5144
- msgstr ""
 
 
 
5145
 
5146
- #: framework/howto/data.php:9
5147
- msgid ""
5148
- "To add a gallery using shortcode, please find and click the \"Add Photo "
5149
- "Gallery\" button in your post/page editor navigation."
5150
- msgstr ""
5151
 
5152
- #: framework/howto/data.php:14
5153
- msgid "Configure and Insert"
5154
- msgstr ""
 
5155
 
5156
- #: framework/howto/data.php:15
5157
- msgid ""
5158
- "In the pop-up, choose gallery view type, gallery, theme and configure other "
5159
- "options for your gallery. Click Insert into post button to add the gallery "
5160
- "to the post/page."
5161
- msgstr ""
5162
 
5163
- #: framework/howto/data.php:20 framework/howto/data.php:44
5164
- #: framework/howto/data.php:94
5165
- msgid "Congrats !"
5166
- msgstr ""
5167
 
5168
- #: framework/howto/data.php:21
5169
- msgid ""
5170
- "You've added a gallery to your post/page. Click on Photo Gallery icon again "
5171
- "if you want to make changes to your gallery."
5172
- msgstr ""
 
 
5173
 
5174
- #: framework/howto/data.php:28
5175
- msgid "How to insert Photo Gallery as widget ?"
5176
- msgstr ""
5177
 
5178
- #: framework/howto/data.php:32
5179
- msgid "Add Gallery Widget"
5180
- msgstr "Добавить виджет галереи"
 
 
5181
 
5182
- #: framework/howto/data.php:33
5183
- msgid ""
5184
- "In your WordPress dashboard go to Appearance > Widgets. Find Photo Gallery "
5185
- "Widget in the list, click and choose the area you want to display the "
5186
- "gallery and click \"Add Widget button\"."
5187
- msgstr ""
 
 
 
 
 
 
 
5188
 
5189
- #: framework/howto/data.php:38
5190
- msgid "Configure and Save"
5191
- msgstr ""
5192
 
5193
- #: framework/howto/data.php:39
5194
- msgid ""
5195
- "Configure gallery options on the right side of the page, including gallery/"
5196
- "album you want to display, image count, dimensions and more. Click save to "
5197
- "display the changes on your website."
5198
- msgstr ""
5199
 
5200
- #: framework/howto/data.php:45
5201
- msgid ""
5202
- "Great, you've added a gallery widget to your site. You can always go back to "
5203
- "the widgets page on your dashboard to edit or delete the Photo Gallery "
5204
- "Widget or add a new one."
5205
- msgstr ""
5206
 
5207
- #: framework/howto/data.php:52
5208
- msgid "How to insert a shortcode in Gutenberg?"
5209
- msgstr ""
5210
 
5211
- #: framework/howto/data.php:56
5212
- #, fuzzy
5213
- #| msgid "Photo Gallery Add-ons"
5214
- msgid "Click the Photo Gallery Button"
5215
- msgstr "Photo Gallery Add-ons"
 
5216
 
5217
- #: framework/howto/data.php:57
5218
- msgid ""
5219
- "Head to the page/post you want to insert a gallery in. In the Gutenberg "
5220
- "editor, click “add block” then click the Photo Gallery button."
5221
- msgstr ""
 
5222
 
5223
- #: framework/howto/data.php:62
5224
- msgid "Configure and Insert Gallery"
5225
- msgstr ""
5226
 
5227
- #: framework/howto/data.php:63
5228
- msgid ""
5229
- "From the window that follows, select which gallery to insert, its layout, "
5230
- "and configure its options. Click “Insert Into Post” to add your selected "
5231
- "gallery to the post/page."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5232
  msgstr ""
5233
 
5234
- #: framework/howto/data.php:68
5235
- msgid "Congrats!"
5236
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5237
 
5238
- #: framework/howto/data.php:69
5239
- msgid ""
5240
- "You’ve successfully inserted your gallery to your post/page. Click the Photo "
5241
- "Gallery icon in your editor to make any further changes to your gallery."
5242
- msgstr ""
5243
 
5244
- #: framework/howto/data.php:78
5245
- msgid "Advanced: PHP code"
5246
- msgstr ""
5247
 
5248
- #: framework/howto/data.php:79
5249
- #, php-format
5250
- msgid ""
5251
- "%s This code should be inserted into a PHP file. This is a more advanced "
5252
- "method of publishing and should be used in case you want the galleries to be "
5253
- "integrated into your theme files ( for example in your website header or "
5254
- "footer area ). You can't insert this code into your post / page editor."
5255
- msgstr ""
5256
 
5257
- #: framework/howto/data.php:79
5258
- msgid "Attention:"
5259
- msgstr ""
5260
 
5261
- #: framework/howto/data.php:82
5262
- msgid "Copy the Code"
5263
- msgstr ""
5264
 
5265
- #: framework/howto/data.php:83
5266
- msgid "Copy the PHP code that appears below before proceeding to next step."
5267
- msgstr ""
5268
 
5269
- #: framework/howto/data.php:88
5270
- msgid "Paste the Code"
5271
- msgstr ""
5272
 
5273
- #: framework/howto/data.php:89
5274
- msgid ""
5275
- "In your dashboard navigation go to Appearance > Editor. Choose the specific "
5276
- "section you want the gallery to appear and paste the PHP code you copied in "
5277
- "that section. Press Update File button to save the changes in the code."
5278
- msgstr ""
5279
 
5280
- #: framework/howto/data.php:95
5281
- msgid ""
5282
- "The Photo Gallery will now appear in the section of the site you’ve chosen."
5283
- msgstr ""
5284
 
5285
- #: framework/howto/howto.php:339 framework/howto/howto.php:357
5286
- msgid "How to ..."
5287
- msgstr ""
5288
 
5289
- #: framework/howto/howto.php:409
5290
- msgid "How to use"
5291
- msgstr ""
5292
 
5293
- #: frontend/controllers/BWGControllerGalleryBox.php:74
5294
- #: frontend/controllers/BWGControllerGalleryBox.php:79
5295
- #: frontend/controllers/BWGControllerGalleryBox.php:88
5296
- #: frontend/controllers/BWGControllerGalleryBox.php:96
5297
- #: frontend/controllers/BWGControllerGalleryBox.php:106
5298
- #, php-format
5299
- msgid "The %s field is required."
5300
- msgstr ""
5301
 
5302
- #: frontend/controllers/BWGControllerGalleryBox.php:83
5303
- #, fuzzy, php-format
5304
- #| msgid "This is not a valid email address."
5305
- msgid "The %s field must contain a valid email address."
5306
- msgstr "Это неправильный адрес электронной почты."
5307
 
5308
- #: frontend/controllers/BWGControllerGalleryBox.php:100
5309
- #, fuzzy
5310
- #| msgid "Error. Incorrect Verification Code."
5311
- msgid "Incorrect Security code."
5312
- msgstr "Ошибка. Неправильный код."
5313
 
5314
- #: frontend/controllers/controller.php:94
5315
- #, fuzzy
5316
- #| msgid "There is no gallery selected or the gallery was deleted."
5317
- msgid "There is no album selected or the gallery was deleted."
5318
- msgstr "Галерея не выбрана или была удалена."
5319
 
5320
- #: frontend/controllers/controller.php:276
5321
- #: frontend/controllers/controller.php:304
5322
- msgid "There is no gallery selected or the gallery was deleted."
5323
- msgstr "Галерея не выбрана или была удалена."
5324
 
5325
- #: frontend/views/BWGViewAlbum_compact_preview.php:78
5326
- #: frontend/views/BWGViewAlbum_extended_preview.php:89
5327
- #: frontend/views/BWGViewAlbum_masonry_preview.php:64
5328
- #, fuzzy
5329
- #| msgid "No Images found."
5330
- msgid "No results found."
5331
- msgstr "Изображений не найдено."
5332
 
5333
- #: frontend/views/BWGViewAlbum_extended_preview.php:161
5334
- #: frontend/views/BWGViewAlbum_extended_preview.php:164
5335
- msgid "More"
5336
- msgstr "Более"
5337
 
5338
- #: frontend/views/BWGViewAlbum_extended_preview.php:162
5339
- msgid "Hide"
5340
- msgstr "Скрыть"
5341
 
5342
- #: frontend/views/BWGViewBlog_style.php:149
5343
- #: frontend/views/BWGViewGalleryBox.php:793
5344
- msgid "Show comments"
5345
- msgstr "Показать комментарии"
5346
 
5347
- #: frontend/views/BWGViewBlog_style.php:155
5348
- #: frontend/views/BWGViewBlog_style.php:156
5349
- #: frontend/views/BWGViewGalleryBox.php:801
5350
- #: frontend/views/BWGViewGalleryBox.php:802
5351
- msgid "Share on Facebook"
5352
- msgstr "Поделиться на Facebook"
5353
 
5354
- #: frontend/views/BWGViewBlog_style.php:162
5355
- #: frontend/views/BWGViewBlog_style.php:163
5356
- #: frontend/views/BWGViewGalleryBox.php:808
5357
- #: frontend/views/BWGViewGalleryBox.php:809
5358
- msgid "Share on Twitter"
5359
- msgstr "Поделиться в Twitter"
5360
 
5361
- #: frontend/views/BWGViewBlog_style.php:169
5362
- #: frontend/views/BWGViewBlog_style.php:170
5363
- #: frontend/views/BWGViewGalleryBox.php:815
5364
- #: frontend/views/BWGViewGalleryBox.php:816
5365
- msgid "Share on Pinterest"
5366
- msgstr "Поделиться на Pinterest"
5367
 
5368
- #: frontend/views/BWGViewBlog_style.php:176
5369
- #: frontend/views/BWGViewBlog_style.php:177
5370
- #: frontend/views/BWGViewGalleryBox.php:822
5371
- #: frontend/views/BWGViewGalleryBox.php:823
5372
- msgid "Share on Tumblr"
5373
- msgstr "Поделиться на Tumblr"
5374
 
5375
- #: frontend/views/BWGViewBlog_style.php:184
5376
- #, fuzzy
5377
- #| msgid "Show comments"
5378
- msgid "Show ecommerce"
5379
- msgstr "Показать комментарии"
5380
 
5381
- #: frontend/views/BWGViewDownload_gallery.php:53
5382
- #, fuzzy
5383
- #| msgid "There are no images in this gallery."
5384
- msgid "There are no images to download."
5385
- msgstr "В этой галерее нет изображений."
5386
 
5387
- #: frontend/views/BWGViewGalleryBox.php:642
5388
- msgid "The image has been deleted."
5389
- msgstr "Изображение было удалено."
5390
 
5391
- #: frontend/views/BWGViewGalleryBox.php:781
5392
- #: frontend/views/BWGViewThumbnails.php:45
5393
- #: frontend/views/BWGViewThumbnails_masonry.php:56
5394
- #: frontend/views/BWGViewThumbnails_mosaic.php:90 photo-gallery.php:1425
5395
- #: photo-gallery.php:1428
5396
- msgid "Play"
5397
- msgstr "Начать"
5398
 
5399
- #: frontend/views/BWGViewGalleryBox.php:785 photo-gallery.php:1418
5400
- msgid "Maximize"
5401
- msgstr "Увеличить"
5402
 
5403
- #: frontend/views/BWGViewGalleryBox.php:789 photo-gallery.php:1419
5404
- msgid "Fullscreen"
5405
- msgstr "Полноэкранный режим"
5406
 
5407
- #: frontend/views/BWGViewGalleryBox.php:791 photo-gallery.php:1431
5408
- msgid "Show info"
5409
- msgstr "Показать информацию"
5410
 
5411
- #: frontend/views/BWGViewGalleryBox.php:795 photo-gallery.php:1433
5412
- msgid "Show rating"
5413
- msgstr "Показать рейтинг"
5414
 
5415
- #: frontend/views/BWGViewGalleryBox.php:830
5416
- msgid "Open image in original size."
5417
- msgstr "Открыть изображение в исходном размере."
5418
 
5419
- #: frontend/views/BWGViewGalleryBox.php:845
5420
- msgid "Download original image"
5421
- msgstr "Скачать оригинальное изображение"
5422
 
5423
- #: frontend/views/BWGViewGalleryBox.php:852
5424
- #: frontend/views/BWGViewThumbnails.php:49
5425
- #: frontend/views/BWGViewThumbnails_masonry.php:60
5426
- #: frontend/views/BWGViewThumbnails_mosaic.php:108
5427
- msgid "Ecommerce"
5428
- msgstr ""
5429
 
5430
- #: frontend/views/BWGViewGalleryBox.php:877
5431
- msgid "Hits: "
5432
- msgstr "Просмотров: "
5433
 
5434
- #: frontend/views/BWGViewGalleryBox.php:897
5435
- msgid "Rated."
5436
- msgstr "Оценено."
5437
 
5438
- #: frontend/views/BWGViewGalleryBox.php:990 photo-gallery.php:1416
5439
- msgid "Hide Comments"
5440
- msgstr "Скрыть комментарии"
5441
 
5442
- #: frontend/views/BWGViewGalleryBox.php:1009
5443
- msgid "Verification Code"
5444
- msgstr "Код подтверждения"
5445
 
5446
- #: frontend/views/BWGViewGalleryBox.php:1032
5447
- #, php-format
5448
- msgid ""
5449
- "I consent collecting this data and processing it according to %s of this "
5450
- "website."
5451
- msgstr ""
5452
 
5453
- #: frontend/views/BWGViewGalleryBox.php:1033
5454
- #: wd/templates/display_subscribe.php:39
5455
- msgid "Privacy Policy"
5456
- msgstr ""
5457
 
5458
- #: frontend/views/BWGViewGalleryBox.php:1042
5459
- msgid "Submit"
5460
- msgstr "Отправить"
5461
 
5462
- #: frontend/views/BWGViewGalleryBox.php:1044
5463
- msgid "Your comment is awaiting moderation"
5464
- msgstr "Ваш комментарий на модерации"
5465
 
5466
- #: frontend/views/BWGViewGalleryBox.php:1078 photo-gallery.php:1414
5467
- #, fuzzy
5468
- #| msgid "Hide Comments"
5469
- msgid "Hide Ecommerce"
5470
- msgstr "Скрыть комментарии"
5471
 
5472
- #: frontend/views/BWGViewGalleryBox.php:1084
5473
- #: frontend/views/BWGViewGalleryBox.php:1267
5474
- msgid "Add to cart"
5475
- msgstr ""
5476
 
5477
- #: frontend/views/BWGViewGalleryBox.php:1087
5478
- #, fuzzy
5479
- #| msgid "item"
5480
- msgid "items"
5481
- msgstr "элемент"
5482
 
5483
- #: frontend/views/BWGViewGalleryBox.php:1095
5484
- msgid "Prints and products"
5485
- msgstr ""
 
 
5486
 
5487
- #: frontend/views/BWGViewGalleryBox.php:1102
5488
- msgid "Downloads"
5489
- msgstr ""
5490
 
5491
- #: frontend/views/BWGViewGalleryBox.php:1116
5492
- #: frontend/views/BWGViewGalleryBox.php:1228
5493
- msgid "Price"
5494
- msgstr ""
5495
 
5496
- #: frontend/views/BWGViewGalleryBox.php:1136
5497
- msgid "Count"
5498
- msgstr ""
5499
 
5500
- #: frontend/views/BWGViewGalleryBox.php:1216
5501
- #: frontend/views/BWGViewGalleryBox.php:1260
5502
- msgid "Total"
5503
- msgstr ""
5504
 
5505
- #: frontend/views/BWGViewGalleryBox.php:1227
5506
- msgid "Dimensions"
5507
- msgstr ""
5508
 
5509
- #: frontend/views/BWGViewGalleryBox.php:1229
5510
- msgid "Choose"
5511
- msgstr ""
5512
 
5513
- #: frontend/views/BWGViewGalleryBox.php:1268
5514
- msgid "View cart"
5515
- msgstr ""
5516
 
5517
- #: frontend/views/BWGViewGalleryBox.php:1374
5518
- msgid "Delete Comment"
5519
- msgstr "Удалить комментарий"
5520
 
5521
- #: frontend/views/BWGViewThumbnails.php:48
5522
- #: frontend/views/BWGViewThumbnails_masonry.php:59
5523
- #: frontend/views/BWGViewThumbnails_mosaic.php:107
5524
- msgid "Open"
5525
- msgstr ""
 
 
5526
 
5527
- #: frontend/views/view.php:94 frontend/views/view.php:171
5528
- #, fuzzy
5529
- #| msgid "There are no images in this gallery."
5530
- msgid "There are no images."
5531
- msgstr "В этой галерее нет изображений."
5532
 
5533
- #: frontend/views/view.php:97 frontend/views/view.php:174
5534
- msgid "No Images found."
5535
- msgstr "Изображений не найдено."
5536
 
5537
- #: frontend/views/view.php:317
5538
- #, fuzzy
5539
- #| msgid "Download original image"
5540
- msgid "Download gallery"
5541
- msgstr "Скачать оригинальное изображение"
5542
 
5543
- #: frontend/views/view.php:373 frontend/views/view.php:382
5544
- #: photo-gallery.php:1421
5545
- msgid "SEARCH..."
5546
- msgstr ""
5547
 
5548
- #: frontend/views/view.php:421
5549
- #, fuzzy
5550
- #| msgid "Order by: "
5551
- msgid "Order by Default"
5552
- msgstr "Сортировка по"
5553
 
5554
- #: frontend/views/view.php:634
5555
- msgid " item(s)"
5556
- msgstr " элемент(ы)"
5557
 
5558
- #: frontend/views/view.php:640
5559
- msgid "Previous"
5560
- msgstr "Предыдущий"
5561
 
5562
- #: frontend/views/view.php:641
5563
- msgid "Next"
5564
- msgstr "Следующий"
5565
 
5566
- #: frontend/views/view.php:660
5567
- msgid "Go to the first page"
5568
- msgstr "Перейти к первой странице"
5569
 
5570
- #: frontend/views/view.php:661
5571
- msgid "Go to the previous page"
5572
- msgstr "Перейти на предыдущую страницу"
5573
 
5574
- #: frontend/views/view.php:668
5575
- msgid "Go to the next page"
5576
- msgstr "Перейти на следующую страницу"
 
 
5577
 
5578
- #: frontend/views/view.php:669
5579
- msgid "Go to the last page"
5580
- msgstr "Перейти к последней странице"
5581
 
5582
- #: frontend/views/view.php:681
5583
- msgid "Load More..."
5584
- msgstr "Загрузить больше..."
5585
 
5586
- #: insert.php:137
5587
- msgid "Light"
5588
- msgstr ""
5589
 
5590
- #: insert.php:144
5591
- msgid "Dark"
5592
- msgstr ""
5593
 
5594
- #: photo-gallery.php:270
5595
- msgid "Help"
5596
- msgstr ""
5597
 
5598
- #: photo-gallery.php:317
5599
- msgid "10WEB Plugins"
5600
- msgstr ""
 
5601
 
5602
- #: photo-gallery.php:338
5603
- msgid ""
5604
- "When you leave a comment on this site, we send your name, email\n"
5605
- " address, IP address and comment text to example.com. Example.com "
5606
- "does\n"
5607
- " not retain your personal data."
5608
- msgstr ""
5609
 
5610
- #: photo-gallery.php:347
5611
- #, php-format
5612
- msgid "Select %s"
5613
- msgstr ""
5614
 
5615
- #: photo-gallery.php:372
5616
- msgid "Nothing selected."
5617
- msgstr ""
5618
 
5619
- #: photo-gallery.php:373
5620
- msgid "- Select -"
5621
- msgstr ""
5622
 
5623
- #: photo-gallery.php:407
5624
- #, php-format
5625
- msgid ""
5626
- "Image edit functionality is not supported by your web host. We highly "
5627
- "recommend you to contact your hosting provider and ask them to enable %s "
5628
- "library."
5629
- msgstr ""
5630
 
5631
- #: photo-gallery.php:407
5632
- msgid "PHP GD"
5633
- msgstr ""
5634
 
5635
- #: photo-gallery.php:408
5636
- #, php-format
5637
- msgid ""
5638
- "Without image editing functions, image thumbnails will not be created, thus "
5639
- "causing load time issues on published galleries. Furthermore, some of Photo "
5640
- "Gallery's features, e.g. %s, %s, and %s, will not be available."
5641
- msgstr ""
5642
 
5643
- #: photo-gallery.php:408
5644
- msgid "crop"
5645
- msgstr ""
5646
 
5647
- #: photo-gallery.php:408
5648
- msgid "edit"
5649
- msgstr ""
5650
 
5651
- #: photo-gallery.php:408
5652
- msgid "rotate"
5653
- msgstr "повернуть"
5654
 
5655
- #: photo-gallery.php:417
5656
- #, php-format
5657
- msgid ""
5658
- "Image edit functionality was just activated on your web host. Please go to "
5659
- "%s, navigate to %s tab and press %s button."
5660
- msgstr ""
5661
 
5662
- #: photo-gallery.php:417 photo-gallery.php:469
5663
- msgid "Options"
5664
- msgstr ""
 
5665
 
5666
- #: photo-gallery.php:417
5667
- #, fuzzy
5668
- #| msgid "Previous"
5669
- msgid "Options page"
5670
- msgstr "Предыдущий"
5671
 
5672
- #: photo-gallery.php:461
5673
- msgid "Add Galleries/Images"
5674
- msgstr ""
5675
 
5676
- #: photo-gallery.php:527
5677
- #, php-format
5678
- msgid "The controller %s file not exist."
5679
- msgstr ""
5680
 
5681
- #: photo-gallery.php:532
5682
- #, php-format
5683
- msgid "The view %s file not exist."
5684
- msgstr ""
5685
 
5686
- #: photo-gallery.php:548 photo-gallery.php:553
5687
- #, php-format
5688
- msgid "The %s class not exist."
5689
- msgstr ""
5690
 
5691
- #: photo-gallery.php:596 photo-gallery.php:630
5692
- msgid "Do you want to delete selected items?"
5693
- msgstr ""
5694
 
5695
- #: photo-gallery.php:597 photo-gallery.php:625
5696
- msgid "You must select at least one item."
5697
- msgstr ""
5698
 
5699
- #: photo-gallery.php:598
5700
- msgid "Do you want to remove pricelist from selected items?"
5701
- msgstr ""
 
 
 
 
5702
 
5703
- #: photo-gallery.php:605 photo-gallery.php:1407
5704
- msgid "field is required."
5705
- msgstr ""
 
 
 
5706
 
5707
- #: photo-gallery.php:606
5708
- msgid "You must select an image file."
5709
- msgstr ""
5710
 
5711
- #: photo-gallery.php:607
5712
- msgid "You must select an audio file."
5713
- msgstr ""
5714
 
5715
- #: photo-gallery.php:608
5716
- msgid ""
5717
- "You do not have Instagram access token. Sign in with Instagram in Options -> "
5718
- "Advanced tab -> Social. "
5719
- msgstr ""
5720
 
5721
- #: photo-gallery.php:609
5722
- msgid ""
5723
- "You do not have Instagram CLIENT_ID. Input its value in Options->Embed "
5724
- "options."
5725
- msgstr ""
5726
 
5727
- #: photo-gallery.php:610
5728
- msgid "Instagram recent post number must be between 1 and 33."
5729
- msgstr ""
5730
 
5731
- #: photo-gallery.php:611
5732
- msgid ""
5733
- "Gallery type cannot be changed, since it is not empty. In case you would "
5734
- "like to have Instagram gallery, please create a new one."
5735
- msgstr ""
5736
 
5737
- #: photo-gallery.php:612
5738
- msgid "Please enter url to embed."
5739
- msgstr ""
5740
 
5741
- #: photo-gallery.php:613
5742
- msgid "Error: cannot get response from the server."
5743
- msgstr ""
 
5744
 
5745
- #: photo-gallery.php:614
5746
- msgid "Error: something wrong happened at the server."
5747
- msgstr ""
 
 
5748
 
5749
- #: photo-gallery.php:615
5750
- msgid "Error"
5751
- msgstr ""
 
 
5752
 
5753
- #: photo-gallery.php:617
5754
- msgid "Hide order column"
5755
- msgstr ""
5756
 
5757
- #: photo-gallery.php:618
5758
- #, php-format
5759
- msgid "Selected %d item."
5760
- msgstr ""
5761
 
5762
- #: photo-gallery.php:619
5763
- #, php-format
5764
- msgid "Selected %d items."
5765
- msgstr ""
5766
 
5767
- #: photo-gallery.php:620
5768
- msgid "Items Succesfully Saved."
5769
- msgstr ""
5770
 
5771
- #: photo-gallery.php:621
5772
- msgid "Item Succesfully Recovered."
5773
- msgstr ""
5774
 
5775
- #: photo-gallery.php:622
5776
- msgid "Item Succesfully Published."
5777
- msgstr ""
 
5778
 
5779
- #: photo-gallery.php:623
5780
- msgid "Item Succesfully Unpublished."
5781
- msgstr ""
5782
 
5783
- #: photo-gallery.php:624
5784
- msgid "Item Succesfully Deleted."
5785
- msgstr ""
5786
 
5787
- #: photo-gallery.php:626
5788
- msgid "Items Succesfully resized."
5789
- msgstr ""
5790
 
5791
- #: photo-gallery.php:627
5792
- msgid "Watermarks Succesfully Set."
5793
- msgstr ""
5794
 
5795
- #: photo-gallery.php:628
5796
- msgid "Items Succesfully Reset."
5797
- msgstr ""
5798
 
5799
- #: photo-gallery.php:629
5800
- msgid "Save Tag"
5801
- msgstr ""
5802
 
5803
- #: photo-gallery.php:631 photo-gallery.php:633
5804
- msgid ""
5805
- "This action will reset gallery type to mixed and will save that choice. You "
5806
- "cannot undo it."
5807
- msgstr ""
5808
 
5809
- #: photo-gallery.php:632
5810
- msgid ""
5811
- "After pressing save/apply buttons, you cannot change gallery type back to "
5812
- "Instagram!"
5813
- msgstr ""
5814
 
5815
- #: photo-gallery.php:634
5816
- msgid "Insert"
5817
- msgstr ""
5818
 
5819
- #: photo-gallery.php:635
5820
- msgid "Failed to import images from media library"
5821
- msgstr ""
5822
 
5823
- #: photo-gallery.php:636
5824
- msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
5825
- msgstr ""
5826
 
5827
- #: photo-gallery.php:640
5828
- msgid "Thumbnails successfully recreated."
5829
- msgstr ""
 
5830
 
5831
- #: photo-gallery.php:641
5832
- msgid "All images are successfully reset."
5833
- msgstr ""
 
5834
 
5835
- #: photo-gallery.php:1002
5836
- msgid "Insert Photo Gallery"
5837
- msgstr ""
5838
 
5839
- #: photo-gallery.php:1004
5840
- msgid "Add Photo Gallery"
5841
- msgstr ""
5842
 
5843
- #: photo-gallery.php:1408
5844
- msgid "This is not a valid email address."
5845
- msgstr "Это неправильный адрес электронной почты."
 
 
5846
 
5847
- #: photo-gallery.php:1409
5848
- msgid "There are no images matching your search."
5849
- msgstr "По вашему поиску изображений не найдено."
5850
 
5851
- #: photo-gallery.php:1410
5852
- msgid "Select Tag"
5853
- msgstr ""
5854
 
5855
- #: photo-gallery.php:1411
5856
- #, fuzzy
5857
- #| msgid "Order by: "
5858
- msgid "Order By"
5859
- msgstr "Сортировка по"
5860
 
5861
- #: photo-gallery.php:1413
5862
- #, fuzzy
5863
- #| msgid "Show comments"
5864
- msgid "Show Ecommerce"
5865
- msgstr "Показать комментарии"
 
 
 
 
 
 
 
 
 
 
 
 
 
5866
 
5867
- #: photo-gallery.php:1415
5868
- msgid "Show Comments"
5869
- msgstr "Показать комментарии"
5870
 
5871
- #: photo-gallery.php:1417
5872
- msgid "Restore"
5873
- msgstr "Восстановить"
5874
 
5875
- #: photo-gallery.php:1420
5876
- msgid "Exit Fullscreen"
5877
- msgstr "Отключить полноэкранный режим"
5878
 
5879
- #: photo-gallery.php:1422
5880
- msgid "No tags found"
5881
- msgstr ""
5882
 
5883
- #: photo-gallery.php:1423
5884
- msgid "All tags selected"
5885
- msgstr ""
5886
 
5887
- #: photo-gallery.php:1424
5888
- msgid "tags selected"
5889
- msgstr ""
5890
 
5891
- #: photo-gallery.php:1426 photo-gallery.php:1429
5892
- msgid "Pause"
5893
- msgstr "Пауза"
5894
 
5895
- #: photo-gallery.php:1430
5896
- msgid "Hide info"
5897
- msgstr "Скрыть информацию"
 
5898
 
5899
- #: photo-gallery.php:1432
5900
- msgid "Hide rating"
5901
- msgstr "Скрыть рейтинг"
5902
 
5903
- #: photo-gallery.php:1434
5904
- msgid "Ok"
5905
- msgstr ""
5906
 
5907
- #: photo-gallery.php:1483
5908
- msgid ""
5909
- "Photo Gallery is a fully responsive gallery plugin with advanced "
5910
- "functionality. It allows having different image galleries for your posts and "
5911
- "pages. You can create unlimited number of galleries, combine them into "
5912
- "gallery groups, and provide descriptions and tags."
5913
- msgstr ""
5914
 
5915
- #: photo-gallery.php:1487
5916
- msgid "Easy Set-up and Management"
5917
- msgstr ""
 
 
 
5918
 
5919
- #: photo-gallery.php:1488
5920
- msgid ""
5921
- "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. "
5922
- "Use the File Manager with single-step and easy-to-manage functionality to "
5923
- "rename, upload, copy, add and remove images and image directories. Otherwise "
5924
- "use WordPress built in media uploader."
5925
- msgstr ""
5926
 
5927
- #: photo-gallery.php:1491
5928
- msgid "Unlimited Photos and Albums"
5929
- msgstr ""
 
 
 
5930
 
5931
- #: photo-gallery.php:1492
5932
- msgid ""
5933
- "The plugin allows creating unlimited number of galleries or gallery groups "
5934
- "and upload images in each gallery as many as you wish. Add single/ multiple "
5935
- "galleries into your pages and posts with the help of functional shortcode; "
5936
- "visual shortcodes for an easier management."
5937
- msgstr ""
5938
 
5939
- #: photo-gallery.php:1495
5940
- msgid "Customizable"
5941
- msgstr ""
5942
 
5943
- #: photo-gallery.php:1496
5944
- msgid ""
5945
- "The gallery plugin is easily customizable. You can edit themes changing "
5946
- "sizes and colors for different features. Specify the number of images to "
5947
- "display in a single row in an gallery group. Additionally, you can customize "
5948
- "thumbnail images by cropping, flipping and rotating them."
5949
- msgstr ""
5950
 
5951
- #: photo-gallery.php:1499
5952
- msgid "10 View Options"
5953
- msgstr ""
 
 
5954
 
5955
- #: photo-gallery.php:1500
5956
- msgid ""
5957
- "Photo Gallery plugin allows displaying galleries and gallery groups in 10 "
5958
- "elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image "
5959
- "Browser, Masonry Album, Compact Album, Extended Album, Blog Style Gallery, "
5960
- "Ecommerce."
5961
- msgstr ""
5962
 
5963
- #: photo-gallery.php:1503
5964
- msgid "Audio and Video Support"
5965
- msgstr ""
5966
 
5967
- #: photo-gallery.php:1504
5968
- msgid ""
5969
- "You can include both videos and images within a single gallery. WordPress "
5970
- "Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. "
5971
- "It's also possible to add audio tracks for the image slideshow."
5972
- msgstr ""
5973
 
5974
- #: photo-gallery.php:1510
5975
- msgid "Installing"
5976
- msgstr ""
5977
 
5978
- #: photo-gallery.php:1515
5979
- msgid "Creating/Editing Galleries"
5980
- msgstr ""
 
5981
 
5982
- #: photo-gallery.php:1519
5983
- msgid "Instagram Gallery"
5984
- msgstr ""
5985
 
5986
- #: photo-gallery.php:1525
5987
- msgid "Creating/Editing Tags"
5988
- msgstr ""
5989
 
5990
- #: photo-gallery.php:1530
5991
- msgid "Creating/Editing Albums"
5992
- msgstr ""
 
5993
 
5994
- #: photo-gallery.php:1535
5995
- msgid "Editing Options"
5996
- msgstr ""
5997
 
5998
- #: photo-gallery.php:1539
5999
- msgid "Global Options"
6000
- msgstr ""
6001
 
6002
- #: photo-gallery.php:1555
6003
- msgid "Album Options"
6004
- msgstr ""
6005
 
6006
- #: photo-gallery.php:1563
6007
- msgid "Thumbnail Options"
6008
- msgstr ""
6009
 
6010
- #: photo-gallery.php:1567
6011
- msgid "Image Options"
6012
- msgstr ""
6013
 
6014
- #: photo-gallery.php:1571
6015
- msgid "Social Options"
6016
- msgstr ""
 
 
 
 
6017
 
6018
- #: photo-gallery.php:1575
6019
- msgid "Carousel Options"
6020
- msgstr ""
 
 
 
 
6021
 
6022
- #: photo-gallery.php:1581
6023
- msgid "Creating/Editing Themes"
6024
- msgstr ""
 
6025
 
6026
- #: photo-gallery.php:1605
6027
- msgid "Compact Album"
6028
- msgstr ""
 
6029
 
6030
- #: photo-gallery.php:1609
6031
- msgid "Masonry Album"
6032
- msgstr ""
6033
 
6034
- #: photo-gallery.php:1613
6035
- msgid "Extended Album"
6036
- msgstr ""
6037
 
6038
- #: photo-gallery.php:1625
6039
- msgid "Page Navigation"
6040
- msgstr ""
6041
 
6042
- #: photo-gallery.php:1635
6043
- msgid "Generating Shortcode"
6044
- msgstr ""
 
6045
 
6046
- #: photo-gallery.php:1640
6047
- #, fuzzy
6048
- #| msgid "Hide Comments"
6049
- msgid "Editing Comments"
6050
- msgstr "Скрыть комментарии"
6051
 
6052
- #: photo-gallery.php:1645
6053
- msgid "Editing Ratings"
6054
- msgstr ""
6055
 
6056
- #: photo-gallery.php:1650
6057
- msgid "Publishing the Created Photo Gallery"
6058
- msgstr ""
6059
 
6060
- #: photo-gallery.php:1654
6061
- msgid "General Parameters"
6062
- msgstr ""
6063
 
6064
- #: photo-gallery.php:1658
6065
- msgid "Lightbox Parameters"
6066
- msgstr ""
 
6067
 
6068
- #: photo-gallery.php:1668
6069
- msgid "Publishing Photo Gallery Widgets"
6070
- msgstr ""
6071
 
6072
- #: photo-gallery.php:1672
6073
- msgid "Tag Cloud"
6074
- msgstr ""
6075
 
6076
- #: photo-gallery.php:1684
6077
- msgid "Photo Gallery Widget"
6078
- msgstr ""
6079
 
6080
- #: photo-gallery.php:1755
6081
- msgid "Albums"
6082
- msgstr ""
 
 
6083
 
6084
- #: photo-gallery.php:1770
6085
- msgid "Gallery tags"
6086
- msgstr "Теги галереи"
 
 
6087
 
6088
- #: photo-gallery.php:1819
6089
- msgid "Photo gallery plugin autoupdate interval."
6090
- msgstr "Интервал автообновления для плагина Photo Gallery."
 
6091
 
6092
- #: photo-gallery.php:1862
6093
- #, php-format
6094
- msgid "Please update the %s add-on to start using."
6095
- msgstr ""
6096
 
6097
- #: photo-gallery.php:1863
6098
- #, php-format
6099
- msgid "Please update the %s add-ons to start using."
6100
- msgstr ""
 
6101
 
6102
- #: photo-gallery.php:1906
6103
- msgid "Rate"
6104
- msgstr "Оценить"
6105
 
6106
- #: photo-gallery.php:2013
6107
- #, php-format
6108
- msgid ""
6109
- "%s Photo Gallery advises:%s %sCheck your website’s performance, optimize "
6110
- "images and improve the speed in just minutes.%s"
6111
- msgstr ""
6112
 
6113
- #: wd/includes/deactivate.php:37
6114
- msgid "Technical problems / hard to use"
6115
- msgstr "Технические проблемы / трудно использовать"
 
6116
 
6117
- #: wd/includes/deactivate.php:41
6118
- msgid "Free version is limited"
6119
- msgstr "Бесплатная версия ограничена"
6120
 
6121
- #: wd/includes/deactivate.php:45
6122
  msgid "Upgrading to paid version"
6123
  msgstr "Обновление до платной версии"
6124
 
6125
- #: wd/includes/deactivate.php:49
6126
- msgid "Temporary deactivation"
6127
- msgstr "Временная деактивация"
6128
 
6129
- #: wd/includes/notices.php:211
6130
- msgid "Leave A Review?"
6131
- msgstr "Оставить отзыв?"
6132
 
6133
- #: wd/includes/notices.php:212
6134
- #, php-format
6135
- msgid ""
6136
- "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
6137
- "review on WordPress.org?"
6138
- msgstr ""
6139
- "Мы надеемся, что вам понравилось использовать WordPress% s! Не могли бы вы "
6140
- "оставить отзыв на WordPress.org?"
6141
 
6142
- #: wd/includes/notices.php:213
6143
- msgid "Sure! I'd love to!"
6144
- msgstr "Конечно! Я бы хотел!"
6145
 
6146
- #: wd/includes/notices.php:214
6147
- msgid "I've already left a review"
6148
- msgstr "Я уже оставил отзыв"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6149
 
6150
- #: wd/includes/notices.php:215
6151
- msgid "Maybe Later"
6152
- msgstr "Может быть позже"
6153
 
6154
- #: wd/includes/notices.php:216
6155
- msgid "Never show again"
6156
- msgstr "Никогда не показывать"
6157
 
6158
- #: wd/templates/display_deactivation_popup.php:8
6159
- msgid ""
6160
- "Please let us know why you are deactivating. Your answer will help us to "
6161
- "provide you support or sometimes offer discounts. (Optional)"
6162
- msgstr ""
6163
- "Пожалуйста, сообщите почему Вы хотите удалить плагин. Ваш ответ поможет нам "
6164
- "предоставить вам поддержку или иногда предлагать скидки. (Необязательный)"
6165
 
6166
- #: wd/templates/display_deactivation_popup.php:22
6167
- msgid "Skip and Deactivate"
6168
- msgstr "Пропустить и деактивировать"
6169
 
6170
- #: wd/templates/display_deactivation_popup.php:23
6171
- msgid "Submit and Deactivate"
6172
- msgstr "Отправить и деактивировать"
6173
 
6174
- #: wd/templates/display_overview.php:10 wd/templates/display_overview.php:119
6175
- #, php-format
6176
- msgid "Get Premium %s and Other Solutions Essential for Your WordPress Site."
6177
- msgstr ""
6178
- "Получите премиальные% s и другие решения, необходимые для вашего сайта "
6179
- "WordPress."
6180
 
6181
- #: wd/templates/display_overview.php:13
6182
- msgid "Try Free"
6183
- msgstr "Попробовать бесплатно"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6184
 
6185
- #: wd/templates/display_overview.php:21 wd/templates/display_overview.php:81
6186
- msgid "Premium "
6187
- msgstr "Премиум"
6188
 
6189
- #: wd/templates/display_overview.php:27
6190
- #, fuzzy
6191
- #| msgid "60+ pro plugins/Add-ons"
6192
- msgid "60+ pro plugins/Extensions"
6193
- msgstr "60+ pro plugins/Add-ons"
6194
 
6195
- #: wd/templates/display_overview.php:28
6196
- #, fuzzy
6197
- #| msgid ""
6198
- #| "Access 60+ plugins and add-ons, including key plugins, such as gallery, "
6199
- #| "form, slider, social plugins and more."
6200
- msgid ""
6201
- "Access 60+ plugins and extensions, including key plugins, such as gallery, "
6202
- "form, slider, social plugins and more."
6203
- msgstr ""
6204
- "Доступ к 60 + плагинам и надстройкам, включая ключевые плагины, такие как "
6205
- "галерея, форма, слайдер, социальные плагины и многое другое."
6206
 
6207
- #: wd/templates/display_overview.php:32
6208
- msgid "Unified dashboard"
6209
- msgstr "Унифицированная консоль"
 
6210
 
6211
- #: wd/templates/display_overview.php:33
6212
- msgid ""
6213
- "Manage your WordPress websites all in one place within a single dashboard. "
6214
- "No need to switch between sites."
6215
- msgstr ""
6216
- "Управляйте своими веб-сайтами WordPress в одном месте на одной панели. Не "
6217
- "нужно переключаться между сайтами."
6218
 
6219
- #: wd/templates/display_overview.php:37
6220
- msgid "Premium WordPress themes"
6221
- msgstr "Премиум темы WordPress"
6222
 
6223
- #: wd/templates/display_overview.php:38
6224
- msgid ""
6225
- "Professionally designed, responsive themes for your website. Build fully-"
6226
- "functional, elegant websites effortlessly."
6227
- msgstr ""
6228
- "Профессионально разработанные, отзывчивые темы для вашего сайта. Постройте "
6229
- "многофункциональные, элегантные веб-сайты без усилий."
6230
 
6231
- #: wd/templates/display_overview.php:43
6232
- msgid "Backup"
6233
- msgstr "Резервное копирование"
 
6234
 
6235
- #: wd/templates/display_overview.php:44
6236
- msgid ""
6237
- "10Web cloud storage space. Easily and securely backup your website in our "
6238
- "storage."
6239
- msgstr ""
6240
- "10Web облако хранения. Легко и безопасно резервируйте свой сайт в нашем "
6241
- "хранилище."
6242
 
6243
- #: wd/templates/display_overview.php:50
6244
- msgid "SEO"
6245
- msgstr "SEO"
6246
 
6247
- #: wd/templates/display_overview.php:51
6248
- msgid ""
6249
- "Improve search rankings of your WordPress site with a comprehensive search "
6250
- "engine optimization solution."
6251
- msgstr ""
6252
- "Повысьте рейтинг поиска на своем сайте WordPress с помощью комплексного "
6253
- "решения для поисковой оптимизации."
6254
 
6255
- #: wd/templates/display_overview.php:56
6256
- msgid "Security"
6257
- msgstr "Безопасность"
6258
 
6259
- #: wd/templates/display_overview.php:57
6260
- msgid ""
6261
- "Protect your WordPress site from security issues and threats with a powerful "
6262
- "security service coming soon to 10Web."
6263
- msgstr ""
6264
- "Защитите свой сайт WordPress от проблем безопасности и угроз с помощью "
6265
- "мощной службы безопасности, которая скоро появится в 10Web."
6266
 
6267
- #: wd/templates/display_overview.php:62
6268
- msgid "Image optimization"
6269
- msgstr "Оптимизация изображения"
6270
 
6271
- #: wd/templates/display_overview.php:63
6272
- msgid ""
6273
- "Automatically resize and compress all images on your website to save space "
6274
- "and improve site speed."
6275
- msgstr ""
6276
- "Автоматически изменять размер и сжимать все изображения на вашем веб-сайте, "
6277
- "чтобы сэкономить место и улучшить скорость сайта."
6278
 
6279
- #: wd/templates/display_overview.php:68
6280
- msgid "Hosting"
6281
- msgstr "Хостинг"
6282
 
6283
- #: wd/templates/display_overview.php:69
6284
- msgid ""
6285
- "We’ll soon be offering affordable hosting solution with WordPress-friendly "
6286
- "features and great customer support."
6287
- msgstr ""
6288
- "Мы скоро предложим доступное решение для хостинга с удобными функциями "
6289
- "WordPress и отличной поддержкой клиентов."
6290
 
6291
- #: wd/templates/display_overview.php:73 wd/templates/display_overview.php:121
6292
- msgid "Get free for 14 days"
6293
- msgstr "Получите бесплатно в течение 14 дней"
6294
 
6295
- #: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
6296
- msgid "Learn More"
6297
- msgstr "Выучить больше"
6298
 
6299
- #: wd/templates/display_overview.php:81
6300
- msgid " features you get!"
6301
- msgstr " функции вы получаете!"
6302
 
6303
- #: wd/templates/display_overview.php:94
6304
- msgid "More great features of the plugin"
6305
- msgstr "Дополнительные возможности плагина"
6306
 
6307
- #: wd/templates/display_overview.php:103
6308
- msgid "Checkout how it works"
6309
- msgstr "Проверь как это работает"
6310
 
6311
- #: wd/templates/display_overview.php:107
6312
- msgid "Demo"
6313
- msgstr "Демо"
6314
 
6315
- #: wd/templates/display_overview.php:111
6316
- msgid "User Guide"
6317
- msgstr "Гид пользователя"
6318
 
6319
- #: wd/templates/display_subscribe.php:5
6320
- msgid "Hi there!"
6321
- msgstr "Всем привет!"
6322
 
6323
- #: wd/templates/display_subscribe.php:6
6324
- msgid "Allow 10Web to collect some usage data"
6325
- msgstr "Разрешить 10Web собирать некоторые данные об использовании"
6326
 
6327
- #: wd/templates/display_subscribe.php:8
6328
- #, php-format
6329
- msgid ""
6330
- "This will allow you to get more out of your plugin experience - get awesome "
6331
- "customer support, receive exclusive deals and discounts on premium products "
6332
- "and more. You can choose to skip this step, %s will still work just fine."
6333
- msgstr ""
6334
- "Это позволит вам получить больше возможностей от вашего плагина - получить "
6335
- "отличную поддержку клиентов, получать эксклюзивные предложения и скидки на "
6336
- "премиальные продукты и многое другое. Вы можете пропустить этот шаг,% s все "
6337
- "равно будет работать нормально."
6338
 
6339
  #: wd/templates/display_subscribe.php:11
6340
  msgid "What data is being collected?"
6341
  msgstr "Какие данные собираются?"
6342
 
6343
- #: wd/templates/display_subscribe.php:15
6344
- msgid "Your name & Email address"
6345
- msgstr "Ваше имя и адрес электронной почты"
6346
-
6347
- #: wd/templates/display_subscribe.php:19
6348
- msgid "Site URL, Wordpress version"
6349
- msgstr "URL сайта, версия Wordpress"
6350
-
6351
- #: wd/templates/display_subscribe.php:23
6352
- msgid "List of plugins"
6353
- msgstr "Список плагинов"
6354
-
6355
- #: wd/templates/display_subscribe.php:27
6356
- msgid "Allow & Continue"
6357
- msgstr "Разрешить и продолжить"
6358
-
6359
- #: wd/templates/display_subscribe.php:33
6360
  msgid ""
6361
- "We will not sell, share, or distribute your personal information to third "
6362
- "parties."
 
6363
  msgstr ""
6364
- "Мы не будем продавать, делиться или распространять вашу личную информацию "
6365
- "третьим лицам."
6366
-
6367
- #: wd/templates/display_subscribe.php:45
6368
- msgid "Terms of Use"
6369
- msgstr "Условия эксплуатации"
6370
-
6371
- #: wd/wd.php:72 wd/wd.php:76
6372
- msgid "Premium"
6373
- msgstr "Премиум"
6374
-
6375
- #~ msgid "Gallery/Gallery group"
6376
- #~ msgstr "Галерея / Группа галерии"
6377
 
6378
- #~ msgid "Select the gallery view type."
6379
- #~ msgstr "Выберите тип просмотра галереи."
6380
-
6381
- #~ msgid "Edit tag"
6382
- #~ msgstr "Изменить тег"
6383
-
6384
- #~ msgid "Select the gallery group type."
6385
- #~ msgstr "Выберите тип группы галереи."
6386
-
6387
- #~ msgid "Edit gallery group"
6388
- #~ msgstr "Изменить группу галереи"
6389
 
6390
- #~ msgid "Edit theme"
6391
- #~ msgstr "Редактировать тему"
 
 
6392
 
6393
- #, fuzzy
6394
- #~| msgid "Order by: "
6395
- #~ msgid "Order"
6396
- #~ msgstr "Сортировка по"
 
 
6397
 
6398
- #, fuzzy
6399
- #~| msgid "Share on Google+"
6400
- #~ msgid "Show Google+ button"
6401
- #~ msgstr "Поделиться на Google+"
6402
 
6403
- #, fuzzy
6404
- #~| msgid "Hide info"
6405
- #~ msgid "Edit info"
6406
- #~ msgstr "Скрыть информацию"
6407
 
6408
- #~ msgid "There is no theme selected or the theme was deleted."
6409
- #~ msgstr "Тема не выбрана или была удалена."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6410
 
6411
- #~ msgid "Album is empty."
6412
- #~ msgstr "Альбом пуст."
 
6413
 
6414
- #~ msgid "Share on Google+"
6415
- #~ msgstr "Поделиться на Google+"
 
6416
 
6417
- #~ msgid "Not rated yet."
6418
- #~ msgstr "Пока не оценено."
 
6419
 
6420
- #~ msgid "Votes: "
6421
- #~ msgstr "Голосов: "
 
6422
 
6423
- #~ msgid "Cancel your rating."
6424
- #~ msgstr "Отменить свой рейтинг."
 
6425
 
6426
- #~ msgid "You have already rated."
6427
- #~ msgstr "Вы уже оценили."
 
6428
 
6429
- #~ msgid "how Comments"
6430
- #~ msgstr "как Комментарии"
 
6431
 
6432
- #, php-format
6433
- #~ msgid ""
6434
- #~ "%s advises: Install brand new %s plugin to optimize your website images "
6435
- #~ "quickly and easily."
6436
- #~ msgstr ""
6437
- #~ "% s советует: установите новый плагин% s, чтобы быстро и легко "
6438
- #~ "оптимизировать ваши изображения на сайте."
6439
 
6440
- #~ msgid "More details"
6441
- #~ msgstr "Подробнее"
 
6442
 
6443
- #~ msgid "Image Optimizer WD"
6444
- #~ msgstr "Image Optimizer WD"
 
6445
 
6446
- #~ msgid "Optimize now"
6447
- #~ msgstr "Оптимизировать"
 
6448
 
6449
- #, fuzzy
6450
- #~| msgid "There are no images in this gallery."
6451
- #~ msgid "The gallery images view type in the gallery group."
6452
- #~ msgstr "В этой галерее нет изображений."
6453
 
6454
- #, fuzzy
6455
- #~| msgid "Load More..."
6456
- #~ msgid "Load more"
6457
- #~ msgstr "Загрузить больше..."
6458
 
6459
- #, fuzzy
6460
- #~| msgid "Album is empty."
6461
- #~ msgid "Albums per page"
6462
- #~ msgstr "Альбом пуст."
6463
 
6464
- #, fuzzy
6465
- #~| msgid "Album is empty."
6466
- #~ msgid "Album title"
6467
- #~ msgstr "Альбом пуст."
6468
 
6469
- #, fuzzy
6470
- #~| msgid "Album is empty."
6471
- #~ msgid "Album view type"
6472
- #~ msgstr "Альбом пуст."
6473
 
6474
- #~ msgid "There is no album selected or the album was deleted."
6475
- #~ msgstr "Альбом не выбран или был удален."
 
6476
 
6477
- #~ msgid "Gallery is empty."
6478
- #~ msgstr "Галерея пуста."
 
1
+ # Translation of Plugins - Photo Gallery by 10Web &#8211; Mobile-Friendly Image Gallery - Stable (latest release) in Russian
2
+ # This file is distributed under the same license as the Plugins - Photo Gallery by 10Web &#8211; Mobile-Friendly Image Gallery - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Plugins - Photo Gallery by 10Web &#8211; Mobile-Friendly Image Gallery - Stable (latest release)\n"
6
+ "POT-Creation-Date: \n"
7
+ "PO-Revision-Date: 2022-01-16 13:32+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: ru\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
15
+ "X-Generator: Poedit 3.0.1\n"
 
 
 
 
16
 
17
+ #: wd/templates/display_overview.php:81
18
+ msgid " features you get!"
19
+ msgstr " возможности, которые вы получаете!"
20
 
21
+ #: frontend/views/view.php:789
22
+ msgid " item(s)"
23
+ msgstr " элемент(ы)"
24
+
25
+ #: admin/views/Themes.php:46
26
  msgid ""
27
+ " Use default dark and light themes, or\n"
28
+ " create new from scratch."
29
  msgstr ""
30
+ " Использовать темную и светлую темы по умолчанию или\n"
31
+ " создайте новыю с нуля."
 
32
 
33
+ #: photo-gallery.php:625 photo-gallery.php:683
34
+ msgid " view is<br>available in Premium Version"
35
+ msgstr " просмотр <br> доступен в Премиум-версии"
36
 
37
+ #: admin/views/AddTags.php:62 admin/views/AdminView.php:311
38
+ #: framework/WDWLibrary.php:449 framework/WDWLibrary.php:596
39
+ msgid "%s item"
40
+ msgid_plural "%s items"
41
+ msgstr[0] "%s элемент"
42
+ msgstr[1] "%s элемента"
43
+ msgstr[2] "%s элементов"
 
44
 
45
+ #: admin/controllers/Albums.php:160 admin/controllers/Galleries.php:168
46
+ #: admin/controllers/Themes.php:132 admin/models/Galleries.php:789
47
+ msgid "%s item successfully %s."
48
+ msgid_plural "%s items successfully %s."
49
+ msgstr[0] "%s элемент успешно %s."
50
+ msgstr[1] "%s элемента успешно %s."
51
+ msgstr[2] "%s элементов успешно %s."
52
 
53
+ #: framework/howto/data.php:79
54
+ msgid "%s This code should be inserted into a PHP file. This is a more advanced method of publishing and should be used in case you want the galleries to be integrated into your theme files ( for example in your website header or footer area ). You can't insert this code into your post / page editor."
55
+ msgstr "%s Этот код должен быть вставлен в PHP-файл. Это более продвинутый метод публикации, и его следует использовать в том случае, если вы хотите, чтобы галереи были интегрированы в файлы вашей темы (например, в верхний или нижний колонтитул сайта). Вы не можете вставить этот код в редактор постов/страниц."
 
 
 
 
 
 
56
 
57
+ #: photo-gallery.php:393
58
+ msgid "- Select -"
59
+ msgstr "- Выбрать -"
60
 
61
+ #: admin/views/WidgetTags.php:102
62
+ msgid "0 for all."
63
+ msgstr "0 для всех."
64
 
65
+ #: admin/views/Options.php:3221
66
+ msgid "1 column"
67
+ msgstr "1 колонка"
68
 
69
+ #: admin/views/Licensing.php:27
70
+ msgid "10 Pro Gallery/Album Views"
71
+ msgstr "10 профессиональных представления галереи/альбома"
72
 
73
+ #: photo-gallery.php:1527
74
+ msgid "10 View Options"
75
+ msgstr "10 вариантов представления"
 
76
 
77
+ #: wd/templates/display_overview.php:44
78
+ msgid "10Web cloud storage space. Easily and securely backup your website in our storage."
79
+ msgstr "10Web - облачное хранилище. Простое и безопасное резервное копирование вашего сайта в нашем хранилище."
 
 
 
 
80
 
81
+ #: photo-gallery.php:336
82
+ msgid "10WEB Plugins"
83
+ msgstr "Плагины 10WEB"
 
84
 
85
+ #: admin/views/Options.php:3222
86
+ msgid "2 column"
87
+ msgstr "2 колонка"
 
 
 
88
 
89
+ #: admin/views/Options.php:3223
90
+ msgid "3 column"
91
+ msgstr "3 колонка"
 
92
 
93
+ #: admin/views/Licensing.php:19
94
+ msgid "5 Standard Gallery/Album Views"
95
+ msgstr "10 стандартных представления галереи/альбома"
 
96
 
97
+ #: wd/templates/display_overview.php:27
98
+ msgid "60+ pro plugins/Extensions"
99
+ msgstr "Более 60 профессиональных плагинов/расширений"
100
 
101
+ #: admin/views/Galleries.php:513
102
+ msgid "<b>Dailymotion</b> URL example:"
103
+ msgstr "Пример URL-адреса <b>Dailymotion</b>:"
 
 
 
 
 
104
 
105
+ #: admin/views/Galleries.php:509
106
+ msgid "<b>Flickr</b> URL example:"
107
+ msgstr "Пример URL-адреса <b>Flickr</b>:"
 
 
108
 
109
+ #: admin/views/Galleries.php:500
110
+ msgid "<b>Instagram</b> URL example:"
111
+ msgstr "Пример URL-адреса <b>Instagram</b>:"
112
 
113
+ #: admin/views/Galleries.php:496
114
+ msgid "<b>Vimeo</b> URL example:"
115
+ msgstr "Пример URL-адреса <b>Vimeo</b>:"
116
 
117
+ #: admin/views/Galleries.php:492
118
+ msgid "<b>Youtube</b> URL example:"
119
+ msgstr "Пример URL-адреса <b>YouTube</b>:"
120
 
121
+ #: framework/WDWLibrary.php:166
122
+ msgid "A term with the name provided already exists."
123
+ msgstr "Термин с таким именем уже существует."
124
 
125
+ #: wd/templates/display_overview.php:28
126
+ msgid "Access 60+ plugins and extensions, including key plugins, such as gallery, form, slider, social plugins and more."
127
+ msgstr "Доступ к более 60 плагинам и расширениям, включая ключевые плагины, такие как галерея, форма, слайдер, плагины соцсетей и многое другое."
128
 
129
+ #: admin/views/Shortcode.php:361
130
+ msgid "Action on image click"
131
+ msgstr "Действие при нажатии на изображение"
132
 
133
+ #: admin/views/Options.php:3841
134
+ msgid "Activate looping to start lightbox navigation from the beginning when users reach its last image."
135
+ msgstr "Активируйте зацикливание, чтобы начать навигацию по лайтбоксу с самого начала, когда пользователи дойдут до последнего изображения."
136
 
137
+ #: admin/views/Options.php:3894
138
+ msgid "Activate Pin button of Photo Gallery lightbox by enabling this setting."
139
+ msgstr "Активируйте кнопку Pin в лайтбоксе фотогалереи, включив эту настройку."
140
+
141
+ #: admin/views/Options.php:1380 admin/views/Options.php:1606
142
+ #: admin/views/Options.php:1840 admin/views/Options.php:2273
143
+ #: admin/views/Options.php:2430 admin/views/Options.php:2831
144
+ #: admin/views/Options.php:3126 admin/views/Options.php:3364
145
+ msgid "Activate this dropdown box to let users browse your gallery images with different ordering options."
146
+ msgstr "Активируйте этот раскрывающийся блок, чтобы пользователи могли просматривать изображения в вашей галерее с различными вариантами упорядочения."
147
+
148
+ #: admin/views/Options.php:1443 admin/views/Options.php:1670
149
+ #: admin/views/Options.php:1892 admin/views/Options.php:2943
150
+ #: admin/views/Options.php:3475
151
+ msgid "Activate this option to add a Play button on thumbnails of videos."
152
+ msgstr "Активируйте этот параметр, чтобы добавить кнопку Воспроизвести на миниатюрах видео."
153
 
154
+ #: admin/views/Options.php:2579
155
+ msgid "Activate this option to autoplay Carousel galleries."
156
+ msgstr "Активируйте этот параметр для автозапуска галерей Карусель."
 
 
157
 
158
+ #: admin/views/Options.php:3599
159
+ msgid "Activate this option to autoplay images in gallery lightbox."
160
+ msgstr "Активируйте этот параметр для автозапуска изображений в лайтбоксе галереи."
161
 
162
+ #: admin/views/Options.php:2009
163
+ msgid "Activate this option to autoplay slideshow galleries."
164
+ msgstr "Активируйте этот параметр для автозапуска слайдов из галерей."
 
 
165
 
166
+ #: admin/views/Options.php:3702
167
+ msgid "Activate this option to display email address field in comments section."
168
+ msgstr "Активируйте этот параметр для отображения поля адреса электронной почты в разделе комментариев."
169
+
170
+ #: admin/views/Options.php:3677
171
+ msgid "Activate this setting to add Fullscreen button to lightbox control buttons."
172
+ msgstr "Активируйте эту настройку, чтобы добавить кнопку Полноэкранный режим к кнопкам управления лайтбоксом."
173
+
174
+ #: admin/views/Options.php:246
175
+ msgid "Activate this setting to display Photo Gallery custom posts with new menu items under WordPress admin menu."
176
+ msgstr "Активируйте эту настройку для отображения пользовательских записей Фотогалереи новыми пунктами меню в меню администратора WordPress."
177
+
178
+ #: admin/views/Options.php:1453 admin/views/Options.php:1680
179
+ #: admin/views/Options.php:1902 admin/views/Options.php:2175
180
+ #: admin/views/Options.php:2315 admin/views/Options.php:2494
181
+ #: admin/views/Options.php:2667 admin/views/Options.php:2953
182
+ #: admin/views/Options.php:3179 admin/views/Options.php:3485
183
+ msgid "Activate this setting to let users download all images of your gallery with a click."
184
+ msgstr "Активируйте эту настройку, чтобы пользователи могли загружать все изображения вашей галереи одним щелчком мыши."
185
+
186
+ #: admin/views/Options.php:3736
187
+ msgid "Activate this setting to show Info button among lightbox control buttons."
188
+ msgstr "Активируйте эту настройку для отображения кнопки Info среди кнопок управления лайтбоксом."
189
+
190
+ #: admin/views/Options.php:2656
191
+ msgid "Activate this to show Play/Pause buttons on your Carousel galleries."
192
+ msgstr "Активируйте его, чтобы отобразить кнопки воспроизведение/пауза в галереях Карусель."
193
 
194
+ #: admin/views/Options.php:1300 admin/views/Options.php:1526
195
+ #: admin/views/Options.php:1760 admin/views/Options.php:2348
196
+ #: admin/views/Options.php:2734 admin/views/Options.php:3029
197
+ #: admin/views/Options.php:3267
198
+ msgid "Activating this option will add page numbers and next/previous buttons to your galleries."
199
+ msgstr "Активация этого параметра добавит номера страниц и кнопки далее/назад в галереи."
200
 
201
+ #: admin/views/Themes.php:4879
202
+ msgid "Active Button background color:"
203
+ msgstr "Цвет фона активной кнопки:"
 
 
 
204
 
205
+ #: admin/views/Themes.php:4883
206
+ msgid "Active Button font color:"
207
+ msgstr "Цвет шрифта активной кнопки:"
 
 
 
208
 
209
+ #: admin/views/Albums.php:248 admin/views/Albums.php:342
210
+ #: admin/views/Galleries.php:301 filemanager/view.php:216
211
+ msgid "Add"
212
+ msgstr "Добавить"
 
 
213
 
214
+ #: admin/views/Options.php:3618
215
+ msgid "Add a filmstrip with image thumbnails to the lightbox of your galleries."
216
+ msgstr "Добавить диафильм с миниатюрами изображений в лайтбокс галерей."
 
 
 
217
 
218
+ #: admin/views/Options.php:2051
219
+ msgid "Add a filmstrip with image thumbnails to your slideshow galleries by enabling this option."
220
+ msgstr "Добавить диафильм с миниатюрами изображений в свои галереи слайд-шоу, включив этот параметр."
 
221
 
222
+ #: admin/views/Albums.php:253
223
+ msgid "Add a preview image, which will be displayed as the cover image of the gallery group when it is published in a parent gallery group."
224
+ msgstr "Добавить изображение предварительного просмотра, которое будет отображаться в качестве обложки группы галерей при ее публикации в родительской группе галерей."
 
225
 
226
+ #: admin/views/Galleries.php:308
227
+ msgid "Add a preview image, which will be displayed as the cover image of the gallery when it is published in a gallery group."
228
+ msgstr "Добавить изображение предварительного просмотра, которое будет отображаться в качестве обложки галереи при ее публикации в группе галерей."
229
 
230
+ #: photo-gallery.php:481
231
+ msgid "Add Galleries/Images"
232
+ msgstr "Добавить галереи/изображения"
233
 
234
+ #: framework/howto/data.php:32
235
+ msgid "Add Gallery Widget"
236
+ msgstr "Добавьте виджет галереи"
 
 
 
 
237
 
238
+ #: admin/views/Galleries.php:453 admin/views/Galleries.php:455
239
+ msgid "Add Images"
240
+ msgstr "Добавить изображения"
241
 
242
+ #: admin/views/Galleries.php:414
243
+ msgid "Add Instagram Gallery"
244
+ msgstr "Добавить галерею Instagram"
245
 
246
+ #: admin/views/AdminView.php:77
247
+ msgid "Add new"
248
+ msgstr "Добавить новую"
 
249
 
250
+ #: admin/views/Galleries.php:46
251
+ msgid "Add new gallery"
252
+ msgstr "Добавить новую галерею"
253
 
254
+ #: admin/views/Albums.php:44
255
+ msgid "Add new group"
256
+ msgstr "Добавить новую группу"
257
 
258
+ #: admin/views/Galleries.php:409
259
+ msgid "Add new media, keep old ones published."
260
+ msgstr "Добавляйте новые медиафайлы, оставляйте старые опубликованными."
261
 
262
+ #: admin/views/Galleries.php:411
263
+ msgid "Add new media, unpublish old ones."
264
+ msgstr "Добавьте новые медиафайлы, отмените публикацию старых."
265
 
266
+ #: admin/views/Themes.php:187
267
+ msgid "Add new theme"
268
+ msgstr "Добавить новую тему"
269
 
270
+ #: photo-gallery.php:1031
271
+ msgid "Add Photo Gallery"
272
+ msgstr "Добавить фотогалерею"
 
273
 
274
+ #: admin/controllers/Widget.php:14
275
+ msgid "Add Photo Gallery albums or galleries to Your widget area."
276
+ msgstr "Добавить альбомы или галереи в область виджетов."
277
 
278
+ #: admin/controllers/WidgetSlideshow.php:14
279
+ msgid "Add Photo Gallery slideshow to Your widget area."
280
+ msgstr "Добавить слайд-шоу фотогалереи в область виджета."
281
 
282
+ #: admin/controllers/WidgetTags.php:14
283
+ msgid "Add Photo Gallery Tags dynamic cloud to Your widget area."
284
+ msgstr "Добавить динамическое облако меток фотогалереи в область виджетов."
285
 
286
+ #: admin/views/Options.php:1359 admin/views/Options.php:1585
287
+ #: admin/views/Options.php:1819 admin/views/Options.php:2252
288
+ #: admin/views/Options.php:2409 admin/views/Options.php:2810
289
+ #: admin/views/Options.php:3105 admin/views/Options.php:3343
290
+ msgid "Add placeholder to search"
291
+ msgstr "Добавить заполнитель для поиска"
292
 
293
+ #: admin/views/Albums.php:247 admin/views/Galleries.php:298
294
+ msgid "Add Preview Image"
295
+ msgstr "Добавить изображение пред просмотра"
296
 
297
+ #: framework/WDWLibrary.php:2697
298
+ msgid "Add pricelist"
299
+ msgstr "Добавить прайс-лист"
 
300
 
301
+ #: filemanager/view.php:216
302
+ msgid "Add selected images to gallery"
303
+ msgstr "Добавить выбранные изображения в галерею"
304
 
305
+ #: admin/views/Galleries.php:865
306
+ msgid "Add tag"
307
+ msgstr "Добавить метку"
 
 
 
 
 
308
 
309
+ #: admin/views/Options.php:862 admin/views/Shortcode.php:386
310
+ msgid "Add Text or Image advertisement to your images with this option."
311
+ msgstr "Добавить текстовую или графическую рекламу к своим изображениям с помощью этой опции."
312
 
313
+ #: admin/views/Options.php:1022
314
+ msgid "Add Text or Image watermark to your images with this option."
315
+ msgstr "Добавить текстовый или графический водяной знак к своим изображениям с помощью этой опции."
316
 
317
+ #: admin/views/Shortcode.php:556
318
+ msgid "Add the selected gallery or gallery group to any WordPress page or post. Simply copy the generated shortcode and paste it in the content of page/post editor."
319
+ msgstr "Добавить выбранную галерею или группу галерей на любую страницу или запись WordPress. Просто скопируйте сгенерированный шорткод и вставьте его в содержимое редактора страницы/записи."
320
 
321
+ #: frontend/views/BWGViewGalleryBox.php:1111
322
+ #: frontend/views/BWGViewGalleryBox.php:1294
323
+ msgid "Add to cart"
324
+ msgstr "Добавить в корзину"
325
 
326
+ #: admin/views/Galleries.php:486 admin/views/Galleries.php:521
327
+ msgid "Add to gallery"
328
+ msgstr "Добавить в галерею"
329
 
330
+ #: admin/views/Albumsgalleries.php:138
331
+ msgid "Add to Gallery Group"
332
+ msgstr "Добавить в группу галереи"
333
 
334
+ #: admin/views/AddTags.php:114
335
+ msgid "Add to image"
336
+ msgstr "Добавить к изображению"
337
 
338
+ #: framework/WDWLibrary.php:2862 photo-gallery.php:508
339
+ msgid "Add-ons"
340
+ msgstr "Дополнения"
341
 
342
+ #: admin/views/Licensing.php:33
343
+ msgid "Add-ons Support"
344
+ msgstr "Поддержка дополнений"
 
345
 
346
+ #: framework/WDWLibrary.php:2674
347
+ msgid "Add/Remove tag"
348
+ msgstr "Добавить/удалить метку"
349
 
350
+ #: admin/views/Options.php:1301 admin/views/Options.php:1527
351
+ #: admin/views/Options.php:1761 admin/views/Options.php:2349
352
+ #: admin/views/Options.php:2735 admin/views/Options.php:3030
353
+ #: admin/views/Options.php:3268
354
+ msgid "Adding a Load More button, you can let users display a new set of images from your galleries."
355
+ msgstr "Добавив кнопку Загрузить ещё, вы можете позволить пользователям отображать новый набор изображений из ваших галерей."
356
 
357
+ #: admin/views/Albums.php:276 admin/views/Galleries.php:330
358
+ #: admin/views/Options.php:113 admin/views/Shortcode.php:375
359
+ msgid "Advanced"
360
+ msgstr "Дополнительно"
361
 
362
+ #: framework/howto/data.php:78
363
+ msgid "Advanced: PHP code"
364
+ msgstr "Дополнительно: PHP-код"
365
 
366
+ #: admin/views/Options.php:850 photo-gallery.php:1575 photo-gallery.php:1690
367
+ msgid "Advertisement"
368
+ msgstr "Рекламное объявление"
369
 
370
+ #: admin/views/Options.php:955 admin/views/Shortcode.php:458
371
+ msgid "Advertisement color"
372
+ msgstr "Цвет рекламы"
373
 
374
+ #: admin/views/Options.php:910 admin/views/Shortcode.php:448
375
+ msgid "Advertisement dimensions"
376
+ msgstr "Размеры рекламы"
377
 
378
+ #: admin/views/Options.php:920 admin/views/Shortcode.php:439
379
+ msgid "Advertisement font size"
380
+ msgstr "Размер шрифта рекламы"
381
 
382
+ #: admin/views/Options.php:929 admin/views/Shortcode.php:415
383
+ msgid "Advertisement font style"
384
+ msgstr "Стиль шрифта рекламы"
385
 
386
+ #: admin/views/Options.php:901 admin/views/Shortcode.php:392
387
+ msgid "Advertisement link"
388
+ msgstr "Ссылка на рекламу"
389
 
390
+ #: admin/views/Options.php:964 admin/views/Shortcode.php:467
391
+ msgid "Advertisement opacity"
392
+ msgstr "Непрозрачность рекламы"
393
 
394
+ #: admin/views/Options.php:973 admin/views/Shortcode.php:476
395
+ msgid "Advertisement position"
396
+ msgstr "Позиция рекламы"
397
 
398
+ #: admin/views/Options.php:892 admin/views/Shortcode.php:406
399
+ msgid "Advertisement text"
400
+ msgstr "Текст рекламы"
401
 
402
+ #: admin/views/Options.php:856 admin/views/Shortcode.php:380
403
+ msgid "Advertisement type"
404
+ msgstr "Тип рекламы"
405
 
406
+ #: admin/views/Options.php:867 admin/views/Shortcode.php:399
407
+ msgid "Advertisement URL"
408
+ msgstr "URL-адрес рекламы"
409
 
410
+ #: photo-gallery.php:658
411
+ msgid "After pressing save/apply buttons, you cannot change gallery type back to Instagram!"
412
+ msgstr "После нажатия кнопок сохранить/применить вы не можете изменить тип галереи обратно на Instagram!"
413
 
414
+ #: admin/views/Licensing.php:79
415
+ msgid "After purchasing the commercial version follow these steps:"
416
+ msgstr "После приобретения коммерческой версии выполните следующие действия:"
417
 
418
+ #: photo-gallery.php:1583
419
+ msgid "Album Options"
420
+ msgstr "Параметры альбома"
 
 
421
 
422
+ #: photo-gallery.php:1783
423
+ msgid "Albums"
424
+ msgstr "Альбомы"
425
 
426
+ #: admin/views/Themes.php:519 admin/views/Themes.php:816
427
+ #: admin/views/Themes.php:1089 admin/views/Themes.php:1665
428
+ #: admin/views/Themes.php:2057 admin/views/Themes.php:2929
429
+ #: admin/views/Themes.php:3118 admin/views/Themes.php:4445
430
+ msgid "Alignment:"
431
+ msgstr "Выравнивание:"
432
 
433
+ #: admin/views/Widget.php:146
434
+ msgid "All Galleries"
435
+ msgstr "Все галереи"
436
 
437
+ #: framework/WDWLibrary.php:3069
438
+ msgid "All galleries"
439
+ msgstr "Все галереи"
440
 
441
+ #: admin/views/Widget.php:125 framework/WDWLibrary.php:3050
442
+ msgid "All images"
443
+ msgstr "Все изображения"
444
 
445
+ #: photo-gallery.php:667
446
+ msgid "All images are successfully reset."
447
+ msgstr "Все изображения успешно сброшены."
448
 
449
+ #: admin/controllers/Options.php:263
450
+ msgid "All images are successfully watermarked."
451
+ msgstr "Все изображения успешно отмечены водяными знаками."
452
 
453
+ #: framework/WDWLibrary.php:241
454
+ msgid "All items are successfully duplicated."
455
+ msgstr "Все элементы успешно продублированы."
456
 
457
+ #: framework/WDWLibrary.php:3114
458
+ msgid "All tags"
459
+ msgstr "Все метки"
460
 
461
+ #: frontend/views/view.php:596
462
+ msgid "All Tags"
463
+ msgstr "Все метки"
464
 
465
+ #: photo-gallery.php:1449
466
+ msgid "All tags selected"
467
+ msgstr "Все метки выбраны"
468
 
469
+ #: admin/controllers/Options.php:197
470
+ msgid "All thumbnails are successfully recreated."
471
+ msgstr "Все миниатюры успешно воссозданы."
472
 
473
+ #: wd/templates/display_subscribe.php:27
474
+ msgid "Allow & Continue"
475
+ msgstr "Разрешить и продолжить"
476
 
477
+ #: wd/templates/display_subscribe.php:6
478
+ msgid "Allow 10Web to collect some usage data"
479
+ msgstr "Разрешить 10Web собирать некоторые данные об использовании"
480
 
481
+ #: admin/views/Options.php:3787
482
+ msgid "Allow users to rate your images by adding rating feature to Photo Gallery lightbox."
483
+ msgstr "Разрешить пользователям оценивать изображения, добавив функцию оценки в лайтбокс фотогалереи."
484
 
485
+ #: admin/views/Options.php:1402 admin/views/Options.php:1628
486
+ #: admin/views/Options.php:1862 admin/views/Options.php:2295
487
+ #: admin/views/Options.php:2452 admin/views/Options.php:2624
488
+ msgid "Allow users to see the titles of your galleries by enabling this setting."
489
+ msgstr "Разрешить пользователям видеть заголовки галерей, включив этот параметр."
 
 
 
 
 
 
 
 
 
 
490
 
491
+ #: admin/views/Options.php:3905
492
+ msgid "Allow users to share images on Tumblr from Photo Gallery lightbox by activating this setting."
493
+ msgstr "Разрешите пользователям делиться изображениями на Tumblr из лайтбокса фотогалереи, включив этот параметр."
 
494
 
495
+ #: admin/views/Options.php:3798
496
+ msgid "Allow users to zoom images in Photo Gallery lightbox."
497
+ msgstr "Разрешить пользователям увеличивать изображения в лайтбоксе фотогалереи."
 
 
498
 
499
+ #: filemanager/view.php:298
500
+ msgid "Allowed upload types JPG, JPEG, GIF, PNG, SVG."
501
+ msgstr "Разрешенные типы загрузки JPG, JPEG, GIF, PNG, SVG."
 
502
 
503
+ #: admin/views/Galleries.php:810
504
+ msgid "Alt/Title"
505
+ msgstr "Атрибут alt/Заголовок"
 
506
 
507
+ #: framework/WDWLibrary.php:311
508
+ msgid "Alt/Title (Asc)"
509
+ msgstr "Атрибут alt/Заголовок (по возрастанию)"
 
510
 
511
+ #: framework/WDWLibrary.php:312
512
+ msgid "Alt/Title (Desc)"
513
+ msgstr "Атрибут alt/Заголовок (по убыванию)"
 
 
 
 
514
 
515
+ #: admin/views/Galleries.php:587
516
+ msgid "Alt/Title: "
517
+ msgstr "Атрибут alt/Заголовок: "
 
518
 
519
+ #: admin/views/Options.php:2037 admin/views/Options.php:3764
520
+ msgid "Always"
521
+ msgstr "Всегда"
 
 
 
 
522
 
523
+ #: admin/views/Options.php:1420 admin/views/Options.php:1470
524
+ #: admin/views/Options.php:1646 admin/views/Options.php:2871
525
+ #: admin/views/Options.php:2930 admin/views/Options.php:2970
526
+ #: admin/views/Options.php:3166 admin/views/Options.php:3462
527
+ #: admin/views/Options.php:3502
528
+ msgid "Always show"
529
+ msgstr "Всегда показывать"
530
 
531
+ #: admin/controllers/Themes.php:313
532
+ msgid "Angle"
533
+ msgstr "Угол"
534
 
535
+ #: admin/views/AdminView.php:348
536
+ msgid "Apply"
537
+ msgstr "Применить"
538
 
539
+ #: filemanager/view.php:71
540
+ msgid "Are you sure you want to permanently remove selected items?"
541
+ msgstr "Вы уверены, что хотите навсегда удалить выбранные элементы?"
 
542
 
543
+ #: admin/views/Options.php:717
544
+ msgid "Are you sure you want to reset access token, after resetting it you will need to log in with Instagram again for using plugin"
545
+ msgstr "Вы уверены, что хотите сбросить токен доступа, после сброса вам нужно будет снова войти в Instagram для использования плагина"
546
 
547
+ #: admin/views/Themes.php:4473
548
+ msgid "Arrow"
549
+ msgstr "Стрелка"
550
+
551
+ #: admin/views/Options.php:1340 admin/views/Options.php:1566
552
+ #: admin/views/Options.php:1800 admin/views/Options.php:1995
553
+ #: admin/views/Options.php:2233 admin/views/Options.php:2390
554
+ #: admin/views/Options.php:2565 admin/views/Options.php:2771
555
+ #: admin/views/Options.php:2791 admin/views/Options.php:3066
556
+ #: admin/views/Options.php:3086 admin/views/Options.php:3304
557
+ #: admin/views/Options.php:3324
558
+ msgid "Ascending"
559
+ msgstr "По возрастанию"
560
 
561
+ #: framework/WDWLibrary.php:2844 framework/WDWLibrary.php:2989
562
+ #: framework/WDWLibrary.php:3003 photo-gallery.php:518 photo-gallery.php:1933
563
+ msgid "Ask a question"
564
+ msgstr "Задать вопрос"
565
 
566
+ #: framework/howto/data.php:79
567
+ msgid "Attention:"
568
+ msgstr "Внимание:"
 
569
 
570
+ #: photo-gallery.php:1531
571
+ msgid "Audio and Video Support"
572
+ msgstr "Поддержка аудио и видео"
 
 
573
 
574
+ #: admin/views/Options.php:2161
575
+ msgid "Audio URL"
576
+ msgstr "URL аудиофайла"
577
 
578
+ #: admin/views/Albums.php:63 admin/views/Albums.php:122
579
+ #: admin/views/Albums.php:283 admin/views/Galleries.php:66
580
+ #: admin/views/Galleries.php:131 admin/views/Galleries.php:337
581
+ msgid "Author"
582
+ msgstr "Автор"
583
 
584
+ #: admin/views/Options.php:363
585
+ msgid "Auto-fill metadata"
586
+ msgstr "Автозаполнение метаданных"
587
 
588
+ #: wd/templates/display_overview.php:63
589
+ msgid "Automatically resize and compress all images on your website to save space and improve site speed."
590
+ msgstr "Автоматическое изменение размера и сжатие всех изображений на вашем сайте для экономии места и повышения скорости работы сайта."
591
 
592
+ #: filemanager/view.php:231 frontend/views/view.php:302
593
+ msgid "Back"
594
+ msgstr "Назад"
 
 
 
 
595
 
596
+ #: admin/views/Themes.php:2146 admin/views/Themes.php:3002
597
+ msgid "Back Font color:"
598
+ msgstr "Цвет шрифта для Назад:"
599
 
600
+ #: admin/views/Themes.php:2501
601
+ msgid "Back font color:"
602
+ msgstr "Цвет шрифта для Назад:"
 
 
 
 
 
 
 
 
 
 
603
 
604
+ #: admin/views/Themes.php:2153 admin/views/Themes.php:3009
605
+ msgid "Back Font family:"
606
+ msgstr "Семейство шрифтов для Назад:"
 
 
607
 
608
+ #: admin/views/Themes.php:2508
609
+ msgid "Back font family:"
610
+ msgstr "Семейство шрифтов для Назад:"
 
 
611
 
612
+ #: admin/views/Themes.php:2140 admin/views/Themes.php:2996
613
+ msgid "Back Font size:"
614
+ msgstr "Размер шрифта для Назад:"
 
 
615
 
616
+ #: admin/views/Themes.php:2495
617
+ msgid "Back font size:"
618
+ msgstr "Размер шрифта для Назад:"
 
 
619
 
620
+ #: admin/views/Themes.php:2156 admin/views/Themes.php:3012
621
+ msgid "Back Font weight:"
622
+ msgstr "Толщина шрифта для Назад:"
 
623
 
624
+ #: admin/views/Themes.php:2511
625
+ msgid "Back font weight:"
626
+ msgstr "Толщина шрифта для Назад:"
 
 
 
627
 
628
+ #: admin/views/Themes.php:2170 admin/views/Themes.php:2488
629
+ #: admin/views/Themes.php:3026
630
+ msgid "Back padding:"
631
+ msgstr "Внутренний отступ для Назад:"
632
 
633
+ #: admin/views/Themes.php:1235 admin/views/Themes.php:1726
634
+ #: admin/views/Themes.php:2442 admin/views/Themes.php:3105
635
+ #: admin/views/Themes.php:4492
636
+ msgid "Background color:"
637
+ msgstr "Цвет фона:"
638
 
639
+ #: admin/views/WidgetTags.php:116
640
+ msgid "Background Color:"
641
+ msgstr "Цвет фона:"
 
 
 
 
642
 
643
+ #: admin/views/Themes.php:809 admin/views/Themes.php:1082
644
+ #: admin/views/Themes.php:1732 admin/views/Themes.php:2448
645
+ #: admin/views/Themes.php:3111
646
+ msgid "Background transparency:"
647
+ msgstr "Прозрачность фона:"
648
 
649
+ #: wd/templates/display_overview.php:43
650
+ msgid "Backup"
651
+ msgstr "Резервное копирование"
652
 
653
+ #: admin/views/Albums.php:240 admin/views/Galleries.php:289
654
+ msgid "Basic"
655
+ msgstr "Основной"
656
 
657
+ #: admin/views/Licensing.php:21
658
+ msgid "Basic Tag Cloud Widget"
659
+ msgstr "Основной виджет облака меток"
 
 
660
 
661
+ #: admin/views/Uninstall.php:33
662
  msgid ""
663
+ "Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out with your issue. We value each and every user and value what's right for our users in everything we do.<br />\n"
664
+ " However, if anyway you have made a decision to uninstall the plugin, please take a minute to %s and tell what you didn't like for our plugins further improvement and development. Thank you !!!"
665
  msgstr ""
666
+ "Перед удалением плагина свяжитесь с нашим %s. Мы сделаем все возможное, чтобы помочь вам с вашей проблемой. Мы ценим каждого пользователя и ценим то, что правильно для наших пользователей во всем, что мы делаем.<br />\n"
667
+ " Однако, если вы все же приняли решение удалить плагин, пожалуйста, уделите минутку %s и расскажите, что вам не понравилось в дальнейшем улучшении и развитии наших плагинов. Спасибо !!!"
 
668
 
669
+ #: admin/controllers/Themes.php:320
670
+ msgid "Bell"
671
+ msgstr "Колокольчик"
672
 
673
+ #: admin/controllers/WidgetSlideshow.php:57 admin/views/Options.php:1259
674
+ msgid "Blind Horizontal"
675
+ msgstr "Штора горизонтальная"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
676
 
677
+ #: admin/controllers/WidgetSlideshow.php:58 admin/views/Options.php:1260
678
+ msgid "Blind Vertical"
679
+ msgstr "Штора вертикальная"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
 
681
+ #: admin/controllers/WidgetSlideshow.php:54 admin/views/Options.php:1256
682
+ msgid "Block Scale"
683
+ msgstr "Блочное масштабирование"
 
684
 
685
+ #: admin/controllers/Themes.php:251
686
+ msgid "Blog style"
687
+ msgstr "Стиль блога"
688
 
689
+ #: admin/controllers/Options.php:61 admin/controllers/Shortcode.php:45
690
+ #: admin/views/Galleries.php:213 admin/views/Options.php:489
691
+ #: admin/views/Options.php:2886 admin/views/Options.php:3418
692
+ #: admin/views/Shortcode.php:128 photo-gallery.php:1645
693
+ msgid "Blog Style"
694
+ msgstr "Стиль блога"
695
 
696
+ #: admin/controllers/Themes.php:293
697
+ msgid "Bold"
698
+ msgstr "Жирный"
699
 
700
+ #: admin/views/Themes.php:424 admin/views/Themes.php:728
701
+ #: admin/views/Themes.php:1003 admin/views/Themes.php:1713
702
+ #: admin/views/Themes.php:1964 admin/views/Themes.php:2848
703
+ #: admin/views/Themes.php:3199 admin/views/Themes.php:4360
704
+ #: admin/views/Themes.php:4864
705
+ msgid "Border color:"
706
+ msgstr "Цвет рамки:"
707
 
708
+ #: admin/views/Themes.php:430 admin/views/Themes.php:734
709
+ #: admin/views/Themes.php:1009 admin/views/Themes.php:1719
710
+ #: admin/views/Themes.php:1970 admin/views/Themes.php:2455
711
+ #: admin/views/Themes.php:2854 admin/views/Themes.php:3205
712
+ #: admin/views/Themes.php:4366 admin/views/Themes.php:4868
713
+ msgid "Border radius:"
714
+ msgstr "Радиус рамки:"
715
 
716
+ #: admin/views/Themes.php:410 admin/views/Themes.php:714
717
+ #: admin/views/Themes.php:989 admin/views/Themes.php:1699
718
+ #: admin/views/Themes.php:1950 admin/views/Themes.php:2834
719
+ #: admin/views/Themes.php:3185 admin/views/Themes.php:4346
720
+ #: admin/views/Themes.php:4854
721
+ msgid "Border style:"
722
+ msgstr "Стиль рамки:"
 
 
723
 
724
+ #: admin/views/Themes.php:404 admin/views/Themes.php:708
725
+ #: admin/views/Themes.php:983 admin/views/Themes.php:1693
726
+ #: admin/views/Themes.php:1944 admin/views/Themes.php:2828
727
+ #: admin/views/Themes.php:3179 admin/views/Themes.php:4340
728
+ #: admin/views/Themes.php:4848
729
+ msgid "Border width:"
730
+ msgstr "Ширина рамки:"
731
 
732
+ #: admin/views/Themes.php:548 admin/views/Themes.php:1359
733
+ #: admin/views/Themes.php:1761 admin/views/Themes.php:2086
734
+ #: admin/views/Themes.php:3423 admin/views/Themes.php:3703
735
+ #: admin/views/Themes.php:3791 admin/views/Themes.php:3859
736
+ #: admin/views/Themes.php:3983 admin/views/Themes.php:4441
737
+ msgid "Bottom"
738
+ msgstr "Снизу"
739
 
740
+ #: admin/views/Themes.php:1739 admin/views/Themes.php:3146
741
+ #: admin/views/Themes.php:4419
742
+ msgid "Box shadow:"
743
+ msgstr "Тень блока:"
744
 
745
+ #: admin/views/Editimage.php:862
746
+ msgid "Brightness"
747
+ msgstr "Яркость"
 
748
 
749
+ #: admin/views/Themes.php:39
750
+ msgid "Build Fully Customized Gallery Views"
751
+ msgstr "Создание полностью настраиваемых представлений галереи"
 
 
 
 
 
 
 
752
 
753
+ #: admin/views/AdminView.php:343
754
+ msgid "Bulk Actions"
755
+ msgstr "Пакетные действия"
756
 
757
+ #: admin/views/Themes.php:4397 admin/views/Themes.php:4875
758
+ msgid "Button background color:"
759
+ msgstr "Цвет фона кнопки:"
760
 
761
+ #: admin/views/Themes.php:4403
762
+ msgid "Button background transparency:"
763
+ msgstr "Прозрачность фона кнопки:"
764
 
765
+ #: admin/views/Themes.php:4468
766
+ msgid "Button text:"
767
+ msgstr "Текст кнопки:"
768
 
769
+ #: admin/views/Themes.php:4410
770
+ msgid "Button transition:"
771
+ msgstr "Кнопка перехода:"
772
 
773
+ #: admin/views/Themes.php:4796
774
+ msgid "Buttons"
775
+ msgstr "Кнопки"
776
 
777
+ #: admin/views/Themes.php:3274
778
+ msgid "Buttons and title background color:"
779
+ msgstr "Цвет фона кнопок и заголовка:"
780
 
781
+ #: admin/views/Themes.php:3280
782
+ msgid "Buttons and title background transparency:"
783
+ msgstr "Прозрачность фона кнопок и заголовка:"
784
 
785
+ #: admin/views/Themes.php:3261
786
+ msgid "Buttons and title border color:"
787
+ msgstr "Цвет рамки кнопок и заголовка:"
788
 
789
+ #: admin/views/Themes.php:3267
790
+ msgid "Buttons and title border radius:"
791
+ msgstr "Радиус рамки кнопок и заголовка:"
792
 
793
+ #: admin/views/Themes.php:3247
794
+ msgid "Buttons and title border style:"
795
+ msgstr "Стиль рамки кнопок и заголовка:"
796
 
797
+ #: admin/views/Themes.php:3241
798
+ msgid "Buttons and title border width:"
799
+ msgstr "Ширина границ кнопок и заголовка:"
800
 
801
+ #: admin/views/Themes.php:3222
802
+ msgid "Buttons and title margin:"
803
+ msgstr "Внешний отступ кнопок и заголовка:"
 
 
804
 
805
+ #: admin/views/Themes.php:1253 admin/views/Themes.php:3235
806
+ #: admin/views/Themes.php:4517
807
+ msgid "Buttons color:"
808
+ msgstr "Цвет кнопок:"
809
 
810
+ #: admin/views/Themes.php:1266 admin/views/Themes.php:4530
811
+ msgid "Buttons hover color:"
812
+ msgstr "Цвет кнопок при наведении:"
813
 
814
+ #: admin/views/Themes.php:3287
815
+ msgid "Buttons or title alignment:"
816
+ msgstr "Выравнивание кнопок или заголовка:"
817
 
818
+ #: admin/views/Themes.php:3229
819
+ msgid "Buttons size:"
820
+ msgstr "Размер кнопок:"
821
 
822
+ #: admin/views/Themes.php:1259 admin/views/Themes.php:4523
823
+ msgid "Buttons transparency:"
824
+ msgstr "Прозрачность кнопок:"
825
 
826
+ #: filemanager/controller.php:279 filemanager/controller.php:338
827
+ #: filemanager/controller.php:378
828
+ msgid "Can't rename the file."
829
+ msgstr "Невозможно переименовать файл."
830
 
831
+ #: admin/views/Galleries.php:487 admin/views/Galleries.php:520
832
+ #: admin/views/Galleries.php:577 admin/views/Galleries.php:598
833
+ #: admin/views/Galleries.php:617 admin/views/Galleries.php:637
834
+ #: filemanager/view.php:221 filemanager/view.php:222 photo-gallery.php:1461
835
+ msgid "Cancel"
836
+ msgstr "Отмена"
837
 
838
+ #: admin/controllers/Options.php:62 admin/controllers/Shortcode.php:46
839
+ #: admin/controllers/Themes.php:254 admin/views/Galleries.php:217
840
+ #: admin/views/Options.php:502 admin/views/Options.php:2887
841
+ #: admin/views/Options.php:3419 admin/views/Shortcode.php:140
842
+ #: photo-gallery.php:1657
843
+ msgid "Carousel"
844
+ msgstr "Карусель"
845
 
846
+ #: admin/views/Themes.php:4611
847
+ msgid "Carousel margin:"
848
+ msgstr "Внешний отступ карусели:"
 
 
 
849
 
850
+ #: photo-gallery.php:1603
851
+ msgid "Carousel Options"
852
+ msgstr "Параметры карусели"
 
 
853
 
854
+ #: admin/views/Options.php:2530
855
+ msgid "Carousel ratio"
856
+ msgstr "Коэффициент карусели"
857
 
858
+ #: admin/controllers/Themes.php:286
859
+ msgid "Center"
860
+ msgstr "По центру"
861
 
862
+ #: framework/WDWLibrary.php:184
863
+ msgid "Changes must be saved."
864
+ msgstr "Изменения следует сохранить."
865
 
866
+ #: wd/templates/display_overview.php:103
867
+ msgid "Checkout how it works"
868
+ msgstr "Проверьте, как это работает"
869
 
870
+ #: admin/controllers/Themes.php:314
871
+ msgid "Chevron"
872
+ msgstr "Chevron"
873
 
874
+ #: frontend/views/BWGViewGalleryBox.php:1256
875
+ msgid "Choose"
876
+ msgstr "Выбрать"
877
 
878
+ #: admin/views/Options.php:767
879
+ msgid "Choose a WordPress user role which can add and edit galleries, images, gallery groups, tags, themes and edit settings."
880
+ msgstr "Выбрать роль пользователя WordPress, которая может добавлять и редактировать галереи, изображения, группы галерей, метки, темы и редактировать настройки."
881
 
882
+ #: admin/views/Options.php:959 admin/views/Shortcode.php:460
883
+ msgid "Choose the color for the advertisement text on images."
884
+ msgstr "Выбрать цвет для рекламного текста на изображениях."
885
 
886
+ #: admin/views/Options.php:1107
887
+ msgid "Choose the color for the watermark text on images."
888
+ msgstr "Выбрать цвет для текста водяного знака на изображениях."
889
 
890
+ #: admin/views/Options.php:2889 admin/views/Options.php:3421
891
+ msgid "Choose the display type for gallery groups, Thumbnails, Masonry, Mosaic, Slideshow, Image browser, Blog style or Carousel."
892
+ msgstr "Выбрать тип отображения для групп галерей: миниатюры, кладка, мозаика, слайд-шоу, браузер изображений, стиль блога или карусель."
893
 
894
+ #: admin/views/Shortcode.php:329
895
+ msgid "Choose the theme for your gallery."
896
+ msgstr "Выбрать тему для галереи."
 
897
 
898
+ #: admin/views/Options.php:3766
899
+ msgid "Choose to display Next/Previous buttons of Photo Gallery lightbox on hover or always."
900
+ msgstr "Выбрать, отображать кнопки Далее/Назад лайтбокса фотогалереи при наведении или всегда."
901
 
902
+ #: admin/views/Options.php:1473 admin/views/Options.php:1699
903
+ #: admin/views/Options.php:1921 admin/views/Options.php:2973
904
+ #: admin/views/Options.php:3198 admin/views/Options.php:3505
905
+ msgid "Choose to show/hide ecommerce icon, or display them on hover."
906
+ msgstr "Выбрать, показывать/скрывать значок электронной торговли или отображать их при наведении."
907
 
908
+ #: admin/views/Options.php:2874
909
+ msgid "Choose to show/hide titles of galleries/gallery groups, or display them on hover."
910
+ msgstr "Выбрать, показывать/скрывать названия галерей/групп галерей или отображать их при наведении."
911
 
912
+ #: admin/views/Options.php:1423 admin/views/Options.php:1649
913
+ #: admin/views/Options.php:1882 admin/views/Options.php:2933
914
+ #: admin/views/Options.php:3169 admin/views/Options.php:3465
915
+ msgid "Choose to show/hide titles of images, or display them on hover."
916
+ msgstr "Выбрать, показывать/скрывать заголовки изображений или отображать их при наведении."
917
 
918
+ #: admin/controllers/Themes.php:321
919
+ msgid "Circle"
920
+ msgstr "Круг"
921
 
922
+ #: framework/howto/data.php:8
923
+ msgid "Click Add Photo Gallery Button"
924
+ msgstr "Нажмите кнопку Добавить фотогалерею"
925
 
926
+ #: framework/howto/data.php:56
927
+ msgid "Click the Photo Gallery Button"
928
+ msgstr "Нажмите кнопку Фотогалерея"
929
 
930
+ #: filemanager/view.php:167
931
+ msgid "Click to sort by date modified"
932
+ msgstr "Нажмите для сортировки по дате изменения"
933
 
934
+ #: filemanager/view.php:135
935
+ msgid "Click to sort by name"
936
+ msgstr "Нажмите для сортировки по названию"
 
 
 
937
 
938
+ #: filemanager/view.php:151
939
+ msgid "Click to sort by size"
940
+ msgstr "Нажмите для сортировки по размеру"
941
 
942
+ #: framework/WDWLibrary.php:293
943
+ msgid "Click to sort by this item"
944
+ msgstr "Нажмите для сортировки по по этому элементу"
945
 
946
+ #: admin/views/Themes.php:3527
947
+ msgid "Close button background color:"
948
+ msgstr "Цвет фона кнопки закрытия:"
949
 
950
+ #: admin/views/Themes.php:3514
951
+ msgid "Close button border color:"
952
+ msgstr "Цвет рамки кнопки закрытия:"
953
 
954
+ #: admin/views/Themes.php:3486
955
+ msgid "Close button border radius:"
956
+ msgstr "Радиус рамки кнопки закрытия:"
 
 
957
 
958
+ #: admin/views/Themes.php:3500
959
+ msgid "Close button border style:"
960
+ msgstr "Стиль рамки кнопки закрытия:"
961
 
962
+ #: admin/views/Themes.php:3494
963
+ msgid "Close button border width:"
964
+ msgstr "Ширина рамки кнопки закрытия:"
965
 
966
+ #: admin/views/Themes.php:3520
967
+ msgid "Close button box shadow:"
968
+ msgstr "Тень box кнопки закрытия:"
969
 
970
+ #: admin/views/Themes.php:3574
971
+ msgid "Close button color:"
972
+ msgstr "Цвет кнопки закрытия:"
973
 
974
+ #: admin/views/Themes.php:3547
975
+ msgid "Close button height:"
976
+ msgstr "Высота кнопки закрытия:"
977
 
978
+ #: admin/views/Themes.php:3561
979
+ msgid "Close button right:"
980
+ msgstr "Правая кнопка закрытия:"
981
 
982
+ #: admin/views/Themes.php:3568
983
+ msgid "Close button size:"
984
+ msgstr "Размер кнопки закрытия:"
985
 
986
+ #: admin/views/Themes.php:3554
987
+ msgid "Close button top:"
988
+ msgstr "Верхняя кнопка закрытия:"
989
 
990
+ #: admin/views/Themes.php:3534
991
+ msgid "Close button transparency:"
992
+ msgstr "Прозрачность кнопки закрытия:"
993
 
994
+ #: admin/views/Themes.php:3540
995
+ msgid "Close button width:"
996
+ msgstr "Ширина кнопки закрытия:"
997
 
998
+ #: frontend/views/BWGViewGalleryBox.php:1031
999
+ msgid "Comment"
1000
+ msgstr "Комментарий"
 
1001
 
1002
+ #: admin/views/Themes.php:4224
1003
+ msgid "Comment button background color:"
1004
+ msgstr "Цвет фона кнопки комментария:"
1005
 
1006
+ #: admin/views/Themes.php:4257
1007
+ msgid "Comment button border color:"
1008
+ msgstr "Цвет рамки кнопки комментария:"
1009
 
1010
+ #: admin/views/Themes.php:4243
1011
+ msgid "Comment button border style:"
1012
+ msgstr "Стиль рамки кнопки комментария:"
1013
 
1014
+ #: admin/views/Themes.php:4237
1015
+ msgid "Comment button border width:"
1016
+ msgstr "Ширина рамки кнопки комментария:"
1017
 
1018
+ #: admin/views/Themes.php:4230
1019
+ msgid "Comment button padding:"
1020
+ msgstr "Внутренний отступ кнопки комментария:"
 
 
1021
 
1022
+ #: admin/views/Themes.php:4218
1023
+ msgid "Comment input background color:"
1024
+ msgstr "Цвет фона ввода комментария:"
 
 
1025
 
1026
+ #: admin/views/Themes.php:4199
1027
+ msgid "Comment input border color:"
1028
+ msgstr "Цвет рамки ввода комментария:"
 
 
1029
 
1030
+ #: admin/views/Themes.php:4205
1031
+ msgid "Comment input border radius:"
1032
+ msgstr "Радиус рамки ввода комментария:"
1033
 
1034
+ #: admin/views/Themes.php:4179
1035
+ msgid "Comment input border width:"
1036
+ msgstr "Ширина рамки ввода комментария:"
 
 
 
 
 
 
 
 
 
 
 
 
1037
 
1038
+ #: admin/views/Themes.php:4211
1039
+ msgid "Comment input padding:"
1040
+ msgstr "Внутренний отступ ввода комментария:"
 
 
 
1041
 
1042
+ #: admin/views/Themes.php:4290
1043
+ msgid "Comment separator color:"
1044
+ msgstr "Цвет разделителя комментария:"
 
 
 
 
 
1045
 
1046
+ #: admin/views/Themes.php:4276
1047
+ msgid "Comment separator style:"
1048
+ msgstr "Стиль разделителя комментария:"
 
 
 
 
 
 
1049
 
1050
+ #: admin/views/Themes.php:4270
1051
+ msgid "Comment separator width:"
1052
+ msgstr "Ширина разделителя комментария:"
 
 
1053
 
1054
+ #: photo-gallery.php:495
1055
+ msgid "Comments"
1056
+ msgstr "Комментарии"
1057
 
1058
+ #: admin/views/Themes.php:4160
1059
+ msgid "Comments author font size:"
1060
+ msgstr "Размер шрифта автора комментариев:"
 
 
1061
 
1062
+ #: admin/views/Themes.php:4138
1063
+ msgid "Comments background color:"
1064
+ msgstr "Цвет фона комментариев:"
1065
 
1066
+ #: admin/views/Themes.php:4173
1067
+ msgid "Comments body font size:"
1068
+ msgstr "Размер шрифта основной части комментариев:"
1069
 
1070
+ #: admin/views/Themes.php:4167
1071
+ msgid "Comments date font size:"
1072
+ msgstr "Размер шрифта даты комментариев:"
1073
 
1074
+ #: admin/views/Themes.php:4150
1075
+ msgid "Comments font color:"
1076
+ msgstr "Цвет шрифта комментариев:"
 
 
 
1077
 
1078
+ #: admin/views/Themes.php:4157
1079
+ msgid "Comments font family:"
1080
+ msgstr "Семейство шрифтов комментариев:"
1081
 
1082
+ #: admin/views/Themes.php:4144
1083
+ msgid "Comments font size:"
1084
+ msgstr "Размер шрифта комментариев:"
1085
 
1086
+ #: admin/views/Themes.php:4129
1087
+ msgid "Comments position:"
1088
+ msgstr "Позиция комментариев:"
 
 
1089
 
1090
+ #: admin/views/Themes.php:4123
1091
+ msgid "Comments Width:"
1092
+ msgstr "Ширина комментариев:"
1093
 
1094
+ #: admin/controllers/Options.php:65 admin/controllers/Shortcode.php:49
1095
+ #: admin/views/Albums.php:178 admin/views/Options.php:579
1096
+ #: admin/views/Shortcode.php:188
1097
+ msgid "Compact"
1098
+ msgstr "Компактный"
1099
 
1100
+ #: admin/controllers/Themes.php:248
1101
+ msgid "Compact album"
1102
+ msgstr "Альбом Компактный"
 
1103
 
1104
+ #: photo-gallery.php:1633
1105
+ msgid "Compact Album"
1106
+ msgstr "Альбом Компактный"
1107
 
1108
+ #: framework/howto/data.php:14
1109
+ msgid "Configure and Insert"
1110
+ msgstr "Настроить и вставить"
1111
 
1112
+ #: framework/howto/data.php:62
1113
+ msgid "Configure and Insert Gallery"
1114
+ msgstr "Настроить и вставить галерею"
 
 
 
1115
 
1116
+ #: framework/howto/data.php:38
1117
+ msgid "Configure and Save"
1118
+ msgstr "Настроить и сохранить"
1119
 
1120
+ #: framework/howto/data.php:39
1121
+ msgid "Configure gallery options on the right side of the page, including gallery/album you want to display, image count, dimensions and more. Click save to display the changes on your website."
1122
+ msgstr "Настройте параметры галереи в правой части страницы, включая галерею/альбом, который вы хотите отобразить, количество изображений, размеры и многое другое. Нажмите Сохранить, чтобы отобразить изменения на своем сайте."
1123
 
1124
+ #: framework/howto/data.php:20 framework/howto/data.php:44
1125
+ #: framework/howto/data.php:94
1126
+ msgid "Congrats !"
1127
+ msgstr "Поздравляю !"
1128
 
1129
+ #: framework/howto/data.php:68
1130
+ msgid "Congrats!"
1131
+ msgstr "Поздравляю!"
1132
 
1133
+ #: admin/views/Uninstall.php:32
1134
+ msgid "Contact us"
1135
+ msgstr "Связаться с нами"
1136
 
1137
+ #: admin/views/Options.php:2595
1138
+ msgid "Container fit"
1139
+ msgstr "Подгонка контейнера"
1140
 
1141
+ #: admin/views/Themes.php:4498
1142
+ msgid "Container opacity:"
1143
+ msgstr "Непрозрачность контейнера:"
1144
 
1145
+ #: admin/views/Galleries.php:400 admin/views/Galleries.php:551
1146
+ msgid "Content"
1147
+ msgstr "Содержимое"
1148
 
1149
+ #: admin/views/Editimage.php:887
1150
+ msgid "Contrast"
1151
+ msgstr "Контрастность"
1152
 
1153
+ #: admin/views/Themes.php:3447
1154
+ msgid "Control buttons alignment:"
1155
+ msgstr "Выравнивание кнопок управления:"
 
 
 
1156
 
1157
+ #: admin/views/Themes.php:3427
1158
+ msgid "Control buttons background color:"
1159
+ msgstr "Цвет фона кнопок управления:"
1160
 
1161
+ #: admin/views/Themes.php:3461
1162
+ msgid "Control buttons color:"
1163
+ msgstr "Цвет кнопок управления:"
1164
 
1165
+ #: admin/views/Themes.php:3440
1166
+ msgid "Control buttons container background transparency:"
1167
+ msgstr "Прозрачность фона контейнера кнопок управления:"
1168
 
1169
+ #: admin/views/Themes.php:3433
1170
+ msgid "Control buttons container border radius:"
1171
+ msgstr "Радиус рамки контейнера кнопок управления:"
1172
 
1173
+ #: admin/views/Themes.php:3400
1174
+ msgid "Control buttons height:"
1175
+ msgstr "Высота кнопок управления:"
1176
 
1177
+ #: admin/views/Themes.php:3412
1178
+ msgid "Control buttons margin (left):"
1179
+ msgstr "Внешний отступ (слева) кнопок управления:"
1180
 
1181
+ #: admin/views/Themes.php:3406
1182
+ msgid "Control buttons margin (top):"
1183
+ msgstr "Внешний отступ (сверху) кнопок управления:"
1184
 
1185
+ #: admin/views/Themes.php:3418
1186
+ msgid "Control buttons position:"
1187
+ msgstr "Позиция кнопок управления:"
 
1188
 
1189
+ #: admin/views/Themes.php:3467
1190
+ msgid "Control buttons transparency:"
1191
+ msgstr "Прозрачность кнопок управления:"
1192
 
1193
+ #: filemanager/view.php:100 framework/howto/data.php:168
1194
+ msgid "Copy"
1195
+ msgstr "Копировать"
1196
 
1197
+ #: framework/howto/data.php:82
1198
+ msgid "Copy the Code"
1199
+ msgstr "Копировать код"
 
 
1200
 
1201
+ #: framework/howto/data.php:83
1202
+ msgid "Copy the PHP code that appears below before proceeding to next step."
1203
+ msgstr "Скопируйте приведенный ниже код PHP, прежде чем переходить к следующему шагу."
1204
 
1205
+ #: frontend/views/BWGViewGalleryBox.php:1163
1206
+ msgid "Count"
1207
+ msgstr "Количество"
1208
 
1209
+ #: admin/views/Widget.php:164
1210
+ msgid "Count:"
1211
+ msgstr "Количество:"
1212
 
1213
+ #: admin/views/Options.php:3861
1214
+ msgid "Create an account %s."
1215
+ msgstr "Создать учетную запись %s."
 
1216
 
1217
+ #: photo-gallery.php:1516
1218
+ msgid "Create stunning, 100% responsive, SEO-friendly photo galleries in minutes. Use the File Manager with single-step and easy-to-manage functionality to rename, upload, copy, add and remove images and image directories. Otherwise use WordPress built in media uploader."
1219
+ msgstr "Создавайте потрясающие, на 100% адаптивные, оптимизированные для SEO фотогалереи за считанные минуты. Используйте диспетчер файлов с одношаговой и простой в управлении функцией для переименования, загрузки, копирования, добавления и удаления изображений и каталогов изображений. В противном случае используйте встроенный в WordPress загрузчик мультимедиа."
1220
 
1221
+ #: photo-gallery.php:1558
1222
+ msgid "Creating/Editing Albums"
1223
+ msgstr "Создание/редактирование альбомов"
 
 
1224
 
1225
+ #: photo-gallery.php:1543
1226
+ msgid "Creating/Editing Galleries"
1227
+ msgstr "Создание/редактирование галерей"
1228
 
1229
+ #: photo-gallery.php:1553
1230
+ msgid "Creating/Editing Tags"
1231
+ msgstr "Создание/редактирование меток"
 
 
 
1232
 
1233
+ #: photo-gallery.php:1609
1234
+ msgid "Creating/Editing Themes"
1235
+ msgstr "Создание/редактирование тем"
 
 
1236
 
1237
+ #: admin/views/Editimage.php:311
1238
+ msgid "Crop"
1239
+ msgstr "Кадрировать"
1240
 
1241
+ #: photo-gallery.php:428
1242
+ msgid "crop"
1243
+ msgstr "кадрировать"
 
 
1244
 
1245
+ #: admin/views/Galleries.php:789
1246
+ msgid "Crop Thumbnail"
1247
+ msgstr "Кадрировать миниатюру"
 
 
1248
 
1249
+ #: admin/controllers/WidgetSlideshow.php:45 admin/views/Options.php:1247
1250
+ msgid "Cube Horizontal"
1251
+ msgstr "Горизонтальный куб"
1252
 
1253
+ #: admin/controllers/WidgetSlideshow.php:46 admin/views/Options.php:1248
1254
+ msgid "Cube Vertical"
1255
+ msgstr "Вертикальный куб"
1256
 
1257
+ #: admin/views/AdminView.php:285
1258
+ msgid "Current Page"
1259
+ msgstr "Текущая страница"
 
 
1260
 
1261
+ #: photo-gallery.php:1523
1262
+ msgid "Customizable"
1263
+ msgstr "Настраиваемый"
 
1264
 
1265
+ #: filemanager/view.php:101
1266
+ msgid "Cut"
1267
+ msgstr "Вырезать"
1268
 
1269
+ #: insert.php:144
1270
+ msgid "Dark"
1271
+ msgstr "Тёмная"
 
 
1272
 
1273
+ #: admin/controllers/Themes.php:262
1274
+ msgid "Dashed"
1275
+ msgstr "Пунктирная"
1276
 
1277
+ #: admin/views/Uninstall.php:49
1278
+ msgid "Database Tables"
1279
+ msgstr "Таблицы БД"
1280
+
1281
+ #: admin/views/Galleries.php:772 admin/views/Options.php:1332
1282
+ #: admin/views/Options.php:1558 admin/views/Options.php:1792
1283
+ #: admin/views/Options.php:1987 admin/views/Options.php:2225
1284
+ #: admin/views/Options.php:2382 admin/views/Options.php:2557
1285
+ #: admin/views/Options.php:2783 admin/views/Options.php:3078
1286
+ #: admin/views/Options.php:3316 frontend/views/view.php:488
1287
+ msgid "Date"
1288
+ msgstr "Дата"
1289
 
1290
+ #: filemanager/view.php:170
1291
+ msgid "Date modified"
1292
+ msgstr "Дата изменения"
1293
 
1294
+ #: admin/views/Licensing.php:81
1295
+ msgid "Deactivate Photo Gallery plugin."
1296
+ msgstr "Деактивировать плагин Photo Gallery."
1297
 
1298
+ #: admin/views/Uninstall.php:37
1299
+ msgid "Deactivating %s plugin does not remove any data that may have been created. To completely remove this plugin, you can uninstall it here."
1300
+ msgstr "Деактивация плагина %s не удаляет данные, которые могли быть созданы. Чтобы полностью удалить этот плагин, вы можете деинсталлировать его здесь."
1301
+
1302
+ #: admin/views/Options.php:947 admin/views/Options.php:1330
1303
+ #: admin/views/Options.php:1556 admin/views/Options.php:1790
1304
+ #: admin/views/Options.php:1985 admin/views/Options.php:2223
1305
+ #: admin/views/Options.php:2380 admin/views/Options.php:2555
1306
+ #: admin/views/Options.php:2764 admin/views/Options.php:2781
1307
+ #: admin/views/Options.php:3059 admin/views/Options.php:3076
1308
+ #: admin/views/Options.php:3297 admin/views/Options.php:3314
1309
+ #: admin/views/Shortcode.php:432 admin/views/Themes.php:205
1310
+ #: admin/views/Themes.php:236 admin/views/Themes.php:307
1311
+ msgid "Default"
1312
+ msgstr "По умолчанию"
1313
 
1314
+ #: framework/WDWLibrary.php:308
1315
+ msgid "Default sorting"
1316
+ msgstr "Сортировка по умолчанию"
 
 
1317
 
1318
+ #: admin/controllers/Options.php:132
1319
+ msgid "Default values restored. Changes must be saved."
1320
+ msgstr "Восстановлены значения по умолчанию. Изменения должны быть сохранены."
 
 
1321
 
1322
+ #: admin/controllers/Albums.php:50 admin/controllers/Galleries.php:46
1323
+ #: admin/controllers/Themes.php:43 admin/views/Albums.php:115
1324
+ #: admin/views/Galleries.php:122 admin/views/Galleries.php:800
1325
+ #: admin/views/Themes.php:230 framework/WDWLibrary.php:2689
1326
+ msgid "Delete"
1327
+ msgstr "Удалить"
1328
 
1329
+ #: frontend/views/BWGViewGalleryBox.php:1406
1330
+ msgid "Delete Comment"
1331
+ msgstr "Удалить комментарий"
 
 
1332
 
1333
+ #: admin/views/Licensing.php:82
1334
+ msgid "Delete Photo Gallery plugin."
1335
+ msgstr "Удалите плагин Photo Gallery."
 
 
1336
 
1337
+ #: admin/views/Uninstall.php:67
1338
+ msgid "Delete the folder containing uploaded images."
1339
+ msgstr "Удалите папку, содержащую загруженные изображения."
1340
 
1341
+ #: admin/controllers/Albums.php:51 admin/controllers/Galleries.php:47
1342
+ #: admin/controllers/Themes.php:44 framework/WDWLibrary.php:2690
1343
+ msgid "deleted"
1344
+ msgstr "удалено"
1345
 
1346
+ #: wd/templates/display_overview.php:107
1347
+ msgid "Demo"
1348
+ msgstr "Демо"
1349
 
1350
+ #: admin/views/Options.php:1341 admin/views/Options.php:1567
1351
+ #: admin/views/Options.php:1801 admin/views/Options.php:1996
1352
+ #: admin/views/Options.php:2234 admin/views/Options.php:2391
1353
+ #: admin/views/Options.php:2566 admin/views/Options.php:2772
1354
+ #: admin/views/Options.php:2792 admin/views/Options.php:3067
1355
+ #: admin/views/Options.php:3087 admin/views/Options.php:3305
1356
+ #: admin/views/Options.php:3325
1357
+ msgid "Descending"
1358
+ msgstr "По убыванию"
1359
 
1360
+ #: admin/views/Albums.php:292 admin/views/Galleries.php:346
1361
+ #: admin/views/Galleries.php:814 frontend/views/BWGViewGalleryBox.php:1154
1362
+ msgid "Description"
1363
+ msgstr "Описание"
1364
 
1365
+ #: framework/WDWLibrary.php:313
1366
+ msgid "Description (Asc)"
1367
+ msgstr "Описание (по возрастанию)"
 
 
1368
 
1369
+ #: framework/WDWLibrary.php:314
1370
+ msgid "Description (Desc)"
1371
+ msgstr "Описание (по убыванию)"
 
 
1372
 
1373
+ #: admin/views/Themes.php:2310
1374
+ msgid "Description alignment:"
1375
+ msgstr "Выравнивание описания:"
 
 
1376
 
1377
+ #: admin/views/Themes.php:1545 admin/views/Themes.php:1842
1378
+ msgid "Description background color:"
1379
+ msgstr "Цвет фона описания:"
1380
 
1381
+ #: admin/views/Themes.php:1829 admin/views/Themes.php:2691
1382
+ msgid "Description border color:"
1383
+ msgstr "Цвет рамки описания:"
 
 
1384
 
1385
+ #: admin/views/Themes.php:1558 admin/views/Themes.php:1835
1386
+ msgid "Description border radius:"
1387
+ msgstr "Радиус рамки описания:"
1388
 
1389
+ #: admin/views/Themes.php:1815 admin/views/Themes.php:2677
1390
+ msgid "Description border style:"
1391
+ msgstr "Стиль рамки описания:"
 
 
 
1392
 
1393
+ #: admin/views/Themes.php:1809 admin/views/Themes.php:2671
1394
+ msgid "Description border width:"
1395
+ msgstr "Ширина рамки описания:"
 
1396
 
1397
+ #: admin/views/Themes.php:1578
1398
+ msgid "Description color:"
1399
+ msgstr "Цвет описания:"
 
1400
 
1401
+ #: admin/views/Themes.php:885 admin/views/Themes.php:2703
1402
+ #: admin/views/Themes.php:4092
1403
+ msgid "Description font color:"
1404
+ msgstr "Цвет шрифта описания:"
1405
 
1406
+ #: admin/views/Themes.php:616 admin/views/Themes.php:892
1407
+ #: admin/views/Themes.php:1585 admin/views/Themes.php:2710
1408
+ #: admin/views/Themes.php:4099
1409
+ msgid "Description font family:"
1410
+ msgstr "Семейство шрифта описания:"
1411
 
1412
+ #: admin/views/Themes.php:879 admin/views/Themes.php:1572
1413
+ #: admin/views/Themes.php:2697 admin/views/Themes.php:4116
1414
+ msgid "Description font size:"
1415
+ msgstr "Размер шрифта описания:"
1416
 
1417
+ #: admin/views/Themes.php:2713 admin/views/Themes.php:4102
1418
+ msgid "Description font weight:"
1419
+ msgstr "Толщина шрифта описания:"
1420
 
1421
+ #: admin/views/Themes.php:1795
1422
+ msgid "Description margin:"
1423
+ msgstr "Внешний отступ описания:"
 
 
1424
 
1425
+ #: admin/views/Themes.php:2733
1426
+ msgid "Description more color:"
1427
+ msgstr "Более цветное описание:"
1428
 
1429
+ #: admin/views/Themes.php:2727
1430
+ msgid "Description more size:"
1431
+ msgstr "Большего размера описание:"
 
 
1432
 
1433
+ #: admin/views/Themes.php:1565 admin/views/Themes.php:1802
1434
+ #: admin/views/Themes.php:2664
1435
+ msgid "Description padding:"
1436
+ msgstr "Внутренний отступ описания:"
1437
 
1438
+ #: admin/views/Options.php:2124
1439
+ msgid "Description position"
1440
+ msgstr "Позиция описания"
 
 
1441
 
1442
+ #: admin/views/Options.php:339
1443
+ msgid "Description text boxes of Photo Gallery will use TinyMCE editor, in case this setting is enabled."
1444
+ msgstr "Текстовые поля описания фотогалереи будут использовать редактор TinyMCE, если эта настройка включена.."
 
 
1445
 
1446
+ #: admin/views/Themes.php:1551
1447
+ msgid "Description transparency:"
1448
+ msgstr "Прозрачность описания:"
 
 
1449
 
1450
+ #: admin/views/Galleries.php:625
1451
+ msgid "Description: "
1452
+ msgstr "Описание: "
1453
 
1454
+ #: admin/views/Options.php:390
1455
+ msgid "Developer mode"
1456
+ msgstr "Режим разработчика"
1457
 
1458
+ #: frontend/views/BWGViewGalleryBox.php:1254
1459
+ msgid "Dimensions"
1460
+ msgstr "Размеры"
1461
 
1462
+ #: admin/views/Widget.php:168 admin/views/WidgetSlideshow.php:131
1463
+ #: admin/views/WidgetTags.php:105
1464
+ msgid "Dimensions:"
1465
+ msgstr "Размеры:"
 
1466
 
1467
+ #: filemanager/controller.php:177
1468
+ msgid "Directory already exists."
1469
+ msgstr "Каталог уже существует."
1470
 
1471
+ #: admin/views/Options.php:298
1472
+ msgid "Disable saving user IP address when rating the images."
1473
+ msgstr "Отключите сохранение IP-адреса пользователя при оценке изображений."
 
 
1474
 
1475
+ #: admin/views/Options.php:358
1476
+ msgid "Disable this option only if Photo Gallery conflicts with your theme."
1477
+ msgstr "Отключите этот параметр, только если фотогалерея конфликтует с вашей темой."
1478
 
1479
+ #: admin/views/Options.php:251
1480
+ msgid "Discourage Search Engine Visibility"
1481
+ msgstr "Сокращение видимости в поисковых системах"
 
 
1482
 
1483
+ #: admin/views/Options.php:256
1484
+ msgid "Discourage search engines from indexing Photo Gallery custom posts."
1485
+ msgstr "Запретить поисковым системам индексировать пользовательские записи Фотоальбома."
1486
 
1487
+ #: admin/views/Options.php:3851
1488
+ msgid "Display AddThis on Photo Gallery lightbox by activating this option."
1489
+ msgstr "Отобразите AddThis в лайтбоксе фотогалереи, активировав этот параметр."
 
 
1490
 
1491
+ #: admin/views/Options.php:2109
1492
+ msgid "Display image title based on the slideshow dimensions."
1493
+ msgstr "Отображать заголовок изображения в зависимости от размеров слайд-шоу."
1494
 
1495
+ #: admin/views/Options.php:2645
1496
+ msgid "Display image titles in Photo Gallery Carousel view by activating this option."
1497
+ msgstr "Отображение заголовков изображений в карусельном представлении фотогалереи, активировав эту опцию."
1498
 
1499
+ #: admin/views/Options.php:3756
1500
+ msgid "Display info box with the full width of the lightbox by enabling this option."
1501
+ msgstr "Отображать информационное окно на всю ширину лайтбокса, включив эту опцию."
 
 
1502
 
1503
+ #: admin/views/Options.php:3741
1504
+ msgid "Display info by default"
1505
+ msgstr "Отображать информацию по умолчанию"
1506
 
1507
+ #: admin/views/Options.php:2039
1508
+ msgid "Display Next/Previous buttons on your slideshow galleries activating this setting."
1509
+ msgstr "Отображать кнопки Далее/Назад на галереях слайд-шоу при активации этой настройки."
1510
 
1511
+ #: admin/views/Options.php:2863 admin/views/Options.php:3158
1512
+ #: admin/views/Options.php:3396
1513
+ msgid "Display the description of displayed gallery or gallery group by enabling this setting."
1514
+ msgstr "Отображать описание отображаемой галереи или группы галерей, включив эту настройку."
 
 
1515
 
1516
+ #: admin/views/Options.php:1412 admin/views/Options.php:1638
1517
+ #: admin/views/Options.php:1872 admin/views/Options.php:2305
1518
+ #: admin/views/Options.php:2462 admin/views/Options.php:2635
1519
+ msgid "Display the descriptions of your galleries by activating this option."
1520
+ msgstr "Отображать описания ваших галерей, активировав этот параметр."
1521
 
1522
+ #: admin/views/Options.php:2853 admin/views/Options.php:3148
1523
+ #: admin/views/Options.php:3386
1524
+ msgid "Display the title of displayed gallery or gallery group by enabling this setting."
1525
+ msgstr "Отображать заголовок отображаемой галереи или группы галерей, включив эту настройку."
1526
 
1527
+ #: admin/views/Options.php:3771
1528
+ msgid "Display views counter"
1529
+ msgstr "Отображать счетчик просмотров"
1530
 
1531
+ #: admin/views/Themes.php:382 admin/views/Themes.php:692
1532
+ #: admin/views/Themes.php:967 admin/views/Themes.php:1921
1533
+ #: admin/views/Themes.php:2812
1534
+ msgid "Distance between pictures:"
1535
+ msgstr "Расстояние между картинками:"
1536
 
1537
+ #: admin/views/Themes.php:388 admin/views/Themes.php:698
1538
+ #: admin/views/Themes.php:973 admin/views/Themes.php:1927
1539
+ #: admin/views/Themes.php:2818
1540
+ msgid "Distance from container frame:"
1541
+ msgstr "Расстояние от рамки контейнера:"
1542
 
1543
+ #: admin/views/Options.php:395
1544
+ msgid "Do not use minified JS and CSS files. Enable this option if You need to debug JS or CSS issues."
1545
+ msgstr "Не использовать минифицированные JS и CSS файлы. Включите эту опцию, если вам нужно отладить проблемы с JS или CSS."
1546
 
1547
+ #: admin/views/Options.php:155 admin/views/Options.php:3528
1548
+ msgid "Do Nothing"
1549
+ msgstr "Ничего не делать"
1550
 
1551
+ #: admin/views/Uninstall.php:73
1552
+ msgid "Do you really want to uninstall %s?"
1553
+ msgstr "Вы действительно хотите удалить %s?"
1554
 
1555
+ #: admin/views/Albums.php:115 admin/views/Galleries.php:122
1556
+ #: admin/views/Galleries.php:794 admin/views/Themes.php:230
1557
+ msgid "Do you want to delete selected item?"
1558
+ msgstr "Вы хотите удалить выбранный элемент?"
1559
 
1560
+ #: photo-gallery.php:621 photo-gallery.php:656
1561
+ msgid "Do you want to delete selected items?"
1562
+ msgstr "Вы хотите удалить выбранные элементы?"
1563
 
1564
+ #: photo-gallery.php:623
1565
+ msgid "Do you want to remove pricelist from selected items?"
1566
+ msgstr "Удалить прайс-лист из выбранных элементов?"
1567
 
1568
+ #: admin/views/Editimage.php:834 admin/views/Galleries.php:790
1569
+ msgid "Do you want to reset the image?"
1570
+ msgstr "Хотите сбросить изображение?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1571
 
1572
+ #: admin/views/Options.php:54 admin/views/Themes.php:356
1573
+ msgid "Do you want to reset to default?"
1574
+ msgstr "Хотите сбросить настройки по умолчанию?"
1575
+
1576
+ #: admin/views/Options.php:1421 admin/views/Options.php:1471
1577
+ #: admin/views/Options.php:1647 admin/views/Options.php:1697
1578
+ #: admin/views/Options.php:1880 admin/views/Options.php:1919
1579
+ #: admin/views/Options.php:2872 admin/views/Options.php:2931
1580
+ #: admin/views/Options.php:2971 admin/views/Options.php:3167
1581
+ #: admin/views/Options.php:3196 admin/views/Options.php:3463
1582
+ #: admin/views/Options.php:3503
1583
+ msgid "Don't show"
1584
+ msgstr "Не показывать"
 
 
 
 
 
 
 
 
 
 
 
 
1585
 
1586
+ #: admin/controllers/Themes.php:261
1587
+ msgid "Dotted"
1588
+ msgstr "Точечный пунктир"
1589
 
1590
+ #: admin/controllers/Themes.php:263 admin/controllers/Themes.php:315
1591
+ msgid "Double"
1592
+ msgstr "Двойной"
1593
 
1594
+ #: frontend/views/view.php:380
1595
+ msgid "Download gallery"
1596
+ msgstr "Скачать галерею"
1597
 
1598
+ #: frontend/views/BWGViewGalleryBox.php:840
1599
+ msgid "Download original image"
1600
+ msgstr "Скачать исходное изображение"
1601
 
1602
+ #: frontend/views/BWGViewGalleryBox.php:1129
1603
+ msgid "Downloads"
1604
+ msgstr "Загрузки"
 
1605
 
1606
+ #: filemanager/view.php:249
1607
+ msgid "Drag files here"
1608
+ msgstr "Перетащите файлы сюда"
1609
 
1610
+ #: admin/views/Albums.php:375 admin/views/Galleries.php:100
1611
+ #: admin/views/Galleries.php:753
1612
+ msgid "Drag to re-order"
1613
+ msgstr "Перетащите, чтобы изменить порядок"
1614
 
1615
+ #: admin/views/Galleries.php:679
1616
+ msgid "Drag&Drop"
1617
+ msgstr "Перетащить"
1618
 
1619
+ #: admin/controllers/Albums.php:46 admin/controllers/Galleries.php:42
1620
+ #: admin/controllers/Themes.php:39 admin/views/Albums.php:114
1621
+ #: admin/views/Galleries.php:123 admin/views/Themes.php:229
1622
+ msgid "Duplicate"
1623
+ msgstr "Дублировать"
1624
 
1625
+ #: admin/controllers/Albums.php:47
1626
+ msgid "duplicate"
1627
+ msgstr "дублировать"
1628
 
1629
+ #: admin/controllers/Galleries.php:43 admin/controllers/Themes.php:40
1630
+ msgid "duplicated"
1631
+ msgstr "дублирован"
 
1632
 
1633
+ #: admin/views/Themes.php:461
1634
+ msgid "E.g. Rotate: 10deg, Scale/Zoom: 1.5, Skew: 10deg."
1635
+ msgstr "Например. Поворот: 10 градусов, масштаб/увеличение: 1,5, наклон: 10 градусов."
1636
 
1637
+ #: admin/views/Themes.php:758 admin/views/Themes.php:1033
1638
+ #: admin/views/Themes.php:2001 admin/views/Themes.php:2348
1639
+ #: admin/views/Themes.php:2878
1640
+ msgid "E.g. Rotate: 10deg, Scale: 1.5, Skew: 10deg."
1641
+ msgstr "Например. Поворот: 10 градусов, Масштаб: 1,5, Наклон: 10 градусов."
1642
 
1643
+ #: photo-gallery.php:1515
1644
+ msgid "Easy Set-up and Management"
1645
+ msgstr "Простая настройка и управление"
1646
 
1647
+ #: frontend/views/BWGViewGalleryBox.php:847
1648
+ #: frontend/views/BWGViewThumbnails.php:46
1649
+ msgid "Ecommerce"
1650
+ msgstr "Электронная торговля"
1651
 
1652
+ #: photo-gallery.php:428
1653
+ msgid "edit"
1654
+ msgstr "изменить"
1655
 
1656
+ #: admin/views/Albums.php:112 admin/views/Editimage.php:326
1657
+ #: admin/views/Galleries.php:120 admin/views/Galleries.php:788
1658
+ #: admin/views/Themes.php:228
1659
+ msgid "Edit"
1660
+ msgstr "Изменить"
1661
 
1662
+ #: framework/WDWLibrary.php:2659
1663
+ msgid "Edit Alt/Title"
1664
+ msgstr "Изменить Атрибут alt/Заголовок"
1665
 
1666
+ #: framework/WDWLibrary.php:2664
1667
+ msgid "Edit description"
1668
+ msgstr "Изменить описание"
1669
 
1670
+ #: framework/WDWLibrary.php:2669
1671
+ msgid "Edit redirect URL"
1672
+ msgstr "Изменить URL перенаправления"
1673
 
1674
+ #: framework/WDWLibrary.php:2647 framework/WDWLibrary.php:2660
1675
+ #: framework/WDWLibrary.php:2665 framework/WDWLibrary.php:2670
1676
+ #: framework/WDWLibrary.php:2675 framework/WDWLibrary.php:2698
1677
+ #: framework/WDWLibrary.php:2703
1678
+ msgid "edited"
1679
+ msgstr "изменено"
1680
 
1681
+ #: photo-gallery.php:1668
1682
+ msgid "Editing Comments"
1683
+ msgstr "Изменение комментариев"
1684
 
1685
+ #: photo-gallery.php:1563
1686
+ msgid "Editing Options"
1687
+ msgstr "Параметры редактирования"
1688
 
1689
+ #: photo-gallery.php:1673
1690
+ msgid "Editing Ratings"
1691
+ msgstr "Редактирование рейтингов"
 
1692
 
1693
+ #: admin/views/Options.php:1952 admin/views/Options.php:3584
1694
+ msgid "Effect duration"
1695
+ msgstr "Продолжительность эффекта"
1696
 
1697
+ #: frontend/views/BWGViewGalleryBox.php:1027
1698
+ msgid "Email"
1699
+ msgstr "Email"
1700
 
1701
+ #: admin/views/LibSubscribe.php:74
1702
+ msgid "EMAIL ADDRESS"
1703
+ msgstr "EMAIL-АДРЕС"
1704
 
1705
+ #: admin/views/Galleries.php:464
1706
+ msgid "Embed Media"
1707
+ msgstr "Вставить медиафайл"
1708
 
1709
+ #: admin/views/Galleries.php:548
1710
+ msgid "embed type:"
1711
+ msgstr "тип вставки:"
1712
 
1713
+ #: admin/views/Options.php:3846
1714
+ msgid "Enable"
1715
+ msgstr "Включить"
1716
 
1717
+ #: admin/views/Options.php:2004 admin/views/Options.php:2574
1718
+ msgid "Enable autoplay"
1719
+ msgstr "Включить автовоспроизведение"
 
1720
 
1721
+ #: admin/views/WidgetSlideshow.php:119
1722
+ msgid "Enable autoplay:"
1723
+ msgstr "Включить автовоспроизведение:"
 
 
 
1724
 
1725
+ #: admin/views/Options.php:1448 admin/views/Options.php:1675
1726
+ #: admin/views/Options.php:1897 admin/views/Options.php:2170
1727
+ #: admin/views/Options.php:2310 admin/views/Options.php:2489
1728
+ #: admin/views/Options.php:2662 admin/views/Options.php:2948
1729
+ #: admin/views/Options.php:3174 admin/views/Options.php:3480
1730
+ msgid "Enable bulk download button"
1731
+ msgstr "Включить кнопку массового скачивания"
1732
 
1733
+ #: admin/views/Options.php:3682
1734
+ msgid "Enable comments"
1735
+ msgstr "Включить комментарии"
 
 
 
1736
 
1737
+ #: admin/views/Options.php:3720
1738
+ msgid "Enable comments moderation"
1739
+ msgstr "Включить модерацию комментариев"
 
 
 
1740
 
1741
+ #: admin/views/Options.php:2024 admin/views/Options.php:3636
1742
+ msgid "Enable control buttons"
1743
+ msgstr "Включить кнопки управления"
 
 
 
1744
 
1745
+ #: admin/views/WidgetSlideshow.php:125
1746
+ msgid "Enable control buttons:"
1747
+ msgstr "Включить кнопки управления:"
 
 
 
1748
 
1749
+ #: admin/views/Options.php:382
1750
+ msgid "Enable dynamic URLs for galleries and gallery groups"
1751
+ msgstr "Включить динамические URL-адреса для галерей и групп галерей"
 
 
 
1752
 
1753
+ #: admin/views/Options.php:3613
1754
+ msgid "Enable filmstrip"
1755
+ msgstr "Включить диафильм"
 
 
 
1756
 
1757
+ #: admin/views/Options.php:3672
1758
+ msgid "Enable fullscreen button"
1759
+ msgstr "Включить кнопку Полноэкранный режим"
 
 
 
 
 
1760
 
1761
+ #: admin/views/Options.php:281
1762
+ msgid "Enable GDPR compliance"
1763
+ msgstr "Включить соответствие GDPR"
 
 
 
 
 
1764
 
1765
+ #: admin/views/Options.php:343
1766
+ msgid "Enable get parameter for image URL"
1767
+ msgstr "Включить параметр get для URL-адреса изображения"
 
 
 
 
 
1768
 
1769
+ #: admin/views/Options.php:324
1770
+ msgid "Enable Google fonts"
1771
+ msgstr "Включить Google Fonts"
 
 
 
1772
 
1773
+ #: admin/views/Options.php:353
1774
+ msgid "Enable href attribute"
1775
+ msgstr "Включить атрибут href"
 
 
 
 
1776
 
1777
+ #: admin/views/Options.php:334
1778
+ msgid "Enable HTML editor"
1779
+ msgstr "Включить HTML-редактор"
 
1780
 
1781
+ #: admin/views/Options.php:3836
1782
+ msgid "Enable looping"
1783
+ msgstr "Включить зацикливание"
 
1784
 
1785
+ #: admin/views/Options.php:3782
1786
+ msgid "Enable rating"
1787
+ msgstr "Включить рейтинг (оценки)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1788
 
1789
+ #: admin/views/Options.php:2014
1790
+ msgid "Enable shuffle"
1791
+ msgstr "Включить произвольный порядок"
 
 
 
 
 
 
1792
 
1793
+ #: admin/views/WidgetSlideshow.php:113
1794
+ msgid "Enable shuffle:"
1795
+ msgstr "Включить произвольный порядок:"
 
 
 
 
 
 
1796
 
1797
+ #: admin/views/Options.php:2046
1798
+ msgid "Enable slideshow filmstrip"
1799
+ msgstr "Включить диафильм слайд-шоу"
 
 
 
1800
 
1801
+ #: admin/views/Options.php:2151
1802
+ msgid "Enable slideshow Music"
1803
+ msgstr "Включить музыку для слайд-шоу"
 
 
 
 
 
1804
 
1805
+ #: admin/views/Options.php:1390 admin/views/Options.php:1616
1806
+ #: admin/views/Options.php:1850 admin/views/Options.php:2283
1807
+ #: admin/views/Options.php:2440 admin/views/Options.php:2841
1808
+ #: admin/views/Options.php:3136 admin/views/Options.php:3374
1809
+ msgid "Enable Tag Box to allow users to filter the gallery images by their tags."
1810
+ msgstr "Включить окно меток, чтобы пользователи могли фильтровать изображения галереи по меткам."
1811
 
1812
+ #: admin/views/Options.php:217
1813
+ msgid "Enable this option to activate lazy loading for images and improve the loading speed on your galleries."
1814
+ msgstr "Включить отложенную загрузку изображений и повысить скорость загрузки ваших галерей."
 
 
 
1815
 
1816
+ #: admin/views/Themes.php:394 admin/views/Themes.php:704
1817
+ #: admin/views/Themes.php:979 admin/views/Themes.php:1933
1818
+ #: admin/views/Themes.php:2824
1819
+ msgid "Enable this option to add distance between the parent container and the thumbnails grid."
1820
+ msgstr "Включите этот параметр, чтобы добавить расстояние между родительским контейнером и сеткой миниатюр."
 
1821
 
1822
+ #: admin/views/Options.php:207
1823
+ msgid "Enable this option to allow resizing gallery thumbnails on smaller screens."
1824
+ msgstr "Включите этот параметр, чтобы разрешить изменение размера миниатюр галереи на небольших экранах."
 
 
 
 
 
1825
 
1826
+ #: admin/views/Options.php:387
1827
+ msgid "Enable this option to browse galleries and gallery groups, as well as search results and tagged images with dynamic links."
1828
+ msgstr "Включите этот параметр, чтобы просматривать галереи и группы галерей, а также результаты поиска и изображения, помеченные динамическими ссылками."
 
 
 
 
 
1829
 
1830
+ #: admin/views/Options.php:1354 admin/views/Options.php:1580
1831
+ #: admin/views/Options.php:1814 admin/views/Options.php:2247
1832
+ #: admin/views/Options.php:2404 admin/views/Options.php:2805
1833
+ #: admin/views/Options.php:3100 admin/views/Options.php:3338
1834
+ msgid "Enable this option to display a search box with your gallery or gallery group."
1835
+ msgstr "Включите этот параметр, чтобы отобразить окно поиска в галерее или группе галерей."
 
1836
 
1837
+ #: admin/views/Options.php:3919
1838
+ msgid "Enable this option to display ecommerce icon on Photo Gallery lightbox"
1839
+ msgstr "Включите этот параметр, чтобы отображать значок электронной торговли в лайтбоксе фотогалереи"
 
 
1840
 
1841
+ #: admin/views/Options.php:3831
1842
+ msgid "Enable this option to display image counter on Photo Gallery lightbox."
1843
+ msgstr "Включите этот параметр, чтобы отображать счетчик изображений в лайтбоксе фотогалереи."
 
 
 
1844
 
1845
+ #: admin/views/Options.php:276
1846
+ msgid "Enable this option to filter images with AND operator. In this case, the filter results must have all selected tags in the Tag Box."
1847
+ msgstr "Включите этот параметр для фильтрации изображений с помощью оператора AND. В этом случае результаты фильтрации должны содержать все выбранные метки в окне меток."
 
 
1848
 
1849
+ #: admin/views/Options.php:286
1850
+ msgid "Enable this option to have General Data Protection Regulation."
1851
+ msgstr "Включите этот параметр, чтобы иметь Общий регламент по защите данных (GDPR)."
 
 
1852
 
1853
+ #: admin/views/Options.php:3667
1854
+ msgid "Enable this option to show control buttons on Photo Gallery lightbox."
1855
+ msgstr "Включите этот параметр, чтобы отображать кнопки управления в лайтбоксе фотогалереи."
 
 
 
 
1856
 
1857
+ #: admin/views/Options.php:2029
1858
+ msgid "Enable this option to show control buttons on your slideshow galleries."
1859
+ msgstr "Включите этот параметр, чтобы отображать кнопки управления в галереях слайд-шоу."
 
 
 
 
 
 
 
 
1860
 
1861
+ #: admin/views/Options.php:3406
1862
+ msgid "Enable this option to show descriptions of galleries/gallery groups in Extended view."
1863
+ msgstr "Включите этот параметр, чтобы отображать описания галерей/групп галерей в расширенном виде."
 
 
 
 
1864
 
1865
+ #: admin/views/Options.php:3883
1866
+ msgid "Enable this setting to add Tweet button to Photo Gallery lightbox."
1867
+ msgstr "Включите эту настройку, чтобы добавить кнопку Tweet в лайтбокс фотогалереи."
 
 
 
 
 
 
1868
 
1869
+ #: admin/views/Options.php:813
1870
+ msgid "Enable this setting to allow users to add/edit tags."
1871
+ msgstr "Включите эту настройку, чтобы разрешить пользователям добавлять / редактировать метки."
 
 
1872
 
1873
+ #: admin/views/Options.php:824
1874
+ msgid "Enable this setting to allow users to add/edit themes."
1875
+ msgstr "Включите эту настройку, чтобы разрешить пользователям добавлять/редактировать темы."
 
 
1876
 
1877
+ #: admin/views/Options.php:835
1878
+ msgid "Enable this setting to allow users to edit global settings."
1879
+ msgstr "Включите эту настройку, чтобы разрешить пользователям редактировать глобальные настройки."
 
 
1880
 
1881
+ #: admin/views/Options.php:1433 admin/views/Options.php:1659
1882
+ msgid "Enable this setting to display descriptions under images."
1883
+ msgstr "Включите эту настройку, чтобы отображать описания под изображениями."
 
 
 
 
1884
 
1885
+ #: admin/views/Options.php:2611
1886
+ msgid "Enable this setting to display Next/Previous buttons on your galleries with Carousel view."
1887
+ msgstr "Включите эту настройку, чтобы отображать кнопки Далее/Назад в галереях в режиме просмотра Карусель."
 
 
 
 
 
 
1888
 
1889
+ #: admin/views/Options.php:2472
1890
+ msgid "Enable this setting to display titles of images in Blog Style view."
1891
+ msgstr "Включите эту настройку, чтобы отображать заголовки изображений в режиме просмотра Стиль блога."
 
 
 
 
 
 
 
1892
 
1893
+ #: admin/views/Options.php:2213
1894
+ msgid "Enable this setting to display titles of images in Image Browser view."
1895
+ msgstr "Включите эту настройку, чтобы отображать заголовков изображений в режиме просмотра Браузер изображений."
 
 
 
 
1896
 
1897
+ #: admin/views/Options.php:2072
1898
+ msgid "Enable this setting to display titles of images in Slideshow view."
1899
+ msgstr "Включите эту настройку, чтобы отображать заголовки изображений в режиме просмотра Слайд-шоу."
 
 
1900
 
1901
+ #: admin/views/Options.php:3713
1902
+ msgid "Enable this setting to place Captcha word verification in comments section."
1903
+ msgstr "Включите эту настройку, чтобы установить проверку слова Captcha в разделе комментариев."
1904
 
1905
+ #: admin/views/Options.php:780
1906
+ msgid "Enable this setting to restrict authors from modifying galleries created by other users."
1907
+ msgstr "Включите эту настройку, чтобы запретить авторам изменять галереи, созданные другими пользователями."
 
1908
 
1909
+ #: admin/views/Options.php:802
1910
+ msgid "Enable this setting to restrict authors from modifying images added by other users."
1911
+ msgstr "Включите эту настройку, чтобы запретить авторам изменять изображения, добавленные другими пользователями."
 
 
1912
 
1913
+ #: admin/views/Options.php:2483
1914
+ msgid "Enable this setting to show descriptions of images in Blog Style view."
1915
+ msgstr "Включите эту настройку, чтобы показывать описания изображений в режиме просмотра Стиль блога."
 
 
1916
 
1917
+ #: admin/views/Options.php:2119
1918
+ msgid "Enable this setting to show descriptions of images in Slideshow view."
1919
+ msgstr "Включите эту настройку, чтобы показывать описания изображений в режиме просмотра Слайд-шоу."
 
 
1920
 
1921
+ #: admin/views/Options.php:3793
1922
+ msgid "Enable zoom"
1923
+ msgstr "Включить увеличение"
1924
 
1925
+ #: admin/views/Options.php:368
1926
+ msgid "Enabling this option will let the plugin fill in meta descriptions of photos into Image Description option automatically."
1927
+ msgstr "Включение этого параметра позволит плагину автоматически заполнять мета описания фотографий в опции Описание изображения."
 
1928
 
1929
+ #: admin/views/Options.php:3746
1930
+ msgid "Enabling this option will let you show image title and description on lightbox by default."
1931
+ msgstr "Включение этого параметра позволит вам показывать название и описание изображения в лайтбоксе по умолчанию."
 
1932
 
1933
+ #: admin/views/Options.php:791
1934
+ msgid "Enabling this option will restrict authors from modifying galleries groups created by other users."
1935
+ msgstr "Включение этого параметра запретит авторам изменять группы галерей, созданные другими пользователями."
 
1936
 
1937
+ #: admin/views/Options.php:2156
1938
+ msgid "Enabling this option, you can have music playing along with your slideshow."
1939
+ msgstr "Включив этот параметр, вы можете включить музыку во время слайд-шоу."
 
1940
 
1941
+ #: admin/views/Options.php:2600
1942
+ msgid "Enabling this setting fits the images inside their container on Carousel galleries with fixed width."
1943
+ msgstr "При включении этой настройки изображения помещаются внутри их контейнера в галереях карусели с фиксированной шириной."
 
1944
 
1945
+ #: admin/views/Options.php:3872
1946
+ msgid "Enabling this setting will add Facebook sharing button to Photo Gallery lightbox."
1947
+ msgstr "Включение этой настройки добавит кнопку Поделиться в Facebook в лайтбокс фотогалереи."
 
 
 
1948
 
1949
+ #: filemanager/view.php:73
1950
+ msgid "Enter directory name"
1951
+ msgstr "Введите имя каталога"
 
1952
 
1953
+ #: filemanager/view.php:74
1954
+ msgid "Enter new name"
1955
+ msgstr "Введите новое имя"
 
 
1956
 
1957
+ #: admin/views/Galleries.php:485
1958
+ msgid "Enter YouTube, Vimeo, Instagram, Flickr or Dailymotion URL here."
1959
+ msgstr "Введите здесь URL-адреса; YouTube, Vimeo, Instagram, Flickr или Dailymotion."
1960
 
1961
+ #: photo-gallery.php:641
1962
+ msgid "Error"
1963
+ msgstr "Ошибка"
 
1964
 
1965
+ #: photo-gallery.php:639
1966
+ msgid "Error: cannot get response from the server."
1967
+ msgstr "Ошибка: не удается получить ответ от сервера."
 
 
 
 
1968
 
1969
+ #: photo-gallery.php:640
1970
+ msgid "Error: something wrong happened at the server."
1971
+ msgstr "Ошибка: на сервере что-то не так."
1972
 
1973
+ #: photo-gallery.php:1446
1974
+ msgid "Exit Fullscreen"
1975
+ msgstr "Отключить полноэкранный режим"
 
1976
 
1977
+ #: admin/controllers/Options.php:67 admin/controllers/Shortcode.php:51
1978
+ #: admin/views/Albums.php:186 admin/views/Options.php:603
1979
+ #: admin/views/Shortcode.php:209
1980
+ msgid "Extended"
1981
+ msgstr "Расширенный"
1982
 
1983
+ #: admin/controllers/Themes.php:250
1984
+ msgid "Extended album"
1985
+ msgstr "Альбом Расширенный"
1986
 
1987
+ #: photo-gallery.php:1641
1988
+ msgid "Extended Album"
1989
+ msgstr "Альбом Расширенный"
1990
 
1991
+ #: admin/views/Options.php:3210
1992
+ msgid "Extended gallery group height"
1993
+ msgstr "Высота расширенной группы галереи"
1994
 
1995
+ #: admin/controllers/Galleries.php:379 admin/views/Options.php:730
1996
+ msgid "Facebook"
1997
+ msgstr "Facebook"
1998
 
1999
+ #: admin/controllers/WidgetSlideshow.php:47 admin/views/Options.php:1249
2000
+ msgid "Fade"
2001
+ msgstr "Исчезание"
2002
 
2003
+ #: filemanager/controller.php:528
2004
+ msgid "Failed to copy some of the files."
2005
+ msgstr "Не удалось скопировать некоторые файлы."
2006
 
2007
+ #: photo-gallery.php:661
2008
+ msgid "Failed to import images from media library"
2009
+ msgstr "Не удалось импортировать изображения из библиотеки файлов"
2010
 
2011
+ #: filemanager/controller.php:575
2012
+ msgid "Failed to move some of the files."
2013
+ msgstr "Не удалось переместить некоторые файлы."
2014
 
2015
+ #: framework/WDWLibrary.php:93 framework/WDWLibrary.php:196
2016
+ msgid "Failed."
2017
+ msgstr "Сбой."
2018
 
2019
+ #: admin/controllers/WidgetSlideshow.php:56 admin/views/Options.php:1258
2020
+ msgid "Fan"
2021
+ msgstr "Вентилятор"
2022
 
2023
+ #: framework/WDWLibrary.php:2986
2024
+ msgid "features of the Premium Plugin"
2025
+ msgstr "возможности плагина Premium"
2026
 
2027
+ #: photo-gallery.php:631 photo-gallery.php:1433
2028
+ msgid "field is required."
2029
+ msgstr "поле обязательно для заполнения."
 
 
2030
 
2031
+ #: filemanager/controller.php:275
2032
+ msgid "File doesn't exist."
2033
+ msgstr "Файл не существует."
2034
 
2035
+ #: filemanager/view.php:70
2036
+ msgid "File loading failed"
2037
+ msgstr "Сбой загрузки файла"
2038
+
2039
+ #: framework/WDWLibrary.php:309
2040
+ msgid "File name (Asc)"
2041
+ msgstr "Имя файла (по возрастанию)"
2042
+
2043
+ #: framework/WDWLibrary.php:310
2044
+ msgid "File name (Desc)"
2045
+ msgstr "Имя файла (по убыванию)"
2046
+
2047
+ #: admin/views/Galleries.php:692 admin/views/Galleries.php:761
2048
+ #: admin/views/Options.php:1333 admin/views/Options.php:1559
2049
+ #: admin/views/Options.php:1793 admin/views/Options.php:1988
2050
+ #: admin/views/Options.php:2226 admin/views/Options.php:2383
2051
+ #: admin/views/Options.php:2558 admin/views/Options.php:2784
2052
+ #: admin/views/Options.php:3079 admin/views/Options.php:3317
2053
+ #: frontend/views/view.php:491
2054
+ msgid "Filename"
2055
+ msgstr "Имя файла"
2056
 
2057
+ #: admin/views/Themes.php:1412
2058
+ msgid "Filmstrip active border color:"
2059
+ msgstr "Цвет активной рамки диафильма:"
2060
 
2061
+ #: admin/views/Themes.php:1406
2062
+ msgid "Filmstrip active border width:"
2063
+ msgstr "Ширина активной рамки диафильма:"
 
 
2064
 
2065
+ #: admin/views/Themes.php:1393
2066
+ msgid "Filmstrip border color:"
2067
+ msgstr "Цвет рамки диафильма:"
2068
 
2069
+ #: admin/views/Themes.php:1399
2070
+ msgid "Filmstrip border radius:"
2071
+ msgstr "Радиус рамки диафильма:"
2072
 
2073
+ #: admin/views/Themes.php:1378
2074
+ msgid "Filmstrip border style:"
2075
+ msgstr "Стиль рамки диафильма:"
2076
 
2077
+ #: admin/views/Themes.php:1372
2078
+ msgid "Filmstrip border width:"
2079
+ msgstr "Ширина рамки диафильма:"
2080
 
2081
+ #: admin/views/Themes.php:1418
2082
+ msgid "Filmstrip deactive transparency: "
2083
+ msgstr "Неактивная прозрачность диафильма: "
2084
 
2085
+ #: admin/views/WidgetSlideshow.php:136
2086
+ msgid "Filmstrip height:"
2087
+ msgstr "Высота диафильма:"
 
 
 
2088
 
2089
+ #: admin/views/Themes.php:1365
2090
+ msgid "Filmstrip margin:"
2091
+ msgstr "Внешний отступ диафильма:"
2092
 
2093
+ #: admin/views/Themes.php:3698
2094
+ msgid "Filmstrip position:"
2095
+ msgstr "Позиция диафильма:"
2096
 
2097
+ #: admin/views/Themes.php:3780
2098
+ msgid "Filmstrip right, left button background color:"
2099
+ msgstr "Цвет фона левой и правой кнопки диафильма:"
2100
 
2101
+ #: admin/views/Themes.php:1425
2102
+ msgid "Filmstrip right, left buttons background color: "
2103
+ msgstr "Цвет фона левой и правой кнопок диафильма: "
2104
 
2105
+ #: admin/views/Themes.php:1431 admin/views/Themes.php:3774
2106
+ msgid "Filmstrip right, left buttons color:"
2107
+ msgstr "Цвет правой и левой кнопки диафильма:"
 
2108
 
2109
+ #: admin/views/Themes.php:1437 admin/views/Themes.php:3768
2110
+ msgid "Filmstrip right, left buttons size:"
2111
+ msgstr "Размер правой и левой кнопки диафильма:"
2112
 
2113
+ #: admin/views/Options.php:3624
2114
+ msgid "Filmstrip size"
2115
+ msgstr "Размер диафильма"
 
 
2116
 
2117
+ #: admin/views/Themes.php:3755
2118
+ msgid "Filmstrip thumbnail active border color:"
2119
+ msgstr "Цвет активной рамки миниатюры диафильма:"
2120
 
2121
+ #: admin/views/Themes.php:3749
2122
+ msgid "Filmstrip thumbnail active border width:"
2123
+ msgstr "Ширина активной рамки миниатюры диафильма:"
2124
 
2125
+ #: admin/views/Themes.php:3736
2126
+ msgid "Filmstrip thumbnail border color:"
2127
+ msgstr "Цвет рамки миниатюры диафильма:"
2128
 
2129
+ #: admin/views/Themes.php:3742
2130
+ msgid "Filmstrip thumbnail border radius:"
2131
+ msgstr "Радиус рамки миниатюры диафильма:"
2132
 
2133
+ #: admin/views/Themes.php:3722
2134
+ msgid "Filmstrip thumbnail border style:"
2135
+ msgstr "Стиль рамки миниатюры диафильма:"
2136
 
2137
+ #: admin/views/Themes.php:3716
2138
+ msgid "Filmstrip thumbnail border width:"
2139
+ msgstr "Ширина рамки миниатюры диафильма:"
2140
 
2141
+ #: admin/views/Themes.php:3761
2142
+ msgid "Filmstrip thumbnail deactive transparency:"
2143
+ msgstr "Прозрачность неактивной миниатюры диафильма:"
2144
 
2145
+ #: admin/views/Themes.php:3709
2146
+ msgid "Filmstrip thumbnail margin:"
2147
+ msgstr "Внешний отступ миниатюры диафильма:"
2148
 
2149
+ #: admin/views/Themes.php:1354
2150
+ msgid "Filmstrip/Slider bullet position:"
2151
+ msgstr "Позиция маркера диафильма/слайдера:"
2152
 
2153
+ #: admin/views/Shortcode.php:312
2154
+ msgid "Filter gallery images by this tag."
2155
+ msgstr "Фильтр изображений галереи по этой метке."
2156
 
2157
+ #: admin/views/Widget.php:159 frontend/views/view.php:794
2158
+ msgid "First"
2159
+ msgstr "Первый"
2160
 
2161
+ #: admin/views/AdminView.php:279
2162
+ msgid "First page"
2163
+ msgstr "Первая страница"
 
 
2164
 
2165
+ #: admin/views/Options.php:2540
2166
  msgid "Fixed width"
2167
+ msgstr "Фиксированная ширина"
2168
 
2169
+ #: admin/controllers/Themes.php:322
2170
+ msgid "Flag"
2171
+ msgstr "Флаг"
2172
 
2173
+ #: admin/views/Themes.php:1785 admin/views/Themes.php:3173
2174
+ #: admin/views/Themes.php:4316 admin/views/Themes.php:4816
2175
+ msgid "Font color:"
2176
+ msgstr "Цвет шрифта:"
2177
 
2178
+ #: admin/views/Themes.php:1792 admin/views/Themes.php:3164
2179
+ #: admin/views/Themes.php:4323 admin/views/Themes.php:4821
2180
+ msgid "Font family:"
2181
+ msgstr "Семейство шрифтов:"
2182
 
2183
+ #: admin/views/Themes.php:1779 admin/views/Themes.php:3167
2184
+ #: admin/views/Themes.php:4310 admin/views/Themes.php:4810
2185
+ msgid "Font size:"
2186
+ msgstr "Размер шрифта:"
 
2187
 
2188
+ #: admin/views/Themes.php:4326 admin/views/Themes.php:4824
2189
+ msgid "Font weight:"
2190
+ msgstr "Толщина шрифта:"
2191
 
2192
+ #: framework/WDWLibrary.php:2858
2193
+ msgid "Forms"
2194
+ msgstr "Формы"
 
 
2195
 
2196
+ #: admin/views/Licensing.php:36
2197
+ msgid "Free"
2198
+ msgstr "Бесплатно"
2199
 
2200
+ #: wd/includes/deactivate.php:26
2201
+ msgid "Free version is limited"
2202
+ msgstr "Бесплатная версия ограничена"
 
 
2203
 
2204
+ #: admin/views/Licensing.php:17
2205
+ msgid "friendly"
2206
+ msgstr "дружественный"
2207
 
2208
+ #: framework/howto/data.php:63
2209
+ msgid "From the window that follows, select which gallery to insert, its layout, and configure its options. Click “Insert Into Post” to add your selected gallery to the post/page."
2210
+ msgstr "В следующем окне выберите галерею для вставки, ее расположение и настройте параметры. Нажмите \"Вставить в запись\", чтобы добавить выбранную галерею в запись/страницу."
2211
 
2212
+ #: admin/views/Themes.php:506 admin/views/Themes.php:1609
2213
+ #: admin/views/Themes.php:2044 admin/views/Themes.php:2916
2214
+ msgid "Full background color:"
2215
+ msgstr "Полноцветный фон:"
2216
 
2217
+ #: admin/views/Themes.php:803 admin/views/Themes.php:1076
2218
+ msgid "Full Background color:"
2219
+ msgstr "Полноцветный фон:"
 
 
2220
 
2221
+ #: admin/views/Themes.php:512 admin/views/Themes.php:1615
2222
+ #: admin/views/Themes.php:2050 admin/views/Themes.php:2922
2223
+ msgid "Full background transparency:"
2224
+ msgstr "Полная прозрачность фона:"
2225
 
2226
+ #: admin/views/Themes.php:1649
2227
+ msgid "Full border color:"
2228
+ msgstr "Полный цвет рамки:"
 
2229
 
2230
+ #: admin/views/Themes.php:1622
2231
+ msgid "Full border radius:"
2232
+ msgstr "Полный радиус рамки:"
 
2233
 
2234
+ #: admin/views/Themes.php:1635
2235
+ msgid "Full border style:"
2236
+ msgstr "Полный стиль рамки:"
 
 
 
2237
 
2238
+ #: admin/views/Themes.php:1629
2239
+ msgid "Full border width:"
2240
+ msgstr "Полная ширина рамки:"
 
 
 
2241
 
2242
+ #: admin/views/Themes.php:1602
2243
+ msgid "Full padding:"
2244
+ msgstr "Полный внутренний отступ:"
 
 
 
2245
 
2246
+ #: admin/views/Options.php:3751
2247
+ msgid "Full width info"
2248
+ msgstr "Полная информация о ширине"
 
 
 
2249
 
2250
+ #: admin/views/Options.php:2104
2251
+ msgid "Full width title"
2252
+ msgstr "Заголовок во всю ширину"
 
2253
 
2254
+ #: admin/views/Options.php:3545
2255
+ msgid "Full-width lightbox"
2256
+ msgstr "Широкоформатный лайтбокс"
 
 
 
2257
 
2258
+ #: frontend/views/BWGViewGalleryBox.php:782 photo-gallery.php:1445
2259
+ msgid "Fullscreen"
2260
+ msgstr "Полноэкранный режим"
 
2261
 
2262
+ #: admin/views/Themes.php:3580
2263
+ msgid "Fullscreen close button color:"
2264
+ msgstr "Цвет кнопки закрытия полноэкранного режима:"
 
 
 
2265
 
2266
+ #: admin/controllers/Galleries.php:97 photo-gallery.php:1768
2267
+ msgid "Galleries"
2268
+ msgstr "Галереи"
 
 
2269
 
2270
+ #: admin/controllers/Albumsgalleries.php:50
2271
+ msgid "Galleries / Gallery groups"
2272
+ msgstr "Галереи / Группы галерей"
2273
 
2274
+ #: admin/views/Albums.php:323
2275
+ msgid "Galleries and Gallery Groups"
2276
+ msgstr "Галереи и Группы галереи"
 
 
2277
 
2278
+ #: admin/views/Widget.php:123 admin/views/WidgetSlideshow.php:86
2279
+ msgid "Galleries:"
2280
+ msgstr "Галереи:"
2281
 
2282
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:62
2283
+ #: admin/views/Shortcode.php:268 admin/views/Shortcode.php:346
2284
+ #: admin/views/Widget.php:119
2285
+ msgid "Gallery"
2286
+ msgstr "Галерея"
2287
 
2288
+ #: admin/views/Options.php:687
2289
+ msgid "Gallery autoupdate interval"
2290
+ msgstr "Интервал автообновления галереи"
2291
 
2292
+ #: admin/views/Galleries.php:405
2293
+ msgid "Gallery autoupdate option"
2294
+ msgstr "Параметры автообновления галереи"
2295
 
2296
+ #: admin/views/Galleries.php:372
2297
+ msgid "Gallery content type"
2298
+ msgstr "Тип содержимого галереи"
 
 
2299
 
2300
+ #: admin/views/Albumsgalleries.php:120 admin/views/Shortcode.php:65
2301
+ #: admin/views/Shortcode.php:346
2302
+ msgid "Gallery group"
2303
+ msgstr "Группа галереи"
2304
 
2305
+ #: admin/views/Shortcode.php:283
2306
+ msgid "Gallery Group"
2307
+ msgstr "Группа галереи"
2308
 
2309
+ #: admin/views/Options.php:786
2310
+ msgid "Gallery group restrictions"
2311
+ msgstr "Ограничения для групп галереи"
2312
 
2313
+ #: admin/views/Options.php:2697 admin/views/Options.php:3230
2314
+ msgid "Gallery group thumbnail dimensions"
2315
+ msgstr "Размеры миниатюр группы галереи"
2316
 
2317
+ #: admin/views/Options.php:2994
2318
+ msgid "Gallery group thumbnail width"
2319
+ msgstr "Размер миниатюры группы галереи"
2320
 
2321
+ #: admin/views/Albums.php:194
2322
+ msgid "Gallery Group Title"
2323
+ msgstr "Название группы галереи"
 
 
2324
 
2325
+ #: admin/views/Widget.php:120
2326
+ msgid "Gallery groups"
2327
+ msgstr "Группы галерей"
2328
 
2329
+ #: admin/controllers/Albums.php:95 photo-gallery.php:484
2330
+ msgid "Gallery Groups"
2331
+ msgstr "Группы галерей"
2332
 
2333
+ #: admin/views/Options.php:2741 admin/views/Options.php:3036
2334
+ #: admin/views/Options.php:3274
2335
+ msgid "Gallery groups per page"
2336
+ msgstr "Группы галерей на страницу"
2337
 
2338
+ #: admin/views/Widget.php:144
2339
+ msgid "Gallery Groups:"
2340
+ msgstr "Группы галерей:"
2341
 
2342
+ #: admin/views/Options.php:775
2343
+ msgid "Gallery role restrictions"
2344
+ msgstr "Ограничения роли в галерее"
2345
 
2346
+ #: photo-gallery.php:1798
2347
+ msgid "Gallery tags"
2348
+ msgstr "Метки галереи"
2349
 
2350
+ #: framework/WDWLibrary.php:2398
2351
+ msgid "Gallery Tags"
2352
+ msgstr "Метки галереи"
2353
 
2354
+ #: admin/views/Galleries.php:238
2355
+ msgid "Gallery title"
2356
+ msgstr "Название галереи"
 
 
2357
 
2358
+ #: admin/views/Themes.php:664 admin/views/Themes.php:939
2359
+ #: admin/views/Themes.php:1207 admin/views/Themes.php:1893
2360
+ #: admin/views/Themes.php:2221 admin/views/Themes.php:2783
2361
+ #: admin/views/Themes.php:3077 admin/views/Themes.php:3346
2362
+ #: admin/views/Themes.php:4763
2363
+ msgid "Gallery title alignment:"
2364
+ msgstr "Выравнивание названия галереи:"
2365
 
2366
+ #: admin/views/Themes.php:650 admin/views/Themes.php:925
2367
+ #: admin/views/Themes.php:1193 admin/views/Themes.php:1879
2368
+ #: admin/views/Themes.php:2207 admin/views/Themes.php:2769
2369
+ #: admin/views/Themes.php:3063 admin/views/Themes.php:3332
2370
+ #: admin/views/Themes.php:4749
2371
+ msgid "Gallery title/description box shadow:"
2372
+ msgstr "Тень окна названия/описания галереи:"
2373
 
2374
+ #: admin/views/Themes.php:626 admin/views/Themes.php:901
2375
+ #: admin/views/Themes.php:1169 admin/views/Themes.php:1855
2376
+ #: admin/views/Themes.php:2183 admin/views/Themes.php:2745
2377
+ #: admin/views/Themes.php:3039 admin/views/Themes.php:3308
2378
+ #: admin/views/Themes.php:4725
2379
+ msgid "Gallery title/description font color:"
2380
+ msgstr "Цвет шрифта названия/описания галереи:"
2381
 
2382
+ #: admin/views/Themes.php:633 admin/views/Themes.php:908
2383
+ #: admin/views/Themes.php:1176 admin/views/Themes.php:1862
2384
+ #: admin/views/Themes.php:2190 admin/views/Themes.php:2752
2385
+ #: admin/views/Themes.php:3046 admin/views/Themes.php:3315
2386
+ #: admin/views/Themes.php:4732
2387
+ msgid "Gallery title/description font family:"
2388
+ msgstr "Семейство шрифтов названия/описания галереи:"
2389
 
2390
+ #: admin/views/Themes.php:619 admin/views/Themes.php:895
2391
+ #: admin/views/Themes.php:1163 admin/views/Themes.php:1848
2392
+ #: admin/views/Themes.php:2177 admin/views/Themes.php:2739
2393
+ #: admin/views/Themes.php:3033 admin/views/Themes.php:3301
2394
+ #: admin/views/Themes.php:4718
2395
+ msgid "Gallery title/description font size:"
2396
+ msgstr "Размер шрифта названия/описания галереи:"
2397
 
2398
+ #: admin/views/Themes.php:636 admin/views/Themes.php:911
2399
+ #: admin/views/Themes.php:1179 admin/views/Themes.php:1865
2400
+ #: admin/views/Themes.php:2193 admin/views/Themes.php:2755
2401
+ #: admin/views/Themes.php:3049 admin/views/Themes.php:3318
2402
+ #: admin/views/Themes.php:4735
2403
+ msgid "Gallery title/description font weight:"
2404
+ msgstr "Толщина шрифта названия/описания галереи:"
2405
 
2406
+ #: admin/views/Themes.php:657 admin/views/Themes.php:932
2407
+ #: admin/views/Themes.php:1200 admin/views/Themes.php:1886
2408
+ #: admin/views/Themes.php:2214 admin/views/Themes.php:2776
2409
+ #: admin/views/Themes.php:3070 admin/views/Themes.php:3339
2410
+ #: admin/views/Themes.php:4756
2411
+ msgid "Gallery title/description margin:"
2412
+ msgstr "Внешний отступ названия/описания галереи:"
2413
 
2414
+ #: admin/views/Galleries.php:388
2415
+ msgid "Gallery type cannot be changed, as it is not empty. If you would like to show images from another source, please create a new gallery."
2416
+ msgstr "Тип галереи не может быть изменен, так как она не пуста. Если вы хотите показать изображения из другого источника, создайте новую галерею."
 
 
2417
 
2418
+ #: photo-gallery.php:637
2419
+ msgid "Gallery type cannot be changed, since it is not empty. In case you would like to have Instagram gallery, please create a new one."
2420
+ msgstr "Тип галереи нельзя изменить, так как она не пуста. Если вы хотите иметь галерею Instagram, создайте новую."
 
2421
 
2422
+ #: admin/views/Widget.php:136
2423
+ msgid "Gallery Type:"
2424
+ msgstr "Тип галереи:"
 
 
2425
 
2426
+ #: admin/views/Options.php:2879 admin/views/Options.php:3411
2427
+ msgid "Gallery view type"
2428
+ msgstr "Тип просмотра галереи"
 
 
2429
 
2430
+ #: admin/views/Options.php:89
2431
+ msgid "Gallery views"
2432
+ msgstr "Просмотры галереи"
 
 
2433
 
2434
+ #: admin/controllers/elementorWidget.php:68 admin/views/Options.php:83
2435
+ #: photo-gallery.php:437
2436
+ msgid "General"
2437
+ msgstr "Основные"
2438
 
2439
+ #: photo-gallery.php:1682
2440
+ msgid "General Parameters"
2441
+ msgstr "Основные параметры"
 
 
2442
 
2443
+ #: admin/views/Shortcode.php:548 admin/views/Shortcode.php:632
2444
+ msgid "Generate"
2445
+ msgstr "Сгенерировать"
 
2446
 
2447
+ #: admin/views/Options.php:379
2448
+ msgid "Generate or edit Photo Gallery shortcodes that are used to publish galleries or gallery groups."
2449
+ msgstr "Создавайте или редактируйте шорткоды фотогалереи, которые используются для публикации галерей или групп галерей."
 
 
2450
 
2451
+ #: admin/views/Options.php:373 admin/views/Options.php:376
2452
+ #: photo-gallery.php:511
2453
+ msgid "Generate Shortcode"
2454
+ msgstr "Генерация шорткода"
2455
 
2456
+ #: admin/views/Options.php:181
2457
+ msgid "Generated thumbnail dimensions"
2458
+ msgstr "Размеры создаваемых миниатюр"
 
 
2459
 
2460
+ #: photo-gallery.php:1663
2461
+ msgid "Generating Shortcode"
2462
+ msgstr "Генерация шорткода"
 
2463
 
2464
+ #: wd/templates/display_overview.php:73 wd/templates/display_overview.php:121
2465
+ msgid "Get free for 14 days"
2466
+ msgstr "Получите бесплатно в течение 14 дней"
2467
 
2468
+ #: framework/WDWLibrary.php:2811
2469
+ msgid "Get more stunning views with fully customizable themes, powerful lightbox and much more."
2470
+ msgstr "Получите еще больше потрясающих видов благодаря полностью настраиваемым темам, мощному лайтбоксу и многому другому."
 
 
2471
 
2472
+ #: wd/templates/display_overview.php:10 wd/templates/display_overview.php:119
2473
+ msgid "Get Premium %s and Other Solutions Essential for Your WordPress Site."
2474
+ msgstr "Получите премиальные%s и другие решения, необходимые для вашего сайта WordPress."
2475
 
2476
+ #: addons/addons.php:65
2477
+ msgid "GET THIS ADD ON"
2478
+ msgstr "ПОЛУЧИТЕ ЭТО ДОПОЛНЕНИЕ"
 
2479
 
2480
+ #: photo-gallery.php:1567
2481
+ msgid "Global Options"
2482
+ msgstr "Глобальные параметры"
 
 
2483
 
2484
+ #: admin/controllers/Options.php:51 photo-gallery.php:489
2485
+ msgid "Global Settings"
2486
+ msgstr "Глобальные настройки"
2487
 
2488
+ #: admin/views/Options.php:830
2489
+ msgid "Global settings permission"
2490
+ msgstr "Разрешение глобальных настроек"
2491
 
2492
+ #: frontend/views/view.php:816
2493
+ msgid "Go to the first page"
2494
+ msgstr "Перейти к первой странице"
 
 
2495
 
2496
+ #: frontend/views/view.php:828
2497
+ msgid "Go to the last page"
2498
+ msgstr "Перейти к последней странице"
 
 
2499
 
2500
+ #: frontend/views/view.php:827
2501
+ msgid "Go to the next page"
2502
+ msgstr "Перейти на следующую страницу"
2503
 
2504
+ #: frontend/views/view.php:817
2505
+ msgid "Go to the previous page"
2506
+ msgstr "Перейти на предыдущую страницу"
 
2507
 
2508
+ #: admin/views/Options.php:945 admin/views/Shortcode.php:430
2509
+ #: admin/views/Themes.php:305
2510
+ msgid "Google fonts"
2511
+ msgstr "Шрифты Google"
2512
 
2513
+ #: admin/views/Editimage.php:810
2514
+ msgid "Grayscale"
2515
+ msgstr "Оттенки серого"
 
 
2516
 
2517
+ #: framework/howto/data.php:45
2518
+ msgid "Great, you've added a gallery widget to your site. You can always go back to the widgets page on your dashboard to edit or delete the Photo Gallery Widget or add a new one."
2519
+ msgstr "Отлично, вы добавили виджет галереи на свой сайт. Вы всегда можете вернуться на страницу виджетов на панели управления, чтобы отредактировать или удалить виджет фотогалереи или добавить новый."
 
 
2520
 
2521
+ #: admin/controllers/Themes.php:264
2522
+ msgid "Groove"
2523
+ msgstr "Выпуклость"
2524
 
2525
+ #: admin/views/Options.php:95
2526
+ msgid "Group of gallery views"
2527
+ msgstr "Группа просмотров галереи"
 
 
2528
 
2529
+ #: framework/howto/data.php:57
2530
+ msgid "Head to the page/post you want to insert a gallery in. In the Gutenberg editor, click “add block” then click the Photo Gallery button."
2531
+ msgstr "Перейдите на страницу/запись, в который вы хотите вставить галерею. В редакторе Gutenberg нажмите \"добавить блок\", затем нажмите кнопку Photo Gallery."
 
 
2532
 
2533
+ #: admin/controllers/Themes.php:323
2534
+ msgid "Heart"
2535
+ msgstr "Сердце"
2536
 
2537
+ #: photo-gallery.php:289
2538
+ msgid "Help"
2539
+ msgstr "Помощь"
2540
 
2541
+ #: admin/views/Options.php:3861 admin/views/Shortcode.php:336
2542
+ msgid "here"
2543
+ msgstr "здесь"
2544
 
2545
+ #: admin/views/LibSubscribe.php:12
2546
+ msgid "Hey! I know how hard and time-consuming creating a well-structured gallery can be."
2547
+ msgstr "Привет! Я знаю, насколько сложным и трудоемким может быть создание хорошо структурированной галереи."
2548
 
2549
+ #: wd/templates/display_subscribe.php:5
2550
+ msgid "Hi there!"
2551
+ msgstr "Привет!"
 
2552
 
2553
+ #: frontend/views/BWGViewAlbum_extended_preview.php:161
2554
+ msgid "Hide"
2555
+ msgstr "Скрыть"
2556
 
2557
+ #: frontend/views/BWGViewGalleryBox.php:1018 photo-gallery.php:1442
2558
+ msgid "Hide Comments"
2559
+ msgstr "Скрыть комментарии"
 
 
2560
 
2561
+ #: frontend/views/BWGViewGalleryBox.php:1105 photo-gallery.php:1440
2562
+ msgid "Hide Ecommerce"
2563
+ msgstr "Скрыть электронную торговлю"
 
 
2564
 
2565
+ #: photo-gallery.php:1456
2566
+ msgid "Hide info"
2567
+ msgstr "Скрыть информацию"
 
 
2568
 
2569
+ #: photo-gallery.php:643
2570
+ msgid "Hide order column"
2571
+ msgstr "Скрыть колонку упорядочения"
2572
 
2573
+ #: photo-gallery.php:1458
2574
+ msgid "Hide rating"
2575
+ msgstr "Скрыть рейтинг"
 
 
2576
 
2577
+ #: admin/views/Themes.php:3863
2578
+ msgid "Hit counter alignment:"
2579
+ msgstr "Выравнивание счетчика посещений:"
2580
 
2581
+ #: admin/views/Themes.php:3877
2582
+ msgid "Hit counter background color:"
2583
+ msgstr "Цвет фона счетчика посещений:"
 
 
2584
 
2585
+ #: admin/views/Themes.php:3883
2586
+ msgid "Hit counter background transparency:"
2587
+ msgstr "Прозрачность фона счетчика посещений:"
 
 
2588
 
2589
+ #: admin/views/Themes.php:3910
2590
+ msgid "Hit counter border color:"
2591
+ msgstr "Цвет рамки счетчика посещений:"
 
 
2592
 
2593
+ #: admin/views/Themes.php:3916
2594
+ msgid "Hit counter border radius:"
2595
+ msgstr "Радиус рамки счетчика посещений:"
2596
 
2597
+ #: admin/views/Themes.php:3896
2598
+ msgid "Hit counter border style:"
2599
+ msgstr "Стиль рамки счетчика посещений:"
 
2600
 
2601
+ #: admin/views/Themes.php:3890
2602
+ msgid "Hit counter border width:"
2603
+ msgstr "Ширина рамки счетчика посещений:"
2604
 
2605
+ #: admin/views/Themes.php:3937
2606
+ msgid "Hit counter font color:"
2607
+ msgstr "Цвет шрифта счетчика посещений:"
2608
 
2609
+ #: admin/views/Themes.php:3944
2610
+ msgid "Hit counter font family:"
2611
+ msgstr "Семейство шрифтов счетчика посещений:"
2612
 
2613
+ #: admin/views/Themes.php:3961
2614
+ msgid "Hit counter font size:"
2615
+ msgstr "Размер шрифта счетчика посещений:"
2616
 
2617
+ #: admin/views/Themes.php:3947
2618
+ msgid "Hit counter font weight:"
2619
+ msgstr "Толщина шрифта счетчика посещений:"
2620
 
2621
+ #: admin/views/Themes.php:3930
2622
+ msgid "Hit counter margin:"
2623
+ msgstr "Внешний отступ счетчика посещений:"
 
 
2624
 
2625
+ #: admin/views/Themes.php:3923
2626
+ msgid "Hit counter padding:"
2627
+ msgstr "Внутренний отступ счетчика посещений:"
2628
 
2629
+ #: admin/views/Themes.php:3854
2630
+ msgid "Hit counter position:"
2631
+ msgstr "Позиция счетчика посещений:"
2632
 
2633
+ #: frontend/views/BWGViewGalleryBox.php:873
2634
+ msgid "Hits: "
2635
+ msgstr "Посещения: "
2636
 
2637
+ #: admin/views/Options.php:1714 admin/views/Options.php:2898
2638
+ #: admin/views/Options.php:3430
2639
+ msgid "Horizontal"
2640
+ msgstr "Горизонтально"
2641
 
2642
+ #: wd/templates/display_overview.php:68
2643
+ msgid "Hosting"
2644
+ msgstr "Хостинг"
 
2645
 
2646
+ #: admin/views/Options.php:690
2647
+ msgid "hour"
2648
+ msgstr "час"
2649
 
2650
+ #: admin/views/Themes.php:458 admin/views/Themes.php:755
2651
+ #: admin/views/Themes.php:1030 admin/views/Themes.php:1998
2652
+ #: admin/views/Themes.php:2345 admin/views/Themes.php:2875
2653
+ msgid "Hover effect value:"
2654
+ msgstr "Значение эффекта при наведении:"
2655
 
2656
+ #: admin/views/Themes.php:444 admin/views/Themes.php:741
2657
+ #: admin/views/Themes.php:1016 admin/views/Themes.php:1984
2658
+ #: admin/views/Themes.php:2861
2659
+ msgid "Hover effect:"
2660
+ msgstr "Эффект при наведении:"
2661
 
2662
+ #: framework/howto/howto.php:346 framework/howto/howto.php:364
2663
+ msgid "How to ..."
2664
+ msgstr "Как..."
2665
 
2666
+ #: framework/howto/data.php:52
2667
+ msgid "How to insert a shortcode in Gutenberg?"
2668
+ msgstr "Как вставить шорткод в Gutenberg?"
2669
 
2670
+ #: framework/howto/data.php:4
2671
+ msgid "How to insert Photo Gallery (shortcode) ?"
2672
+ msgstr "Как вставить фотогалерею (шорткод)?"
2673
 
2674
+ #: framework/howto/data.php:28
2675
+ msgid "How to insert Photo Gallery as widget ?"
2676
+ msgstr "Как вставить фотогалерею в качестве виджета?"
2677
 
2678
+ #: admin/controllers/Options.php:251 framework/WDWLibrary.php:236
2679
+ msgid "http:// wrapper is disabled in the server configuration by allow_url_fopen=0."
2680
+ msgstr "Обертка http:// отключена в конфигурации сервера с помощью параметра allow_url_fopen=0."
 
 
2681
 
2682
+ #. Author URI of the plugin
2683
+ msgid "https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin"
2684
+ msgstr "https://10web.io/plugins/?utm_source=photo_gallery&utm_medium=free_plugin"
2685
 
2686
+ #. Plugin URI of the plugin
2687
+ msgid "https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin"
2688
+ msgstr "https://10web.io/plugins/wordpress-photo-gallery/?utm_source=photo_gallery&utm_medium=free_plugin"
 
 
 
2689
 
2690
+ #: admin/views/Themes.php:2402
2691
+ msgid "humbnail div border style:"
2692
+ msgstr "стиль рамки div миниатюры:"
2693
 
2694
+ #: frontend/views/BWGViewGalleryBox.php:1058
2695
+ msgid "I consent collecting this data and processing it according to %s of this website."
2696
+ msgstr "Я даю согласие на сбор этих данных и их обработку в соответствии с %s этого сайта."
 
 
2697
 
2698
+ #: wd/includes/notices.php:211
2699
+ msgid "I've already left a review"
2700
+ msgstr "Я уже оставил свой отзыв"
2701
 
2702
+ #: admin/views/Options.php:329
2703
+ msgid "If this option is disabled, Google fonts will not be included in your pages."
2704
+ msgstr "Если этот параметр отключен, шрифты Google не будут включены на ваши страницы."
2705
 
2706
+ #: admin/views/Options.php:319
2707
+ msgid "If this option is enabled, CSS and Javascript files of Photo Gallery will only load on pages with galleries and gallery groups."
2708
+ msgstr "Если этот параметр включен, файлы CSS и Javascript фотогалереи будут загружаться только на страницы с галереями и группами галерей."
2709
 
2710
+ #: admin/views/Options.php:348
2711
+ msgid "If this option is enabled, some IDs will be added after the image extension to enable CDN to serve those images."
2712
+ msgstr "Если этот параметр включен, некоторые ID будут добавлены после расширения изображения, чтобы позволить CDN обслуживать эти изображения."
2713
 
2714
+ #: admin/views/Options.php:227
2715
+ msgid "If this setting is enabled, Photo Gallery loads a specific number of images before opening lightbox. This lets you showcase images without loading delays, providing better user experience."
2716
+ msgstr "Если эти настройки включены, фотогалерея загружает определенное количество изображений перед открытием лайтбокса. Это позволяет демонстрировать изображения без задержек загрузки, обеспечивая лучший пользовательский опыт."
 
 
2717
 
2718
+ #: admin/views/Options.php:1727 admin/views/Options.php:2911
2719
+ #: admin/views/Options.php:3443
2720
+ msgid "If this setting is enabled, Photo Gallery resizes all thumbnail images on Mosaic galleries, without modifying their initial display."
2721
+ msgstr "Если эти настройки включены, фотогалерея изменяет размер всех уменьшенных изображений в галереях Мозаика, не изменяя их первоначального отображения."
2722
 
2723
+ #: admin/views/Shortcode.php:550
2724
+ msgid "If you would like to edit an existing shortcode, use this dropdown box to select it."
2725
+ msgstr "Если вы хотите отредактировать существующий шорткод, выберите его в этом раскрывающемся списке."
 
 
2726
 
2727
+ #: admin/views/Galleries.php:697 admin/views/Options.php:860
2728
+ #: admin/views/Options.php:1020 admin/views/Shortcode.php:384
2729
+ #: admin/views/WidgetTags.php:84
2730
+ msgid "Image"
2731
+ msgstr "Изображение"
2732
 
2733
+ #: admin/views/Themes.php:4639
2734
+ msgid "Image border color:"
2735
+ msgstr "Цвет рамки изображения:"
 
 
 
 
2736
 
2737
+ #: admin/views/Themes.php:4624
2738
+ msgid "Image border style:"
2739
+ msgstr "Стиль рамки изображения:"
 
 
2740
 
2741
+ #: admin/views/Themes.php:4617
2742
+ msgid "Image border width:"
2743
+ msgstr "Ширина рамки изображения:"
 
 
 
2744
 
2745
+ #: admin/controllers/Themes.php:247
2746
+ msgid "Image browser"
2747
+ msgstr "Браузер изображений"
 
 
 
2748
 
2749
+ #: admin/controllers/Options.php:60 admin/controllers/Shortcode.php:44
2750
+ #: admin/views/Galleries.php:209 admin/views/Options.php:479
2751
+ #: admin/views/Options.php:2885 admin/views/Options.php:3417
2752
+ #: admin/views/Shortcode.php:119 photo-gallery.php:1629
2753
+ msgid "Image Browser"
2754
+ msgstr "Браузер изображений"
2755
 
2756
+ #: admin/views/Options.php:151 admin/views/Options.php:3524
2757
+ msgid "Image click action"
2758
+ msgstr "Действие при нажатии на изображение"
 
 
 
 
2759
 
2760
+ #: admin/views/Licensing.php:28
2761
+ msgid "Image Commenting"
2762
+ msgstr "Комментирование изображения"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2763
 
2764
+ #: admin/views/Options.php:171 admin/views/Options.php:2519
2765
+ msgid "Image dimensions"
2766
+ msgstr "Размеры изображения"
2767
 
2768
+ #: admin/views/Licensing.php:22
2769
+ msgid "Image Download"
2770
+ msgstr "Загрузка изображения"
 
 
2771
 
2772
+ #: admin/views/Galleries.php:788 admin/views/Galleries.php:789
2773
+ #: admin/views/Options.php:186 admin/views/Options.php:1143
2774
+ #: admin/views/Options.php:1146
2775
+ msgid "Image edit functionality is not supported by your web host."
2776
+ msgstr "Функции редактирования изображений не поддерживаются вашим веб-узлом."
2777
 
2778
+ #: photo-gallery.php:427
2779
+ msgid "Image edit functionality is not supported by your web host. We highly recommend you to contact your hosting provider and ask them to enable %s library."
2780
+ msgstr "Функция редактирования изображений не поддерживается веб-узлом. Мы настоятельно рекомендуем вам связаться с вашим хостинг-провайдером и попросить его включить библиотеку %s."
2781
 
2782
+ #: photo-gallery.php:437
2783
+ msgid "Image edit functionality was just activated on your web host. Please go to %s, navigate to %s tab and press %s button."
2784
+ msgstr "Функция редактирования изображений была только что активирована на веб-узле. Перейдите на сайт %s, перейдите на вкладку %s и нажмите кнопку %s."
 
2785
 
2786
+ #: admin/views/Options.php:3550
2787
+ msgid "Image lightbox will appear full-width if this setting is activated."
2788
+ msgstr "Лайтбокс изображений будет отображаться во всю ширину, если активирована эта настройка."
 
 
2789
 
2790
+ #: filemanager/view.php:240
2791
+ msgid "Image Max Dimensions:"
2792
+ msgstr "Макс. размеры изображения:"
 
2793
 
2794
+ #: wd/templates/display_overview.php:62
2795
+ msgid "Image optimization"
2796
+ msgstr "Оптимизация изображения"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2797
 
2798
+ #: photo-gallery.php:1595
2799
+ msgid "Image Options"
2800
+ msgstr "Параметры изображения"
 
2801
 
2802
+ #: admin/views/Options.php:193
2803
+ msgid "Image quality"
2804
+ msgstr "Качество изображения"
 
2805
 
2806
+ #: admin/views/Options.php:797
2807
+ msgid "Image role restrictions"
2808
+ msgstr "Ограничения по изображениям для каждой роли"
 
 
 
2809
 
2810
+ #: admin/views/Licensing.php:29
2811
+ msgid "Image Social Sharing"
2812
+ msgstr "Обмен в соцсетях изображениями"
 
2813
 
2814
+ #: admin/views/Shortcode.php:2278
2815
+ msgid "Image thumbnail height"
2816
+ msgstr "Высота миниатюры изображения"
 
 
 
 
2817
 
2818
+ #: admin/views/Shortcode.php:2276
2819
+ msgid "Image thumbnail width "
2820
+ msgstr "Ширина миниатюры изображения "
 
 
 
 
2821
 
2822
+ #: admin/views/Options.php:2190 admin/views/Options.php:2330
2823
+ msgid "Image width"
2824
+ msgstr "Ширина изображения"
 
 
 
2825
 
2826
+ #: filemanager/view.php:241
2827
+ msgid "Image:"
2828
+ msgstr "Изображение:"
 
 
 
2829
 
2830
+ #: admin/views/Galleries.php:65 admin/views/Galleries.php:130
2831
+ msgid "Images count"
2832
+ msgstr "Количество изображений"
 
 
2833
 
2834
+ #: admin/views/Options.php:138
2835
+ msgid "Images directory"
2836
+ msgstr "Каталог изображений"
 
 
 
2837
 
2838
+ #: admin/views/Options.php:1316 admin/views/Options.php:1542
2839
+ #: admin/views/Options.php:1776 admin/views/Options.php:2366
2840
+ msgid "Images per load"
2841
+ msgstr "Изображения на загрузку"
 
 
2842
 
2843
+ #: admin/views/Options.php:1307 admin/views/Options.php:1533
2844
+ #: admin/views/Options.php:1767 admin/views/Options.php:2356
2845
+ #: admin/views/Options.php:2750 admin/views/Options.php:3045
2846
+ #: admin/views/Options.php:3283
2847
+ msgid "Images per page"
2848
+ msgstr "Изображений на странице"
2849
 
2850
+ #: admin/views/Galleries.php:457
2851
+ msgid "Import from Media Library"
2852
+ msgstr "Импорт из библиотеки файлов"
 
 
2853
 
2854
+ #: wd/templates/display_overview.php:51
2855
+ msgid "Improve search rankings of your WordPress site with a comprehensive search engine optimization solution."
2856
+ msgstr "Улучшите поисковые рейтинги вашего WordPress сайта с помощью комплексного решения по поисковой оптимизации."
 
 
 
2857
 
2858
+ #: framework/howto/data.php:15
2859
+ msgid "In the pop-up, choose gallery view type, gallery, theme and configure other options for your gallery. Click Insert into post button to add the gallery to the post/page."
2860
+ msgstr "Во всплывающем окне выберите тип представления галереи, галерею, тему и настройте другие параметры для вашей галереи. Нажмите кнопку Вставить в запись, чтобы добавить галерею в запись/страницу."
 
 
 
2861
 
2862
+ #: framework/howto/data.php:89
2863
+ msgid "In your dashboard navigation go to Appearance > Editor. Choose the specific section you want the gallery to appear and paste the PHP code you copied in that section. Press Update File button to save the changes in the code."
2864
+ msgstr панели управления WordPress перейдите в раздел Внешний вид > Редактор. Выберите раздел, в котором должна появиться галерея, и вставьте скопированный PHP-код в этот раздел. Нажмите кнопку Обновить файл, чтобы сохранить изменения в коде."
 
 
 
2865
 
2866
+ #: framework/howto/data.php:33
2867
+ msgid "In your WordPress dashboard go to Appearance > Widgets. Find Photo Gallery Widget in the list, click and choose the area you want to display the gallery and click \"Add Widget button\"."
2868
+ msgstr панели управления WordPress перейдите в раздел Внешний вид > Виджеты. Найдите виджет Photo Gallery в списке, щелкните и выберите область, в которой вы хотите отобразить галерею, и нажмите кнопку Добавить виджет."
 
 
 
2869
 
2870
+ #: admin/views/Options.php:314
2871
+ msgid "Include styles/scripts on gallery pages only"
2872
+ msgstr "Включать стили/скрипты только на страницы галереи"
 
 
 
2873
 
2874
+ #: frontend/controllers/BWGControllerGalleryBox.php:106
2875
+ msgid "Incorrect Security code."
2876
+ msgstr "Неверный код безопасности."
 
 
 
2877
 
2878
+ #: admin/views/Themes.php:3987
2879
+ msgid "Info alignment:"
2880
+ msgstr "Выравнивание информации:"
 
 
 
 
 
2881
 
2882
+ #: admin/views/Themes.php:4001
2883
+ msgid "Info background color:"
2884
+ msgstr "Цвет фона информации:"
 
 
2885
 
2886
+ #: admin/views/Themes.php:4007
2887
+ msgid "Info background transparency:"
2888
+ msgstr "Прозрачность фона информации:"
2889
 
2890
+ #: admin/views/Themes.php:4034
2891
+ msgid "Info border color:"
2892
+ msgstr "Цвет рамки информации:"
2893
 
2894
+ #: admin/views/Themes.php:4040
2895
+ msgid "Info border radius:"
2896
+ msgstr "Радиус рамки информации:"
 
 
2897
 
2898
+ #: admin/views/Themes.php:4020
2899
+ msgid "Info border style:"
2900
+ msgstr "Стиль рамки информации:"
 
2901
 
2902
+ #: admin/views/Themes.php:4014
2903
+ msgid "Info border width:"
2904
+ msgstr "Ширина рамки информации:"
 
2905
 
2906
+ #: admin/views/Themes.php:4054
2907
+ msgid "Info margin:"
2908
+ msgstr "Внешний отступ информации:"
 
2909
 
2910
+ #: admin/views/Themes.php:4047
2911
+ msgid "Info padding:"
2912
+ msgstr "Внутренний отступ информации:"
 
 
2913
 
2914
+ #: admin/views/Themes.php:3978
2915
+ msgid "Info position:"
2916
+ msgstr "Позиция информации:"
 
2917
 
2918
+ #: photo-gallery.php:660
2919
+ msgid "Insert"
2920
+ msgstr "Вставить"
2921
 
2922
+ #: framework/howto/howto.php:419
2923
+ msgid "Insert Gallery Group To"
2924
+ msgstr "Вставить группу галереи в"
 
2925
 
2926
+ #: framework/howto/howto.php:419
2927
+ msgid "Insert Gallery To"
2928
+ msgstr "Вставить галерею в"
2929
 
2930
+ #: admin/views/Shortcode.php:511
2931
+ msgid "Insert into post"
2932
+ msgstr "Вставить в запись"
2933
 
2934
+ #: photo-gallery.php:1029
2935
+ msgid "Insert Photo Gallery"
2936
+ msgstr "Вставить фотогалерею"
 
2937
 
2938
+ #: admin/controllers/Themes.php:266
2939
+ msgid "Inset"
2940
+ msgstr "Вставка"
 
2941
 
2942
+ #: admin/views/Options.php:700
2943
+ msgid "Instagram"
2944
+ msgstr "Instagram"
 
2945
 
2946
+ #: admin/views/Galleries.php:398
2947
+ msgid "Instagram embed type"
2948
+ msgstr "Тип встраивания Instagram"
 
2949
 
2950
+ #: photo-gallery.php:1547
2951
+ msgid "Instagram Gallery"
2952
+ msgstr "Галерея Instagram"
 
2953
 
2954
+ #: admin/views/Licensing.php:31
2955
+ msgid "Instagram Integration"
2956
+ msgstr "Интеграция с Instagram"
 
2957
 
2958
+ #: admin/controllers/Galleries.php:377
2959
+ msgid "Instagram only"
2960
+ msgstr "Только Instagram"
 
2961
 
2962
+ #: photo-gallery.php:636
2963
+ msgid "Instagram recent post number must be between 1 and 25."
2964
+ msgstr "Количество свежих публикаций Instagram должно быть от 1 до 25."
 
2965
 
2966
+ #: admin/views/Licensing.php:83
2967
+ msgid "Install the downloaded commercial version of the plugin."
2968
+ msgstr "Установите загруженную коммерческую версию плагина."
2969
 
2970
+ #: photo-gallery.php:1538
2971
+ msgid "Installing"
2972
+ msgstr "Установка"
2973
 
2974
+ #: admin/views/Licensing.php:32
2975
+ msgid "Integration"
2976
+ msgstr "Интеграция"
2977
 
2978
+ #: admin/controllers/Options.php:210
2979
+ msgid "Item Succesfully Saved."
2980
+ msgstr "Элемент успешно сохранен."
2981
 
2982
+ #: framework/WDWLibrary.php:99
2983
+ msgid "Item successfully deleted."
2984
+ msgstr "Элемент успешно удален."
2985
 
2986
+ #: photo-gallery.php:650
2987
+ msgid "Item Successfully Deleted."
2988
+ msgstr "Элемент успешно удален."
2989
 
2990
+ #: framework/WDWLibrary.php:147
2991
+ msgid "Item successfully duplicated."
2992
+ msgstr "Элемент успешно дублирован."
2993
 
2994
+ #: framework/WDWLibrary.php:135
2995
+ msgid "Item successfully published."
2996
+ msgstr "Элемент успешно опубликован."
2997
 
2998
+ #: photo-gallery.php:648
2999
+ msgid "Item Successfully Published."
3000
+ msgstr "Элемент успешно опубликован."
3001
 
3002
+ #: photo-gallery.php:647
3003
+ msgid "Item Successfully Recovered."
3004
+ msgstr "Элемент успешно восстановлен."
3005
 
3006
+ #: framework/WDWLibrary.php:87
3007
+ msgid "Item successfully saved."
3008
+ msgstr "Элемент успешно сохранен."
3009
 
3010
+ #: framework/WDWLibrary.php:141
3011
+ msgid "Item successfully unpublished."
3012
+ msgstr "Элемент успешно не опубликован."
3013
 
3014
+ #: photo-gallery.php:649
3015
+ msgid "Item Successfully Unpublished."
3016
+ msgstr "Элемент успешно не опубликован."
3017
 
3018
+ #: frontend/views/BWGViewGalleryBox.php:1114
3019
+ msgid "items"
3020
+ msgstr "элементы"
3021
 
3022
+ #: framework/WDWLibrary.php:111
3023
+ msgid "Items successfully deleted."
3024
+ msgstr "Элементы успешно удалены."
3025
 
3026
+ #: framework/WDWLibrary.php:226
3027
+ msgid "Items successfully edited."
3028
+ msgstr "Элементы успешно изменены."
3029
 
3030
+ #: framework/WDWLibrary.php:216
3031
+ msgid "Items successfully recreated."
3032
+ msgstr "Элементы успешно воссозданы."
3033
 
3034
+ #: photo-gallery.php:654
3035
+ msgid "Items Successfully Reset."
3036
+ msgstr "Элементы успешно сброшены."
3037
 
3038
+ #: framework/WDWLibrary.php:221
3039
+ msgid "Items successfully resized."
3040
+ msgstr "Размер элементов успешно изменен."
3041
 
3042
+ #: photo-gallery.php:652
3043
+ msgid "Items Successfully resized."
3044
+ msgstr "Размер элементов успешно изменен."
3045
 
3046
+ #: framework/WDWLibrary.php:211
3047
+ msgid "Items successfully rotated."
3048
+ msgstr "Предметы успешно повернуты."
3049
 
3050
+ #: photo-gallery.php:646
3051
+ msgid "Items Successfully Saved."
3052
+ msgstr "Элементы успешно сохранены."
3053
 
3054
+ #: framework/WDWLibrary.php:154
3055
+ msgid "Items successfully unpublished."
3056
+ msgstr "Элементы успешно не опубликованы."
3057
 
3058
+ #: framework/WDWLibrary.php:201
3059
+ msgid "Items were reset successfully."
3060
+ msgstr "Элементы успешно сброшены."
3061
 
3062
+ #: admin/controllers/WidgetSlideshow.php:55 admin/views/Options.php:1257
3063
+ msgid "Kaleidoscope"
3064
+ msgstr "Калейдоскоп"
3065
 
3066
+ #: admin/views/Editimage.php:300
3067
+ msgid "Keep aspect ratio"
3068
+ msgstr "Сохранять соотношение сторон"
3069
 
3070
+ #: admin/views/LibSubscribe.php:78
3071
+ msgid "Keep in mind that submitting this form will allow 10Web to store your name, email, and site URL. Being GDPR-compliant, we won’t ever share your info with third parties..."
3072
+ msgstr "Имейте в виду, что отправка этой формы позволит 10Web сохранить ваше имя, адрес электронной почты и URL-адрес сайта. В соответствии с GDPR мы никогда не передадим вашу информацию третьим лицам..."
3073
 
3074
+ #: admin/views/Widget.php:160 frontend/views/view.php:797
3075
+ msgid "Last"
3076
+ msgstr "Последняя"
3077
 
3078
+ #: admin/views/AdminView.php:302
3079
+ msgid "Last page"
3080
+ msgstr "Последняя страница"
3081
 
3082
+ #: admin/views/Options.php:212
3083
+ msgid "Lazy load"
3084
+ msgstr "Отложенная загрузка"
3085
 
3086
+ #: wd/templates/display_overview.php:75 wd/templates/display_overview.php:96
3087
+ msgid "Learn More"
3088
+ msgstr "Узнать больше"
 
3089
 
3090
+ #: wd/includes/notices.php:208
3091
+ msgid "Leave A Review?"
3092
+ msgstr "Оставить отзыв?"
3093
 
3094
+ #: admin/views/Galleries.php:590
3095
+ msgid "Leave blank and click to \"Save changes\" to delete Alt/Titles."
3096
+ msgstr "Оставьте пустым и нажмите «Сохранить изменения», чтобы удалить Атрибут alt/Заголовки."
3097
 
3098
+ #: admin/views/Galleries.php:628
3099
+ msgid "Leave blank and click to \"Save changes\" to delete Descriptions."
3100
+ msgstr "Оставьте пустым и нажмите «Сохранить изменения», чтобы удалить описания."
3101
 
3102
+ #: admin/views/Galleries.php:609
3103
+ msgid "Leave blank and click to \"Save changes\" to delete Redirect URLs."
3104
+ msgstr "Оставьте пустым и нажмите «Сохранить изменения», чтобы удалить URL-адреса перенаправления."
3105
 
3106
+ #: admin/controllers/Themes.php:285 admin/views/Themes.php:1360
3107
+ #: admin/views/Themes.php:3704 admin/views/Themes.php:4132
3108
+ msgid "Left"
3109
+ msgstr "Слева"
3110
 
3111
+ #: admin/views/Options.php:3691
3112
+ msgid "Let users to leave comments on images by enabling comments section of lightbox."
3113
+ msgstr "Разрешите пользователям оставлять комментарии к изображениям, включив раздел комментариев в лайтбоксе."
3114
 
3115
+ #: admin/views/Options.php:3811
3116
+ msgid "Let users view original versions of your images by enabling this button."
3117
+ msgstr "Разрешите пользователям просматривать оригинальные версии ваших изображений, включив эту кнопку."
 
3118
 
3119
+ #: insert.php:137
3120
+ msgid "Light"
3121
+ msgstr "Светлая"
 
3122
 
3123
+ #: admin/controllers/Themes.php:252 admin/views/Options.php:101
3124
+ #: admin/views/WidgetTags.php:96 photo-gallery.php:1579 photo-gallery.php:1649
3125
+ msgid "Lightbox"
3126
+ msgstr "Лайтбокс"
3127
 
3128
+ #: admin/views/Options.php:3594
3129
+ msgid "Lightbox autoplay"
3130
+ msgstr "Автозапуск лайтбокса"
 
3131
 
3132
+ #: admin/views/Themes.php:3387
3133
+ msgid "Lightbox background color:"
3134
+ msgstr "Цвет фона лайтбокса:"
 
3135
 
3136
+ #: admin/views/Themes.php:3393
3137
+ msgid "Lightbox background transparency:"
3138
+ msgstr "Прозрачность фона лайтбокса:"
 
3139
 
3140
+ #: admin/views/Options.php:3555
3141
+ msgid "Lightbox dimensions"
3142
+ msgstr "Размеры лайтбокса"
3143
 
3144
+ #: admin/views/Options.php:3565
3145
+ msgid "Lightbox effect"
3146
+ msgstr "Эффект лайтбокса"
3147
 
3148
+ #: photo-gallery.php:1686
3149
+ msgid "Lightbox Parameters"
3150
+ msgstr "Параметры лайтбокса"
3151
 
3152
+ #: admin/controllers/Themes.php:291
3153
+ msgid "Lighter"
3154
+ msgstr "Тонкий"
3155
 
3156
+ #: addons/addons.php:22
3157
+ msgid "Link and display your Google Photos albums in one click."
3158
+ msgstr "Связывайте и отображайте свои альбомы Google Фото одним щелчком мыши."
 
3159
 
3160
+ #: wd/templates/display_subscribe.php:23
3161
+ msgid "List of plugins"
3162
+ msgstr "Список плагинов"
3163
 
3164
+ #: admin/views/Options.php:1296 admin/views/Options.php:1522
3165
+ #: admin/views/Options.php:1756 admin/views/Options.php:2344
3166
+ #: admin/views/Options.php:2730 admin/views/Options.php:3025
3167
+ #: admin/views/Options.php:3263
3168
+ msgid "Load More"
3169
+ msgstr "Загрузить ещё"
3170
 
3171
+ #: frontend/views/view.php:841
3172
+ msgid "Load More..."
3173
+ msgstr "Загрузить ещё..."
3174
 
3175
+ #: filemanager/view.php:97
3176
+ msgid "Make a directory"
3177
+ msgstr "Создать каталог"
3178
 
3179
+ #: wd/templates/display_overview.php:33
3180
+ msgid "Manage your WordPress websites all in one place within a single dashboard. No need to switch between sites."
3181
+ msgstr "Управляйте своими сайтами WordPress в одном месте с помощью единой панели управления. Нет необходимости переключаться между сайтами."
 
3182
 
3183
+ #: admin/views/Themes.php:1679 admin/views/Themes.php:2429
3184
+ #: admin/views/Themes.php:3132 admin/views/Themes.php:4383
3185
+ #: admin/views/Themes.php:4834
3186
+ msgid "Margin:"
3187
+ msgstr "Внешний отступ:"
3188
 
3189
+ #: admin/views/Options.php:996 admin/views/Shortcode.php:496
3190
+ msgid "Mark the position where the advertisement should appear on images."
3191
+ msgstr "Отметьте место, где рекламное объявление должна появляться на изображениях."
3192
 
3193
+ #: admin/views/Options.php:1149
3194
+ msgid "Mark the position where the watermark should appear on images."
3195
+ msgstr "Отметьте место, где водяной знак должен появиться на изображениях."
3196
 
3197
+ #: admin/views/Shortcode.php:336
3198
+ msgid "Mark this option to use default settings configured in Photo Gallery Options."
3199
+ msgstr "Установите этот флажок, чтобы использовать параметры по умолчанию, настроенные в Photo Gallery Options."
3200
 
3201
+ #: admin/controllers/Options.php:57 admin/controllers/Options.php:66
3202
+ #: admin/controllers/Shortcode.php:41 admin/controllers/Shortcode.php:50
3203
+ #: admin/controllers/Themes.php:244 admin/views/Albums.php:182
3204
+ #: admin/views/Galleries.php:197 admin/views/Options.php:443
3205
+ #: admin/views/Options.php:590 admin/views/Options.php:2882
3206
+ #: admin/views/Options.php:3414 admin/views/Shortcode.php:86
3207
+ #: admin/views/Shortcode.php:197 admin/views/Widget.php:138
3208
+ #: photo-gallery.php:1617
3209
+ msgid "Masonry"
3210
+ msgstr "Кладка"
3211
 
3212
+ #: admin/controllers/Themes.php:249
3213
+ msgid "Masonry album"
3214
+ msgstr "Альбом Кладка"
3215
 
3216
+ #: photo-gallery.php:1637
3217
+ msgid "Masonry Album"
3218
+ msgstr "Альбом Кладка"
3219
 
3220
+ #: admin/views/Options.php:2509
3221
+ msgid "Max. number of images"
3222
+ msgstr "Макс. количество изображений"
 
 
3223
 
3224
+ #: frontend/views/BWGViewGalleryBox.php:778 photo-gallery.php:1444
3225
+ msgid "Maximize"
3226
+ msgstr "Максимизировать"
3227
 
3228
+ #: wd/includes/notices.php:212
3229
+ msgid "Maybe Later"
3230
+ msgstr "Может быть позже"
3231
 
3232
+ #: admin/views/Options.php:692
3233
+ msgid "min"
3234
+ msgstr "мин"
3235
 
3236
+ #: admin/controllers/Galleries.php:377
3237
+ msgid "Mixed"
3238
+ msgstr "Смешанный"
3239
 
3240
+ #: admin/views/Options.php:3725
3241
+ msgid "Moderate each comment left on images by activating this setting."
3242
+ msgstr "Модерируйте каждый комментарий, оставленный на изображениях, активировав эту настройку."
3243
 
3244
+ #: frontend/views/BWGViewAlbum_extended_preview.php:160
3245
+ #: frontend/views/BWGViewAlbum_extended_preview.php:163
3246
+ msgid "More"
3247
+ msgstr "Больше"
3248
 
3249
+ #: wd/templates/display_overview.php:94
3250
+ msgid "More great features of the plugin"
3251
+ msgstr "Дополнительные возможности плагина"
3252
 
3253
+ #: admin/controllers/Options.php:58 admin/controllers/Shortcode.php:42
3254
+ #: admin/controllers/Themes.php:245 admin/views/Galleries.php:201
3255
+ #: admin/views/Options.php:456 admin/views/Options.php:2883
3256
+ #: admin/views/Options.php:3415 admin/views/Shortcode.php:98
3257
+ #: photo-gallery.php:1621
3258
+ msgid "Mosaic"
3259
+ msgstr "Мозаика"
3260
 
3261
+ #: admin/views/Options.php:1711 admin/views/Options.php:2895
3262
+ #: admin/views/Options.php:3427
3263
+ msgid "Mosaic gallery type"
3264
+ msgstr "Тип галереи Мозаика"
3265
 
3266
+ #: admin/views/LibSubscribe.php:69
3267
+ msgid "NAME"
3268
+ msgstr "НАЗВАНИЕ"
3269
 
3270
+ #: admin/views/AddTags.php:74 admin/views/AddTags.php:92
3271
+ #: filemanager/view.php:138 frontend/views/BWGViewGalleryBox.php:1022
3272
+ #: frontend/views/BWGViewGalleryBox.php:1139
3273
+ #: frontend/views/BWGViewGalleryBox.php:1253
3274
+ msgid "Name"
3275
+ msgstr "Название"
3276
 
3277
+ #: framework/WDWLibrary.php:172
3278
+ msgid "Name field is required."
3279
+ msgstr "Поле названия обязательно."
3280
 
3281
+ #: admin/views/LibSubscribe.php:19
3282
+ msgid "Name is required."
3283
+ msgstr "Требуется указать имя."
3284
 
3285
+ #: admin/controllers/Themes.php:253
3286
+ msgid "Navigation"
3287
+ msgstr "Навигация"
3288
 
3289
+ #: admin/views/Editimage.php:814
3290
+ msgid "Negative"
3291
+ msgstr "Отрицательный"
3292
 
3293
+ #: wd/includes/notices.php:213
3294
+ msgid "Never show again"
3295
+ msgstr "Никогда не показывать"
3296
 
3297
+ #: admin/views/Shortcode.php:539
3298
+ msgid "New shortcode"
3299
+ msgstr "Новый шорткод"
3300
 
3301
+ #: frontend/views/view.php:796
3302
+ msgid "Next"
3303
+ msgstr "Далее"
3304
 
3305
+ #: admin/views/AdminView.php:301
3306
+ msgid "Next page"
3307
+ msgstr "Следующая страница"
3308
 
3309
+ #: admin/views/Themes.php:4474
3310
+ msgid "Next, previous buttons values."
3311
+ msgstr "Значения кнопок Далее и Назад."
3312
 
3313
+ #: admin/views/Options.php:2606
3314
+ msgid "Next/Previous buttons"
3315
+ msgstr "Кнопки Далее/Назад"
3316
 
3317
+ #: addons/addons.php:6
3318
+ msgid "NextGen Gallery Import to Photo Gallery"
3319
+ msgstr "Импорт NextGen в Photo Gallery"
3320
 
3321
+ #: admin/views/Albums.php:261 admin/views/Galleries.php:315
3322
+ #: admin/views/Options.php:164 admin/views/Options.php:205
3323
+ #: admin/views/Options.php:215 admin/views/Options.php:225
3324
+ #: admin/views/Options.php:244 admin/views/Options.php:254
3325
+ #: admin/views/Options.php:264 admin/views/Options.php:274
3326
+ #: admin/views/Options.php:284 admin/views/Options.php:296
3327
+ #: admin/views/Options.php:307 admin/views/Options.php:317
3328
+ #: admin/views/Options.php:327 admin/views/Options.php:337
3329
+ #: admin/views/Options.php:346 admin/views/Options.php:356
3330
+ #: admin/views/Options.php:366 admin/views/Options.php:385
3331
+ #: admin/views/Options.php:393 admin/views/Options.php:778
3332
+ #: admin/views/Options.php:789 admin/views/Options.php:800
3333
+ #: admin/views/Options.php:811 admin/views/Options.php:822
3334
+ #: admin/views/Options.php:833 admin/views/Options.php:1352
3335
+ #: admin/views/Options.php:1378 admin/views/Options.php:1388
3336
+ #: admin/views/Options.php:1400 admin/views/Options.php:1410
3337
+ #: admin/views/Options.php:1431 admin/views/Options.php:1441
3338
+ #: admin/views/Options.php:1451 admin/views/Options.php:1578
3339
+ #: admin/views/Options.php:1604 admin/views/Options.php:1614
3340
+ #: admin/views/Options.php:1626 admin/views/Options.php:1636
3341
+ #: admin/views/Options.php:1657 admin/views/Options.php:1668
3342
+ #: admin/views/Options.php:1678 admin/views/Options.php:1725
3343
+ #: admin/views/Options.php:1812 admin/views/Options.php:1838
3344
+ #: admin/views/Options.php:1848 admin/views/Options.php:1860
3345
+ #: admin/views/Options.php:1870 admin/views/Options.php:1890
3346
+ #: admin/views/Options.php:1900 admin/views/Options.php:2007
3347
+ #: admin/views/Options.php:2017 admin/views/Options.php:2027
3348
+ #: admin/views/Options.php:2049 admin/views/Options.php:2070
3349
+ #: admin/views/Options.php:2107 admin/views/Options.php:2117
3350
+ #: admin/views/Options.php:2154 admin/views/Options.php:2173
3351
+ #: admin/views/Options.php:2202 admin/views/Options.php:2211
3352
+ #: admin/views/Options.php:2245 admin/views/Options.php:2271
3353
+ #: admin/views/Options.php:2281 admin/views/Options.php:2293
3354
+ #: admin/views/Options.php:2303 admin/views/Options.php:2313
3355
+ #: admin/views/Options.php:2402 admin/views/Options.php:2428
3356
+ #: admin/views/Options.php:2438 admin/views/Options.php:2450
3357
+ #: admin/views/Options.php:2460 admin/views/Options.php:2470
3358
+ #: admin/views/Options.php:2481 admin/views/Options.php:2492
3359
+ #: admin/views/Options.php:2577 admin/views/Options.php:2598
3360
+ #: admin/views/Options.php:2609 admin/views/Options.php:2622
3361
+ #: admin/views/Options.php:2633 admin/views/Options.php:2643
3362
+ #: admin/views/Options.php:2654 admin/views/Options.php:2665
3363
+ #: admin/views/Options.php:2728 admin/views/Options.php:2803
3364
+ #: admin/views/Options.php:2829 admin/views/Options.php:2839
3365
+ #: admin/views/Options.php:2851 admin/views/Options.php:2861
3366
+ #: admin/views/Options.php:2909 admin/views/Options.php:2941
3367
+ #: admin/views/Options.php:2951 admin/views/Options.php:3023
3368
+ #: admin/views/Options.php:3098 admin/views/Options.php:3124
3369
+ #: admin/views/Options.php:3134 admin/views/Options.php:3146
3370
+ #: admin/views/Options.php:3156 admin/views/Options.php:3177
3371
+ #: admin/views/Options.php:3261 admin/views/Options.php:3336
3372
+ #: admin/views/Options.php:3362 admin/views/Options.php:3372
3373
+ #: admin/views/Options.php:3384 admin/views/Options.php:3394
3374
+ #: admin/views/Options.php:3404 admin/views/Options.php:3441
3375
+ #: admin/views/Options.php:3473 admin/views/Options.php:3483
3376
+ #: admin/views/Options.php:3537 admin/views/Options.php:3548
3377
+ #: admin/views/Options.php:3597 admin/views/Options.php:3616
3378
+ #: admin/views/Options.php:3665 admin/views/Options.php:3675
3379
+ #: admin/views/Options.php:3689 admin/views/Options.php:3700
3380
+ #: admin/views/Options.php:3711 admin/views/Options.php:3723
3381
+ #: admin/views/Options.php:3734 admin/views/Options.php:3744
3382
+ #: admin/views/Options.php:3754 admin/views/Options.php:3774
3383
+ #: admin/views/Options.php:3785 admin/views/Options.php:3796
3384
+ #: admin/views/Options.php:3809 admin/views/Options.php:3819
3385
+ #: admin/views/Options.php:3829 admin/views/Options.php:3839
3386
+ #: admin/views/Options.php:3849 admin/views/Options.php:3870
3387
+ #: admin/views/Options.php:3881 admin/views/Options.php:3892
3388
+ #: admin/views/Options.php:3903 admin/views/Options.php:3917
3389
+ #: admin/views/Themes.php:393 admin/views/Themes.php:470
3390
+ #: admin/views/Themes.php:703 admin/views/Themes.php:767
3391
+ #: admin/views/Themes.php:978 admin/views/Themes.php:1042
3392
+ #: admin/views/Themes.php:1932 admin/views/Themes.php:2010
3393
+ #: admin/views/Themes.php:2306 admin/views/Themes.php:2823
3394
+ #: admin/views/Themes.php:2887 admin/views/Themes.php:4415
3395
+ #: admin/views/Themes.php:4464 admin/views/WidgetSlideshow.php:115
3396
+ #: admin/views/WidgetSlideshow.php:121 admin/views/WidgetSlideshow.php:127
3397
+ #: admin/views/WidgetTags.php:90 admin/views/WidgetTags.php:112
3398
+ msgid "No"
3399
+ msgstr "Нет"
3400
 
3401
+ #: framework/WDWLibrary.php:2342
3402
+ msgid "No %s found."
3403
+ msgstr "%s не найдено."
3404
 
3405
+ #: filemanager/view.php:268
3406
+ msgid "No files to upload"
3407
+ msgstr "Нет файлов для загрузки"
3408
 
3409
+ #: frontend/views/view.php:129 frontend/views/view.php:231
3410
+ msgid "No Images found."
3411
+ msgstr "Изображения не найдены."
3412
 
3413
+ #: filemanager/view.php:201
3414
+ msgid "No items found."
3415
+ msgstr "Ничего не найдено."
3416
 
3417
+ #: frontend/views/BWGViewAlbum_compact_preview.php:77
3418
+ #: frontend/views/BWGViewAlbum_extended_preview.php:86
3419
+ msgid "No results found."
3420
+ msgstr "Результаты не найдены."
3421
 
3422
+ #: photo-gallery.php:1448
3423
+ msgid "No tags found"
3424
+ msgstr "Метки не найдены"
3425
 
3426
+ #: admin/views/Galleries.php:407
3427
+ msgid "No update"
3428
+ msgstr "Нет обновления"
3429
+
3430
+ #: admin/controllers/Themes.php:259 admin/controllers/Themes.php:298
3431
+ #: admin/controllers/Themes.php:305 admin/controllers/WidgetSlideshow.php:44
3432
+ #: admin/views/Options.php:858 admin/views/Options.php:1016
3433
+ #: admin/views/Options.php:1246 admin/views/Options.php:1294
3434
+ #: admin/views/Options.php:1520 admin/views/Options.php:1754
3435
+ #: admin/views/Options.php:2342 admin/views/Shortcode.php:382
3436
+ msgid "None"
3437
+ msgstr "Отсутствует"
3438
 
3439
+ #: admin/controllers/Themes.php:292
3440
+ msgid "Normal"
3441
+ msgstr "Обычное"
3442
 
3443
+ #: admin/views/Options.php:3589
3444
+ msgid "Note, that the value of Effect Duration can not be greater than 1/4 of Time Interval."
3445
+ msgstr "Обратите внимание, что значение Продолжительность эффекта не может быть больше 1/4 Интервала времени."
3446
 
3447
+ #: admin/views/Options.php:409
3448
+ msgid "Note, that uninstalling Photo Gallery will completely remove all galleries, gallery groups and other data on the plugin. Please make sure you don't have any important information before you proceed."
3449
+ msgstr "Обратите внимание, что удаление Photo Gallery полностью удалит все галереи, группы галерей и другие данные плагина. Пожалуйста, убедитесь, что у вас нет никакой важной информации, прежде чем продолжить."
3450
 
3451
+ #: admin/views/Options.php:3714
3452
+ msgid "Note, this option cannot be used with GDPR compliance."
3453
+ msgstr "Обратите внимание, что эта опция не может использоваться с соблюдением GDPR."
3454
 
3455
+ #: photo-gallery.php:392
3456
+ msgid "Nothing selected."
3457
+ msgstr "Ничего не выбрано."
3458
 
3459
+ #: admin/views/Options.php:3219
3460
+ msgid "Number of columns"
3461
+ msgstr "Количество колонок"
3462
 
3463
+ #: admin/views/Options.php:2688 admin/views/Options.php:2985
3464
+ msgid "Number of gallery group columns"
3465
+ msgstr "Количество колонок группы галереи"
3466
 
3467
+ #: admin/views/Options.php:1283 admin/views/Options.php:1508
3468
+ #: admin/views/Options.php:2707 admin/views/Options.php:3003
3469
+ #: admin/views/Options.php:3240 admin/views/Shortcode.php:2277
3470
+ msgid "Number of image columns"
3471
+ msgstr "Количество колонок изображения"
3472
 
3473
+ #: admin/views/Options.php:1509 admin/views/Shortcode.php:2279
3474
+ msgid "Number of image rows"
3475
+ msgstr "Количество рядов изображения"
3476
 
3477
+ #: admin/views/Galleries.php:394
3478
+ msgid "Number of Instagram recent posts to add to gallery"
3479
+ msgstr "Количество свежих публикаций в Instagram, которые нужно добавить в галерею"
3480
 
3481
+ #: admin/views/Galleries.php:540
3482
+ msgid "Number of Instagram recent posts to add to gallery:"
3483
+ msgstr "Количество свежих публикаций в Instagram, которые нужно добавить в галерею:"
3484
 
3485
+ #: admin/views/Options.php:232
3486
+ msgid "Number of preloaded images"
3487
+ msgstr "Количество предварительно загруженных изображений"
3488
 
3489
+ #: admin/views/WidgetTags.php:100
3490
+ msgid "Number:"
3491
+ msgstr "Количество:"
3492
 
3493
+ #: admin/views/Themes.php:4459
3494
+ msgid "Numbering:"
3495
+ msgstr "Нумерация:"
3496
 
3497
+ #: admin/views/Galleries.php:680
3498
+ msgid "Numerate"
3499
+ msgstr "Пронумерованный"
3500
 
3501
+ #: admin/views/AdminView.php:288 framework/WDWLibrary.php:478
3502
+ #: framework/WDWLibrary.php:625 frontend/views/view.php:821
3503
+ msgid "of"
3504
+ msgstr "из"
3505
 
3506
+ #: photo-gallery.php:1460
3507
+ msgid "Ok"
3508
+ msgstr "Ок"
3509
 
3510
+ #: admin/views/Themes.php:4263
3511
+ msgid "omment button border radius:"
3512
+ msgstr "Радиус рамки кнопки комментария:"
3513
 
3514
+ #: admin/views/Themes.php:4185
3515
+ msgid "omment input border style:"
3516
+ msgstr "Стиль рамки ввода комментария:"
3517
 
3518
+ #: admin/views/Options.php:2036 admin/views/Options.php:3763
3519
+ msgid "On hover"
3520
+ msgstr "При наведении"
3521
 
3522
+ #: admin/views/Uninstall.php:41
3523
+ msgid "Once uninstalled, this can't be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
3524
+ msgstr "После деинсталляции это невозможно отменить. Для резервного копирования всех данных следует использовать плагин Database Backup WordPress."
3525
 
3526
+ #: admin/views/Options.php:1042
3527
+ msgid "Only .png format is supported."
3528
+ msgstr "Поддерживается только формат .png."
3529
 
3530
+ #: frontend/views/BWGViewThumbnails.php:45
3531
+ msgid "Open"
3532
+ msgstr "Открыт"
3533
 
3534
+ #: frontend/views/BWGViewGalleryBox.php:825
3535
+ msgid "Open image in original size."
3536
+ msgstr "Открыть изображение исходного размера."
3537
 
3538
+ #: admin/views/Options.php:161 admin/views/Options.php:3534
3539
+ msgid "Open in a new window"
3540
+ msgstr "Открыть в новом окне"
3541
 
3542
+ #: admin/views/WidgetTags.php:94
3543
+ msgid "Open in:"
3544
+ msgstr "Открыт в:"
3545
 
3546
+ #: admin/views/Options.php:153 admin/views/Options.php:3526
3547
+ msgid "Open lightbox"
3548
+ msgstr "Открыть лайтбокс"
3549
 
3550
+ #: admin/views/Galleries.php:468
3551
+ msgid "Optimize Images"
3552
+ msgstr "Оптимизировать изображения"
3553
 
3554
+ #: photo-gallery.php:437
3555
+ msgid "Options"
3556
+ msgstr "Параметры"
3557
 
3558
+ #: admin/views/Galleries.php:836
3559
+ msgid "Options > General"
3560
+ msgstr "Параметры > Основные"
3561
 
3562
+ #: photo-gallery.php:437
3563
+ msgid "Options page"
3564
+ msgstr "Страница параметров"
3565
 
3566
+ #: framework/WDWLibrary.php:129
3567
+ msgid "Options successfully saved."
3568
+ msgstr "Параметры успешно сохранены."
 
 
3569
 
3570
+ #: admin/views/Options.php:884 admin/views/Options.php:1039
3571
+ #: filemanager/view.php:249
3572
+ msgid "or"
3573
+ msgstr "или"
3574
 
3575
+ #: admin/views/Options.php:1328 admin/views/Options.php:1553
3576
+ #: admin/views/Options.php:1787 admin/views/Options.php:1982
3577
+ #: admin/views/Options.php:2220 admin/views/Options.php:2377
3578
+ #: admin/views/Options.php:2552
3579
+ msgid "Order by"
3580
+ msgstr "Упорядочить по"
3581
 
3582
+ #: photo-gallery.php:1437
3583
+ msgid "Order By"
3584
+ msgstr "Упорядочить по"
3585
 
3586
+ #: frontend/views/view.php:482
3587
+ msgid "Order by Default"
3588
+ msgstr "Упорядочить по умолчанию"
3589
 
3590
+ #: filemanager/view.php:133
3591
+ msgid "Order by:"
3592
+ msgstr "Упорядочить по:"
3593
 
3594
+ #: admin/views/Options.php:2761 admin/views/Options.php:3056
3595
+ #: admin/views/Options.php:3294
3596
+ msgid "Order Gallery group by"
3597
+ msgstr "Упорядочить группу галереи по"
3598
 
3599
+ #: admin/views/Options.php:2778 admin/views/Options.php:3073
3600
+ #: admin/views/Options.php:3312
3601
+ msgid "Order images by"
3602
+ msgstr "Упорядочить изображения по"
3603
 
3604
+ #: admin/views/Galleries.php:686
3605
+ msgid "Ordering"
3606
+ msgstr "Упорядочение"
3607
 
3608
+ #: framework/WDWLibrary.php:160
3609
+ msgid "Ordering successfully saved."
3610
+ msgstr "Упорядочение успешно сохранена."
3611
 
3612
+ #: admin/controllers/Themes.php:267
3613
+ msgid "Outset"
3614
+ msgstr "Выпуклый"
3615
 
3616
+ #: admin/views/Themes.php:3374
3617
+ msgid "Overlay background color:"
3618
+ msgstr "Цвет фона наложения:"
3619
 
3620
+ #: admin/views/Themes.php:3380
3621
+ msgid "Overlay background transparency:"
3622
+ msgstr "Прозрачность фона наложения:"
3623
 
3624
+ #: admin/views/Themes.php:398 admin/views/Themes.php:1686
3625
+ #: admin/views/Themes.php:1937 admin/views/Themes.php:2436
3626
+ #: admin/views/Themes.php:3139 admin/views/Themes.php:4390
3627
+ #: admin/views/Themes.php:4841
3628
+ msgid "Padding:"
3629
+ msgstr "Внутренний отступ:"
3630
 
3631
+ #: admin/views/WidgetTags.php:95
3632
+ msgid "Page"
3633
+ msgstr "Страница"
3634
 
3635
+ #: photo-gallery.php:1653
3636
+ msgid "Page Navigation"
3637
+ msgstr "Навигация по страницам"
3638
 
3639
+ #: admin/views/Options.php:1292 admin/views/Options.php:1518
3640
+ #: admin/views/Options.php:1752 admin/views/Options.php:2340
3641
+ #: admin/views/Options.php:2726 admin/views/Options.php:3021
3642
+ #: admin/views/Options.php:3259
3643
+ msgid "Pagination"
3644
+ msgstr "Разбивка на страницы"
3645
 
3646
+ #: filemanager/view.php:102
3647
+ msgid "Paste"
3648
+ msgstr "Вставить"
3649
 
3650
+ #: framework/howto/data.php:88
3651
+ msgid "Paste the Code"
3652
+ msgstr "Вставьте код"
3653
 
3654
+ #: photo-gallery.php:1452 photo-gallery.php:1455
3655
+ msgid "Pause"
3656
+ msgstr "Пауза"
3657
 
3658
+ #. Plugin Name of the plugin
3659
+ #: admin/controllers/elementorWidget.php:36 admin/views/Widget.php:97
3660
+ #: photo-gallery.php:111
3661
+ msgid "Photo Gallery"
3662
+ msgstr "Photo Gallery"
3663
 
3664
+ #: addons/addons.php:32
3665
+ msgid "Photo Gallery Add-ons"
3666
+ msgstr "Дополнения к Photo Gallery"
3667
 
3668
+ #: addons/addons.php:13
3669
+ msgid "Photo Gallery Export / Import"
3670
+ msgstr "Экспорт/импорт Photo Gallery"
3671
 
3672
+ #: admin/views/Options.php:1457 admin/views/Options.php:1684
3673
+ #: admin/views/Options.php:1906 admin/views/Options.php:2179
3674
+ #: admin/views/Options.php:2319 admin/views/Options.php:2498
3675
+ #: admin/views/Options.php:2671 admin/views/Options.php:2957
3676
+ #: admin/views/Options.php:3183 admin/views/Options.php:3489
3677
+ msgid "Photo Gallery Export will not work correctly, as ZipArchive PHP extension is disabled on your website. Please contact your hosting provider and ask them to enable it."
3678
+ msgstr "Экспорт Photo Gallery не будет работать корректно, так как на вашем сайте отключено PHP-расширение ZipArchive. Пожалуйста, свяжитесь с вашим хостинг-провайдером и попросите его включить его."
3679
 
3680
+ #: addons/addons.php:15
3681
+ msgid "Photo Gallery Export/Import helps to move created galleries and gallery groups from one site to another. This way you can save the gallery/album options and manual modifications."
3682
+ msgstr "Экспорт/импорт Photo Gallery помогает перемещать созданные галереи и группы галерей с одного сайта на другой. Таким образом вы можете сохранить параметры галереи / альбома и ручные изменения."
3683
 
3684
+ #: admin/views/Galleries.php:423
3685
+ msgid "Photo Gallery Facebook Integration"
3686
+ msgstr "Интеграция Photo Gallery с Facebook"
3687
 
3688
+ #: addons/addons.php:20
3689
+ msgid "Photo Gallery Google Photos Integration"
3690
+ msgstr "Интеграция Photo Gallery с Google Фото"
3691
 
3692
+ #: photo-gallery.php:1511
3693
+ msgid "Photo Gallery is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into gallery groups, and provide descriptions and tags."
3694
+ msgstr "Photo Gallery — полностью адаптивный плагин галереи с расширенными функциями. Это позволяет иметь разные галереи изображений для ваших записей и страниц. Вы можете создавать неограниченное количество галерей, объединять их в группы галерей и добавлять описания и метки."
3695
 
3696
+ #: photo-gallery.php:1528
3697
+ msgid "Photo Gallery plugin allows displaying galleries and gallery groups in 10 elegant and beautiful views:, Thumbnails, Masonry, Mosaic, Slideshow, Image Browser, Masonry Album, Compact Album, Extended Album, Blog Style Gallery, Ecommerce."
3698
+ msgstr "Плагин Photo Gallery позволяет отображать галереи и группы галерей в 10 элегантных и красивых представлениях: миниатюры, кладка, мозаика, слайд-шоу, браузер изображений, альбом Кладка, компактный альбом , расширенный альбом, галерея стилей блога, электронная торговля."
3699
 
3700
+ #: photo-gallery.php:1847
3701
+ msgid "Photo gallery plugin autoupdate interval."
3702
+ msgstr "Интервал автоматического обновления плагина Photo Gallery."
3703
 
3704
+ #: framework/WDWLibrary.php:2808
3705
+ msgid "Photo Gallery Premium"
3706
+ msgstr "Photo Gallery Premium"
3707
 
3708
+ #: admin/views/WidgetSlideshow.php:67 photo-gallery.php:1708
3709
+ msgid "Photo Gallery Slideshow"
3710
+ msgstr "Photo Gallery Слайд-шоу"
3711
 
3712
+ #: admin/views/Licensing.php:23
3713
+ msgid "Photo Gallery Slideshow Widget"
3714
+ msgstr "Виджет слайд-шоу Photo Gallery"
3715
 
3716
+ #: admin/views/WidgetTags.php:63 photo-gallery.php:1704
3717
+ msgid "Photo Gallery Tags Cloud"
3718
+ msgstr "Облако тегов Photo Gallery"
3719
 
3720
+ #: admin/views/Licensing.php:30
3721
+ msgid "Photo Gallery Tags Cloud Widget"
3722
+ msgstr "Виджет облака тегов Photo Gallery"
3723
 
3724
+ #. Author of the plugin
3725
+ msgid "Photo Gallery Team"
3726
+ msgstr "Команда Photo Gallery"
3727
 
3728
+ #: admin/views/Themes.php:28
3729
+ msgid "Photo Gallery Themes"
3730
+ msgstr "Темы Photo Gallery"
3731
 
3732
+ #: admin/views/Licensing.php:24 photo-gallery.php:1712
3733
+ msgid "Photo Gallery Widget"
3734
+ msgstr "Виджет Photo Gallery"
3735
 
3736
+ #: admin/views/Shortcode.php:561
3737
+ msgid "PHP function"
3738
+ msgstr "Функция PHP"
3739
 
3740
+ #: photo-gallery.php:427
3741
+ msgid "PHP GD"
3742
+ msgstr "PHP GD"
3743
 
3744
+ #: frontend/views/BWGViewGalleryBox.php:774
3745
+ #: frontend/views/BWGViewThumbnails.php:42 photo-gallery.php:1451
3746
+ #: photo-gallery.php:1454
3747
+ msgid "Play"
3748
+ msgstr "Воспроизвести"
3749
 
3750
+ #: admin/views/Themes.php:1247 admin/views/Themes.php:4511
3751
+ msgid "Play, pause buttons size:"
3752
+ msgstr "Размер кнопок Воспроизвести, пауза:"
3753
 
3754
+ #: admin/views/Options.php:2651
3755
+ msgid "Play/Pause buttons"
3756
+ msgstr "Кнопки воспроизвести/пауза"
3757
 
3758
+ #: admin/views/LibSubscribe.php:20
3759
+ msgid "Please enter a valid email."
3760
+ msgstr "Введите действительный email."
3761
 
3762
+ #: photo-gallery.php:638
3763
+ msgid "Please enter url to embed."
3764
+ msgstr "Введите URL для вставки."
3765
 
3766
+ #: admin/views/Galleries.php:424
3767
+ msgid "Please install %s add-on to use this feature."
3768
+ msgstr "Установите дополнение %s, чтобы использовать эту функцию."
3769
 
3770
+ #: wd/templates/display_deactivation_popup.php:8
3771
+ msgid "Please let us know why you are deactivating. Your answer will help us to provide you support or sometimes offer discounts. (Optional)"
3772
+ msgstr "Сообщите нам причину деактивации. Ваш ответ поможет нам оказать вам поддержку или иногда предложить скидки. (по желанию)"
3773
 
3774
+ #: photo-gallery.php:1890
3775
+ msgid "Please update the %s add-on to start using."
3776
+ msgstr "Обновите дополнения %s, чтобы начать использовать."
3777
 
3778
+ #: photo-gallery.php:1891
3779
+ msgid "Please update the %s add-ons to start using."
3780
+ msgstr "Обновите дополнения %s, чтобы начать использовать."
3781
 
3782
+ #: admin/views/Themes.php:4436
3783
+ msgid "Position:"
3784
+ msgstr "Позиция:"
3785
 
3786
+ #: admin/views/Licensing.php:26
3787
+ msgid "Possibility of Editing/Creating New Themes"
3788
+ msgstr "Возможность редактирования/создания новых тем"
3789
 
3790
+ #: admin/views/Options.php:222
3791
+ msgid "Preload images"
3792
+ msgstr "Предзагрузка изображений"
3793
 
3794
+ #: wd/templates/display_overview.php:21 wd/templates/display_overview.php:81
3795
+ msgid "Premium "
3796
+ msgstr "Премиум "
3797
 
3798
+ #: admin/views/Albums.php:182 admin/views/Galleries.php:197
3799
+ #: admin/views/Galleries.php:201 admin/views/Galleries.php:213
3800
+ #: admin/views/Galleries.php:217 wd/wd.php:53 wd/wd.php:57
3801
+ msgid "Premium"
3802
+ msgstr "Премиум"
3803
 
3804
+ #: framework/WDWLibrary.php:2866
3805
+ msgid "Premium Version"
3806
+ msgstr "Премиум-версия"
3807
 
3808
+ #: wd/templates/display_overview.php:37
3809
+ msgid "Premium WordPress themes"
3810
+ msgstr "Премиум темы WordPress"
3811
 
3812
+ #: admin/views/Editimage.php:864 admin/views/Editimage.php:889
3813
+ msgid "Press for result"
3814
+ msgstr "Нажмите для получения результата"
3815
 
3816
+ #: admin/views/Options.php:706
3817
+ msgid "Press this button to sign in to your Instagram account. In this case, access token will be added automatically."
3818
+ msgstr "Нажмите эту кнопку, чтобы войти в свой аккаунт Instagram. В этом случае токен доступа будет добавлен автоматически."
3819
 
3820
+ #: admin/views/Options.php:712
3821
+ msgid "Press this button to sign in to your Instagram account. This lets you incorporate Instagram API to your website."
3822
+ msgstr "Нажмите эту кнопку, чтобы войти в аккаунт Instagram. Это позволяет включить API Instagram в ваш веб-сайт."
3823
 
3824
+ #: admin/views/Options.php:721
3825
+ msgid "Press this button to sign out from your Instagram account."
3826
+ msgstr "Нажмите эту кнопку, чтобы выйти из своего аккаунта Instagram."
3827
 
3828
+ #: admin/views/Options.php:715
3829
+ msgid "Press this button to sign out from your Instagram account. The access token will reset."
3830
+ msgstr "Нажмите эту кнопку, чтобы выйти из своего аккаунта Instagram. Токен доступа будет сброшен."
3831
 
3832
+ #: admin/views/Albums.php:116 admin/views/Albums.php:204
3833
+ #: admin/views/Galleries.php:124 admin/views/Galleries.php:252
3834
+ msgid "Preview"
3835
+ msgstr "Предпросмотр"
3836
 
3837
+ #: admin/views/Albums.php:206
3838
+ msgid "Preview gallery group in:"
3839
+ msgstr "Предпросмотр группы галереи в:"
3840
 
3841
+ #: admin/views/Galleries.php:254
3842
+ msgid "Preview gallery in:"
3843
+ msgstr "Предпросмотр галереи в:"
3844
 
3845
+ #: admin/views/Albums.php:245 admin/views/Galleries.php:294
3846
+ msgid "Preview image"
3847
+ msgstr "Предпросмотр изображения"
3848
 
3849
+ #: frontend/views/view.php:795
3850
+ msgid "Previous"
3851
+ msgstr "Назад"
3852
 
3853
+ #: admin/views/AdminView.php:280
3854
+ msgid "Previous page"
3855
+ msgstr "Предыдущая страница"
3856
 
3857
+ #: frontend/views/BWGViewGalleryBox.php:1143
3858
+ #: frontend/views/BWGViewGalleryBox.php:1255
3859
+ msgid "Price"
3860
+ msgstr "Цена"
3861
 
3862
+ #: frontend/views/BWGViewGalleryBox.php:1122
3863
+ msgid "Prints and products"
3864
+ msgstr "Принты и продукты"
3865
 
3866
+ #: frontend/views/BWGViewGalleryBox.php:1059
3867
+ #: wd/templates/display_subscribe.php:39
3868
+ msgid "Privacy Policy"
3869
+ msgstr "Политика конфиденциальности"
3870
 
3871
+ #: admin/views/Licensing.php:57
3872
+ msgid "Pro Version"
3873
+ msgstr "Версия Pro"
3874
 
3875
+ #: filemanager/view.php:75
3876
+ msgid "Processing uploaded files..."
3877
+ msgstr "Обработка загруженных файлов..."
3878
 
3879
+ #: wd/templates/display_overview.php:38
3880
+ msgid "Professionally designed, responsive themes for your website. Build fully-functional, elegant websites effortlessly."
3881
+ msgstr "Профессионально разработанные адаптивные темы для вашего сайта. Создавайте полнофункциональные, элегантные веб-сайты без особых усилий."
3882
 
3883
+ #: admin/views/Options.php:3857
3884
+ msgid "profile ID"
3885
+ msgstr "ID профиля"
3886
 
3887
+ #: wd/templates/display_overview.php:57
3888
+ msgid "Protect your WordPress site from security issues and threats with a powerful security service coming soon to 10Web."
3889
+ msgstr "Защитите свой сайт WordPress от проблем и угроз с помощью мощной службы безопасности, которая скоро появится на 10Web."
3890
 
3891
+ #: admin/views/Options.php:2165
3892
+ msgid "Provide the absolute URL of the audio file you would like to play with your slideshow."
3893
+ msgstr "Укажите абсолютный URL-адрес аудиофайла, который вы хотите воспроизвести вместе со слайд-шоу."
3894
 
3895
+ #: admin/views/Options.php:887 admin/views/Shortcode.php:401
3896
+ msgid "Provide the absolute URL of the image you would like to use as advertisement."
3897
+ msgstr "Укажите абсолютный URL-адрес изображения, которое вы хотите использовать в качестве рекламного объявления."
3898
 
3899
+ #: admin/views/Options.php:1042
3900
+ msgid "Provide the absolute URL of the image you would like to use as watermark."
3901
+ msgstr "Укажите абсолютный URL-адрес изображения, которое вы хотите использовать в качестве водяного знака."
3902
 
3903
+ #: admin/views/Options.php:3861
3904
+ msgid "Provide the ID of your profile to connect to AddThis."
3905
+ msgstr "Укажите ID вашего профиля для подключения к AddThis."
3906
 
3907
+ #: admin/views/Options.php:905 admin/views/Shortcode.php:394
3908
+ msgid "Provide the link to be added to advertisement on images."
3909
+ msgstr "Укажите ссылку для добавления в рекламу на изображениях."
3910
 
3911
+ #: admin/views/Options.php:143
3912
+ msgid "Provide the path of an existing folder inside the WordPress directory of your website to store uploaded images.<br />The content of the previous directory will be moved to the new one."
3913
+ msgstr "Укажите путь к существующей папке внутри каталога WordPress вашего сайта для хранения загруженных изображений.<br /> Содержимое предыдущего каталога будет перемещено в новый."
3914
 
3915
+ #: admin/views/Options.php:1051
3916
+ msgid "Provide the text to add to images as watermark."
3917
+ msgstr "Укажите текст для добавления к изображениям в качестве водяного знака."
3918
 
3919
+ #: admin/controllers/Albums.php:38 admin/controllers/Galleries.php:34
3920
+ #: admin/views/Albums.php:113 admin/views/Albums.php:199
3921
+ #: admin/views/Galleries.php:121 admin/views/Galleries.php:247
3922
+ #: admin/views/Galleries.php:793 framework/WDWLibrary.php:2679
3923
+ msgid "Publish"
3924
+ msgstr "Опубликовать"
3925
 
3926
+ #: admin/views/Albums.php:257 admin/views/Galleries.php:311
3927
+ msgid "Published"
3928
+ msgstr "Опубликовано"
3929
 
3930
+ #: admin/controllers/Albums.php:39 admin/controllers/Galleries.php:35
3931
+ #: framework/WDWLibrary.php:2680
3932
+ msgid "published"
3933
+ msgstr "опубликовано"
3934
 
3935
+ #: photo-gallery.php:1696
3936
+ msgid "Publishing Photo Gallery Widgets"
3937
+ msgstr "Публикация виджетов Photo Gallery"
3938
 
3939
+ #: photo-gallery.php:1678
3940
+ msgid "Publishing the Created Photo Gallery"
3941
+ msgstr "Публикация созданной Photo Gallery"
3942
+
3943
+ #: admin/controllers/WidgetSlideshow.php:59 admin/views/Options.php:1261
3944
+ #: admin/views/Options.php:1335 admin/views/Options.php:1561
3945
+ #: admin/views/Options.php:1795 admin/views/Options.php:1990
3946
+ #: admin/views/Options.php:2228 admin/views/Options.php:2385
3947
+ #: admin/views/Options.php:2560 admin/views/Options.php:2766
3948
+ #: admin/views/Options.php:2786 admin/views/Options.php:3061
3949
+ #: admin/views/Options.php:3081 admin/views/Options.php:3299
3950
+ #: admin/views/Options.php:3319 admin/views/Widget.php:158
3951
+ #: frontend/views/view.php:497
3952
+ msgid "Random"
3953
+ msgstr "Случайному порядку"
3954
 
3955
+ #: photo-gallery.php:1934
3956
+ msgid "Rate"
3957
+ msgstr "Оценить"
3958
 
3959
+ #: frontend/views/BWGViewGalleryBox.php:895
3960
+ msgid "Rated."
3961
+ msgstr "Оценённые."
3962
 
3963
+ #: admin/views/Themes.php:3795
3964
+ msgid "Rating alignment:"
3965
+ msgstr "Выравнивание рейтинга:"
3966
 
3967
+ #: admin/views/Themes.php:3823
3968
+ msgid "Rating color:"
3969
+ msgstr "Цвет рейтинга:"
3970
 
3971
+ #: admin/views/Themes.php:3829
3972
+ msgid "Rating hover color:"
3973
+ msgstr "Цвет при наведении на рейтинг:"
3974
 
3975
+ #: admin/views/Themes.php:3841
3976
+ msgid "Rating icon count:"
3977
+ msgstr "Количество значков рейтинга:"
3978
 
3979
+ #: admin/views/Themes.php:3809
3980
+ msgid "Rating icon:"
3981
+ msgstr "Значок рейтинга:"
3982
 
3983
+ #: admin/views/Themes.php:3847
3984
+ msgid "Rating padding:"
3985
+ msgstr "Внутренний отступ рейтинга:"
3986
 
3987
+ #: admin/views/Themes.php:3786
3988
+ msgid "Rating position:"
3989
+ msgstr "Позиция рейтинга:"
3990
 
3991
+ #: admin/views/Themes.php:3835
3992
+ msgid "Rating size:"
3993
+ msgstr "Размер рейтинга:"
3994
 
3995
+ #: photo-gallery.php:498
3996
+ msgid "Ratings"
3997
+ msgstr "Рейтинги"
3998
 
3999
+ #: admin/views/Licensing.php:16
4000
+ msgid "ready"
4001
+ msgstr "готово"
4002
 
4003
+ #: admin/views/Options.php:186 photo-gallery.php:437
4004
+ msgid "Recreate"
4005
+ msgstr "Воссоздать"
 
 
 
 
 
 
 
4006
 
4007
+ #: framework/WDWLibrary.php:2631
4008
+ msgid "Recreate thumbnail"
4009
+ msgstr "Воссоздание миниатюры"
 
 
 
4010
 
4011
+ #: framework/WDWLibrary.php:2632
4012
+ msgid "recreated"
4013
+ msgstr "воссозданный"
4014
 
4015
+ #: admin/views/Options.php:154 admin/views/Options.php:3527
4016
+ msgid "Redirect to url"
4017
+ msgstr "Перенаправить на URL"
 
 
4018
 
4019
+ #: admin/views/Galleries.php:832
4020
+ msgid "Redirect URL"
4021
+ msgstr "URL перенаправления"
4022
 
4023
+ #: admin/views/Galleries.php:606
4024
+ msgid "Redirect URL: "
4025
+ msgstr "URL перенаправления: "
4026
 
4027
+ #: filemanager/view.php:105
4028
+ msgid "Refresh"
4029
+ msgstr "Обновить"
4030
 
4031
+ #: admin/views/Editimage.php:818
4032
+ msgid "Removal"
4033
+ msgstr "Удаление"
 
4034
 
4035
+ #: admin/views/Albums.php:385
4036
+ msgid "Remove"
4037
+ msgstr "Удалить"
4038
 
4039
+ #: admin/views/AddTags.php:113
4040
+ msgid "Remove from image"
4041
+ msgstr "Удалить из изображения"
 
 
4042
 
4043
+ #: filemanager/view.php:103
4044
+ msgid "Remove items"
4045
+ msgstr "Удалить элементы"
4046
 
4047
+ #: framework/WDWLibrary.php:2702
4048
+ msgid "Remove pricelist"
4049
+ msgstr "Удалить прайс-лист"
 
4050
 
4051
+ #: admin/views/Galleries.php:855
4052
+ msgid "Remove tag"
4053
+ msgstr "Удалить метку"
4054
 
4055
+ #: filemanager/view.php:98
4056
+ msgid "Rename item"
4057
+ msgstr "Переименовать элемент"
4058
 
4059
+ #: framework/WDWLibrary.php:2652
4060
+ msgid "reset"
4061
+ msgstr "сброс"
4062
 
4063
+ #: admin/views/Galleries.php:790 admin/views/Options.php:53
4064
+ #: admin/views/Themes.php:361 framework/WDWLibrary.php:373
4065
+ #: framework/WDWLibrary.php:525 framework/WDWLibrary.php:2651
4066
+ #: frontend/views/view.php:438
4067
+ msgid "Reset"
4068
+ msgstr "Сброс"
4069
 
4070
+ #: admin/views/Editimage.php:836
4071
+ msgid "Reset image"
4072
+ msgstr "Сброс изображения"
4073
 
4074
+ #: admin/views/Themes.php:354
4075
+ msgid "Reset to default theme"
4076
+ msgstr "Восстановить тему по умолчанию"
4077
 
4078
+ #: admin/views/Options.php:1145
4079
+ msgid "Reset watermark"
4080
+ msgstr "Сброс водяного знака"
4081
 
4082
+ #: admin/views/Options.php:1147
4083
+ msgid "Reset Watermark"
4084
+ msgstr "Сброс водяного знака"
4085
 
4086
+ #: admin/views/Options.php:1722 admin/views/Options.php:2906
4087
+ #: admin/views/Options.php:3438
4088
+ msgid "Resizable mosaic"
4089
+ msgstr "Мозаика изменяемого размера"
4090
 
4091
+ #: admin/views/Options.php:202
4092
+ msgid "Resizable thumbnails"
4093
+ msgstr "Миниатюры изменяемого размера"
4094
 
4095
+ #: admin/views/Galleries.php:576 framework/WDWLibrary.php:2626
4096
+ msgid "Resize"
4097
+ msgstr "Изменение размера"
 
4098
 
4099
+ #: admin/views/Galleries.php:567
4100
+ msgid "Resize images to: "
4101
+ msgstr "Изменить размер изображений: "
 
4102
 
4103
+ #: framework/WDWLibrary.php:2627
4104
+ msgid "resized"
4105
+ msgstr "изменённый размер"
4106
 
4107
+ #: admin/views/Galleries.php:773
4108
+ msgid "Resolution"
4109
+ msgstr "Разрешение"
4110
 
4111
+ #: admin/views/Licensing.php:18
4112
+ msgid "Responsive Design and Layout"
4113
+ msgstr "Отзывчивый дизайн и макет"
4114
 
4115
+ #: photo-gallery.php:1443
4116
+ msgid "Restore"
4117
+ msgstr "Восстановить"
4118
 
4119
+ #: admin/controllers/Themes.php:265
4120
+ msgid "Ridge"
4121
+ msgstr "Грани"
4122
 
4123
+ #: admin/controllers/Themes.php:287 admin/views/Themes.php:1358
4124
+ #: admin/views/Themes.php:3702 admin/views/Themes.php:4134
4125
+ msgid "Right"
4126
+ msgstr "Справа"
4127
 
4128
+ #: admin/views/Themes.php:1284 admin/views/Themes.php:3616
4129
+ #: admin/views/Themes.php:4548
4130
+ msgid "Right, left buttons background color:"
4131
+ msgstr "Цвет фона правой и левой кнопок:"
4132
 
4133
+ #: admin/views/Themes.php:1310 admin/views/Themes.php:3692
4134
+ #: admin/views/Themes.php:4574
4135
+ msgid "Right, left buttons border color:"
4136
+ msgstr "Цвет рамки правой и левой кнопок:"
4137
 
4138
+ #: admin/views/Themes.php:1316 admin/views/Themes.php:3665
4139
+ #: admin/views/Themes.php:4580
4140
+ msgid "Right, left buttons border radius:"
4141
+ msgstr "Радиус рамки правой и левой кнопок:"
4142
 
4143
+ #: admin/views/Themes.php:1296 admin/views/Themes.php:3678
4144
+ #: admin/views/Themes.php:4560
4145
+ msgid "Right, left buttons border style:"
4146
+ msgstr "Стиль рамки правой и левой кнопок:"
4147
 
4148
+ #: admin/views/Themes.php:1290 admin/views/Themes.php:3672
4149
+ #: admin/views/Themes.php:4554
4150
+ msgid "Right, left buttons border width:"
4151
+ msgstr "Ширина рамки правой и левой кнопок:"
4152
 
4153
+ #: admin/views/Themes.php:1337 admin/views/Themes.php:3628
4154
+ msgid "Right, left buttons box shadow:"
4155
+ msgstr "Тень box правой и левой кнопок:"
4156
 
4157
+ #: admin/views/Themes.php:3659
4158
+ msgid "Right, left buttons color:"
4159
+ msgstr "Цвет правой и левой кнопок:"
4160
 
4161
+ #: admin/views/Themes.php:1278 admin/views/Themes.php:3635
4162
+ #: admin/views/Themes.php:4542
4163
+ msgid "Right, left buttons height:"
4164
+ msgstr "Высота правой и левой кнопок:"
4165
 
4166
+ #: admin/views/Themes.php:1241 admin/views/Themes.php:3647
4167
+ #: admin/views/Themes.php:4505
4168
+ msgid "Right, left buttons size:"
4169
+ msgstr "Размер правой и левой кнопок:"
4170
 
4171
+ #: admin/views/Themes.php:1323 admin/views/Themes.php:3602
4172
+ #: admin/views/Themes.php:4587
4173
+ msgid "Right, left buttons style:"
4174
+ msgstr "Стиль правой и левой кнопок:"
4175
 
4176
+ #: admin/views/Themes.php:3622
4177
+ msgid "Right, left buttons transparency:"
4178
+ msgstr "Прозрачность правой и левой кнопок:"
4179
 
4180
+ #: admin/views/Themes.php:1272 admin/views/Themes.php:3641
4181
+ #: admin/views/Themes.php:4536
4182
+ msgid "Right, left buttons width:"
4183
+ msgstr "Ширина правой и левой кнопок:"
4184
 
4185
+ #: admin/views/Themes.php:3653
4186
+ msgid "Right, left, close buttons hover color:"
4187
+ msgstr "Цвет правой, левой и кнопки закрытия при наведении:"
4188
 
4189
+ #: admin/views/Options.php:304
4190
+ msgid "Right-click protection"
4191
+ msgstr "Защита от нажатия правой кнопки мыши"
4192
 
4193
+ #: admin/views/Options.php:749 admin/views/Options.php:755
4194
+ msgid "Roles"
4195
+ msgstr "Роли"
4196
 
4197
+ #: admin/controllers/Themes.php:299 admin/controllers/Themes.php:306
4198
+ msgid "Rotate"
4199
+ msgstr "Повернуть"
4200
 
4201
+ #: photo-gallery.php:428
4202
+ msgid "rotate"
4203
+ msgstr "повернуть"
4204
 
4205
+ #: framework/WDWLibrary.php:2636
4206
+ msgid "Rotate left"
4207
+ msgstr "Повернуть налево"
4208
 
4209
+ #: framework/WDWLibrary.php:2641
4210
+ msgid "Rotate right"
4211
+ msgstr "Повернуть направо"
 
4212
 
4213
+ #: framework/WDWLibrary.php:2637
4214
+ msgid "rotated left"
4215
+ msgstr "повернуть налево"
4216
 
4217
+ #: framework/WDWLibrary.php:2642
4218
+ msgid "rotated right"
4219
+ msgstr "повернуть направо"
4220
 
4221
+ #: admin/views/Editimage.php:830
4222
+ msgid "Saturate"
4223
+ msgstr "Насыщенность"
4224
 
4225
+ #: admin/views/Themes.php:351
4226
+ msgid "Save"
4227
+ msgstr "Сохранить"
4228
 
4229
+ #: admin/views/Galleries.php:597 admin/views/Galleries.php:616
4230
+ #: admin/views/Galleries.php:636
4231
+ msgid "Save changes"
4232
+ msgstr "Сохранить изменения"
4233
 
4234
+ #: admin/views/Options.php:293
4235
+ msgid "Save IP "
4236
+ msgstr "Сохранить IP "
4237
 
4238
+ #: admin/views/Options.php:47
4239
+ msgid "Save options"
4240
+ msgstr "Сохранить параметры"
4241
 
4242
+ #: photo-gallery.php:655
4243
+ msgid "Save Tag"
4244
+ msgstr "Сохранить метку"
4245
 
4246
+ #: admin/controllers/Themes.php:300 admin/controllers/Themes.php:307
4247
+ msgid "Scale"
4248
+ msgstr "Масштаб"
4249
 
4250
+ #: admin/controllers/WidgetSlideshow.php:53 admin/views/Options.php:1255
4251
+ msgid "Scale In"
4252
  msgstr ""
4253
 
4254
+ #: admin/controllers/WidgetSlideshow.php:52 admin/views/Options.php:1254
4255
+ msgid "Scale Out"
4256
  msgstr ""
4257
 
4258
+ #: admin/views/Options.php:1297 admin/views/Options.php:1523
4259
+ #: admin/views/Options.php:1757 admin/views/Options.php:2345
4260
+ #: admin/views/Options.php:2731 admin/views/Options.php:3026
4261
+ #: admin/views/Options.php:3264
4262
+ msgid "Scroll Load"
4263
+ msgstr "Загрузка прокрутки"
4264
 
4265
+ #: admin/views/AdminView.php:218 framework/WDWLibrary.php:372
4266
+ #: framework/WDWLibrary.php:524 photo-gallery.php:1438
4267
+ msgid "Search"
4268
+ msgstr "Поиск"
4269
 
4270
+ #: admin/views/Options.php:1367 admin/views/Options.php:1593
4271
+ #: admin/views/Options.php:1827 admin/views/Options.php:2260
4272
+ #: admin/views/Options.php:2417 admin/views/Options.php:2818
4273
+ #: admin/views/Options.php:3113 admin/views/Options.php:3351
4274
+ msgid "Search box maximum width"
4275
+ msgstr "Макс. ширина окна поиска"
4276
 
4277
+ #: frontend/views/view.php:434 frontend/views/view.php:443
4278
+ #: photo-gallery.php:1447
4279
+ msgid "SEARCH..."
4280
+ msgstr "ПОИСК..."
4281
 
4282
+ #: wd/templates/display_overview.php:56
4283
+ msgid "Security"
4284
+ msgstr "Безопасность"
4285
 
4286
+ #: admin/views/Themes.php:4897
4287
+ msgid "See All Button background color:"
4288
+ msgstr "Просмотреть все цвета фона кнопки:"
4289
 
4290
+ #: admin/views/Themes.php:4917
4291
+ msgid "See All Button Border color:"
4292
+ msgstr "Просмотреть все цвета рамки кнопки:"
4293
 
4294
+ #: admin/views/Themes.php:4921
4295
+ msgid "See All Button Border radius:"
4296
+ msgstr "Просмотреть все радиусы рамки кнопки:"
4297
 
4298
+ #: admin/views/Themes.php:4907
4299
+ msgid "See All Button Border style:"
4300
+ msgstr "Просмотреть все стили рамки кнопки:"
4301
 
4302
+ #: admin/views/Themes.php:4901
4303
+ msgid "See All Button Border width:"
4304
+ msgstr "Просмотреть все ширины рамки кнопки:"
4305
 
4306
+ #: admin/views/Themes.php:4893
4307
+ msgid "See All Button Font color:"
4308
+ msgstr "Просмотреть все цвета шрифта кнопки:"
4309
 
4310
+ #: admin/views/Themes.php:4887
4311
+ msgid "See All Button Font size:"
4312
+ msgstr "Просмотреть все размеры шрифта кнопки:"
4313
 
4314
+ #: frontend/views/view.php:606 photo-gallery.php:1466
4315
+ msgid "see all tags"
4316
+ msgstr "посмотреть все метки"
4317
 
4318
+ #: photo-gallery.php:1467
4319
+ msgid "see less tags"
4320
+ msgstr "видеть меньше меток"
4321
 
4322
+ #: admin/views/WidgetSlideshow.php:88
4323
+ msgid "Select"
4324
+ msgstr "Выбрать"
 
 
4325
 
4326
+ #: photo-gallery.php:366
4327
+ msgid "Select %s"
4328
+ msgstr "Выбрать %s"
4329
 
4330
+ #: admin/views/AdminView.php:337 filemanager/view.php:208
4331
+ msgid "Select All"
4332
+ msgstr "Выбрать всё"
4333
 
4334
+ #: admin/views/AddTags.php:71 admin/views/Albums.php:59
4335
+ #: admin/views/Themes.php:201 photo-gallery.php:1462
4336
+ msgid "Select all"
4337
+ msgstr "Выбрать все"
4338
 
4339
+ #: admin/views/Themes.php:4794
4340
+ msgid "Select Box"
4341
+ msgstr "Выбрать поле"
4342
 
4343
+ #: admin/views/AdminView.php:341
4344
+ msgid "Select bulk action"
4345
+ msgstr "Выберите действие в пакете"
4346
 
4347
+ #: filemanager/view.php:249
4348
+ msgid "Select Files"
4349
+ msgstr "Выбрать файлы"
4350
 
4351
+ #: admin/views/Options.php:880 admin/views/Options.php:882
4352
+ #: admin/views/Options.php:1035 admin/views/Options.php:1037
4353
+ msgid "Select Image"
4354
+ msgstr "Выбрать изображение"
4355
 
4356
+ #: photo-gallery.php:1436
4357
+ msgid "Select Tag"
4358
+ msgstr "Выбрать метку"
 
 
4359
 
4360
+ #: admin/views/Options.php:157 admin/views/Options.php:3530
4361
+ msgid "Select the action which runs after clicking on gallery thumbnails."
4362
+ msgstr "Выберите действие, которое выполняется после щелчка по миниатюрам галереи."
4363
 
4364
+ #: admin/views/Options.php:3579
4365
+ msgid "Select the animation effect for image lightbox."
4366
+ msgstr "Выберите эффект анимации для лайтбокса изображения."
4367
 
4368
+ #: admin/views/Options.php:1947
4369
+ msgid "Select the animation effect for your slideshow."
4370
+ msgstr "Выберите эффект анимации для слайд-шоу."
4371
 
4372
+ #: admin/views/Editimage.php:295
4373
+ msgid "Select the area for the thumbnail."
4374
+ msgstr "Выберите область для миниатюры."
 
 
4375
 
4376
+ #: admin/views/Options.php:915 admin/views/Shortcode.php:453
4377
+ msgid "Select the dimensions of the advertisement image."
4378
+ msgstr "Выберите размеры рекламного изображения."
4379
 
4380
+ #: admin/views/Options.php:950 admin/views/Shortcode.php:434
4381
+ msgid "Select the font family of the advertisement text."
4382
+ msgstr "Выберите семейство шрифтов для рекламного текста."
4383
 
4384
+ #: admin/views/Options.php:1098
4385
+ msgid "Select the font family of the watermark text."
4386
+ msgstr "Выберите семейство шрифтов для текста водяного знака."
4387
 
4388
+ #: admin/views/Shortcode.php:294
4389
+ msgid "Select the gallery group to display."
4390
+ msgstr "Выберите группу галереи для отображения."
4391
 
4392
+ #: admin/views/Shortcode.php:280
4393
+ msgid "Select the gallery to display."
4394
+ msgstr "Выберите галерею для отображения."
4395
 
4396
+ #: admin/views/Options.php:2360
4397
+ msgid "Select the number of images displayed per page in Blog Style view."
4398
+ msgstr "Выберите количество изображений, отображаемых на странице в режиме просмотра Стиль блога."
4399
+
4400
+ #: admin/views/Options.php:2775 admin/views/Options.php:3070
4401
+ #: admin/views/Options.php:3308
4402
+ msgid "Select the parameter and order direction to sort the gallery group images with. E.g. Title and Ascending."
4403
+ msgstr "Выберите параметр и направление порядка для упорядочения изображений группы галереи. Например. Заголовок/название и По возрастанию."
4404
+
4405
+ #: admin/views/Options.php:1344 admin/views/Options.php:1570
4406
+ #: admin/views/Options.php:1804 admin/views/Options.php:1999
4407
+ #: admin/views/Options.php:2237 admin/views/Options.php:2394
4408
+ #: admin/views/Options.php:2569 admin/views/Options.php:2795
4409
+ #: admin/views/Options.php:3090 admin/views/Options.php:3328
4410
+ msgid "Select the parameter and order direction to sort the gallery images with. E.g. Title and Ascending."
4411
+ msgstr "Выберите параметр и направление порядка для упорядочения изображений в галереи. Например. Заголовок/название и По возрастанию."
4412
+
4413
+ #: admin/views/Galleries.php:386
4414
+ msgid "Select the type of gallery content. Mixed galleries can include all supported items. Alternatively, you can showcase images from one specific source only."
4415
+ msgstr "Выберите тип содержимого галереи. Смешанные галереи могут включать все поддерживаемые элементы. Кроме того, можно отображать изображения только из одного конкретного источника."
4416
+
4417
+ #: admin/views/Options.php:1716 admin/views/Options.php:2900
4418
+ #: admin/views/Options.php:3432
4419
+ msgid "Select the type of Mosaic galleries, Vertical or Horizontal."
4420
+ msgstr "Выберите тип галереи Мозаика - вертикальные или горизонтальные."
4421
 
4422
+ #: photo-gallery.php:644
4423
+ msgid "Selected %d item."
4424
+ msgstr "Выбран %d элемент."
4425
 
4426
+ #: photo-gallery.php:645
4427
+ msgid "Selected %d items."
4428
+ msgstr "Выбрано %d элементов."
4429
 
4430
+ #: admin/models/Galleries.php:1527 admin/views/Galleries.php:822
4431
+ msgid "Selected pricelist item longest dimension greater than some original images dimensions."
4432
+ msgstr "Самый длинный размер выбранного элемента прайс-листа превышает размеры некоторых исходных изображений."
4433
 
4434
+ #: wd/templates/display_overview.php:50
4435
+ msgid "SEO"
4436
+ msgstr "SEO"
4437
 
4438
+ #: admin/views/Themes.php:2482
4439
+ msgid "Separator color:"
4440
+ msgstr "Цвет разделителя:"
4441
 
4442
+ #: admin/views/Themes.php:2468
4443
+ msgid "Separator style:"
4444
+ msgstr "Стиль разделителя:"
4445
 
4446
+ #: admin/views/Themes.php:2462
4447
+ msgid "Separator width:"
4448
+ msgstr "Ширина разделителя:"
4449
 
4450
+ #: admin/views/Editimage.php:822
4451
+ msgid "Sepia"
4452
+ msgstr "Сепия"
4453
 
4454
+ #: admin/views/Options.php:1975
4455
+ msgid "Set the default dimensions of your slideshow galleries."
4456
+ msgstr "Установите размеры по умолчанию для галерей слайд-шоу."
4457
 
4458
+ #: admin/views/Options.php:3560
4459
+ msgid "Set the dimensions of image lightbox."
4460
+ msgstr "Установите размеры лайтбокса изображения."
4461
 
4462
+ #: admin/views/Options.php:3588
4463
+ msgid "Set the duration of lightbox animation effect."
4464
+ msgstr "Установите продолжительность эффекта анимации лайтбокса."
4465
 
4466
+ #: admin/views/Options.php:1956
4467
+ msgid "Set the duration of your slideshow animation effect."
4468
+ msgstr "Установите продолжительность эффекта анимации слайд-шоу."
4469
 
4470
+ #: admin/views/Options.php:3214
4471
+ msgid "Set the height of blocks in Extended gallery groups."
4472
+ msgstr "Установите высоту блоков в расширенных группах галереи."
4473
 
4474
+ #: admin/views/Options.php:694
4475
+ msgid "Set the interval when Instagram galleries will be updated, and will display new posts of your Instagram or Facebook account."
4476
+ msgstr "Установите интервал, с которым будут обновляться галереи Instagram и отображаться новые публикации из вашей учетной записи Instagram или Facebook."
4477
 
4478
+ #: admin/views/Options.php:2692 admin/views/Options.php:2989
4479
+ msgid "Set the maximum number of columns in gallery groups. Note, that the parent container needs to be large enough to display all columns."
4480
+ msgstr "Устанавливает макс. количество колонок в группах галереи. Обратите внимание, что основной контейнер должен быть достаточно большим, чтобы отобразить все колонки."
4481
 
4482
+ #: admin/views/Options.php:3225
4483
+ msgid "Set the maximum number of columns."
4484
+ msgstr "Установите макс. количество колонок."
4485
 
4486
+ #: admin/views/Options.php:1513
4487
+ msgid "Set the maximum number of image columns (or rows) in galleries. Note, that the parent container needs to be large enough to display all columns."
4488
+ msgstr "Установите макс. количество колонок (или рядов) изображений в галереях. Обратите внимание, что родительский контейнер должен быть достаточно большим для отображения всех колонок."
4489
 
4490
+ #: admin/views/Options.php:1287 admin/views/Options.php:2711
4491
+ #: admin/views/Options.php:3007 admin/views/Options.php:3244
4492
+ msgid "Set the maximum number of image columns in galleries. Note, that the parent container needs to be large enough to display all columns."
4493
+ msgstr "Устанавливает макс. количество колонок изображений в галереях. Обратите внимание, что родительский контейнер должен быть достаточно большим, чтобы отобразить все колонки."
4494
 
4495
+ #: admin/views/Options.php:2513
4496
+ msgid "Set the maximum number of images that are shown with Carousel display."
4497
+ msgstr "Установите макс. количество изображений, которые будут показаны при отображении Карусели."
4498
 
4499
+ #: admin/views/Options.php:2146
4500
+ msgid "Set the position of image descriptions in Slideshow view."
4501
+ msgstr "Установите позицию описаний изображений в режиме просмотра Слайд-шоу."
4502
 
4503
+ #: admin/views/Options.php:2099
4504
+ msgid "Set the position of image titles in Slideshow view."
4505
+ msgstr "Установите позицию заголовков изображений в режиме просмотра Слайд-шоу."
4506
 
4507
+ #: admin/views/Options.php:197
4508
+ msgid "Set the quality of gallery images. Provide a value from 0 to 100%."
4509
+ msgstr "Установите качество изображений галереи. Укажите значение от 0 до 100%."
 
4510
 
4511
+ #: admin/views/Options.php:2061 admin/views/Options.php:3628
4512
+ msgid "Set the size of your filmstrip. If the filmstrip is horizontal, this indicates its height, whereas for vertical filmstrips it sets the width."
4513
+ msgstr "Установите размер диафильма. Если диафильм горизонтальный, это указывает на его высоту, для вертикальных диафильмов задает ширину."
4514
 
4515
+ #: admin/views/Options.php:1142 framework/WDWLibrary.php:2646
4516
+ msgid "Set watermark"
4517
+ msgstr "Установить водяной знак"
4518
 
4519
+ #: admin/views/Options.php:1144
4520
+ msgid "Set Watermark"
4521
+ msgstr "Установить водяной знак"
4522
 
4523
+ #: admin/views/Themes.php:437 admin/views/Themes.php:1977
4524
+ msgid "Shadow:"
4525
+ msgstr "Тень:"
4526
 
4527
+ #: admin/views/Themes.php:3586
4528
+ msgid "Share buttons color:"
4529
+ msgstr "Цвет кнопок Поделиться:"
4530
 
4531
+ #: frontend/views/BWGViewGalleryBox.php:796
4532
+ #: frontend/views/BWGViewGalleryBox.php:797
4533
+ msgid "Share on Facebook"
4534
+ msgstr "Поделиться в Facebook"
4535
 
4536
+ #: frontend/views/BWGViewGalleryBox.php:810
4537
+ #: frontend/views/BWGViewGalleryBox.php:811
4538
+ msgid "Share on Pinterest"
4539
+ msgstr "Поделиться в Pinterest"
4540
 
4541
+ #: frontend/views/BWGViewGalleryBox.php:817
4542
+ #: frontend/views/BWGViewGalleryBox.php:818
4543
+ msgid "Share on Tumblr"
4544
+ msgstr "Поделиться в Tumblr"
4545
 
4546
+ #: frontend/views/BWGViewGalleryBox.php:803
4547
+ #: frontend/views/BWGViewGalleryBox.php:804
4548
+ msgid "Share on Twitter"
4549
+ msgstr "Поделиться в Twitter"
 
 
4550
 
4551
+ #: admin/views/Shortcode.php:554
4552
+ msgid "Shortcode"
4553
+ msgstr "Шорткод"
4554
 
4555
+ #: admin/views/Options.php:1375 admin/views/Options.php:1601
4556
+ #: admin/views/Options.php:1835 admin/views/Options.php:2268
4557
+ #: admin/views/Options.php:2425 admin/views/Options.php:2826
4558
+ #: admin/views/Options.php:3121 admin/views/Options.php:3359
4559
+ msgid "Show \"Order by\" dropdown list"
4560
+ msgstr "Показать раскрывающийся список \"Упорядочить по\""
4561
 
4562
+ #: admin/views/Options.php:3708
4563
+ msgid "Show Captcha for comments"
4564
+ msgstr "Показать Captcha для комментариев"
 
 
4565
 
4566
+ #: photo-gallery.php:1441
4567
+ msgid "Show Comments"
4568
+ msgstr "Показать комментарии"
4569
 
4570
+ #: frontend/views/BWGViewGalleryBox.php:786
4571
+ msgid "Show comments"
4572
+ msgstr "Показать комментарии"
 
 
4573
 
4574
+ #: admin/views/Options.php:261
4575
+ msgid "Show comments for custom posts"
4576
+ msgstr "Показать комментарии к пользовательских записям"
4577
 
4578
+ #: admin/views/Options.php:241
4579
+ msgid "Show custom posts"
4580
+ msgstr "Показать пользовательские записи"
4581
 
4582
+ #: admin/views/Options.php:3806
4583
+ msgid "Show Display Original Image button"
4584
+ msgstr "Кнопка Показать исходное изображение"
 
 
4585
 
4586
+ #: admin/views/Options.php:3816
4587
+ msgid "Show download button"
4588
+ msgstr "Показать кнопку скачивания"
 
 
4589
 
4590
+ #: photo-gallery.php:1439
4591
+ msgid "Show Ecommerce"
4592
+ msgstr "Показать электронную торговлю"
4593
 
4594
+ #: admin/views/Options.php:3914
4595
+ msgid "Show Ecommerce button"
4596
+ msgstr "Показать кнопку электронной торговли"
4597
 
4598
+ #: admin/views/Options.php:1467 admin/views/Options.php:1694
4599
+ #: admin/views/Options.php:1916 admin/views/Options.php:2967
4600
+ #: admin/views/Options.php:3193 admin/views/Options.php:3499
4601
+ msgid "Show ecommerce icon"
4602
+ msgstr "Показать значок электронной торговли"
4603
 
4604
+ #: admin/views/Options.php:3697
4605
+ msgid "Show Email for comments"
4606
+ msgstr "Показать Email для комментариев"
4607
 
4608
+ #: admin/views/Options.php:3401
4609
+ msgid "Show extended gallery group description"
4610
+ msgstr "Показать описание расширенной группы галереи"
4611
 
4612
+ #: admin/views/Options.php:3867
4613
+ msgid "Show Facebook button"
4614
+ msgstr "Показать кнопку Facebook"
4615
 
4616
+ #: admin/views/Options.php:1407 admin/views/Options.php:1633
4617
+ #: admin/views/Options.php:1867 admin/views/Options.php:2300
4618
+ #: admin/views/Options.php:2457 admin/views/Options.php:2630
4619
+ msgid "Show gallery description"
4620
+ msgstr "Показать описание галереи"
4621
 
4622
+ #: admin/views/Options.php:2858 admin/views/Options.php:3153
4623
+ #: admin/views/Options.php:3391
4624
+ msgid "Show gallery group or gallery description"
4625
+ msgstr "Показать описание галереи или группы галерей"
4626
 
4627
+ #: admin/views/Options.php:2848 admin/views/Options.php:3143
4628
+ #: admin/views/Options.php:3381
4629
+ msgid "Show gallery group or gallery title"
4630
+ msgstr "Показать название галереи или группы галерей"
4631
 
4632
+ #: admin/views/Options.php:1397 admin/views/Options.php:1623
4633
+ #: admin/views/Options.php:1857 admin/views/Options.php:2290
4634
+ #: admin/views/Options.php:2447 admin/views/Options.php:2619
4635
+ #: admin/views/Options.php:2868
4636
+ msgid "Show gallery title"
4637
+ msgstr "Показать название галереи"
4638
 
4639
+ #: admin/views/Options.php:3826
4640
+ msgid "Show image counter"
4641
+ msgstr "Показать счетчик изображений"
 
 
4642
 
4643
+ #: admin/views/Options.php:2114 admin/views/Options.php:2208
4644
+ #: admin/views/Options.php:2478
4645
+ msgid "Show image description"
4646
+ msgstr "Показать описание изображения"
4647
 
4648
+ #: admin/views/Options.php:1428 admin/views/Options.php:1654
4649
+ msgid "Show image descriptions"
4650
+ msgstr "Показать описания изображений"
 
 
 
4651
 
4652
+ #: admin/views/Options.php:3731
4653
+ msgid "Show image info"
4654
+ msgstr "Показать информацию об изображении"
 
4655
 
4656
+ #: admin/views/Options.php:1417 admin/views/Options.php:1643
4657
+ #: admin/views/Options.php:1877 admin/views/Options.php:2067
4658
+ #: admin/views/Options.php:2199 admin/views/Options.php:2467
4659
+ #: admin/views/Options.php:2640 admin/views/Options.php:2927
4660
+ #: admin/views/Options.php:3163 admin/views/Options.php:3459
4661
+ msgid "Show image title"
4662
+ msgstr "Показать заголовок изображения"
4663
 
4664
+ #: frontend/views/BWGViewGalleryBox.php:784 photo-gallery.php:1457
4665
+ msgid "Show info"
4666
+ msgstr "Показать информацию"
4667
 
4668
+ #: admin/views/Albums.php:119 admin/views/Albumsgalleries.php:116
4669
+ #: admin/views/Galleries.php:127 admin/views/Galleries.php:804
4670
+ #: admin/views/Themes.php:233
4671
+ msgid "Show more details"
4672
+ msgstr "Показать больше информации"
4673
 
4674
+ #: admin/views/Options.php:2034 admin/views/Options.php:3761
4675
+ msgid "Show Next / Previous buttons"
4676
+ msgstr "Показать кнопки Далее/Назад"
4677
+
4678
+ #: admin/views/Options.php:1419 admin/views/Options.php:1469
4679
+ #: admin/views/Options.php:1645 admin/views/Options.php:1696
4680
+ #: admin/views/Options.php:1879 admin/views/Options.php:1918
4681
+ #: admin/views/Options.php:2870 admin/views/Options.php:2929
4682
+ #: admin/views/Options.php:2969 admin/views/Options.php:3165
4683
+ #: admin/views/Options.php:3195 admin/views/Options.php:3461
4684
+ #: admin/views/Options.php:3501
4685
+ msgid "Show on hover"
4686
+ msgstr "Показать при наведении"
4687
 
4688
+ #: admin/views/Galleries.php:678 photo-gallery.php:642
4689
+ msgid "Show order column"
4690
+ msgstr "Показать колонку упорядочения"
4691
 
4692
+ #: admin/views/Options.php:3889
4693
+ msgid "Show Pinterest button"
4694
+ msgstr "Показывать кнопку Pinterest"
 
 
 
4695
 
4696
+ #: admin/views/Options.php:1438 admin/views/Options.php:1665
4697
+ #: admin/views/Options.php:1887 admin/views/Options.php:2938
4698
+ #: admin/views/Options.php:3470
4699
+ msgid "Show Play icon on video thumbnails"
4700
+ msgstr "Показывать значок воспроизведения на миниатюрах видео"
 
4701
 
4702
+ #: frontend/views/BWGViewGalleryBox.php:788 photo-gallery.php:1459
4703
+ msgid "Show rating"
4704
+ msgstr "Показать рейтинг"
4705
 
4706
+ #: admin/views/Options.php:1349 admin/views/Options.php:1575
4707
+ #: admin/views/Options.php:1809 admin/views/Options.php:2242
4708
+ #: admin/views/Options.php:2399 admin/views/Options.php:2800
4709
+ #: admin/views/Options.php:3095 admin/views/Options.php:3333
4710
+ msgid "Show search box"
4711
+ msgstr "Показать окно поиска"
4712
 
4713
+ #: admin/views/Options.php:1385 admin/views/Options.php:1611
4714
+ #: admin/views/Options.php:1845 admin/views/Options.php:2278
4715
+ #: admin/views/Options.php:2435 admin/views/Options.php:2836
4716
+ #: admin/views/Options.php:3131 admin/views/Options.php:3369
4717
+ msgid "Show tag box"
4718
+ msgstr "Показать окно метки"
4719
 
4720
+ #: admin/views/WidgetTags.php:88
4721
+ msgid "Show Tag Names:"
4722
+ msgstr "Показать названия метки:"
4723
 
4724
+ #: admin/views/Options.php:3776
4725
+ msgid "Show the number of views, when a gallery image was opened in lightbox."
4726
+ msgstr "Показывает количество просмотров при открытии изображения в лайтбоксе."
4727
+
4728
+ #: admin/views/Options.php:3900
4729
+ msgid "Show Tumblr button"
4730
+ msgstr "Показать кнопку Tumblr"
4731
+
4732
+ #: admin/views/Options.php:3878
4733
+ msgid "Show Twitter button"
4734
+ msgstr "Показать кнопку Twitter"
4735
+
4736
+ #: admin/views/Options.php:710
4737
+ msgid "Sign in with Instagram"
4738
+ msgstr "Войти через Instagram"
4739
+
4740
+ #: admin/views/Options.php:719
4741
+ msgid "Sign out from Instagram"
4742
+ msgstr "Выйти из Instagram"
4743
+
4744
+ #: admin/views/Options.php:1295 admin/views/Options.php:1521
4745
+ #: admin/views/Options.php:1755 admin/views/Options.php:2343
4746
+ #: admin/views/Options.php:2729 admin/views/Options.php:3024
4747
+ #: admin/views/Options.php:3262
4748
+ msgid "Simple"
4749
+ msgstr "Простой"
4750
+
4751
+ #: wd/templates/display_subscribe.php:19
4752
+ msgid "Site URL, Wordpress version"
4753
+ msgstr "URL сайта, версия WordPress"
4754
+
4755
+ #: admin/views/Galleries.php:774 admin/views/Options.php:1334
4756
+ #: admin/views/Options.php:1560 admin/views/Options.php:1794
4757
+ #: admin/views/Options.php:1989 admin/views/Options.php:2227
4758
+ #: admin/views/Options.php:2384 admin/views/Options.php:2559
4759
+ #: admin/views/Options.php:2785 admin/views/Options.php:3080
4760
+ #: admin/views/Options.php:3318 filemanager/view.php:154
4761
+ #: frontend/views/view.php:494
4762
+ msgid "Size"
4763
+ msgstr "Размер"
4764
+
4765
+ #: admin/controllers/Themes.php:301 admin/controllers/Themes.php:309
4766
+ msgid "Skew"
4767
+ msgstr "Наклон"
4768
+
4769
+ #: admin/views/LibSubscribe.php:83 wd/templates/display_subscribe.php:29
4770
+ msgid "Skip"
4771
+ msgstr "Пропустить"
4772
+
4773
+ #: wd/templates/display_deactivation_popup.php:22
4774
+ msgid "Skip and Deactivate"
4775
+ msgstr "Пропустить и деактивировать"
4776
+
4777
+ #: admin/views/Editimage.php:826
4778
+ msgid "Slate"
4779
  msgstr ""
4780
 
4781
+ #: admin/controllers/WidgetSlideshow.php:48 admin/views/Options.php:1250
4782
+ msgid "Slice Horizontal"
4783
+ msgstr "Срез по горизонтали"
4784
+
4785
+ #: admin/controllers/WidgetSlideshow.php:49 admin/views/Options.php:1251
4786
+ msgid "Slice Vertical"
4787
+ msgstr "Срез по вертикали"
4788
+
4789
+ #: admin/controllers/WidgetSlideshow.php:50 admin/views/Options.php:1252
4790
+ msgid "Slide Horizontal"
4791
+ msgstr "Слайд по горизонтали"
4792
+
4793
+ #: admin/controllers/WidgetSlideshow.php:51 admin/views/Options.php:1253
4794
+ msgid "Slide Vertical"
4795
+ msgstr "Слайд по вертикали"
4796
+
4797
+ #: admin/views/Themes.php:1474
4798
+ msgid "Slider bullet active background color: "
4799
+ msgstr "Цвет активного фона маркера слайдера: "
4800
+
4801
+ #: admin/views/Themes.php:1486
4802
+ msgid "Slider bullet active border color: "
4803
+ msgstr "Цвет активной рамки маркера слайдера: "
4804
+
4805
+ #: admin/views/Themes.php:1480
4806
+ msgid "Slider bullet active border width:"
4807
+ msgstr "Ширина активной рамки маркера слайдера:"
4808
+
4809
+ #: admin/views/Themes.php:1462
4810
+ msgid "Slider bullet background color:"
4811
+ msgstr "Цвет фона маркера слайдера:"
4812
+
4813
+ #: admin/views/Themes.php:1455
4814
+ msgid "Slider bullet border radius: "
4815
+ msgstr "Радиус рамки маркера слайдера: "
4816
+
4817
+ #: admin/views/Themes.php:1449
4818
+ msgid "Slider bullet height:"
4819
+ msgstr "Высота маркера слайдера:"
4820
+
4821
+ #: admin/views/Themes.php:1468
4822
+ msgid "Slider bullet margin:"
4823
+ msgstr "Внешний отступ маркера слайдера:"
4824
+
4825
+ #: admin/views/Themes.php:1443
4826
+ msgid "Slider bullet width: "
4827
+ msgstr "Ширина маркера слайдера: "
4828
+
4829
+ #: admin/controllers/Options.php:59 admin/controllers/Shortcode.php:43
4830
+ #: admin/controllers/Themes.php:246 admin/views/Galleries.php:205
4831
+ #: admin/views/Options.php:469 admin/views/Options.php:2884
4832
+ #: admin/views/Options.php:3416 admin/views/Shortcode.php:110
4833
+ #: photo-gallery.php:1587 photo-gallery.php:1625
4834
+ msgid "Slideshow"
4835
+ msgstr "Слайд-шоу"
4836
+
4837
+ #: admin/views/Options.php:1970
4838
+ msgid "Slideshow dimensions"
4839
+ msgstr "Размеры слайд-шоу"
4840
+
4841
+ #: admin/views/Options.php:1933
4842
+ msgid "Slideshow effect"
4843
+ msgstr "Эффект слайд-шоу"
4844
+
4845
+ #: admin/views/WidgetSlideshow.php:99
4846
+ msgid "Slideshow effect:"
4847
+ msgstr "Эффект слайд-шоу:"
4848
 
4849
+ #: admin/views/Options.php:2057
4850
+ msgid "Slideshow filmstrip size"
4851
+ msgstr "Размер диафильма слайд-шоу"
 
 
4852
 
4853
+ #: admin/views/Licensing.php:25
4854
+ msgid "Slideshow/Lightbox Effects"
4855
+ msgstr "Эффекты слайд-шоу/лайтбокс"
4856
 
4857
+ #: admin/views/Albums.php:287 admin/views/Galleries.php:341
4858
+ msgid "Slug"
4859
+ msgstr "Ярлык"
 
 
 
 
 
4860
 
4861
+ #: admin/views/LibSubscribe.php:62
4862
+ msgid "So, I handcrafted a step-by-step ebook to make it super easy for you. Enjoy "
4863
+ msgstr "Итак, я создал пошаговую электронную книгу, чтобы вам было очень легко. Наслаждаться "
4864
 
4865
+ #: admin/views/Options.php:681
4866
+ msgid "Social"
4867
+ msgstr "Социальные сети"
4868
 
4869
+ #: admin/views/Galleries.php:465
4870
+ msgid "Social Bulk Embed"
4871
+ msgstr "Пакетная вставка соцсетей"
4872
 
4873
+ #: photo-gallery.php:1599
4874
+ msgid "Social Options"
4875
+ msgstr "Параметры соцсетей"
4876
 
4877
+ #: admin/controllers/Themes.php:260
4878
+ msgid "Solid"
4879
+ msgstr "Сплошной"
 
 
 
4880
 
4881
+ #: filemanager/controller.php:417
4882
+ msgid "Some of the files couldn't be removed."
4883
+ msgstr "Не удалось удалить некоторые файлы."
 
4884
 
4885
+ #: photo-gallery.php:662
4886
+ msgid "Sorry, only jpg, jpeg, gif, png types are allowed."
4887
+ msgstr "Разрешены только типы jpg, jpeg, gif, png."
4888
 
4889
+ #: admin/views/Widget.php:157
4890
+ msgid "Sort:"
4891
+ msgstr "Сортировка:"
4892
 
4893
+ #: admin/views/Options.php:2334
4894
+ msgid "Specify the default width of images in Blog Style view."
4895
+ msgstr "Укажите ширину изображений по умолчанию в представлении Стиль блога."
 
 
 
 
 
4896
 
4897
+ #: admin/views/Options.php:2194
4898
+ msgid "Specify the default width of images in Image Browser view."
4899
+ msgstr "Укажите ширину изображений по умолчанию в представлении Браузер изображений."
 
 
4900
 
4901
+ #: admin/views/Options.php:2524
4902
+ msgid "Specify the dimensions of carousel images in pixels."
4903
+ msgstr "Указывает размеры изображений в карусели в пикселях."
 
 
4904
 
4905
+ #: admin/views/Options.php:2702 admin/views/Options.php:2998
4906
+ #: admin/views/Options.php:3235
4907
+ msgid "Specify the dimensions of thumbnails in gallery groups."
4908
+ msgstr "Укажите размеры миниатюр в группах галереи."
 
4909
 
4910
+ #: admin/views/Options.php:2544
4911
+ msgid "Specify the fixed width of Carousel gallery container."
4912
+ msgstr "Указывает фиксированную ширину контейнера карусели галереи Карусель."
 
4913
 
4914
+ #: admin/views/Options.php:924 admin/views/Shortcode.php:443
4915
+ msgid "Specify the font size of the advertisement text."
4916
+ msgstr "Укажите размер шрифта текста рекламного объявления."
 
 
 
 
4917
 
4918
+ #: admin/views/Options.php:1069
4919
+ msgid "Specify the font size of the watermark text."
4920
+ msgstr "Укажите размер шрифта текста водяного знака."
 
4921
 
4922
+ #: admin/views/Options.php:188
4923
+ msgid "Specify the maximum dimensions of generated thumbnails. They must be larger than frontend thumbnail dimensions."
4924
+ msgstr "Укажите максимальные размеры создаваемых миниатюр. Они должны быть больше, чем размеры миниатюр веб-интерфейса."
4925
 
4926
+ #: admin/views/Options.php:176
4927
+ msgid "Specify the maximum dimensions of uploaded images (set 0 for original size)."
4928
+ msgstr "Укажите макс. размеры загружаемых изображений (для оригинального размера установите 0)."
 
4929
 
4930
+ #: admin/views/Options.php:2745 admin/views/Options.php:3040
4931
+ #: admin/views/Options.php:3278
4932
+ msgid "Specify the number of galleries/gallery groups to display per page. Setting this option to 0 shows all items."
4933
+ msgstr "Укажите количество галерей/групп галерей для отображения на странице. Если для этого параметра установлено значение 0, будут отображаться все элементы."
 
 
4934
 
4935
+ #: admin/views/Options.php:1320 admin/views/Options.php:1546
4936
+ #: admin/views/Options.php:1780 admin/views/Options.php:2370
4937
+ msgid "Specify the number of images to display per load on galleries."
4938
+ msgstr "Укажите количество изображений, отображаемых при каждой загрузке в галереях."
 
 
4939
 
4940
+ #: admin/views/Options.php:1311 admin/views/Options.php:1537
4941
+ #: admin/views/Options.php:1771 admin/views/Options.php:2754
4942
+ #: admin/views/Options.php:3049 admin/views/Options.php:3287
4943
+ msgid "Specify the number of images to display per page on galleries. Setting this option to 0 shows all items."
4944
+ msgstr "Укажите количество изображений, отображаемых на странице в галереях. Если для этого параметра установлено значение 0, будут отображаться все элементы."
 
4945
 
4946
+ #: admin/views/Options.php:236
4947
+ msgid "Specify the number of images to preload, e.g. 5 (set 0 for all)."
4948
+ msgstr "Укажите количество изображений для предварительной загрузки, например, 5 (установите 0 для всех)."
 
 
 
4949
 
4950
+ #: admin/views/Options.php:968 admin/views/Shortcode.php:471
4951
+ msgid "Specify the opacity of the advertisement. The value must be between 0 to 100."
4952
+ msgstr "Укажите непрозрачность рекламы. Значение должно быть в диапазоне от 0 до 100."
 
 
4953
 
4954
+ #: admin/views/Options.php:1116
4955
+ msgid "Specify the opacity of the watermark. The value must be between 0 to 100."
4956
+ msgstr "Укажите непрозрачность водяного знака. Значение должно быть в диапазоне от 0 до 100."
 
 
4957
 
4958
+ #: admin/views/Options.php:1060
4959
+ msgid "Specify the size of watermark on images in percent."
4960
+ msgstr "Укажите размер водяного знака на изображениях в процентах."
4961
 
4962
+ #: admin/views/Options.php:2589
4963
+ msgid "Specify the time interval between rotations in Photo Gallery's Carousel view."
4964
+ msgstr "Укажите интервал времени между поворотами в представлении \"Карусель\" фотогалереи."
 
 
 
 
4965
 
4966
+ #: admin/views/Options.php:1965
4967
+ msgid "Specify the time interval between slides in Photo Gallery's Slideshow view."
4968
+ msgstr "Укажите интервал времени между слайдами в режиме слайд-шоу фотогалереи."
4969
 
4970
+ #: admin/views/Options.php:3608
4971
+ msgid "Specify the time interval of autoplay in Photo Gallery lightbox."
4972
+ msgstr "Укажите интервал времени автозапуска в лайтбоксе фотогалереи."
4973
 
4974
+ #: admin/controllers/Themes.php:324
4975
+ msgid "Square"
4976
+ msgstr "Квадрат"
4977
 
4978
+ #: admin/controllers/Themes.php:319
4979
+ msgid "Star"
4980
+ msgstr "Звезда"
4981
 
4982
+ #: frontend/views/BWGViewGalleryBox.php:1068
4983
+ msgid "Submit"
4984
+ msgstr "Отправить"
4985
 
4986
+ #: wd/templates/display_deactivation_popup.php:23
4987
+ msgid "Submit and Deactivate"
4988
+ msgstr "Отправить и деактивировать"
4989
 
4990
+ #: admin/views/Uninstall.php:31
4991
+ msgid "support team"
4992
+ msgstr "команда поддержки"
 
 
 
4993
 
4994
+ #: wd/includes/notices.php:210
4995
+ msgid "Sure! I'd love to!"
4996
+ msgstr "Конечно! Я бы хотел!"
4997
 
4998
+ #: admin/views/Options.php:309
4999
+ msgid "Switch off right-click on your gallery images by enabling this setting."
5000
+ msgstr "Отключите нажатие правой кнопкой мыши по изображениям в галерее, включив этот параметр."
5001
 
5002
+ #: admin/views/Shortcode.php:300
5003
+ msgid "Tag"
5004
+ msgstr "Метка"
5005
 
5006
+ #: photo-gallery.php:1700
5007
+ msgid "Tag Cloud"
5008
+ msgstr "Облако меток"
5009
 
5010
+ #: admin/views/Options.php:808
5011
+ msgid "Tag permission"
5012
+ msgstr "Разрешение на метку"
 
 
 
5013
 
5014
+ #: admin/controllers/AddTags.php:53 admin/controllers/Themes.php:255
5015
+ #: admin/views/Galleries.php:844 photo-gallery.php:487
5016
+ msgid "Tags"
5017
+ msgstr "Метки"
5018
 
5019
+ #: admin/views/Themes.php:4791
5020
+ msgid "Tags filter type:"
5021
+ msgstr "Тип фильтра меток:"
5022
 
5023
+ #: photo-gallery.php:1450
5024
+ msgid "tags selected"
5025
+ msgstr "выбранные метки"
5026
 
5027
+ #: wd/includes/deactivate.php:22
5028
+ msgid "Technical problems / hard to use"
5029
+ msgstr "Технические проблемы / сложность в использовании"
 
 
5030
 
5031
+ #: wd/includes/deactivate.php:34
5032
+ msgid "Temporary deactivation"
5033
+ msgstr "Временная деактивация"
 
5034
 
5035
+ #: wd/templates/display_subscribe.php:45
5036
+ msgid "Terms of Use"
5037
+ msgstr "Условия использования"
 
 
5038
 
5039
+ #: admin/views/Options.php:859 admin/views/Options.php:1018
5040
+ #: admin/views/Shortcode.php:383 admin/views/Themes.php:4471
5041
+ #: admin/views/WidgetTags.php:83
5042
+ msgid "Text"
5043
+ msgstr "Текст"
5044
 
5045
+ #: admin/views/Themes.php:2589
5046
+ msgid "Text background color:"
5047
+ msgstr "Цвет фона текста:"
5048
 
5049
+ #: admin/views/Themes.php:2576
5050
+ msgid "Text border color:"
5051
+ msgstr "Цвет рамки текста:"
 
5052
 
5053
+ #: admin/views/Themes.php:2562
5054
+ msgid "Text border style:"
5055
+ msgstr "Стиль рамки текста:"
5056
 
5057
+ #: admin/views/WidgetTags.php:120
5058
+ msgid "Text Color:"
5059
+ msgstr "Цвет текста:"
 
5060
 
5061
+ #: admin/views/Themes.php:2582
5062
+ msgid "Text div border radius:"
5063
+ msgstr "Радиус рамки div текста:"
5064
 
5065
+ #: admin/views/Themes.php:2556
5066
+ msgid "Text div border width:"
5067
+ msgstr "Ширина рамки div текста:"
5068
 
5069
+ #: admin/views/Themes.php:2549
5070
+ msgid "Text div padding:"
5071
+ msgstr "Внутренний отступ div текста:"
5072
 
5073
+ #: photo-gallery.php:568 photo-gallery.php:573
5074
+ msgid "The %s class not exist."
5075
+ msgstr "Класс %s не существует."
5076
 
5077
+ #: frontend/controllers/BWGControllerGalleryBox.php:80
5078
+ #: frontend/controllers/BWGControllerGalleryBox.php:85
5079
+ #: frontend/controllers/BWGControllerGalleryBox.php:94
5080
+ #: frontend/controllers/BWGControllerGalleryBox.php:102
5081
+ #: frontend/controllers/BWGControllerGalleryBox.php:112
5082
+ msgid "The %s field is required."
5083
+ msgstr "Поле %s обязательно."
5084
 
5085
+ #: frontend/controllers/BWGControllerGalleryBox.php:89
5086
+ msgid "The %s field must contain a valid email address."
5087
+ msgstr "Поле %s должно содержать действительный адрес электронной почты."
 
 
5088
 
5089
+ #: photo-gallery.php:547
5090
+ msgid "The controller %s file not exist."
5091
+ msgstr "Файл контроллера %s не существует."
5092
 
5093
+ #: admin/views/Options.php:1278 admin/views/Options.php:2721
5094
+ #: admin/views/Options.php:3016 admin/views/Options.php:3254
5095
+ msgid "The default dimensions of thumbnails which will display on published galleries."
5096
+ msgstr "Размеры миниатюр по умолчанию, которые будут отображаться в опубликованных галереях."
 
5097
 
5098
+ #: admin/views/Options.php:1503 admin/views/Options.php:1747
5099
+ msgid "The default size of thumbnails which will display on published galleries."
5100
+ msgstr "Размер миниатюр по умолчанию, которые будут отображаться в опубликованных галереях."
 
5101
 
5102
+ #: framework/WDWLibraryEmbed.php:338 framework/WDWLibraryEmbed.php:347
5103
+ #: framework/WDWLibraryEmbed.php:349
5104
+ msgid "The entered URL is incorrect. Please check the URL and try again."
5105
+ msgstr "Введен неверный URL-адрес. Проверьте URL-адрес и повторите попытку."
 
5106
 
5107
+ #: admin/views/Uninstall.php:44
5108
+ msgid "The following Database Tables will be deleted:"
5109
+ msgstr "Следующие таблицы базы данных будут удалены:"
5110
 
5111
+ #: photo-gallery.php:1524
5112
+ msgid "The gallery plugin is easily customizable. You can edit themes changing sizes and colors for different features. Specify the number of images to display in a single row in an gallery group. Additionally, you can customize thumbnail images by cropping, flipping and rotating them."
5113
+ msgstr "Плагин галереи легко настраивается. Вы можете редактировать темы, изменяя размеры и цвета для различных функций. Укажите количество изображений для отображения в одном ряду в группе галереи. Кроме того, вы можете настраивать изображения миниатюр, кадрировать, переворачивая и вращая их."
5114
 
5115
+ #: frontend/views/BWGViewGalleryBox.php:631
5116
+ msgid "The image has been deleted."
5117
+ msgstr "Изображение было удалено."
5118
 
5119
+ #: framework/WDWLibrary.php:123
5120
+ msgid "The item is successfully set as default."
5121
+ msgstr "Элемент успешно установлен по умолчанию."
5122
 
5123
+ #: admin/views/Galleries.php:570
5124
+ msgid "The maximum size of resized image."
5125
+ msgstr "Макс. размер измененного изображения."
5126
 
5127
+ #: admin/views/Themes.php:3530 admin/views/Themes.php:3543
5128
+ #: admin/views/Themes.php:3550 admin/views/Themes.php:3557
5129
+ #: admin/views/Themes.php:3564
5130
+ msgid "The option does not apply to Full-width lightbox."
5131
+ msgstr "Параметр не применяется к полноформатному лайтбоксу."
5132
 
5133
+ #: framework/howto/data.php:95
5134
+ msgid "The Photo Gallery will now appear in the section of the site you’ve chosen."
5135
+ msgstr "Photo Gallery теперь появится в выбранном вами разделе сайта."
5136
 
5137
+ #: photo-gallery.php:1520
5138
+ msgid "The plugin allows creating unlimited number of galleries or gallery groups and upload images in each gallery as many as you wish. Add single/ multiple galleries into your pages and posts with the help of functional shortcode; visual shortcodes for an easier management."
5139
+ msgstr "Плагин позволяет создавать неограниченное количество галерей или групп галерей и загружать изображения в каждую галерею столько, сколько вы пожелаете. Добавьте одну или несколько галерей на свои страницы и записи с помощью функциональных шорткодов; визуальные шорткоды для более удобного управления."
5140
 
5141
+ #: admin/views/Options.php:2019
5142
+ msgid "The slideshow images will be shuffled in case this setting is enabled."
5143
+ msgstr "Если этот параметр включен, изображения в слайд-шоу будут перетасовываться."
5144
 
5145
+ #: framework/WDWLibrary.php:178
5146
+ msgid "The slug must be unique."
5147
+ msgstr "Ярлык должен быть уникальным."
5148
 
5149
+ #: admin/views/Editimage.php:322
5150
+ msgid "The thumbnail was successfully cropped."
5151
+ msgstr "Миниатюра успешно откадрирована."
5152
 
5153
+ #: admin/views/Options.php:1737 admin/views/Options.php:2921
5154
+ #: admin/views/Options.php:3453
5155
+ msgid "The total width of mosaic galleries as a percentage of container's width."
5156
+ msgstr "Общая ширина мозаичных галерей в процентах от ширины контейнера."
5157
 
5158
+ #: photo-gallery.php:552
5159
+ msgid "The view %s file not exist."
5160
+ msgstr "Файл представления %s не существует."
 
 
 
 
5161
 
5162
+ #: admin/views/Shortcode.php:317
5163
+ msgid "Theme"
5164
+ msgstr "Тема"
 
5165
 
5166
+ #: admin/views/Options.php:819
5167
+ msgid "Theme permission"
5168
+ msgstr "Разрешение на тему"
5169
 
5170
+ #: framework/WDWLibrary.php:190
5171
+ msgid "Theme successfully copied."
5172
+ msgstr "Тема успешно скопирована."
5173
 
5174
+ #: admin/views/Themes.php:346
5175
+ msgid "Theme title"
5176
+ msgstr "Название темы"
 
 
 
 
5177
 
5178
+ #: admin/controllers/Themes.php:88 photo-gallery.php:491
5179
+ msgid "Themes"
5180
+ msgstr "Темы"
5181
 
5182
+ #: admin/views/Widget.php:173 admin/views/WidgetSlideshow.php:147
5183
+ #: admin/views/WidgetTags.php:124
5184
+ msgid "Themes:"
5185
+ msgstr "Темы:"
 
 
 
5186
 
5187
+ #: photo-gallery.php:1435
5188
+ msgid "There are no images matching your search."
5189
+ msgstr "Нет изображений, соответствующих вашему поиску."
5190
 
5191
+ #: frontend/views/view.php:126 frontend/views/view.php:228
5192
+ msgid "There are no images."
5193
+ msgstr "Изображения отсутствуют."
5194
 
5195
+ #: filemanager/view.php:297
5196
+ msgid "There has been a problem while trying to upload the following images. Please try to upload them again."
5197
+ msgstr "Возникла проблема при попытке загрузить следующие изображения. Попробуйте загрузить их еще раз."
5198
 
5199
+ #: frontend/controllers/controller.php:94
5200
+ msgid "There is no album selected or the gallery was deleted."
5201
+ msgstr "Не выбран альбом или галерея была удалена."
 
 
 
5202
 
5203
+ #: frontend/controllers/controller.php:282
5204
+ #: frontend/controllers/controller.php:316
5205
+ msgid "There is no gallery selected or the gallery was deleted."
5206
+ msgstr "Галерея не выбрана или была удалена."
5207
 
5208
+ #: admin/views/Shortcode.php:650
5209
+ msgid "There is no shortcode with such ID!"
5210
+ msgstr "Нет шорткода с таким ID!"
 
 
5211
 
5212
+ #: photo-gallery.php:657 photo-gallery.php:659
5213
+ msgid "This action will reset gallery type to mixed and will save that choice. You cannot undo it."
5214
+ msgstr "Это действие сбросит тип галереи на смешанный и сохранит этот выбор. Отменить его нельзя."
5215
 
5216
+ #: addons/addons.php:8
5217
+ msgid "This addon integrates NextGen with Photo Gallery allowing to import images and related data from NextGen to use with Photo Gallery"
5218
+ msgstr "Это дополнение интегрирует NextGen с Photo Gallery, позволяющий импортировать изображения и связанные с ними данные из NextGen для использования с Photo Gallery"
 
5219
 
5220
+ #: admin/views/Options.php:1940 admin/views/Options.php:3572
5221
+ #: admin/views/WidgetSlideshow.php:105
5222
+ msgid "This effect is disabled in free version."
5223
+ msgstr "Этот эффект отключен в бесплатной версии."
5224
 
5225
+ #: photo-gallery.php:1434
5226
+ msgid "This is not a valid email address."
5227
+ msgstr "Недопустимый email-адрес."
 
5228
 
5229
+ #: admin/views/Options.php:2534
5230
+ msgid "This option defines the proportion of dimensions between neighboring images in the carousel."
5231
+ msgstr "Этот параметр определяет пропорцию размеров между соседними изображениями в карусели."
5232
 
5233
+ #: admin/views/Galleries.php:465 photo-gallery.php:127
5234
+ msgid "This option is available in Premium version"
5235
+ msgstr "Эта опция доступна в Премиум-версии"
5236
 
5237
+ #: admin/views/AdminView.php:348 admin/views/Galleries.php:457
5238
+ #: admin/views/Galleries.php:788 admin/views/Galleries.php:789
5239
+ #: admin/views/Galleries.php:790 admin/views/Options.php:186
5240
+ #: admin/views/Options.php:1143 admin/views/Options.php:1146
5241
+ #: filemanager/view.php:66
5242
+ msgid "This option is disabled in demo."
5243
+ msgstr "В демо-версии эта опция отключена."
5244
 
5245
+ #: admin/views/Options.php:1299 admin/views/Options.php:1525
5246
+ #: admin/views/Options.php:1759 admin/views/Options.php:2347
5247
+ #: admin/views/Options.php:2733 admin/views/Options.php:3028
5248
+ #: admin/views/Options.php:3266
5249
+ msgid "This option removes all types of pagination from your galleries."
5250
+ msgstr "Этот параметр удаляет все типы разбиения на страницы из галерей."
5251
 
5252
+ #: admin/views/Options.php:3821
5253
+ msgid "This option will allow users to download gallery images while viewing them in lightbox."
5254
+ msgstr "Этот параметр позволяет пользователям загружать изображения галереи во время их просмотра в лайтбоксе."
5255
 
5256
+ #. Description of the plugin
5257
+ msgid "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."
5258
+ msgstr "Этот плагин представляет собой полностью адаптивный плагин галереи с расширенной функциональностью. Он позволяет создавать различные галереи изображений для ваших записей и страниц. Вы можете создавать неограниченное количество галерей, объединять их в альбомы, добавлять описания и метки."
5259
 
5260
+ #: admin/views/Galleries.php:661
5261
+ msgid "This sorting does not affect the published galleries. You can change the ordering on frontend by editing gallery shortcode or Photo Gallery Options."
5262
+ msgstr "Эта сортировка не влияет на опубликованные галереи. Вы можете изменить порядок в интерфейсе, отредактировав шорткод галереи или Photo Gallery Options."
 
 
5263
 
5264
+ #: wd/templates/display_subscribe.php:8
5265
+ msgid "This will allow you to get more out of your plugin experience - get awesome customer support, receive exclusive deals and discounts on premium products and more. You can choose to skip this step, %s will still work just fine."
5266
+ msgstr "Это позволит вам получить больше возможностей от вашего плагина - получить отличную поддержку клиентов, получать эксклюзивные предложения и скидки на премиальные продукты и многое другое. Вы можете пропустить этот шаг,%s все равно будет работать нормально."
 
 
5267
 
5268
+ #: filemanager/view.php:72
5269
+ msgid "This will cancel uploads. Continue?"
5270
+ msgstr "Это отменит загрузку. Продолжать?"
5271
 
5272
+ #: admin/views/Themes.php:609
5273
+ msgid "Thumb description font color:"
5274
+ msgstr "Цвет шрифта описания миниатюры:"
 
 
5275
 
5276
+ #: admin/views/Themes.php:602
5277
+ msgid "Thumb description font size:"
5278
+ msgstr "Размер шрифта описания миниатюры:"
5279
 
5280
+ #: admin/controllers/Themes.php:243 admin/views/Options.php:2881
5281
+ #: admin/views/Options.php:3413 admin/views/Widget.php:137
5282
+ msgid "Thumbnail"
5283
+ msgstr "Миниатюра"
5284
 
5285
+ #: admin/views/Themes.php:485 admin/views/Themes.php:782
5286
+ #: admin/views/Themes.php:1056 admin/views/Themes.php:2024
5287
+ #: admin/views/Themes.php:2352 admin/views/Themes.php:2902
5288
+ msgid "Thumbnail background color:"
5289
+ msgstr "Цвет фона миниатюры:"
5290
 
5291
+ #: admin/views/Themes.php:492 admin/views/Themes.php:789
5292
+ #: admin/views/Themes.php:1062 admin/views/Themes.php:2030
5293
+ #: admin/views/Themes.php:2364
5294
+ msgid "Thumbnail background transparency:"
5295
+ msgstr "Прозрачность фона миниатюры:"
5296
 
5297
+ #: admin/views/Themes.php:2281
5298
+ msgid "Thumbnail border color:"
5299
+ msgstr "Цвет рамки миниатюры:"
5300
 
5301
+ #: admin/views/Themes.php:2287
5302
+ msgid "Thumbnail border radius:"
5303
+ msgstr "Радиус рамки миниатюры:"
 
5304
 
5305
+ #: admin/views/Themes.php:2267
5306
+ msgid "Thumbnail border style:"
5307
+ msgstr "Стиль рамки миниатюры:"
 
5308
 
5309
+ #: admin/views/Themes.php:2261
5310
+ msgid "Thumbnail border width:"
5311
+ msgstr "Ширина рамки миниатюры:"
5312
 
5313
+ #: admin/views/Themes.php:2294
5314
+ msgid "Thumbnail box shadow:"
5315
+ msgstr "Тень окна миниатюры:"
5316
 
5317
+ #: admin/views/Options.php:1273 admin/views/Options.php:2716
5318
+ #: admin/views/Options.php:3249 admin/views/Shortcode.php:2275
5319
+ msgid "Thumbnail dimensions"
5320
+ msgstr "Размер миниатюры"
5321
 
5322
+ #: admin/views/Themes.php:2389
5323
+ msgid "Thumbnail div background color:"
5324
+ msgstr "Цвет фона div миниатюры:"
5325
 
5326
+ #: admin/views/Themes.php:2416
5327
+ msgid "Thumbnail div border color:"
5328
+ msgstr "Цвет рамки div миниатюры:"
5329
 
5330
+ #: admin/views/Themes.php:2422
5331
+ msgid "Thumbnail div border radius:"
5332
+ msgstr "Радиус рамки div миниатюры:"
5333
 
5334
+ #: admin/views/Themes.php:2395
5335
+ msgid "Thumbnail div border width:"
5336
+ msgstr "Ширина рамки div миниатюры:"
5337
 
5338
+ #: admin/views/Themes.php:2382
5339
+ msgid "Thumbnail div padding:"
5340
+ msgstr "Внутренний отступ div миниатюры:"
5341
 
5342
+ #: admin/views/Themes.php:2331
5343
+ msgid "Thumbnail hover effect:"
5344
+ msgstr "Эффект при наведении на миниатюру:"
5345
 
5346
+ #: admin/views/Themes.php:2249
5347
+ msgid "Thumbnail margin:"
5348
+ msgstr "Внешний отступ миниатюры:"
 
 
5349
 
5350
+ #: filemanager/view.php:234
5351
+ msgid "Thumbnail Max Dimensions:"
5352
+ msgstr "Макс. размеры миниатюры:"
 
 
5353
 
5354
+ #: photo-gallery.php:1591
5355
+ msgid "Thumbnail Options"
5356
+ msgstr "Параметры миниатюры"
5357
 
5358
+ #: admin/views/Themes.php:2255
5359
+ msgid "Thumbnail padding:"
5360
+ msgstr "Внутренний отступ миниатюры:"
5361
 
5362
+ #: admin/views/Options.php:1499 admin/views/Options.php:1743
5363
+ msgid "Thumbnail size"
5364
+ msgstr "Размер миниатюры"
5365
 
5366
+ #: admin/views/Themes.php:2005 admin/views/Themes.php:2301
5367
+ #: admin/views/Themes.php:2882
5368
+ msgid "Thumbnail transition:"
5369
+ msgstr "Переход между миниатюрами:"
5370
 
5371
+ #: admin/views/Themes.php:499 admin/views/Themes.php:2037
5372
+ #: admin/views/Themes.php:2324 admin/views/Themes.php:2909
5373
+ msgid "Thumbnail transparency:"
5374
+ msgstr "Прозрачность миниатюр:"
5375
 
5376
+ #: admin/views/Options.php:3012
5377
+ msgid "Thumbnail width"
5378
+ msgstr "Ширина миниатюры"
5379
 
5380
+ #: filemanager/view.php:235
5381
+ msgid "Thumbnail:"
5382
+ msgstr "Миниатюра:"
5383
 
5384
+ #: admin/controllers/Options.php:56 admin/controllers/Shortcode.php:40
5385
+ #: admin/views/Galleries.php:193 admin/views/Options.php:433
5386
+ #: admin/views/Shortcode.php:76 photo-gallery.php:1613
5387
+ msgid "Thumbnails"
5388
+ msgstr "Миниатюры"
5389
 
5390
+ #: admin/views/Themes.php:2358
5391
+ msgid "Thumbnails background color:"
5392
+ msgstr "Цвет фона миниатюр:"
5393
 
5394
+ #: photo-gallery.php:666
5395
+ msgid "Thumbnails successfully recreated."
5396
+ msgstr "Миниатюры успешно воссозданы."
5397
 
5398
+ #: admin/views/Options.php:1961 admin/views/Options.php:2585
5399
+ #: admin/views/Options.php:3604
5400
+ msgid "Time interval"
5401
+ msgstr "Интервал времени"
 
5402
 
5403
+ #: admin/views/WidgetSlideshow.php:143
5404
+ msgid "Time interval:"
5405
+ msgstr "Интервал времени:"
5406
+
5407
+ #: admin/views/Albums.php:62 admin/views/Albums.php:99
5408
+ #: admin/views/Albumsgalleries.php:79 admin/views/Albumsgalleries.php:103
5409
+ #: admin/views/Galleries.php:61 admin/views/Galleries.php:64
5410
+ #: admin/views/Galleries.php:107 admin/views/Options.php:1331
5411
+ #: admin/views/Options.php:1557 admin/views/Options.php:1791
5412
+ #: admin/views/Options.php:1986 admin/views/Options.php:2224
5413
+ #: admin/views/Options.php:2381 admin/views/Options.php:2556
5414
+ #: admin/views/Options.php:2765 admin/views/Options.php:2782
5415
+ #: admin/views/Options.php:3060 admin/views/Options.php:3077
5416
+ #: admin/views/Options.php:3298 admin/views/Options.php:3315
5417
+ #: admin/views/Themes.php:204 admin/views/Themes.php:223
5418
+ #: frontend/views/view.php:485
5419
+ msgid "Title"
5420
+ msgstr "Заголовок"
5421
 
5422
+ #: admin/views/Themes.php:1765
5423
+ msgid "Title alignment:"
5424
+ msgstr "Выравнивание заголовка:"
5425
 
5426
+ #: admin/views/Themes.php:4655
5427
+ msgid "Title background color:"
5428
+ msgstr "Цвет фона заголовка:"
5429
 
5430
+ #: admin/views/Themes.php:1502
5431
+ msgid "Title background color: "
5432
+ msgstr "Цвет фона заголовка: "
5433
 
5434
+ #: admin/views/Themes.php:2628
5435
+ msgid "Title border color:"
5436
+ msgstr "Цвет рамки заголовка:"
5437
 
5438
+ #: admin/views/Themes.php:1515 admin/views/Themes.php:4669
5439
+ msgid "Title border radius:"
5440
+ msgstr "Радиус рамки заголовка:"
5441
 
5442
+ #: admin/views/Themes.php:2614
5443
+ msgid "Title border style:"
5444
+ msgstr "Стиль рамки заголовка:"
5445
 
5446
+ #: admin/views/Themes.php:2608
5447
+ msgid "Title border width:"
5448
+ msgstr "Ширина рамки заголовка:"
5449
 
5450
+ #: admin/views/Themes.php:588 admin/views/Themes.php:1149
5451
+ #: admin/views/Themes.php:2126 admin/views/Themes.php:2989
5452
+ msgid "Title box shadow:"
5453
+ msgstr "Тень поля заголовка:"
5454
 
5455
+ #: admin/views/Themes.php:4698
5456
+ msgid "Title color:"
5457
+ msgstr "Цвет заголовка:"
5458
 
5459
+ #: admin/views/Themes.php:1535
5460
+ msgid "Title color: "
5461
+ msgstr "Цвет заголовка: "
5462
 
5463
+ #: admin/views/Themes.php:564 admin/views/Themes.php:848
5464
+ #: admin/views/Themes.php:1125 admin/views/Themes.php:2102
5465
+ #: admin/views/Themes.php:2965
5466
+ msgid "Title font color (Show on hover):"
5467
+ msgstr "Цвет шрифта заголовка (показывать при наведении):"
 
 
5468
 
5469
+ #: admin/views/Themes.php:558 admin/views/Themes.php:842
5470
+ #: admin/views/Themes.php:1119 admin/views/Themes.php:2096
5471
+ #: admin/views/Themes.php:2640 admin/views/Themes.php:2959
5472
+ #: admin/views/Themes.php:4061
5473
+ msgid "Title font color:"
5474
+ msgstr "Цвет шрифта заголовков:"
5475
 
5476
+ #: admin/views/Themes.php:4690
5477
+ msgid "Title Font family:"
5478
+ msgstr "Семейство шрифтов заголовка:"
 
 
 
 
5479
 
5480
+ #: admin/views/Themes.php:571 admin/views/Themes.php:855
5481
+ #: admin/views/Themes.php:1132 admin/views/Themes.php:1542
5482
+ #: admin/views/Themes.php:2109 admin/views/Themes.php:2647
5483
+ #: admin/views/Themes.php:2972 admin/views/Themes.php:4068
5484
+ msgid "Title font family:"
5485
+ msgstr "Семейство шрифтов заголовка:"
5486
 
5487
+ #: admin/views/Themes.php:552 admin/views/Themes.php:836
5488
+ #: admin/views/Themes.php:1113 admin/views/Themes.php:2090
5489
+ #: admin/views/Themes.php:2634 admin/views/Themes.php:2953
5490
+ #: admin/views/Themes.php:4085 admin/views/Themes.php:4692
5491
+ msgid "Title font size:"
5492
+ msgstr "Размер шрифта заголовка:"
 
5493
 
5494
+ #: admin/views/Themes.php:1529
5495
+ msgid "Title font size: "
5496
+ msgstr "Размер шрифта заголовка: "
5497
 
5498
+ #: admin/views/Themes.php:574 admin/views/Themes.php:858
5499
+ #: admin/views/Themes.php:1135 admin/views/Themes.php:2112
5500
+ #: admin/views/Themes.php:2650 admin/views/Themes.php:2975
5501
+ #: admin/views/Themes.php:4071 admin/views/Themes.php:4704
5502
+ msgid "Title font weight:"
5503
+ msgstr "Толщина шрифта заголовка:"
 
5504
 
5505
+ #: admin/views/Themes.php:595 admin/views/Themes.php:872
5506
+ #: admin/views/Themes.php:1156 admin/views/Themes.php:2133
5507
+ #: admin/views/Themes.php:2595 admin/views/Themes.php:4676
5508
+ msgid "Title margin:"
5509
+ msgstr "Внешний отступ заголовка:"
5510
 
5511
+ #: admin/views/Themes.php:4662
5512
+ msgid "Title opacity:"
5513
+ msgstr "Непрозрачность заголовка:"
 
 
 
 
5514
 
5515
+ #: admin/views/Themes.php:1522
5516
+ msgid "Title padding: "
5517
+ msgstr "Внутренний отступ заголовка: "
5518
 
5519
+ #: admin/views/Themes.php:2601 admin/views/Themes.php:4682
5520
+ msgid "Title padding:"
5521
+ msgstr "Внутренний отступ заголовка:"
 
 
 
5522
 
5523
+ #: admin/views/Options.php:2077
5524
+ msgid "Title position"
5525
+ msgstr "Позиция заголовка"
5526
 
5527
+ #: admin/views/Themes.php:543 admin/views/Themes.php:1756
5528
+ #: admin/views/Themes.php:2081
5529
+ msgid "Title position:"
5530
+ msgstr "Позиция заголовка:"
5531
 
5532
+ #: admin/views/Themes.php:1508
5533
+ msgid "Title transparency: "
5534
+ msgstr "Прозрачность заголовка: "
5535
 
5536
+ #: admin/views/Themes.php:2535
5537
+ msgid "Title/description alignment:"
5538
+ msgstr "Выравнивание заголовка/описания:"
5539
 
5540
+ #: admin/views/Widget.php:114 admin/views/WidgetSlideshow.php:82
5541
+ #: admin/views/WidgetTags.php:78
5542
+ msgid "Title:"
5543
+ msgstr "Заголовок:"
5544
 
5545
+ #: admin/views/Galleries.php:837
5546
+ msgid "To activate this feature, go to %s, then set \"Image click action\" to \"Redirect to URL\". Please use absolute URLs when specifying the links."
5547
+ msgstr "Чтобы активировать эту функцию, перейдите в раздел %s, затем установите для параметра \"Действие при нажатии на изображение\" значение \"Перенаправить на URL\". Пожалуйста, используйте абсолютные URL при указании ссылок."
5548
 
5549
+ #: framework/howto/data.php:9
5550
+ msgid "To add a gallery using shortcode, please find and click the \"Add Photo Gallery\" button in your post/page editor navigation."
5551
+ msgstr "Чтобы добавить галерею с помощью шорткода, найдите и нажмите кнопку \"Добавить фотогалерею\" в навигации редактора записи/страницы."
5552
 
5553
+ #: admin/views/Themes.php:3474
5554
+ msgid "Toggle button height:"
5555
+ msgstr "Высота кнопки переключения:"
5556
 
5557
+ #: admin/views/Themes.php:3480
5558
+ msgid "Toggle button width:"
5559
+ msgstr "Ширина кнопки переключения:"
5560
 
5561
+ #: admin/views/Shortcode.php:371
5562
+ msgid "Toggle panel"
5563
+ msgstr "Панель переключения"
5564
 
5565
+ #: admin/views/Albums.php:236 admin/views/Albums.php:272
5566
+ #: admin/views/Galleries.php:285 admin/views/Galleries.php:326
5567
+ #: admin/views/Options.php:677 admin/views/Options.php:745
5568
+ #: admin/views/Options.php:846 admin/views/Shortcode.php:342
5569
+ #: admin/views/Shortcode.php:357
5570
+ msgid "Toggle panel:"
5571
+ msgstr "Панель переключения:"
5572
 
5573
+ #: admin/views/Themes.php:546 admin/views/Themes.php:1357
5574
+ #: admin/views/Themes.php:1759 admin/views/Themes.php:2084
5575
+ #: admin/views/Themes.php:3421 admin/views/Themes.php:3701
5576
+ #: admin/views/Themes.php:3789 admin/views/Themes.php:3857
5577
+ #: admin/views/Themes.php:3981 admin/views/Themes.php:4439
5578
+ msgid "Top"
5579
+ msgstr "Верх"
5580
 
5581
+ #: frontend/views/BWGViewGalleryBox.php:1243
5582
+ #: frontend/views/BWGViewGalleryBox.php:1287
5583
+ msgid "Total"
5584
+ msgstr "Всего"
5585
 
5586
+ #: admin/views/Themes.php:465 admin/views/Themes.php:762
5587
+ #: admin/views/Themes.php:1037
5588
+ msgid "Transition:"
5589
+ msgstr "Переход:"
5590
 
5591
+ #: admin/views/Themes.php:796 admin/views/Themes.php:1069
5592
+ msgid "Transparency:"
5593
+ msgstr "Прозрачность:"
5594
 
5595
+ #: admin/views/WidgetTags.php:110
5596
+ msgid "Transparent Background:"
5597
+ msgstr "Прозрачный фон:"
5598
 
5599
+ #: wd/templates/display_overview.php:13
5600
+ msgid "Try Free"
5601
+ msgstr "Попробовать бесплатно"
5602
 
5603
+ #: admin/views/Albumsgalleries.php:80 admin/views/Albumsgalleries.php:119
5604
+ #: admin/views/Galleries.php:775
5605
+ msgid "Type"
5606
+ msgstr "Тип"
5607
 
5608
+ #: admin/views/Widget.php:118 admin/views/WidgetTags.php:82
5609
+ msgid "Type:"
5610
+ msgstr "Тип:"
 
 
5611
 
5612
+ #: wd/templates/display_overview.php:32
5613
+ msgid "Unified dashboard"
5614
+ msgstr "Единая панель управления"
5615
 
5616
+ #: admin/views/Uninstall.php:83
5617
+ msgid "UNINSTALL"
5618
+ msgstr "УДАЛЕНИЕ"
5619
 
5620
+ #: admin/views/Options.php:406 photo-gallery.php:510
5621
+ msgid "Uninstall"
5622
+ msgstr "Удаление"
5623
 
5624
+ #: admin/controllers/Uninstall.php:59 admin/controllers/Uninstall.php:100
5625
+ #: admin/views/Options.php:403
5626
+ msgid "Uninstall %s"
5627
+ msgstr "Удаление %s"
5628
 
5629
+ #: framework/WDWLibrary.php:2985
5630
+ msgid "Unleash the full benefits & "
5631
+ msgstr "Воспользуйтесь всеми преимуществами и "
5632
 
5633
+ #: admin/views/Themes.php:44
5634
+ msgid "Unlimited options to completely customize every detail. "
5635
+ msgstr "Неограниченные возможности для полной настройки каждой детали. "
5636
 
5637
+ #: photo-gallery.php:1519
5638
+ msgid "Unlimited Photos and Albums"
5639
+ msgstr "Неограниченное количество фотографий и альбомов"
5640
 
5641
+ #: admin/controllers/Albums.php:42 admin/controllers/Galleries.php:38
5642
+ #: admin/views/Albums.php:113 admin/views/Galleries.php:121
5643
+ #: admin/views/Galleries.php:793 framework/WDWLibrary.php:2684
5644
+ msgid "Unpublish"
5645
+ msgstr "Не публиковать"
5646
 
5647
+ #: admin/views/Albums.php:108 admin/views/Albums.php:386
5648
+ #: admin/views/Albumsgalleries.php:112 admin/views/Galleries.php:116
5649
+ #: admin/views/Galleries.php:781
5650
+ msgid "Unpublished"
5651
+ msgstr "Не опубликовано"
5652
 
5653
+ #: admin/controllers/Albums.php:43 admin/controllers/Galleries.php:39
5654
+ #: framework/WDWLibrary.php:2685
5655
+ msgid "unpublished"
5656
+ msgstr "не опубликовано"
5657
 
5658
+ #: filemanager/view.php:96
5659
+ msgid "Up"
5660
+ msgstr "Верх"
 
5661
 
5662
+ #: admin/views/Albums.php:199 admin/views/Galleries.php:247
5663
+ #: admin/views/Shortcode.php:663 admin/views/Shortcode.php:2246
5664
+ #: admin/views/Themes.php:351
5665
+ msgid "Update"
5666
+ msgstr "Обновить"
5667
 
5668
+ #: framework/WDWLibrary.php:2866
5669
+ msgid "Upgrade"
5670
+ msgstr "Обновить"
5671
 
5672
+ #: framework/WDWLibrary.php:2987
5673
+ msgid "Upgrade Now"
5674
+ msgstr "Обновить сейчас"
 
 
 
5675
 
5676
+ #: admin/views/Options.php:551 admin/views/Options.php:649
5677
+ #: admin/views/Shortcode.php:255
5678
+ msgid "UPGRADE to Premium"
5679
+ msgstr "ОБНОВЛЕНИЕ до Премиум"
5680
 
5681
+ #: admin/views/Themes.php:53
5682
+ msgid "UPGRADE TO PREMIUM"
5683
+ msgstr "ОБНОВЛЕНИЕ ДО ПРЕМИУМ"
5684
 
5685
+ #: wd/includes/deactivate.php:30
5686
  msgid "Upgrading to paid version"
5687
  msgstr "Обновление до платной версии"
5688
 
5689
+ #: filemanager/view.php:296
5690
+ msgid "Upload failed"
5691
+ msgstr "Загрузка не удалась"
5692
 
5693
+ #: filemanager/view.php:114
5694
+ msgid "Upload files"
5695
+ msgstr "Загрузить файлы"
5696
 
5697
+ #: filemanager/view.php:295
5698
+ msgid "Uploaded"
5699
+ msgstr "Загружено"
 
 
 
 
 
5700
 
5701
+ #: admin/controllers/Options.php:164
5702
+ msgid "Uploads directory doesn't exist. Old value is restored."
5703
+ msgstr "Каталог Uploads не существует. Старое значение восстановлено."
5704
 
5705
+ #: admin/views/Options.php:271
5706
+ msgid "Use AND operator for tag filtering"
5707
+ msgstr "Использовать оператор AND для фильтрации меток"
5708
+
5709
+ #: admin/views/Themes.php:433 admin/views/Themes.php:440
5710
+ #: admin/views/Themes.php:591 admin/views/Themes.php:598
5711
+ #: admin/views/Themes.php:653 admin/views/Themes.php:660
5712
+ #: admin/views/Themes.php:737 admin/views/Themes.php:875
5713
+ #: admin/views/Themes.php:928 admin/views/Themes.php:935
5714
+ #: admin/views/Themes.php:1012 admin/views/Themes.php:1152
5715
+ #: admin/views/Themes.php:1159 admin/views/Themes.php:1196
5716
+ #: admin/views/Themes.php:1203 admin/views/Themes.php:1319
5717
+ #: admin/views/Themes.php:1340 admin/views/Themes.php:1368
5718
+ #: admin/views/Themes.php:1402 admin/views/Themes.php:1458
5719
+ #: admin/views/Themes.php:1518 admin/views/Themes.php:1525
5720
+ #: admin/views/Themes.php:1561 admin/views/Themes.php:1568
5721
+ #: admin/views/Themes.php:1605 admin/views/Themes.php:1625
5722
+ #: admin/views/Themes.php:1682 admin/views/Themes.php:1689
5723
+ #: admin/views/Themes.php:1722 admin/views/Themes.php:1742
5724
+ #: admin/views/Themes.php:1798 admin/views/Themes.php:1805
5725
+ #: admin/views/Themes.php:1838 admin/views/Themes.php:1882
5726
+ #: admin/views/Themes.php:1889 admin/views/Themes.php:1940
5727
+ #: admin/views/Themes.php:1973 admin/views/Themes.php:1980
5728
+ #: admin/views/Themes.php:2129 admin/views/Themes.php:2136
5729
+ #: admin/views/Themes.php:2173 admin/views/Themes.php:2210
5730
+ #: admin/views/Themes.php:2217 admin/views/Themes.php:2290
5731
+ #: admin/views/Themes.php:2297 admin/views/Themes.php:2385
5732
+ #: admin/views/Themes.php:2425 admin/views/Themes.php:2432
5733
+ #: admin/views/Themes.php:2458 admin/views/Themes.php:2491
5734
+ #: admin/views/Themes.php:2552 admin/views/Themes.php:2585
5735
+ #: admin/views/Themes.php:2604 admin/views/Themes.php:2667
5736
+ #: admin/views/Themes.php:2772 admin/views/Themes.php:2779
5737
+ #: admin/views/Themes.php:2857 admin/views/Themes.php:2992
5738
+ #: admin/views/Themes.php:3029 admin/views/Themes.php:3066
5739
+ #: admin/views/Themes.php:3073 admin/views/Themes.php:3135
5740
+ #: admin/views/Themes.php:3142 admin/views/Themes.php:3149
5741
+ #: admin/views/Themes.php:3208 admin/views/Themes.php:3225
5742
+ #: admin/views/Themes.php:3270 admin/views/Themes.php:3335
5743
+ #: admin/views/Themes.php:3342 admin/views/Themes.php:3436
5744
+ #: admin/views/Themes.php:3490 admin/views/Themes.php:3523
5745
+ #: admin/views/Themes.php:3631 admin/views/Themes.php:3668
5746
+ #: admin/views/Themes.php:3712 admin/views/Themes.php:3745
5747
+ #: admin/views/Themes.php:3850 admin/views/Themes.php:3919
5748
+ #: admin/views/Themes.php:3926 admin/views/Themes.php:3933
5749
+ #: admin/views/Themes.php:4043 admin/views/Themes.php:4050
5750
+ #: admin/views/Themes.php:4057 admin/views/Themes.php:4214
5751
+ #: admin/views/Themes.php:4233 admin/views/Themes.php:4266
5752
+ #: admin/views/Themes.php:4369 admin/views/Themes.php:4386
5753
+ #: admin/views/Themes.php:4393 admin/views/Themes.php:4422
5754
+ #: admin/views/Themes.php:4583 admin/views/Themes.php:4672
5755
+ #: admin/views/Themes.php:4752 admin/views/Themes.php:4759
5756
+ #: admin/views/Themes.php:4837 admin/views/Themes.php:4844
5757
+ #: admin/views/Themes.php:4871 admin/views/Themes.php:4924
5758
+ msgid "Use CSS type values."
5759
+ msgstr "Используйте значения типа CSS."
5760
 
5761
+ #: admin/views/Shortcode.php:335
5762
+ msgid "Use default options"
5763
+ msgstr "Использовать параметры по умолчанию"
5764
 
5765
+ #: admin/views/Shortcode.php:563
5766
+ msgid "Use generated PHP function to call the selected gallery or gallery group on a custom PHP template."
5767
+ msgstr "Используйте сгенерированную функцию PHP для вызова выбранной галереи или группы галереи в пользовательском шаблоне PHP."
5768
 
5769
+ #: admin/views/Options.php:266
5770
+ msgid "Use this setting to show or hide comments under Photo Gallery custom posts."
5771
+ msgstr "Используйте эту настройку, чтобы показывать или скрывать комментарии в пользовательских записях фотогалереи."
 
 
 
 
5772
 
5773
+ #: framework/WDWLibrary.php:2829
5774
+ msgid "User guide"
5775
+ msgstr "Руководство пользователя"
5776
 
5777
+ #: wd/templates/display_overview.php:111
5778
+ msgid "User Guide"
5779
+ msgstr "Руководство пользователя"
5780
 
5781
+ #: admin/views/Galleries.php:532
5782
+ msgid "username:"
5783
+ msgstr "имя пользователя:"
 
 
 
5784
 
5785
+ #: admin/views/Themes.php:495 admin/views/Themes.php:502
5786
+ #: admin/views/Themes.php:515 admin/views/Themes.php:792
5787
+ #: admin/views/Themes.php:799 admin/views/Themes.php:812
5788
+ #: admin/views/Themes.php:1065 admin/views/Themes.php:1072
5789
+ #: admin/views/Themes.php:1085 admin/views/Themes.php:1262
5790
+ #: admin/views/Themes.php:1421 admin/views/Themes.php:1511
5791
+ #: admin/views/Themes.php:1554 admin/views/Themes.php:1618
5792
+ #: admin/views/Themes.php:1735 admin/views/Themes.php:2033
5793
+ #: admin/views/Themes.php:2040 admin/views/Themes.php:2053
5794
+ #: admin/views/Themes.php:2327 admin/views/Themes.php:2367
5795
+ #: admin/views/Themes.php:2451 admin/views/Themes.php:2912
5796
+ #: admin/views/Themes.php:2925 admin/views/Themes.php:3114
5797
+ #: admin/views/Themes.php:3283 admin/views/Themes.php:3383
5798
+ #: admin/views/Themes.php:3396 admin/views/Themes.php:3443
5799
+ #: admin/views/Themes.php:3470 admin/views/Themes.php:3764
5800
+ #: admin/views/Themes.php:3886 admin/views/Themes.php:4010
5801
+ #: admin/views/Themes.php:4406 admin/views/Themes.php:4501
5802
+ #: admin/views/Themes.php:4526 admin/views/Themes.php:4665
5803
+ msgid "Value must be between 0 to 100."
5804
+ msgstr "Значение должно быть в диапазоне от 0 до 100."
5805
 
5806
+ #: frontend/views/BWGViewGalleryBox.php:1035
5807
+ msgid "Verification Code"
5808
+ msgstr "Проверочный код"
5809
 
5810
+ #: admin/views/Options.php:1713 admin/views/Options.php:2897
5811
+ #: admin/views/Options.php:3429
5812
+ msgid "Vertical"
5813
+ msgstr "Вертикально"
 
5814
 
5815
+ #: frontend/views/BWGViewGalleryBox.php:1295
5816
+ msgid "View cart"
5817
+ msgstr "Посмотреть корзину"
 
 
 
 
 
 
 
 
5818
 
5819
+ #: admin/views/Options.php:552 admin/views/Options.php:650
5820
+ #: admin/views/Shortcode.php:256
5821
+ msgid "view demo"
5822
+ msgstr "посмотреть демо"
5823
 
5824
+ #: filemanager/view.php:110
5825
+ msgid "View list"
5826
+ msgstr "Посмотреть список"
 
 
 
 
5827
 
5828
+ #: filemanager/view.php:109
5829
+ msgid "View thumbs"
5830
+ msgstr "Посмотреть миниатюры"
5831
 
5832
+ #: admin/views/Shortcode.php:148 admin/views/Shortcode.php:214
5833
+ msgid "View type"
5834
+ msgstr "Тип просмотра"
 
 
 
 
5835
 
5836
+ #: admin/views/Options.php:549 admin/views/Options.php:647
5837
+ #: admin/views/Shortcode.php:253
5838
+ msgid "Visit demo page for this view"
5839
+ msgstr "Посетите демо-страницу для этого просмотра"
5840
 
5841
+ #: admin/views/Uninstall.php:40
5842
+ msgid "WARNING:"
5843
+ msgstr "ВНИМАНИЕ:"
 
 
 
 
5844
 
5845
+ #: admin/controllers/Options.php:167
5846
+ msgid "Warning: \"photo-gallery\" folder already exists in uploads directory. Old value is restored."
5847
+ msgstr "Предупреждение: Папка \"photo-gallery\" уже существует в каталоге uploads. Старое значение восстановлено."
5848
 
5849
+ #: admin/views/Options.php:107 photo-gallery.php:1571
5850
+ msgid "Watermark"
5851
+ msgstr "Водяной знак"
 
 
 
 
5852
 
5853
+ #: admin/views/Options.php:1103
5854
+ msgid "Watermark color"
5855
+ msgstr "Цвет водяного знака"
5856
 
5857
+ #: admin/controllers/Options.php:259 framework/WDWLibrary.php:231
5858
+ msgid "Watermark could not be set. The image URL is incorrect."
5859
+ msgstr "Не удалось установить водяной знак. Неверный URL-адрес изображения."
 
 
 
 
5860
 
5861
+ #: admin/views/Options.php:1065
5862
+ msgid "Watermark font size"
5863
+ msgstr "Размер шрифта водяного знака"
5864
 
5865
+ #: admin/views/Options.php:1074
5866
+ msgid "Watermark font style"
5867
+ msgstr "Стиль шрифта водяного знака"
 
 
 
 
5868
 
5869
+ #: admin/views/Options.php:1112
5870
+ msgid "Watermark opacity"
5871
+ msgstr "Непрозрачность водяного знака"
5872
 
5873
+ #: admin/views/Options.php:1121
5874
+ msgid "Watermark position"
5875
+ msgstr "Позиция водяного знака"
 
 
 
 
5876
 
5877
+ #: admin/views/Options.php:1056
5878
+ msgid "Watermark size"
5879
+ msgstr "Размер водяного знака"
5880
 
5881
+ #: framework/WDWLibrary.php:206
5882
+ msgid "Watermark successfully set."
5883
+ msgstr "Водяной знак успешно установлен."
5884
 
5885
+ #: admin/views/Options.php:1047
5886
+ msgid "Watermark text"
5887
+ msgstr "Текст водного знака"
5888
 
5889
+ #: admin/views/Options.php:1013
5890
+ msgid "Watermark type"
5891
+ msgstr "Тип водяного знака"
5892
 
5893
+ #: admin/views/Options.php:1027
5894
+ msgid "Watermark URL"
5895
+ msgstr "URL водяного знака"
5896
 
5897
+ #: admin/views/Licensing.php:20
5898
+ msgid "Watermarking/ Advertising Possibility"
5899
+ msgstr "Возможность нанесения водяных знаков/рекламы"
5900
 
5901
+ #: photo-gallery.php:653
5902
+ msgid "Watermarks Successfully Set."
5903
+ msgstr "Водяные знаки успешно установлены."
5904
 
5905
+ #: wd/includes/notices.php:209
5906
+ msgid "We hope you've enjoyed using WordPress %s! Would you consider leaving us a review on WordPress.org?"
5907
+ msgstr "Мы надеемся, что вам понравилось использовать WordPress %s! Не могли бы вы оставить свой отзыв на WordPress.org?"
5908
 
5909
+ #: wd/templates/display_subscribe.php:33
5910
+ msgid "We will not sell, share, or distribute your personal information to third parties."
5911
+ msgstr "Мы не будем продавать, делиться или распространять вашу личную информацию третьим лицам."
5912
 
5913
+ #: wd/templates/display_overview.php:69
5914
+ msgid "We’ll soon be offering affordable hosting solution with WordPress-friendly features and great customer support."
5915
+ msgstr "Скоро мы предложим доступный хостинг с удобными для WordPress функциями и отличной поддержкой клиентов."
 
 
 
 
 
 
 
 
5916
 
5917
  #: wd/templates/display_subscribe.php:11
5918
  msgid "What data is being collected?"
5919
  msgstr "Какие данные собираются?"
5920
 
5921
+ #: photo-gallery.php:357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5922
  msgid ""
5923
+ "When you leave a comment on this site, we send your name, email\n"
5924
+ " address, IP address and comment text to example.com. Example.com does\n"
5925
+ " not retain your personal data."
5926
  msgstr ""
5927
+ "Когда вы оставляете комментарий на этом сайте, мы отправляем ваше имя, электронную почту \n"
5928
+ " адрес, IP-адрес и текст комментария на example.com. Example.com не \n"
5929
+ " сохраняет ваши личные данные."
 
 
 
 
 
 
 
 
 
 
5930
 
5931
+ #: admin/views/Galleries.php:402 admin/views/Galleries.php:553
5932
+ msgid "Whole post"
5933
+ msgstr "Вся запись"
 
 
 
 
 
 
 
 
5934
 
5935
+ #: admin/views/Options.php:1733 admin/views/Options.php:2917
5936
+ #: admin/views/Options.php:3449
5937
+ msgid "Width of mosaic galleries"
5938
+ msgstr "Ширина мозаичных галерей"
5939
 
5940
+ #: admin/views/Options.php:1302 admin/views/Options.php:1528
5941
+ #: admin/views/Options.php:1762 admin/views/Options.php:2350
5942
+ #: admin/views/Options.php:2736 admin/views/Options.php:3031
5943
+ #: admin/views/Options.php:3269
5944
+ msgid "With this option, users can load new images of your galleries simply by scrolling down."
5945
+ msgstr "С помощью этой опции пользователи могут загружать новые изображения из ваших галерей, просто прокручивая их вниз."
5946
 
5947
+ #: photo-gallery.php:428
5948
+ msgid "Without image editing functions, image thumbnails will not be created, thus causing load time issues on published galleries. Furthermore, some of Photo Gallery's features, e.g. %s, %s, and %s, will not be available."
5949
+ msgstr "Без функций редактирования изображений миниатюры изображений не будут создаваться, что приведет к проблемам со временем загрузки опубликованных галерей. Кроме того, некоторые функции Photo Gallery, например %s, %s и %s, будут недоступны."
 
5950
 
5951
+ #: admin/views/Options.php:896 admin/views/Shortcode.php:408
5952
+ msgid "Write the text to add to images as advertisement."
5953
+ msgstr "Напишите текст для добавления к изображениям в качестве рекламы."
 
5954
 
5955
+ #: admin/views/Albums.php:259 admin/views/Galleries.php:313
5956
+ #: admin/views/Options.php:163 admin/views/Options.php:204
5957
+ #: admin/views/Options.php:214 admin/views/Options.php:224
5958
+ #: admin/views/Options.php:243 admin/views/Options.php:253
5959
+ #: admin/views/Options.php:263 admin/views/Options.php:273
5960
+ #: admin/views/Options.php:283 admin/views/Options.php:295
5961
+ #: admin/views/Options.php:306 admin/views/Options.php:316
5962
+ #: admin/views/Options.php:326 admin/views/Options.php:336
5963
+ #: admin/views/Options.php:345 admin/views/Options.php:355
5964
+ #: admin/views/Options.php:365 admin/views/Options.php:384
5965
+ #: admin/views/Options.php:392 admin/views/Options.php:777
5966
+ #: admin/views/Options.php:788 admin/views/Options.php:799
5967
+ #: admin/views/Options.php:810 admin/views/Options.php:821
5968
+ #: admin/views/Options.php:832 admin/views/Options.php:1351
5969
+ #: admin/views/Options.php:1377 admin/views/Options.php:1387
5970
+ #: admin/views/Options.php:1399 admin/views/Options.php:1409
5971
+ #: admin/views/Options.php:1430 admin/views/Options.php:1440
5972
+ #: admin/views/Options.php:1450 admin/views/Options.php:1577
5973
+ #: admin/views/Options.php:1603 admin/views/Options.php:1613
5974
+ #: admin/views/Options.php:1625 admin/views/Options.php:1635
5975
+ #: admin/views/Options.php:1656 admin/views/Options.php:1667
5976
+ #: admin/views/Options.php:1677 admin/views/Options.php:1724
5977
+ #: admin/views/Options.php:1811 admin/views/Options.php:1837
5978
+ #: admin/views/Options.php:1847 admin/views/Options.php:1859
5979
+ #: admin/views/Options.php:1869 admin/views/Options.php:1889
5980
+ #: admin/views/Options.php:1899 admin/views/Options.php:2006
5981
+ #: admin/views/Options.php:2016 admin/views/Options.php:2026
5982
+ #: admin/views/Options.php:2048 admin/views/Options.php:2069
5983
+ #: admin/views/Options.php:2106 admin/views/Options.php:2116
5984
+ #: admin/views/Options.php:2153 admin/views/Options.php:2172
5985
+ #: admin/views/Options.php:2201 admin/views/Options.php:2210
5986
+ #: admin/views/Options.php:2244 admin/views/Options.php:2270
5987
+ #: admin/views/Options.php:2280 admin/views/Options.php:2292
5988
+ #: admin/views/Options.php:2302 admin/views/Options.php:2312
5989
+ #: admin/views/Options.php:2401 admin/views/Options.php:2427
5990
+ #: admin/views/Options.php:2437 admin/views/Options.php:2449
5991
+ #: admin/views/Options.php:2459 admin/views/Options.php:2469
5992
+ #: admin/views/Options.php:2480 admin/views/Options.php:2491
5993
+ #: admin/views/Options.php:2576 admin/views/Options.php:2597
5994
+ #: admin/views/Options.php:2608 admin/views/Options.php:2621
5995
+ #: admin/views/Options.php:2632 admin/views/Options.php:2642
5996
+ #: admin/views/Options.php:2653 admin/views/Options.php:2664
5997
+ #: admin/views/Options.php:2802 admin/views/Options.php:2828
5998
+ #: admin/views/Options.php:2838 admin/views/Options.php:2850
5999
+ #: admin/views/Options.php:2860 admin/views/Options.php:2908
6000
+ #: admin/views/Options.php:2940 admin/views/Options.php:2950
6001
+ #: admin/views/Options.php:3097 admin/views/Options.php:3123
6002
+ #: admin/views/Options.php:3133 admin/views/Options.php:3145
6003
+ #: admin/views/Options.php:3155 admin/views/Options.php:3176
6004
+ #: admin/views/Options.php:3335 admin/views/Options.php:3361
6005
+ #: admin/views/Options.php:3371 admin/views/Options.php:3383
6006
+ #: admin/views/Options.php:3393 admin/views/Options.php:3403
6007
+ #: admin/views/Options.php:3440 admin/views/Options.php:3472
6008
+ #: admin/views/Options.php:3482 admin/views/Options.php:3536
6009
+ #: admin/views/Options.php:3547 admin/views/Options.php:3596
6010
+ #: admin/views/Options.php:3615 admin/views/Options.php:3651
6011
+ #: admin/views/Options.php:3674 admin/views/Options.php:3686
6012
+ #: admin/views/Options.php:3699 admin/views/Options.php:3710
6013
+ #: admin/views/Options.php:3722 admin/views/Options.php:3733
6014
+ #: admin/views/Options.php:3743 admin/views/Options.php:3753
6015
+ #: admin/views/Options.php:3773 admin/views/Options.php:3784
6016
+ #: admin/views/Options.php:3795 admin/views/Options.php:3808
6017
+ #: admin/views/Options.php:3818 admin/views/Options.php:3828
6018
+ #: admin/views/Options.php:3838 admin/views/Options.php:3848
6019
+ #: admin/views/Options.php:3869 admin/views/Options.php:3880
6020
+ #: admin/views/Options.php:3891 admin/views/Options.php:3902
6021
+ #: admin/views/Options.php:3916 admin/views/Themes.php:391
6022
+ #: admin/views/Themes.php:468 admin/views/Themes.php:701
6023
+ #: admin/views/Themes.php:765 admin/views/Themes.php:976
6024
+ #: admin/views/Themes.php:1040 admin/views/Themes.php:1930
6025
+ #: admin/views/Themes.php:2008 admin/views/Themes.php:2304
6026
+ #: admin/views/Themes.php:2821 admin/views/Themes.php:2885
6027
+ #: admin/views/Themes.php:4413 admin/views/Themes.php:4462
6028
+ #: admin/views/Uninstall.php:77 admin/views/WidgetSlideshow.php:114
6029
+ #: admin/views/WidgetSlideshow.php:120 admin/views/WidgetSlideshow.php:126
6030
+ #: admin/views/WidgetTags.php:89 admin/views/WidgetTags.php:111
6031
+ msgid "Yes"
6032
+ msgstr "Да"
6033
 
6034
+ #: admin/views/Uninstall.php:85
6035
+ msgid "You are About to Uninstall %s from WordPress. This Action Is Not Reversible."
6036
+ msgstr "Вы собираетесь удалить %s из WordPress. Это действие необратимо."
6037
 
6038
+ #: admin/views/Shortcode.php:336
6039
+ msgid "You can change the default options %s."
6040
+ msgstr "Можно изменить параметры по умолчанию %s."
6041
 
6042
+ #: photo-gallery.php:1532
6043
+ msgid "You can include both videos and images within a single gallery. WordPress Photo Gallery Plugin supports YouTube and Vimeo videos within Galleries. It's also possible to add audio tracks for the image slideshow."
6044
+ msgstr "Вы можете включать в одну галерею как видео, так и изображения. Плагин Photo Gallery поддерживает видео с YouTube и Vimeo в галереях. Также можно добавлять аудиодорожки для слайд-шоу изображений."
6045
 
6046
+ #: admin/views/Editimage.php:215
6047
+ msgid "You can't crop this type of image."
6048
+ msgstr "Этот тип изображения нельзя кадрировать."
6049
 
6050
+ #: framework/WDWLibrary.php:105
6051
+ msgid "You can't delete default theme."
6052
+ msgstr "Вы не можете удалить тему по умолчанию."
6053
 
6054
+ #: photo-gallery.php:634
6055
+ msgid "You do not have Instagram access token. Sign in with Instagram in Global Settings -> Advanced tab -> Social. "
6056
+ msgstr "У вас нет токена доступа к Instagram. Войдите в Instagram в разделе Глобальные настройки -> вкладка Дополнительно -> Социальные сети. "
6057
 
6058
+ #: photo-gallery.php:635
6059
+ msgid "You do not have Instagram CLIENT_ID. Input its value in Options->Embed options."
6060
+ msgstr "У вас нет Instagram CLIENT_ID. Введите его значение в Параметры->Embed options."
6061
 
6062
+ #: admin/views/Galleries.php:656
6063
+ msgid "You have unsaved changes."
6064
+ msgstr "У вас есть несохраненные изменения."
 
 
 
 
6065
 
6066
+ #: photo-gallery.php:633
6067
+ msgid "You must select an audio file."
6068
+ msgstr "Необходимо выбрать аудиофайл."
6069
 
6070
+ #: photo-gallery.php:632
6071
+ msgid "You must select an image file."
6072
+ msgstr "Необходимо выбрать файл изображения."
6073
 
6074
+ #: photo-gallery.php:622 photo-gallery.php:651
6075
+ msgid "You must select at least one item."
6076
+ msgstr "Необходимо выбрать хотя бы один элемент."
6077
 
6078
+ #: framework/WDWLibrary.php:117
6079
+ msgid "You must set watermark type from Options page."
6080
+ msgstr "Вы должны установить тип водяного знака на странице Параметры."
 
6081
 
6082
+ #: framework/howto/data.php:21
6083
+ msgid "You've added a gallery to your post/page. Click on Photo Gallery icon again if you want to make changes to your gallery."
6084
+ msgstr "Вы добавили галерею в запись/страницу. Если вы хотите внести изменения в галерею, нажмите на значок Photo Gallery еще раз."
 
6085
 
6086
+ #: framework/howto/data.php:69
6087
+ msgid "You’ve successfully inserted your gallery to your post/page. Click the Photo Gallery icon in your editor to make any further changes to your gallery."
6088
+ msgstr "Вы успешно вставили свою галерею в запись/страницу. Нажмите на значок Photo Gallery в редакторе, чтобы внести дальнейшие изменения в галерею."
 
6089
 
6090
+ #: frontend/views/BWGViewGalleryBox.php:1070
6091
+ msgid "Your comment is awaiting moderation"
6092
+ msgstr "Ваш комментарий ожидает модерации"
 
6093
 
6094
+ #: wd/templates/display_subscribe.php:15
6095
+ msgid "Your name & Email address"
6096
+ msgstr "Ваше имя и адрес электронной почты"
 
6097
 
6098
+ #: admin/controllers/Themes.php:308
6099
+ msgid "Zoom"
6100
+ msgstr "Масштаб"
6101
 
6102
+ #: frontend/views/BWGViewGalleryBox.php:790
6103
+ msgid "Zoom in-out"
6104
+ msgstr "Масштаб +/-"
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.5.87
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.5.87';
109
- $this->db_version = '1.5.87';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
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.0
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.0';
109
+ $this->db_version = '1.6.0';
110
  $this->prefix = 'bwg';
111
  $this->nicename = __('Photo Gallery', $this->prefix);
112
  require_once($this->plugin_dir . '/framework/WDWLibrary.php');
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.5.87
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -282,6 +282,15 @@ Choose whether to display random or the first/last specific number of images.
282
 
283
  == Changelog ==
284
 
 
 
 
 
 
 
 
 
 
285
  = 1.5.87 =
286
  * Fixed: Adding tags using Bulk Actions.
287
  * Fixed: Conflict with lazy load of SVG images in Elementor Tabs.
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.0
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.0 =
286
+ * Added: Slideshow filmstrip with fix count of thumbnails.
287
+ * Improved: Russian translation.
288
+ * Fixed: Security issue.
289
+ * Fixed: XSS vulnerability reported by Nikita Podotykin of Positive Technologies.
290
+ * Fixed: Zoom functionality.
291
+ * Fixed: Filmstrip images load with enabled lazy load.
292
+ * Fixed: Tags count on image delete.
293
+
294
  = 1.5.87 =
295
  * Fixed: Adding tags using Bulk Actions.
296
  * Fixed: Conflict with lazy load of SVG images in Elementor Tabs.